diff options
author | Dave Parks <davep@lindenlab.com> | 2011-09-23 17:59:05 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-09-23 17:59:05 -0500 |
commit | 57620a9da903f3c6fe482627d18c44b6411e6910 (patch) | |
tree | b502aaa58018db970afede0ee441be1377f98e80 /indra/llrender/llgl.cpp | |
parent | b9926e8f57787eb146b06260cc3d0260e34330ce (diff) |
SH-2244 Vertex buffer cleanup, fix for bad vertices in rigged attachments, added "RenderUseVAO" debug setting to control whether or not to use VAO's in non-core GL profiles.
Diffstat (limited to 'indra/llrender/llgl.cpp')
-rw-r--r-- | indra/llrender/llgl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp index 6875674e79..f546e07320 100644 --- a/indra/llrender/llgl.cpp +++ b/indra/llrender/llgl.cpp @@ -656,6 +656,7 @@ bool LLGLManager::initGL() if (mHasDebugOutput && gDebugGL) { //setup debug output callback + glDebugMessageControlARB(GL_DONT_CARE, GL_DONT_CARE, GL_DEBUG_SEVERITY_LOW_ARB, 0, NULL, GL_TRUE); glDebugMessageCallbackARB((GLDEBUGPROCARB) gl_debug_callback, NULL); glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB); } |