aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-11-29 02:07:30 +0100
committerSven Gothel <[email protected]>2013-11-29 02:07:30 +0100
commitcb0afe743d21a3480e2d41744a904ac7d404612d (patch)
tree29bfe562eb2262356265f9cf115ad598685286e7 /src/jogl
parent5906d6cd747092f1e73b32f3337563fa74cec2d2 (diff)
GLDrawableFactory.shutdown0() Add DEBUG line at the end
Diffstat (limited to 'src/jogl')
-rw-r--r--src/jogl/classes/javax/media/opengl/GLDrawableFactory.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java b/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java
index fcc1494ce..9b823a6f8 100644
--- a/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java
+++ b/src/jogl/classes/javax/media/opengl/GLDrawableFactory.java
@@ -235,6 +235,9 @@ public abstract class GLDrawableFactory {
eglFactory = null;
}
GLContext.shutdown();
+ if( DEBUG ) {
+ System.err.println("GLDrawableFactory.shutdownAll.X on thread "+getThreadName());
+ }
}
protected GLDrawableFactory() {