1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0024230: TKOpenGl - request debug context by default in debug mode

Enable GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB only for debug builds.
This commit is contained in:
kgv 2013-10-08 17:04:22 +04:00 committed by bugmaster
parent 9be3a89476
commit fcdbe2010e
2 changed files with 6 additions and 0 deletions

View File

@ -30,7 +30,11 @@ OpenGl_Caps::OpenGl_Caps()
: vboDisable (Standard_False),
pntSpritesDisable (Standard_False),
contextStereo (Standard_False),
#ifdef DEB
contextDebug (Standard_True),
#else
contextDebug (Standard_False),
#endif
contextNoAccel (Standard_False)
{
//

View File

@ -634,7 +634,9 @@ void OpenGl_Context::init()
{
// setup default callback
arbDbg->glDebugMessageCallbackARB (debugCallbackWrap, this);
#ifdef DEB
glEnable (GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB);
#endif
}
}