diff options
author | Kenneth Russel <[email protected]> | 2005-08-06 20:15:13 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-08-06 20:15:13 +0000 |
commit | b829a8848aa706eab1c3f1d040b91d20a09dc682 (patch) | |
tree | ab7fb0cc52bc21fe6bd4f72f5eda307b4809803e /src/demos | |
parent | 449f25c3e02a3e29bd51cfcd466e47fa142d1aef (diff) |
Missed new DemoListener.repaint() in a few places
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JSR-231@109 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos')
4 files changed, 4 insertions, 0 deletions
diff --git a/src/demos/proceduralTexturePhysics/ProceduralTexturePhysics.java b/src/demos/proceduralTexturePhysics/ProceduralTexturePhysics.java index e030cc0..f3ca4df 100644 --- a/src/demos/proceduralTexturePhysics/ProceduralTexturePhysics.java +++ b/src/demos/proceduralTexturePhysics/ProceduralTexturePhysics.java @@ -67,6 +67,7 @@ public class ProceduralTexturePhysics implements GLEventListener { public void shutdownDemo() { runExit(animator); } + public void repaint() {} }); Frame frame = new Frame("Procedural Texture Waves"); diff --git a/src/demos/vertexArrayRange/VertexArrayRange.java b/src/demos/vertexArrayRange/VertexArrayRange.java index 724f0c9..c131a44 100644 --- a/src/demos/vertexArrayRange/VertexArrayRange.java +++ b/src/demos/vertexArrayRange/VertexArrayRange.java @@ -101,6 +101,7 @@ public class VertexArrayRange implements GLEventListener { public void shutdownDemo() { runExit(animator); } + public void repaint() {} }); Frame frame = new Frame("Very Simple NV_vertex_array_range demo"); diff --git a/src/demos/vertexBufferObject/VertexBufferObject.java b/src/demos/vertexBufferObject/VertexBufferObject.java index a217026..2c5ece4 100644 --- a/src/demos/vertexBufferObject/VertexBufferObject.java +++ b/src/demos/vertexBufferObject/VertexBufferObject.java @@ -92,6 +92,7 @@ public class VertexBufferObject implements GLEventListener { public void shutdownDemo() { runExit(animator); } + public void repaint() {} }); Frame frame = new Frame("Very Simple vertex_buffer_object demo"); diff --git a/src/demos/vertexProgWarp/VertexProgWarp.java b/src/demos/vertexProgWarp/VertexProgWarp.java index 3c5096b..462396c 100644 --- a/src/demos/vertexProgWarp/VertexProgWarp.java +++ b/src/demos/vertexProgWarp/VertexProgWarp.java @@ -77,6 +77,7 @@ public class VertexProgWarp implements GLEventListener { public void shutdownDemo() { runExit(animator); } + public void repaint() {} }); final Frame frame = new Frame(); |