diff options
author | Kenneth Russel <[email protected]> | 2006-03-10 10:05:34 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-03-10 10:05:34 +0000 |
commit | 35ee11ab877097d8a24d82f7a458d1a4f9a0b803 (patch) | |
tree | 25b16896c27eab504db9cccee83e7e34b024a798 /src/classes/com/sun/opengl/impl/GLContextImpl.java | |
parent | 151be5e32298c4cd0162bf76de05e3ad8389cd2c (diff) |
Fixed resizing bug on Mac OS X which was a consequence of leaving the
context permanently current on the GLWorkerThread
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@658 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/GLContextImpl.java')
-rw-r--r-- | src/classes/com/sun/opengl/impl/GLContextImpl.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/classes/com/sun/opengl/impl/GLContextImpl.java b/src/classes/com/sun/opengl/impl/GLContextImpl.java index 8e38ec276..8963b2f5e 100644 --- a/src/classes/com/sun/opengl/impl/GLContextImpl.java +++ b/src/classes/com/sun/opengl/impl/GLContextImpl.java @@ -97,6 +97,8 @@ public abstract class GLContextImpl extends GLContext { if (current != null) { if (current == this) { // Assume we don't need to make this context current again + // For Mac OS X, however, we need to update the context to track resizes + update(); return CONTEXT_CURRENT; } else { current.release(); @@ -184,6 +186,10 @@ public abstract class GLContextImpl extends GLContext { protected abstract void destroyImpl() throws GLException; + // This is only needed for Mac OS X on-screen contexts + protected void update() throws GLException { + } + public boolean isSynchronized() { return !lock.getFailFastMode(); } |