aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-10-06 20:20:32 +0300
committerRami Santina <[email protected]>2011-10-06 20:20:32 +0300
commit25204678f889de889a6b23c170e17bd7f13d2c01 (patch)
tree0cfff478e1ba8d97f27450293b79f32d66a9de82
parent3f30f2c4bd5ee30aba5553ac249c8eb94595792a (diff)
GraphUI: flip y coords
-rw-r--r--src/test/com/jogamp/opengl/test/junit/graph/demos/GPUUISceneGLListener0A.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUUISceneGLListener0A.java b/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUUISceneGLListener0A.java
index 83b64bfac..5abc181a8 100644
--- a/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUUISceneGLListener0A.java
+++ b/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUUISceneGLListener0A.java
@@ -407,7 +407,7 @@ public class GPUUISceneGLListener0A implements GLEventListener {
xTran += Math.signum(dx);
}
else {
- yTran += Math.signum(dy);
+ yTran -= Math.signum(dy);
}
lx = nx;
ly = ny;