aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-10-08 08:40:18 +0200
committerSven Gothel <[email protected]>2014-10-08 08:40:18 +0200
commit940b5716ff5e27bffda5e6a6ea4aaa98a7988556 (patch)
treee87e6e6180e074e46ffe7b4a8ddcd3a78b4a9586 /src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java
parent1fcfd014ca90125ab53ebc4e96e133535a55f095 (diff)
GLException.dumpThrowable(..) -> GlueGen's ExceptionUtils.dumpThrowable(..)
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java')
-rw-r--r--src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java b/src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java
index 6e6aaf58d..8fa4c581a 100644
--- a/src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java
+++ b/src/jogl/classes/jogamp/opengl/GLAutoDrawableBase.java
@@ -50,6 +50,7 @@ import javax.media.opengl.GLProfile;
import javax.media.opengl.GLRunnable;
import javax.media.opengl.GLSharedContextSetter;
+import com.jogamp.common.ExceptionUtils;
import com.jogamp.common.util.locks.RecursiveLock;
import com.jogamp.opengl.GLAutoDrawableDelegate;
import com.jogamp.opengl.GLEventListenerState;
@@ -284,7 +285,7 @@ public abstract class GLAutoDrawableBase implements GLAutoDrawable, GLStateKeepe
} catch( final Throwable t ) {
// Intentionally catch and ignore exception,
// so the destroy mechanism of the native windowing system is not corrupted!
- GLException.dumpThrowable("ignored", t);
+ ExceptionUtils.dumpThrowable("ignored", t);
}
}
}