aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java')
-rw-r--r--src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java b/src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java
index f8858d2..3f88261 100644
--- a/src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java
+++ b/src/java/com/sun/gluegen/runtime/opengl/GLProcAddressHelper.java
@@ -75,9 +75,9 @@ public class GLProcAddressHelper extends ProcAddressHelper {
"\" in class " + tableClass.getName(), e);
}
long newProcAddress = 0;
- int funcNamePermNum = GLUnifiedName.getNamePermutationNumber(funcNameBase);
+ int funcNamePermNum = GLExtensionNames.getFuncNamePermutationNumber(funcNameBase);
for(int j = 0; 0==newProcAddress && j < funcNamePermNum; j++) {
- String funcName = GLUnifiedName.getNamePermutation(funcNameBase, j);
+ String funcName = GLExtensionNames.getFuncNamePermutation(funcNameBase, j);
try {
if (DEBUG) {
dout.println(" try function lookup: " + funcName + " / " + funcNameBase);