diff options
author | Sven Gothel <[email protected]> | 2013-09-21 05:19:32 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-09-21 05:19:32 +0200 |
commit | 4ef07dc20a3d867feb1c51b4ce22ae3d06094781 (patch) | |
tree | 4888a9933d855f47fcc40af7d8dcbc96d9abd4e0 /src/jogl/classes/jogamp/opengl/x11 | |
parent | 939d6304d464e69b1d1d2a104c3da5536d3bf326 (diff) |
Fix Bug 839: Clarify whether resetStates(..) shall clearStates() - Pass 'isInit' flag.
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/x11')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/x11/glx/X11GLXContext.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXContext.java b/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXContext.java index 4bfe0cb86..0ecf11a43 100644 --- a/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXContext.java +++ b/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXContext.java @@ -100,7 +100,7 @@ public class X11GLXContext extends GLContextImpl { } @Override - protected void resetStates() { + protected void resetStates(boolean isInit) { // no inner state _glXExt=null; glXExtProcAddressTable = null; hasSwapInterval = 0; @@ -108,7 +108,7 @@ public class X11GLXContext extends GLContextImpl { isDirect = false; glXServerVersion = null; isGLXVersionGreaterEqualOneThree = false; - super.resetStates(); + super.resetStates(isInit); } @Override |