diff options
author | gfxadmin <[email protected]> | 2005-12-03 02:42:11 +0000 |
---|---|---|
committer | gfxadmin <[email protected]> | 2005-12-03 02:42:11 +0000 |
commit | 4995158cea71ffad3fa200d1344b4025d1a93520 (patch) | |
tree | 2465e136ee73a04b0e6b13dd865afe9e0fbcf0c8 /src/classes/com/sun | |
parent | 44ec05f0404cea9de9b1942a563304758f2461c4 (diff) |
Submitted by: Travis
Remove all NURBS constants from the GLU bindings. We are not publishing
bindings to the NURBS subset of GLU in this release of the JSR-231 API.
Previously, we removed the NURBS methods from the implementation/spec,
but not the NURBS-related constants, as they are specified in GLU 1.3.
Modified Files:
make/glu-CustomJavaCode.java
src/classes/com/sun/opengl/impl/error/Error.java
----------------------------------------------------------------------
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@475 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun')
-rw-r--r-- | src/classes/com/sun/opengl/impl/error/Error.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/classes/com/sun/opengl/impl/error/Error.java b/src/classes/com/sun/opengl/impl/error/Error.java index b19fb4903..095bf5471 100644 --- a/src/classes/com/sun/opengl/impl/error/Error.java +++ b/src/classes/com/sun/opengl/impl/error/Error.java @@ -77,9 +77,9 @@ public class Error { if( (errorCode >= GLU.GLU_INVALID_ENUM) && (errorCode <= GLU.GLU_INVALID_OPERATION) ) { return( gluErrorStrings[ errorCode - GLU.GLU_INVALID_ENUM ] ); } - if( (errorCode >= GLU.GLU_NURBS_ERROR1) && (errorCode <= GLU.GLU_NURBS_ERROR37) ) { - return( gluErrorStrings[ errorCode - (GLU.GLU_NURBS_ERROR1 - 1) ] ); - } +// if( (errorCode >= GLU.GLU_NURBS_ERROR1) && (errorCode <= GLU.GLU_NURBS_ERROR37) ) { +// return( gluErrorStrings[ errorCode - (GLU.GLU_NURBS_ERROR1 - 1) ] ); +// } if( (errorCode >= GLU.GLU_TESS_ERROR1) && (errorCode <= GLU.GLU_TESS_ERROR8) ) { return( gluErrorStrings[ errorCode - (GLU.GLU_TESS_ERROR1 - 1) ] ); } |