diff options
author | Sven Gothel <[email protected]> | 2013-06-17 06:19:57 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-17 06:19:57 +0200 |
commit | 24b63b18e6ca3f657350d6c80e4914eadce60164 (patch) | |
tree | 42ef4726a8b0480129f3ea9a774feb99fb12cbe5 | |
parent | 809201c2806485fb6cd0195d43ccf43c343d591e (diff) |
Solve Bug 735 Mystery: glViewport(..) was missing - duh :)
-rw-r--r-- | make/scripts/tests.sh | 4 | ||||
-rw-r--r-- | src/test/com/jogamp/opengl/test/bugs/Bug735Inv0AppletAWT.java | 2 | ||||
-rw-r--r-- | src/test/com/jogamp/opengl/test/bugs/Bug735Inv1AppletAWT.java | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index ee4411c08..5fd5d621d 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -441,10 +441,10 @@ function testawtswt() { #testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestLandscapeES2NEWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestLandscapeES2NewtCanvasAWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NewtCanvasAWT $* -#testawt com.jogamp.opengl.test.bugs.Bug735Inv0AppletAWT $* +testawt com.jogamp.opengl.test.bugs.Bug735Inv0AppletAWT $* #testawt com.jogamp.opengl.test.bugs.Bug735Inv1AppletAWT $* #testawt com.jogamp.opengl.test.bugs.Bug735Inv2AppletAWT $* -testawt com.jogamp.opengl.test.bugs.Bug735Inv3AppletAWT $* +#testawt com.jogamp.opengl.test.bugs.Bug735Inv3AppletAWT $* #testawt com.jogamp.opengl.test.bugs.Bug735Inv4AWT $* # diff --git a/src/test/com/jogamp/opengl/test/bugs/Bug735Inv0AppletAWT.java b/src/test/com/jogamp/opengl/test/bugs/Bug735Inv0AppletAWT.java index 58ba03638..4cf342c0e 100644 --- a/src/test/com/jogamp/opengl/test/bugs/Bug735Inv0AppletAWT.java +++ b/src/test/com/jogamp/opengl/test/bugs/Bug735Inv0AppletAWT.java @@ -308,6 +308,8 @@ public class Bug735Inv0AppletAWT extends Applet implements Runnable { // Disables vsync gl.setSwapInterval(0); } + gl.glViewport(0, 0, width, height); + glu = new GLU(); vertShader = ShaderCode.create(gl, GL2ES2.GL_VERTEX_SHADER, LandscapeES2.class, "shader", "shader/bin", "landscape", true); diff --git a/src/test/com/jogamp/opengl/test/bugs/Bug735Inv1AppletAWT.java b/src/test/com/jogamp/opengl/test/bugs/Bug735Inv1AppletAWT.java index 8c8dd77da..a03afba7a 100644 --- a/src/test/com/jogamp/opengl/test/bugs/Bug735Inv1AppletAWT.java +++ b/src/test/com/jogamp/opengl/test/bugs/Bug735Inv1AppletAWT.java @@ -307,6 +307,8 @@ public class Bug735Inv1AppletAWT extends Applet implements Runnable { // Disables vsync gl.setSwapInterval(0); } + gl.glViewport(0, 0, width, height); + glu = new GLU(); vertShader = ShaderCode.create(gl, GL2ES2.GL_VERTEX_SHADER, LandscapeES2.class, "shader", "shader/bin", "landscape", true); |