diff options
Diffstat (limited to 'make/glu-CustomJavaCode.java')
-rw-r--r-- | make/glu-CustomJavaCode.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/glu-CustomJavaCode.java b/make/glu-CustomJavaCode.java index e5fac91e6..56a3fc0c4 100644 --- a/make/glu-CustomJavaCode.java +++ b/make/glu-CustomJavaCode.java @@ -1436,7 +1436,7 @@ private static GLUProcAddressTable gluProcAddressTable; private static GLUProcAddressTable getGLUProcAddressTable() { if (gluProcAddressTable == null) { GLUProcAddressTable tmp = new GLUProcAddressTable(); - GLDrawableFactoryImpl.getFactoryImpl().resetProcAddressTable(tmp); + ProcAddressHelper.resetProcAddressTable(tmp, GLDrawableFactoryImpl.getFactoryImpl()); gluProcAddressTable = tmp; } return gluProcAddressTable; |