diff options
author | Kenneth Russel <[email protected]> | 2005-04-24 00:10:41 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-04-24 00:10:41 +0000 |
commit | bafff33544dae0f28a0a7141d2a4ee05295ea2ec (patch) | |
tree | 52ab68a2f188a8f207474ab3c80d2abeaa125bb0 /make/gl-common.cfg | |
parent | 95a1681443162db968c5430097780bfd0ade0a68 (diff) |
Fixed Issue 92: Platform Independent VSync functionality
Added GL.setSwapInterval() which delegates to appropriate
platform-dependent routines. Must be called only from within
GLEventListener callbacks.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@260 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/gl-common.cfg')
-rw-r--r-- | make/gl-common.cfg | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/make/gl-common.cfg b/make/gl-common.cfg index 703715979..20bcaebe0 100644 --- a/make/gl-common.cfg +++ b/make/gl-common.cfg @@ -332,6 +332,16 @@ CustomJavaCode GL * {@link GLX#glXAllocateMemoryNV} extension. CustomJavaCode GL */ CustomJavaCode GL public java.nio.ByteBuffer glAllocateMemoryNV(int arg0, float arg1, float arg2, float arg3); +CustomJavaCode GL /** Provides a platform-independent way to specify the minimum swap +CustomJavaCode GL interval for buffer swaps. An argument of 0 disables +CustomJavaCode GL sync-to-vertical-refresh completely, while an argument of 1 +CustomJavaCode GL causes the application to wait until the next vertical refresh +CustomJavaCode GL until swapping buffers. The default, which is platform-specific, +CustomJavaCode GL is usually either 0 or 1. This function is not guaranteed to +CustomJavaCode GL have an effect, and in particular only affects heavyweight +CustomJavaCode GL onscreen components. */ +CustomJavaCode GL public void setSwapInterval(int interval); + # # Directives needed when processing wglext.h on Windows and other platforms # |