aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rwxr-xr-xmake/config/jogl/egl.cfg2
-rw-r--r--make/config/jogl/glu-CustomJavaCode-gl2.java2
-rwxr-xr-xmake/config/jogl/glu-CustomJavaCode-gl2es1.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/make/config/jogl/egl.cfg b/make/config/jogl/egl.cfg
index 5f13b5d0d..94984a305 100755
--- a/make/config/jogl/egl.cfg
+++ b/make/config/jogl/egl.cfg
@@ -27,7 +27,7 @@ Include ../intptr.cfg
CustomJavaCode EGL private static EGLProcAddressTable _table = new EGLProcAddressTable(new GLProcAddressResolver());
CustomJavaCode EGL public static void resetProcAddressTable(DynamicLookupHelper lookup) {
-CustomJavaCode EGL _table.resetProcAddressTable(lookup);
+CustomJavaCode EGL _table.reset(lookup);
CustomJavaCode EGL }
# There are some #defines in egl.h that GlueGen and PCPP don't currently handle
diff --git a/make/config/jogl/glu-CustomJavaCode-gl2.java b/make/config/jogl/glu-CustomJavaCode-gl2.java
index 3d884f860..690e0acfa 100644
--- a/make/config/jogl/glu-CustomJavaCode-gl2.java
+++ b/make/config/jogl/glu-CustomJavaCode-gl2.java
@@ -548,7 +548,7 @@ private static final GLUgl2ProcAddressTable getGLUProcAddressTable() {
throw new GLException("No OpenGL context current on this thread");
}
GLUgl2ProcAddressTable tmp = new GLUgl2ProcAddressTable(new GLProcAddressResolver());
- tmp.resetProcAddressTable(((GLDrawableImpl)curContext.getGLDrawable()).getDynamicLookupHelper());
+ tmp.reset(((GLDrawableImpl)curContext.getGLDrawable()).getDynamicLookupHelper());
gluProcAddressTable = tmp;
}
return gluProcAddressTable;
diff --git a/make/config/jogl/glu-CustomJavaCode-gl2es1.java b/make/config/jogl/glu-CustomJavaCode-gl2es1.java
index e93e48edd..eb4bcc718 100755
--- a/make/config/jogl/glu-CustomJavaCode-gl2es1.java
+++ b/make/config/jogl/glu-CustomJavaCode-gl2es1.java
@@ -239,7 +239,7 @@ private static GLUProcAddressTable getGLUProcAddressTable() {
}
if (gluProcAddressTable == null) {
GLUProcAddressTable tmp = new GLUProcAddressTable(new GLProcAddressResolver());
- tmp.resetProcAddressTable(GLDrawableFactoryImpl.getFactoryImpl());
+ tmp.reset(GLDrawableFactoryImpl.getFactoryImpl());
gluProcAddressTable = tmp;
}
return gluProcAddressTable;