summaryrefslogtreecommitdiff
path: root/vcl/opengl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-03-05 09:22:00 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-03-05 14:05:09 +0000
commit09f4a21d1b38ad8cebb7916f068a5c7ce6f7e9ff (patch)
tree6108b3ea4839912344e02ceed88098bec1f70b26 /vcl/opengl
parent10a5e136486f861d6c8f7fef740b42dff2de69d4 (diff)
this drawAlphaBitmap variant is unused
Change-Id: Id2f9073969babe7ad5984f87949ed870f9d5a8f7
Diffstat (limited to 'vcl/opengl')
-rw-r--r--vcl/opengl/gdiimpl.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index dcede20838ee..baf04ffeedba 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -1662,22 +1662,6 @@ bool OpenGLSalGraphicsImpl::drawAlphaBitmap(
return true;
}
-bool OpenGLSalGraphicsImpl::drawAlphaBitmap(
- const SalTwoRect& rPosAry,
- const SalBitmap& rSalBitmap )
-{
- const OpenGLSalBitmap& rBitmap = static_cast<const OpenGLSalBitmap&>(rSalBitmap);
- OpenGLTexture& rTexture( rBitmap.GetTexture() );
-
- SAL_INFO( "vcl.opengl", "::drawAlphaBitmap" );
- PreDraw();
- DrawAlphaTexture( rTexture, rPosAry );
- PostDraw();
-
- CHECK_GL_ERROR();
- return true;
-}
-
/** draw transformed bitmap (maybe with alpha) where Null, X, Y define the coordinate system */
bool OpenGLSalGraphicsImpl::drawTransformedBitmap(
const basegfx::B2DPoint& rNull,