diff options
author | Kenneth Russel <[email protected]> | 2007-01-17 18:23:39 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2007-01-17 18:23:39 +0000 |
commit | da84904133c2375c00c4290e8731f67f681f30a2 (patch) | |
tree | 82f9bf470cc523937751a4f9e404ee2a154034b9 /src/classes/com/sun/opengl/impl/x11 | |
parent | b62f2e7e97b061f04d010121b4cd6f17dc5dad9a (diff) |
Fixed Issue 260: "GLException: Surface already locked" after failed makeCurrent
Added checking for thrown run-time exceptions to on-screen GLContext
makeCurrent() implementations on all three major supported platforms;
now unlocks the underlying GLDrawable if an exception is thrown.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@1088 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 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java b/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java index 908257ba1..bab780219 100644 --- a/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java +++ b/src/classes/com/sun/opengl/impl/x11/X11OnscreenGLContext.java @@ -59,6 +59,7 @@ public class X11OnscreenGLContext extends X11GLContext { protected int makeCurrentImpl() throws GLException { int lockRes = drawable.lockSurface(); + boolean exceptionOccurred = false; try { if (lockRes == X11OnscreenGLDrawable.LOCK_SURFACE_NOT_READY) { return CONTEXT_NOT_CURRENT; @@ -67,11 +68,13 @@ public class X11OnscreenGLContext extends X11GLContext { destroyImpl(); } return super.makeCurrentImpl(); + } catch (RuntimeException e) { + exceptionOccurred = true; + throw e; } finally { - if (isOptimizable()) { - if (lockRes != X11OnscreenGLDrawable.LOCK_SURFACE_NOT_READY) { - drawable.unlockSurface(); - } + if (exceptionOccurred || + (isOptimizable() && lockRes != X11OnscreenGLDrawable.LOCK_SURFACE_NOT_READY)) { + drawable.unlockSurface(); } } } |