diff options
author | Kenneth Russel <[email protected]> | 2009-06-15 22:52:34 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2009-06-15 22:52:34 +0000 |
commit | 506b634b780dcd23aa61015c2ceba3e687196abf (patch) | |
tree | 897649a36cc769351704a050828f8e0e994c5686 /test/Issue326Test2.java | |
parent | 04c0c10bfee764dbd0301ae83a0fae695dcb5b23 (diff) |
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@1958 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'test/Issue326Test2.java')
-rwxr-xr-x | test/Issue326Test2.java | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/test/Issue326Test2.java b/test/Issue326Test2.java deleted file mode 100755 index f2258c858..000000000 --- a/test/Issue326Test2.java +++ /dev/null @@ -1,66 +0,0 @@ -import java.awt.Font; -import java.awt.Frame; -import java.awt.event.*; -import javax.media.opengl.*; -import com.sun.opengl.util.j2d.*; - -/** - * Another test case demonstrating corruption with older version of - * TextRenderer when glyphs were too big for backing store. Font and - * text courtesy of Patrick Murris. Adapted from Issue326Test1. - */ - -public class Issue326Test2 extends Frame implements GLEventListener { - - int width, height; - - public static void main(String[] args) { - new Issue326Test2(); - } - - GLCanvas canvas; - TextRenderer tr; - - public Issue326Test2() { - super(""); - this.setSize(800, 800); - canvas = new GLCanvas(); - canvas.addGLEventListener(this); - add(canvas); - - setVisible(true); - addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { - System.exit(0); - } - }); - } - - public void display(GLAutoDrawable drawable) { - GL gl = drawable.getGL(); - gl.glClearColor(0, 0, 0, 0); - gl.glClear(GL.GL_COLOR_BUFFER_BIT|GL.GL_DEPTH_BUFFER_BIT); - - tr.beginRendering(drawable.getWidth(), drawable.getHeight()); - tr.draw("LA CLAPI\u00c8RE \nAlt: 1100-1700m \nGlissement de terrain majeur", 16, 80); - tr.draw("dans la haute Tin\u00e9e, sur un flanc du Parc du Mercantour.", 16, 16); - tr.endRendering(); - - } - - public void init(GLAutoDrawable arg0) { - tr = new TextRenderer(Font.decode("Arial-BOLD-64")); - tr.setColor(1, 1, 1 ,1); - } - - public void reshape(GLAutoDrawable arg0, int x, int y, int w, int h) { - GL gl = arg0.getGL(); - gl.glMatrixMode(GL.GL_PROJECTION); - gl.glLoadIdentity(); - gl.glOrtho(0.0, w, 0.0, h, -1, 1); - gl.glMatrixMode(GL.GL_MODELVIEW); - gl.glLoadIdentity(); - } - public void displayChanged(GLAutoDrawable arg0, boolean arg1, boolean arg2) {} -} - |