diff options
Diffstat (limited to 'make/config/jogl/glu-CustomJavaCode-gl2es1.java')
-rwxr-xr-x | make/config/jogl/glu-CustomJavaCode-gl2es1.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/config/jogl/glu-CustomJavaCode-gl2es1.java b/make/config/jogl/glu-CustomJavaCode-gl2es1.java index f3b4322d9..e93e48edd 100755 --- a/make/config/jogl/glu-CustomJavaCode-gl2es1.java +++ b/make/config/jogl/glu-CustomJavaCode-gl2es1.java @@ -238,8 +238,8 @@ private static GLUProcAddressTable getGLUProcAddressTable() { loadGLULibrary(); } if (gluProcAddressTable == null) { - GLUProcAddressTable tmp = new GLUProcAddressTable(); - GLProcAddressHelper.resetProcAddressTable(tmp, GLDrawableFactoryImpl.getFactoryImpl()); + GLUProcAddressTable tmp = new GLUProcAddressTable(new GLProcAddressResolver()); + tmp.resetProcAddressTable(GLDrawableFactoryImpl.getFactoryImpl()); gluProcAddressTable = tmp; } return gluProcAddressTable; |