summaryrefslogtreecommitdiffstats
path: root/src/demos/infiniteShadowVolumes
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-02-23 23:00:59 +0000
committerKenneth Russel <[email protected]>2005-02-23 23:00:59 +0000
commit44bb69b570e3e7c4bafabc1116606da0f520fbc4 (patch)
tree16283e9e415615c534f6d9835951c1e3af8c284b /src/demos/infiniteShadowVolumes
parent0ae7ec200ff792fb382025d6f9a9d16bc9aed8a7 (diff)
Removed unnecessary Animator from interactive HWShadowmapsSimple and
InfiniteShadowVolumes demos git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@58 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/infiniteShadowVolumes')
-rw-r--r--src/demos/infiniteShadowVolumes/InfiniteShadowVolumes.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/demos/infiniteShadowVolumes/InfiniteShadowVolumes.java b/src/demos/infiniteShadowVolumes/InfiniteShadowVolumes.java
index 4752dbb..91eb6e6 100644
--- a/src/demos/infiniteShadowVolumes/InfiniteShadowVolumes.java
+++ b/src/demos/infiniteShadowVolumes/InfiniteShadowVolumes.java
@@ -67,7 +67,6 @@ import gleem.linalg.*;
public class InfiniteShadowVolumes {
private GLCanvas canvas;
- private Animator animator;
private volatile boolean quit;
public static void main(String[] args) {
@@ -80,8 +79,6 @@ public class InfiniteShadowVolumes {
canvas = GLDrawableFactory.getFactory().createGLCanvas(caps);
canvas.addGLEventListener(new Listener());
- animator = new Animator(canvas);
-
Frame frame = new Frame("Infinite Stenciled Shadow Volumes");
frame.setLayout(new BorderLayout());
canvas.setSize(512, 512);
@@ -95,8 +92,6 @@ public class InfiniteShadowVolumes {
runExit();
}
});
-
- animator.start();
}
static class Model {
@@ -1294,7 +1289,6 @@ public class InfiniteShadowVolumes {
// the exit routine in another thread.
new Thread(new Runnable() {
public void run() {
- animator.stop();
System.exit(0);
}
}).start();