00001 #include <stdio.h>
00002 #include <GL/gl.h>
00003
00004 main()
00005 {
00006
00007 printf(";;; Boolean values\n");
00008 printf("(defconstant GL_FALSE %d)\n", GL_FALSE);
00009 printf("(defconstant GL_TRUE %d)\n", GL_TRUE);
00010 printf("\n");
00011
00012
00013 printf(";;; Data types\n");
00014 printf("(defconstant GL_BYTE %d)\n", GL_BYTE);
00015 printf("(defconstant GL_UNSIGNED_BYTE %d)\n", GL_UNSIGNED_BYTE);
00016 printf("(defconstant GL_SHORT %d)\n", GL_SHORT);
00017 printf("(defconstant GL_UNSIGNED_SHORT %d)\n", GL_UNSIGNED_SHORT);
00018 printf("(defconstant GL_INT %d)\n", GL_INT);
00019 printf("(defconstant GL_UNSIGNED_INT %d)\n", GL_UNSIGNED_INT);
00020 printf("(defconstant GL_FLOAT %d)\n", GL_FLOAT);
00021 printf("(defconstant GL_2_BYTES %d)\n", GL_2_BYTES);
00022 printf("(defconstant GL_3_BYTES %d)\n", GL_3_BYTES);
00023 printf("(defconstant GL_4_BYTES %d)\n", GL_4_BYTES);
00024 printf("\n");
00025
00026
00027 printf(";;; Primitives\n");
00028 printf("(defconstant GL_LINES %d)\n", GL_LINES);
00029 printf("(defconstant GL_POINTS %d)\n", GL_POINTS);
00030 printf("(defconstant GL_LINE_STRIP %d)\n", GL_LINE_STRIP);
00031 printf("(defconstant GL_LINE_LOOP %d)\n", GL_LINE_LOOP);
00032 printf("(defconstant GL_TRIANGLES %d)\n", GL_TRIANGLES);
00033 printf("(defconstant GL_TRIANGLE_STRIP %d)\n", GL_TRIANGLE_STRIP);
00034 printf("(defconstant GL_TRIANGLE_FAN %d)\n", GL_TRIANGLE_FAN);
00035 printf("(defconstant GL_QUADS %d)\n", GL_QUADS);
00036 printf("(defconstant GL_QUAD_STRIP %d)\n", GL_QUAD_STRIP);
00037 printf("(defconstant GL_POLYGON %d)\n", GL_POLYGON);
00038 printf("(defconstant GL_EDGE_FLAG %d)\n", GL_EDGE_FLAG);
00039 printf("\n");
00040
00041
00042 printf(";;; Matrix Mode\n");
00043 printf("(defconstant GL_MATRIX_MODE %d)\n", GL_MATRIX_MODE);
00044 printf("(defconstant GL_MODELVIEW %d)\n", GL_MODELVIEW);
00045 printf("(defconstant GL_PROJECTION %d)\n", GL_PROJECTION);
00046 printf("(defconstant GL_TEXTURE %d)\n", GL_TEXTURE);
00047 printf("\n");
00048
00049
00050 printf(";;; Points\n");
00051 printf("(defconstant GL_POINT_SMOOTH %d)\n", GL_POINT_SMOOTH);
00052 printf("(defconstant GL_POINT_SIZE %d)\n", GL_POINT_SIZE);
00053 printf("(defconstant GL_POINT_SIZE_GRANULARITY %d)\n", GL_POINT_SIZE_GRANULARITY);
00054 printf("(defconstant GL_POINT_SIZE_RANGE %d)\n", GL_POINT_SIZE_RANGE);
00055 printf("\n");
00056
00057
00058 printf(";;; Lines\n");
00059 printf("(defconstant GL_LINE_SMOOTH %d)\n", GL_LINE_SMOOTH);
00060 printf("(defconstant GL_LINE_STIPPLE %d)\n", GL_LINE_STIPPLE);
00061 printf("(defconstant GL_LINE_STIPPLE_PATTERN %d)\n", GL_LINE_STIPPLE_PATTERN);
00062 printf("(defconstant GL_LINE_STIPPLE_REPEAT %d)\n", GL_LINE_STIPPLE_REPEAT);
00063 printf("(defconstant GL_LINE_WIDTH %d)\n", GL_LINE_WIDTH);
00064 printf("(defconstant GL_LINE_WIDTH_GRANULARITY %d)\n", GL_LINE_WIDTH_GRANULARITY);
00065 printf("(defconstant GL_LINE_WIDTH_RANGE %d)\n", GL_LINE_WIDTH_RANGE);
00066 printf("\n");
00067
00068
00069 printf(";;; Polygons\n");
00070 printf("(defconstant GL_POINT %d)\n", GL_POINT);
00071 printf("(defconstant GL_LINE %d)\n", GL_LINE);
00072 printf("(defconstant GL_FILL %d)\n", GL_FILL);
00073 printf("(defconstant GL_CCW %d)\n", GL_CCW);
00074 printf("(defconstant GL_CW %d)\n", GL_CW);
00075 printf("(defconstant GL_FRONT %d)\n", GL_FRONT);
00076 printf("(defconstant GL_BACK %d)\n", GL_BACK);
00077 printf("(defconstant GL_CULL_FACE %d)\n", GL_CULL_FACE);
00078 printf("(defconstant GL_CULL_FACE_MODE %d)\n", GL_CULL_FACE_MODE);
00079 printf("(defconstant GL_POLYGON_SMOOTH %d)\n", GL_POLYGON_SMOOTH);
00080 printf("(defconstant GL_POLYGON_STIPPLE %d)\n", GL_POLYGON_STIPPLE);
00081 printf("(defconstant GL_FRONT_FACE %d)\n", GL_FRONT_FACE);
00082 printf("(defconstant GL_POLYGON_MODE %d)\n", GL_POLYGON_MODE);
00083 printf("\n");
00084
00085
00086 printf(";;; Display Lists\n");
00087 printf("(defconstant GL_COMPILE %d)\n", GL_COMPILE);
00088 printf("(defconstant GL_COMPILE_AND_EXECUTE %d)\n", GL_COMPILE_AND_EXECUTE);
00089 printf("(defconstant GL_LIST_BASE %d)\n", GL_LIST_BASE);
00090 printf("(defconstant GL_LIST_INDEX %d)\n", GL_LIST_INDEX);
00091 printf("(defconstant GL_LIST_MODE %d)\n", GL_LIST_MODE);
00092 printf("\n");
00093
00094
00095 printf(";;; Depth buffer\n");
00096 printf("(defconstant GL_NEVER %d)\n", GL_NEVER);
00097 printf("(defconstant GL_LESS %d)\n", GL_LESS);
00098 printf("(defconstant GL_GEQUAL %d)\n", GL_GEQUAL);
00099 printf("(defconstant GL_LEQUAL %d)\n", GL_LEQUAL);
00100 printf("(defconstant GL_GREATER %d)\n", GL_GREATER);
00101 printf("(defconstant GL_NOTEQUAL %d)\n", GL_NOTEQUAL);
00102 printf("(defconstant GL_EQUAL %d)\n", GL_EQUAL);
00103 printf("(defconstant GL_ALWAYS %d)\n", GL_ALWAYS);
00104 printf("(defconstant GL_DEPTH_TEST %d)\n", GL_DEPTH_TEST);
00105 printf("(defconstant GL_DEPTH_BITS %d)\n", GL_DEPTH_BITS);
00106 printf("(defconstant GL_DEPTH_CLEAR_VALUE %d)\n", GL_DEPTH_CLEAR_VALUE);
00107 printf("(defconstant GL_DEPTH_FUNC %d)\n", GL_DEPTH_FUNC);
00108 printf("(defconstant GL_DEPTH_RANGE %d)\n", GL_DEPTH_RANGE);
00109 printf("(defconstant GL_DEPTH_WRITEMASK %d)\n", GL_DEPTH_WRITEMASK);
00110 printf("(defconstant GL_DEPTH_COMPONENT %d)\n", GL_DEPTH_COMPONENT);
00111 printf("\n");
00112
00113
00114 printf(";;; Lighting\n");
00115 printf("(defconstant GL_LIGHTING %d)\n", GL_LIGHTING);
00116 printf("(defconstant GL_LIGHT0 %d)\n", GL_LIGHT0);
00117 printf("(defconstant GL_LIGHT1 %d)\n", GL_LIGHT1);
00118 printf("(defconstant GL_LIGHT2 %d)\n", GL_LIGHT2);
00119 printf("(defconstant GL_LIGHT3 %d)\n", GL_LIGHT3);
00120 printf("(defconstant GL_LIGHT4 %d)\n", GL_LIGHT4);
00121 printf("(defconstant GL_LIGHT5 %d)\n", GL_LIGHT5);
00122 printf("(defconstant GL_LIGHT6 %d)\n", GL_LIGHT6);
00123 printf("(defconstant GL_LIGHT7 %d)\n", GL_LIGHT7);
00124 printf("(defconstant GL_SPOT_EXPONENT %d)\n", GL_SPOT_EXPONENT);
00125 printf("(defconstant GL_SPOT_CUTOFF %d)\n", GL_SPOT_CUTOFF);
00126 printf("(defconstant GL_CONSTANT_ATTENUATION %d)\n", GL_CONSTANT_ATTENUATION);
00127 printf("(defconstant GL_LINEAR_ATTENUATION %d)\n", GL_LINEAR_ATTENUATION);
00128 printf("(defconstant GL_QUADRATIC_ATTENUATION %d)\n", GL_QUADRATIC_ATTENUATION);
00129 printf("(defconstant GL_AMBIENT %d)\n", GL_AMBIENT);
00130 printf("(defconstant GL_DIFFUSE %d)\n", GL_DIFFUSE);
00131 printf("(defconstant GL_SPECULAR %d)\n", GL_SPECULAR);
00132 printf("(defconstant GL_SHININESS %d)\n", GL_SHININESS);
00133 printf("(defconstant GL_EMISSION %d)\n", GL_EMISSION);
00134 printf("(defconstant GL_POSITION %d)\n", GL_POSITION);
00135 printf("(defconstant GL_SPOT_DIRECTION %d)\n", GL_SPOT_DIRECTION);
00136 printf("(defconstant GL_AMBIENT_AND_DIFFUSE %d)\n", GL_AMBIENT_AND_DIFFUSE);
00137 printf("(defconstant GL_COLOR_INDEXES %d)\n", GL_COLOR_INDEXES);
00138 printf("(defconstant GL_LIGHT_MODEL_TWO_SIDE %d)\n", GL_LIGHT_MODEL_TWO_SIDE);
00139 printf("(defconstant GL_LIGHT_MODEL_LOCAL_VIEWER %d)\n", GL_LIGHT_MODEL_LOCAL_VIEWER);
00140 printf("(defconstant GL_LIGHT_MODEL_AMBIENT %d)\n", GL_LIGHT_MODEL_AMBIENT);
00141 printf("(defconstant GL_FRONT_AND_BACK %d)\n", GL_FRONT_AND_BACK);
00142 printf("(defconstant GL_SHADE_MODEL %d)\n", GL_SHADE_MODEL);
00143 printf("(defconstant GL_FLAT %d)\n", GL_FLAT);
00144 printf("(defconstant GL_SMOOTH %d)\n", GL_SMOOTH);
00145 printf("(defconstant GL_COLOR_MATERIAL %d)\n", GL_COLOR_MATERIAL);
00146 printf("(defconstant GL_COLOR_MATERIAL_FACE %d)\n", GL_COLOR_MATERIAL_FACE);
00147 printf("(defconstant GL_COLOR_MATERIAL_PARAMETER %d)\n", GL_COLOR_MATERIAL_PARAMETER);
00148 printf("(defconstant GL_NORMALIZE %d)\n", GL_NORMALIZE);
00149 printf("\n");
00150
00151
00152 printf(";;; User clipping planes\n");
00153 printf("(defconstant GL_CLIP_PLANE0 %d)\n", GL_CLIP_PLANE0);
00154 printf("(defconstant GL_CLIP_PLANE1 %d)\n", GL_CLIP_PLANE1);
00155 printf("(defconstant GL_CLIP_PLANE2 %d)\n", GL_CLIP_PLANE2);
00156 printf("(defconstant GL_CLIP_PLANE3 %d)\n", GL_CLIP_PLANE3);
00157 printf("(defconstant GL_CLIP_PLANE4 %d)\n", GL_CLIP_PLANE4);
00158 printf("(defconstant GL_CLIP_PLANE5 %d)\n", GL_CLIP_PLANE5);
00159 printf("\n");
00160
00161
00162 printf(";;; Accumulation buffer\n");
00163 printf("(defconstant GL_ACCUM_RED_BITS %d)\n", GL_ACCUM_RED_BITS);
00164 printf("(defconstant GL_ACCUM_GREEN_BITS %d)\n", GL_ACCUM_GREEN_BITS);
00165 printf("(defconstant GL_ACCUM_BLUE_BITS %d)\n", GL_ACCUM_BLUE_BITS);
00166 printf("(defconstant GL_ACCUM_ALPHA_BITS %d)\n", GL_ACCUM_ALPHA_BITS);
00167 printf("(defconstant GL_ACCUM_CLEAR_VALUE %d)\n", GL_ACCUM_CLEAR_VALUE);
00168 printf("(defconstant GL_ACCUM %d)\n", GL_ACCUM);
00169 printf("(defconstant GL_ADD %d)\n", GL_ADD);
00170 printf("(defconstant GL_LOAD %d)\n", GL_LOAD);
00171 printf("(defconstant GL_MULT %d)\n", GL_MULT);
00172 printf("(defconstant GL_RETURN %d)\n", GL_RETURN);
00173 printf("\n");
00174
00175
00176 printf(";;; Alpha testing\n");
00177 printf("(defconstant GL_ALPHA_TEST %d)\n", GL_ALPHA_TEST);
00178 printf("(defconstant GL_ALPHA_TEST_REF %d)\n", GL_ALPHA_TEST_REF);
00179 printf("(defconstant GL_ALPHA_TEST_FUNC %d)\n", GL_ALPHA_TEST_FUNC);
00180 printf("\n");
00181
00182
00183 printf(";;; Blending\n");
00184 printf("(defconstant GL_BLEND %d)\n", GL_BLEND);
00185 printf("(defconstant GL_BLEND_SRC %d)\n", GL_BLEND_SRC);
00186 printf("(defconstant GL_BLEND_DST %d)\n", GL_BLEND_DST);
00187 printf("(defconstant GL_ZERO %d)\n", GL_ZERO);
00188 printf("(defconstant GL_ONE %d)\n", GL_ONE);
00189 printf("(defconstant GL_SRC_COLOR %d)\n", GL_SRC_COLOR);
00190 printf("(defconstant GL_ONE_MINUS_SRC_COLOR %d)\n", GL_ONE_MINUS_SRC_COLOR);
00191 printf("(defconstant GL_DST_COLOR %d)\n", GL_DST_COLOR);
00192 printf("(defconstant GL_ONE_MINUS_DST_COLOR %d)\n", GL_ONE_MINUS_DST_COLOR);
00193 printf("(defconstant GL_SRC_ALPHA %d)\n", GL_SRC_ALPHA);
00194 printf("(defconstant GL_ONE_MINUS_SRC_ALPHA %d)\n", GL_ONE_MINUS_SRC_ALPHA);
00195 printf("(defconstant GL_DST_ALPHA %d)\n", GL_DST_ALPHA);
00196 printf("(defconstant GL_ONE_MINUS_DST_ALPHA %d)\n", GL_ONE_MINUS_DST_ALPHA);
00197 printf("(defconstant GL_SRC_ALPHA_SATURATE %d)\n", GL_SRC_ALPHA_SATURATE);
00198 printf("\n");
00199
00200
00201 printf(";;; Render Mode\n");
00202 printf("(defconstant GL_FEEDBACK %d)\n", GL_FEEDBACK);
00203 printf("(defconstant GL_RENDER %d)\n", GL_RENDER);
00204 printf("(defconstant GL_SELECT %d)\n", GL_SELECT);
00205 printf("\n");
00206
00207
00208 printf(";;; Feedback\n");
00209 printf("(defconstant GL_2D %d)\n", GL_2D);
00210 printf("(defconstant GL_3D %d)\n", GL_3D);
00211 printf("(defconstant GL_3D_COLOR %d)\n", GL_3D_COLOR);
00212 printf("(defconstant GL_3D_COLOR_TEXTURE %d)\n", GL_3D_COLOR_TEXTURE);
00213 printf("(defconstant GL_4D_COLOR_TEXTURE %d)\n", GL_4D_COLOR_TEXTURE);
00214 printf("(defconstant GL_POINT_TOKEN %d)\n", GL_POINT_TOKEN);
00215 printf("(defconstant GL_LINE_TOKEN %d)\n", GL_LINE_TOKEN);
00216 printf("(defconstant GL_LINE_RESET_TOKEN %d)\n", GL_LINE_RESET_TOKEN);
00217 printf("(defconstant GL_POLYGON_TOKEN %d)\n", GL_POLYGON_TOKEN);
00218 printf("(defconstant GL_BITMAP_TOKEN %d)\n", GL_BITMAP_TOKEN);
00219 printf("(defconstant GL_DRAW_PIXEL_TOKEN %d)\n", GL_DRAW_PIXEL_TOKEN);
00220 printf("(defconstant GL_COPY_PIXEL_TOKEN %d)\n", GL_COPY_PIXEL_TOKEN);
00221 printf("(defconstant GL_PASS_THROUGH_TOKEN %d)\n", GL_PASS_THROUGH_TOKEN);
00222 printf("\n");
00223
00224
00225 printf(";;; Fog\n");
00226 printf("(defconstant GL_FOG %d)\n", GL_FOG);
00227 printf("(defconstant GL_FOG_MODE %d)\n", GL_FOG_MODE);
00228 printf("(defconstant GL_FOG_DENSITY %d)\n", GL_FOG_DENSITY);
00229 printf("(defconstant GL_FOG_COLOR %d)\n", GL_FOG_COLOR);
00230 printf("(defconstant GL_FOG_INDEX %d)\n", GL_FOG_INDEX);
00231 printf("(defconstant GL_FOG_START %d)\n", GL_FOG_START);
00232 printf("(defconstant GL_FOG_END %d)\n", GL_FOG_END);
00233 printf("(defconstant GL_LINEAR %d)\n", GL_LINEAR);
00234 printf("(defconstant GL_EXP %d)\n", GL_EXP);
00235 printf("(defconstant GL_EXP2 %d)\n", GL_EXP2);
00236 printf("\n");
00237
00238
00239 printf(";;; Logic Ops\n");
00240 printf("(defconstant GL_LOGIC_OP %d)\n", GL_LOGIC_OP);
00241 printf("(defconstant GL_LOGIC_OP_MODE %d)\n", GL_LOGIC_OP_MODE);
00242 printf("(defconstant GL_CLEAR %d)\n", GL_CLEAR);
00243 printf("(defconstant GL_SET %d)\n", GL_SET);
00244 printf("(defconstant GL_COPY %d)\n", GL_COPY);
00245 printf("(defconstant GL_COPY_INVERTED %d)\n", GL_COPY_INVERTED);
00246 printf("(defconstant GL_NOOP %d)\n", GL_NOOP);
00247 printf("(defconstant GL_INVERT %d)\n", GL_INVERT);
00248 printf("(defconstant GL_AND %d)\n", GL_AND);
00249 printf("(defconstant GL_NAND %d)\n", GL_NAND);
00250 printf("(defconstant GL_OR %d)\n", GL_OR);
00251 printf("(defconstant GL_NOR %d)\n", GL_NOR);
00252 printf("(defconstant GL_XOR %d)\n", GL_XOR);
00253 printf("(defconstant GL_EQUIV %d)\n", GL_EQUIV);
00254 printf("(defconstant GL_AND_REVERSE %d)\n", GL_AND_REVERSE);
00255 printf("(defconstant GL_AND_INVERTED %d)\n", GL_AND_INVERTED);
00256 printf("(defconstant GL_OR_REVERSE %d)\n", GL_OR_REVERSE);
00257 printf("(defconstant GL_OR_INVERTED %d)\n", GL_OR_INVERTED);
00258 printf("\n");
00259
00260
00261 printf(";;; Stencil\n");
00262 printf("(defconstant GL_STENCIL_TEST %d)\n", GL_STENCIL_TEST);
00263 printf("(defconstant GL_STENCIL_WRITEMASK %d)\n", GL_STENCIL_WRITEMASK);
00264 printf("(defconstant GL_STENCIL_BITS %d)\n", GL_STENCIL_BITS);
00265 printf("(defconstant GL_STENCIL_FUNC %d)\n", GL_STENCIL_FUNC);
00266 printf("(defconstant GL_STENCIL_VALUE_MASK %d)\n", GL_STENCIL_VALUE_MASK);
00267 printf("(defconstant GL_STENCIL_REF %d)\n", GL_STENCIL_REF);
00268 printf("(defconstant GL_STENCIL_FAIL %d)\n", GL_STENCIL_FAIL);
00269 printf("(defconstant GL_STENCIL_PASS_DEPTH_PASS %d)\n", GL_STENCIL_PASS_DEPTH_PASS);
00270 printf("(defconstant GL_STENCIL_PASS_DEPTH_FAIL %d)\n", GL_STENCIL_PASS_DEPTH_FAIL);
00271 printf("(defconstant GL_STENCIL_CLEAR_VALUE %d)\n", GL_STENCIL_CLEAR_VALUE);
00272 printf("(defconstant GL_STENCIL_INDEX %d)\n", GL_STENCIL_INDEX);
00273 printf("(defconstant GL_KEEP %d)\n", GL_KEEP);
00274 printf("(defconstant GL_REPLACE %d)\n", GL_REPLACE);
00275 printf("(defconstant GL_INCR %d)\n", GL_INCR);
00276 printf("(defconstant GL_DECR %d)\n", GL_DECR);
00277 printf("\n");
00278
00279
00280 printf(";;; Buffers Pixel Drawing/Reading\n");
00281 printf("(defconstant GL_NONE %d)\n", GL_NONE);
00282 printf("(defconstant GL_LEFT %d)\n", GL_LEFT);
00283 printf("(defconstant GL_RIGHT %d)\n", GL_RIGHT);
00284 printf("(defconstant GL_FRONT_LEFT %d)\n", GL_FRONT_LEFT);
00285 printf("(defconstant GL_FRONT_RIGHT %d)\n", GL_FRONT_RIGHT);
00286 printf("(defconstant GL_BACK_LEFT %d)\n", GL_BACK_LEFT);
00287 printf("(defconstant GL_BACK_RIGHT %d)\n", GL_BACK_RIGHT);
00288 printf("(defconstant GL_AUX0 %d)\n", GL_AUX0);
00289 printf("(defconstant GL_COLOR_INDEX %d)\n", GL_COLOR_INDEX);
00290 printf("(defconstant GL_STENCIL_BUFFER %d)\n", GL_STENCIL_BUFFER);
00291 printf("(defconstant GL_DEPTH_BUFFER %d)\n", GL_DEPTH_BUFFER);
00292 printf("(defconstant GL_RED %d)\n", GL_RED);
00293 printf("(defconstant GL_GREEN %d)\n", GL_GREEN);
00294 printf("(defconstant GL_BLUE %d)\n", GL_BLUE);
00295 printf("(defconstant GL_ALPHA %d)\n", GL_ALPHA);
00296 printf("(defconstant GL_LUMINANCE %d)\n", GL_LUMINANCE);
00297 printf("(defconstant GL_LUMINANCE_ALPHA %d)\n", GL_LUMINANCE_ALPHA);
00298 printf("(defconstant GL_ALPHA_BITS %d)\n", GL_ALPHA_BITS);
00299 printf("(defconstant GL_RED_BITS %d)\n", GL_RED_BITS);
00300 printf("(defconstant GL_GREEN_BITS %d)\n", GL_GREEN_BITS);
00301 printf("(defconstant GL_BLUE_BITS %d)\n", GL_BLUE_BITS);
00302 printf("(defconstant GL_INDEX_BITS %d)\n", GL_INDEX_BITS);
00303 printf("(defconstant GL_SUBPIXEL_BITS %d)\n", GL_SUBPIXEL_BITS);
00304 printf("(defconstant GL_AUX_BUFFERS %d)\n", GL_AUX_BUFFERS);
00305 printf("(defconstant GL_READ_BUFFER %d)\n", GL_READ_BUFFER);
00306 printf("(defconstant GL_DRAW_BUFFER %d)\n", GL_DRAW_BUFFER);
00307 printf("(defconstant GL_DOUBLEBUFFER %d)\n", GL_DOUBLEBUFFER);
00308 printf("(defconstant GL_STEREO %d)\n", GL_STEREO);
00309 printf("(defconstant GL_BITMAP %d)\n", GL_BITMAP);
00310 printf("(defconstant GL_COLOR %d)\n", GL_COLOR);
00311 printf("(defconstant GL_DEPTH %d)\n", GL_DEPTH);
00312 printf("(defconstant GL_STENCIL %d)\n", GL_STENCIL);
00313 printf("(defconstant GL_DITHER %d)\n", GL_DITHER);
00314 printf("(defconstant GL_RGB %d)\n", GL_RGB);
00315 printf("(defconstant GL_RGBA %d)\n", GL_RGBA);
00316 printf("\n");
00317
00318
00319 printf(";;; Implementation limits\n");
00320 printf("(defconstant GL_MAX_MODELVIEW_STACK_DEPTH %d)\n", GL_MAX_MODELVIEW_STACK_DEPTH);
00321 printf("(defconstant GL_MAX_PROJECTION_STACK_DEPTH %d)\n", GL_MAX_PROJECTION_STACK_DEPTH);
00322 printf("(defconstant GL_MAX_TEXTURE_STACK_DEPTH %d)\n", GL_MAX_TEXTURE_STACK_DEPTH);
00323 printf("(defconstant GL_MAX_ATTRIB_STACK_DEPTH %d)\n", GL_MAX_ATTRIB_STACK_DEPTH);
00324 printf("(defconstant GL_MAX_NAME_STACK_DEPTH %d)\n", GL_MAX_NAME_STACK_DEPTH);
00325
00326 printf("(defconstant GL_MAX_LIST_NESTING %d)\n", GL_MAX_LIST_NESTING);
00327 printf("(defconstant GL_MAX_LIGHTS %d)\n", GL_MAX_LIGHTS);
00328 printf("(defconstant GL_MAX_CLIP_PLANES %d)\n", GL_MAX_CLIP_PLANES);
00329 printf("(defconstant GL_MAX_VIEWPORT_DIMS %d)\n", GL_MAX_VIEWPORT_DIMS);
00330 printf("(defconstant GL_MAX_PIXEL_MAP_TABLE %d)\n", GL_MAX_PIXEL_MAP_TABLE);
00331 printf("(defconstant GL_MAX_EVAL_ORDER %d)\n", GL_MAX_EVAL_ORDER);
00332 printf("(defconstant GL_MAX_TEXTURE_SIZE %d)\n", GL_MAX_TEXTURE_SIZE);
00333 printf("\n");
00334
00335
00336 printf(";;; Gets\n");
00337 printf("(defconstant GL_ATTRIB_STACK_DEPTH %d)\n", GL_ATTRIB_STACK_DEPTH);
00338 printf("(defconstant GL_COLOR_CLEAR_VALUE %d)\n", GL_COLOR_CLEAR_VALUE);
00339 printf("(defconstant GL_COLOR_WRITEMASK %d)\n", GL_COLOR_WRITEMASK);
00340 printf("(defconstant GL_CURRENT_INDEX %d)\n", GL_CURRENT_INDEX);
00341 printf("(defconstant GL_CURRENT_COLOR %d)\n", GL_CURRENT_COLOR);
00342 printf("(defconstant GL_CURRENT_NORMAL %d)\n", GL_CURRENT_NORMAL);
00343 printf("(defconstant GL_CURRENT_RASTER_COLOR %d)\n", GL_CURRENT_RASTER_COLOR);
00344 printf("(defconstant GL_CURRENT_RASTER_DISTANCE %d)\n", GL_CURRENT_RASTER_DISTANCE);
00345 printf("(defconstant GL_CURRENT_RASTER_INDEX %d)\n", GL_CURRENT_RASTER_INDEX);
00346 printf("(defconstant GL_CURRENT_RASTER_POSITION %d)\n", GL_CURRENT_RASTER_POSITION);
00347 printf("(defconstant GL_CURRENT_RASTER_TEXTURE_COORDS %d)\n", GL_CURRENT_RASTER_TEXTURE_COORDS);
00348 printf("(defconstant GL_CURRENT_RASTER_POSITION_VALID %d)\n", GL_CURRENT_RASTER_POSITION_VALID);
00349 printf("(defconstant GL_CURRENT_TEXTURE_COORDS %d)\n", GL_CURRENT_TEXTURE_COORDS);
00350 printf("(defconstant GL_INDEX_CLEAR_VALUE %d)\n", GL_INDEX_CLEAR_VALUE);
00351 printf("(defconstant GL_INDEX_MODE %d)\n", GL_INDEX_MODE);
00352 printf("(defconstant GL_INDEX_WRITEMASK %d)\n", GL_INDEX_WRITEMASK);
00353 printf("(defconstant GL_MODELVIEW_MATRIX %d)\n", GL_MODELVIEW_MATRIX);
00354 printf("(defconstant GL_MODELVIEW_STACK_DEPTH %d)\n", GL_MODELVIEW_STACK_DEPTH);
00355 printf("(defconstant GL_NAME_STACK_DEPTH %d)\n", GL_NAME_STACK_DEPTH);
00356 printf("(defconstant GL_PROJECTION_MATRIX %d)\n", GL_PROJECTION_MATRIX);
00357 printf("(defconstant GL_PROJECTION_STACK_DEPTH %d)\n", GL_PROJECTION_STACK_DEPTH);
00358 printf("(defconstant GL_RENDER_MODE %d)\n", GL_RENDER_MODE);
00359 printf("(defconstant GL_RGBA_MODE %d)\n", GL_RGBA_MODE);
00360 printf("(defconstant GL_TEXTURE_MATRIX %d)\n", GL_TEXTURE_MATRIX);
00361 printf("(defconstant GL_TEXTURE_STACK_DEPTH %d)\n", GL_TEXTURE_STACK_DEPTH);
00362 printf("(defconstant GL_VIEWPORT %d)\n", GL_VIEWPORT);
00363 printf("\n");
00364
00365
00366 printf("\n");
00367
00368
00369 printf(";;; Evaluators\n");
00370 printf("(defconstant GL_AUTO_NORMAL %d)\n", GL_AUTO_NORMAL);
00371 printf("(defconstant GL_MAP1_COLOR_4 %d)\n", GL_MAP1_COLOR_4);
00372 printf("(defconstant GL_MAP1_GRID_DOMAIN %d)\n", GL_MAP1_GRID_DOMAIN);
00373 printf("(defconstant GL_MAP1_GRID_SEGMENTS %d)\n", GL_MAP1_GRID_SEGMENTS);
00374 printf("(defconstant GL_MAP1_INDEX %d)\n", GL_MAP1_INDEX);
00375 printf("(defconstant GL_MAP1_NORMAL %d)\n", GL_MAP1_NORMAL);
00376 printf("(defconstant GL_MAP1_TEXTURE_COORD_1 %d)\n", GL_MAP1_TEXTURE_COORD_1);
00377 printf("(defconstant GL_MAP1_TEXTURE_COORD_2 %d)\n", GL_MAP1_TEXTURE_COORD_2);
00378 printf("(defconstant GL_MAP1_TEXTURE_COORD_3 %d)\n", GL_MAP1_TEXTURE_COORD_3);
00379 printf("(defconstant GL_MAP1_TEXTURE_COORD_4 %d)\n", GL_MAP1_TEXTURE_COORD_4);
00380 printf("(defconstant GL_MAP1_VERTEX_3 %d)\n", GL_MAP1_VERTEX_3);
00381 printf("(defconstant GL_MAP1_VERTEX_4 %d)\n", GL_MAP1_VERTEX_4);
00382 printf("(defconstant GL_MAP2_COLOR_4 %d)\n", GL_MAP2_COLOR_4);
00383 printf("(defconstant GL_MAP2_GRID_DOMAIN %d)\n", GL_MAP2_GRID_DOMAIN);
00384 printf("(defconstant GL_MAP2_GRID_SEGMENTS %d)\n", GL_MAP2_GRID_SEGMENTS);
00385 printf("(defconstant GL_MAP2_INDEX %d)\n", GL_MAP2_INDEX);
00386 printf("(defconstant GL_MAP2_NORMAL %d)\n", GL_MAP2_NORMAL);
00387 printf("(defconstant GL_MAP2_TEXTURE_COORD_1 %d)\n", GL_MAP2_TEXTURE_COORD_1);
00388 printf("(defconstant GL_MAP2_TEXTURE_COORD_2 %d)\n", GL_MAP2_TEXTURE_COORD_2);
00389 printf("(defconstant GL_MAP2_TEXTURE_COORD_3 %d)\n", GL_MAP2_TEXTURE_COORD_3);
00390 printf("(defconstant GL_MAP2_TEXTURE_COORD_4 %d)\n", GL_MAP2_TEXTURE_COORD_4);
00391 printf("(defconstant GL_MAP2_VERTEX_3 %d)\n", GL_MAP2_VERTEX_3);
00392 printf("(defconstant GL_MAP2_VERTEX_4 %d)\n", GL_MAP2_VERTEX_4);
00393 printf("\n");
00394
00395
00396 printf(";;; Hints\n");
00397 printf("(defconstant GL_FOG_HINT %d)\n", GL_FOG_HINT);
00398 printf("(defconstant GL_LINE_SMOOTH_HINT %d)\n", GL_LINE_SMOOTH_HINT);
00399 printf("(defconstant GL_PERSPECTIVE_CORRECTION_HINT %d)\n", GL_PERSPECTIVE_CORRECTION_HINT);
00400 printf("(defconstant GL_POINT_SMOOTH_HINT %d)\n", GL_POINT_SMOOTH_HINT);
00401 printf("(defconstant GL_POLYGON_SMOOTH_HINT %d)\n", GL_POLYGON_SMOOTH_HINT);
00402 printf("(defconstant GL_DONT_CARE %d)\n", GL_DONT_CARE);
00403 printf("(defconstant GL_FASTEST %d)\n", GL_FASTEST);
00404 printf("(defconstant GL_NICEST %d)\n", GL_NICEST);
00405 printf("\n");
00406
00407
00408 printf(";;; Scissor box\n");
00409 printf("(defconstant GL_SCISSOR_TEST %d)\n", GL_SCISSOR_TEST);
00410 printf("(defconstant GL_SCISSOR_BOX %d)\n", GL_SCISSOR_BOX);
00411 printf("\n");
00412
00413
00414 printf(";;; Pixel Mode / Transfer\n");
00415 printf("(defconstant GL_MAP_COLOR %d)\n", GL_MAP_COLOR);
00416 printf("(defconstant GL_MAP_STENCIL %d)\n", GL_MAP_STENCIL);
00417 printf("(defconstant GL_INDEX_SHIFT %d)\n", GL_INDEX_SHIFT);
00418 printf("(defconstant GL_INDEX_OFFSET %d)\n", GL_INDEX_OFFSET);
00419 printf("(defconstant GL_RED_SCALE %d)\n", GL_RED_SCALE);
00420 printf("(defconstant GL_RED_BIAS %d)\n", GL_RED_BIAS);
00421 printf("(defconstant GL_GREEN_SCALE %d)\n", GL_GREEN_SCALE);
00422 printf("(defconstant GL_GREEN_BIAS %d)\n", GL_GREEN_BIAS);
00423 printf("(defconstant GL_BLUE_SCALE %d)\n", GL_BLUE_SCALE);
00424 printf("(defconstant GL_BLUE_BIAS %d)\n", GL_BLUE_BIAS);
00425 printf("(defconstant GL_ALPHA_SCALE %d)\n", GL_ALPHA_SCALE);
00426 printf("(defconstant GL_ALPHA_BIAS %d)\n", GL_ALPHA_BIAS);
00427 printf("(defconstant GL_DEPTH_SCALE %d)\n", GL_DEPTH_SCALE);
00428 printf("(defconstant GL_DEPTH_BIAS %d)\n", GL_DEPTH_BIAS);
00429 printf("(defconstant GL_PIXEL_MAP_S_TO_S_SIZE %d)\n", GL_PIXEL_MAP_S_TO_S_SIZE);
00430 printf("(defconstant GL_PIXEL_MAP_I_TO_I_SIZE %d)\n", GL_PIXEL_MAP_I_TO_I_SIZE);
00431 printf("(defconstant GL_PIXEL_MAP_I_TO_R_SIZE %d)\n", GL_PIXEL_MAP_I_TO_R_SIZE);
00432 printf("(defconstant GL_PIXEL_MAP_I_TO_G_SIZE %d)\n", GL_PIXEL_MAP_I_TO_G_SIZE);
00433 printf("(defconstant GL_PIXEL_MAP_I_TO_B_SIZE %d)\n", GL_PIXEL_MAP_I_TO_B_SIZE);
00434 printf("(defconstant GL_PIXEL_MAP_I_TO_A_SIZE %d)\n", GL_PIXEL_MAP_I_TO_A_SIZE);
00435 printf("(defconstant GL_PIXEL_MAP_R_TO_R_SIZE %d)\n", GL_PIXEL_MAP_R_TO_R_SIZE);
00436 printf("(defconstant GL_PIXEL_MAP_G_TO_G_SIZE %d)\n", GL_PIXEL_MAP_G_TO_G_SIZE);
00437 printf("(defconstant GL_PIXEL_MAP_B_TO_B_SIZE %d)\n", GL_PIXEL_MAP_B_TO_B_SIZE);
00438 printf("(defconstant GL_PIXEL_MAP_A_TO_A_SIZE %d)\n", GL_PIXEL_MAP_A_TO_A_SIZE);
00439 printf("(defconstant GL_PIXEL_MAP_S_TO_S %d)\n", GL_PIXEL_MAP_S_TO_S);
00440 printf("(defconstant GL_PIXEL_MAP_I_TO_I %d)\n", GL_PIXEL_MAP_I_TO_I);
00441 printf("(defconstant GL_PIXEL_MAP_I_TO_R %d)\n", GL_PIXEL_MAP_I_TO_R);
00442 printf("(defconstant GL_PIXEL_MAP_I_TO_G %d)\n", GL_PIXEL_MAP_I_TO_G);
00443 printf("(defconstant GL_PIXEL_MAP_I_TO_B %d)\n", GL_PIXEL_MAP_I_TO_B);
00444 printf("(defconstant GL_PIXEL_MAP_I_TO_A %d)\n", GL_PIXEL_MAP_I_TO_A);
00445 printf("(defconstant GL_PIXEL_MAP_R_TO_R %d)\n", GL_PIXEL_MAP_R_TO_R);
00446 printf("(defconstant GL_PIXEL_MAP_G_TO_G %d)\n", GL_PIXEL_MAP_G_TO_G);
00447 printf("(defconstant GL_PIXEL_MAP_B_TO_B %d)\n", GL_PIXEL_MAP_B_TO_B);
00448 printf("(defconstant GL_PIXEL_MAP_A_TO_A %d)\n", GL_PIXEL_MAP_A_TO_A);
00449 printf("(defconstant GL_PACK_ALIGNMENT %d)\n", GL_PACK_ALIGNMENT);
00450 printf("(defconstant GL_PACK_LSB_FIRST %d)\n", GL_PACK_LSB_FIRST);
00451 printf("(defconstant GL_PACK_ROW_LENGTH %d)\n", GL_PACK_ROW_LENGTH);
00452 printf("(defconstant GL_PACK_SKIP_PIXELS %d)\n", GL_PACK_SKIP_PIXELS);
00453 printf("(defconstant GL_PACK_SKIP_ROWS %d)\n", GL_PACK_SKIP_ROWS);
00454 printf("(defconstant GL_PACK_SWAP_BYTES %d)\n", GL_PACK_SWAP_BYTES);
00455 printf("(defconstant GL_UNPACK_ALIGNMENT %d)\n", GL_UNPACK_ALIGNMENT);
00456 printf("(defconstant GL_UNPACK_LSB_FIRST %d)\n", GL_UNPACK_LSB_FIRST);
00457 printf("(defconstant GL_UNPACK_ROW_LENGTH %d)\n", GL_UNPACK_ROW_LENGTH);
00458 printf("(defconstant GL_UNPACK_SKIP_PIXELS %d)\n", GL_UNPACK_SKIP_PIXELS);
00459 printf("(defconstant GL_UNPACK_SKIP_ROWS %d)\n", GL_UNPACK_SKIP_ROWS);
00460 printf("(defconstant GL_UNPACK_SWAP_BYTES %d)\n", GL_UNPACK_SWAP_BYTES);
00461 printf("(defconstant GL_ZOOM_X %d)\n", GL_ZOOM_X);
00462 printf("(defconstant GL_ZOOM_Y %d)\n", GL_ZOOM_Y);
00463 printf("\n");
00464
00465
00466 printf(";;; Texture mapping\n");
00467 printf("(defconstant GL_TEXTURE_ENV %d)\n", GL_TEXTURE_ENV);
00468 printf("(defconstant GL_TEXTURE_ENV_MODE %d)\n", GL_TEXTURE_ENV_MODE);
00469 printf("(defconstant GL_TEXTURE_1D %d)\n", GL_TEXTURE_1D);
00470 printf("(defconstant GL_TEXTURE_2D %d)\n", GL_TEXTURE_2D);
00471 printf("(defconstant GL_TEXTURE_WRAP_S %d)\n", GL_TEXTURE_WRAP_S);
00472 printf("(defconstant GL_TEXTURE_WRAP_T %d)\n", GL_TEXTURE_WRAP_T);
00473 printf("(defconstant GL_TEXTURE_MAG_FILTER %d)\n", GL_TEXTURE_MAG_FILTER);
00474 printf("(defconstant GL_TEXTURE_MIN_FILTER %d)\n", GL_TEXTURE_MIN_FILTER);
00475 printf("(defconstant GL_TEXTURE_ENV_COLOR %d)\n", GL_TEXTURE_ENV_COLOR);
00476 printf("(defconstant GL_TEXTURE_GEN_S %d)\n", GL_TEXTURE_GEN_S);
00477 printf("(defconstant GL_TEXTURE_GEN_T %d)\n", GL_TEXTURE_GEN_T);
00478 printf("(defconstant GL_TEXTURE_GEN_MODE %d)\n", GL_TEXTURE_GEN_MODE);
00479 printf("(defconstant GL_TEXTURE_BORDER_COLOR %d)\n", GL_TEXTURE_BORDER_COLOR);
00480 printf("(defconstant GL_NEAREST_MIPMAP_NEAREST %d)\n", GL_NEAREST_MIPMAP_NEAREST);
00481 printf("(defconstant GL_NEAREST_MIPMAP_LINEAR %d)\n", GL_NEAREST_MIPMAP_LINEAR);
00482 printf("(defconstant GL_LINEAR_MIPMAP_NEAREST %d)\n", GL_LINEAR_MIPMAP_NEAREST);
00483 printf("(defconstant GL_LINEAR_MIPMAP_LINEAR %d)\n", GL_LINEAR_MIPMAP_LINEAR);
00484 printf("(defconstant GL_OBJECT_LINEAR %d)\n", GL_OBJECT_LINEAR);
00485 printf("(defconstant GL_OBJECT_PLANE %d)\n", GL_OBJECT_PLANE);
00486 printf("(defconstant GL_EYE_LINEAR %d)\n", GL_EYE_LINEAR);
00487 printf("(defconstant GL_EYE_PLANE %d)\n", GL_EYE_PLANE);
00488 printf("(defconstant GL_SPHERE_MAP %d)\n", GL_SPHERE_MAP);
00489 printf("(defconstant GL_DECAL %d)\n", GL_DECAL);
00490 printf("(defconstant GL_MODULATE %d)\n", GL_MODULATE);
00491 printf("(defconstant GL_NEAREST %d)\n", GL_NEAREST);
00492 printf("(defconstant GL_REPEAT %d)\n", GL_REPEAT);
00493 printf("(defconstant GL_CLAMP %d)\n", GL_CLAMP);
00494 printf("(defconstant GL_S %d)\n", GL_S);
00495 printf("(defconstant GL_T %d)\n", GL_T);
00496 printf("(defconstant GL_R %d)\n", GL_R);
00497 printf("(defconstant GL_Q %d)\n", GL_Q);
00498 printf("(defconstant GL_TEXTURE_GEN_R %d)\n", GL_TEXTURE_GEN_R);
00499 printf("(defconstant GL_TEXTURE_GEN_Q %d)\n", GL_TEXTURE_GEN_Q);
00500 printf("\n");
00501
00502
00503 printf(";;; Utility\n");
00504 printf("(defconstant GL_VENDOR %d)\n", GL_VENDOR);
00505 printf("(defconstant GL_RENDERER %d)\n", GL_RENDERER);
00506 printf("(defconstant GL_VERSION %d)\n", GL_VERSION);
00507 printf("(defconstant GL_EXTENSIONS %d)\n", GL_EXTENSIONS);
00508 printf("\n");
00509
00510
00511 printf(";;; Errors\n");
00512 printf("(defconstant GL_INVALID_VALUE %d)\n", GL_INVALID_VALUE);
00513 printf("(defconstant GL_INVALID_ENUM %d)\n", GL_INVALID_ENUM);
00514 printf("(defconstant GL_INVALID_OPERATION %d)\n", GL_INVALID_OPERATION);
00515 printf("(defconstant GL_STACK_OVERFLOW %d)\n", GL_STACK_OVERFLOW);
00516 printf("(defconstant GL_STACK_UNDERFLOW %d)\n", GL_STACK_UNDERFLOW);
00517 printf("(defconstant GL_OUT_OF_MEMORY %d)\n", GL_OUT_OF_MEMORY);
00518 printf("\n");
00519
00520
00521 printf(";;; Extensions\n");
00522 printf("(defconstant GL_CONSTANT_COLOR_EXT %d)\n", GL_CONSTANT_COLOR_EXT);
00523 printf("(defconstant GL_ONE_MINUS_CONSTANT_COLOR_EXT %d)\n", GL_ONE_MINUS_CONSTANT_COLOR_EXT);
00524 printf("(defconstant GL_CONSTANT_ALPHA_EXT %d)\n", GL_CONSTANT_ALPHA_EXT);
00525 printf("(defconstant GL_ONE_MINUS_CONSTANT_ALPHA_EXT %d)\n", GL_ONE_MINUS_CONSTANT_ALPHA_EXT);
00526 printf("(defconstant GL_BLEND_EQUATION_EXT %d)\n", GL_BLEND_EQUATION_EXT);
00527 printf("(defconstant GL_MIN_EXT %d)\n", GL_MIN_EXT);
00528 printf("(defconstant GL_MAX_EXT %d)\n", GL_MAX_EXT);
00529 printf("(defconstant GL_FUNC_ADD_EXT %d)\n", GL_FUNC_ADD_EXT);
00530 printf("(defconstant GL_FUNC_SUBTRACT_EXT %d)\n", GL_FUNC_SUBTRACT_EXT);
00531 printf("(defconstant GL_FUNC_REVERSE_SUBTRACT_EXT %d)\n", GL_FUNC_REVERSE_SUBTRACT_EXT);
00532 printf("(defconstant GL_BLEND_COLOR_EXT %d)\n", GL_BLEND_COLOR_EXT);
00533 printf("(defconstant GL_REPLACE_EXT %d)\n", GL_REPLACE_EXT);
00534 printf("\n");
00535
00536
00537 printf("\n");
00538
00539
00540 printf(";;; GL_NO_ERROR must be zero)\n");
00541 printf("(defconstant GL_NO_ERROR %d)\n", GL_NO_ERROR);
00542 printf("\n");
00543
00544
00545 printf("\n");
00546
00547
00548 printf("\n");
00549
00550
00551 printf(";;; Compile_time tests for extensions:\n");
00552 printf("(defconstant GL_EXT_blend_color %d)\n", GL_EXT_blend_color);
00553 printf("(defconstant GL_EXT_blend_logic_op %d)\n", GL_EXT_blend_logic_op);
00554 printf("(defconstant GL_EXT_blend_minmax %d)\n", GL_EXT_blend_minmax);
00555 printf("(defconstant GL_EXT_blend_subtract %d)\n", GL_EXT_blend_subtract);
00556 printf("\n");
00557
00558
00559 printf("\n");
00560
00561
00562 printf("(defconstant GL_ACCUM_BUFFER_BIT %d)\n", GL_ACCUM_BUFFER_BIT);
00563 printf("(defconstant GL_COLOR_BUFFER_BIT %d)\n", GL_COLOR_BUFFER_BIT);
00564 printf("(defconstant GL_CURRENT_BIT %d)\n", GL_CURRENT_BIT);
00565 printf("(defconstant GL_DEPTH_BUFFER_BIT %d)\n", GL_DEPTH_BUFFER_BIT);
00566 printf("(defconstant GL_ENABLE_BIT %d)\n", GL_ENABLE_BIT);
00567 printf("(defconstant GL_EVAL_BIT %d)\n", GL_EVAL_BIT);
00568 printf("(defconstant GL_FOG_BIT %d)\n", GL_FOG_BIT);
00569 printf("(defconstant GL_HINT_BIT %d)\n", GL_HINT_BIT);
00570 printf("(defconstant GL_LIGHTING_BIT %d)\n", GL_LIGHTING_BIT);
00571 printf("(defconstant GL_LINE_BIT %d)\n", GL_LINE_BIT);
00572 printf("(defconstant GL_LIST_BIT %d)\n", GL_LIST_BIT);
00573 printf("(defconstant GL_PIXEL_MODE_BIT %d)\n", GL_PIXEL_MODE_BIT);
00574 printf("(defconstant GL_POINT_BIT %d)\n", GL_POINT_BIT);
00575 printf("(defconstant GL_POLYGON_BIT %d)\n", GL_POLYGON_BIT);
00576 printf("(defconstant GL_POLYGON_STIPPLE_BIT %d)\n", GL_POLYGON_STIPPLE_BIT);
00577 printf("(defconstant GL_SCISSOR_BIT %d)\n", GL_SCISSOR_BIT);
00578 printf("(defconstant GL_STENCIL_BUFFER_BIT %d)\n", GL_STENCIL_BUFFER_BIT);
00579 printf("(defconstant GL_TEXTURE_BIT %d)\n", GL_TEXTURE_BIT);
00580 printf("(defconstant GL_TRANSFORM_BIT %d)\n", GL_TRANSFORM_BIT);
00581 printf("(defconstant GL_VIEWPORT_BIT %d)\n", GL_VIEWPORT_BIT);
00582 printf("(defconstant GL_ALL_ATTRIB_BITS %d)\n", GL_ALL_ATTRIB_BITS);
00583 printf("\n");
00584 }