summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-04 07:19:09 +0100
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-12-04 08:28:42 +0100
commit64e45440ad11c1aabeaf853607bcb7e5f4fbafe4 (patch)
treed498f709935d9c3270d0b608c44d3f642f37dc9d /vcl
parent183b89db121b8c6e02c14ebf2c2666ee807a9c82 (diff)
add more debugging output
Change-Id: I91be83485dcd829800ca9611ab54b19d8eae19af
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/opengl/OpenGLContext.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/opengl/OpenGLContext.cxx b/vcl/source/opengl/OpenGLContext.cxx
index 50a95daaaeac..c9c3ecbf854c 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -65,6 +65,7 @@ OpenGLContext::OpenGLContext():
mpPrevContext(NULL),
mpNextContext(NULL)
{
+ SAL_INFO("vcl.opengl", "new context: " << this);
#if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID
mbPixmap = false;
#endif
@@ -82,6 +83,7 @@ OpenGLContext::OpenGLContext():
OpenGLContext::~OpenGLContext()
{
+ SAL_INFO("vcl.opengl", "delete context: " << this);
ImplSVData* pSVData = ImplGetSVData();
if( mpPrevContext )
mpPrevContext->mpNextContext = mpNextContext;