summaryrefslogtreecommitdiffstats
path: root/src/demos/cg/runtime_ogl
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-01-13 07:29:40 +0000
committerKenneth Russel <[email protected]>2006-01-13 07:29:40 +0000
commit4da1dead29db175817053837d7a685f10c3212b4 (patch)
tree44e33aa492c443b0ccbfef17a9795ca269a66291 /src/demos/cg/runtime_ogl
parenta30f6883a5a4bfb3bebd1e34697377ef56dd9241 (diff)
Renamed com.sun.opengl.utils to com.sun.opengl.util. Moved
TextureIO-related classes to com.sun.opengl.util.texture and TextureProvider, TextureWriter and format-specific readers to com.sun.opengl.util.texture.spi. Renamed BufferUtils to BufferUtil. Added ImageUtil and FileUtil. Cleaned up javadoc. Updated demos. Cleaned up some imports. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@165 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/cg/runtime_ogl')
-rw-r--r--src/demos/cg/runtime_ogl/cgGL_vertex_example.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/demos/cg/runtime_ogl/cgGL_vertex_example.java b/src/demos/cg/runtime_ogl/cgGL_vertex_example.java
index 1f165c8..f85e26c 100644
--- a/src/demos/cg/runtime_ogl/cgGL_vertex_example.java
+++ b/src/demos/cg/runtime_ogl/cgGL_vertex_example.java
@@ -36,7 +36,6 @@ package demos.cg.runtime_ogl;
import com.sun.opengl.cg.*;
import javax.media.opengl.*;
import javax.media.opengl.glu.*;
-import com.sun.opengl.utils.*;
import java.awt.*;
import java.awt.event.*;
@@ -274,22 +273,17 @@ public class cgGL_vertex_example implements GLEventListener
frame.add(canvas);
frame.setSize(500, 500);
- final Animator animator = new Animator(canvas);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
// Run this on another thread than the AWT event queue to
- // make sure the call to Animator.stop() completes before
- // exiting
+ // avoid deadlocks on shutdown on some platforms
new Thread(new Runnable() {
public void run() {
- animator.stop();
System.exit(0);
}
}).start();
}
});
frame.show();
- animator.start();
}
-
}