diff options
author | Kenneth Russel <[email protected]> | 2005-08-09 00:38:31 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-08-09 00:38:31 +0000 |
commit | a3b086ce364cb25e1674279d5aef22c03453dd17 (patch) | |
tree | 2f3694edd9361bdae385f2067676e2c8657e47e9 /src/net/java/games | |
parent | c8da1c60b44f6de8a82fb801692bb3c8727abca0 (diff) |
Fixed build problem after adding repaint() to GLAutoDrawable
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JSR-231@343 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games')
-rw-r--r-- | src/net/java/games/jogl/impl/GLPbufferImpl.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/java/games/jogl/impl/GLPbufferImpl.java b/src/net/java/games/jogl/impl/GLPbufferImpl.java index 3aa50d7b7..fbbf6c519 100644 --- a/src/net/java/games/jogl/impl/GLPbufferImpl.java +++ b/src/net/java/games/jogl/impl/GLPbufferImpl.java @@ -90,6 +90,10 @@ public class GLPbufferImpl implements GLPbuffer { false); } + public void repaint() { + display(); + } + public void addGLEventListener(GLEventListener listener) { drawableHelper.addGLEventListener(listener); } |