diff options
author | Sven Gothel <[email protected]> | 2015-07-24 06:38:55 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-07-24 06:38:55 +0200 |
commit | c47ebe36a3676aae9a6a334b31e6c73f221d65aa (patch) | |
tree | 4e2ff3de5981df6f2662a2b763816d52dc25a420 /src/jogl/classes | |
parent | ff90b5405b253a820643d4de820728aad37fdf8e (diff) |
GLContextImpl: Update uncommented code (method name changed)
Diffstat (limited to 'src/jogl/classes')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLContextImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLContextImpl.java b/src/jogl/classes/jogamp/opengl/GLContextImpl.java index 401ea29c6..8f4105f98 100644 --- a/src/jogl/classes/jogamp/opengl/GLContextImpl.java +++ b/src/jogl/classes/jogamp/opengl/GLContextImpl.java @@ -422,7 +422,7 @@ public abstract class GLContextImpl extends GLContext { lastCtxReleaseStack = new Throwable(msg); if( TRACE_SWITCH ) { System.err.println(msg); - // ExceptionUtils.dumpStackTrace(System.err, 0, 10); + // ExceptionUtils.dumpStack(System.err, 0, 10); } } } @@ -773,7 +773,7 @@ public abstract class GLContextImpl extends GLContext { } if ( DEBUG_TRACE_SWITCH ) { System.err.println(getThreadName() + ": Create GL context "+(created?"OK":"FAILED")+": For " + getClass().getName()+" - "+getGLVersion()+" - "+getTraceSwitchMsg()); - // ExceptionUtils.dumpStackTrace(System.err, 0, 10); + // ExceptionUtils.dumpStack(System.err, 0, 10); } if(!created) { return CONTEXT_NOT_CURRENT; |