summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/demos/proceduralTexturePhysics/ProceduralTexturePhysics.java1
-rw-r--r--src/demos/vertexArrayRange/VertexArrayRange.java1
-rw-r--r--src/demos/vertexBufferObject/VertexBufferObject.java1
-rw-r--r--src/demos/vertexProgWarp/VertexProgWarp.java1
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();