diff options
-rwxr-xr-x | make/config/jogl/glxext.cfg | 1 | ||||
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLProfile.java | 24 |
2 files changed, 0 insertions, 25 deletions
diff --git a/make/config/jogl/glxext.cfg b/make/config/jogl/glxext.cfg index d69a3df3b..0fcdfcf0d 100755 --- a/make/config/jogl/glxext.cfg +++ b/make/config/jogl/glxext.cfg @@ -9,7 +9,6 @@ JavaClass GLXExt ImplPackage com.sun.opengl.impl.x11.glx ImplJavaClass GLXExtImpl -ExtendedInterfaceSymbols ../build-temp/gensrc/classes/com/sun/opengl/impl/x11/glx/GLX.java Include gl-common-gl2.cfg Include gl-desktop.cfg diff --git a/src/jogl/classes/javax/media/opengl/GLProfile.java b/src/jogl/classes/javax/media/opengl/GLProfile.java index 0d20f1a4d..625099e16 100644 --- a/src/jogl/classes/javax/media/opengl/GLProfile.java +++ b/src/jogl/classes/javax/media/opengl/GLProfile.java @@ -197,30 +197,6 @@ public class GLProfile { return (null==test_profile)?false:test_profile.equals(profile); } - public static final boolean implementationOfGL2(Object obj) { - return NWReflection.implementationOf(obj, "javax.media.opengl.GL2"); - } - - public static final boolean implementationOfGLES1(Object obj) { - return NWReflection.implementationOf(obj, "javax.media.opengl.GLES1"); - } - - public static final boolean implementationOfGLES2(Object obj) { - return NWReflection.implementationOf(obj, "javax.media.opengl.GLES2"); - } - - public static final boolean implementationOfGLES(Object obj) { - return implementationOfGLES1(obj) || implementationOfGLES2(obj); - } - - public static final boolean implementationOfGL2ES1(Object obj) { - return NWReflection.implementationOf(obj, "javax.media.opengl.GL2ES1"); - } - - public static final boolean implementationOfGL2ES2(Object obj) { - return NWReflection.implementationOf(obj, "javax.media.opengl.GL2ES2"); - } - public static final String getGLImplBaseClassName() { if(isGL2()) { return "com.sun.opengl.impl.gl2.GL2"; |