summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-03-28 14:19:38 +0300
committerRami Santina <[email protected]>2011-03-28 14:19:38 +0300
commit8b288c20da315b24ac65d14475d3133e45007981 (patch)
treeb86be8d69c01a83ffebe7819381f346dbe7274ed
parent3bf42d92a3baf5e506f553fc20c71c082c39790e (diff)
Testcase for R2T with two sizes
-rw-r--r--src/demo/GPUTextGLListenerBase01.java7
-rw-r--r--src/demo/GPUTextNewtDemo02.java14
-rwxr-xr-xsrc/test/com/jogamp/opengl/test/junit/graph/TestHwTextRenderer01.java153
3 files changed, 157 insertions, 17 deletions
diff --git a/src/demo/GPUTextGLListenerBase01.java b/src/demo/GPUTextGLListenerBase01.java
index 7dffbd7d1..077c32978 100644
--- a/src/demo/GPUTextGLListenerBase01.java
+++ b/src/demo/GPUTextGLListenerBase01.java
@@ -47,7 +47,7 @@ import com.jogamp.opengl.util.awt.Screenshot;
public abstract class GPUTextGLListenerBase01 implements GLEventListener {
Vertex.Factory<? extends Vertex> vfactory;
- HwTextRenderer textRenderer;
+ protected HwTextRenderer textRenderer;
Font font;
boolean debug;
boolean trace;
@@ -88,7 +88,8 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener {
this.yTran = ytrans;
this.ang = angle;
this.zoom = zoom;
- this.texSize = fbosize;
+ this.texSize = fbosize;
+ doMatrix = true;
}
public void init(GLAutoDrawable drawable) {
@@ -111,7 +112,7 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener {
dumpMatrix(true);
}
- boolean printScreen = true;
+ protected boolean printScreen = true;
public void display(GLAutoDrawable drawable) {
GL2ES2 gl = drawable.getGL().getGL2ES2();
diff --git a/src/demo/GPUTextNewtDemo02.java b/src/demo/GPUTextNewtDemo02.java
index 4174da30b..bda7fe0e2 100644
--- a/src/demo/GPUTextNewtDemo02.java
+++ b/src/demo/GPUTextNewtDemo02.java
@@ -106,19 +106,5 @@ public class GPUTextNewtDemo02 {
//gl.glHint(GL2.GL_PERSPECTIVE_CORRECTION_HINT, GL3.GL_NICEST);
MSAATool.dump(drawable);
}
- public void display(GLAutoDrawable drawable) {
- super.display(drawable);
-
- if(printScreen){
- try {
- super.printScreen(window, "./","r2t1-msaa0", false);
- printScreen=false;
- } catch (GLException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
}
}
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/TestHwTextRenderer01.java b/src/test/com/jogamp/opengl/test/junit/graph/TestHwTextRenderer01.java
new file mode 100755
index 000000000..9af39a3f3
--- /dev/null
+++ b/src/test/com/jogamp/opengl/test/junit/graph/TestHwTextRenderer01.java
@@ -0,0 +1,153 @@
+package test.com.jogamp.opengl.test.junit.graph;
+
+import java.io.IOException;
+
+import javax.media.nativewindow.NativeWindowFactory;
+import javax.media.opengl.GL;
+import javax.media.opengl.GL3;
+import javax.media.opengl.GLAutoDrawable;
+import javax.media.opengl.GLCapabilities;
+import javax.media.opengl.GLException;
+import javax.media.opengl.GLProfile;
+
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import com.jogamp.graph.curve.Region;
+import com.jogamp.graph.geom.opengl.SVertex;
+import com.jogamp.newt.Window;
+import com.jogamp.newt.opengl.GLWindow;
+import com.jogamp.opengl.util.FPSAnimator;
+
+import demo.GPUTextGLListenerBase01;
+
+public class TestHwTextRenderer01 {
+
+ @BeforeClass
+ public static void initClass() {
+ GLProfile.initSingleton(true);
+ NativeWindowFactory.initSingleton(true);
+ }
+
+ static void destroyWindow(Window window) {
+ if(null!=window) {
+ window.destroy();
+ }
+ }
+
+ static GLWindow createWindow(String title, GLCapabilities caps, int width, int height, boolean onscreen) {
+ Assert.assertNotNull(caps);
+ caps.setOnscreen(onscreen);
+
+ GLWindow window = GLWindow.create(caps);
+ window.setSize(width, height);
+ window.setPosition(10, 10);
+ window.setTitle(title);
+ Assert.assertNotNull(window);
+ window.setVisible(true);
+ //window.setAutoSwapBufferMode(false);
+
+ return window;
+ }
+
+ @Test
+ public void testTextRendererR2T01() throws InterruptedException {
+ GLProfile glp = GLProfile.get(GLProfile.GL3bc);
+ GLCapabilities caps = new GLCapabilities(glp);
+ caps.setAlphaBits(4);
+
+ GLWindow window = createWindow("r2t1msaa0", caps, 400,400,true);
+ TextR2TGLListener textGLListener = new TextR2TGLListener(Region.TWO_PASS);
+ textGLListener.setTech(-10, 10, 0f, -1000, 400);
+ textGLListener.attachTo(window);
+
+ FPSAnimator animator = new FPSAnimator(60);
+ animator.add(window);
+ animator.start();
+
+ window.getAnimator().resume();
+
+ while(!textGLListener.isPrinted()){
+ Thread.sleep(100);
+ }
+ animator.stop();
+ destroyWindow(window);
+
+ Thread.sleep(1000);
+ }
+
+ @Test
+ public void testTextRendererR2T02() throws InterruptedException {
+ GLProfile glp = GLProfile.get(GLProfile.GL3bc);
+ GLCapabilities caps = new GLCapabilities(glp);
+ caps.setAlphaBits(4);
+
+ GLWindow window = createWindow("r2t1msaa0", caps, 400,400,true);
+ TextR2TGLListener textGLListener = new TextR2TGLListener(Region.TWO_PASS);
+ textGLListener.setTech(-111, 74, 0, -380, 900);
+ textGLListener.attachTo(window);
+
+ while(!window.isRealized()){
+
+ }
+
+ FPSAnimator animator = new FPSAnimator(60);
+ animator.add(window);
+ animator.start();
+
+ window.getAnimator().resume();
+
+ while(!textGLListener.isPrinted()){
+ Thread.sleep(100);
+ }
+ animator.stop();
+ destroyWindow(window);
+ }
+
+
+ private class TextR2TGLListener extends GPUTextGLListenerBase01 {
+ GLWindow glwindow;
+ public TextR2TGLListener(int type) {
+ super(SVertex.factory(), type, false, false);
+ }
+
+ public void setTech(float xt, float yt, float angle, int zoom, int fboSize){
+ setMatrix(xt, yt, angle, zoom, fboSize);
+ }
+
+ public void init(GLAutoDrawable drawable) {
+ GL3 gl = drawable.getGL().getGL3();
+ super.init(drawable);
+ gl.setSwapInterval(1);
+ gl.glEnable(GL3.GL_DEPTH_TEST);
+ textRenderer.init(gl);
+ textRenderer.setAlpha(gl, 1.0f);
+ textRenderer.setColor(gl, 0.0f, 0.0f, 0.0f);
+ gl.glDisable(GL.GL_MULTISAMPLE);
+ }
+ public void attachTo(GLWindow window) {
+ super.attachTo(window);
+ glwindow = window;
+ }
+
+ public boolean isPrinted(){
+ return !printScreen;
+ }
+
+ public void display(GLAutoDrawable drawable) {
+ super.display(drawable);
+
+ try {
+ if(printScreen){
+ printScreen(glwindow, "./", "r2t1msaa0", false);
+ printScreen = false;
+ }
+ } catch (GLException e) {
+ e.printStackTrace();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ }
+}