diff options
author | Kenneth Russel <[email protected]> | 2006-03-26 18:52:02 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-03-26 18:52:02 +0000 |
commit | 2dbbfdd226bf1a9158936531a299adb5bdd2ad4a (patch) | |
tree | 641e8eec677b1a637844fc77399dc87b4e931042 /src/classes/com/sun/opengl/impl/x11 | |
parent | 56c6a96fd7d1f7d50507662922d5f92c7db39da6 (diff) |
Fixed bugs in implementation of -Djogl.GLContext.noopt flag
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@685 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/x11')
-rw-r--r-- | src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java b/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java index f4f4c7094..908257ba1 100644 --- a/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java +++ b/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java @@ -68,7 +68,7 @@ public class X11OnscreenGLContext extends X11GLContext { } return super.makeCurrentImpl(); } finally { - if (optimizationEnabled) { + if (isOptimizable()) { if (lockRes != X11OnscreenGLDrawable.LOCK_SURFACE_NOT_READY) { drawable.unlockSurface(); } @@ -77,10 +77,10 @@ public class X11OnscreenGLContext extends X11GLContext { } protected void releaseImpl() throws GLException { - if (!optimizationEnabled) { - try { - super.releaseImpl(); - } finally { + try { + super.releaseImpl(); + } finally { + if (!isOptimizable()) { drawable.unlockSurface(); } } |