aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-03-19 07:40:41 +0000
committerKenneth Russel <[email protected]>2009-03-19 07:40:41 +0000
commitfa014178e3f10e161610ce9c2e1cdb5d1b16ea32 (patch)
treee2ad3cc285ee9a78877daee6b85da93e576ee71c /src
parent709b0c400a477945efd66185c229fc15f6805c07 (diff)
Removed reflective queries from GLProfile and their use in
BuildComposablePipeline's generated code. Stopped squelching exceptions in GlueGen. Fixed error in glxext.cfg. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1888 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src')
-rw-r--r--src/jogl/classes/javax/media/opengl/GLProfile.java24
1 files changed, 0 insertions, 24 deletions
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";