diff options
author | Sven Gothel <[email protected]> | 2010-04-24 21:25:07 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-24 21:25:07 +0200 |
commit | edaf669e1b8c8412c1fd4acfc799138b629bf031 (patch) | |
tree | 53a3aa8a18d4b5c11d13be6fbd1f6ec14e92b891 /src/jogl/classes/com/jogamp/opengl/impl/x11 | |
parent | 0715cdc7d978db00c15b9a79cc21af8fd466174b (diff) | |
parent | c2860b7b9b00f71625f5503122598c3e53d336b5 (diff) |
Merge branch 'master' of github.com:mbien/jogl
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/impl/x11')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/impl/x11/glx/X11GLXDrawableFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/impl/x11/glx/X11GLXDrawableFactory.java b/src/jogl/classes/com/jogamp/opengl/impl/x11/glx/X11GLXDrawableFactory.java index 9a0edcfbb..5e1a5da3a 100644 --- a/src/jogl/classes/com/jogamp/opengl/impl/x11/glx/X11GLXDrawableFactory.java +++ b/src/jogl/classes/com/jogamp/opengl/impl/x11/glx/X11GLXDrawableFactory.java @@ -41,7 +41,7 @@ import java.nio.*; import javax.media.nativewindow.*; import javax.media.nativewindow.x11.*; import javax.media.opengl.*; -import com.jogamp.gluegen.runtime.opengl.*; + import com.jogamp.opengl.impl.*; import com.jogamp.common.JogampRuntimeException; import com.jogamp.common.util.*; @@ -54,7 +54,7 @@ public class X11GLXDrawableFactory extends GLDrawableFactoryImpl implements Dyna super(); // Must initialize GLX support eagerly in case a pbuffer is the // first thing instantiated - GLProcAddressHelper.resetProcAddressTable(GLX.getGLXProcAddressTable(), this); + GLX.getGLXProcAddressTable().reset(this); // Register our GraphicsConfigurationFactory implementations // The act of constructing them causes them to be registered new X11GLXGraphicsConfigurationFactory(); |