From f90ab644c419486f7894fda3725a9c81de8bb283 Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Thu, 8 Apr 2004 19:04:23 +0000 Subject: Fixed Issue 25: Expose swapBuffers(), please Fixed Issue 31: Make it safe to remove listeners from a GLDrawable while handling an event git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@93 232f8b59-042b-4e1e-8c03-345bb8c30851 --- src/net/java/games/jogl/GLCanvas.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/net/java/games/jogl/GLCanvas.java') diff --git a/src/net/java/games/jogl/GLCanvas.java b/src/net/java/games/jogl/GLCanvas.java index 527289fdc..9d58930e4 100644 --- a/src/net/java/games/jogl/GLCanvas.java +++ b/src/net/java/games/jogl/GLCanvas.java @@ -160,6 +160,18 @@ public final class GLCanvas extends Canvas implements GLDrawable { return context.getNoAutoRedrawMode(); } + public void setAutoSwapBufferMode(boolean onOrOff) { + context.setAutoSwapBufferMode(onOrOff); + } + + public boolean getAutoSwapBufferMode() { + return context.getAutoSwapBufferMode(); + } + + public void swapBuffers() { + context.invokeGL(swapBuffersAction, false, initAction); + } + public boolean canCreateOffscreenDrawable() { return context.canCreatePbufferContext(); } @@ -195,4 +207,11 @@ public final class GLCanvas extends Canvas implements GLDrawable { } } private DisplayAction displayAction = new DisplayAction(); + + class SwapBuffersAction implements Runnable { + public void run() { + context.swapBuffers(); + } + } + private SwapBuffersAction swapBuffersAction = new SwapBuffersAction(); } -- cgit v1.2.3