diff options
author | Michael Bien <[email protected]> | 2010-04-24 20:11:37 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-04-24 20:11:37 +0200 |
commit | c2860b7b9b00f71625f5503122598c3e53d336b5 (patch) | |
tree | 86cea7f2618e675634acc5e5977aa1a9cabbbd63 /src/jogl/classes/com/jogamp/opengl/impl/x11/glx | |
parent | a8780eeefda42b22c4f097dc87bdb5c9b4713a54 (diff) |
modifications due to method renaming in gluegen/procaddresstable.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/impl/x11/glx')
-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 d8013206d..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 - GLX.getGLXProcAddressTable().resetProcAddressTable(this); + GLX.getGLXProcAddressTable().reset(this); // Register our GraphicsConfigurationFactory implementations // The act of constructing them causes them to be registered new X11GLXGraphicsConfigurationFactory(); |