diff options
author | Sven Gothel <[email protected]> | 2013-03-13 01:29:50 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-03-13 01:29:50 +0100 |
commit | 6b924839b33dbf507dd9eebc0ad5b5fbf23f4fb2 (patch) | |
tree | b88886336e6aede457c0cfad490772bcc6fb158f /src/jogl/classes/jogamp/opengl/windows | |
parent | d3672684177a98a58c434bcd27541f44917050f3 (diff) |
*External*Context Impl: Remove unused 'lastContext' field, incl. their makeCurrent() and release() override.
Semantics of 'lastContext' are plain wrong, since release() override does claim the previous 'lastContext'
is current at the end - however, it wasn't technically made current.
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/windows')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/windows/wgl/WindowsExternalWGLContext.java | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsExternalWGLContext.java b/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsExternalWGLContext.java index 84b29a09f..a5893775a 100644 --- a/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsExternalWGLContext.java +++ b/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsExternalWGLContext.java @@ -56,8 +56,7 @@ import jogamp.nativewindow.windows.GDI; import jogamp.opengl.GLContextShareSet; public class WindowsExternalWGLContext extends WindowsWGLContext { - private GLContext lastContext; - + private WindowsExternalWGLContext(Drawable drawable, long ctx, WindowsWGLGraphicsConfiguration cfg) { super(drawable, null); this.contextHandle = ctx; @@ -106,25 +105,6 @@ public class WindowsExternalWGLContext extends WindowsWGLContext { } @Override - public int makeCurrent() throws GLException { - // Save last context if necessary to allow external GLContexts to - // talk to other GLContexts created by this library - GLContext cur = getCurrent(); - if (cur != null && cur != this) { - lastContext = cur; - setCurrent(null); - } - return super.makeCurrent(); - } - - @Override - public void release() throws GLException { - super.release(); - setCurrent(lastContext); - lastContext = null; - } - - @Override protected void makeCurrentImpl() throws GLException { } |