diff options
author | Sven Gothel <[email protected]> | 2009-08-01 07:45:23 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-08-01 07:45:23 -0700 |
commit | 598c3b25c3bb6a8e46f8d9c3045fc7a196ac5342 (patch) | |
tree | f6c20b6e9fa220b4446a2728e55acf9390957415 /src/jogl/classes/com/sun/opengl/impl/windows | |
parent | 3d7e3437e52d1bbc9031e4be0325ea6dea3b33b8 (diff) |
Fix: updateGLProcAddressTable() call order - child before parent, broke WGL
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/impl/windows')
-rw-r--r-- | src/jogl/classes/com/sun/opengl/impl/windows/wgl/WindowsWGLContext.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/windows/wgl/WindowsWGLContext.java b/src/jogl/classes/com/sun/opengl/impl/windows/wgl/WindowsWGLContext.java index 578279586..6d810ed39 100644 --- a/src/jogl/classes/com/sun/opengl/impl/windows/wgl/WindowsWGLContext.java +++ b/src/jogl/classes/com/sun/opengl/impl/windows/wgl/WindowsWGLContext.java @@ -313,7 +313,6 @@ public class WindowsWGLContext extends GLContextImpl { } protected void updateGLProcAddressTable() { - super.updateGLProcAddressTable(); if (DEBUG) { System.err.println(getThreadName() + ": !!! Initializing WGL extension address table for " + this); } @@ -323,6 +322,7 @@ public class WindowsWGLContext extends GLContextImpl { wglExtProcAddressTable = new WGLExtProcAddressTable(); } resetProcAddressTable(getWGLExtProcAddressTable()); + super.updateGLProcAddressTable(); } public String getPlatformExtensionsString() { |