summaryrefslogtreecommitdiffstats
path: root/src/gleem/TestTranslate2.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-07-10 23:17:52 +0000
committerKenneth Russel <[email protected]>2005-07-10 23:17:52 +0000
commit15bc81d1e89d16e7f462f13acb554d4df27fa1b8 (patch)
tree89dd265110545538f6b236cfd9f62d48fd9126f2 /src/gleem/TestTranslate2.java
parentaffb27f968fb3cb7902146ad7b521b7b24d18fe5 (diff)
Initial set of context-related changes for the JSR-231 API. GLContext
has been exposed in the public API. The GLEventListener callback mechanism has been removed from the core GLContext implementation and moved up to a higher level. GLAutoDrawable now contains the GLEventListener-related methods, and the GLEventListener's methods now receive a GLAutoDrawable as argument. All JOGL demos have been updated for the new APIs. Many FIXMEs and much unimplemented functionality remain. There is slightly different initialization behavior for the demos containing pbuffers, and the deferring of reshape callbacks needs to be rethought. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JSR-231@100 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/gleem/TestTranslate2.java')
-rw-r--r--src/gleem/TestTranslate2.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gleem/TestTranslate2.java b/src/gleem/TestTranslate2.java
index 0906d8f..70a0041 100644
--- a/src/gleem/TestTranslate2.java
+++ b/src/gleem/TestTranslate2.java
@@ -55,7 +55,7 @@ public class TestTranslate2 {
private GLU glu;
private CameraParameters params = new CameraParameters();
- public void init(GLDrawable drawable) {
+ public void init(GLAutoDrawable drawable) {
gl = drawable.getGL();
glu = drawable.getGLU();
@@ -96,13 +96,13 @@ public class TestTranslate2 {
manager.showManipInWindow(manip, drawable);
}
- public void display(GLDrawable drawable) {
+ public void display(GLAutoDrawable drawable) {
gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
ManipManager.getManipManager().updateCameraParameters(drawable, params);
ManipManager.getManipManager().render(drawable, gl);
}
- public void reshape(GLDrawable drawable, int x, int y, int w, int h) {
+ public void reshape(GLAutoDrawable drawable, int x, int y, int w, int h) {
float aspect, theta;
aspect = (float) w / (float) h;
if (w >= h)
@@ -121,7 +121,7 @@ public class TestTranslate2 {
}
// Unused routines
- public void displayChanged(GLDrawable drawable, boolean modeChanged, boolean deviceChanged) {}
+ public void displayChanged(GLAutoDrawable drawable, boolean modeChanged, boolean deviceChanged) {}
}
public static void main(String[] args) {