summaryrefslogtreecommitdiffstats
path: root/src/demos/tess/Tess.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/tess/Tess.java')
-rw-r--r--src/demos/tess/Tess.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/demos/tess/Tess.java b/src/demos/tess/Tess.java
index 5c587c2..555214f 100644
--- a/src/demos/tess/Tess.java
+++ b/src/demos/tess/Tess.java
@@ -60,7 +60,7 @@ package demos.tess;
import javax.media.opengl.*;
import javax.media.opengl.glu.*;
-import com.sun.opengl.utils.*;
+import com.sun.opengl.util.*;
import java.awt.*;
import java.awt.event.WindowAdapter;
@@ -76,22 +76,18 @@ public class Tess {
frame.add(canvas);
canvas.addGLEventListener(new TessRenderer());
- 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();
} catch (Exception e) {
e.printStackTrace();
}