Disabled Boolean enum (already exists from GL). Added 'Glu' prefix to Version, ErrorCode and ErrorString enums, to avoid clashes with the GL ones.

This commit is contained in:
the_fiddler 2007-11-04 15:14:08 +00:00
parent 3d656851dc
commit 58a6693f54

View file

@ -24,34 +24,41 @@
# OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has # OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has
# not been independently verified as being compliant with the OpenGL(R) # not been independently verified as being compliant with the OpenGL(R)
# version 1.2.1 Specification. # version 1.2.1 Specification.
###############################################################################
#
# Edited by StApostol. Revision 1
#
###############################################################################
############################################################################### ###############################################################################
Extensions define: Extensions define:
EXT_object_space_tess = 1 EXT_object_space_tess = 1
EXT_nurbs_tessellator = 1 EXT_nurbs_tessellator = 1
############################################################################### ###############################################################################
# Revision 1 (exists in GL enums)
Boolean enum: #Boolean enum:
FALSE = 0 # FALSE = 0
TRUE = 1 # TRUE = 1
############################################################################### ###############################################################################
Version enum: # Revision 1
GluVersion enum:
VERSION_1_1 = 1 VERSION_1_1 = 1
VERSION_1_2 = 1 VERSION_1_2 = 1
VERSION_1_3 = 1 VERSION_1_3 = 1
############################################################################### ###############################################################################
StringName enum: # Revision 1
GluStringName enum:
VERSION = 100800 VERSION = 100800
EXTENSIONS = 100801 EXTENSIONS = 100801
############################################################################### ###############################################################################
ErrorCode enum: # Revision 1
GluErrorCode enum:
INVALID_ENUM = 100900 INVALID_ENUM = 100900
INVALID_VALUE = 100901 INVALID_VALUE = 100901
OUT_OF_MEMORY = 100902 OUT_OF_MEMORY = 100902