aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-05-13 22:17:00 +0200
committerSven Gothel <[email protected]>2012-05-13 22:17:00 +0200
commit259135870a857bfa3743bf1aa8ae424ced46212d (patch)
tree17fca696527cc785cf91b04eb040f6f1faa1619e
parentdf6c9accd84b801d86c8f6f9ce35e02ffd417f71 (diff)
Demo/Test GearsES2: Supress reshape debug println
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsES2.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsES2.java b/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsES2.java
index de9a04705..21aca0487 100644
--- a/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsES2.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/GearsES2.java
@@ -184,7 +184,7 @@ public class GearsES2 implements GLEventListener {
}
public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) {
- System.err.println(Thread.currentThread()+" GearsES2.reshape "+x+"/"+y+" "+width+"x"+height+", swapInterval "+swapInterval);
+ // System.err.println(Thread.currentThread()+" GearsES2.reshape "+x+"/"+y+" "+width+"x"+height+", swapInterval "+swapInterval);
GL2ES2 gl = drawable.getGL().getGL2ES2();
st.useProgram(gl, true);
@@ -213,7 +213,7 @@ public class GearsES2 implements GLEventListener {
} catch (NoClassDefFoundError e) { useAndroidDebug=false; }
}
- System.err.println(Thread.currentThread()+" GearsES2.reshape FIN");
+ // System.err.println(Thread.currentThread()+" GearsES2.reshape FIN");
}
private boolean useAndroidDebug = false;