Skip to content

Commit

Permalink
Temp: updated Testcases to onscreen
Browse files Browse the repository at this point in the history
  • Loading branch information
Rami Santina committed Mar 30, 2011
1 parent 34f9f49 commit 48d0ea9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static GLWindow createWindow(String title, GLCapabilitiesImmutable caps, int wid
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);
Expand All @@ -83,7 +83,7 @@ public void testRegionRendererR2T01() throws InterruptedException {
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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ static GLWindow createWindow(String title, GLCapabilitiesImmutable caps, int wid
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);
Expand Down Expand Up @@ -94,7 +93,6 @@ public void testTextRendererR2T01() throws InterruptedException {
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);
Expand Down

0 comments on commit 48d0ea9

Please sign in to comment.