summaryrefslogtreecommitdiffstats
path: root/src/demos/tess
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-09-11 19:07:57 +0000
committerKenneth Russel <[email protected]>2005-09-11 19:07:57 +0000
commite4f34a8d3f89790b9d25d5c7548b60a9dffdc92b (patch)
treeb6d4493cb27e3d54159c921595158499c9553596 /src/demos/tess
parente5f7e59d63cca6b49bacb36f5355b7896b1a8574 (diff)
Moved GLU-related classes into javax.media.opengl.glu package. Still
need to break dependence from GLContext / GLAutoDrawable classes' getGLU() method down into this new package; should make GLU a class rather than an interface and probably make it instantiatable with a target GL object in the constructor. Should also make GLU and GLUT interfaces look similar (i.e., probably accept GL and GLU objects in constructor of GLUT rather than taking them as arguments on each method call). Ignored GLUnurbs data type from glue code generation. Updated demos for new location of GLU. Fixed broken package of Version class. Minor javadoc cleanups. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JSR-231@129 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/tess')
-rw-r--r--src/demos/tess/Tess.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/demos/tess/Tess.java b/src/demos/tess/Tess.java
index de57cf5..8706c0d 100644
--- a/src/demos/tess/Tess.java
+++ b/src/demos/tess/Tess.java
@@ -59,6 +59,7 @@ package demos.tess;
*/
import javax.media.opengl.*;
+import javax.media.opengl.glu.*;
import com.sun.opengl.utils.*;
import java.awt.*;
@@ -194,7 +195,7 @@ public class Tess {
}//end TessRenderer
- public static class TessCallback extends javax.media.opengl.GLUtessellatorCallbackAdapter {
+ public static class TessCallback extends javax.media.opengl.glu.GLUtessellatorCallbackAdapter {
GL gl;
GLU glu;