diff options
Diffstat (limited to 'make/glu-CustomJavaCode-gl2.java')
-rw-r--r-- | make/glu-CustomJavaCode-gl2.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/glu-CustomJavaCode-gl2.java b/make/glu-CustomJavaCode-gl2.java index 8087d45c9..df76f715e 100644 --- a/make/glu-CustomJavaCode-gl2.java +++ b/make/glu-CustomJavaCode-gl2.java @@ -1387,7 +1387,7 @@ private static final GLUgl2ProcAddressTable getGLUProcAddressTable() { } if (gluProcAddressTable == null) { GLUgl2ProcAddressTable tmp = new GLUgl2ProcAddressTable(); - ProcAddressHelper.resetProcAddressTable(tmp, GLDrawableFactoryImpl.getFactoryImpl(false)); + ProcAddressHelper.resetProcAddressTable(tmp, GLDrawableFactoryImpl.getFactoryImpl()); gluProcAddressTable = tmp; } return gluProcAddressTable; @@ -1395,7 +1395,7 @@ private static final GLUgl2ProcAddressTable getGLUProcAddressTable() { private static final synchronized void loadGLULibrary() { if (!gluLibraryLoaded) { - GLDrawableFactoryImpl.getFactoryImpl(false).loadGLULibrary(); + GLDrawableFactoryImpl.getFactoryImpl().loadGLULibrary(); gluLibraryLoaded = true; } } |