diff options
author | Sven Gothel <[email protected]> | 2011-09-30 21:32:46 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-09-30 21:32:46 +0200 |
commit | 900ac9dd13a732474642fa135b13350f8ddd01b0 (patch) | |
tree | 63f27603b5fed568f64eb9a5636048f7508099e7 /src/jogl/classes/javax | |
parent | 541e96ace7ed3f4b863a7374a5ea72895d9362be (diff) |
GLContext/GLDebugMessageHandler: Fix/clarify init and usage of dbg handler
Diffstat (limited to 'src/jogl/classes/javax')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLContext.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLContext.java b/src/jogl/classes/javax/media/opengl/GLContext.java index 47a453484..a3aa369dd 100644 --- a/src/jogl/classes/javax/media/opengl/GLContext.java +++ b/src/jogl/classes/javax/media/opengl/GLContext.java @@ -428,6 +428,7 @@ public abstract class GLContext { public final boolean isGLCompatibilityProfile() { return ( 0 != ( CTX_PROFILE_COMPAT & ctxOptions ) ); } public final boolean isGLCoreProfile() { return ( 0 != ( CTX_PROFILE_CORE & ctxOptions ) ); } public final boolean isGLForwardCompatible() { return ( 0 != ( CTX_OPTION_FORWARD & ctxOptions ) ); } + public final boolean isGLDebugEnabled() { return ( 0 != ( CTX_OPTION_DEBUG & ctxOptions ) ); } public final boolean isCreatedWithARBMethod() { return ( 0 != ( CTX_IS_ARB_CREATED & ctxOptions ) ); } /** |