diff options
Diffstat (limited to 'make/glu-CustomJavaCode-gl2.java')
-rw-r--r-- | make/glu-CustomJavaCode-gl2.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/make/glu-CustomJavaCode-gl2.java b/make/glu-CustomJavaCode-gl2.java index 247e37c87..b1d35532c 100644 --- a/make/glu-CustomJavaCode-gl2.java +++ b/make/glu-CustomJavaCode-gl2.java @@ -46,25 +46,6 @@ public static final GL2 getCurrentGL2() throws GLException { return curContext.getGL().getGL2(); } -public final String gluErrorString(int errorCode) { - return Error.gluErrorString(errorCode); -} - -/* extName is an extension name. - * extString is a string of extensions separated by blank(s). There may or - * may not be leading or trailing blank(s) in extString. - * This works in cases of extensions being prefixes of another like - * GL_EXT_texture and GL_EXT_texture3D. - * Returns true if extName is found otherwise it returns false. - */ -public final boolean gluCheckExtension(java.lang.String extName, java.lang.String extString) { - return Registry.gluCheckExtension(extName, extString); -} - -public final String gluGetString(int name) { - return Registry.gluGetString(name); -} - /** * Returns true if the specified GLU core- or extension-function can be * successfully used through this GLU instance. By "successfully" we mean |