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 /make/config | |
parent | a8780eeefda42b22c4f097dc87bdb5c9b4713a54 (diff) |
modifications due to method renaming in gluegen/procaddresstable.
Diffstat (limited to 'make/config')
-rwxr-xr-x | make/config/jogl/egl.cfg | 2 | ||||
-rw-r--r-- | make/config/jogl/glu-CustomJavaCode-gl2.java | 2 | ||||
-rwxr-xr-x | make/config/jogl/glu-CustomJavaCode-gl2es1.java | 2 |
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; |