diff options
author | Sven Gothel <[email protected]> | 2014-10-08 08:40:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-10-08 08:40:18 +0200 |
commit | 940b5716ff5e27bffda5e6a6ea4aaa98a7988556 (patch) | |
tree | e87e6e6180e074e46ffe7b4a8ddcd3a78b4a9586 /src/jogl/classes/jogamp/opengl/GLDrawableHelper.java | |
parent | 1fcfd014ca90125ab53ebc4e96e133535a55f095 (diff) |
GLException.dumpThrowable(..) -> GlueGen's ExceptionUtils.dumpThrowable(..)
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLDrawableHelper.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLDrawableHelper.java | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java b/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java index 3deeafd27..3847b4042 100644 --- a/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java +++ b/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java @@ -60,6 +60,7 @@ import javax.media.opengl.GLException; import javax.media.opengl.GLFBODrawable; import javax.media.opengl.GLRunnable; +import com.jogamp.common.ExceptionUtils; import com.jogamp.common.util.PropertyAccess; /** Encapsulates the implementation of most of the GLAutoDrawable's @@ -528,7 +529,7 @@ public class GLDrawableHelper { if( null == firstCaught ) { firstCaught = t; } else { - GLException.dumpThrowable("subsequent", t); + ExceptionUtils.dumpThrowable("subsequent", t); } } disposeCount++; @@ -544,7 +545,7 @@ public class GLDrawableHelper { if( null == firstCaught ) { firstCaught = t; } else { - GLException.dumpThrowable("subsequent", t); + ExceptionUtils.dumpThrowable("subsequent", t); } } listenersToBeInit.add(listener); @@ -1119,7 +1120,7 @@ public class GLDrawableHelper { final Runnable initAction) { if(null==context) { if (DEBUG) { - GLException.dumpThrowable("informal", new GLException("Info: GLDrawableHelper " + this + ".invokeGL(): NULL GLContext")); + ExceptionUtils.dumpThrowable("informal", new GLException("Info: GLDrawableHelper " + this + ".invokeGL(): NULL GLContext")); } return; } @@ -1201,7 +1202,7 @@ public class GLDrawableHelper { } if( null != disposeCaught ) { if( null != contextCloseCaught ) { - GLException.dumpThrowable("subsequent", contextCloseCaught); + ExceptionUtils.dumpThrowable("subsequent", contextCloseCaught); } throw disposeCaught; } @@ -1305,7 +1306,7 @@ public class GLDrawableHelper { if( null != glEventListenerCaught ) { flushGLRunnables(); if( null != contextReleaseCaught ) { - GLException.dumpThrowable("subsequent", contextReleaseCaught); + ExceptionUtils.dumpThrowable("subsequent", contextReleaseCaught); } throw GLException.newGLException(glEventListenerCaught); } @@ -1427,7 +1428,7 @@ public class GLDrawableHelper { if( null != glEventListenerCaught ) { flushGLRunnables(); if( null != contextReleaseCaught ) { - GLException.dumpThrowable("subsequent", contextReleaseCaught); + ExceptionUtils.dumpThrowable("subsequent", contextReleaseCaught); } throw GLException.newGLException(glEventListenerCaught); } |