aboutsummaryrefslogtreecommitdiffstats
path: root/make/glu-CustomJavaCode-base.java
diff options
context:
space:
mode:
Diffstat (limited to 'make/glu-CustomJavaCode-base.java')
-rwxr-xr-xmake/glu-CustomJavaCode-base.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/make/glu-CustomJavaCode-base.java b/make/glu-CustomJavaCode-base.java
index b506be00e..e0d5abc5e 100755
--- a/make/glu-CustomJavaCode-base.java
+++ b/make/glu-CustomJavaCode-base.java
@@ -85,18 +85,20 @@ public static final GLU createGLU(String profile) throws GLUnsupportedException
if(GLProfile.GL2.equals(profile)) {
return (GLU) GLReflection.createInstance("javax.media.opengl.glu.gl2.GLUgl2");
}
- } catch (GLUnsupportedException e) { System.out.println(e); }
+ } catch (GLUnsupportedException e) { e.printStackTrace(); }
try {
if(GLProfile.GL2ES12.equals(profile) || GLProfile.GL2.equals(profile) || GLProfile.GLES1.equals(profile)) {
return (GLU) GLReflection.createInstance("javax.media.opengl.glu.gl2es1.GLUgl2es1");
}
- } catch (GLUnsupportedException e) { System.out.println(e); }
+ } catch (GLUnsupportedException e) { e.printStackTrace(); }
+ // There is no specialized ES 2 GLU at this time
+ /*
try {
if(GLProfile.GL2ES12.equals(profile) || GLProfile.GL2.equals(profile) || GLProfile.GLES2.equals(profile)) {
return (GLU) GLReflection.createInstance("javax.media.opengl.glu.gl2es2.GLUgl2es2");
}
- } catch (GLUnsupportedException e) { System.out.println(e); }
-
+ } catch (GLUnsupportedException e) { e.printStackTrace(); }
+ */
return new GLU();
}