diff options
author | Sven Gothel <[email protected]> | 2011-03-30 16:10:09 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-03-30 16:10:09 +0200 |
commit | 8c43a24f6ed75b6c8f0b2d5a0b77d3b14e1d745e (patch) | |
tree | de11763b7add7a576e8a7f666c18429751abdedb /src/test | |
parent | 69e9ae0bd6ada2177562714e301d68480eb001b8 (diff) | |
parent | 48d0ea92f795d2f187a418918c9246ee28848065 (diff) |
Merge branch 'master' of ssh://jogamp.org/data/tmp/cache/jogl-turtle2d
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/graph/TestRegionRenderer01.java | 4 | ||||
-rwxr-xr-x | src/test/com/jogamp/opengl/test/junit/graph/TestTextRenderer01.java | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/TestRegionRenderer01.java b/src/test/com/jogamp/opengl/test/junit/graph/TestRegionRenderer01.java index 35f0325c9..52892e646 100644 --- a/src/test/com/jogamp/opengl/test/junit/graph/TestRegionRenderer01.java +++ b/src/test/com/jogamp/opengl/test/junit/graph/TestRegionRenderer01.java @@ -56,7 +56,7 @@ public class TestRegionRenderer01 { public void testRegionRendererR2T01() throws InterruptedException {
GLProfile glp = GLProfile.get(GLProfile.GL3);
GLCapabilities caps = new GLCapabilities(glp);
- caps.setOnscreen(false);
+ //caps.setOnscreen(false);
caps.setAlphaBits(4);
GLWindow window = createWindow("shape-r2t1-msaa0", caps, 800,400);
@@ -83,7 +83,7 @@ public class TestRegionRenderer01 { public void testRegionRendererMSAA01() throws InterruptedException {
GLProfile glp = GLProfile.get(GLProfile.GL2ES2);
GLCapabilities caps = new GLCapabilities(glp);
- caps.setOnscreen(false);
+ // caps.setOnscreen(false);
caps.setAlphaBits(4);
caps.setSampleBuffers(true);
caps.setNumSamples(4);
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/TestTextRenderer01.java b/src/test/com/jogamp/opengl/test/junit/graph/TestTextRenderer01.java index 8f5174a89..acfde7e1f 100755 --- a/src/test/com/jogamp/opengl/test/junit/graph/TestTextRenderer01.java +++ b/src/test/com/jogamp/opengl/test/junit/graph/TestTextRenderer01.java @@ -59,7 +59,6 @@ public class TestTextRenderer01 { public void testTextRendererR2T01() throws InterruptedException {
GLProfile glp = GLProfile.get(GLProfile.GL3);
GLCapabilities caps = new GLCapabilities(glp);
- caps.setOnscreen(false);
caps.setAlphaBits(4);
GLWindow window = createWindow("text-r2t1-msaa0", caps, 800,400);
@@ -94,7 +93,6 @@ public class TestTextRenderer01 { public void testTextRendererMSAA01() throws InterruptedException {
GLProfile glp = GLProfile.get(GLProfile.GL2ES2);
GLCapabilities caps = new GLCapabilities(glp);
- caps.setOnscreen(false);
caps.setAlphaBits(4);
caps.setSampleBuffers(true);
caps.setNumSamples(4);
|