From 4995158cea71ffad3fa200d1344b4025d1a93520 Mon Sep 17 00:00:00 2001 From: gfxadmin Date: Sat, 3 Dec 2005 02:42:11 +0000 Subject: 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 --- src/classes/com/sun/opengl/impl/error/Error.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/classes/com') 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) ] ); } -- cgit v1.2.3