summaryrefslogtreecommitdiff
path: root/vcl/opengl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-05-11 14:52:38 +0300
committerTor Lillqvist <tml@collabora.com>2016-05-11 15:10:26 +0300
commit9b1febead3f026a53211de492fdb72d7ae89e2e4 (patch)
tree50967d1239b07ac5bfaa6cae5d493548f4109a1e /vcl/opengl
parent7200965a31cafed1d37de9946b417ceac2e850e0 (diff)
There is nothing called 'flushAndSwap'
Probably what is meant is the name of the function, which is doFlush(). Change-Id: Ia949a2f8ce19950b1cd0b676c5146488ce7182ee
Diffstat (limited to 'vcl/opengl')
-rw-r--r--vcl/opengl/gdiimpl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index c2b2ae3ba934..b23b382ad5eb 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -2527,13 +2527,13 @@ void OpenGLSalGraphicsImpl::doFlush()
if( !maOffscreenTex )
{
- VCL_GL_INFO( "flushAndSwap - odd no texture !" );
+ VCL_GL_INFO( "doFlush - odd no texture !" );
return;
}
if( mnDrawCountAtFlush == mnDrawCount )
{
- VCL_GL_INFO( "eliding redundant flushAndSwap, no drawing since last!" );
+ VCL_GL_INFO( "eliding redundant doFlush, no drawing since last!" );
return;
}
@@ -2541,7 +2541,7 @@ void OpenGLSalGraphicsImpl::doFlush()
OpenGLZone aZone;
- VCL_GL_INFO( "flushAndSwap" );
+ VCL_GL_INFO( "doFlush" );
if( !mpWindowContext.is() )
{
@@ -2557,7 +2557,7 @@ void OpenGLSalGraphicsImpl::doFlush()
mpWindowContext->makeCurrent();
CHECK_GL_ERROR();
- VCL_GL_INFO( "flushAndSwap - acquire default framebuffer" );
+ VCL_GL_INFO( "doFlush - acquire default framebuffer" );
mpWindowContext->state()->sync();
@@ -2614,7 +2614,7 @@ void OpenGLSalGraphicsImpl::doFlush()
mpWindowContext->swapBuffers();
}
- VCL_GL_INFO( "flushAndSwap - end." );
+ VCL_GL_INFO( "doFlush - end." );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */