diff options
author | Kenneth Russel <[email protected]> | 2005-08-30 08:25:24 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-08-30 08:25:24 +0000 |
commit | 434fb13fc6570086f095646f6ea5739d9c362d7c (patch) | |
tree | 6b0d16ce6f683ebe59c066803337342d2d3e08f4 /src/demos/tess/Tess.java | |
parent | 0a1fd96a6f3873e41dcced1c69dafd30bea3fc39 (diff) |
Renamed all files to intended destination packages for JSR-231. The
only package specified by the JSR is "javax.media.opengl". The utility
package com.sun.opengl.utils is Sun-specific and optional. The Cg
binding has been moved into com.sun.opengl.cg. Moved Animator and
FPSAnimator to com.sun.opengl.utils. Updated and tested demos with new
source code locations.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JSR-231@118 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/tess/Tess.java')
-rw-r--r-- | src/demos/tess/Tess.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/demos/tess/Tess.java b/src/demos/tess/Tess.java index 3bd02b5..4f3b152 100644 --- a/src/demos/tess/Tess.java +++ b/src/demos/tess/Tess.java @@ -58,7 +58,8 @@ package demos.tess; * @author Ported by Nathan Parker Burg, July 2003 */ -import net.java.games.jogl.*; +import javax.media.opengl.*; +import com.sun.opengl.utils.*; import java.awt.*; import java.awt.event.WindowAdapter; @@ -193,7 +194,7 @@ public class Tess { }//end TessRenderer - public static class TessCallback extends net.java.games.jogl.GLUtesselatorCallbackAdapter { + public static class TessCallback extends javax.media.opengl.GLUtesselatorCallbackAdapter { GL gl; GLU glu; |