diff options
author | Sven Gothel <[email protected]> | 2011-04-22 05:52:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-04-22 05:52:06 +0200 |
commit | d72745fa32a86a3820e5220643a01153e3f21fe7 (patch) | |
tree | 26c19aaec3c82501c8db7dc39621cae7c276829a /src/jogl/classes/jogamp/opengl/GLDrawableHelper.java | |
parent | fa5c609fa107a456930e74b247af819851ed1fe9 (diff) |
NEWT GLWindow: Remove context current check for swapBuffer() call
The spec doesn't require a current context for a swap buffer call, however,
if required .. as user shall encapsulate it by himself, or use the GLEventListener model.
Motivation: Reduce TLS GLContext.getCurrent() calls.
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLDrawableHelper.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLDrawableHelper.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java b/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java index d079a1bd1..8911b9ab3 100644 --- a/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java +++ b/src/jogl/classes/jogamp/opengl/GLDrawableHelper.java @@ -337,6 +337,7 @@ public class GLDrawableHelper { // Support for recursive makeCurrent() calls as well as calling // other drawables' display() methods from within another one's + // FIXME: re-evaluate due to possible expensive TLS access ? GLContext lastContext = GLContext.getCurrent(); Runnable lastInitAction = (Runnable) perThreadInitAction.get(); if (lastContext != null) { |