aboutsummaryrefslogtreecommitdiffstats
path: root/make/config/jogl/egl.cfg
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-24 21:25:07 +0200
committerSven Gothel <[email protected]>2010-04-24 21:25:07 +0200
commitedaf669e1b8c8412c1fd4acfc799138b629bf031 (patch)
tree53a3aa8a18d4b5c11d13be6fbd1f6ec14e92b891 /make/config/jogl/egl.cfg
parent0715cdc7d978db00c15b9a79cc21af8fd466174b (diff)
parentc2860b7b9b00f71625f5503122598c3e53d336b5 (diff)
Merge branch 'master' of github.com:mbien/jogl
Diffstat (limited to 'make/config/jogl/egl.cfg')
-rwxr-xr-xmake/config/jogl/egl.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/config/jogl/egl.cfg b/make/config/jogl/egl.cfg
index 74047072b..94984a305 100755
--- a/make/config/jogl/egl.cfg
+++ b/make/config/jogl/egl.cfg
@@ -25,9 +25,9 @@ CustomCCode #include <EGL/egl.h>
Include ../intptr.cfg
-CustomJavaCode EGL private static EGLProcAddressTable _table = new EGLProcAddressTable();
+CustomJavaCode EGL private static EGLProcAddressTable _table = new EGLProcAddressTable(new GLProcAddressResolver());
CustomJavaCode EGL public static void resetProcAddressTable(DynamicLookupHelper lookup) {
-CustomJavaCode EGL GLProcAddressHelper.resetProcAddressTable(_table, lookup);
+CustomJavaCode EGL _table.reset(lookup);
CustomJavaCode EGL }
# There are some #defines in egl.h that GlueGen and PCPP don't currently handle
@@ -47,4 +47,4 @@ CustomJavaCode EGL return dispatch_eglGetProcAddress1(procname, eglGetProcAdd
CustomJavaCode EGL }
-Import com.jogamp.gluegen.runtime.opengl.GLProcAddressHelper
+Import com.jogamp.gluegen.runtime.opengl.GLProcAddressResolver