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/egl/EGLContext.java | |
parent | 3d7e3437e52d1bbc9031e4be0325ea6dea3b33b8 (diff) |
Fix: updateGLProcAddressTable() call order - child before parent, broke WGL
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/impl/egl/EGLContext.java')
-rwxr-xr-x | src/jogl/classes/com/sun/opengl/impl/egl/EGLContext.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/egl/EGLContext.java b/src/jogl/classes/com/sun/opengl/impl/egl/EGLContext.java index 1a75f03a9..cc4dafa4c 100755 --- a/src/jogl/classes/com/sun/opengl/impl/egl/EGLContext.java +++ b/src/jogl/classes/com/sun/opengl/impl/egl/EGLContext.java @@ -225,7 +225,6 @@ public abstract class EGLContext extends GLContextImpl { } protected void updateGLProcAddressTable() { - super.updateGLProcAddressTable(); if (DEBUG) { System.err.println(getThreadName() + ": !!! Initializing EGL extension address table"); } @@ -235,6 +234,7 @@ public abstract class EGLContext extends GLContextImpl { eglExtProcAddressTable = new EGLExtProcAddressTable(); } resetProcAddressTable(getEGLExtProcAddressTable()); + super.updateGLProcAddressTable(); } public synchronized String getPlatformExtensionsString() { |