summaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-12-26 22:38:50 +0000
committerKenneth Russel <[email protected]>2005-12-26 22:38:50 +0000
commit7828fdfb84d067bccdd434b8418a04ed27eb3a39 (patch)
treed1c866fdf5c6c64c93e9245d0655b05ec17a1ec4 /src/classes/com/sun/opengl
parent52fee2e3fb822363fc9cf08cd5738adfb2e0af19 (diff)
Fixed build breakage pointed out by Travis after recent
resetProcAddressTable refactoring git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@502 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl')
-rw-r--r--src/classes/com/sun/opengl/impl/x11/X11GLDrawableFactory.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/X11GLDrawableFactory.java b/src/classes/com/sun/opengl/impl/x11/X11GLDrawableFactory.java
index 5bdc367e6..289d06e93 100644
--- a/src/classes/com/sun/opengl/impl/x11/X11GLDrawableFactory.java
+++ b/src/classes/com/sun/opengl/impl/x11/X11GLDrawableFactory.java
@@ -47,6 +47,7 @@ import java.security.*;
import java.util.ArrayList;
import java.util.List;
import javax.media.opengl.*;
+import com.sun.gluegen.runtime.*;
import com.sun.opengl.impl.*;
public class X11GLDrawableFactory extends GLDrawableFactoryImpl {
@@ -73,7 +74,7 @@ public class X11GLDrawableFactory extends GLDrawableFactoryImpl {
public X11GLDrawableFactory() {
// Must initialize GLX support eagerly in case a pbuffer is the
// first thing instantiated
- resetProcAddressTable(GLX.getGLXProcAddressTable());
+ ProcAddressHelper.resetProcAddressTable(GLX.getGLXProcAddressTable(), this);
}
private static final int MAX_ATTRIBS = 128;