summaryrefslogtreecommitdiffstats
path: root/src/net/java/games/jogl/impl/registry
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-02-03 23:15:59 +0000
committerKenneth Russel <[email protected]>2005-02-03 23:15:59 +0000
commitdfbee835b5a50b1c6219bd53e15823ea83d73dd6 (patch)
tree3f857c82ce898123273d8f37e6b993a29211b6f2 /src/net/java/games/jogl/impl/registry
parentc8e814e48b4a46c1cb99636cbf15859dd6029b8a (diff)
Fixed build problems after integration of GKW's Java port of GLU
mipmap code git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@208 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/impl/registry')
-rw-r--r--src/net/java/games/jogl/impl/registry/Registry.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/games/jogl/impl/registry/Registry.java b/src/net/java/games/jogl/impl/registry/Registry.java
index 5e9e2f53b..ef9f868f3 100644
--- a/src/net/java/games/jogl/impl/registry/Registry.java
+++ b/src/net/java/games/jogl/impl/registry/Registry.java
@@ -48,9 +48,9 @@ public class Registry {
}
public static String gluGetString(int name) {
- if( name == GLU.GLU.GLU_VERSION ) {
+ if( name == GLU.GLU_VERSION ) {
return( "1.3" );
- } else if( name == GLU.GLU.GLU_EXTENSIONS ) {
+ } else if( name == GLU.GLU_EXTENSIONS ) {
return( "GLU_EXT_nurbs_tessellator GLU_EXT_object_space_tess " );
}
return( null );