summaryrefslogtreecommitdiffstats
path: root/test/Issue326Test2.java
diff options
context:
space:
mode:
authorMartin Tschöpe <[email protected]>2010-10-31 20:06:43 +0800
committerSven Gothel <[email protected]>2010-11-15 16:31:25 +0800
commit03f397d2da70b8120908b631d53748678c46272c (patch)
tree10c8edb9e68466afd69ed21787473fd20134cd56 /test/Issue326Test2.java
parentb4890c42c79419150ae17babe9ad10f46ee9fbbb (diff)
Fixed includes and adapt to the new interface-structure
As the interface structure was updated some time ago these tests didn't compile any more. This patch adjusts them to use the new structure, such that they can be run again.
Diffstat (limited to 'test/Issue326Test2.java')
-rw-r--r--test/Issue326Test2.java21
1 files changed, 13 insertions, 8 deletions
diff --git a/test/Issue326Test2.java b/test/Issue326Test2.java
index 10ec4417b..b87eee21b 100644
--- a/test/Issue326Test2.java
+++ b/test/Issue326Test2.java
@@ -1,8 +1,12 @@
import java.awt.Font;
import java.awt.Frame;
import java.awt.event.*;
-import javax.media.opengl.*;
-import com.jogamp.opengl.util.j2d.*;
+import javax.media.opengl.GL2;
+import javax.media.opengl.GLAutoDrawable;
+import javax.media.opengl.GLEventListener;
+import javax.media.opengl.awt.GLCanvas;
+
+import com.jogamp.opengl.util.awt.*;
/**
* Another test case demonstrating corruption with older version of
@@ -37,9 +41,9 @@ public class Issue326Test2 extends Frame implements GLEventListener {
}
public void display(GLAutoDrawable drawable) {
- GL gl = drawable.getGL();
+ GL2 gl = drawable.getGL().getGL2();
gl.glClearColor(0, 0, 0, 0);
- gl.glClear(GL.GL_COLOR_BUFFER_BIT|GL.GL_DEPTH_BUFFER_BIT);
+ gl.glClear(GL2.GL_COLOR_BUFFER_BIT|GL2.GL_DEPTH_BUFFER_BIT);
tr.beginRendering(drawable.getWidth(), drawable.getHeight());
tr.draw("LA CLAPI\u00c8RE \nAlt: 1100-1700m \nGlissement de terrain majeur", 16, 80);
@@ -54,13 +58,14 @@ public class Issue326Test2 extends Frame implements GLEventListener {
}
public void reshape(GLAutoDrawable arg0, int x, int y, int w, int h) {
- GL gl = arg0.getGL();
- gl.glMatrixMode(GL.GL_PROJECTION);
+ GL2 gl = arg0.getGL().getGL2();
+ gl.glMatrixMode(GL2.GL_PROJECTION);
gl.glLoadIdentity();
gl.glOrtho(0.0, w, 0.0, h, -1, 1);
- gl.glMatrixMode(GL.GL_MODELVIEW);
+ gl.glMatrixMode(GL2.GL_MODELVIEW);
gl.glLoadIdentity();
}
- public void displayChanged(GLAutoDrawable arg0, boolean arg1, boolean arg2) {}
+
+ public void dispose(GLAutoDrawable drawable) {}
}