diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-01-27 04:31:56 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-08-28 02:03:51 +0200 |
commit | 1f43fa330a2ebc26127edce07318124011f21f56 (patch) | |
tree | 425ff9c9e3436e2ecdab6e24f8c90edb6359de4b /vcl/opengl | |
parent | 81abc70a5bdbb3db4d3874f4e7e7150fc3f56698 (diff) |
initial work for conditional formatting import for orcus
Conflicts:
sc/source/filter/inc/orcusinterface.hxx
Change-Id: If79f58c44072b7c2c20fc2026b2a6eed6d202b63
Diffstat (limited to 'vcl/opengl')
-rw-r--r-- | vcl/opengl/gdiimpl.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx index 5e2785ce9545..ac6624f68f58 100644 --- a/vcl/opengl/gdiimpl.cxx +++ b/vcl/opengl/gdiimpl.cxx @@ -898,6 +898,8 @@ void OpenGLSalGraphicsImpl::DrawTextureRect( OpenGLTexture& rTexture, const SalT { OpenGLZone aZone; + SAL_INFO("vcl.opengl", "draw texture rect"); + GLfloat aTexCoord[8]; rTexture.GetCoord( aTexCoord, rPosAry, bInverted ); mpProgram->SetTextureCoord( aTexCoord ); @@ -908,6 +910,8 @@ void OpenGLSalGraphicsImpl::DrawTexture( OpenGLTexture& rTexture, const SalTwoRe { OpenGLZone aZone; + SAL_INFO("vcl.opengl", "draw texture"); + if( !UseProgram( "textureVertexShader", "textureFragmentShader" ) ) return; mpProgram->SetTexture( "sampler", rTexture ); |