diff options
-rwxr-xr-x | src/net/java/games/jogl/GLAutoDrawable.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/java/games/jogl/GLAutoDrawable.java b/src/net/java/games/jogl/GLAutoDrawable.java index 2494483f5..ce3755bd8 100755 --- a/src/net/java/games/jogl/GLAutoDrawable.java +++ b/src/net/java/games/jogl/GLAutoDrawable.java @@ -79,6 +79,10 @@ public interface GLAutoDrawable extends GLDrawable, ComponentEvents { display} callback. */ public void display(); + /** Schedules a repaint of the component at some point in the + future. */ + public void repaint(); + /** Enables or disables automatic buffer swapping for this drawable. By default this property is set to true; when true, after all GLEventListeners have been called for a display() event, the |