Retro-applied package layout changes to generator code...
[cl-glfw.git] / lib / opengl.lisp
blobc9d09939af5c04890f077273677b260dc29b67e7
2 (in-package #:cl-glfw-opengl)
4 ;;;; Enumerations: AttribMask
6 (defconstant +current-bit+ #x1)
7 (defconstant +point-bit+ #x2)
8 (defconstant +line-bit+ #x4)
9 (defconstant +polygon-bit+ #x8)
10 (defconstant +polygon-stipple-bit+ #x10)
11 (defconstant +pixel-mode-bit+ #x20)
12 (defconstant +lighting-bit+ #x40)
13 (defconstant +fog-bit+ #x80)
14 (defconstant +depth-buffer-bit+ #x100)
15 (defconstant +accum-buffer-bit+ #x200)
16 (defconstant +stencil-buffer-bit+ #x400)
17 (defconstant +viewport-bit+ #x800)
18 (defconstant +transform-bit+ #x1000)
19 (defconstant +enable-bit+ #x2000)
20 (defconstant +color-buffer-bit+ #x4000)
21 (defconstant +hint-bit+ #x8000)
22 (defconstant +eval-bit+ #x10000)
23 (defconstant +list-bit+ #x20000)
24 (defconstant +texture-bit+ #x40000)
25 (defconstant +scissor-bit+ #x80000)
26 (defconstant +all-attrib-bits+ #xFFFFFFFF)
28 ;;;; Enumerations: ClearBufferMask
29 ;; color_buffer_bit already defined
30 ;; accum_buffer_bit already defined
31 ;; stencil_buffer_bit already defined
32 ;; depth_buffer_bit already defined
34 ;;;; Enumerations: ClientAttribMask
36 (defconstant +client-pixel-store-bit+ #x1)
37 (defconstant +client-vertex-array-bit+ #x2)
38 (defconstant +client-all-attrib-bits+ #xFFFFFFFF)
40 ;;;; Enumerations: Boolean
42 (defconstant +false+ #x0)
43 (defconstant +true+ #x1)
45 ;;;; Enumerations: BeginMode
47 (defconstant +points+ #x0)
48 (defconstant +lines+ #x1)
49 (defconstant +line-loop+ #x2)
50 (defconstant +line-strip+ #x3)
51 (defconstant +triangles+ #x4)
52 (defconstant +triangle-strip+ #x5)
53 (defconstant +triangle-fan+ #x6)
54 (defconstant +quads+ #x7)
55 (defconstant +quad-strip+ #x8)
56 (defconstant +polygon+ #x9)
58 ;;;; Enumerations: AccumOp
60 (defconstant +accum+ #x100)
61 (defconstant +load+ #x101)
62 (defconstant +return+ #x102)
63 (defconstant +mult+ #x103)
64 (defconstant +add+ #x104)
66 ;;;; Enumerations: AlphaFunction
68 (defconstant +never+ #x200)
69 (defconstant +less+ #x201)
70 (defconstant +equal+ #x202)
71 (defconstant +lequal+ #x203)
72 (defconstant +greater+ #x204)
73 (defconstant +notequal+ #x205)
74 (defconstant +gequal+ #x206)
75 (defconstant +always+ #x207)
77 ;;;; Enumerations: BlendingFactorDest
79 (defconstant +zero+ #x0)
80 (defconstant +one+ #x1)
81 (defconstant +src-color+ #x300)
82 (defconstant +one-minus-src-color+ #x301)
83 (defconstant +src-alpha+ #x302)
84 (defconstant +one-minus-src-alpha+ #x303)
85 (defconstant +dst-alpha+ #x304)
86 (defconstant +one-minus-dst-alpha+ #x305)
87 (defconstant +constant-color-ext+ #x8001)
88 (defconstant +one-minus-constant-color-ext+ #x8002)
89 (defconstant +constant-alpha-ext+ #x8003)
90 (defconstant +one-minus-constant-alpha-ext+ #x8004)
92 ;;;; Enumerations: BlendingFactorSrc
93 ;; zero already defined
94 ;; one already defined
95 (defconstant +dst-color+ #x306)
96 (defconstant +one-minus-dst-color+ #x307)
97 (defconstant +src-alpha-saturate+ #x308)
98 ;; src_alpha already defined
99 ;; one_minus_src_alpha already defined
100 ;; dst_alpha already defined
101 ;; one_minus_dst_alpha already defined
102 ;; constant_color_ext already defined
103 ;; one_minus_constant_color_ext already defined
104 ;; constant_alpha_ext already defined
105 ;; one_minus_constant_alpha_ext already defined
107 ;;;; Enumerations: BlendEquationModeEXT
109 (defconstant +logic-op+ #xBF1)
110 (defconstant +func-add-ext+ #x8006)
111 (defconstant +min-ext+ #x8007)
112 (defconstant +max-ext+ #x8008)
113 (defconstant +func-subtract-ext+ #x800A)
114 (defconstant +func-reverse-subtract-ext+ #x800B)
115 (defconstant +alpha-min-sgix+ #x8320)
116 (defconstant +alpha-max-sgix+ #x8321)
118 ;;;; Enumerations: ColorMaterialFace
120 (defconstant +front+ #x404)
121 (defconstant +back+ #x405)
122 (defconstant +front-and-back+ #x408)
124 ;;;; Enumerations: ColorMaterialParameter
126 (defconstant +ambient+ #x1200)
127 (defconstant +diffuse+ #x1201)
128 (defconstant +specular+ #x1202)
129 (defconstant +emission+ #x1600)
130 (defconstant +ambient-and-diffuse+ #x1602)
132 ;;;; Enumerations: ColorPointerType
134 (defconstant +byte+ #x1400)
135 (defconstant +unsigned-byte+ #x1401)
136 (defconstant +short+ #x1402)
137 (defconstant +unsigned-short+ #x1403)
138 (defconstant +int+ #x1404)
139 (defconstant +unsigned-int+ #x1405)
140 (defconstant +float+ #x1406)
141 (defconstant +double+ #x140A)
143 ;;;; Enumerations: ColorTableParameterPNameSGI
145 (defconstant +color-table-scale-sgi+ #x80D6)
146 (defconstant +color-table-bias-sgi+ #x80D7)
148 ;;;; Enumerations: ColorTableTargetSGI
150 (defconstant +color-table-sgi+ #x80D0)
151 (defconstant +post-convolution-color-table-sgi+ #x80D1)
152 (defconstant +post-color-matrix-color-table-sgi+ #x80D2)
153 (defconstant +proxy-color-table-sgi+ #x80D3)
154 (defconstant +proxy-post-convolution-color-table-sgi+ #x80D4)
155 (defconstant +proxy-post-color-matrix-color-table-sgi+ #x80D5)
156 (defconstant +texture-color-table-sgi+ #x80BC)
157 (defconstant +proxy-texture-color-table-sgi+ #x80BD)
159 ;;;; Enumerations: ConvolutionBorderModeEXT
161 (defconstant +reduce-ext+ #x8016)
163 ;;;; Enumerations: ConvolutionParameterEXT
165 (defconstant +convolution-border-mode-ext+ #x8013)
166 (defconstant +convolution-filter-scale-ext+ #x8014)
167 (defconstant +convolution-filter-bias-ext+ #x8015)
169 ;;;; Enumerations: ConvolutionTargetEXT
171 (defconstant +convolution-1d-ext+ #x8010)
172 (defconstant +convolution-2d-ext+ #x8011)
174 ;;;; Enumerations: CullFaceMode
175 ;; front already defined
176 ;; back already defined
177 ;; front_and_back already defined
179 ;;;; Enumerations: DepthFunction
180 ;; never already defined
181 ;; less already defined
182 ;; equal already defined
183 ;; lequal already defined
184 ;; greater already defined
185 ;; notequal already defined
186 ;; gequal already defined
187 ;; always already defined
189 ;;;; Enumerations: DrawBufferMode
191 (defconstant +none+ #x0)
192 (defconstant +front-left+ #x400)
193 (defconstant +front-right+ #x401)
194 (defconstant +back-left+ #x402)
195 (defconstant +back-right+ #x403)
196 ;; front already defined
197 ;; back already defined
198 (defconstant +left+ #x406)
199 (defconstant +right+ #x407)
200 ;; front_and_back already defined
201 (defconstant +aux0+ #x409)
202 (defconstant +aux1+ #x40A)
203 (defconstant +aux2+ #x40B)
204 (defconstant +aux3+ #x40C)
206 ;;;; Enumerations: EnableCap
208 (defconstant +fog+ #xB60)
209 (defconstant +lighting+ #xB50)
210 (defconstant +texture-1d+ #xDE0)
211 (defconstant +texture-2d+ #xDE1)
212 (defconstant +line-stipple+ #xB24)
213 (defconstant +polygon-stipple+ #xB42)
214 (defconstant +cull-face+ #xB44)
215 (defconstant +alpha-test+ #xBC0)
216 (defconstant +blend+ #xBE2)
217 (defconstant +index-logic-op+ #xBF1)
218 (defconstant +color-logic-op+ #xBF2)
219 (defconstant +dither+ #xBD0)
220 (defconstant +stencil-test+ #xB90)
221 (defconstant +depth-test+ #xB71)
222 (defconstant +clip-plane0+ #x3000)
223 (defconstant +clip-plane1+ #x3001)
224 (defconstant +clip-plane2+ #x3002)
225 (defconstant +clip-plane3+ #x3003)
226 (defconstant +clip-plane4+ #x3004)
227 (defconstant +clip-plane5+ #x3005)
228 (defconstant +light0+ #x4000)
229 (defconstant +light1+ #x4001)
230 (defconstant +light2+ #x4002)
231 (defconstant +light3+ #x4003)
232 (defconstant +light4+ #x4004)
233 (defconstant +light5+ #x4005)
234 (defconstant +light6+ #x4006)
235 (defconstant +light7+ #x4007)
236 (defconstant +texture-gen-s+ #xC60)
237 (defconstant +texture-gen-t+ #xC61)
238 (defconstant +texture-gen-r+ #xC62)
239 (defconstant +texture-gen-q+ #xC63)
240 (defconstant +map1-vertex-3+ #xD97)
241 (defconstant +map1-vertex-4+ #xD98)
242 (defconstant +map1-color-4+ #xD90)
243 (defconstant +map1-index+ #xD91)
244 (defconstant +map1-normal+ #xD92)
245 (defconstant +map1-texture-coord-1+ #xD93)
246 (defconstant +map1-texture-coord-2+ #xD94)
247 (defconstant +map1-texture-coord-3+ #xD95)
248 (defconstant +map1-texture-coord-4+ #xD96)
249 (defconstant +map2-vertex-3+ #xDB7)
250 (defconstant +map2-vertex-4+ #xDB8)
251 (defconstant +map2-color-4+ #xDB0)
252 (defconstant +map2-index+ #xDB1)
253 (defconstant +map2-normal+ #xDB2)
254 (defconstant +map2-texture-coord-1+ #xDB3)
255 (defconstant +map2-texture-coord-2+ #xDB4)
256 (defconstant +map2-texture-coord-3+ #xDB5)
257 (defconstant +map2-texture-coord-4+ #xDB6)
258 (defconstant +point-smooth+ #xB10)
259 (defconstant +line-smooth+ #xB20)
260 (defconstant +polygon-smooth+ #xB41)
261 (defconstant +scissor-test+ #xC11)
262 (defconstant +color-material+ #xB57)
263 (defconstant +normalize+ #xBA1)
264 (defconstant +auto-normal+ #xD80)
265 (defconstant +polygon-offset-point+ #x2A01)
266 (defconstant +polygon-offset-line+ #x2A02)
267 (defconstant +polygon-offset-fill+ #x8037)
268 (defconstant +vertex-array+ #x8074)
269 (defconstant +normal-array+ #x8075)
270 (defconstant +color-array+ #x8076)
271 (defconstant +index-array+ #x8077)
272 (defconstant +texture-coord-array+ #x8078)
273 (defconstant +edge-flag-array+ #x8079)
274 ;; convolution_1d_ext already defined
275 ;; convolution_2d_ext already defined
276 (defconstant +separable-2d-ext+ #x8012)
277 (defconstant +histogram-ext+ #x8024)
278 (defconstant +minmax-ext+ #x802E)
279 (defconstant +rescale-normal-ext+ #x803A)
280 (defconstant +shared-texture-palette-ext+ #x81FB)
281 (defconstant +texture-3d-ext+ #x806F)
282 (defconstant +multisample-sgis+ #x809D)
283 (defconstant +sample-alpha-to-mask-sgis+ #x809E)
284 (defconstant +sample-alpha-to-one-sgis+ #x809F)
285 (defconstant +sample-mask-sgis+ #x80A0)
286 (defconstant +texture-4d-sgis+ #x8134)
287 (defconstant +async-histogram-sgix+ #x832C)
288 (defconstant +async-tex-image-sgix+ #x835C)
289 (defconstant +async-draw-pixels-sgix+ #x835D)
290 (defconstant +async-read-pixels-sgix+ #x835E)
291 (defconstant +calligraphic-fragment-sgix+ #x8183)
292 (defconstant +fog-offset-sgix+ #x8198)
293 (defconstant +fragment-lighting-sgix+ #x8400)
294 (defconstant +fragment-color-material-sgix+ #x8401)
295 (defconstant +fragment-light0-sgix+ #x840C)
296 (defconstant +fragment-light1-sgix+ #x840D)
297 (defconstant +fragment-light2-sgix+ #x840E)
298 (defconstant +fragment-light3-sgix+ #x840F)
299 (defconstant +fragment-light4-sgix+ #x8410)
300 (defconstant +fragment-light5-sgix+ #x8411)
301 (defconstant +fragment-light6-sgix+ #x8412)
302 (defconstant +fragment-light7-sgix+ #x8413)
303 (defconstant +framezoom-sgix+ #x818B)
304 (defconstant +interlace-sgix+ #x8094)
305 (defconstant +ir-instrument1-sgix+ #x817F)
306 (defconstant +pixel-tex-gen-sgix+ #x8139)
307 (defconstant +pixel-texture-sgis+ #x8353)
308 (defconstant +reference-plane-sgix+ #x817D)
309 (defconstant +sprite-sgix+ #x8148)
310 ;; color_table_sgi already defined
311 ;; post_convolution_color_table_sgi already defined
312 ;; post_color_matrix_color_table_sgi already defined
313 ;; texture_color_table_sgi already defined
315 ;;;; Enumerations: ErrorCode
317 (defconstant +no-error+ #x0)
318 (defconstant +invalid-enum+ #x500)
319 (defconstant +invalid-value+ #x501)
320 (defconstant +invalid-operation+ #x502)
321 (defconstant +stack-overflow+ #x503)
322 (defconstant +stack-underflow+ #x504)
323 (defconstant +out-of-memory+ #x505)
324 (defconstant +table-too-large-ext+ #x8031)
325 (defconstant +texture-too-large-ext+ #x8065)
327 ;;;; Enumerations: FeedbackType
329 (defconstant +2d+ #x600)
330 (defconstant +3d+ #x601)
331 (defconstant +3d-color+ #x602)
332 (defconstant +3d-color-texture+ #x603)
333 (defconstant +4d-color-texture+ #x604)
335 ;;;; Enumerations: FeedBackToken
337 (defconstant +pass-through-token+ #x700)
338 (defconstant +point-token+ #x701)
339 (defconstant +line-token+ #x702)
340 (defconstant +polygon-token+ #x703)
341 (defconstant +bitmap-token+ #x704)
342 (defconstant +draw-pixel-token+ #x705)
343 (defconstant +copy-pixel-token+ #x706)
344 (defconstant +line-reset-token+ #x707)
346 ;;;; Enumerations: FfdMaskSGIX
348 (defconstant +texture-deformation-bit-sgix+ #x1)
349 (defconstant +geometry-deformation-bit-sgix+ #x2)
351 ;;;; Enumerations: FfdTargetSGIX
353 (defconstant +geometry-deformation-sgix+ #x8194)
354 (defconstant +texture-deformation-sgix+ #x8195)
356 ;;;; Enumerations: FogMode
358 (defconstant +linear+ #x2601)
359 (defconstant +exp+ #x800)
360 (defconstant +exp2+ #x801)
361 (defconstant +fog-func-sgis+ #x812A)
363 ;;;; Enumerations: FogParameter
365 (defconstant +fog-color+ #xB66)
366 (defconstant +fog-density+ #xB62)
367 (defconstant +fog-end+ #xB64)
368 (defconstant +fog-index+ #xB61)
369 (defconstant +fog-mode+ #xB65)
370 (defconstant +fog-start+ #xB63)
371 (defconstant +fog-offset-value-sgix+ #x8199)
373 ;;;; Enumerations: FragmentLightModelParameterSGIX
375 (defconstant +fragment-light-model-local-viewer-sgix+ #x8408)
376 (defconstant +fragment-light-model-two-side-sgix+ #x8409)
377 (defconstant +fragment-light-model-ambient-sgix+ #x840A)
378 (defconstant +fragment-light-model-normal-interpolation-sgix+ #x840B)
380 ;;;; Enumerations: FrontFaceDirection
382 (defconstant +cw+ #x900)
383 (defconstant +ccw+ #x901)
385 ;;;; Enumerations: GetColorTableParameterPNameSGI
386 ;; color_table_scale_sgi already defined
387 ;; color_table_bias_sgi already defined
388 (defconstant +color-table-format-sgi+ #x80D8)
389 (defconstant +color-table-width-sgi+ #x80D9)
390 (defconstant +color-table-red-size-sgi+ #x80DA)
391 (defconstant +color-table-green-size-sgi+ #x80DB)
392 (defconstant +color-table-blue-size-sgi+ #x80DC)
393 (defconstant +color-table-alpha-size-sgi+ #x80DD)
394 (defconstant +color-table-luminance-size-sgi+ #x80DE)
395 (defconstant +color-table-intensity-size-sgi+ #x80DF)
397 ;;;; Enumerations: GetConvolutionParameter
398 ;; convolution_border_mode_ext already defined
399 ;; convolution_filter_scale_ext already defined
400 ;; convolution_filter_bias_ext already defined
401 (defconstant +convolution-format-ext+ #x8017)
402 (defconstant +convolution-width-ext+ #x8018)
403 (defconstant +convolution-height-ext+ #x8019)
404 (defconstant +max-convolution-width-ext+ #x801A)
405 (defconstant +max-convolution-height-ext+ #x801B)
407 ;;;; Enumerations: GetHistogramParameterPNameEXT
409 (defconstant +histogram-width-ext+ #x8026)
410 (defconstant +histogram-format-ext+ #x8027)
411 (defconstant +histogram-red-size-ext+ #x8028)
412 (defconstant +histogram-green-size-ext+ #x8029)
413 (defconstant +histogram-blue-size-ext+ #x802A)
414 (defconstant +histogram-alpha-size-ext+ #x802B)
415 (defconstant +histogram-luminance-size-ext+ #x802C)
416 (defconstant +histogram-sink-ext+ #x802D)
418 ;;;; Enumerations: GetMapQuery
420 (defconstant +coeff+ #xA00)
421 (defconstant +order+ #xA01)
422 (defconstant +domain+ #xA02)
424 ;;;; Enumerations: GetMinmaxParameterPNameEXT
426 (defconstant +minmax-format-ext+ #x802F)
427 (defconstant +minmax-sink-ext+ #x8030)
429 ;;;; Enumerations: GetPixelMap
431 (defconstant +pixel-map-i-to-i+ #xC70)
432 (defconstant +pixel-map-s-to-s+ #xC71)
433 (defconstant +pixel-map-i-to-r+ #xC72)
434 (defconstant +pixel-map-i-to-g+ #xC73)
435 (defconstant +pixel-map-i-to-b+ #xC74)
436 (defconstant +pixel-map-i-to-a+ #xC75)
437 (defconstant +pixel-map-r-to-r+ #xC76)
438 (defconstant +pixel-map-g-to-g+ #xC77)
439 (defconstant +pixel-map-b-to-b+ #xC78)
440 (defconstant +pixel-map-a-to-a+ #xC79)
442 ;;;; Enumerations: GetPointervPName
444 (defconstant +vertex-array-pointer+ #x808E)
445 (defconstant +normal-array-pointer+ #x808F)
446 (defconstant +color-array-pointer+ #x8090)
447 (defconstant +index-array-pointer+ #x8091)
448 (defconstant +texture-coord-array-pointer+ #x8092)
449 (defconstant +edge-flag-array-pointer+ #x8093)
450 (defconstant +feedback-buffer-pointer+ #xDF0)
451 (defconstant +selection-buffer-pointer+ #xDF3)
452 (defconstant +instrument-buffer-pointer-sgix+ #x8180)
454 ;;;; Enumerations: GetPName
456 (defconstant +current-color+ #xB00)
457 (defconstant +current-index+ #xB01)
458 (defconstant +current-normal+ #xB02)
459 (defconstant +current-texture-coords+ #xB03)
460 (defconstant +current-raster-color+ #xB04)
461 (defconstant +current-raster-index+ #xB05)
462 (defconstant +current-raster-texture-coords+ #xB06)
463 (defconstant +current-raster-position+ #xB07)
464 (defconstant +current-raster-position-valid+ #xB08)
465 (defconstant +current-raster-distance+ #xB09)
466 ;; point_smooth already defined
467 (defconstant +point-size+ #xB11)
468 (defconstant +point-size-range+ #xB12)
469 (defconstant +point-size-granularity+ #xB13)
470 ;; line_smooth already defined
471 (defconstant +line-width+ #xB21)
472 (defconstant +line-width-range+ #xB22)
473 (defconstant +line-width-granularity+ #xB23)
474 ;; line_stipple already defined
475 (defconstant +line-stipple-pattern+ #xB25)
476 (defconstant +line-stipple-repeat+ #xB26)
477 (defconstant +smooth-point-size-range+ #xB12)
478 (defconstant +smooth-point-size-granularity+ #xB13)
479 (defconstant +smooth-line-width-range+ #xB22)
480 (defconstant +smooth-line-width-granularity+ #xB23)
481 (defconstant +aliased-point-size-range+ #x846D)
482 (defconstant +aliased-line-width-range+ #x846E)
483 (defconstant +list-mode+ #xB30)
484 (defconstant +max-list-nesting+ #xB31)
485 (defconstant +list-base+ #xB32)
486 (defconstant +list-index+ #xB33)
487 (defconstant +polygon-mode+ #xB40)
488 ;; polygon_smooth already defined
489 ;; polygon_stipple already defined
490 (defconstant +edge-flag+ #xB43)
491 ;; cull_face already defined
492 (defconstant +cull-face-mode+ #xB45)
493 (defconstant +front-face+ #xB46)
494 ;; lighting already defined
495 (defconstant +light-model-local-viewer+ #xB51)
496 (defconstant +light-model-two-side+ #xB52)
497 (defconstant +light-model-ambient+ #xB53)
498 (defconstant +shade-model+ #xB54)
499 (defconstant +color-material-face+ #xB55)
500 (defconstant +color-material-parameter+ #xB56)
501 ;; color_material already defined
502 ;; fog already defined
503 ;; fog_index already defined
504 ;; fog_density already defined
505 ;; fog_start already defined
506 ;; fog_end already defined
507 ;; fog_mode already defined
508 ;; fog_color already defined
509 (defconstant +depth-range+ #xB70)
510 ;; depth_test already defined
511 (defconstant +depth-writemask+ #xB72)
512 (defconstant +depth-clear-value+ #xB73)
513 (defconstant +depth-func+ #xB74)
514 (defconstant +accum-clear-value+ #xB80)
515 ;; stencil_test already defined
516 (defconstant +stencil-clear-value+ #xB91)
517 (defconstant +stencil-func+ #xB92)
518 (defconstant +stencil-value-mask+ #xB93)
519 (defconstant +stencil-fail+ #xB94)
520 (defconstant +stencil-pass-depth-fail+ #xB95)
521 (defconstant +stencil-pass-depth-pass+ #xB96)
522 (defconstant +stencil-ref+ #xB97)
523 (defconstant +stencil-writemask+ #xB98)
524 (defconstant +matrix-mode+ #xBA0)
525 ;; normalize already defined
526 (defconstant +viewport+ #xBA2)
527 (defconstant +modelview-stack-depth+ #xBA3)
528 (defconstant +projection-stack-depth+ #xBA4)
529 (defconstant +texture-stack-depth+ #xBA5)
530 (defconstant +modelview-matrix+ #xBA6)
531 (defconstant +projection-matrix+ #xBA7)
532 (defconstant +texture-matrix+ #xBA8)
533 (defconstant +attrib-stack-depth+ #xBB0)
534 (defconstant +client-attrib-stack-depth+ #xBB1)
535 ;; alpha_test already defined
536 (defconstant +alpha-test-func+ #xBC1)
537 (defconstant +alpha-test-ref+ #xBC2)
538 ;; dither already defined
539 (defconstant +blend-dst+ #xBE0)
540 (defconstant +blend-src+ #xBE1)
541 ;; blend already defined
542 (defconstant +logic-op-mode+ #xBF0)
543 ;; index_logic_op already defined
544 ;; logic_op already defined
545 ;; color_logic_op already defined
546 (defconstant +aux-buffers+ #xC00)
547 (defconstant +draw-buffer+ #xC01)
548 (defconstant +read-buffer+ #xC02)
549 (defconstant +scissor-box+ #xC10)
550 ;; scissor_test already defined
551 (defconstant +index-clear-value+ #xC20)
552 (defconstant +index-writemask+ #xC21)
553 (defconstant +color-clear-value+ #xC22)
554 (defconstant +color-writemask+ #xC23)
555 (defconstant +index-mode+ #xC30)
556 (defconstant +rgba-mode+ #xC31)
557 (defconstant +doublebuffer+ #xC32)
558 (defconstant +stereo+ #xC33)
559 (defconstant +render-mode+ #xC40)
560 (defconstant +perspective-correction-hint+ #xC50)
561 (defconstant +point-smooth-hint+ #xC51)
562 (defconstant +line-smooth-hint+ #xC52)
563 (defconstant +polygon-smooth-hint+ #xC53)
564 (defconstant +fog-hint+ #xC54)
565 ;; texture_gen_s already defined
566 ;; texture_gen_t already defined
567 ;; texture_gen_r already defined
568 ;; texture_gen_q already defined
569 (defconstant +pixel-map-i-to-i-size+ #xCB0)
570 (defconstant +pixel-map-s-to-s-size+ #xCB1)
571 (defconstant +pixel-map-i-to-r-size+ #xCB2)
572 (defconstant +pixel-map-i-to-g-size+ #xCB3)
573 (defconstant +pixel-map-i-to-b-size+ #xCB4)
574 (defconstant +pixel-map-i-to-a-size+ #xCB5)
575 (defconstant +pixel-map-r-to-r-size+ #xCB6)
576 (defconstant +pixel-map-g-to-g-size+ #xCB7)
577 (defconstant +pixel-map-b-to-b-size+ #xCB8)
578 (defconstant +pixel-map-a-to-a-size+ #xCB9)
579 (defconstant +unpack-swap-bytes+ #xCF0)
580 (defconstant +unpack-lsb-first+ #xCF1)
581 (defconstant +unpack-row-length+ #xCF2)
582 (defconstant +unpack-skip-rows+ #xCF3)
583 (defconstant +unpack-skip-pixels+ #xCF4)
584 (defconstant +unpack-alignment+ #xCF5)
585 (defconstant +pack-swap-bytes+ #xD00)
586 (defconstant +pack-lsb-first+ #xD01)
587 (defconstant +pack-row-length+ #xD02)
588 (defconstant +pack-skip-rows+ #xD03)
589 (defconstant +pack-skip-pixels+ #xD04)
590 (defconstant +pack-alignment+ #xD05)
591 (defconstant +map-color+ #xD10)
592 (defconstant +map-stencil+ #xD11)
593 (defconstant +index-shift+ #xD12)
594 (defconstant +index-offset+ #xD13)
595 (defconstant +red-scale+ #xD14)
596 (defconstant +red-bias+ #xD15)
597 (defconstant +zoom-x+ #xD16)
598 (defconstant +zoom-y+ #xD17)
599 (defconstant +green-scale+ #xD18)
600 (defconstant +green-bias+ #xD19)
601 (defconstant +blue-scale+ #xD1A)
602 (defconstant +blue-bias+ #xD1B)
603 (defconstant +alpha-scale+ #xD1C)
604 (defconstant +alpha-bias+ #xD1D)
605 (defconstant +depth-scale+ #xD1E)
606 (defconstant +depth-bias+ #xD1F)
607 (defconstant +max-eval-order+ #xD30)
608 (defconstant +max-lights+ #xD31)
609 (defconstant +max-clip-planes+ #xD32)
610 (defconstant +max-texture-size+ #xD33)
611 (defconstant +max-pixel-map-table+ #xD34)
612 (defconstant +max-attrib-stack-depth+ #xD35)
613 (defconstant +max-modelview-stack-depth+ #xD36)
614 (defconstant +max-name-stack-depth+ #xD37)
615 (defconstant +max-projection-stack-depth+ #xD38)
616 (defconstant +max-texture-stack-depth+ #xD39)
617 (defconstant +max-viewport-dims+ #xD3A)
618 (defconstant +max-client-attrib-stack-depth+ #xD3B)
619 (defconstant +subpixel-bits+ #xD50)
620 (defconstant +index-bits+ #xD51)
621 (defconstant +red-bits+ #xD52)
622 (defconstant +green-bits+ #xD53)
623 (defconstant +blue-bits+ #xD54)
624 (defconstant +alpha-bits+ #xD55)
625 (defconstant +depth-bits+ #xD56)
626 (defconstant +stencil-bits+ #xD57)
627 (defconstant +accum-red-bits+ #xD58)
628 (defconstant +accum-green-bits+ #xD59)
629 (defconstant +accum-blue-bits+ #xD5A)
630 (defconstant +accum-alpha-bits+ #xD5B)
631 (defconstant +name-stack-depth+ #xD70)
632 ;; auto_normal already defined
633 ;; map1_color_4 already defined
634 ;; map1_index already defined
635 ;; map1_normal already defined
636 ;; map1_texture_coord_1 already defined
637 ;; map1_texture_coord_2 already defined
638 ;; map1_texture_coord_3 already defined
639 ;; map1_texture_coord_4 already defined
640 ;; map1_vertex_3 already defined
641 ;; map1_vertex_4 already defined
642 ;; map2_color_4 already defined
643 ;; map2_index already defined
644 ;; map2_normal already defined
645 ;; map2_texture_coord_1 already defined
646 ;; map2_texture_coord_2 already defined
647 ;; map2_texture_coord_3 already defined
648 ;; map2_texture_coord_4 already defined
649 ;; map2_vertex_3 already defined
650 ;; map2_vertex_4 already defined
651 (defconstant +map1-grid-domain+ #xDD0)
652 (defconstant +map1-grid-segments+ #xDD1)
653 (defconstant +map2-grid-domain+ #xDD2)
654 (defconstant +map2-grid-segments+ #xDD3)
655 ;; texture_1d already defined
656 ;; texture_2d already defined
657 (defconstant +feedback-buffer-size+ #xDF1)
658 (defconstant +feedback-buffer-type+ #xDF2)
659 (defconstant +selection-buffer-size+ #xDF4)
660 (defconstant +polygon-offset-units+ #x2A00)
661 ;; polygon_offset_point already defined
662 ;; polygon_offset_line already defined
663 ;; polygon_offset_fill already defined
664 (defconstant +polygon-offset-factor+ #x8038)
665 (defconstant +texture-binding-1d+ #x8068)
666 (defconstant +texture-binding-2d+ #x8069)
667 (defconstant +texture-binding-3d+ #x806A)
668 ;; vertex_array already defined
669 ;; normal_array already defined
670 ;; color_array already defined
671 ;; index_array already defined
672 ;; texture_coord_array already defined
673 ;; edge_flag_array already defined
674 (defconstant +vertex-array-size+ #x807A)
675 (defconstant +vertex-array-type+ #x807B)
676 (defconstant +vertex-array-stride+ #x807C)
677 (defconstant +normal-array-type+ #x807E)
678 (defconstant +normal-array-stride+ #x807F)
679 (defconstant +color-array-size+ #x8081)
680 (defconstant +color-array-type+ #x8082)
681 (defconstant +color-array-stride+ #x8083)
682 (defconstant +index-array-type+ #x8085)
683 (defconstant +index-array-stride+ #x8086)
684 (defconstant +texture-coord-array-size+ #x8088)
685 (defconstant +texture-coord-array-type+ #x8089)
686 (defconstant +texture-coord-array-stride+ #x808A)
687 (defconstant +edge-flag-array-stride+ #x808C)
688 ;; clip_plane0 already defined
689 ;; clip_plane1 already defined
690 ;; clip_plane2 already defined
691 ;; clip_plane3 already defined
692 ;; clip_plane4 already defined
693 ;; clip_plane5 already defined
694 ;; light0 already defined
695 ;; light1 already defined
696 ;; light2 already defined
697 ;; light3 already defined
698 ;; light4 already defined
699 ;; light5 already defined
700 ;; light6 already defined
701 ;; light7 already defined
702 (defconstant +light-model-color-control+ #x81F8)
703 (defconstant +blend-color-ext+ #x8005)
704 (defconstant +blend-equation-ext+ #x8009)
705 (defconstant +pack-cmyk-hint-ext+ #x800E)
706 (defconstant +unpack-cmyk-hint-ext+ #x800F)
707 ;; convolution_1d_ext already defined
708 ;; convolution_2d_ext already defined
709 ;; separable_2d_ext already defined
710 (defconstant +post-convolution-red-scale-ext+ #x801C)
711 (defconstant +post-convolution-green-scale-ext+ #x801D)
712 (defconstant +post-convolution-blue-scale-ext+ #x801E)
713 (defconstant +post-convolution-alpha-scale-ext+ #x801F)
714 (defconstant +post-convolution-red-bias-ext+ #x8020)
715 (defconstant +post-convolution-green-bias-ext+ #x8021)
716 (defconstant +post-convolution-blue-bias-ext+ #x8022)
717 (defconstant +post-convolution-alpha-bias-ext+ #x8023)
718 ;; histogram_ext already defined
719 ;; minmax_ext already defined
720 (defconstant +polygon-offset-bias-ext+ #x8039)
721 ;; rescale_normal_ext already defined
722 ;; shared_texture_palette_ext already defined
723 (defconstant +texture-3d-binding-ext+ #x806A)
724 (defconstant +pack-skip-images-ext+ #x806B)
725 (defconstant +pack-image-height-ext+ #x806C)
726 (defconstant +unpack-skip-images-ext+ #x806D)
727 (defconstant +unpack-image-height-ext+ #x806E)
728 ;; texture_3d_ext already defined
729 (defconstant +max-3d-texture-size-ext+ #x8073)
730 (defconstant +vertex-array-count-ext+ #x807D)
731 (defconstant +normal-array-count-ext+ #x8080)
732 (defconstant +color-array-count-ext+ #x8084)
733 (defconstant +index-array-count-ext+ #x8087)
734 (defconstant +texture-coord-array-count-ext+ #x808B)
735 (defconstant +edge-flag-array-count-ext+ #x808D)
736 (defconstant +detail-texture-2d-binding-sgis+ #x8096)
737 (defconstant +fog-func-points-sgis+ #x812B)
738 (defconstant +max-fog-func-points-sgis+ #x812C)
739 (defconstant +generate-mipmap-hint-sgis+ #x8192)
740 ;; multisample_sgis already defined
741 ;; sample_alpha_to_mask_sgis already defined
742 ;; sample_alpha_to_one_sgis already defined
743 ;; sample_mask_sgis already defined
744 (defconstant +sample-buffers-sgis+ #x80A8)
745 (defconstant +samples-sgis+ #x80A9)
746 (defconstant +sample-mask-value-sgis+ #x80AA)
747 (defconstant +sample-mask-invert-sgis+ #x80AB)
748 (defconstant +sample-pattern-sgis+ #x80AC)
749 ;; pixel_texture_sgis already defined
750 (defconstant +point-size-min-sgis+ #x8126)
751 (defconstant +point-size-max-sgis+ #x8127)
752 (defconstant +point-fade-threshold-size-sgis+ #x8128)
753 (defconstant +distance-attenuation-sgis+ #x8129)
754 (defconstant +pack-skip-volumes-sgis+ #x8130)
755 (defconstant +pack-image-depth-sgis+ #x8131)
756 (defconstant +unpack-skip-volumes-sgis+ #x8132)
757 (defconstant +unpack-image-depth-sgis+ #x8133)
758 ;; texture_4d_sgis already defined
759 (defconstant +max-4d-texture-size-sgis+ #x8138)
760 (defconstant +texture-4d-binding-sgis+ #x814F)
761 (defconstant +async-marker-sgix+ #x8329)
762 ;; async_histogram_sgix already defined
763 (defconstant +max-async-histogram-sgix+ #x832D)
764 ;; async_tex_image_sgix already defined
765 ;; async_draw_pixels_sgix already defined
766 ;; async_read_pixels_sgix already defined
767 (defconstant +max-async-tex-image-sgix+ #x835F)
768 (defconstant +max-async-draw-pixels-sgix+ #x8360)
769 (defconstant +max-async-read-pixels-sgix+ #x8361)
770 ;; calligraphic_fragment_sgix already defined
771 (defconstant +max-clipmap-virtual-depth-sgix+ #x8178)
772 (defconstant +max-clipmap-depth-sgix+ #x8177)
773 (defconstant +convolution-hint-sgix+ #x8316)
774 ;; fog_offset_sgix already defined
775 ;; fog_offset_value_sgix already defined
776 ;; fragment_lighting_sgix already defined
777 ;; fragment_color_material_sgix already defined
778 (defconstant +fragment-color-material-face-sgix+ #x8402)
779 (defconstant +fragment-color-material-parameter-sgix+ #x8403)
780 (defconstant +max-fragment-lights-sgix+ #x8404)
781 (defconstant +max-active-lights-sgix+ #x8405)
782 (defconstant +light-env-mode-sgix+ #x8407)
783 ;; fragment_light_model_local_viewer_sgix already defined
784 ;; fragment_light_model_two_side_sgix already defined
785 ;; fragment_light_model_ambient_sgix already defined
786 ;; fragment_light_model_normal_interpolation_sgix already defined
787 ;; fragment_light0_sgix already defined
788 ;; framezoom_sgix already defined
789 (defconstant +framezoom-factor-sgix+ #x818C)
790 (defconstant +max-framezoom-factor-sgix+ #x818D)
791 (defconstant +instrument-measurements-sgix+ #x8181)
792 ;; interlace_sgix already defined
793 ;; ir_instrument1_sgix already defined
794 ;; pixel_tex_gen_sgix already defined
795 (defconstant +pixel-tex-gen-mode-sgix+ #x832B)
796 (defconstant +pixel-tile-best-alignment-sgix+ #x813E)
797 (defconstant +pixel-tile-cache-increment-sgix+ #x813F)
798 (defconstant +pixel-tile-width-sgix+ #x8140)
799 (defconstant +pixel-tile-height-sgix+ #x8141)
800 (defconstant +pixel-tile-grid-width-sgix+ #x8142)
801 (defconstant +pixel-tile-grid-height-sgix+ #x8143)
802 (defconstant +pixel-tile-grid-depth-sgix+ #x8144)
803 (defconstant +pixel-tile-cache-size-sgix+ #x8145)
804 (defconstant +deformations-mask-sgix+ #x8196)
805 (defconstant +reference-plane-equation-sgix+ #x817E)
806 ;; reference_plane_sgix already defined
807 ;; sprite_sgix already defined
808 (defconstant +sprite-mode-sgix+ #x8149)
809 (defconstant +sprite-axis-sgix+ #x814A)
810 (defconstant +sprite-translation-sgix+ #x814B)
811 (defconstant +pack-subsample-rate-sgix+ #x85A0)
812 (defconstant +unpack-subsample-rate-sgix+ #x85A1)
813 (defconstant +pack-resample-sgix+ #x842C)
814 (defconstant +unpack-resample-sgix+ #x842D)
815 (defconstant +post-texture-filter-bias-range-sgix+ #x817B)
816 (defconstant +post-texture-filter-scale-range-sgix+ #x817C)
817 (defconstant +vertex-preclip-sgix+ #x83EE)
818 (defconstant +vertex-preclip-hint-sgix+ #x83EF)
819 (defconstant +color-matrix-sgi+ #x80B1)
820 (defconstant +color-matrix-stack-depth-sgi+ #x80B2)
821 (defconstant +max-color-matrix-stack-depth-sgi+ #x80B3)
822 (defconstant +post-color-matrix-red-scale-sgi+ #x80B4)
823 (defconstant +post-color-matrix-green-scale-sgi+ #x80B5)
824 (defconstant +post-color-matrix-blue-scale-sgi+ #x80B6)
825 (defconstant +post-color-matrix-alpha-scale-sgi+ #x80B7)
826 (defconstant +post-color-matrix-red-bias-sgi+ #x80B8)
827 (defconstant +post-color-matrix-green-bias-sgi+ #x80B9)
828 (defconstant +post-color-matrix-blue-bias-sgi+ #x80BA)
829 (defconstant +post-color-matrix-alpha-bias-sgi+ #x80BB)
830 ;; color_table_sgi already defined
831 ;; post_convolution_color_table_sgi already defined
832 ;; post_color_matrix_color_table_sgi already defined
833 ;; texture_color_table_sgi already defined
835 ;;;; Enumerations: GetTextureParameter
837 (defconstant +texture-mag-filter+ #x2800)
838 (defconstant +texture-min-filter+ #x2801)
839 (defconstant +texture-wrap-s+ #x2802)
840 (defconstant +texture-wrap-t+ #x2803)
841 (defconstant +texture-width+ #x1000)
842 (defconstant +texture-height+ #x1001)
843 (defconstant +texture-internal-format+ #x1003)
844 (defconstant +texture-components+ #x1003)
845 (defconstant +texture-border-color+ #x1004)
846 (defconstant +texture-border+ #x1005)
847 (defconstant +texture-red-size+ #x805C)
848 (defconstant +texture-green-size+ #x805D)
849 (defconstant +texture-blue-size+ #x805E)
850 (defconstant +texture-alpha-size+ #x805F)
851 (defconstant +texture-luminance-size+ #x8060)
852 (defconstant +texture-intensity-size+ #x8061)
853 (defconstant +texture-priority+ #x8066)
854 (defconstant +texture-resident+ #x8067)
855 (defconstant +texture-depth-ext+ #x8071)
856 (defconstant +texture-wrap-r-ext+ #x8072)
857 (defconstant +detail-texture-level-sgis+ #x809A)
858 (defconstant +detail-texture-mode-sgis+ #x809B)
859 (defconstant +detail-texture-func-points-sgis+ #x809C)
860 (defconstant +generate-mipmap-sgis+ #x8191)
861 (defconstant +sharpen-texture-func-points-sgis+ #x80B0)
862 (defconstant +texture-filter4-size-sgis+ #x8147)
863 (defconstant +texture-min-lod-sgis+ #x813A)
864 (defconstant +texture-max-lod-sgis+ #x813B)
865 (defconstant +texture-base-level-sgis+ #x813C)
866 (defconstant +texture-max-level-sgis+ #x813D)
867 (defconstant +dual-texture-select-sgis+ #x8124)
868 (defconstant +quad-texture-select-sgis+ #x8125)
869 (defconstant +texture-4dsize-sgis+ #x8136)
870 (defconstant +texture-wrap-q-sgis+ #x8137)
871 (defconstant +texture-clipmap-center-sgix+ #x8171)
872 (defconstant +texture-clipmap-frame-sgix+ #x8172)
873 (defconstant +texture-clipmap-offset-sgix+ #x8173)
874 (defconstant +texture-clipmap-virtual-depth-sgix+ #x8174)
875 (defconstant +texture-clipmap-lod-offset-sgix+ #x8175)
876 (defconstant +texture-clipmap-depth-sgix+ #x8176)
877 (defconstant +texture-compare-sgix+ #x819A)
878 (defconstant +texture-compare-operator-sgix+ #x819B)
879 (defconstant +texture-lequal-r-sgix+ #x819C)
880 (defconstant +texture-gequal-r-sgix+ #x819D)
881 (defconstant +shadow-ambient-sgix+ #x80BF)
882 (defconstant +texture-max-clamp-s-sgix+ #x8369)
883 (defconstant +texture-max-clamp-t-sgix+ #x836A)
884 (defconstant +texture-max-clamp-r-sgix+ #x836B)
885 (defconstant +texture-lod-bias-s-sgix+ #x818E)
886 (defconstant +texture-lod-bias-t-sgix+ #x818F)
887 (defconstant +texture-lod-bias-r-sgix+ #x8190)
888 (defconstant +post-texture-filter-bias-sgix+ #x8179)
889 (defconstant +post-texture-filter-scale-sgix+ #x817A)
891 ;;;; Enumerations: HintMode
893 (defconstant +dont-care+ #x1100)
894 (defconstant +fastest+ #x1101)
895 (defconstant +nicest+ #x1102)
897 ;;;; Enumerations: HintTarget
898 ;; perspective_correction_hint already defined
899 ;; point_smooth_hint already defined
900 ;; line_smooth_hint already defined
901 ;; polygon_smooth_hint already defined
902 ;; fog_hint already defined
903 ;; pack_cmyk_hint_ext already defined
904 ;; unpack_cmyk_hint_ext already defined
905 ;; generate_mipmap_hint_sgis already defined
906 ;; convolution_hint_sgix already defined
907 (defconstant +texture-multi-buffer-hint-sgix+ #x812E)
908 ;; vertex_preclip_hint_sgix already defined
910 ;;;; Enumerations: HistogramTargetEXT
911 ;; histogram_ext already defined
912 (defconstant +proxy-histogram-ext+ #x8025)
914 ;;;; Enumerations: IndexPointerType
915 ;; short already defined
916 ;; int already defined
917 ;; float already defined
918 ;; double already defined
920 ;;;; Enumerations: LightEnvModeSGIX
922 (defconstant +replace+ #x1E01)
923 (defconstant +modulate+ #x2100)
924 ;; add already defined
926 ;;;; Enumerations: LightEnvParameterSGIX
927 ;; light_env_mode_sgix already defined
929 ;;;; Enumerations: LightModelColorControl
931 (defconstant +single-color+ #x81F9)
932 (defconstant +separate-specular-color+ #x81FA)
934 ;;;; Enumerations: LightModelParameter
935 ;; light_model_ambient already defined
936 ;; light_model_local_viewer already defined
937 ;; light_model_two_side already defined
938 ;; light_model_color_control already defined
940 ;;;; Enumerations: LightParameter
941 ;; ambient already defined
942 ;; diffuse already defined
943 ;; specular already defined
944 (defconstant +position+ #x1203)
945 (defconstant +spot-direction+ #x1204)
946 (defconstant +spot-exponent+ #x1205)
947 (defconstant +spot-cutoff+ #x1206)
948 (defconstant +constant-attenuation+ #x1207)
949 (defconstant +linear-attenuation+ #x1208)
950 (defconstant +quadratic-attenuation+ #x1209)
952 ;;;; Enumerations: ListMode
954 (defconstant +compile+ #x1300)
955 (defconstant +compile-and-execute+ #x1301)
957 ;;;; Enumerations: DataType
958 ;; byte already defined
959 ;; unsigned_byte already defined
960 ;; short already defined
961 ;; unsigned_short already defined
962 ;; int already defined
963 ;; unsigned_int already defined
964 ;; float already defined
965 (defconstant +2-bytes+ #x1407)
966 (defconstant +3-bytes+ #x1408)
967 (defconstant +4-bytes+ #x1409)
968 ;; double already defined
969 (defconstant +double-ext+ #x140A)
971 ;;;; Enumerations: ListNameType
972 ;; byte already defined
973 ;; unsigned_byte already defined
974 ;; short already defined
975 ;; unsigned_short already defined
976 ;; int already defined
977 ;; unsigned_int already defined
978 ;; float already defined
979 ;; 2_bytes already defined
980 ;; 3_bytes already defined
981 ;; 4_bytes already defined
983 ;;;; Enumerations: ListParameterName
985 (defconstant +list-priority-sgix+ #x8182)
987 ;;;; Enumerations: LogicOp
989 (defconstant +clear+ #x1500)
990 (defconstant +and+ #x1501)
991 (defconstant +and-reverse+ #x1502)
992 (defconstant +copy+ #x1503)
993 (defconstant +and-inverted+ #x1504)
994 (defconstant +noop+ #x1505)
995 (defconstant +xor+ #x1506)
996 (defconstant +or+ #x1507)
997 (defconstant +nor+ #x1508)
998 (defconstant +equiv+ #x1509)
999 (defconstant +invert+ #x150A)
1000 (defconstant +or-reverse+ #x150B)
1001 (defconstant +copy-inverted+ #x150C)
1002 (defconstant +or-inverted+ #x150D)
1003 (defconstant +nand+ #x150E)
1004 (defconstant +set+ #x150F)
1006 ;;;; Enumerations: MapTarget
1007 ;; map1_color_4 already defined
1008 ;; map1_index already defined
1009 ;; map1_normal already defined
1010 ;; map1_texture_coord_1 already defined
1011 ;; map1_texture_coord_2 already defined
1012 ;; map1_texture_coord_3 already defined
1013 ;; map1_texture_coord_4 already defined
1014 ;; map1_vertex_3 already defined
1015 ;; map1_vertex_4 already defined
1016 ;; map2_color_4 already defined
1017 ;; map2_index already defined
1018 ;; map2_normal already defined
1019 ;; map2_texture_coord_1 already defined
1020 ;; map2_texture_coord_2 already defined
1021 ;; map2_texture_coord_3 already defined
1022 ;; map2_texture_coord_4 already defined
1023 ;; map2_vertex_3 already defined
1024 ;; map2_vertex_4 already defined
1025 ;; geometry_deformation_sgix already defined
1026 ;; texture_deformation_sgix already defined
1028 ;;;; Enumerations: MaterialFace
1029 ;; front already defined
1030 ;; back already defined
1031 ;; front_and_back already defined
1033 ;;;; Enumerations: MaterialParameter
1034 ;; emission already defined
1035 (defconstant +shininess+ #x1601)
1036 ;; ambient_and_diffuse already defined
1037 (defconstant +color-indexes+ #x1603)
1038 ;; ambient already defined
1039 ;; diffuse already defined
1040 ;; specular already defined
1042 ;;;; Enumerations: MatrixMode
1044 (defconstant +modelview+ #x1700)
1045 (defconstant +projection+ #x1701)
1046 (defconstant +texture+ #x1702)
1048 ;;;; Enumerations: MeshMode1
1050 (defconstant +point+ #x1B00)
1051 (defconstant +line+ #x1B01)
1053 ;;;; Enumerations: MeshMode2
1054 ;; point already defined
1055 ;; line already defined
1056 (defconstant +fill+ #x1B02)
1058 ;;;; Enumerations: MinmaxTargetEXT
1059 ;; minmax_ext already defined
1061 ;;;; Enumerations: NormalPointerType
1062 ;; byte already defined
1063 ;; short already defined
1064 ;; int already defined
1065 ;; float already defined
1066 ;; double already defined
1068 ;;;; Enumerations: PixelCopyType
1070 (defconstant +color+ #x1800)
1071 (defconstant +depth+ #x1801)
1072 (defconstant +stencil+ #x1802)
1074 ;;;; Enumerations: PixelFormat
1076 (defconstant +color-index+ #x1900)
1077 (defconstant +stencil-index+ #x1901)
1078 (defconstant +depth-component+ #x1902)
1079 (defconstant +red+ #x1903)
1080 (defconstant +green+ #x1904)
1081 (defconstant +blue+ #x1905)
1082 (defconstant +alpha+ #x1906)
1083 (defconstant +rgb+ #x1907)
1084 (defconstant +rgba+ #x1908)
1085 (defconstant +luminance+ #x1909)
1086 (defconstant +luminance-alpha+ #x190A)
1087 (defconstant +abgr-ext+ #x8000)
1088 (defconstant +cmyk-ext+ #x800C)
1089 (defconstant +cmyka-ext+ #x800D)
1090 (defconstant +r5-g6-b5-icc-sgix+ nil)
1091 (defconstant +r5-g6-b5-a8-icc-sgix+ nil)
1092 (defconstant +alpha16-icc-sgix+ nil)
1093 (defconstant +luminance16-icc-sgix+ nil)
1094 (defconstant +luminance16-alpha8-icc-sgix+ nil)
1095 (defconstant +ycrcb-422-sgix+ #x81BB)
1096 (defconstant +ycrcb-444-sgix+ #x81BC)
1098 ;;;; Enumerations: PixelMap
1099 ;; pixel_map_i_to_i already defined
1100 ;; pixel_map_s_to_s already defined
1101 ;; pixel_map_i_to_r already defined
1102 ;; pixel_map_i_to_g already defined
1103 ;; pixel_map_i_to_b already defined
1104 ;; pixel_map_i_to_a already defined
1105 ;; pixel_map_r_to_r already defined
1106 ;; pixel_map_g_to_g already defined
1107 ;; pixel_map_b_to_b already defined
1108 ;; pixel_map_a_to_a already defined
1110 ;;;; Enumerations: PixelStoreParameter
1111 ;; unpack_swap_bytes already defined
1112 ;; unpack_lsb_first already defined
1113 ;; unpack_row_length already defined
1114 ;; unpack_skip_rows already defined
1115 ;; unpack_skip_pixels already defined
1116 ;; unpack_alignment already defined
1117 ;; pack_swap_bytes already defined
1118 ;; pack_lsb_first already defined
1119 ;; pack_row_length already defined
1120 ;; pack_skip_rows already defined
1121 ;; pack_skip_pixels already defined
1122 ;; pack_alignment already defined
1123 ;; pack_skip_images_ext already defined
1124 ;; pack_image_height_ext already defined
1125 ;; unpack_skip_images_ext already defined
1126 ;; unpack_image_height_ext already defined
1127 ;; pack_skip_volumes_sgis already defined
1128 ;; pack_image_depth_sgis already defined
1129 ;; unpack_skip_volumes_sgis already defined
1130 ;; unpack_image_depth_sgis already defined
1131 ;; pixel_tile_width_sgix already defined
1132 ;; pixel_tile_height_sgix already defined
1133 ;; pixel_tile_grid_width_sgix already defined
1134 ;; pixel_tile_grid_height_sgix already defined
1135 ;; pixel_tile_grid_depth_sgix already defined
1136 ;; pixel_tile_cache_size_sgix already defined
1137 ;; pack_subsample_rate_sgix already defined
1138 ;; unpack_subsample_rate_sgix already defined
1139 ;; pack_resample_sgix already defined
1140 ;; unpack_resample_sgix already defined
1142 ;;;; Enumerations: PixelStoreResampleMode
1144 (defconstant +resample-replicate-sgix+ #x842E)
1145 (defconstant +resample-zero-fill-sgix+ #x842F)
1146 (defconstant +resample-decimate-sgix+ #x8430)
1148 ;;;; Enumerations: PixelStoreSubsampleRate
1150 (defconstant +pixel-subsample-4444-sgix+ #x85A2)
1151 (defconstant +pixel-subsample-2424-sgix+ #x85A3)
1152 (defconstant +pixel-subsample-4242-sgix+ #x85A4)
1154 ;;;; Enumerations: PixelTexGenMode
1155 ;; none already defined
1156 ;; rgb already defined
1157 ;; rgba already defined
1158 ;; luminance already defined
1159 ;; luminance_alpha already defined
1160 (defconstant +pixel-tex-gen-alpha-replace-sgix+ #x8187)
1161 (defconstant +pixel-tex-gen-alpha-no-replace-sgix+ #x8188)
1162 (defconstant +pixel-tex-gen-alpha-ms-sgix+ #x818A)
1163 (defconstant +pixel-tex-gen-alpha-ls-sgix+ #x8189)
1165 ;;;; Enumerations: PixelTexGenParameterNameSGIS
1167 (defconstant +pixel-fragment-rgb-source-sgis+ #x8354)
1168 (defconstant +pixel-fragment-alpha-source-sgis+ #x8355)
1170 ;;;; Enumerations: PixelTransferParameter
1171 ;; map_color already defined
1172 ;; map_stencil already defined
1173 ;; index_shift already defined
1174 ;; index_offset already defined
1175 ;; red_scale already defined
1176 ;; red_bias already defined
1177 ;; green_scale already defined
1178 ;; green_bias already defined
1179 ;; blue_scale already defined
1180 ;; blue_bias already defined
1181 ;; alpha_scale already defined
1182 ;; alpha_bias already defined
1183 ;; depth_scale already defined
1184 ;; depth_bias already defined
1185 ;; post_convolution_red_scale_ext already defined
1186 ;; post_convolution_green_scale_ext already defined
1187 ;; post_convolution_blue_scale_ext already defined
1188 ;; post_convolution_alpha_scale_ext already defined
1189 ;; post_convolution_red_bias_ext already defined
1190 ;; post_convolution_green_bias_ext already defined
1191 ;; post_convolution_blue_bias_ext already defined
1192 ;; post_convolution_alpha_bias_ext already defined
1193 ;; post_color_matrix_red_scale_sgi already defined
1194 ;; post_color_matrix_green_scale_sgi already defined
1195 ;; post_color_matrix_blue_scale_sgi already defined
1196 ;; post_color_matrix_alpha_scale_sgi already defined
1197 ;; post_color_matrix_red_bias_sgi already defined
1198 ;; post_color_matrix_green_bias_sgi already defined
1199 ;; post_color_matrix_blue_bias_sgi already defined
1200 ;; post_color_matrix_alpha_bias_sgi already defined
1202 ;;;; Enumerations: PixelType
1204 (defconstant +bitmap+ #x1A00)
1205 ;; byte already defined
1206 ;; unsigned_byte already defined
1207 ;; short already defined
1208 ;; unsigned_short already defined
1209 ;; int already defined
1210 ;; unsigned_int already defined
1211 ;; float already defined
1212 (defconstant +unsigned-byte-3-3-2-ext+ #x8032)
1213 (defconstant +unsigned-short-4-4-4-4-ext+ #x8033)
1214 (defconstant +unsigned-short-5-5-5-1-ext+ #x8034)
1215 (defconstant +unsigned-int-8-8-8-8-ext+ #x8035)
1216 (defconstant +unsigned-int-10-10-10-2-ext+ #x8036)
1218 ;;;; Enumerations: PointParameterNameSGIS
1219 ;; point_size_min_sgis already defined
1220 ;; point_size_max_sgis already defined
1221 ;; point_fade_threshold_size_sgis already defined
1222 ;; distance_attenuation_sgis already defined
1224 ;;;; Enumerations: PolygonMode
1225 ;; point already defined
1226 ;; line already defined
1227 ;; fill already defined
1229 ;;;; Enumerations: ReadBufferMode
1230 ;; front_left already defined
1231 ;; front_right already defined
1232 ;; back_left already defined
1233 ;; back_right already defined
1234 ;; front already defined
1235 ;; back already defined
1236 ;; left already defined
1237 ;; right already defined
1238 ;; aux0 already defined
1239 ;; aux1 already defined
1240 ;; aux2 already defined
1241 ;; aux3 already defined
1243 ;;;; Enumerations: RenderingMode
1245 (defconstant +render+ #x1C00)
1246 (defconstant +feedback+ #x1C01)
1247 (defconstant +select+ #x1C02)
1249 ;;;; Enumerations: SamplePatternSGIS
1251 (defconstant +1pass-sgis+ #x80A1)
1252 (defconstant +2pass-0-sgis+ #x80A2)
1253 (defconstant +2pass-1-sgis+ #x80A3)
1254 (defconstant +4pass-0-sgis+ #x80A4)
1255 (defconstant +4pass-1-sgis+ #x80A5)
1256 (defconstant +4pass-2-sgis+ #x80A6)
1257 (defconstant +4pass-3-sgis+ #x80A7)
1259 ;;;; Enumerations: SeparableTargetEXT
1260 ;; separable_2d_ext already defined
1262 ;;;; Enumerations: ShadingModel
1264 (defconstant +flat+ #x1D00)
1265 (defconstant +smooth+ #x1D01)
1267 ;;;; Enumerations: StencilFunction
1268 ;; never already defined
1269 ;; less already defined
1270 ;; equal already defined
1271 ;; lequal already defined
1272 ;; greater already defined
1273 ;; notequal already defined
1274 ;; gequal already defined
1275 ;; always already defined
1277 ;;;; Enumerations: StencilOp
1278 ;; zero already defined
1279 (defconstant +keep+ #x1E00)
1280 ;; replace already defined
1281 (defconstant +incr+ #x1E02)
1282 (defconstant +decr+ #x1E03)
1283 ;; invert already defined
1285 ;;;; Enumerations: StringName
1287 (defconstant +vendor+ #x1F00)
1288 (defconstant +renderer+ #x1F01)
1289 (defconstant +version+ #x1F02)
1290 (defconstant +extensions+ #x1F03)
1292 ;;;; Enumerations: TexCoordPointerType
1293 ;; short already defined
1294 ;; int already defined
1295 ;; float already defined
1296 ;; double already defined
1298 ;;;; Enumerations: TextureCoordName
1300 (defconstant +s+ #x2000)
1301 (defconstant +t+ #x2001)
1302 (defconstant +r+ #x2002)
1303 (defconstant +q+ #x2003)
1305 ;;;; Enumerations: TextureEnvMode
1306 ;; modulate already defined
1307 (defconstant +decal+ #x2101)
1308 ;; blend already defined
1309 (defconstant +replace-ext+ #x8062)
1310 ;; add already defined
1311 (defconstant +texture-env-bias-sgix+ #x80BE)
1313 ;;;; Enumerations: TextureEnvParameter
1315 (defconstant +texture-env-mode+ #x2200)
1316 (defconstant +texture-env-color+ #x2201)
1318 ;;;; Enumerations: TextureEnvTarget
1320 (defconstant +texture-env+ #x2300)
1322 ;;;; Enumerations: TextureFilterFuncSGIS
1324 (defconstant +filter4-sgis+ #x8146)
1326 ;;;; Enumerations: TextureGenMode
1328 (defconstant +eye-linear+ #x2400)
1329 (defconstant +object-linear+ #x2401)
1330 (defconstant +sphere-map+ #x2402)
1331 (defconstant +eye-distance-to-point-sgis+ #x81F0)
1332 (defconstant +object-distance-to-point-sgis+ #x81F1)
1333 (defconstant +eye-distance-to-line-sgis+ #x81F2)
1334 (defconstant +object-distance-to-line-sgis+ #x81F3)
1336 ;;;; Enumerations: TextureGenParameter
1338 (defconstant +texture-gen-mode+ #x2500)
1339 (defconstant +object-plane+ #x2501)
1340 (defconstant +eye-plane+ #x2502)
1341 (defconstant +eye-point-sgis+ #x81F4)
1342 (defconstant +object-point-sgis+ #x81F5)
1343 (defconstant +eye-line-sgis+ #x81F6)
1344 (defconstant +object-line-sgis+ #x81F7)
1346 ;;;; Enumerations: TextureMagFilter
1348 (defconstant +nearest+ #x2600)
1349 ;; linear already defined
1350 (defconstant +linear-detail-sgis+ #x8097)
1351 (defconstant +linear-detail-alpha-sgis+ #x8098)
1352 (defconstant +linear-detail-color-sgis+ #x8099)
1353 (defconstant +linear-sharpen-sgis+ #x80AD)
1354 (defconstant +linear-sharpen-alpha-sgis+ #x80AE)
1355 (defconstant +linear-sharpen-color-sgis+ #x80AF)
1356 ;; filter4_sgis already defined
1357 (defconstant +pixel-tex-gen-q-ceiling-sgix+ #x8184)
1358 (defconstant +pixel-tex-gen-q-round-sgix+ #x8185)
1359 (defconstant +pixel-tex-gen-q-floor-sgix+ #x8186)
1361 ;;;; Enumerations: TextureMinFilter
1362 ;; nearest already defined
1363 ;; linear already defined
1364 (defconstant +nearest-mipmap-nearest+ #x2700)
1365 (defconstant +linear-mipmap-nearest+ #x2701)
1366 (defconstant +nearest-mipmap-linear+ #x2702)
1367 (defconstant +linear-mipmap-linear+ #x2703)
1368 ;; filter4_sgis already defined
1369 (defconstant +linear-clipmap-linear-sgix+ #x8170)
1370 (defconstant +nearest-clipmap-nearest-sgix+ #x844D)
1371 (defconstant +nearest-clipmap-linear-sgix+ #x844E)
1372 (defconstant +linear-clipmap-nearest-sgix+ #x844F)
1373 ;; pixel_tex_gen_q_ceiling_sgix already defined
1374 ;; pixel_tex_gen_q_round_sgix already defined
1375 ;; pixel_tex_gen_q_floor_sgix already defined
1377 ;;;; Enumerations: TextureParameterName
1378 ;; texture_mag_filter already defined
1379 ;; texture_min_filter already defined
1380 ;; texture_wrap_s already defined
1381 ;; texture_wrap_t already defined
1382 ;; texture_border_color already defined
1383 ;; texture_priority already defined
1384 ;; texture_wrap_r_ext already defined
1385 ;; detail_texture_level_sgis already defined
1386 ;; detail_texture_mode_sgis already defined
1387 ;; generate_mipmap_sgis already defined
1388 ;; dual_texture_select_sgis already defined
1389 ;; quad_texture_select_sgis already defined
1390 ;; texture_wrap_q_sgis already defined
1391 ;; texture_clipmap_center_sgix already defined
1392 ;; texture_clipmap_frame_sgix already defined
1393 ;; texture_clipmap_offset_sgix already defined
1394 ;; texture_clipmap_virtual_depth_sgix already defined
1395 ;; texture_clipmap_lod_offset_sgix already defined
1396 ;; texture_clipmap_depth_sgix already defined
1397 ;; texture_compare_sgix already defined
1398 ;; texture_compare_operator_sgix already defined
1399 ;; shadow_ambient_sgix already defined
1400 ;; texture_max_clamp_s_sgix already defined
1401 ;; texture_max_clamp_t_sgix already defined
1402 ;; texture_max_clamp_r_sgix already defined
1403 ;; texture_lod_bias_s_sgix already defined
1404 ;; texture_lod_bias_t_sgix already defined
1405 ;; texture_lod_bias_r_sgix already defined
1406 ;; post_texture_filter_bias_sgix already defined
1407 ;; post_texture_filter_scale_sgix already defined
1409 ;;;; Enumerations: TextureTarget
1410 ;; texture_1d already defined
1411 ;; texture_2d already defined
1412 (defconstant +proxy-texture-1d+ #x8063)
1413 (defconstant +proxy-texture-2d+ #x8064)
1414 ;; texture_3d_ext already defined
1415 (defconstant +proxy-texture-3d-ext+ #x8070)
1416 (defconstant +detail-texture-2d-sgis+ #x8095)
1417 ;; texture_4d_sgis already defined
1418 (defconstant +proxy-texture-4d-sgis+ #x8135)
1419 ;; texture_min_lod_sgis already defined
1420 ;; texture_max_lod_sgis already defined
1421 ;; texture_base_level_sgis already defined
1422 ;; texture_max_level_sgis already defined
1424 ;;;; Enumerations: TextureWrapMode
1426 (defconstant +clamp+ #x2900)
1427 (defconstant +repeat+ #x2901)
1428 (defconstant +clamp-to-border-sgis+ #x812D)
1429 (defconstant +clamp-to-edge-sgis+ #x812F)
1431 ;;;; Enumerations: PixelInternalFormat
1433 (defconstant +r3-g3-b2+ #x2A10)
1434 (defconstant +alpha4+ #x803B)
1435 (defconstant +alpha8+ #x803C)
1436 (defconstant +alpha12+ #x803D)
1437 (defconstant +alpha16+ #x803E)
1438 (defconstant +luminance4+ #x803F)
1439 (defconstant +luminance8+ #x8040)
1440 (defconstant +luminance12+ #x8041)
1441 (defconstant +luminance16+ #x8042)
1442 (defconstant +luminance4-alpha4+ #x8043)
1443 (defconstant +luminance6-alpha2+ #x8044)
1444 (defconstant +luminance8-alpha8+ #x8045)
1445 (defconstant +luminance12-alpha4+ #x8046)
1446 (defconstant +luminance12-alpha12+ #x8047)
1447 (defconstant +luminance16-alpha16+ #x8048)
1448 (defconstant +intensity+ #x8049)
1449 (defconstant +intensity4+ #x804A)
1450 (defconstant +intensity8+ #x804B)
1451 (defconstant +intensity12+ #x804C)
1452 (defconstant +intensity16+ #x804D)
1453 (defconstant +rgb4+ #x804F)
1454 (defconstant +rgb5+ #x8050)
1455 (defconstant +rgb8+ #x8051)
1456 (defconstant +rgb10+ #x8052)
1457 (defconstant +rgb12+ #x8053)
1458 (defconstant +rgb16+ #x8054)
1459 (defconstant +rgba2+ #x8055)
1460 (defconstant +rgba4+ #x8056)
1461 (defconstant +rgb5-a1+ #x8057)
1462 (defconstant +rgba8+ #x8058)
1463 (defconstant +rgb10-a2+ #x8059)
1464 (defconstant +rgba12+ #x805A)
1465 (defconstant +rgba16+ #x805B)
1466 (defconstant +rgb2-ext+ #x804E)
1467 (defconstant +dual-alpha4-sgis+ #x8110)
1468 (defconstant +dual-alpha8-sgis+ #x8111)
1469 (defconstant +dual-alpha12-sgis+ #x8112)
1470 (defconstant +dual-alpha16-sgis+ #x8113)
1471 (defconstant +dual-luminance4-sgis+ #x8114)
1472 (defconstant +dual-luminance8-sgis+ #x8115)
1473 (defconstant +dual-luminance12-sgis+ #x8116)
1474 (defconstant +dual-luminance16-sgis+ #x8117)
1475 (defconstant +dual-intensity4-sgis+ #x8118)
1476 (defconstant +dual-intensity8-sgis+ #x8119)
1477 (defconstant +dual-intensity12-sgis+ #x811A)
1478 (defconstant +dual-intensity16-sgis+ #x811B)
1479 (defconstant +dual-luminance-alpha4-sgis+ #x811C)
1480 (defconstant +dual-luminance-alpha8-sgis+ #x811D)
1481 (defconstant +quad-alpha4-sgis+ #x811E)
1482 (defconstant +quad-alpha8-sgis+ #x811F)
1483 (defconstant +quad-luminance4-sgis+ #x8120)
1484 (defconstant +quad-luminance8-sgis+ #x8121)
1485 (defconstant +quad-intensity4-sgis+ #x8122)
1486 (defconstant +quad-intensity8-sgis+ #x8123)
1487 (defconstant +depth-component16-sgix+ #x81A5)
1488 (defconstant +depth-component24-sgix+ #x81A6)
1489 (defconstant +depth-component32-sgix+ #x81A7)
1490 (defconstant +rgb-icc-sgix+ nil)
1491 (defconstant +rgba-icc-sgix+ nil)
1492 (defconstant +alpha-icc-sgix+ nil)
1493 (defconstant +luminance-icc-sgix+ nil)
1494 (defconstant +intensity-icc-sgix+ nil)
1495 (defconstant +luminance-alpha-icc-sgix+ nil)
1496 ;; r5_g6_b5_icc_sgix already defined
1497 ;; r5_g6_b5_a8_icc_sgix already defined
1498 ;; alpha16_icc_sgix already defined
1499 ;; luminance16_icc_sgix already defined
1500 (defconstant +intensity16-icc-sgix+ nil)
1501 ;; luminance16_alpha8_icc_sgix already defined
1503 ;;;; Enumerations: InterleavedArrayFormat
1505 (defconstant +v2f+ #x2A20)
1506 (defconstant +v3f+ #x2A21)
1507 (defconstant +c4ub-v2f+ #x2A22)
1508 (defconstant +c4ub-v3f+ #x2A23)
1509 (defconstant +c3f-v3f+ #x2A24)
1510 (defconstant +n3f-v3f+ #x2A25)
1511 (defconstant +c4f-n3f-v3f+ #x2A26)
1512 (defconstant +t2f-v3f+ #x2A27)
1513 (defconstant +t4f-v4f+ #x2A28)
1514 (defconstant +t2f-c4ub-v3f+ #x2A29)
1515 (defconstant +t2f-c3f-v3f+ #x2A2A)
1516 (defconstant +t2f-n3f-v3f+ #x2A2B)
1517 (defconstant +t2f-c4f-n3f-v3f+ #x2A2C)
1518 (defconstant +t4f-c4f-n3f-v4f+ #x2A2D)
1520 ;;;; Enumerations: VertexPointerType
1521 ;; short already defined
1522 ;; int already defined
1523 ;; float already defined
1524 ;; double already defined
1526 ;;;; Enumerations: ClipPlaneName
1527 ;; clip_plane0 already defined
1528 ;; clip_plane1 already defined
1529 ;; clip_plane2 already defined
1530 ;; clip_plane3 already defined
1531 ;; clip_plane4 already defined
1532 ;; clip_plane5 already defined
1534 ;;;; Enumerations: LightName
1535 ;; light0 already defined
1536 ;; light1 already defined
1537 ;; light2 already defined
1538 ;; light3 already defined
1539 ;; light4 already defined
1540 ;; light5 already defined
1541 ;; light6 already defined
1542 ;; light7 already defined
1543 ;; fragment_light0_sgix already defined
1544 ;; fragment_light1_sgix already defined
1545 ;; fragment_light2_sgix already defined
1546 ;; fragment_light3_sgix already defined
1547 ;; fragment_light4_sgix already defined
1548 ;; fragment_light5_sgix already defined
1549 ;; fragment_light6_sgix already defined
1550 ;; fragment_light7_sgix already defined
1552 ;;;; Enumerations: EXT_abgr
1553 ;; abgr_ext already defined
1555 ;;;; Enumerations: EXT_blend_subtract
1557 (defconstant +func-subtract+ #x800A)
1558 ;; func_subtract_ext already defined
1559 (defconstant +func-reverse-subtract+ #x800B)
1560 ;; func_reverse_subtract_ext already defined
1562 ;;;; Enumerations: EXT_cmyka
1563 ;; cmyk_ext already defined
1564 ;; cmyka_ext already defined
1565 ;; pack_cmyk_hint_ext already defined
1566 ;; unpack_cmyk_hint_ext already defined
1568 ;;;; Enumerations: EXT_packed_pixels
1570 (defconstant +unsigned-byte-3-3-2+ #x8032)
1571 ;; unsigned_byte_3_3_2_ext already defined
1572 (defconstant +unsigned-short-4-4-4-4+ #x8033)
1573 ;; unsigned_short_4_4_4_4_ext already defined
1574 (defconstant +unsigned-short-5-5-5-1+ #x8034)
1575 ;; unsigned_short_5_5_5_1_ext already defined
1576 (defconstant +unsigned-int-8-8-8-8+ #x8035)
1577 ;; unsigned_int_8_8_8_8_ext already defined
1578 (defconstant +unsigned-int-10-10-10-2+ #x8036)
1579 ;; unsigned_int_10_10_10_2_ext already defined
1580 (defconstant +unsigned-byte-2-3-3-rev+ #x8362)
1581 (defconstant +unsigned-byte-2-3-3-rev-ext+ #x8362)
1582 (defconstant +unsigned-short-5-6-5+ #x8363)
1583 (defconstant +unsigned-short-5-6-5-ext+ #x8363)
1584 (defconstant +unsigned-short-5-6-5-rev+ #x8364)
1585 (defconstant +unsigned-short-5-6-5-rev-ext+ #x8364)
1586 (defconstant +unsigned-short-4-4-4-4-rev+ #x8365)
1587 (defconstant +unsigned-short-4-4-4-4-rev-ext+ #x8365)
1588 (defconstant +unsigned-short-1-5-5-5-rev+ #x8366)
1589 (defconstant +unsigned-short-1-5-5-5-rev-ext+ #x8366)
1590 (defconstant +unsigned-int-8-8-8-8-rev+ #x8367)
1591 (defconstant +unsigned-int-8-8-8-8-rev-ext+ #x8367)
1592 (defconstant +unsigned-int-2-10-10-10-rev+ #x8368)
1593 (defconstant +unsigned-int-2-10-10-10-rev-ext+ #x8368)
1595 ;;;; Enumerations: EXT_rescale_normal
1597 (defconstant +rescale-normal+ #x803A)
1598 ;; rescale_normal_ext already defined
1600 ;;;; Enumerations: EXT_texture
1602 (defconstant +alpha4-ext+ #x803B)
1603 (defconstant +alpha8-ext+ #x803C)
1604 (defconstant +alpha12-ext+ #x803D)
1605 (defconstant +alpha16-ext+ #x803E)
1606 (defconstant +luminance4-ext+ #x803F)
1607 (defconstant +luminance8-ext+ #x8040)
1608 (defconstant +luminance12-ext+ #x8041)
1609 (defconstant +luminance16-ext+ #x8042)
1610 (defconstant +luminance4-alpha4-ext+ #x8043)
1611 (defconstant +luminance6-alpha2-ext+ #x8044)
1612 (defconstant +luminance8-alpha8-ext+ #x8045)
1613 (defconstant +luminance12-alpha4-ext+ #x8046)
1614 (defconstant +luminance12-alpha12-ext+ #x8047)
1615 (defconstant +luminance16-alpha16-ext+ #x8048)
1616 (defconstant +intensity-ext+ #x8049)
1617 (defconstant +intensity4-ext+ #x804A)
1618 (defconstant +intensity8-ext+ #x804B)
1619 (defconstant +intensity12-ext+ #x804C)
1620 (defconstant +intensity16-ext+ #x804D)
1621 ;; rgb2_ext already defined
1622 (defconstant +rgb4-ext+ #x804F)
1623 (defconstant +rgb5-ext+ #x8050)
1624 (defconstant +rgb8-ext+ #x8051)
1625 (defconstant +rgb10-ext+ #x8052)
1626 (defconstant +rgb12-ext+ #x8053)
1627 (defconstant +rgb16-ext+ #x8054)
1628 (defconstant +rgba2-ext+ #x8055)
1629 (defconstant +rgba4-ext+ #x8056)
1630 (defconstant +rgb5-a1-ext+ #x8057)
1631 (defconstant +rgba8-ext+ #x8058)
1632 (defconstant +rgb10-a2-ext+ #x8059)
1633 (defconstant +rgba12-ext+ #x805A)
1634 (defconstant +rgba16-ext+ #x805B)
1635 (defconstant +texture-red-size-ext+ #x805C)
1636 (defconstant +texture-green-size-ext+ #x805D)
1637 (defconstant +texture-blue-size-ext+ #x805E)
1638 (defconstant +texture-alpha-size-ext+ #x805F)
1639 (defconstant +texture-luminance-size-ext+ #x8060)
1640 (defconstant +texture-intensity-size-ext+ #x8061)
1641 ;; replace_ext already defined
1642 (defconstant +proxy-texture-1d-ext+ #x8063)
1643 (defconstant +proxy-texture-2d-ext+ #x8064)
1644 ;; texture_too_large_ext already defined
1646 ;;;; Enumerations: SGIX_interlace
1647 ;; interlace_sgix already defined
1649 ;;;; Enumerations: SGI_color_matrix
1651 (defconstant +color-matrix+ #x80B1)
1652 ;; color_matrix_sgi already defined
1653 (defconstant +color-matrix-stack-depth+ #x80B2)
1654 ;; color_matrix_stack_depth_sgi already defined
1655 (defconstant +max-color-matrix-stack-depth+ #x80B3)
1656 ;; max_color_matrix_stack_depth_sgi already defined
1657 (defconstant +post-color-matrix-red-scale+ #x80B4)
1658 ;; post_color_matrix_red_scale_sgi already defined
1659 (defconstant +post-color-matrix-green-scale+ #x80B5)
1660 ;; post_color_matrix_green_scale_sgi already defined
1661 (defconstant +post-color-matrix-blue-scale+ #x80B6)
1662 ;; post_color_matrix_blue_scale_sgi already defined
1663 (defconstant +post-color-matrix-alpha-scale+ #x80B7)
1664 ;; post_color_matrix_alpha_scale_sgi already defined
1665 (defconstant +post-color-matrix-red-bias+ #x80B8)
1666 ;; post_color_matrix_red_bias_sgi already defined
1667 (defconstant +post-color-matrix-green-bias+ #x80B9)
1668 ;; post_color_matrix_green_bias_sgi already defined
1669 (defconstant +post-color-matrix-blue-bias+ #x80BA)
1670 ;; post_color_matrix_blue_bias_sgi already defined
1671 (defconstant +post-color-matrix-alpha-bias+ #x80BB)
1672 ;; post_color_matrix_alpha_bias_sgi already defined
1674 ;;;; Enumerations: SGI_texture_color_table
1675 ;; texture_color_table_sgi already defined
1676 ;; proxy_texture_color_table_sgi already defined
1678 ;;;; Enumerations: SGIX_texture_add_env
1679 ;; texture_env_bias_sgix already defined
1681 ;;;; Enumerations: SGIX_shadow_ambient
1682 ;; shadow_ambient_sgix already defined
1684 ;;;; Enumerations: EXT_bgra
1686 (defconstant +bgr+ #x80E0)
1687 (defconstant +bgr-ext+ #x80E0)
1688 (defconstant +bgra+ #x80E1)
1689 (defconstant +bgra-ext+ #x80E1)
1691 ;;;; Enumerations: SGIS_texture_select
1692 ;; dual_alpha4_sgis already defined
1693 ;; dual_alpha8_sgis already defined
1694 ;; dual_alpha12_sgis already defined
1695 ;; dual_alpha16_sgis already defined
1696 ;; dual_luminance4_sgis already defined
1697 ;; dual_luminance8_sgis already defined
1698 ;; dual_luminance12_sgis already defined
1699 ;; dual_luminance16_sgis already defined
1700 ;; dual_intensity4_sgis already defined
1701 ;; dual_intensity8_sgis already defined
1702 ;; dual_intensity12_sgis already defined
1703 ;; dual_intensity16_sgis already defined
1704 ;; dual_luminance_alpha4_sgis already defined
1705 ;; dual_luminance_alpha8_sgis already defined
1706 ;; quad_alpha4_sgis already defined
1707 ;; quad_alpha8_sgis already defined
1708 ;; quad_luminance4_sgis already defined
1709 ;; quad_luminance8_sgis already defined
1710 ;; quad_intensity4_sgis already defined
1711 ;; quad_intensity8_sgis already defined
1712 ;; dual_texture_select_sgis already defined
1713 ;; quad_texture_select_sgis already defined
1715 ;;;; Enumerations: SGIS_texture_border_clamp
1717 (defconstant +clamp-to-border+ #x812D)
1718 (defconstant +clamp-to-border-arb+ #x812D)
1719 ;; clamp_to_border_sgis already defined
1721 ;;;; Enumerations: SGIX_texture_multi_buffer
1722 ;; texture_multi_buffer_hint_sgix already defined
1724 ;;;; Enumerations: SGIS_texture_edge_clamp
1726 (defconstant +clamp-to-edge+ #x812F)
1727 ;; clamp_to_edge_sgis already defined
1729 ;;;; Enumerations: SGIS_texture_lod
1731 (defconstant +texture-min-lod+ #x813A)
1732 ;; texture_min_lod_sgis already defined
1733 (defconstant +texture-max-lod+ #x813B)
1734 ;; texture_max_lod_sgis already defined
1735 (defconstant +texture-base-level+ #x813C)
1736 ;; texture_base_level_sgis already defined
1737 (defconstant +texture-max-level+ #x813D)
1738 ;; texture_max_level_sgis already defined
1740 ;;;; Enumerations: SGIX_pixel_tiles
1741 ;; pixel_tile_best_alignment_sgix already defined
1742 ;; pixel_tile_cache_increment_sgix already defined
1743 ;; pixel_tile_width_sgix already defined
1744 ;; pixel_tile_height_sgix already defined
1745 ;; pixel_tile_grid_width_sgix already defined
1746 ;; pixel_tile_grid_height_sgix already defined
1747 ;; pixel_tile_grid_depth_sgix already defined
1748 ;; pixel_tile_cache_size_sgix already defined
1750 ;;;; Enumerations: HP_convolution_border_modes
1752 (defconstant +ignore-border-hp+ #x8150)
1753 (defconstant +constant-border+ #x8151)
1754 (defconstant +constant-border-hp+ #x8151)
1755 (defconstant +replicate-border+ #x8153)
1756 (defconstant +replicate-border-hp+ #x8153)
1757 (defconstant +convolution-border-color+ #x8154)
1758 (defconstant +convolution-border-color-hp+ #x8154)
1760 ;;;; Enumerations: SGIX_clipmap
1761 ;; linear_clipmap_linear_sgix already defined
1762 ;; texture_clipmap_center_sgix already defined
1763 ;; texture_clipmap_frame_sgix already defined
1764 ;; texture_clipmap_offset_sgix already defined
1765 ;; texture_clipmap_virtual_depth_sgix already defined
1766 ;; texture_clipmap_lod_offset_sgix already defined
1767 ;; texture_clipmap_depth_sgix already defined
1768 ;; max_clipmap_depth_sgix already defined
1769 ;; max_clipmap_virtual_depth_sgix already defined
1770 ;; nearest_clipmap_nearest_sgix already defined
1771 ;; nearest_clipmap_linear_sgix already defined
1772 ;; linear_clipmap_nearest_sgix already defined
1774 ;;;; Enumerations: SGIX_texture_scale_bias
1775 ;; post_texture_filter_bias_sgix already defined
1776 ;; post_texture_filter_scale_sgix already defined
1777 ;; post_texture_filter_bias_range_sgix already defined
1778 ;; post_texture_filter_scale_range_sgix already defined
1780 ;;;; Enumerations: SGIX_ir_instrument1
1781 ;; ir_instrument1_sgix already defined
1783 ;;;; Enumerations: SGIX_calligraphic_fragment
1784 ;; calligraphic_fragment_sgix already defined
1786 ;;;; Enumerations: SGIX_impact_pixel_texture
1787 ;; pixel_tex_gen_q_ceiling_sgix already defined
1788 ;; pixel_tex_gen_q_round_sgix already defined
1789 ;; pixel_tex_gen_q_floor_sgix already defined
1790 ;; pixel_tex_gen_alpha_replace_sgix already defined
1791 ;; pixel_tex_gen_alpha_no_replace_sgix already defined
1792 ;; pixel_tex_gen_alpha_ls_sgix already defined
1793 ;; pixel_tex_gen_alpha_ms_sgix already defined
1795 ;;;; Enumerations: SGIX_texture_lod_bias
1796 ;; texture_lod_bias_s_sgix already defined
1797 ;; texture_lod_bias_t_sgix already defined
1798 ;; texture_lod_bias_r_sgix already defined
1800 ;;;; Enumerations: SGIS_generate_mipmap
1802 (defconstant +generate-mipmap+ #x8191)
1803 ;; generate_mipmap_sgis already defined
1804 (defconstant +generate-mipmap-hint+ #x8192)
1805 ;; generate_mipmap_hint_sgis already defined
1806 ;; geometry_deformation_sgix already defined
1807 ;; texture_deformation_sgix already defined
1808 ;; deformations_mask_sgix already defined
1809 (defconstant +max-deformation-order-sgix+ #x8197)
1811 ;;;; Enumerations: SGIX_fog_offset
1812 ;; fog_offset_sgix already defined
1813 ;; fog_offset_value_sgix already defined
1815 ;;;; Enumerations: SGIX_shadow
1816 ;; texture_compare_sgix already defined
1817 ;; texture_compare_operator_sgix already defined
1818 ;; texture_lequal_r_sgix already defined
1819 ;; texture_gequal_r_sgix already defined
1821 ;;;; Enumerations: SGIX_depth_texture
1823 (defconstant +depth-component16+ #x81A5)
1824 ;; depth_component16_sgix already defined
1825 (defconstant +depth-component24+ #x81A6)
1826 ;; depth_component24_sgix already defined
1827 (defconstant +depth-component32+ #x81A7)
1828 ;; depth_component32_sgix already defined
1830 ;;;; Enumerations: SGIX_ycrcb
1831 ;; ycrcb_422_sgix already defined
1832 ;; ycrcb_444_sgix already defined
1834 ;;;; Enumerations: SGIS_point_line_texgen
1835 ;; eye_distance_to_point_sgis already defined
1836 ;; object_distance_to_point_sgis already defined
1837 ;; eye_distance_to_line_sgis already defined
1838 ;; object_distance_to_line_sgis already defined
1839 ;; eye_point_sgis already defined
1840 ;; object_point_sgis already defined
1841 ;; eye_line_sgis already defined
1842 ;; object_line_sgis already defined
1844 ;;;; Enumerations: EXT_separate_specular_color
1845 ;; light_model_color_control already defined
1846 (defconstant +light-model-color-control-ext+ #x81F8)
1847 ;; single_color already defined
1848 (defconstant +single-color-ext+ #x81F9)
1849 ;; separate_specular_color already defined
1850 (defconstant +separate-specular-color-ext+ #x81FA)
1852 ;;;; Enumerations: EXT_shared_texture_palette
1853 ;; shared_texture_palette_ext already defined
1855 ;;;; Enumerations: SGIX_convolution_accuracy
1856 ;; convolution_hint_sgix already defined
1858 ;;;; Enumerations: SGIX_blend_alpha_minmax
1859 ;; alpha_min_sgix already defined
1860 ;; alpha_max_sgix already defined
1861 ;; async_marker_sgix already defined
1863 ;;;; Enumerations: SGIX_async_histogram
1864 ;; async_histogram_sgix already defined
1865 ;; max_async_histogram_sgix already defined
1867 ;;;; Enumerations: SGIX_async_pixel
1868 ;; async_tex_image_sgix already defined
1869 ;; async_draw_pixels_sgix already defined
1870 ;; async_read_pixels_sgix already defined
1871 ;; max_async_tex_image_sgix already defined
1872 ;; max_async_draw_pixels_sgix already defined
1873 ;; max_async_read_pixels_sgix already defined
1875 ;;;; Enumerations: SGIX_texture_coordinate_clamp
1876 ;; texture_max_clamp_s_sgix already defined
1877 ;; texture_max_clamp_t_sgix already defined
1878 ;; texture_max_clamp_r_sgix already defined
1879 (defconstant +fog-factor-to-alpha-sgix+ #x836F)
1881 ;;;; Enumerations: SGIX_vertex_preclip
1882 ;; vertex_preclip_sgix already defined
1883 ;; vertex_preclip_hint_sgix already defined
1885 ;;;; Enumerations: EXT_texture_compression_s3tc
1887 (defconstant +compressed-rgb-s3tc-dxt1-ext+ #x83F0)
1888 (defconstant +compressed-rgba-s3tc-dxt1-ext+ #x83F1)
1889 (defconstant +compressed-rgba-s3tc-dxt3-ext+ #x83F2)
1890 (defconstant +compressed-rgba-s3tc-dxt5-ext+ #x83F3)
1892 ;;;; Enumerations: SGIX_resample
1893 ;; pack_resample_sgix already defined
1894 ;; unpack_resample_sgix already defined
1895 ;; resample_replicate_sgix already defined
1896 ;; resample_zero_fill_sgix already defined
1897 ;; resample_decimate_sgix already defined
1899 ;;;; Enumerations: SGIX_subsample
1900 ;; pack_subsample_rate_sgix already defined
1901 ;; unpack_subsample_rate_sgix already defined
1902 ;; pixel_subsample_4444_sgix already defined
1903 ;; pixel_subsample_2424_sgix already defined
1904 ;; pixel_subsample_4242_sgix already defined
1906 ;;;; Enumerations: ARB_imaging
1908 (defconstant +constant-color+ #x8001)
1909 (defconstant +one-minus-constant-color+ #x8002)
1910 (defconstant +constant-alpha+ #x8003)
1911 (defconstant +one-minus-constant-alpha+ #x8004)
1912 (defconstant +blend-color+ #x8005)
1913 (defconstant +func-add+ #x8006)
1914 (defconstant +min+ #x8007)
1915 (defconstant +max+ #x8008)
1916 (defconstant +blend-equation+ #x8009)
1917 ;; func_subtract already defined
1918 ;; func_reverse_subtract already defined
1919 (defconstant +convolution-1d+ #x8010)
1920 (defconstant +convolution-2d+ #x8011)
1921 (defconstant +separable-2d+ #x8012)
1922 (defconstant +convolution-border-mode+ #x8013)
1923 (defconstant +convolution-filter-scale+ #x8014)
1924 (defconstant +convolution-filter-bias+ #x8015)
1925 (defconstant +reduce+ #x8016)
1926 (defconstant +convolution-format+ #x8017)
1927 (defconstant +convolution-width+ #x8018)
1928 (defconstant +convolution-height+ #x8019)
1929 (defconstant +max-convolution-width+ #x801A)
1930 (defconstant +max-convolution-height+ #x801B)
1931 (defconstant +post-convolution-red-scale+ #x801C)
1932 (defconstant +post-convolution-green-scale+ #x801D)
1933 (defconstant +post-convolution-blue-scale+ #x801E)
1934 (defconstant +post-convolution-alpha-scale+ #x801F)
1935 (defconstant +post-convolution-red-bias+ #x8020)
1936 (defconstant +post-convolution-green-bias+ #x8021)
1937 (defconstant +post-convolution-blue-bias+ #x8022)
1938 (defconstant +post-convolution-alpha-bias+ #x8023)
1939 (defconstant +histogram+ #x8024)
1940 (defconstant +proxy-histogram+ #x8025)
1941 (defconstant +histogram-width+ #x8026)
1942 (defconstant +histogram-format+ #x8027)
1943 (defconstant +histogram-red-size+ #x8028)
1944 (defconstant +histogram-green-size+ #x8029)
1945 (defconstant +histogram-blue-size+ #x802A)
1946 (defconstant +histogram-alpha-size+ #x802B)
1947 (defconstant +histogram-luminance-size+ #x802C)
1948 (defconstant +histogram-sink+ #x802D)
1949 (defconstant +minmax+ #x802E)
1950 (defconstant +minmax-format+ #x802F)
1951 (defconstant +minmax-sink+ #x8030)
1952 (defconstant +table-too-large+ #x8031)
1953 ;; color_matrix already defined
1954 ;; color_matrix_stack_depth already defined
1955 ;; max_color_matrix_stack_depth already defined
1956 ;; post_color_matrix_red_scale already defined
1957 ;; post_color_matrix_green_scale already defined
1958 ;; post_color_matrix_blue_scale already defined
1959 ;; post_color_matrix_alpha_scale already defined
1960 ;; post_color_matrix_red_bias already defined
1961 ;; post_color_matrix_green_bias already defined
1962 ;; post_color_matrix_blue_bias already defined
1963 ;; post_color_matrix_alpha_bias already defined
1964 (defconstant +color-table+ #x80D0)
1965 (defconstant +post-convolution-color-table+ #x80D1)
1966 (defconstant +post-color-matrix-color-table+ #x80D2)
1967 (defconstant +proxy-color-table+ #x80D3)
1968 (defconstant +proxy-post-convolution-color-table+ #x80D4)
1969 (defconstant +proxy-post-color-matrix-color-table+ #x80D5)
1970 (defconstant +color-table-scale+ #x80D6)
1971 (defconstant +color-table-bias+ #x80D7)
1972 (defconstant +color-table-format+ #x80D8)
1973 (defconstant +color-table-width+ #x80D9)
1974 (defconstant +color-table-red-size+ #x80DA)
1975 (defconstant +color-table-green-size+ #x80DB)
1976 (defconstant +color-table-blue-size+ #x80DC)
1977 (defconstant +color-table-alpha-size+ #x80DD)
1978 (defconstant +color-table-luminance-size+ #x80DE)
1979 (defconstant +color-table-intensity-size+ #x80DF)
1980 ;; constant_border already defined
1981 ;; replicate_border already defined
1982 ;; convolution_border_color already defined
1984 ;;;; Enumerations: ARB_texture_cube_map
1986 (defconstant +normal-map-arb+ #x8511)
1987 (defconstant +reflection-map-arb+ #x8512)
1988 (defconstant +texture-cube-map-arb+ #x8513)
1989 (defconstant +texture-binding-cube-map-arb+ #x8514)
1990 (defconstant +texture-cube-map-positive-x-arb+ #x8515)
1991 (defconstant +texture-cube-map-negative-x-arb+ #x8516)
1992 (defconstant +texture-cube-map-positive-y-arb+ #x8517)
1993 (defconstant +texture-cube-map-negative-y-arb+ #x8518)
1994 (defconstant +texture-cube-map-positive-z-arb+ #x8519)
1995 (defconstant +texture-cube-map-negative-z-arb+ #x851A)
1996 (defconstant +proxy-texture-cube-map-arb+ #x851B)
1997 (defconstant +max-cube-map-texture-size-arb+ #x851C)
1999 ;;;; Enumerations: ARB_texture_border_clamp
2000 ;; clamp_to_border_arb already defined
2002 ;;;; Enumerations: ARB_texture_env_combine
2004 (defconstant +combine-arb+ #x8570)
2005 (defconstant +combine-rgb-arb+ #x8571)
2006 (defconstant +combine-alpha-arb+ #x8572)
2007 (defconstant +source0-rgb-arb+ #x8580)
2008 (defconstant +source1-rgb-arb+ #x8581)
2009 (defconstant +source2-rgb-arb+ #x8582)
2010 (defconstant +source0-alpha-arb+ #x8588)
2011 (defconstant +source1-alpha-arb+ #x8589)
2012 (defconstant +source2-alpha-arb+ #x858A)
2013 (defconstant +operand0-rgb-arb+ #x8590)
2014 (defconstant +operand1-rgb-arb+ #x8591)
2015 (defconstant +operand2-rgb-arb+ #x8592)
2016 (defconstant +operand0-alpha-arb+ #x8598)
2017 (defconstant +operand1-alpha-arb+ #x8599)
2018 (defconstant +operand2-alpha-arb+ #x859A)
2019 (defconstant +rgb-scale-arb+ #x8573)
2020 (defconstant +add-signed-arb+ #x8574)
2021 (defconstant +interpolate-arb+ #x8575)
2022 (defconstant +subtract-arb+ #x84E7)
2023 (defconstant +constant-arb+ #x8576)
2024 (defconstant +primary-color-arb+ #x8577)
2025 (defconstant +previous-arb+ #x8578)
2027 ;;;; Enumerations: ARB_texture_env_dot3
2029 (defconstant +dot3-rgb-arb+ #x86AE)
2030 (defconstant +dot3-rgba-arb+ #x86AF)
2032 ;;;; Enumerations: ARB_texture_mirrored_repeat
2034 (defconstant +mirrored-repeat-arb+ #x8370)
2036 ;;;; Enumerations: ARB_depth_texture
2038 (defconstant +depth-component16-arb+ #x81A5)
2039 (defconstant +depth-component24-arb+ #x81A6)
2040 (defconstant +depth-component32-arb+ #x81A7)
2041 (defconstant +texture-depth-size-arb+ #x884A)
2042 (defconstant +depth-texture-mode-arb+ #x884B)
2044 ;;;; Enumerations: ARB_shadow
2046 (defconstant +texture-compare-mode-arb+ #x884C)
2047 (defconstant +texture-compare-func-arb+ #x884D)
2048 (defconstant +compare-r-to-texture-arb+ #x884E)
2050 ;;;; Enumerations: ARB_shadow_ambient
2052 (defconstant +texture-compare-fail-value-arb+ #x80BF)
2054 ;;;; Enumerations: ARB_fragment_program
2056 (defconstant +fragment-program-arb+ #x8804)
2057 (defconstant +program-alu-instructions-arb+ #x8805)
2058 (defconstant +program-tex-instructions-arb+ #x8806)
2059 (defconstant +program-tex-indirections-arb+ #x8807)
2060 (defconstant +program-native-alu-instructions-arb+ #x8808)
2061 (defconstant +program-native-tex-instructions-arb+ #x8809)
2062 (defconstant +program-native-tex-indirections-arb+ #x880A)
2063 (defconstant +max-program-alu-instructions-arb+ #x880B)
2064 (defconstant +max-program-tex-instructions-arb+ #x880C)
2065 (defconstant +max-program-tex-indirections-arb+ #x880D)
2066 (defconstant +max-program-native-alu-instructions-arb+ #x880E)
2067 (defconstant +max-program-native-tex-instructions-arb+ #x880F)
2068 (defconstant +max-program-native-tex-indirections-arb+ #x8810)
2069 (defconstant +max-texture-coords-arb+ #x8871)
2070 (defconstant +max-texture-image-units-arb+ #x8872)
2072 ;;;; Enumerations: ARB_fragment_shader
2074 (defconstant +fragment-shader-arb+ #x8B30)
2075 (defconstant +max-fragment-uniform-components-arb+ #x8B49)
2076 (defconstant +fragment-shader-derivative-hint-arb+ #x8B8B)
2078 ;;;; Enumerations: ARB_shading_language_100
2080 (defconstant +shading-language-version-arb+ #x8B8C)
2082 ;;;; Enumerations: ARB_point_sprite
2084 (defconstant +point-sprite-arb+ #x8861)
2085 (defconstant +coord-replace-arb+ #x8862)
2087 ;;;; Enumerations: ARB_texture_rectangle
2089 (defconstant +texture-rectangle-arb+ #x84F5)
2090 (defconstant +texture-binding-rectangle-arb+ #x84F6)
2091 (defconstant +proxy-texture-rectangle-arb+ #x84F7)
2092 (defconstant +max-rectangle-texture-size-arb+ #x84F8)
2094 ;;;; Enumerations: ARB_half_float_pixel
2096 (defconstant +half-float-arb+ #x140B)
2098 ;;;; Enumerations: ARB_texture_float
2100 (defconstant +texture-red-type-arb+ #x8C10)
2101 (defconstant +texture-green-type-arb+ #x8C11)
2102 (defconstant +texture-blue-type-arb+ #x8C12)
2103 (defconstant +texture-alpha-type-arb+ #x8C13)
2104 (defconstant +texture-luminance-type-arb+ #x8C14)
2105 (defconstant +texture-intensity-type-arb+ #x8C15)
2106 (defconstant +texture-depth-type-arb+ #x8C16)
2107 (defconstant +unsigned-normalized-arb+ #x8C17)
2108 (defconstant +rgba32f-arb+ #x8814)
2109 (defconstant +rgb32f-arb+ #x8815)
2110 (defconstant +alpha32f-arb+ #x8816)
2111 (defconstant +intensity32f-arb+ #x8817)
2112 (defconstant +luminance32f-arb+ #x8818)
2113 (defconstant +luminance-alpha32f-arb+ #x8819)
2114 (defconstant +rgba16f-arb+ #x881A)
2115 (defconstant +rgb16f-arb+ #x881B)
2116 (defconstant +alpha16f-arb+ #x881C)
2117 (defconstant +intensity16f-arb+ #x881D)
2118 (defconstant +luminance16f-arb+ #x881E)
2119 (defconstant +luminance-alpha16f-arb+ #x881F)
2121 ;;;; Enumerations: ARB_pixel_buffer_object
2123 (defconstant +pixel-pack-buffer-arb+ #x88EB)
2124 (defconstant +pixel-unpack-buffer-arb+ #x88EC)
2125 (defconstant +pixel-pack-buffer-binding-arb+ #x88ED)
2126 (defconstant +pixel-unpack-buffer-binding-arb+ #x88EF)
2128 ;;;; Enumerations: EXT_abgr
2129 ;; abgr_ext already defined
2131 ;;;; Enumerations: EXT_texture
2132 ;; alpha4_ext already defined
2133 ;; alpha8_ext already defined
2134 ;; alpha12_ext already defined
2135 ;; alpha16_ext already defined
2136 ;; luminance4_ext already defined
2137 ;; luminance8_ext already defined
2138 ;; luminance12_ext already defined
2139 ;; luminance16_ext already defined
2140 ;; luminance4_alpha4_ext already defined
2141 ;; luminance6_alpha2_ext already defined
2142 ;; luminance8_alpha8_ext already defined
2143 ;; luminance12_alpha4_ext already defined
2144 ;; luminance12_alpha12_ext already defined
2145 ;; luminance16_alpha16_ext already defined
2146 ;; intensity_ext already defined
2147 ;; intensity4_ext already defined
2148 ;; intensity8_ext already defined
2149 ;; intensity12_ext already defined
2150 ;; intensity16_ext already defined
2151 ;; rgb2_ext already defined
2152 ;; rgb4_ext already defined
2153 ;; rgb5_ext already defined
2154 ;; rgb8_ext already defined
2155 ;; rgb10_ext already defined
2156 ;; rgb12_ext already defined
2157 ;; rgb16_ext already defined
2158 ;; rgba2_ext already defined
2159 ;; rgba4_ext already defined
2160 ;; rgb5_a1_ext already defined
2161 ;; rgba8_ext already defined
2162 ;; rgb10_a2_ext already defined
2163 ;; rgba12_ext already defined
2164 ;; rgba16_ext already defined
2165 ;; texture_red_size_ext already defined
2166 ;; texture_green_size_ext already defined
2167 ;; texture_blue_size_ext already defined
2168 ;; texture_alpha_size_ext already defined
2169 ;; texture_luminance_size_ext already defined
2170 ;; texture_intensity_size_ext already defined
2171 ;; replace_ext already defined
2172 ;; proxy_texture_1d_ext already defined
2173 ;; proxy_texture_2d_ext already defined
2174 ;; texture_too_large_ext already defined
2176 ;;;; Enumerations: SGI_color_matrix
2177 ;; color_matrix_sgi already defined
2178 ;; color_matrix_stack_depth_sgi already defined
2179 ;; max_color_matrix_stack_depth_sgi already defined
2180 ;; post_color_matrix_red_scale_sgi already defined
2181 ;; post_color_matrix_green_scale_sgi already defined
2182 ;; post_color_matrix_blue_scale_sgi already defined
2183 ;; post_color_matrix_alpha_scale_sgi already defined
2184 ;; post_color_matrix_red_bias_sgi already defined
2185 ;; post_color_matrix_green_bias_sgi already defined
2186 ;; post_color_matrix_blue_bias_sgi already defined
2187 ;; post_color_matrix_alpha_bias_sgi already defined
2189 ;;;; Enumerations: SGI_texture_color_table
2190 ;; texture_color_table_sgi already defined
2191 ;; proxy_texture_color_table_sgi already defined
2193 ;;;; Enumerations: EXT_cmyka
2194 ;; cmyk_ext already defined
2195 ;; cmyka_ext already defined
2196 ;; pack_cmyk_hint_ext already defined
2197 ;; unpack_cmyk_hint_ext already defined
2199 ;;;; Enumerations: EXT_packed_pixels
2200 ;; unsigned_byte_3_3_2_ext already defined
2201 ;; unsigned_short_4_4_4_4_ext already defined
2202 ;; unsigned_short_5_5_5_1_ext already defined
2203 ;; unsigned_int_8_8_8_8_ext already defined
2204 ;; unsigned_int_10_10_10_2_ext already defined
2206 ;;;; Enumerations: SGIS_texture_lod
2207 ;; texture_min_lod_sgis already defined
2208 ;; texture_max_lod_sgis already defined
2209 ;; texture_base_level_sgis already defined
2210 ;; texture_max_level_sgis already defined
2212 ;;;; Enumerations: EXT_rescale_normal
2213 ;; rescale_normal_ext already defined
2215 ;;;; Enumerations: SGIS_generate_mipmap
2216 ;; generate_mipmap_sgis already defined
2217 ;; generate_mipmap_hint_sgis already defined
2219 ;;;; Enumerations: SGIX_clipmap
2220 ;; linear_clipmap_linear_sgix already defined
2221 ;; texture_clipmap_center_sgix already defined
2222 ;; texture_clipmap_frame_sgix already defined
2223 ;; texture_clipmap_offset_sgix already defined
2224 ;; texture_clipmap_virtual_depth_sgix already defined
2225 ;; texture_clipmap_lod_offset_sgix already defined
2226 ;; texture_clipmap_depth_sgix already defined
2227 ;; max_clipmap_depth_sgix already defined
2228 ;; max_clipmap_virtual_depth_sgix already defined
2229 ;; nearest_clipmap_nearest_sgix already defined
2230 ;; nearest_clipmap_linear_sgix already defined
2231 ;; linear_clipmap_nearest_sgix already defined
2233 ;;;; Enumerations: SGIX_shadow
2234 ;; texture_compare_sgix already defined
2235 ;; texture_compare_operator_sgix already defined
2236 ;; texture_lequal_r_sgix already defined
2237 ;; texture_gequal_r_sgix already defined
2239 ;;;; Enumerations: SGIS_texture_edge_clamp
2240 ;; clamp_to_edge_sgis already defined
2242 ;;;; Enumerations: SGIS_texture_border_clamp
2243 ;; clamp_to_border_sgis already defined
2245 ;;;; Enumerations: EXT_blend_subtract
2246 ;; func_subtract_ext already defined
2247 ;; func_reverse_subtract_ext already defined
2249 ;;;; Enumerations: SGIX_interlace
2250 ;; interlace_sgix already defined
2252 ;;;; Enumerations: SGIX_pixel_tiles
2253 ;; pixel_tile_best_alignment_sgix already defined
2254 ;; pixel_tile_cache_increment_sgix already defined
2255 ;; pixel_tile_width_sgix already defined
2256 ;; pixel_tile_height_sgix already defined
2257 ;; pixel_tile_grid_width_sgix already defined
2258 ;; pixel_tile_grid_height_sgix already defined
2259 ;; pixel_tile_grid_depth_sgix already defined
2260 ;; pixel_tile_cache_size_sgix already defined
2262 ;;;; Enumerations: SGIS_texture_select
2263 ;; dual_alpha4_sgis already defined
2264 ;; dual_alpha8_sgis already defined
2265 ;; dual_alpha12_sgis already defined
2266 ;; dual_alpha16_sgis already defined
2267 ;; dual_luminance4_sgis already defined
2268 ;; dual_luminance8_sgis already defined
2269 ;; dual_luminance12_sgis already defined
2270 ;; dual_luminance16_sgis already defined
2271 ;; dual_intensity4_sgis already defined
2272 ;; dual_intensity8_sgis already defined
2273 ;; dual_intensity12_sgis already defined
2274 ;; dual_intensity16_sgis already defined
2275 ;; dual_luminance_alpha4_sgis already defined
2276 ;; dual_luminance_alpha8_sgis already defined
2277 ;; quad_alpha4_sgis already defined
2278 ;; quad_alpha8_sgis already defined
2279 ;; quad_luminance4_sgis already defined
2280 ;; quad_luminance8_sgis already defined
2281 ;; quad_intensity4_sgis already defined
2282 ;; quad_intensity8_sgis already defined
2283 ;; dual_texture_select_sgis already defined
2284 ;; quad_texture_select_sgis already defined
2286 ;;;; Enumerations: SGIX_texture_multi_buffer
2287 ;; texture_multi_buffer_hint_sgix already defined
2289 ;;;; Enumerations: SGIX_texture_scale_bias
2290 ;; post_texture_filter_bias_sgix already defined
2291 ;; post_texture_filter_scale_sgix already defined
2292 ;; post_texture_filter_bias_range_sgix already defined
2293 ;; post_texture_filter_scale_range_sgix already defined
2295 ;;;; Enumerations: FfdMaskSGIX
2296 ;; texture_deformation_bit_sgix already defined
2297 ;; geometry_deformation_bit_sgix already defined
2299 ;;;; Enumerations: SGIX_depth_texture
2300 ;; depth_component16_sgix already defined
2301 ;; depth_component24_sgix already defined
2302 ;; depth_component32_sgix already defined
2304 ;;;; Enumerations: SGIX_fog_offset
2305 ;; fog_offset_sgix already defined
2306 ;; fog_offset_value_sgix already defined
2308 ;;;; Enumerations: HP_convolution_border_modes
2309 ;; ignore_border_hp already defined
2310 ;; constant_border_hp already defined
2311 ;; replicate_border_hp already defined
2312 ;; convolution_border_color_hp already defined
2314 ;;;; Enumerations: SGIX_texture_add_env
2315 ;; texture_env_bias_sgix already defined
2317 ;;;; Enumerations: PGI_vertex_hints
2319 (defconstant +vertex-data-hint-pgi+ #x1A22A)
2320 (defconstant +vertex-consistent-hint-pgi+ #x1A22B)
2321 (defconstant +material-side-hint-pgi+ #x1A22C)
2322 (defconstant +max-vertex-hint-pgi+ #x1A22D)
2323 (defconstant +color3-bit-pgi+ #x10000)
2324 (defconstant +color4-bit-pgi+ #x20000)
2325 (defconstant +edgeflag-bit-pgi+ #x40000)
2326 (defconstant +index-bit-pgi+ #x80000)
2327 (defconstant +mat-ambient-bit-pgi+ #x100000)
2328 (defconstant +mat-ambient-and-diffuse-bit-pgi+ #x200000)
2329 (defconstant +mat-diffuse-bit-pgi+ #x400000)
2330 (defconstant +mat-emission-bit-pgi+ #x800000)
2331 (defconstant +mat-color-indexes-bit-pgi+ #x1000000)
2332 (defconstant +mat-shininess-bit-pgi+ #x2000000)
2333 (defconstant +mat-specular-bit-pgi+ #x4000000)
2334 (defconstant +normal-bit-pgi+ #x8000000)
2335 (defconstant +texcoord1-bit-pgi+ #x10000000)
2336 (defconstant +texcoord2-bit-pgi+ #x20000000)
2337 (defconstant +texcoord3-bit-pgi+ #x40000000)
2338 (defconstant +texcoord4-bit-pgi+ #x80000000)
2339 (defconstant +vertex23-bit-pgi+ #x4)
2340 (defconstant +vertex4-bit-pgi+ #x8)
2342 ;;;; Enumerations: EXT_clip_volume_hint
2344 (defconstant +clip-volume-clipping-hint-ext+ #x80F0)
2346 ;;;; Enumerations: SGIX_ir_instrument1
2347 ;; ir_instrument1_sgix already defined
2349 ;;;; Enumerations: SGIX_calligraphic_fragment
2350 ;; calligraphic_fragment_sgix already defined
2352 ;;;; Enumerations: SGIX_texture_lod_bias
2353 ;; texture_lod_bias_s_sgix already defined
2354 ;; texture_lod_bias_t_sgix already defined
2355 ;; texture_lod_bias_r_sgix already defined
2357 ;;;; Enumerations: SGIX_shadow_ambient
2358 ;; shadow_ambient_sgix already defined
2360 ;;;; Enumerations: EXT_index_array_formats
2362 (defconstant +iui-v2f-ext+ #x81AD)
2363 (defconstant +iui-v3f-ext+ #x81AE)
2364 (defconstant +iui-n3f-v2f-ext+ #x81AF)
2365 (defconstant +iui-n3f-v3f-ext+ #x81B0)
2366 (defconstant +t2f-iui-v2f-ext+ #x81B1)
2367 (defconstant +t2f-iui-v3f-ext+ #x81B2)
2368 (defconstant +t2f-iui-n3f-v2f-ext+ #x81B3)
2369 (defconstant +t2f-iui-n3f-v3f-ext+ #x81B4)
2371 ;;;; Enumerations: SGIX_ycrcb
2372 ;; ycrcb_422_sgix already defined
2373 ;; ycrcb_444_sgix already defined
2375 ;;;; Enumerations: IBM_rasterpos_clip
2377 (defconstant +raster-position-unclipped-ibm+ #x19262)
2379 ;;;; Enumerations: HP_texture_lighting
2381 (defconstant +texture-lighting-mode-hp+ #x8167)
2382 (defconstant +texture-post-specular-hp+ #x8168)
2383 (defconstant +texture-pre-specular-hp+ #x8169)
2385 ;;;; Enumerations: WIN_phong_shading
2387 (defconstant +phong-win+ #x80EA)
2388 (defconstant +phong-hint-win+ #x80EB)
2390 ;;;; Enumerations: WIN_specular_fog
2392 (defconstant +fog-specular-texture-win+ #x80EC)
2394 ;;;; Enumerations: SGIX_blend_alpha_minmax
2395 ;; alpha_min_sgix already defined
2396 ;; alpha_max_sgix already defined
2398 ;;;; Enumerations: SGIX_impact_pixel_texture
2399 ;; pixel_tex_gen_q_ceiling_sgix already defined
2400 ;; pixel_tex_gen_q_round_sgix already defined
2401 ;; pixel_tex_gen_q_floor_sgix already defined
2402 ;; pixel_tex_gen_alpha_replace_sgix already defined
2403 ;; pixel_tex_gen_alpha_no_replace_sgix already defined
2404 ;; pixel_tex_gen_alpha_ls_sgix already defined
2405 ;; pixel_tex_gen_alpha_ms_sgix already defined
2407 ;;;; Enumerations: EXT_bgra
2408 ;; bgr_ext already defined
2409 ;; bgra_ext already defined
2411 ;;;; Enumerations: SGIX_async_pixel
2412 ;; async_tex_image_sgix already defined
2413 ;; async_draw_pixels_sgix already defined
2414 ;; async_read_pixels_sgix already defined
2415 ;; max_async_tex_image_sgix already defined
2416 ;; max_async_draw_pixels_sgix already defined
2417 ;; max_async_read_pixels_sgix already defined
2419 ;;;; Enumerations: SGIX_async_histogram
2420 ;; async_histogram_sgix already defined
2421 ;; max_async_histogram_sgix already defined
2423 ;;;; Enumerations: HP_occlusion_test
2425 (defconstant +occlusion-test-hp+ #x8165)
2426 (defconstant +occlusion-test-result-hp+ #x8166)
2428 ;;;; Enumerations: EXT_shared_texture_palette
2429 ;; shared_texture_palette_ext already defined
2431 ;;;; Enumerations: EXT_separate_specular_color
2432 ;; light_model_color_control_ext already defined
2433 ;; single_color_ext already defined
2434 ;; separate_specular_color_ext already defined
2436 ;;;; Enumerations: REND_screen_coordinates
2438 (defconstant +screen-coordinates-rend+ #x8490)
2439 (defconstant +inverted-screen-w-rend+ #x8491)
2441 ;;;; Enumerations: EXT_texture_env_combine
2443 (defconstant +combine-ext+ #x8570)
2444 (defconstant +combine-rgb-ext+ #x8571)
2445 (defconstant +combine-alpha-ext+ #x8572)
2446 (defconstant +rgb-scale-ext+ #x8573)
2447 (defconstant +add-signed-ext+ #x8574)
2448 (defconstant +interpolate-ext+ #x8575)
2449 (defconstant +constant-ext+ #x8576)
2450 (defconstant +primary-color-ext+ #x8577)
2451 (defconstant +previous-ext+ #x8578)
2452 (defconstant +source0-rgb-ext+ #x8580)
2453 (defconstant +source1-rgb-ext+ #x8581)
2454 (defconstant +source2-rgb-ext+ #x8582)
2455 (defconstant +source0-alpha-ext+ #x8588)
2456 (defconstant +source1-alpha-ext+ #x8589)
2457 (defconstant +source2-alpha-ext+ #x858A)
2458 (defconstant +operand0-rgb-ext+ #x8590)
2459 (defconstant +operand1-rgb-ext+ #x8591)
2460 (defconstant +operand2-rgb-ext+ #x8592)
2461 (defconstant +operand0-alpha-ext+ #x8598)
2462 (defconstant +operand1-alpha-ext+ #x8599)
2463 (defconstant +operand2-alpha-ext+ #x859A)
2465 ;;;; Enumerations: APPLE_specular_vector
2467 (defconstant +light-model-specular-vector-apple+ #x85B0)
2469 ;;;; Enumerations: APPLE_transform_hint
2471 (defconstant +transform-hint-apple+ #x85B1)
2473 ;;;; Enumerations: SGIX_fog_scale
2475 (defconstant +fog-scale-sgix+ #x81FC)
2476 (defconstant +fog-scale-value-sgix+ #x81FD)
2478 ;;;; Enumerations: INGR_color_clamp
2480 (defconstant +red-min-clamp-ingr+ #x8560)
2481 (defconstant +green-min-clamp-ingr+ #x8561)
2482 (defconstant +blue-min-clamp-ingr+ #x8562)
2483 (defconstant +alpha-min-clamp-ingr+ #x8563)
2484 (defconstant +red-max-clamp-ingr+ #x8564)
2485 (defconstant +green-max-clamp-ingr+ #x8565)
2486 (defconstant +blue-max-clamp-ingr+ #x8566)
2487 (defconstant +alpha-max-clamp-ingr+ #x8567)
2489 ;;;; Enumerations: INGR_interlace_read
2491 (defconstant +interlace-read-ingr+ #x8568)
2493 ;;;; Enumerations: EXT_stencil_wrap
2495 (defconstant +incr-wrap-ext+ #x8507)
2496 (defconstant +decr-wrap-ext+ #x8508)
2498 ;;;; Enumerations: EXT_422_pixels
2500 (defconstant +422-ext+ #x80CC)
2501 (defconstant +422-rev-ext+ #x80CD)
2502 (defconstant +422-average-ext+ #x80CE)
2503 (defconstant +422-rev-average-ext+ #x80CF)
2505 ;;;; Enumerations: NV_texgen_reflection
2507 (defconstant +normal-map-nv+ #x8511)
2508 (defconstant +reflection-map-nv+ #x8512)
2510 ;;;; Enumerations: EXT_texture_cube_map
2512 (defconstant +normal-map-ext+ #x8511)
2513 (defconstant +reflection-map-ext+ #x8512)
2514 (defconstant +texture-cube-map-ext+ #x8513)
2515 (defconstant +texture-binding-cube-map-ext+ #x8514)
2516 (defconstant +texture-cube-map-positive-x-ext+ #x8515)
2517 (defconstant +texture-cube-map-negative-x-ext+ #x8516)
2518 (defconstant +texture-cube-map-positive-y-ext+ #x8517)
2519 (defconstant +texture-cube-map-negative-y-ext+ #x8518)
2520 (defconstant +texture-cube-map-positive-z-ext+ #x8519)
2521 (defconstant +texture-cube-map-negative-z-ext+ #x851A)
2522 (defconstant +proxy-texture-cube-map-ext+ #x851B)
2523 (defconstant +max-cube-map-texture-size-ext+ #x851C)
2525 ;;;; Enumerations: SUN_convolution_border_modes
2527 (defconstant +wrap-border-sun+ #x81D4)
2529 ;;;; Enumerations: EXT_texture_lod_bias
2531 (defconstant +max-texture-lod-bias-ext+ #x84FD)
2532 (defconstant +texture-filter-control-ext+ #x8500)
2533 (defconstant +texture-lod-bias-ext+ #x8501)
2535 ;;;; Enumerations: EXT_texture_filter_anisotropic
2537 (defconstant +texture-max-anisotropy-ext+ #x84FE)
2538 (defconstant +max-texture-max-anisotropy-ext+ #x84FF)
2540 ;;;; Enumerations: NV_light_max_exponent
2542 (defconstant +max-shininess-nv+ #x8504)
2543 (defconstant +max-spot-exponent-nv+ #x8505)
2545 ;;;; Enumerations: NV_fog_distance
2547 (defconstant +fog-distance-mode-nv+ #x855A)
2548 (defconstant +eye-radial-nv+ #x855B)
2549 (defconstant +eye-plane-absolute-nv+ #x855C)
2550 ;; eye_plane already defined
2552 ;;;; Enumerations: NV_texgen_emboss
2554 (defconstant +emboss-light-nv+ #x855D)
2555 (defconstant +emboss-constant-nv+ #x855E)
2556 (defconstant +emboss-map-nv+ #x855F)
2558 ;;;; Enumerations: NV_texture_env_combine4
2560 (defconstant +combine4-nv+ #x8503)
2561 (defconstant +source3-rgb-nv+ #x8583)
2562 (defconstant +source3-alpha-nv+ #x858B)
2563 (defconstant +operand3-rgb-nv+ #x8593)
2564 (defconstant +operand3-alpha-nv+ #x859B)
2566 ;;;; Enumerations: EXT_texture_compression_s3tc
2567 ;; compressed_rgb_s3tc_dxt1_ext already defined
2568 ;; compressed_rgba_s3tc_dxt1_ext already defined
2569 ;; compressed_rgba_s3tc_dxt3_ext already defined
2570 ;; compressed_rgba_s3tc_dxt5_ext already defined
2572 ;;;; Enumerations: IBM_cull_vertex
2574 (defconstant +cull-vertex-ibm+ #x1928A)
2576 ;;;; Enumerations: SGIX_subsample
2577 ;; pack_subsample_rate_sgix already defined
2578 ;; unpack_subsample_rate_sgix already defined
2579 ;; pixel_subsample_4444_sgix already defined
2580 ;; pixel_subsample_2424_sgix already defined
2581 ;; pixel_subsample_4242_sgix already defined
2583 ;;;; Enumerations: SGIX_ycrcb_subsample
2584 ;; pack_subsample_rate_sgix already defined
2585 ;; unpack_subsample_rate_sgix already defined
2586 ;; pixel_subsample_4444_sgix already defined
2587 ;; pixel_subsample_2424_sgix already defined
2588 ;; pixel_subsample_4242_sgix already defined
2590 ;;;; Enumerations: SGIX_ycrcba
2592 (defconstant +ycrcb-sgix+ #x8318)
2593 (defconstant +ycrcba-sgix+ #x8319)
2595 ;;;; Enumerations: SGI_depth_pass_instrument
2597 (defconstant +depth-pass-instrument-sgix+ #x8310)
2598 (defconstant +depth-pass-instrument-counters-sgix+ #x8311)
2599 (defconstant +depth-pass-instrument-max-sgix+ #x8312)
2601 ;;;; Enumerations: 3DFX_texture_compression_FXT1
2603 (defconstant +compressed-rgb-fxt1-3dfx+ #x86B0)
2604 (defconstant +compressed-rgba-fxt1-3dfx+ #x86B1)
2606 ;;;; Enumerations: 3DFX_multisample
2608 (defconstant +multisample-3dfx+ #x86B2)
2609 (defconstant +sample-buffers-3dfx+ #x86B3)
2610 (defconstant +samples-3dfx+ #x86B4)
2611 (defconstant +multisample-bit-3dfx+ #x20000000)
2613 ;;;; Enumerations: SGIX_vertex_preclip
2614 ;; vertex_preclip_sgix already defined
2615 ;; vertex_preclip_hint_sgix already defined
2617 ;;;; Enumerations: SGIX_convolution_accuracy
2618 ;; convolution_hint_sgix already defined
2620 ;;;; Enumerations: SGIX_resample
2621 ;; pack_resample_sgix already defined
2622 ;; unpack_resample_sgix already defined
2623 ;; resample_replicate_sgix already defined
2624 ;; resample_zero_fill_sgix already defined
2625 ;; resample_decimate_sgix already defined
2627 ;;;; Enumerations: SGIS_point_line_texgen
2628 ;; eye_distance_to_point_sgis already defined
2629 ;; object_distance_to_point_sgis already defined
2630 ;; eye_distance_to_line_sgis already defined
2631 ;; object_distance_to_line_sgis already defined
2632 ;; eye_point_sgis already defined
2633 ;; object_point_sgis already defined
2634 ;; eye_line_sgis already defined
2635 ;; object_line_sgis already defined
2637 ;;;; Enumerations: EXT_texture_env_dot3
2639 (defconstant +dot3-rgb-ext+ #x8740)
2640 (defconstant +dot3-rgba-ext+ #x8741)
2642 ;;;; Enumerations: ATI_texture_mirror_once
2644 (defconstant +mirror-clamp-ati+ #x8742)
2645 (defconstant +mirror-clamp-to-edge-ati+ #x8743)
2647 ;;;; Enumerations: IBM_texture_mirrored_repeat
2649 (defconstant +mirrored-repeat-ibm+ #x8370)
2651 ;;;; Enumerations: NV_packed_depth_stencil
2653 (defconstant +depth-stencil-nv+ #x84F9)
2654 (defconstant +unsigned-int-24-8-nv+ #x84FA)
2656 ;;;; Enumerations: NV_texture_rectangle
2658 (defconstant +texture-rectangle-nv+ #x84F5)
2659 (defconstant +texture-binding-rectangle-nv+ #x84F6)
2660 (defconstant +proxy-texture-rectangle-nv+ #x84F7)
2661 (defconstant +max-rectangle-texture-size-nv+ #x84F8)
2663 ;;;; Enumerations: NV_texture_shader
2665 (defconstant +offset-texture-rectangle-nv+ #x864C)
2666 (defconstant +offset-texture-rectangle-scale-nv+ #x864D)
2667 (defconstant +dot-product-texture-rectangle-nv+ #x864E)
2668 (defconstant +rgba-unsigned-dot-product-mapping-nv+ #x86D9)
2669 (defconstant +unsigned-int-s8-s8-8-8-nv+ #x86DA)
2670 (defconstant +unsigned-int-8-8-s8-s8-rev-nv+ #x86DB)
2671 (defconstant +dsdt-mag-intensity-nv+ #x86DC)
2672 (defconstant +shader-consistent-nv+ #x86DD)
2673 (defconstant +texture-shader-nv+ #x86DE)
2674 (defconstant +shader-operation-nv+ #x86DF)
2675 (defconstant +cull-modes-nv+ #x86E0)
2676 (defconstant +offset-texture-matrix-nv+ #x86E1)
2677 (defconstant +offset-texture-scale-nv+ #x86E2)
2678 (defconstant +offset-texture-bias-nv+ #x86E3)
2679 (defconstant +offset-texture-2d-matrix-nv+ #x86E1)
2680 (defconstant +offset-texture-2d-scale-nv+ #x86E2)
2681 (defconstant +offset-texture-2d-bias-nv+ #x86E3)
2682 (defconstant +previous-texture-input-nv+ #x86E4)
2683 (defconstant +const-eye-nv+ #x86E5)
2684 (defconstant +pass-through-nv+ #x86E6)
2685 (defconstant +cull-fragment-nv+ #x86E7)
2686 (defconstant +offset-texture-2d-nv+ #x86E8)
2687 (defconstant +dependent-ar-texture-2d-nv+ #x86E9)
2688 (defconstant +dependent-gb-texture-2d-nv+ #x86EA)
2689 (defconstant +dot-product-nv+ #x86EC)
2690 (defconstant +dot-product-depth-replace-nv+ #x86ED)
2691 (defconstant +dot-product-texture-2d-nv+ #x86EE)
2692 (defconstant +dot-product-texture-cube-map-nv+ #x86F0)
2693 (defconstant +dot-product-diffuse-cube-map-nv+ #x86F1)
2694 (defconstant +dot-product-reflect-cube-map-nv+ #x86F2)
2695 (defconstant +dot-product-const-eye-reflect-cube-map-nv+ #x86F3)
2696 (defconstant +hilo-nv+ #x86F4)
2697 (defconstant +dsdt-nv+ #x86F5)
2698 (defconstant +dsdt-mag-nv+ #x86F6)
2699 (defconstant +dsdt-mag-vib-nv+ #x86F7)
2700 (defconstant +hilo16-nv+ #x86F8)
2701 (defconstant +signed-hilo-nv+ #x86F9)
2702 (defconstant +signed-hilo16-nv+ #x86FA)
2703 (defconstant +signed-rgba-nv+ #x86FB)
2704 (defconstant +signed-rgba8-nv+ #x86FC)
2705 (defconstant +signed-rgb-nv+ #x86FE)
2706 (defconstant +signed-rgb8-nv+ #x86FF)
2707 (defconstant +signed-luminance-nv+ #x8701)
2708 (defconstant +signed-luminance8-nv+ #x8702)
2709 (defconstant +signed-luminance-alpha-nv+ #x8703)
2710 (defconstant +signed-luminance8-alpha8-nv+ #x8704)
2711 (defconstant +signed-alpha-nv+ #x8705)
2712 (defconstant +signed-alpha8-nv+ #x8706)
2713 (defconstant +signed-intensity-nv+ #x8707)
2714 (defconstant +signed-intensity8-nv+ #x8708)
2715 (defconstant +dsdt8-nv+ #x8709)
2716 (defconstant +dsdt8-mag8-nv+ #x870A)
2717 (defconstant +dsdt8-mag8-intensity8-nv+ #x870B)
2718 (defconstant +signed-rgb-unsigned-alpha-nv+ #x870C)
2719 (defconstant +signed-rgb8-unsigned-alpha8-nv+ #x870D)
2720 (defconstant +hi-scale-nv+ #x870E)
2721 (defconstant +lo-scale-nv+ #x870F)
2722 (defconstant +ds-scale-nv+ #x8710)
2723 (defconstant +dt-scale-nv+ #x8711)
2724 (defconstant +magnitude-scale-nv+ #x8712)
2725 (defconstant +vibrance-scale-nv+ #x8713)
2726 (defconstant +hi-bias-nv+ #x8714)
2727 (defconstant +lo-bias-nv+ #x8715)
2728 (defconstant +ds-bias-nv+ #x8716)
2729 (defconstant +dt-bias-nv+ #x8717)
2730 (defconstant +magnitude-bias-nv+ #x8718)
2731 (defconstant +vibrance-bias-nv+ #x8719)
2732 (defconstant +texture-border-values-nv+ #x871A)
2733 (defconstant +texture-hi-size-nv+ #x871B)
2734 (defconstant +texture-lo-size-nv+ #x871C)
2735 (defconstant +texture-ds-size-nv+ #x871D)
2736 (defconstant +texture-dt-size-nv+ #x871E)
2737 (defconstant +texture-mag-size-nv+ #x871F)
2739 ;;;; Enumerations: NV_texture_shader2
2741 (defconstant +dot-product-texture-3d-nv+ #x86EF)
2743 ;;;; Enumerations: NV_vertex_array_range2
2745 (defconstant +vertex-array-range-without-flush-nv+ #x8533)
2747 ;;;; Enumerations: SGIX_texture_coordinate_clamp
2748 ;; texture_max_clamp_s_sgix already defined
2749 ;; texture_max_clamp_t_sgix already defined
2750 ;; texture_max_clamp_r_sgix already defined
2752 ;;;; Enumerations: SGIX_scalebias_hint
2754 (defconstant +scalebias-hint-sgix+ #x8322)
2756 ;;;; Enumerations: OML_interlace
2758 (defconstant +interlace-oml+ #x8980)
2759 (defconstant +interlace-read-oml+ #x8981)
2761 ;;;; Enumerations: OML_subsample
2763 (defconstant +format-subsample-24-24-oml+ #x8982)
2764 (defconstant +format-subsample-244-244-oml+ #x8983)
2766 ;;;; Enumerations: OML_resample
2768 (defconstant +pack-resample-oml+ #x8984)
2769 (defconstant +unpack-resample-oml+ #x8985)
2770 (defconstant +resample-replicate-oml+ #x8986)
2771 (defconstant +resample-zero-fill-oml+ #x8987)
2772 (defconstant +resample-average-oml+ #x8988)
2773 (defconstant +resample-decimate-oml+ #x8989)
2775 ;;;; Enumerations: NV_copy_depth_to_color
2777 (defconstant +depth-stencil-to-rgba-nv+ #x886E)
2778 (defconstant +depth-stencil-to-bgra-nv+ #x886F)
2780 ;;;; Enumerations: SUN_slice_accum
2782 (defconstant +slice-accum-sun+ #x85CC)
2784 ;;;; Enumerations: NV_multisample_filter_hint
2786 (defconstant +multisample-filter-hint-nv+ #x8534)
2788 ;;;; Enumerations: NV_depth_clamp
2790 (defconstant +depth-clamp-nv+ #x864F)
2792 ;;;; Enumerations: NV_texture_shader3
2794 (defconstant +offset-projective-texture-2d-nv+ #x8850)
2795 (defconstant +offset-projective-texture-2d-scale-nv+ #x8851)
2796 (defconstant +offset-projective-texture-rectangle-nv+ #x8852)
2797 (defconstant +offset-projective-texture-rectangle-scale-nv+ #x8853)
2798 (defconstant +offset-hilo-texture-2d-nv+ #x8854)
2799 (defconstant +offset-hilo-texture-rectangle-nv+ #x8855)
2800 (defconstant +offset-hilo-projective-texture-2d-nv+ #x8856)
2801 (defconstant +offset-hilo-projective-texture-rectangle-nv+ #x8857)
2802 (defconstant +dependent-hilo-texture-2d-nv+ #x8858)
2803 (defconstant +dependent-rgb-texture-3d-nv+ #x8859)
2804 (defconstant +dependent-rgb-texture-cube-map-nv+ #x885A)
2805 (defconstant +dot-product-pass-through-nv+ #x885B)
2806 (defconstant +dot-product-texture-1d-nv+ #x885C)
2807 (defconstant +dot-product-affine-depth-replace-nv+ #x885D)
2808 (defconstant +hilo8-nv+ #x885E)
2809 (defconstant +signed-hilo8-nv+ #x885F)
2810 (defconstant +force-blue-to-one-nv+ #x8860)
2812 ;;;; Enumerations: ATI_text_fragment_shader
2814 (defconstant +text-fragment-shader-ati+ #x8200)
2816 ;;;; Enumerations: APPLE_client_storage
2818 (defconstant +unpack-client-storage-apple+ #x85B2)
2820 ;;;; Enumerations: APPLE_ycbcr_422
2822 (defconstant +ycbcr-422-apple+ #x85B9)
2823 (defconstant +unsigned-short-8-8-apple+ #x85BA)
2824 (defconstant +unsigned-short-8-8-rev-apple+ #x85BB)
2826 ;;;; Enumerations: S3_s3tc
2828 (defconstant +rgb-s3tc+ #x83A0)
2829 (defconstant +rgb4-s3tc+ #x83A1)
2830 (defconstant +rgba-s3tc+ #x83A2)
2831 (defconstant +rgba4-s3tc+ #x83A3)
2833 ;;;; Enumerations: ATI_pixel_format_float
2835 (defconstant +type-rgba-float-ati+ #x8820)
2836 (defconstant +color-clear-unclamped-value-ati+ #x8835)
2838 ;;;; Enumerations: ATI_texture_env_combine3
2840 (defconstant +modulate-add-ati+ #x8744)
2841 (defconstant +modulate-signed-add-ati+ #x8745)
2842 (defconstant +modulate-subtract-ati+ #x8746)
2844 ;;;; Enumerations: ATI_texture_float
2846 (defconstant +rgba-float32-ati+ #x8814)
2847 (defconstant +rgb-float32-ati+ #x8815)
2848 (defconstant +alpha-float32-ati+ #x8816)
2849 (defconstant +intensity-float32-ati+ #x8817)
2850 (defconstant +luminance-float32-ati+ #x8818)
2851 (defconstant +luminance-alpha-float32-ati+ #x8819)
2852 (defconstant +rgba-float16-ati+ #x881A)
2853 (defconstant +rgb-float16-ati+ #x881B)
2854 (defconstant +alpha-float16-ati+ #x881C)
2855 (defconstant +intensity-float16-ati+ #x881D)
2856 (defconstant +luminance-float16-ati+ #x881E)
2857 (defconstant +luminance-alpha-float16-ati+ #x881F)
2859 ;;;; Enumerations: NV_float_buffer
2861 (defconstant +float-r-nv+ #x8880)
2862 (defconstant +float-rg-nv+ #x8881)
2863 (defconstant +float-rgb-nv+ #x8882)
2864 (defconstant +float-rgba-nv+ #x8883)
2865 (defconstant +float-r16-nv+ #x8884)
2866 (defconstant +float-r32-nv+ #x8885)
2867 (defconstant +float-rg16-nv+ #x8886)
2868 (defconstant +float-rg32-nv+ #x8887)
2869 (defconstant +float-rgb16-nv+ #x8888)
2870 (defconstant +float-rgb32-nv+ #x8889)
2871 (defconstant +float-rgba16-nv+ #x888A)
2872 (defconstant +float-rgba32-nv+ #x888B)
2873 (defconstant +texture-float-components-nv+ #x888C)
2874 (defconstant +float-clear-color-value-nv+ #x888D)
2875 (defconstant +float-rgba-mode-nv+ #x888E)
2877 ;;;; Enumerations: NV_texture_expand_normal
2879 (defconstant +texture-unsigned-remap-mode-nv+ #x888F)
2881 ;;;; Enumerations: OES_read_format
2883 (defconstant +implementation-color-read-type-oes+ #x8B9A)
2884 (defconstant +implementation-color-read-format-oes+ #x8B9B)
2886 ;;;; Enumerations: EXT_texture_mirror_clamp
2888 (defconstant +mirror-clamp-ext+ #x8742)
2889 (defconstant +mirror-clamp-to-edge-ext+ #x8743)
2890 (defconstant +mirror-clamp-to-border-ext+ #x8912)
2892 ;;;; Enumerations: MESA_pack_invert
2894 (defconstant +pack-invert-mesa+ #x8758)
2896 ;;;; Enumerations: MESA_ycbcr_texture
2898 (defconstant +unsigned-short-8-8-mesa+ #x85BA)
2899 (defconstant +unsigned-short-8-8-rev-mesa+ #x85BB)
2900 (defconstant +ycbcr-mesa+ #x8757)
2902 ;;;; Enumerations: EXT_pixel_buffer_object
2904 (defconstant +pixel-pack-buffer-ext+ #x88EB)
2905 (defconstant +pixel-unpack-buffer-ext+ #x88EC)
2906 (defconstant +pixel-pack-buffer-binding-ext+ #x88ED)
2907 (defconstant +pixel-unpack-buffer-binding-ext+ #x88EF)
2909 ;;;; Enumerations: NV_fragment_program2
2911 (defconstant +max-program-exec-instructions-nv+ #x88F4)
2912 (defconstant +max-program-call-depth-nv+ #x88F5)
2913 (defconstant +max-program-if-depth-nv+ #x88F6)
2914 (defconstant +max-program-loop-depth-nv+ #x88F7)
2915 (defconstant +max-program-loop-count-nv+ #x88F8)
2917 ;;;; Enumerations: NV_vertex_program2_option
2918 ;; max_program_exec_instructions_nv already defined
2919 ;; max_program_call_depth_nv already defined
2921 ;;;; Enumerations: NV_vertex_program3
2923 (defconstant +max-vertex-texture-image-units-arb+ #x8B4C)
2925 ;;;; Enumerations: EXT_packed_depth_stencil
2927 (defconstant +depth-stencil-ext+ #x84F9)
2928 (defconstant +unsigned-int-24-8-ext+ #x84FA)
2929 (defconstant +depth24-stencil8-ext+ #x88F0)
2930 (defconstant +texture-stencil-size-ext+ #x88F1)
2932 ;;;; Enumerations: EXT_texture_sRGB
2934 (defconstant +srgb-ext+ #x8C40)
2935 (defconstant +srgb8-ext+ #x8C41)
2936 (defconstant +srgb-alpha-ext+ #x8C42)
2937 (defconstant +srgb8-alpha8-ext+ #x8C43)
2938 (defconstant +sluminance-alpha-ext+ #x8C44)
2939 (defconstant +sluminance8-alpha8-ext+ #x8C45)
2940 (defconstant +sluminance-ext+ #x8C46)
2941 (defconstant +sluminance8-ext+ #x8C47)
2942 (defconstant +compressed-srgb-ext+ #x8C48)
2943 (defconstant +compressed-srgb-alpha-ext+ #x8C49)
2944 (defconstant +compressed-sluminance-ext+ #x8C4A)
2945 (defconstant +compressed-sluminance-alpha-ext+ #x8C4B)
2946 (defconstant +compressed-srgb-s3tc-dxt1-ext+ #x8C4C)
2947 (defconstant +compressed-srgb-alpha-s3tc-dxt1-ext+ #x8C4D)
2948 (defconstant +compressed-srgb-alpha-s3tc-dxt3-ext+ #x8C4E)
2949 (defconstant +compressed-srgb-alpha-s3tc-dxt5-ext+ #x8C4F)
2951 ;;;; Enumerations: MESAX_texture_stack
2953 (defconstant +texture-1d-stack-mesax+ #x8759)
2954 (defconstant +texture-2d-stack-mesax+ #x875A)
2955 (defconstant +proxy-texture-1d-stack-mesax+ #x875B)
2956 (defconstant +proxy-texture-2d-stack-mesax+ #x875C)
2957 (defconstant +texture-1d-stack-binding-mesax+ #x875D)
2958 (defconstant +texture-2d-stack-binding-mesax+ #x875E)
2960 ;;;; Enumerations: EXT_packed_float
2962 (defconstant +r11f-g11f-b10f-ext+ #x8C3A)
2963 (defconstant +unsigned-int-10f-11f-11f-rev-ext+ #x8C3B)
2964 (defconstant +rgba-signed-components-ext+ #x8C3C)
2966 ;;;; Enumerations: EXT_texture_array
2968 (defconstant +texture-1d-array-ext+ #x8C18)
2969 (defconstant +proxy-texture-1d-array-ext+ #x8C19)
2970 (defconstant +texture-2d-array-ext+ #x8C1A)
2971 (defconstant +proxy-texture-2d-array-ext+ #x8C1B)
2972 (defconstant +texture-binding-1d-array-ext+ #x8C1C)
2973 (defconstant +texture-binding-2d-array-ext+ #x8C1D)
2974 (defconstant +max-array-texture-layers-ext+ #x88FF)
2975 (defconstant +compare-ref-depth-to-texture-ext+ #x884E)
2976 (defconstant +framebuffer-attachment-texture-layer-ext+ #x8CD4)
2978 ;;;; Enumerations: EXT_texture_compression_latc
2980 (defconstant +compressed-luminance-latc1-ext+ #x8C70)
2981 (defconstant +compressed-signed-luminance-latc1-ext+ #x8C71)
2982 (defconstant +compressed-luminance-alpha-latc2-ext+ #x8C72)
2983 (defconstant +compressed-signed-luminance-alpha-latc2-ext+ #x8C73)
2985 ;;;; Enumerations: EXT_texture_compression_rgtc
2987 (defconstant +compressed-red-rgtc1-ext+ #x8DBB)
2988 (defconstant +compressed-signed-red-rgtc1-ext+ #x8DBC)
2989 (defconstant +compressed-red-green-rgtc2-ext+ #x8DBD)
2990 (defconstant +compressed-signed-red-green-rgtc2-ext+ #x8DBE)
2992 ;;;; Enumerations: EXT_texture_shared_exponent
2994 (defconstant +rgb9-e5-ext+ #x8C3D)
2995 (defconstant +unsigned-int-5-9-9-9-rev-ext+ #x8C3E)
2996 (defconstant +texture-shared-size-ext+ #x8C3F)
2998 ;;;; Enumerations: EXT_framebuffer_sRGB
3000 (defconstant +framebuffer-srgb-ext+ #x8DB9)
3001 (defconstant +framebuffer-srgb-capable-ext+ #x8DBA)
3003 ;;;; display-list
3005 (defglfun
3006 (("ListBase" list-base) :args ((:name |base| :type |List| :direction :in))
3007 :return ("void") :category ("display-list") :version ("1.0") :glxropcode
3008 ("3") :glsopcode ("0x0036") :offset ("6")))
3009 (defglfun
3010 (("GenLists" gen-lists) :args ((:name |range| :type |SizeI| :direction :in))
3011 :return ("List") :dlflags ("notlistable") :category ("display-list") :version
3012 ("1.0") :glxsingle ("104") :glsopcode ("0x0035") :offset ("5")))
3013 (defglfun
3014 (("DeleteLists" delete-lists) :args
3015 ((:name |list| :type |List| :direction :in)
3016 (:name |range| :type |SizeI| :direction :in))
3017 :return ("void") :dlflags ("notlistable") :category ("display-list") :version
3018 ("1.0") :glxsingle ("103") :glsopcode ("0x0034") :wglflags ("batchable")
3019 :offset ("4")))
3020 (defglfun
3021 (("CallLists" call-lists) :args
3022 ((:name |n| :type |SizeI| :direction :in)
3023 (:name |type| :type |ListNameType| :direction :in)
3024 (:name |lists| :type |Void| :direction :in :array t :size (|n| |type|)))
3025 :return ("void") :category ("display-list") :glxflags
3026 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("2")
3027 :glsopcode ("0x0033") :offset ("3")))
3028 (defglfun
3029 (("CallList" call-list) :args ((:name |list| :type |List| :direction :in))
3030 :return ("void") :category ("display-list") :version ("1.0") :glxropcode
3031 ("1") :glsopcode ("0x0032") :offset ("2")))
3032 (defglfun
3033 (("EndList" end-list) :args nil :return ("void") :dlflags ("notlistable")
3034 :category ("display-list") :version ("1.0") :glxsingle ("102") :glsopcode
3035 ("0x0031") :wglflags ("batchable") :offset ("1")))
3036 (defglfun
3037 (("NewList" new-list) :args
3038 ((:name |list| :type |List| :direction :in)
3039 (:name |mode| :type |ListMode| :direction :in))
3040 :return ("void") :dlflags ("notlistable") :category ("display-list") :version
3041 ("1.0") :glxsingle ("101") :glsopcode ("0x0030") :wglflags ("batchable")
3042 :offset ("0")))
3044 ;;;; drawing
3046 (defglfun
3047 (("Vertex4sv" vertex-4sv) :args
3048 ((:name |v| :type |CoordS| :direction :in :array t :size #x4)) :return
3049 ("void") :category ("drawing") :version ("1.0") :glxropcode ("76") :glsopcode
3050 ("0x007F") :offset ("149")))
3051 (defglfun
3052 (("Vertex4s" vertex-4s) :args
3053 ((:name |x| :type |CoordS| :direction :in)
3054 (:name |y| :type |CoordS| :direction :in)
3055 (:name |z| :type |CoordS| :direction :in)
3056 (:name |w| :type |CoordS| :direction :in))
3057 :return ("void") :category ("drawing") :vectorequiv ("Vertex4sv") :version
3058 ("1.0") :offset ("148")))
3059 (defglfun
3060 (("Vertex4iv" vertex-4iv) :args
3061 ((:name |v| :type |CoordI| :direction :in :array t :size #x4)) :return
3062 ("void") :category ("drawing") :version ("1.0") :glxropcode ("75") :glsopcode
3063 ("0x007E") :offset ("147")))
3064 (defglfun
3065 (("Vertex4i" vertex-4i) :args
3066 ((:name |x| :type |CoordI| :direction :in)
3067 (:name |y| :type |CoordI| :direction :in)
3068 (:name |z| :type |CoordI| :direction :in)
3069 (:name |w| :type |CoordI| :direction :in))
3070 :return ("void") :category ("drawing") :vectorequiv ("Vertex4iv") :version
3071 ("1.0") :offset ("146")))
3072 (defglfun
3073 (("Vertex4fv" vertex-4fv) :args
3074 ((:name |v| :type |CoordF| :direction :in :array t :size #x4)) :return
3075 ("void") :category ("drawing") :version ("1.0") :glxropcode ("74") :glsopcode
3076 ("0x007D") :offset ("145")))
3077 (defglfun
3078 (("Vertex4f" vertex-4f) :args
3079 ((:name |x| :type |CoordF| :direction :in)
3080 (:name |y| :type |CoordF| :direction :in)
3081 (:name |z| :type |CoordF| :direction :in)
3082 (:name |w| :type |CoordF| :direction :in))
3083 :return ("void") :category ("drawing") :vectorequiv ("Vertex4fv") :version
3084 ("1.0") :offset ("144")))
3085 (defglfun
3086 (("Vertex4dv" vertex-4dv) :args
3087 ((:name |v| :type |CoordD| :direction :in :array t :size #x4)) :return
3088 ("void") :category ("drawing") :version ("1.0") :glxropcode ("73") :glsopcode
3089 ("0x007C") :offset ("143")))
3090 (defglfun
3091 (("Vertex4d" vertex-4d) :args
3092 ((:name |x| :type |CoordD| :direction :in)
3093 (:name |y| :type |CoordD| :direction :in)
3094 (:name |z| :type |CoordD| :direction :in)
3095 (:name |w| :type |CoordD| :direction :in))
3096 :return ("void") :category ("drawing") :vectorequiv ("Vertex4dv") :version
3097 ("1.0") :offset ("142")))
3098 (defglfun
3099 (("Vertex3sv" vertex-3sv) :args
3100 ((:name |v| :type |CoordS| :direction :in :array t :size #x3)) :return
3101 ("void") :category ("drawing") :version ("1.0") :glxropcode ("72") :glsopcode
3102 ("0x007B") :offset ("141")))
3103 (defglfun
3104 (("Vertex3s" vertex-3s) :args
3105 ((:name |x| :type |CoordS| :direction :in)
3106 (:name |y| :type |CoordS| :direction :in)
3107 (:name |z| :type |CoordS| :direction :in))
3108 :return ("void") :category ("drawing") :vectorequiv ("Vertex3sv") :version
3109 ("1.0") :offset ("140")))
3110 (defglfun
3111 (("Vertex3iv" vertex-3iv) :args
3112 ((:name |v| :type |CoordI| :direction :in :array t :size #x3)) :return
3113 ("void") :category ("drawing") :version ("1.0") :glxropcode ("71") :glsopcode
3114 ("0x007A") :offset ("139")))
3115 (defglfun
3116 (("Vertex3i" vertex-3i) :args
3117 ((:name |x| :type |CoordI| :direction :in)
3118 (:name |y| :type |CoordI| :direction :in)
3119 (:name |z| :type |CoordI| :direction :in))
3120 :return ("void") :category ("drawing") :vectorequiv ("Vertex3iv") :version
3121 ("1.0") :offset ("138")))
3122 (defglfun
3123 (("Vertex3fv" vertex-3fv) :args
3124 ((:name |v| :type |CoordF| :direction :in :array t :size #x3)) :return
3125 ("void") :category ("drawing") :version ("1.0") :glxropcode ("70") :glsopcode
3126 ("0x0079") :offset ("137")))
3127 (defglfun
3128 (("Vertex3f" vertex-3f) :args
3129 ((:name |x| :type |CoordF| :direction :in)
3130 (:name |y| :type |CoordF| :direction :in)
3131 (:name |z| :type |CoordF| :direction :in))
3132 :return ("void") :category ("drawing") :vectorequiv ("Vertex3fv") :version
3133 ("1.0") :offset ("136")))
3134 (defglfun
3135 (("Vertex3dv" vertex-3dv) :args
3136 ((:name |v| :type |CoordD| :direction :in :array t :size #x3)) :return
3137 ("void") :category ("drawing") :version ("1.0") :glxropcode ("69") :glsopcode
3138 ("0x0078") :offset ("135")))
3139 (defglfun
3140 (("Vertex3d" vertex-3d) :args
3141 ((:name |x| :type |CoordD| :direction :in)
3142 (:name |y| :type |CoordD| :direction :in)
3143 (:name |z| :type |CoordD| :direction :in))
3144 :return ("void") :category ("drawing") :vectorequiv ("Vertex3dv") :version
3145 ("1.0") :offset ("134")))
3146 (defglfun
3147 (("Vertex2sv" vertex-2sv) :args
3148 ((:name |v| :type |CoordS| :direction :in :array t :size #x2)) :return
3149 ("void") :category ("drawing") :version ("1.0") :glxropcode ("68") :glsopcode
3150 ("0x0077") :offset ("133")))
3151 (defglfun
3152 (("Vertex2s" vertex-2s) :args
3153 ((:name |x| :type |CoordS| :direction :in)
3154 (:name |y| :type |CoordS| :direction :in))
3155 :return ("void") :category ("drawing") :vectorequiv ("Vertex2sv") :version
3156 ("1.0") :offset ("132")))
3157 (defglfun
3158 (("Vertex2iv" vertex-2iv) :args
3159 ((:name |v| :type |CoordI| :direction :in :array t :size #x2)) :return
3160 ("void") :category ("drawing") :version ("1.0") :glxropcode ("67") :glsopcode
3161 ("0x0076") :offset ("131")))
3162 (defglfun
3163 (("Vertex2i" vertex-2i) :args
3164 ((:name |x| :type |CoordI| :direction :in)
3165 (:name |y| :type |CoordI| :direction :in))
3166 :return ("void") :category ("drawing") :vectorequiv ("Vertex2iv") :version
3167 ("1.0") :offset ("130")))
3168 (defglfun
3169 (("Vertex2fv" vertex-2fv) :args
3170 ((:name |v| :type |CoordF| :direction :in :array t :size #x2)) :return
3171 ("void") :category ("drawing") :version ("1.0") :glxropcode ("66") :glsopcode
3172 ("0x0075") :offset ("129")))
3173 (defglfun
3174 (("Vertex2f" vertex-2f) :args
3175 ((:name |x| :type |CoordF| :direction :in)
3176 (:name |y| :type |CoordF| :direction :in))
3177 :return ("void") :category ("drawing") :vectorequiv ("Vertex2fv") :version
3178 ("1.0") :offset ("128")))
3179 (defglfun
3180 (("Vertex2dv" vertex-2dv) :args
3181 ((:name |v| :type |CoordD| :direction :in :array t :size #x2)) :return
3182 ("void") :category ("drawing") :version ("1.0") :glxropcode ("65") :glsopcode
3183 ("0x0074") :offset ("127")))
3184 (defglfun
3185 (("Vertex2d" vertex-2d) :args
3186 ((:name |x| :type |CoordD| :direction :in)
3187 (:name |y| :type |CoordD| :direction :in))
3188 :return ("void") :category ("drawing") :vectorequiv ("Vertex2dv") :version
3189 ("1.0") :offset ("126")))
3190 (defglfun
3191 (("TexCoord4sv" tex-coord-4sv) :args
3192 ((:name |v| :type |CoordS| :direction :in :array t :size #x4)) :return
3193 ("void") :category ("drawing") :version ("1.0") :glxropcode ("64") :glsopcode
3194 ("0x0073") :offset ("125")))
3195 (defglfun
3196 (("TexCoord4s" tex-coord-4s) :args
3197 ((:name |s| :type |CoordS| :direction :in)
3198 (:name |t| :type |CoordS| :direction :in)
3199 (:name |r| :type |CoordS| :direction :in)
3200 (:name |q| :type |CoordS| :direction :in))
3201 :return ("void") :category ("drawing") :vectorequiv ("TexCoord4sv") :version
3202 ("1.0") :offset ("124")))
3203 (defglfun
3204 (("TexCoord4iv" tex-coord-4iv) :args
3205 ((:name |v| :type |CoordI| :direction :in :array t :size #x4)) :return
3206 ("void") :category ("drawing") :version ("1.0") :glxropcode ("63") :glsopcode
3207 ("0x0072") :offset ("123")))
3208 (defglfun
3209 (("TexCoord4i" tex-coord-4i) :args
3210 ((:name |s| :type |CoordI| :direction :in)
3211 (:name |t| :type |CoordI| :direction :in)
3212 (:name |r| :type |CoordI| :direction :in)
3213 (:name |q| :type |CoordI| :direction :in))
3214 :return ("void") :category ("drawing") :vectorequiv ("TexCoord4iv") :version
3215 ("1.0") :offset ("122")))
3216 (defglfun
3217 (("TexCoord4fv" tex-coord-4fv) :args
3218 ((:name |v| :type |CoordF| :direction :in :array t :size #x4)) :return
3219 ("void") :category ("drawing") :version ("1.0") :glxropcode ("62") :glsopcode
3220 ("0x0071") :offset ("121")))
3221 (defglfun
3222 (("TexCoord4f" tex-coord-4f) :args
3223 ((:name |s| :type |CoordF| :direction :in)
3224 (:name |t| :type |CoordF| :direction :in)
3225 (:name |r| :type |CoordF| :direction :in)
3226 (:name |q| :type |CoordF| :direction :in))
3227 :return ("void") :category ("drawing") :vectorequiv ("TexCoord4fv") :version
3228 ("1.0") :offset ("120")))
3229 (defglfun
3230 (("TexCoord4dv" tex-coord-4dv) :args
3231 ((:name |v| :type |CoordD| :direction :in :array t :size #x4)) :return
3232 ("void") :category ("drawing") :version ("1.0") :glxropcode ("61") :glsopcode
3233 ("0x0070") :offset ("119")))
3234 (defglfun
3235 (("TexCoord4d" tex-coord-4d) :args
3236 ((:name |s| :type |CoordD| :direction :in)
3237 (:name |t| :type |CoordD| :direction :in)
3238 (:name |r| :type |CoordD| :direction :in)
3239 (:name |q| :type |CoordD| :direction :in))
3240 :return ("void") :category ("drawing") :vectorequiv ("TexCoord4dv") :version
3241 ("1.0") :offset ("118")))
3242 (defglfun
3243 (("TexCoord3sv" tex-coord-3sv) :args
3244 ((:name |v| :type |CoordS| :direction :in :array t :size #x3)) :return
3245 ("void") :category ("drawing") :version ("1.0") :glxropcode ("60") :glsopcode
3246 ("0x006F") :offset ("117")))
3247 (defglfun
3248 (("TexCoord3s" tex-coord-3s) :args
3249 ((:name |s| :type |CoordS| :direction :in)
3250 (:name |t| :type |CoordS| :direction :in)
3251 (:name |r| :type |CoordS| :direction :in))
3252 :return ("void") :category ("drawing") :vectorequiv ("TexCoord3sv") :version
3253 ("1.0") :offset ("116")))
3254 (defglfun
3255 (("TexCoord3iv" tex-coord-3iv) :args
3256 ((:name |v| :type |CoordI| :direction :in :array t :size #x3)) :return
3257 ("void") :category ("drawing") :version ("1.0") :glxropcode ("59") :glsopcode
3258 ("0x006E") :offset ("115")))
3259 (defglfun
3260 (("TexCoord3i" tex-coord-3i) :args
3261 ((:name |s| :type |CoordI| :direction :in)
3262 (:name |t| :type |CoordI| :direction :in)
3263 (:name |r| :type |CoordI| :direction :in))
3264 :return ("void") :category ("drawing") :vectorequiv ("TexCoord3iv") :version
3265 ("1.0") :offset ("114")))
3266 (defglfun
3267 (("TexCoord3fv" tex-coord-3fv) :args
3268 ((:name |v| :type |CoordF| :direction :in :array t :size #x3)) :return
3269 ("void") :category ("drawing") :version ("1.0") :glxropcode ("58") :glsopcode
3270 ("0x006D") :offset ("113")))
3271 (defglfun
3272 (("TexCoord3f" tex-coord-3f) :args
3273 ((:name |s| :type |CoordF| :direction :in)
3274 (:name |t| :type |CoordF| :direction :in)
3275 (:name |r| :type |CoordF| :direction :in))
3276 :return ("void") :category ("drawing") :vectorequiv ("TexCoord3fv") :version
3277 ("1.0") :offset ("112")))
3278 (defglfun
3279 (("TexCoord3dv" tex-coord-3dv) :args
3280 ((:name |v| :type |CoordD| :direction :in :array t :size #x3)) :return
3281 ("void") :category ("drawing") :version ("1.0") :glxropcode ("57") :glsopcode
3282 ("0x006C") :offset ("111")))
3283 (defglfun
3284 (("TexCoord3d" tex-coord-3d) :args
3285 ((:name |s| :type |CoordD| :direction :in)
3286 (:name |t| :type |CoordD| :direction :in)
3287 (:name |r| :type |CoordD| :direction :in))
3288 :return ("void") :category ("drawing") :vectorequiv ("TexCoord3dv") :version
3289 ("1.0") :offset ("110")))
3290 (defglfun
3291 (("TexCoord2sv" tex-coord-2sv) :args
3292 ((:name |v| :type |CoordS| :direction :in :array t :size #x2)) :return
3293 ("void") :category ("drawing") :version ("1.0") :glxropcode ("56") :glsopcode
3294 ("0x006B") :offset ("109")))
3295 (defglfun
3296 (("TexCoord2s" tex-coord-2s) :args
3297 ((:name |s| :type |CoordS| :direction :in)
3298 (:name |t| :type |CoordS| :direction :in))
3299 :return ("void") :category ("drawing") :vectorequiv ("TexCoord2sv") :version
3300 ("1.0") :offset ("108")))
3301 (defglfun
3302 (("TexCoord2iv" tex-coord-2iv) :args
3303 ((:name |v| :type |CoordI| :direction :in :array t :size #x2)) :return
3304 ("void") :category ("drawing") :version ("1.0") :glxropcode ("55") :glsopcode
3305 ("0x006A") :offset ("107")))
3306 (defglfun
3307 (("TexCoord2i" tex-coord-2i) :args
3308 ((:name |s| :type |CoordI| :direction :in)
3309 (:name |t| :type |CoordI| :direction :in))
3310 :return ("void") :category ("drawing") :vectorequiv ("TexCoord2iv") :version
3311 ("1.0") :offset ("106")))
3312 (defglfun
3313 (("TexCoord2fv" tex-coord-2fv) :args
3314 ((:name |v| :type |CoordF| :direction :in :array t :size #x2)) :return
3315 ("void") :category ("drawing") :version ("1.0") :glxropcode ("54") :glsopcode
3316 ("0x0069") :offset ("105")))
3317 (defglfun
3318 (("TexCoord2f" tex-coord-2f) :args
3319 ((:name |s| :type |CoordF| :direction :in)
3320 (:name |t| :type |CoordF| :direction :in))
3321 :return ("void") :category ("drawing") :vectorequiv ("TexCoord2fv") :version
3322 ("1.0") :offset ("104")))
3323 (defglfun
3324 (("TexCoord2dv" tex-coord-2dv) :args
3325 ((:name |v| :type |CoordD| :direction :in :array t :size #x2)) :return
3326 ("void") :category ("drawing") :version ("1.0") :glxropcode ("53") :glsopcode
3327 ("0x0068") :offset ("103")))
3328 (defglfun
3329 (("TexCoord2d" tex-coord-2d) :args
3330 ((:name |s| :type |CoordD| :direction :in)
3331 (:name |t| :type |CoordD| :direction :in))
3332 :return ("void") :category ("drawing") :vectorequiv ("TexCoord2dv") :version
3333 ("1.0") :offset ("102")))
3334 (defglfun
3335 (("TexCoord1sv" tex-coord-1sv) :args
3336 ((:name |v| :type |CoordS| :direction :in :array t :size #x1)) :return
3337 ("void") :category ("drawing") :version ("1.0") :glxropcode ("52") :glsopcode
3338 ("0x0067") :offset ("101")))
3339 (defglfun
3340 (("TexCoord1s" tex-coord-1s) :args ((:name |s| :type |CoordS| :direction :in))
3341 :return ("void") :category ("drawing") :vectorequiv ("TexCoord1sv") :version
3342 ("1.0") :offset ("100")))
3343 (defglfun
3344 (("TexCoord1iv" tex-coord-1iv) :args
3345 ((:name |v| :type |CoordI| :direction :in :array t :size #x1)) :return
3346 ("void") :category ("drawing") :version ("1.0") :glxropcode ("51") :glsopcode
3347 ("0x0066") :offset ("99")))
3348 (defglfun
3349 (("TexCoord1i" tex-coord-1i) :args ((:name |s| :type |CoordI| :direction :in))
3350 :return ("void") :category ("drawing") :vectorequiv ("TexCoord1iv") :version
3351 ("1.0") :offset ("98")))
3352 (defglfun
3353 (("TexCoord1fv" tex-coord-1fv) :args
3354 ((:name |v| :type |CoordF| :direction :in :array t :size #x1)) :return
3355 ("void") :category ("drawing") :version ("1.0") :glxropcode ("50") :glsopcode
3356 ("0x0065") :offset ("97")))
3357 (defglfun
3358 (("TexCoord1f" tex-coord-1f) :args ((:name |s| :type |CoordF| :direction :in))
3359 :return ("void") :category ("drawing") :vectorequiv ("TexCoord1fv") :version
3360 ("1.0") :offset ("96")))
3361 (defglfun
3362 (("TexCoord1dv" tex-coord-1dv) :args
3363 ((:name |v| :type |CoordD| :direction :in :array t :size #x1)) :return
3364 ("void") :category ("drawing") :version ("1.0") :glxropcode ("49") :glsopcode
3365 ("0x0064") :offset ("95")))
3366 (defglfun
3367 (("TexCoord1d" tex-coord-1d) :args ((:name |s| :type |CoordD| :direction :in))
3368 :return ("void") :category ("drawing") :vectorequiv ("TexCoord1dv") :version
3369 ("1.0") :offset ("94")))
3370 (defglfun
3371 (("Rectsv" rect-sv) :args
3372 ((:name |v1| :type |CoordS| :direction :in :array t :size #x2)
3373 (:name |v2| :type |CoordS| :direction :in :array t :size #x2))
3374 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("48")
3375 :glsopcode ("0x0063") :offset ("93")))
3376 (defglfun
3377 (("Rects" rect-s) :args
3378 ((:name |x1| :type |CoordS| :direction :in)
3379 (:name |y1| :type |CoordS| :direction :in)
3380 (:name |x2| :type |CoordS| :direction :in)
3381 (:name |y2| :type |CoordS| :direction :in))
3382 :return ("void") :category ("drawing") :vectorequiv ("Rectsv") :version
3383 ("1.0") :offset ("92")))
3384 (defglfun
3385 (("Rectiv" rect-iv) :args
3386 ((:name |v1| :type |CoordI| :direction :in :array t :size #x2)
3387 (:name |v2| :type |CoordI| :direction :in :array t :size #x2))
3388 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("47")
3389 :glsopcode ("0x0062") :offset ("91")))
3390 (defglfun
3391 (("Recti" rect-i) :args
3392 ((:name |x1| :type |CoordI| :direction :in)
3393 (:name |y1| :type |CoordI| :direction :in)
3394 (:name |x2| :type |CoordI| :direction :in)
3395 (:name |y2| :type |CoordI| :direction :in))
3396 :return ("void") :category ("drawing") :vectorequiv ("Rectiv") :version
3397 ("1.0") :offset ("90")))
3398 (defglfun
3399 (("Rectfv" rect-fv) :args
3400 ((:name |v1| :type |CoordF| :direction :in :array t :size #x2)
3401 (:name |v2| :type |CoordF| :direction :in :array t :size #x2))
3402 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("46")
3403 :glsopcode ("0x0061") :offset ("89")))
3404 (defglfun
3405 (("Rectf" rect-f) :args
3406 ((:name |x1| :type |CoordF| :direction :in)
3407 (:name |y1| :type |CoordF| :direction :in)
3408 (:name |x2| :type |CoordF| :direction :in)
3409 (:name |y2| :type |CoordF| :direction :in))
3410 :return ("void") :category ("drawing") :vectorequiv ("Rectfv") :version
3411 ("1.0") :offset ("88")))
3412 (defglfun
3413 (("Rectdv" rect-dv) :args
3414 ((:name |v1| :type |CoordD| :direction :in :array t :size #x2)
3415 (:name |v2| :type |CoordD| :direction :in :array t :size #x2))
3416 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("45")
3417 :glsopcode ("0x0060") :offset ("87")))
3418 (defglfun
3419 (("Rectd" rect-d) :args
3420 ((:name |x1| :type |CoordD| :direction :in)
3421 (:name |y1| :type |CoordD| :direction :in)
3422 (:name |x2| :type |CoordD| :direction :in)
3423 (:name |y2| :type |CoordD| :direction :in))
3424 :return ("void") :category ("drawing") :vectorequiv ("Rectdv") :version
3425 ("1.0") :offset ("86")))
3426 (defglfun
3427 (("RasterPos4sv" raster-pos-4sv) :args
3428 ((:name |v| :type |CoordS| :direction :in :array t :size #x4)) :return
3429 ("void") :category ("drawing") :version ("1.0") :glxropcode ("44") :glsopcode
3430 ("0x005F") :offset ("85")))
3431 (defglfun
3432 (("RasterPos4s" raster-pos-4s) :args
3433 ((:name |x| :type |CoordS| :direction :in)
3434 (:name |y| :type |CoordS| :direction :in)
3435 (:name |z| :type |CoordS| :direction :in)
3436 (:name |w| :type |CoordS| :direction :in))
3437 :return ("void") :category ("drawing") :vectorequiv ("RasterPos4sv") :version
3438 ("1.0") :offset ("84")))
3439 (defglfun
3440 (("RasterPos4iv" raster-pos-4iv) :args
3441 ((:name |v| :type |CoordI| :direction :in :array t :size #x4)) :return
3442 ("void") :category ("drawing") :version ("1.0") :glxropcode ("43") :glsopcode
3443 ("0x005E") :offset ("83")))
3444 (defglfun
3445 (("RasterPos4i" raster-pos-4i) :args
3446 ((:name |x| :type |CoordI| :direction :in)
3447 (:name |y| :type |CoordI| :direction :in)
3448 (:name |z| :type |CoordI| :direction :in)
3449 (:name |w| :type |CoordI| :direction :in))
3450 :return ("void") :category ("drawing") :vectorequiv ("RasterPos4iv") :version
3451 ("1.0") :offset ("82")))
3452 (defglfun
3453 (("RasterPos4fv" raster-pos-4fv) :args
3454 ((:name |v| :type |CoordF| :direction :in :array t :size #x4)) :return
3455 ("void") :category ("drawing") :version ("1.0") :glxropcode ("42") :glsopcode
3456 ("0x005D") :offset ("81")))
3457 (defglfun
3458 (("RasterPos4f" raster-pos-4f) :args
3459 ((:name |x| :type |CoordF| :direction :in)
3460 (:name |y| :type |CoordF| :direction :in)
3461 (:name |z| :type |CoordF| :direction :in)
3462 (:name |w| :type |CoordF| :direction :in))
3463 :return ("void") :category ("drawing") :vectorequiv ("RasterPos4fv") :version
3464 ("1.0") :offset ("80")))
3465 (defglfun
3466 (("RasterPos4dv" raster-pos-4dv) :args
3467 ((:name |v| :type |CoordD| :direction :in :array t :size #x4)) :return
3468 ("void") :category ("drawing") :version ("1.0") :glxropcode ("41") :glsopcode
3469 ("0x005C") :offset ("79")))
3470 (defglfun
3471 (("RasterPos4d" raster-pos-4d) :args
3472 ((:name |x| :type |CoordD| :direction :in)
3473 (:name |y| :type |CoordD| :direction :in)
3474 (:name |z| :type |CoordD| :direction :in)
3475 (:name |w| :type |CoordD| :direction :in))
3476 :return ("void") :vectorequiv ("RasterPos4dv") :category ("drawing") :version
3477 ("1.0") :offset ("78")))
3478 (defglfun
3479 (("RasterPos3sv" raster-pos-3sv) :args
3480 ((:name |v| :type |CoordS| :direction :in :array t :size #x3)) :return
3481 ("void") :category ("drawing") :version ("1.0") :glxropcode ("40") :glsopcode
3482 ("0x005B") :offset ("77")))
3483 (defglfun
3484 (("RasterPos3s" raster-pos-3s) :args
3485 ((:name |x| :type |CoordS| :direction :in)
3486 (:name |y| :type |CoordS| :direction :in)
3487 (:name |z| :type |CoordS| :direction :in))
3488 :return ("void") :category ("drawing") :vectorequiv ("RasterPos3sv") :version
3489 ("1.0") :offset ("76")))
3490 (defglfun
3491 (("RasterPos3iv" raster-pos-3iv) :args
3492 ((:name |v| :type |CoordI| :direction :in :array t :size #x3)) :return
3493 ("void") :category ("drawing") :version ("1.0") :glxropcode ("39") :glsopcode
3494 ("0x005A") :offset ("75")))
3495 (defglfun
3496 (("RasterPos3i" raster-pos-3i) :args
3497 ((:name |x| :type |CoordI| :direction :in)
3498 (:name |y| :type |CoordI| :direction :in)
3499 (:name |z| :type |CoordI| :direction :in))
3500 :return ("void") :category ("drawing") :vectorequiv ("RasterPos3iv") :version
3501 ("1.0") :offset ("74")))
3502 (defglfun
3503 (("RasterPos3fv" raster-pos-3fv) :args
3504 ((:name |v| :type |CoordF| :direction :in :array t :size #x3)) :return
3505 ("void") :category ("drawing") :version ("1.0") :glxropcode ("38") :glsopcode
3506 ("0x0059") :offset ("73")))
3507 (defglfun
3508 (("RasterPos3f" raster-pos-3f) :args
3509 ((:name |x| :type |CoordF| :direction :in)
3510 (:name |y| :type |CoordF| :direction :in)
3511 (:name |z| :type |CoordF| :direction :in))
3512 :return ("void") :category ("drawing") :vectorequiv ("RasterPos3fv") :version
3513 ("1.0") :offset ("72")))
3514 (defglfun
3515 (("RasterPos3dv" raster-pos-3dv) :args
3516 ((:name |v| :type |CoordD| :direction :in :array t :size #x3)) :return
3517 ("void") :category ("drawing") :version ("1.0") :glxropcode ("37") :glsopcode
3518 ("0x0058") :offset ("71")))
3519 (defglfun
3520 (("RasterPos3d" raster-pos-3d) :args
3521 ((:name |x| :type |CoordD| :direction :in)
3522 (:name |y| :type |CoordD| :direction :in)
3523 (:name |z| :type |CoordD| :direction :in))
3524 :return ("void") :vectorequiv ("RasterPos3dv") :category ("drawing") :version
3525 ("1.0") :offset ("70")))
3526 (defglfun
3527 (("RasterPos2sv" raster-pos-2sv) :args
3528 ((:name |v| :type |CoordS| :direction :in :array t :size #x2)) :return
3529 ("void") :category ("drawing") :version ("1.0") :glxropcode ("36") :glsopcode
3530 ("0x0057") :offset ("69")))
3531 (defglfun
3532 (("RasterPos2s" raster-pos-2s) :args
3533 ((:name |x| :type |CoordS| :direction :in)
3534 (:name |y| :type |CoordS| :direction :in))
3535 :return ("void") :category ("drawing") :vectorequiv ("RasterPos2sv") :version
3536 ("1.0") :offset ("68")))
3537 (defglfun
3538 (("RasterPos2iv" raster-pos-2iv) :args
3539 ((:name |v| :type |CoordI| :direction :in :array t :size #x2)) :return
3540 ("void") :category ("drawing") :version ("1.0") :glxropcode ("35") :glsopcode
3541 ("0x0056") :offset ("67")))
3542 (defglfun
3543 (("RasterPos2i" raster-pos-2i) :args
3544 ((:name |x| :type |CoordI| :direction :in)
3545 (:name |y| :type |CoordI| :direction :in))
3546 :return ("void") :category ("drawing") :vectorequiv ("RasterPos2iv") :version
3547 ("1.0") :offset ("66")))
3548 (defglfun
3549 (("RasterPos2fv" raster-pos-2fv) :args
3550 ((:name |v| :type |CoordF| :direction :in :array t :size #x2)) :return
3551 ("void") :category ("drawing") :version ("1.0") :glxropcode ("34") :glsopcode
3552 ("0x0055") :offset ("65")))
3553 (defglfun
3554 (("RasterPos2f" raster-pos-2f) :args
3555 ((:name |x| :type |CoordF| :direction :in)
3556 (:name |y| :type |CoordF| :direction :in))
3557 :return ("void") :category ("drawing") :vectorequiv ("RasterPos2fv") :version
3558 ("1.0") :offset ("64")))
3559 (defglfun
3560 (("RasterPos2dv" raster-pos-2dv) :args
3561 ((:name |v| :type |CoordD| :direction :in :array t :size #x2)) :return
3562 ("void") :category ("drawing") :version ("1.0") :glxropcode ("33") :glsopcode
3563 ("0x0054") :offset ("63")))
3564 (defglfun
3565 (("RasterPos2d" raster-pos-2d) :args
3566 ((:name |x| :type |CoordD| :direction :in)
3567 (:name |y| :type |CoordD| :direction :in))
3568 :return ("void") :category ("drawing") :vectorequiv ("RasterPos2dv") :version
3569 ("1.0") :offset ("62")))
3570 (defglfun
3571 (("Normal3sv" normal-3sv) :args
3572 ((:name |v| :type |Int16| :direction :in :array t :size #x3)) :return
3573 ("void") :category ("drawing") :version ("1.0") :glxropcode ("32") :glsopcode
3574 ("0x0053") :offset ("61")))
3575 (defglfun
3576 (("Normal3s" normal-3s) :args
3577 ((:name |nx| :type |Int16| :direction :in)
3578 (:name |ny| :type |Int16| :direction :in)
3579 (:name |nz| :type |Int16| :direction :in))
3580 :return ("void") :category ("drawing") :vectorequiv ("Normal3sv") :version
3581 ("1.0") :offset ("60")))
3582 (defglfun
3583 (("Normal3iv" normal-3iv) :args
3584 ((:name |v| :type |Int32| :direction :in :array t :size #x3)) :return
3585 ("void") :category ("drawing") :version ("1.0") :glxropcode ("31") :glsopcode
3586 ("0x0052") :offset ("59")))
3587 (defglfun
3588 (("Normal3i" normal-3i) :args
3589 ((:name |nx| :type |Int32| :direction :in)
3590 (:name |ny| :type |Int32| :direction :in)
3591 (:name |nz| :type |Int32| :direction :in))
3592 :return ("void") :category ("drawing") :vectorequiv ("Normal3iv") :version
3593 ("1.0") :offset ("58")))
3594 (defglfun
3595 (("Normal3fv" normal-3fv) :args
3596 ((:name |v| :type |CoordF| :direction :in :array t :size #x3)) :return
3597 ("void") :category ("drawing") :version ("1.0") :glxropcode ("30") :glsopcode
3598 ("0x0051") :offset ("57")))
3599 (defglfun
3600 (("Normal3f" normal-3f) :args
3601 ((:name |nx| :type |CoordF| :direction :in)
3602 (:name |ny| :type |CoordF| :direction :in)
3603 (:name |nz| :type |CoordF| :direction :in))
3604 :return ("void") :category ("drawing") :vectorequiv ("Normal3fv") :version
3605 ("1.0") :offset ("56")))
3606 (defglfun
3607 (("Normal3dv" normal-3dv) :args
3608 ((:name |v| :type |CoordD| :direction :in :array t :size #x3)) :return
3609 ("void") :category ("drawing") :version ("1.0") :glxropcode ("29") :glsopcode
3610 ("0x0050") :offset ("55")))
3611 (defglfun
3612 (("Normal3d" normal-3d) :args
3613 ((:name |nx| :type |CoordD| :direction :in)
3614 (:name |ny| :type |CoordD| :direction :in)
3615 (:name |nz| :type |CoordD| :direction :in))
3616 :return ("void") :category ("drawing") :vectorequiv ("Normal3dv") :version
3617 ("1.0") :offset ("54")))
3618 (defglfun
3619 (("Normal3bv" normal-3bv) :args
3620 ((:name |v| :type |Int8| :direction :in :array t :size #x3)) :return ("void")
3621 :category ("drawing") :version ("1.0") :glxropcode ("28") :glsopcode
3622 ("0x004F") :offset ("53")))
3623 (defglfun
3624 (("Normal3b" normal-3b) :args
3625 ((:name |nx| :type |Int8| :direction :in)
3626 (:name |ny| :type |Int8| :direction :in)
3627 (:name |nz| :type |Int8| :direction :in))
3628 :return ("void") :category ("drawing") :vectorequiv ("Normal3bv") :version
3629 ("1.0") :offset ("52")))
3630 (defglfun
3631 (("Indexsv" index-sv) :args
3632 ((:name |c| :type |ColorIndexValueS| :direction :in :array t :size #x1))
3633 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("27")
3634 :glsopcode ("0x004E") :offset ("51")))
3635 (defglfun
3636 (("Indexs" index-s) :args
3637 ((:name |c| :type |ColorIndexValueS| :direction :in)) :return ("void")
3638 :category ("drawing") :vectorequiv ("Indexsv") :version ("1.0") :offset
3639 ("50")))
3640 (defglfun
3641 (("Indexiv" index-iv) :args
3642 ((:name |c| :type |ColorIndexValueI| :direction :in :array t :size #x1))
3643 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("26")
3644 :glsopcode ("0x004D") :offset ("49")))
3645 (defglfun
3646 (("Indexi" index-i) :args
3647 ((:name |c| :type |ColorIndexValueI| :direction :in)) :return ("void")
3648 :category ("drawing") :vectorequiv ("Indexiv") :version ("1.0") :offset
3649 ("48")))
3650 (defglfun
3651 (("Indexfv" index-fv) :args
3652 ((:name |c| :type |ColorIndexValueF| :direction :in :array t :size #x1))
3653 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("25")
3654 :glsopcode ("0x004C") :offset ("47")))
3655 (defglfun
3656 (("Indexf" index-f) :args
3657 ((:name |c| :type |ColorIndexValueF| :direction :in)) :return ("void")
3658 :category ("drawing") :vectorequiv ("Indexfv") :version ("1.0") :offset
3659 ("46")))
3660 (defglfun
3661 (("Indexdv" index-dv) :args
3662 ((:name |c| :type |ColorIndexValueD| :direction :in :array t :size #x1))
3663 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("24")
3664 :glsopcode ("0x004B") :offset ("45")))
3665 (defglfun
3666 (("Indexd" index-d) :args
3667 ((:name |c| :type |ColorIndexValueD| :direction :in)) :return ("void")
3668 :category ("drawing") :vectorequiv ("Indexdv") :version ("1.0") :offset
3669 ("44")))
3670 (defglfun
3671 (("End" end) :args nil :return ("void") :category ("drawing") :version ("1.0")
3672 :glxropcode ("23") :glsopcode ("0x004A") :offset ("43")))
3673 (defglfun
3674 (("EdgeFlagv" edge-flagv) :args
3675 ((:name |flag| :type |Boolean| :direction :in :array t :size #x1)) :return
3676 ("void") :category ("drawing") :version ("1.0") :glxropcode ("22") :glsopcode
3677 ("0x0049") :offset ("42")))
3678 (defglfun
3679 (("EdgeFlag" edge-flag) :args ((:name |flag| :type |Boolean| :direction :in))
3680 :return ("void") :category ("drawing") :vectorequiv ("EdgeFlagv") :version
3681 ("1.0") :offset ("41")))
3682 (defglfun
3683 (("Color4usv" color-4usv) :args
3684 ((:name |v| :type |ColorUS| :direction :in :array t :size #x4)) :return
3685 ("void") :category ("drawing") :version ("1.0") :glxropcode ("21") :glsopcode
3686 ("0x0048") :offset ("40")))
3687 (defglfun
3688 (("Color4us" color-4us) :args
3689 ((:name |red| :type |ColorUS| :direction :in)
3690 (:name |green| :type |ColorUS| :direction :in)
3691 (:name |blue| :type |ColorUS| :direction :in)
3692 (:name |alpha| :type |ColorUS| :direction :in))
3693 :return ("void") :category ("drawing") :vectorequiv ("Color4usv") :version
3694 ("1.0") :offset ("39")))
3695 (defglfun
3696 (("Color4uiv" color-4uiv) :args
3697 ((:name |v| :type |ColorUI| :direction :in :array t :size #x4)) :return
3698 ("void") :category ("drawing") :version ("1.0") :glxropcode ("20") :glsopcode
3699 ("0x0047") :offset ("38")))
3700 (defglfun
3701 (("Color4ui" color-4ui) :args
3702 ((:name |red| :type |ColorUI| :direction :in)
3703 (:name |green| :type |ColorUI| :direction :in)
3704 (:name |blue| :type |ColorUI| :direction :in)
3705 (:name |alpha| :type |ColorUI| :direction :in))
3706 :return ("void") :category ("drawing") :vectorequiv ("Color4uiv") :version
3707 ("1.0") :offset ("37")))
3708 (defglfun
3709 (("Color4ubv" color-4ubv) :args
3710 ((:name |v| :type |ColorUB| :direction :in :array t :size #x4)) :return
3711 ("void") :category ("drawing") :version ("1.0") :glxropcode ("19") :glsopcode
3712 ("0x0046") :offset ("36")))
3713 (defglfun
3714 (("Color4ub" color-4ub) :args
3715 ((:name |red| :type |ColorUB| :direction :in)
3716 (:name |green| :type |ColorUB| :direction :in)
3717 (:name |blue| :type |ColorUB| :direction :in)
3718 (:name |alpha| :type |ColorUB| :direction :in))
3719 :return ("void") :category ("drawing") :vectorequiv ("Color4ubv") :version
3720 ("1.0") :offset ("35")))
3721 (defglfun
3722 (("Color4sv" color-4sv) :args
3723 ((:name |v| :type |ColorS| :direction :in :array t :size #x4)) :return
3724 ("void") :category ("drawing") :version ("1.0") :glxropcode ("18") :glsopcode
3725 ("0x0045") :offset ("34")))
3726 (defglfun
3727 (("Color4s" color-4s) :args
3728 ((:name |red| :type |ColorS| :direction :in)
3729 (:name |green| :type |ColorS| :direction :in)
3730 (:name |blue| :type |ColorS| :direction :in)
3731 (:name |alpha| :type |ColorS| :direction :in))
3732 :return ("void") :category ("drawing") :vectorequiv ("Color4sv") :version
3733 ("1.0") :offset ("33")))
3734 (defglfun
3735 (("Color4iv" color-4iv) :args
3736 ((:name |v| :type |ColorI| :direction :in :array t :size #x4)) :return
3737 ("void") :category ("drawing") :version ("1.0") :glxropcode ("17") :glsopcode
3738 ("0x0044") :offset ("32")))
3739 (defglfun
3740 (("Color4i" color-4i) :args
3741 ((:name |red| :type |ColorI| :direction :in)
3742 (:name |green| :type |ColorI| :direction :in)
3743 (:name |blue| :type |ColorI| :direction :in)
3744 (:name |alpha| :type |ColorI| :direction :in))
3745 :return ("void") :category ("drawing") :vectorequiv ("Color4iv") :version
3746 ("1.0") :offset ("31")))
3747 (defglfun
3748 (("Color4fv" color-4fv) :args
3749 ((:name |v| :type |ColorF| :direction :in :array t :size #x4)) :return
3750 ("void") :category ("drawing") :version ("1.0") :glxropcode ("16") :glsopcode
3751 ("0x0043") :offset ("30")))
3752 (defglfun
3753 (("Color4f" color-4f) :args
3754 ((:name |red| :type |ColorF| :direction :in)
3755 (:name |green| :type |ColorF| :direction :in)
3756 (:name |blue| :type |ColorF| :direction :in)
3757 (:name |alpha| :type |ColorF| :direction :in))
3758 :return ("void") :category ("drawing") :vectorequiv ("Color4fv") :version
3759 ("1.0") :offset ("29")))
3760 (defglfun
3761 (("Color4dv" color-4dv) :args
3762 ((:name |v| :type |ColorD| :direction :in :array t :size #x4)) :return
3763 ("void") :category ("drawing") :version ("1.0") :glxropcode ("15") :glsopcode
3764 ("0x0042") :offset ("28")))
3765 (defglfun
3766 (("Color4d" color-4d) :args
3767 ((:name |red| :type |ColorD| :direction :in)
3768 (:name |green| :type |ColorD| :direction :in)
3769 (:name |blue| :type |ColorD| :direction :in)
3770 (:name |alpha| :type |ColorD| :direction :in))
3771 :return ("void") :category ("drawing") :vectorequiv ("Color4dv") :version
3772 ("1.0") :offset ("27")))
3773 (defglfun
3774 (("Color4bv" color-4bv) :args
3775 ((:name |v| :type |ColorB| :direction :in :array t :size #x4)) :return
3776 ("void") :category ("drawing") :version ("1.0") :glxropcode ("14") :glsopcode
3777 ("0x0041") :offset ("26")))
3778 (defglfun
3779 (("Color4b" color-4b) :args
3780 ((:name |red| :type |ColorB| :direction :in)
3781 (:name |green| :type |ColorB| :direction :in)
3782 (:name |blue| :type |ColorB| :direction :in)
3783 (:name |alpha| :type |ColorB| :direction :in))
3784 :return ("void") :category ("drawing") :vectorequiv ("Color4bv") :version
3785 ("1.0") :offset ("25")))
3786 (defglfun
3787 (("Color3usv" color-3usv) :args
3788 ((:name |v| :type |ColorUS| :direction :in :array t :size #x3)) :return
3789 ("void") :category ("drawing") :version ("1.0") :glxropcode ("13") :glsopcode
3790 ("0x0040") :offset ("24")))
3791 (defglfun
3792 (("Color3us" color-3us) :args
3793 ((:name |red| :type |ColorUS| :direction :in)
3794 (:name |green| :type |ColorUS| :direction :in)
3795 (:name |blue| :type |ColorUS| :direction :in))
3796 :return ("void") :category ("drawing") :vectorequiv ("Color3usv") :version
3797 ("1.0") :offset ("23")))
3798 (defglfun
3799 (("Color3uiv" color-3uiv) :args
3800 ((:name |v| :type |ColorUI| :direction :in :array t :size #x3)) :return
3801 ("void") :category ("drawing") :version ("1.0") :glxropcode ("12") :glsopcode
3802 ("0x003F") :offset ("22")))
3803 (defglfun
3804 (("Color3ui" color-3ui) :args
3805 ((:name |red| :type |ColorUI| :direction :in)
3806 (:name |green| :type |ColorUI| :direction :in)
3807 (:name |blue| :type |ColorUI| :direction :in))
3808 :return ("void") :category ("drawing") :vectorequiv ("Color3uiv") :version
3809 ("1.0") :offset ("21")))
3810 (defglfun
3811 (("Color3ubv" color-3ubv) :args
3812 ((:name |v| :type |ColorUB| :direction :in :array t :size #x3)) :return
3813 ("void") :category ("drawing") :version ("1.0") :glxropcode ("11") :glsopcode
3814 ("0x003E") :offset ("20")))
3815 (defglfun
3816 (("Color3ub" color-3ub) :args
3817 ((:name |red| :type |ColorUB| :direction :in)
3818 (:name |green| :type |ColorUB| :direction :in)
3819 (:name |blue| :type |ColorUB| :direction :in))
3820 :return ("void") :category ("drawing") :vectorequiv ("Color3ubv") :version
3821 ("1.0") :offset ("19")))
3822 (defglfun
3823 (("Color3sv" color-3sv) :args
3824 ((:name |v| :type |ColorS| :direction :in :array t :size #x3)) :return
3825 ("void") :category ("drawing") :version ("1.0") :glxropcode ("10") :glsopcode
3826 ("0x003D") :offset ("18")))
3827 (defglfun
3828 (("Color3s" color-3s) :args
3829 ((:name |red| :type |ColorS| :direction :in)
3830 (:name |green| :type |ColorS| :direction :in)
3831 (:name |blue| :type |ColorS| :direction :in))
3832 :return ("void") :category ("drawing") :vectorequiv ("Color3sv") :version
3833 ("1.0") :offset ("17")))
3834 (defglfun
3835 (("Color3iv" color-3iv) :args
3836 ((:name |v| :type |ColorI| :direction :in :array t :size #x3)) :return
3837 ("void") :category ("drawing") :version ("1.0") :glxropcode ("9") :glsopcode
3838 ("0x003C") :offset ("16")))
3839 (defglfun
3840 (("Color3i" color-3i) :args
3841 ((:name |red| :type |ColorI| :direction :in)
3842 (:name |green| :type |ColorI| :direction :in)
3843 (:name |blue| :type |ColorI| :direction :in))
3844 :return ("void") :category ("drawing") :vectorequiv ("Color3iv") :version
3845 ("1.0") :offset ("15")))
3846 (defglfun
3847 (("Color3fv" color-3fv) :args
3848 ((:name |v| :type |ColorF| :direction :in :array t :size #x3)) :return
3849 ("void") :category ("drawing") :version ("1.0") :glxropcode ("8") :glsopcode
3850 ("0x003B") :offset ("14")))
3851 (defglfun
3852 (("Color3f" color-3f) :args
3853 ((:name |red| :type |ColorF| :direction :in)
3854 (:name |green| :type |ColorF| :direction :in)
3855 (:name |blue| :type |ColorF| :direction :in))
3856 :return ("void") :category ("drawing") :vectorequiv ("Color3fv") :version
3857 ("1.0") :offset ("13")))
3858 (defglfun
3859 (("Color3dv" color-3dv) :args
3860 ((:name |v| :type |ColorD| :direction :in :array t :size #x3)) :return
3861 ("void") :category ("drawing") :version ("1.0") :glxropcode ("7") :glsopcode
3862 ("0x003A") :offset ("12")))
3863 (defglfun
3864 (("Color3d" color-3d) :args
3865 ((:name |red| :type |ColorD| :direction :in)
3866 (:name |green| :type |ColorD| :direction :in)
3867 (:name |blue| :type |ColorD| :direction :in))
3868 :return ("void") :category ("drawing") :vectorequiv ("Color3dv") :version
3869 ("1.0") :offset ("11")))
3870 (defglfun
3871 (("Color3bv" color-3bv) :args
3872 ((:name |v| :type |ColorB| :direction :in :array t :size #x3)) :return
3873 ("void") :category ("drawing") :version ("1.0") :glxropcode ("6") :glsopcode
3874 ("0x0039") :offset ("10")))
3875 (defglfun
3876 (("Color3b" color-3b) :args
3877 ((:name |red| :type |ColorB| :direction :in)
3878 (:name |green| :type |ColorB| :direction :in)
3879 (:name |blue| :type |ColorB| :direction :in))
3880 :return ("void") :category ("drawing") :vectorequiv ("Color3bv") :version
3881 ("1.0") :offset ("9")))
3882 (defglfun
3883 (("Bitmap" bitmap) :args
3884 ((:name |width| :type |SizeI| :direction :in)
3885 (:name |height| :type |SizeI| :direction :in)
3886 (:name |xorig| :type |CoordF| :direction :in)
3887 (:name |yorig| :type |CoordF| :direction :in)
3888 (:name |xmove| :type |CoordF| :direction :in)
3889 (:name |ymove| :type |CoordF| :direction :in)
3890 (:name |bitmap| :type |UInt8| :direction :in :array t :size
3891 (|width| |height|)))
3892 :return ("void") :category ("drawing") :dlflags ("handcode") :glxflags
3893 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("5")
3894 :glsflags ("pixel-unpack") :glsopcode ("0x0038") :wglflags
3895 ("client-handcode" "server-handcode") :offset ("8")))
3896 (defglfun
3897 (("Begin" begin) :args ((:name |mode| :type |BeginMode| :direction :in))
3898 :return ("void") :category ("drawing") :version ("1.0") :glxropcode ("4")
3899 :glsopcode ("0x0037") :offset ("7")))
3901 ;;;; drawing-control
3903 (defglfun
3904 (("TexGeniv" tex-gen-iv) :args
3905 ((:name |coord| :type |TextureCoordName| :direction :in)
3906 (:name |pname| :type |TextureGenParameter| :direction :in)
3907 (:name |params| :type |CheckedInt32| :direction :in :array t :size
3908 (|pname|)))
3909 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3910 ("120") :glsflags ("gl-enum") :glsopcode ("0x00AB") :wglflags ("small-data")
3911 :offset ("193")))
3912 (defglfun
3913 (("TexGeni" tex-gen-i) :args
3914 ((:name |coord| :type |TextureCoordName| :direction :in)
3915 (:name |pname| :type |TextureGenParameter| :direction :in)
3916 (:name |param| :type |CheckedInt32| :direction :in))
3917 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3918 ("119") :glsflags ("gl-enum") :glsopcode ("0x00AA") :wglflags ("small-data")
3919 :offset ("192")))
3920 (defglfun
3921 (("TexGenfv" tex-gen-fv) :args
3922 ((:name |coord| :type |TextureCoordName| :direction :in)
3923 (:name |pname| :type |TextureGenParameter| :direction :in)
3924 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
3925 (|pname|)))
3926 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3927 ("118") :glsflags ("gl-enum") :glsopcode ("0x00A9") :wglflags ("small-data")
3928 :offset ("191")))
3929 (defglfun
3930 (("TexGenf" tex-gen-f) :args
3931 ((:name |coord| :type |TextureCoordName| :direction :in)
3932 (:name |pname| :type |TextureGenParameter| :direction :in)
3933 (:name |param| :type |CheckedFloat32| :direction :in))
3934 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3935 ("117") :glsflags ("gl-enum") :glsopcode ("0x00A8") :wglflags ("small-data")
3936 :offset ("190")))
3937 (defglfun
3938 (("TexGendv" tex-gen-dv) :args
3939 ((:name |coord| :type |TextureCoordName| :direction :in)
3940 (:name |pname| :type |TextureGenParameter| :direction :in)
3941 (:name |params| :type |Float64| :direction :in :array t :size (|pname|)))
3942 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3943 ("116") :glsflags ("gl-enum") :glsopcode ("0x00A7") :wglflags ("small-data")
3944 :offset ("189")))
3945 (defglfun
3946 (("TexGend" tex-gen-d) :args
3947 ((:name |coord| :type |TextureCoordName| :direction :in)
3948 (:name |pname| :type |TextureGenParameter| :direction :in)
3949 (:name |param| :type |Float64| :direction :in))
3950 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3951 ("115") :glsflags ("gl-enum") :glsopcode ("0x00A6") :wglflags ("small-data")
3952 :offset ("188")))
3953 (defglfun
3954 (("TexEnviv" tex-env-iv) :args
3955 ((:name |target| :type |TextureEnvTarget| :direction :in)
3956 (:name |pname| :type |TextureEnvParameter| :direction :in)
3957 (:name |params| :type |CheckedInt32| :direction :in :array t :size
3958 (|pname|)))
3959 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3960 ("114") :glsflags ("gl-enum") :glsopcode ("0x00A5") :wglflags ("small-data")
3961 :offset ("187")))
3962 (defglfun
3963 (("TexEnvi" tex-env-i) :args
3964 ((:name |target| :type |TextureEnvTarget| :direction :in)
3965 (:name |pname| :type |TextureEnvParameter| :direction :in)
3966 (:name |param| :type |CheckedInt32| :direction :in))
3967 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3968 ("113") :glsflags ("gl-enum") :glsopcode ("0x00A4") :wglflags ("small-data")
3969 :offset ("186")))
3970 (defglfun
3971 (("TexEnvfv" tex-env-fv) :args
3972 ((:name |target| :type |TextureEnvTarget| :direction :in)
3973 (:name |pname| :type |TextureEnvParameter| :direction :in)
3974 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
3975 (|pname|)))
3976 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3977 ("112") :glsflags ("gl-enum") :glsopcode ("0x00A3") :wglflags ("small-data")
3978 :offset ("185")))
3979 (defglfun
3980 (("TexEnvf" tex-env-f) :args
3981 ((:name |target| :type |TextureEnvTarget| :direction :in)
3982 (:name |pname| :type |TextureEnvParameter| :direction :in)
3983 (:name |param| :type |CheckedFloat32| :direction :in))
3984 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
3985 ("111") :glsflags ("gl-enum") :glsopcode ("0x00A2") :wglflags ("small-data")
3986 :offset ("184")))
3987 (defglfun
3988 (("TexImage2D" tex-image-2d) :args
3989 ((:name |target| :type |TextureTarget| :direction :in)
3990 (:name |level| :type |CheckedInt32| :direction :in)
3991 (:name |internalformat| :type |TextureComponentCount| :direction :in)
3992 (:name |width| :type |SizeI| :direction :in)
3993 (:name |height| :type |SizeI| :direction :in)
3994 (:name |border| :type |CheckedInt32| :direction :in)
3995 (:name |format| :type |PixelFormat| :direction :in)
3996 (:name |type| :type |PixelType| :direction :in)
3997 (:name |pixels| :type |Void| :direction :in :array t :size
3998 (|format| |type| |width| |height|)))
3999 :return ("void") :category ("drawing-control") :dlflags ("handcode")
4000 :glxflags ("client-handcode" "server-handcode") :version ("1.0") :glxropcode
4001 ("110") :glsflags ("pixel-null" "pixel-unpack") :glsopcode ("0x00A1")
4002 :wglflags ("client-handcode" "server-handcode") :offset ("183")))
4003 (defglfun
4004 (("TexImage1D" tex-image-1d) :args
4005 ((:name |target| :type |TextureTarget| :direction :in)
4006 (:name |level| :type |CheckedInt32| :direction :in)
4007 (:name |internalformat| :type |TextureComponentCount| :direction :in)
4008 (:name |width| :type |SizeI| :direction :in)
4009 (:name |border| :type |CheckedInt32| :direction :in)
4010 (:name |format| :type |PixelFormat| :direction :in)
4011 (:name |type| :type |PixelType| :direction :in)
4012 (:name |pixels| :type |Void| :direction :in :array t :size
4013 (|format| |type| |width|)))
4014 :return ("void") :category ("drawing-control") :dlflags ("handcode")
4015 :glxflags ("client-handcode" "server-handcode") :version ("1.0") :glxropcode
4016 ("109") :glsflags ("pixel-null" "pixel-unpack") :glsopcode ("0x00A0")
4017 :wglflags ("client-handcode" "server-handcode") :offset ("182")))
4018 (defglfun
4019 (("TexParameteriv" tex-parameter-iv) :args
4020 ((:name |target| :type |TextureTarget| :direction :in)
4021 (:name |pname| :type |TextureParameterName| :direction :in)
4022 (:name |params| :type |CheckedInt32| :direction :in :array t :size
4023 (|pname|)))
4024 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4025 ("108") :glsflags ("gl-enum") :glsopcode ("0x009F") :wglflags ("small-data")
4026 :offset ("181")))
4027 (defglfun
4028 (("TexParameteri" tex-parameter-i) :args
4029 ((:name |target| :type |TextureTarget| :direction :in)
4030 (:name |pname| :type |TextureParameterName| :direction :in)
4031 (:name |param| :type |CheckedInt32| :direction :in))
4032 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4033 ("107") :glsflags ("gl-enum") :glsopcode ("0x009E") :wglflags ("small-data")
4034 :offset ("180")))
4035 (defglfun
4036 (("TexParameterfv" tex-parameter-fv) :args
4037 ((:name |target| :type |TextureTarget| :direction :in)
4038 (:name |pname| :type |TextureParameterName| :direction :in)
4039 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
4040 (|pname|)))
4041 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4042 ("106") :glsflags ("gl-enum") :glsopcode ("0x009D") :wglflags ("small-data")
4043 :offset ("179")))
4044 (defglfun
4045 (("TexParameterf" tex-parameter-f) :args
4046 ((:name |target| :type |TextureTarget| :direction :in)
4047 (:name |pname| :type |TextureParameterName| :direction :in)
4048 (:name |param| :type |CheckedFloat32| :direction :in))
4049 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4050 ("105") :glsflags ("gl-enum") :glsopcode ("0x009C") :wglflags ("small-data")
4051 :offset ("178")))
4052 (defglfun
4053 (("ShadeModel" shade-model) :args
4054 ((:name |mode| :type |ShadingModel| :direction :in)) :return ("void")
4055 :category ("drawing-control") :version ("1.0") :glxropcode ("104") :glsopcode
4056 ("0x009B") :offset ("177")))
4057 (defglfun
4058 (("Scissor" scissor) :args
4059 ((:name |x| :type |WinCoord| :direction :in)
4060 (:name |y| :type |WinCoord| :direction :in)
4061 (:name |width| :type |SizeI| :direction :in)
4062 (:name |height| :type |SizeI| :direction :in))
4063 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4064 ("103") :glsopcode ("0x009A") :offset ("176")))
4065 (defglfun
4066 (("PolygonStipple" polygon-stipple) :args
4067 ((:name |mask| :type |UInt8| :direction :in :array t)) :return ("void")
4068 :category ("drawing-control") :dlflags ("handcode") :glxflags
4069 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("102")
4070 :glsflags ("pixel-unpack") :glsopcode ("0x0099") :wglflags
4071 ("client-handcode" "server-handcode") :offset ("175")))
4072 (defglfun
4073 (("PolygonMode" polygon-mode) :args
4074 ((:name |face| :type |MaterialFace| :direction :in)
4075 (:name |mode| :type |PolygonMode| :direction :in))
4076 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4077 ("101") :glsopcode ("0x0098") :offset ("174")))
4078 (defglfun
4079 (("PointSize" point-size) :args
4080 ((:name |size| :type |CheckedFloat32| :direction :in)) :return ("void")
4081 :category ("drawing-control") :version ("1.0") :glxropcode ("100") :glsopcode
4082 ("0x0097") :offset ("173")))
4083 (defglfun
4084 (("Materialiv" material-iv) :args
4085 ((:name |face| :type |MaterialFace| :direction :in)
4086 (:name |pname| :type |MaterialParameter| :direction :in)
4087 (:name |params| :type |CheckedInt32| :direction :in :array t :size
4088 (|pname|)))
4089 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4090 ("99") :glsopcode ("0x0096") :wglflags ("small-data") :offset ("172")))
4091 (defglfun
4092 (("Materiali" material-i) :args
4093 ((:name |face| :type |MaterialFace| :direction :in)
4094 (:name |pname| :type |MaterialParameter| :direction :in)
4095 (:name |param| :type |CheckedInt32| :direction :in))
4096 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4097 ("98") :glsopcode ("0x0095") :wglflags ("small-data") :offset ("171")))
4098 (defglfun
4099 (("Materialfv" material-fv) :args
4100 ((:name |face| :type |MaterialFace| :direction :in)
4101 (:name |pname| :type |MaterialParameter| :direction :in)
4102 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
4103 (|pname|)))
4104 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4105 ("97") :glsopcode ("0x0094") :wglflags ("small-data") :offset ("170")))
4106 (defglfun
4107 (("Materialf" material-f) :args
4108 ((:name |face| :type |MaterialFace| :direction :in)
4109 (:name |pname| :type |MaterialParameter| :direction :in)
4110 (:name |param| :type |CheckedFloat32| :direction :in))
4111 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4112 ("96") :glsopcode ("0x0093") :wglflags ("small-data") :offset ("169")))
4113 (defglfun
4114 (("LineWidth" line-width) :args
4115 ((:name |width| :type |CheckedFloat32| :direction :in)) :return ("void")
4116 :category ("drawing-control") :version ("1.0") :glxropcode ("95") :glsopcode
4117 ("0x0092") :offset ("168")))
4118 (defglfun
4119 (("LineStipple" line-stipple) :args
4120 ((:name |factor| :type |CheckedInt32| :direction :in)
4121 (:name |pattern| :type |LineStipple| :direction :in))
4122 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4123 ("94") :glsopcode ("0x0091") :offset ("167")))
4124 (defglfun
4125 (("LightModeliv" light-model-iv) :args
4126 ((:name |pname| :type |LightModelParameter| :direction :in)
4127 (:name |params| :type |Int32| :direction :in :array t :size (|pname|)))
4128 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4129 ("93") :glsflags ("gl-enum") :glsopcode ("0x0090") :wglflags ("small-data")
4130 :offset ("166")))
4131 (defglfun
4132 (("LightModeli" light-model-i) :args
4133 ((:name |pname| :type |LightModelParameter| :direction :in)
4134 (:name |param| :type |Int32| :direction :in))
4135 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4136 ("92") :glsflags ("gl-enum") :glsopcode ("0x008F") :wglflags ("small-data")
4137 :offset ("165")))
4138 (defglfun
4139 (("LightModelfv" light-model-fv) :args
4140 ((:name |pname| :type |LightModelParameter| :direction :in)
4141 (:name |params| :type |Float32| :direction :in :array t :size (|pname|)))
4142 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4143 ("91") :glsflags ("gl-enum") :glsopcode ("0x008E") :wglflags ("small-data")
4144 :offset ("164")))
4145 (defglfun
4146 (("LightModelf" light-model-f) :args
4147 ((:name |pname| :type |LightModelParameter| :direction :in)
4148 (:name |param| :type |Float32| :direction :in))
4149 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4150 ("90") :glsflags ("gl-enum") :glsopcode ("0x008D") :wglflags ("small-data")
4151 :offset ("163")))
4152 (defglfun
4153 (("Lightiv" light-iv) :args
4154 ((:name |light| :type |LightName| :direction :in)
4155 (:name |pname| :type |LightParameter| :direction :in)
4156 (:name |params| :type |CheckedInt32| :direction :in :array t :size
4157 (|pname|)))
4158 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4159 ("89") :glsopcode ("0x008C") :wglflags ("small-data") :offset ("162")))
4160 (defglfun
4161 (("Lighti" light-i) :args
4162 ((:name |light| :type |LightName| :direction :in)
4163 (:name |pname| :type |LightParameter| :direction :in)
4164 (:name |param| :type |CheckedInt32| :direction :in))
4165 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4166 ("88") :glsopcode ("0x008B") :wglflags ("small-data") :offset ("161")))
4167 (defglfun
4168 (("Lightfv" light-fv) :args
4169 ((:name |light| :type |LightName| :direction :in)
4170 (:name |pname| :type |LightParameter| :direction :in)
4171 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
4172 (|pname|)))
4173 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4174 ("87") :glsopcode ("0x008A") :wglflags ("small-data") :offset ("160")))
4175 (defglfun
4176 (("Lightf" light-f) :args
4177 ((:name |light| :type |LightName| :direction :in)
4178 (:name |pname| :type |LightParameter| :direction :in)
4179 (:name |param| :type |CheckedFloat32| :direction :in))
4180 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4181 ("86") :glsopcode ("0x0089") :wglflags ("small-data") :offset ("159")))
4182 (defglfun
4183 (("Hint" hint) :args
4184 ((:name |target| :type |HintTarget| :direction :in)
4185 (:name |mode| :type |HintMode| :direction :in))
4186 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4187 ("85") :glsopcode ("0x0088") :offset ("158")))
4188 (defglfun
4189 (("FrontFace" front-face) :args
4190 ((:name |mode| :type |FrontFaceDirection| :direction :in)) :return ("void")
4191 :category ("drawing-control") :version ("1.0") :glxropcode ("84") :glsopcode
4192 ("0x0087") :offset ("157")))
4193 (defglfun
4194 (("Fogiv" fog-iv) :args
4195 ((:name |pname| :type |FogParameter| :direction :in)
4196 (:name |params| :type |CheckedInt32| :direction :in :array t :size
4197 (|pname|)))
4198 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4199 ("83") :glsflags ("gl-enum") :glsopcode ("0x0086") :wglflags ("small-data")
4200 :offset ("156")))
4201 (defglfun
4202 (("Fogi" fog-i) :args
4203 ((:name |pname| :type |FogParameter| :direction :in)
4204 (:name |param| :type |CheckedInt32| :direction :in))
4205 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4206 ("82") :glsflags ("gl-enum") :glsopcode ("0x0085") :wglflags ("small-data")
4207 :offset ("155")))
4208 (defglfun
4209 (("Fogfv" fog-fv) :args
4210 ((:name |pname| :type |FogParameter| :direction :in)
4211 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
4212 (|pname|)))
4213 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4214 ("81") :glsflags ("gl-enum") :glsopcode ("0x0084") :wglflags ("small-data")
4215 :offset ("154")))
4216 (defglfun
4217 (("Fogf" fog-f) :args
4218 ((:name |pname| :type |FogParameter| :direction :in)
4219 (:name |param| :type |CheckedFloat32| :direction :in))
4220 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4221 ("80") :glsflags ("gl-enum") :glsopcode ("0x0083") :wglflags ("small-data")
4222 :offset ("153")))
4223 (defglfun
4224 (("CullFace" cull-face) :args
4225 ((:name |mode| :type |CullFaceMode| :direction :in)) :return ("void")
4226 :category ("drawing-control") :version ("1.0") :glxropcode ("79") :glsopcode
4227 ("0x0082") :offset ("152")))
4228 (defglfun
4229 (("ColorMaterial" color-material) :args
4230 ((:name |face| :type |MaterialFace| :direction :in)
4231 (:name |mode| :type |ColorMaterialParameter| :direction :in))
4232 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4233 ("78") :glsopcode ("0x0081") :offset ("151")))
4234 (defglfun
4235 (("ClipPlane" clip-plane) :args
4236 ((:name |plane| :type |ClipPlaneName| :direction :in)
4237 (:name |equation| :type |Float64| :direction :in :array t :size #x4))
4238 :return ("void") :category ("drawing-control") :version ("1.0") :glxropcode
4239 ("77") :glsopcode ("0x0080") :offset ("150")))
4241 ;;;; feedback
4243 (defglfun
4244 (("PushName" push-name) :args
4245 ((:name |name| :type |SelectName| :direction :in)) :return ("void") :category
4246 ("feedback") :version ("1.0") :glxropcode ("125") :glsopcode ("0x00B3")
4247 :offset ("201")))
4248 (defglfun
4249 (("PopName" pop-name) :args nil :return ("void") :category ("feedback")
4250 :version ("1.0") :glxropcode ("124") :glsopcode ("0x00B2") :offset ("200")))
4251 (defglfun
4252 (("PassThrough" pass-through) :args
4253 ((:name |token| :type |FeedbackElement| :direction :in)) :return ("void")
4254 :category ("feedback") :version ("1.0") :glxropcode ("123") :glsopcode
4255 ("0x00B1") :offset ("199")))
4256 (defglfun
4257 (("LoadName" load-name) :args
4258 ((:name |name| :type |SelectName| :direction :in)) :return ("void") :category
4259 ("feedback") :version ("1.0") :glxropcode ("122") :glsopcode ("0x00B0")
4260 :offset ("198")))
4261 (defglfun
4262 (("InitNames" init-names) :args nil :return ("void") :category ("feedback")
4263 :version ("1.0") :glxropcode ("121") :glsopcode ("0x00AF") :offset ("197")))
4264 (defglfun
4265 (("RenderMode" render-mode) :args
4266 ((:name |mode| :type |RenderingMode| :direction :in)) :return ("Int32")
4267 :category ("feedback") :dlflags ("notlistable") :glxflags
4268 ("client-handcode" "server-handcode") :version ("1.0") :glxsingle ("107")
4269 :glsopcode ("0x00AE") :wglflags ("client-handcode" "server-handcode") :offset
4270 ("196")))
4271 (defglfun
4272 (("SelectBuffer" select-buffer) :args
4273 ((:name |size| :type |SizeI| :direction :in)
4274 (:name |buffer| :type |SelectName| :direction :out :array t :size size
4275 :retained t))
4276 :return ("void") :dlflags ("notlistable") :glxflags
4277 ("client-handcode" "server-handcode") :category ("feedback") :version ("1.0")
4278 :glxsingle ("106") :glsflags ("client") :glsopcode ("0x00AD") :wglflags
4279 ("client-handcode" "server-handcode" "batchable") :offset ("195")))
4280 (defglfun
4281 (("FeedbackBuffer" feedback-buffer) :args
4282 ((:name |size| :type |SizeI| :direction :in)
4283 (:name |type| :type |FeedbackType| :direction :in)
4284 (:name |buffer| :type |FeedbackElement| :direction :out :array t :size size
4285 :retained t))
4286 :return ("void") :dlflags ("notlistable") :glxflags
4287 ("client-handcode" "server-handcode") :category ("feedback") :version ("1.0")
4288 :glxsingle ("105") :glsflags ("client") :glsopcode ("0x00AC") :wglflags
4289 ("client-handcode" "server-handcode" "batchable") :offset ("194")))
4291 ;;;; framebuf
4293 (defglfun
4294 (("IndexMask" index-mask) :args
4295 ((:name |mask| :type |MaskedColorIndexValueI| :direction :in)) :return
4296 ("void") :category ("framebuf") :version ("1.0") :glxropcode ("136")
4297 :glsopcode ("0x00BE") :offset ("212")))
4298 (defglfun
4299 (("DepthMask" depth-mask) :args
4300 ((:name |flag| :type |Boolean| :direction :in)) :return ("void") :category
4301 ("framebuf") :version ("1.0") :glxropcode ("135") :glsopcode ("0x00BD")
4302 :offset ("211")))
4303 (defglfun
4304 (("ColorMask" color-mask) :args
4305 ((:name |red| :type |Boolean| :direction :in)
4306 (:name |green| :type |Boolean| :direction :in)
4307 (:name |blue| :type |Boolean| :direction :in)
4308 (:name |alpha| :type |Boolean| :direction :in))
4309 :return ("void") :category ("framebuf") :version ("1.0") :glxropcode ("134")
4310 :glsopcode ("0x00BC") :offset ("210")))
4311 (defglfun
4312 (("StencilMask" stencil-mask) :args
4313 ((:name |mask| :type |MaskedStencilValue| :direction :in)) :return ("void")
4314 :category ("framebuf") :version ("1.0") :glxropcode ("133") :glsopcode
4315 ("0x00BB") :offset ("209")))
4316 (defglfun
4317 (("ClearDepth" clear-depth) :args
4318 ((:name |depth| :type |ClampedFloat64| :direction :in)) :return ("void")
4319 :category ("framebuf") :version ("1.0") :glxropcode ("132") :glsopcode
4320 ("0x00BA") :offset ("208")))
4321 (defglfun
4322 (("ClearStencil" clear-stencil) :args
4323 ((:name |s| :type |StencilValue| :direction :in)) :return ("void") :category
4324 ("framebuf") :version ("1.0") :glxropcode ("131") :glsopcode ("0x00B9")
4325 :offset ("207")))
4326 (defglfun
4327 (("ClearColor" clear-color) :args
4328 ((:name |red| :type |ClampedColorF| :direction :in)
4329 (:name |green| :type |ClampedColorF| :direction :in)
4330 (:name |blue| :type |ClampedColorF| :direction :in)
4331 (:name |alpha| :type |ClampedColorF| :direction :in))
4332 :return ("void") :category ("framebuf") :version ("1.0") :glxropcode ("130")
4333 :glsopcode ("0x00B8") :offset ("206")))
4334 (defglfun
4335 (("ClearIndex" clear-index) :args
4336 ((:name |c| :type |MaskedColorIndexValueF| :direction :in)) :return ("void")
4337 :category ("framebuf") :version ("1.0") :glxropcode ("129") :glsopcode
4338 ("0x00B7") :offset ("205")))
4339 (defglfun
4340 (("ClearAccum" clear-accum) :args
4341 ((:name |red| :type |Float32| :direction :in)
4342 (:name |green| :type |Float32| :direction :in)
4343 (:name |blue| :type |Float32| :direction :in)
4344 (:name |alpha| :type |Float32| :direction :in))
4345 :return ("void") :category ("framebuf") :version ("1.0") :glxropcode ("128")
4346 :glsopcode ("0x00B6") :offset ("204")))
4347 (defglfun
4348 (("Clear" clear) :args ((:name |mask| :type |ClearBufferMask| :direction :in))
4349 :return ("void") :category ("framebuf") :version ("1.0") :glxropcode ("127")
4350 :glsopcode ("0x00B5") :offset ("203")))
4351 (defglfun
4352 (("DrawBuffer" draw-buffer) :args
4353 ((:name |mode| :type |DrawBufferMode| :direction :in)) :return ("void")
4354 :category ("framebuf") :version ("1.0") :glxropcode ("126") :glsopcode
4355 ("0x00B4") :offset ("202")))
4357 ;;;; misc
4359 (defglfun
4360 (("PushAttrib" push-attrib) :args
4361 ((:name |mask| :type |AttribMask| :direction :in)) :return ("void") :category
4362 ("misc") :version ("1.0") :glxropcode ("142") :glsopcode ("0x00C5") :offset
4363 ("219")))
4364 (defglfun
4365 (("PopAttrib" pop-attrib) :args nil :return ("void") :category ("misc")
4366 :version ("1.0") :glxropcode ("141") :glsopcode ("0x00C4") :offset ("218")))
4367 (defglfun
4368 (("Flush" flush) :args nil :return ("void") :dlflags ("notlistable") :glxflags
4369 ("client-handcode" "client-intercept" "server-handcode") :category ("misc")
4370 :version ("1.0") :glxsingle ("142") :glsopcode ("0x00C3") :offset ("217")))
4371 (defglfun
4372 (("Finish" finish) :args nil :return ("void") :dlflags ("notlistable")
4373 :glxflags ("client-handcode" "server-handcode") :category ("misc") :version
4374 ("1.0") :glxsingle ("108") :glsopcode ("0x00C2") :offset ("216")))
4375 (defglfun
4376 (("Enable" enable) :args ((:name |cap| :type |EnableCap| :direction :in))
4377 :return ("void") :category ("misc") :version ("1.0") :dlflags ("handcode")
4378 :glxflags ("client-handcode" "client-intercept") :glxropcode ("139")
4379 :glsflags ("client") :glsopcode ("0x00C1") :offset ("215")))
4380 (defglfun
4381 (("Disable" disable) :args ((:name |cap| :type |EnableCap| :direction :in))
4382 :return ("void") :category ("misc") :version ("1.0") :dlflags ("handcode")
4383 :glxflags ("client-handcode" "client-intercept") :glxropcode ("138")
4384 :glsflags ("client") :glsopcode ("0x00C0") :offset ("214")))
4385 (defglfun
4386 (("Accum" accum) :args
4387 ((:name |op| :type |AccumOp| :direction :in)
4388 (:name |value| :type |CoordF| :direction :in))
4389 :return ("void") :category ("misc") :version ("1.0") :glxropcode ("137")
4390 :glsopcode ("0x00BF") :offset ("213")))
4392 ;;;; modeling
4394 (defglfun
4395 (("EvalPoint2" eval-point-2) :args
4396 ((:name |i| :type |CheckedInt32| :direction :in)
4397 (:name |j| :type |CheckedInt32| :direction :in))
4398 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("158")
4399 :glsopcode ("0x00D5") :offset ("239")))
4400 (defglfun
4401 (("EvalMesh2" eval-mesh-2) :args
4402 ((:name |mode| :type |MeshMode2| :direction :in)
4403 (:name |i1| :type |CheckedInt32| :direction :in)
4404 (:name |i2| :type |CheckedInt32| :direction :in)
4405 (:name |j1| :type |CheckedInt32| :direction :in)
4406 (:name |j2| :type |CheckedInt32| :direction :in))
4407 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("157")
4408 :glsopcode ("0x00D4") :offset ("238")))
4409 (defglfun
4410 (("EvalPoint1" eval-point-1) :args ((:name |i| :type |Int32| :direction :in))
4411 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("156")
4412 :glsopcode ("0x00D3") :offset ("237")))
4413 (defglfun
4414 (("EvalMesh1" eval-mesh-1) :args
4415 ((:name |mode| :type |MeshMode1| :direction :in)
4416 (:name |i1| :type |CheckedInt32| :direction :in)
4417 (:name |i2| :type |CheckedInt32| :direction :in))
4418 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("155")
4419 :glsopcode ("0x00D2") :offset ("236")))
4420 (defglfun
4421 (("EvalCoord2fv" eval-coord-2fv) :args
4422 ((:name |u| :type |CoordF| :direction :in :array t :size #x2)) :return
4423 ("void") :category ("modeling") :version ("1.0") :glxropcode ("154")
4424 :glsopcode ("0x00D1") :offset ("235")))
4425 (defglfun
4426 (("EvalCoord2f" eval-coord-2f) :args
4427 ((:name |u| :type |CoordF| :direction :in)
4428 (:name |v| :type |CoordF| :direction :in))
4429 :return ("void") :category ("modeling") :vectorequiv ("EvalCoord2fv")
4430 :version ("1.0") :offset ("234")))
4431 (defglfun
4432 (("EvalCoord2dv" eval-coord-2dv) :args
4433 ((:name |u| :type |CoordD| :direction :in :array t :size #x2)) :return
4434 ("void") :category ("modeling") :version ("1.0") :glxropcode ("153")
4435 :glsopcode ("0x00D0") :offset ("233")))
4436 (defglfun
4437 (("EvalCoord2d" eval-coord-2d) :args
4438 ((:name |u| :type |CoordD| :direction :in)
4439 (:name |v| :type |CoordD| :direction :in))
4440 :return ("void") :category ("modeling") :vectorequiv ("EvalCoord2dv")
4441 :version ("1.0") :offset ("232")))
4442 (defglfun
4443 (("EvalCoord1fv" eval-coord-1fv) :args
4444 ((:name |u| :type |CoordF| :direction :in :array t :size #x1)) :return
4445 ("void") :category ("modeling") :version ("1.0") :glxropcode ("152")
4446 :glsopcode ("0x00CF") :offset ("231")))
4447 (defglfun
4448 (("EvalCoord1f" eval-coord-1f) :args
4449 ((:name |u| :type |CoordF| :direction :in)) :return ("void") :category
4450 ("modeling") :vectorequiv ("EvalCoord1fv") :version ("1.0") :offset ("230")))
4451 (defglfun
4452 (("EvalCoord1dv" eval-coord-1dv) :args
4453 ((:name |u| :type |CoordD| :direction :in :array t :size #x1)) :return
4454 ("void") :category ("modeling") :version ("1.0") :glxropcode ("151")
4455 :glsopcode ("0x00CE") :offset ("229")))
4456 (defglfun
4457 (("EvalCoord1d" eval-coord-1d) :args
4458 ((:name |u| :type |CoordD| :direction :in)) :return ("void") :category
4459 ("modeling") :vectorequiv ("EvalCoord1dv") :version ("1.0") :offset ("228")))
4460 (defglfun
4461 (("MapGrid2f" map-grid-2f) :args
4462 ((:name |un| :type |Int32| :direction :in)
4463 (:name |u1| :type |CoordF| :direction :in)
4464 (:name |u2| :type |CoordF| :direction :in)
4465 (:name |vn| :type |Int32| :direction :in)
4466 (:name |v1| :type |CoordF| :direction :in)
4467 (:name |v2| :type |CoordF| :direction :in))
4468 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("150")
4469 :glsopcode ("0x00CD") :offset ("227")))
4470 (defglfun
4471 (("MapGrid2d" map-grid-2d) :args
4472 ((:name |un| :type |Int32| :direction :in)
4473 (:name |u1| :type |CoordD| :direction :in)
4474 (:name |u2| :type |CoordD| :direction :in)
4475 (:name |vn| :type |Int32| :direction :in)
4476 (:name |v1| :type |CoordD| :direction :in)
4477 (:name |v2| :type |CoordD| :direction :in))
4478 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("149")
4479 :glsopcode ("0x00CC") :offset ("226")))
4480 (defglfun
4481 (("MapGrid1f" map-grid-1f) :args
4482 ((:name |un| :type |Int32| :direction :in)
4483 (:name |u1| :type |CoordF| :direction :in)
4484 (:name |u2| :type |CoordF| :direction :in))
4485 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("148")
4486 :glsopcode ("0x00CB") :offset ("225")))
4487 (defglfun
4488 (("MapGrid1d" map-grid-1d) :args
4489 ((:name |un| :type |Int32| :direction :in)
4490 (:name |u1| :type |CoordD| :direction :in)
4491 (:name |u2| :type |CoordD| :direction :in))
4492 :return ("void") :category ("modeling") :version ("1.0") :glxropcode ("147")
4493 :glsopcode ("0x00CA") :offset ("224")))
4494 (defglfun
4495 (("Map2f" map-2f) :args
4496 ((:name |target| :type |MapTarget| :direction :in)
4497 (:name |u1| :type |CoordF| :direction :in)
4498 (:name |u2| :type |CoordF| :direction :in)
4499 (:name |ustride| :type |Int32| :direction :in)
4500 (:name |uorder| :type |CheckedInt32| :direction :in)
4501 (:name |v1| :type |CoordF| :direction :in)
4502 (:name |v2| :type |CoordF| :direction :in)
4503 (:name |vstride| :type |Int32| :direction :in)
4504 (:name |vorder| :type |CheckedInt32| :direction :in)
4505 (:name |points| :type |CoordF| :direction :in :array t :size
4506 (|target| |ustride| |uorder| |vstride| |vorder|)))
4507 :return ("void") :category ("modeling") :dlflags ("handcode") :glxflags
4508 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("146")
4509 :glsflags ("capture-handcode") :glsopcode ("0x00C9") :wglflags
4510 ("client-handcode" "server-handcode") :offset ("223")))
4511 (defglfun
4512 (("Map2d" map-2d) :args
4513 ((:name |target| :type |MapTarget| :direction :in)
4514 (:name |u1| :type |CoordD| :direction :in)
4515 (:name |u2| :type |CoordD| :direction :in)
4516 (:name |ustride| :type |Int32| :direction :in)
4517 (:name |uorder| :type |CheckedInt32| :direction :in)
4518 (:name |v1| :type |CoordD| :direction :in)
4519 (:name |v2| :type |CoordD| :direction :in)
4520 (:name |vstride| :type |Int32| :direction :in)
4521 (:name |vorder| :type |CheckedInt32| :direction :in)
4522 (:name |points| :type |CoordD| :direction :in :array t :size
4523 (|target| |ustride| |uorder| |vstride| |vorder|)))
4524 :return ("void") :category ("modeling") :dlflags ("handcode") :glxflags
4525 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("145")
4526 :glsflags ("capture-handcode") :glsopcode ("0x00C8") :wglflags
4527 ("client-handcode" "server-handcode") :offset ("222")))
4528 (defglfun
4529 (("Map1f" map-1f) :args
4530 ((:name |target| :type |MapTarget| :direction :in)
4531 (:name |u1| :type |CoordF| :direction :in)
4532 (:name |u2| :type |CoordF| :direction :in)
4533 (:name |stride| :type |Int32| :direction :in)
4534 (:name |order| :type |CheckedInt32| :direction :in)
4535 (:name |points| :type |CoordF| :direction :in :array t :size
4536 (|target| |stride| |order|)))
4537 :return ("void") :category ("modeling") :dlflags ("handcode") :glxflags
4538 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("144")
4539 :glsflags ("capture-handcode") :glsopcode ("0x00C7") :wglflags
4540 ("client-handcode" "server-handcode") :offset ("221")))
4541 (defglfun
4542 (("Map1d" map-1d) :args
4543 ((:name |target| :type |MapTarget| :direction :in)
4544 (:name |u1| :type |CoordD| :direction :in)
4545 (:name |u2| :type |CoordD| :direction :in)
4546 (:name |stride| :type |Int32| :direction :in)
4547 (:name |order| :type |CheckedInt32| :direction :in)
4548 (:name |points| :type |CoordD| :direction :in :array t :size
4549 (|target| |stride| |order|)))
4550 :return ("void") :category ("modeling") :dlflags ("handcode") :glxflags
4551 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("143")
4552 :glsflags ("capture-handcode") :glsopcode ("0x00C6") :wglflags
4553 ("client-handcode" "server-handcode") :offset ("220")))
4555 ;;;; pixel-op
4557 (defglfun
4558 (("DepthFunc" depth-func) :args
4559 ((:name |func| :type |DepthFunction| :direction :in)) :return ("void")
4560 :category ("pixel-op") :version ("1.0") :glxropcode ("164") :glsopcode
4561 ("0x00DB") :offset ("245")))
4562 (defglfun
4563 (("StencilOp" stencil-op) :args
4564 ((:name |fail| :type |StencilOp| :direction :in)
4565 (:name |zfail| :type |StencilOp| :direction :in)
4566 (:name |zpass| :type |StencilOp| :direction :in))
4567 :return ("void") :category ("pixel-op") :version ("1.0") :glxropcode ("163")
4568 :glsopcode ("0x00DA") :offset ("244")))
4569 (defglfun
4570 (("StencilFunc" stencil-func) :args
4571 ((:name |func| :type |StencilFunction| :direction :in)
4572 (:name |ref| :type |ClampedStencilValue| :direction :in)
4573 (:name |mask| :type |MaskedStencilValue| :direction :in))
4574 :return ("void") :category ("pixel-op") :version ("1.0") :glxropcode ("162")
4575 :glsopcode ("0x00D9") :offset ("243")))
4576 (defglfun
4577 (("LogicOp" logic-op) :args ((:name |opcode| :type |LogicOp| :direction :in))
4578 :return ("void") :category ("pixel-op") :version ("1.0") :glxropcode ("161")
4579 :glsopcode ("0x00D8") :offset ("242")))
4580 (defglfun
4581 (("BlendFunc" blend-func) :args
4582 ((:name |sfactor| :type |BlendingFactorSrc| :direction :in)
4583 (:name |dfactor| :type |BlendingFactorDest| :direction :in))
4584 :return ("void") :category ("pixel-op") :version ("1.0") :glxropcode ("160")
4585 :glsopcode ("0x00D7") :offset ("241")))
4586 (defglfun
4587 (("AlphaFunc" alpha-func) :args
4588 ((:name |func| :type |AlphaFunction| :direction :in)
4589 (:name |ref| :type |ClampedFloat32| :direction :in))
4590 :return ("void") :category ("pixel-op") :version ("1.0") :glxropcode ("159")
4591 :glsopcode ("0x00D6") :offset ("240")))
4593 ;;;; pixel-rw
4595 (defglfun
4596 (("DrawPixels" draw-pixels) :args
4597 ((:name |width| :type |SizeI| :direction :in)
4598 (:name |height| :type |SizeI| :direction :in)
4599 (:name |format| :type |PixelFormat| :direction :in)
4600 (:name |type| :type |PixelType| :direction :in)
4601 (:name |pixels| :type |Void| :direction :in :array t :size
4602 (|format| |type| |width| |height|)))
4603 :return ("void") :category ("pixel-rw") :dlflags ("handcode") :glxflags
4604 ("client-handcode" "server-handcode") :version ("1.0") :glxropcode ("173")
4605 :glsflags ("pixel-unpack") :glsopcode ("0x00E7") :wglflags
4606 ("client-handcode" "server-handcode") :offset ("257")))
4607 (defglfun
4608 (("ReadPixels" read-pixels) :args
4609 ((:name |x| :type |WinCoord| :direction :in)
4610 (:name |y| :type |WinCoord| :direction :in)
4611 (:name |width| :type |SizeI| :direction :in)
4612 (:name |height| :type |SizeI| :direction :in)
4613 (:name |format| :type |PixelFormat| :direction :in)
4614 (:name |type| :type |PixelType| :direction :in)
4615 (:name |pixels| :type |Void| :direction :out :array t :size
4616 (|format| |type| |width| |height|)))
4617 :return ("void") :category ("pixel-rw") :dlflags ("notlistable") :glxflags
4618 ("client-handcode" "server-handcode") :version ("1.0") :glxsingle ("111")
4619 :glsflags ("get" "pixel-pack") :glsopcode ("0x00E6") :wglflags
4620 ("client-handcode" "server-handcode") :offset ("256")))
4621 (defglfun
4622 (("CopyPixels" copy-pixels) :args
4623 ((:name |x| :type |WinCoord| :direction :in)
4624 (:name |y| :type |WinCoord| :direction :in)
4625 (:name |width| :type |SizeI| :direction :in)
4626 (:name |height| :type |SizeI| :direction :in)
4627 (:name |type| :type |PixelCopyType| :direction :in))
4628 :return ("void") :category ("pixel-rw") :version ("1.0") :glxropcode ("172")
4629 :glsopcode ("0x00E5") :offset ("255")))
4630 (defglfun
4631 (("ReadBuffer" read-buffer) :args
4632 ((:name |mode| :type |ReadBufferMode| :direction :in)) :return ("void")
4633 :category ("pixel-rw") :version ("1.0") :glxropcode ("171") :glsopcode
4634 ("0x00E4") :offset ("254")))
4635 (defglfun
4636 (("PixelMapusv" pixel-map-usv) :args
4637 ((:name |map| :type |PixelMap| :direction :in)
4638 (:name |mapsize| :type |CheckedInt32| :direction :in)
4639 (:name |values| :type |UInt16| :direction :in :array t :size mapsize))
4640 :return ("void") :category ("pixel-rw") :glxflags ("client-handcode")
4641 :version ("1.0") :glxropcode ("170") :glsopcode ("0x00E3") :offset ("253")))
4642 (defglfun
4643 (("PixelMapuiv" pixel-map-uiv) :args
4644 ((:name |map| :type |PixelMap| :direction :in)
4645 (:name |mapsize| :type |CheckedInt32| :direction :in)
4646 (:name |values| :type |UInt32| :direction :in :array t :size mapsize))
4647 :return ("void") :category ("pixel-rw") :glxflags ("client-handcode")
4648 :version ("1.0") :glxropcode ("169") :glsopcode ("0x00E2") :offset ("252")))
4649 (defglfun
4650 (("PixelMapfv" pixel-map-fv) :args
4651 ((:name |map| :type |PixelMap| :direction :in)
4652 (:name |mapsize| :type |CheckedInt32| :direction :in)
4653 (:name |values| :type |Float32| :direction :in :array t :size mapsize))
4654 :return ("void") :category ("pixel-rw") :glxflags ("client-handcode")
4655 :version ("1.0") :glxropcode ("168") :glsopcode ("0x00E1") :offset ("251")))
4656 (defglfun
4657 (("PixelStorei" pixel-store-i) :args
4658 ((:name |pname| :type |PixelStoreParameter| :direction :in)
4659 (:name |param| :type |CheckedInt32| :direction :in))
4660 :return ("void") :dlflags ("notlistable") :glxflags ("client-handcode")
4661 :category ("pixel-rw") :version ("1.0") :glxsingle ("110") :glsflags
4662 ("client" "gl-enum") :glsopcode ("0x00E0") :wglflags ("batchable") :offset
4663 ("250")))
4664 (defglfun
4665 (("PixelStoref" pixel-store-f) :args
4666 ((:name |pname| :type |PixelStoreParameter| :direction :in)
4667 (:name |param| :type |CheckedFloat32| :direction :in))
4668 :return ("void") :dlflags ("notlistable") :glxflags ("client-handcode")
4669 :category ("pixel-rw") :version ("1.0") :glxsingle ("109") :glsflags
4670 ("client" "gl-enum") :glsopcode ("0x00DF") :wglflags ("batchable") :offset
4671 ("249")))
4672 (defglfun
4673 (("PixelTransferi" pixel-transfer-i) :args
4674 ((:name |pname| :type |PixelTransferParameter| :direction :in)
4675 (:name |param| :type |CheckedInt32| :direction :in))
4676 :return ("void") :category ("pixel-rw") :version ("1.0") :glxropcode ("167")
4677 :glsflags ("gl-enum") :glsopcode ("0x00DE") :offset ("248")))
4678 (defglfun
4679 (("PixelTransferf" pixel-transfer-f) :args
4680 ((:name |pname| :type |PixelTransferParameter| :direction :in)
4681 (:name |param| :type |CheckedFloat32| :direction :in))
4682 :return ("void") :category ("pixel-rw") :version ("1.0") :glxropcode ("166")
4683 :glsflags ("gl-enum") :glsopcode ("0x00DD") :offset ("247")))
4684 (defglfun
4685 (("PixelZoom" pixel-zoom) :args
4686 ((:name |xfactor| :type |Float32| :direction :in)
4687 (:name |yfactor| :type |Float32| :direction :in))
4688 :return ("void") :category ("pixel-rw") :version ("1.0") :glxropcode ("165")
4689 :glsopcode ("0x00DC") :offset ("246")))
4691 ;;;; state-req
4693 (defglfun
4694 (("IsList" is-list) :args ((:name |list| :type |List| :direction :in)) :return
4695 ("Boolean") :category ("state-req") :dlflags ("notlistable") :version ("1.0")
4696 :glxsingle ("141") :glsflags ("get") :glsopcode ("0x0105") :offset ("287")))
4697 (defglfun
4698 (("IsEnabled" is-enabled) :args
4699 ((:name |cap| :type |EnableCap| :direction :in)) :return ("Boolean")
4700 :category ("state-req") :dlflags ("notlistable") :version ("1.0") :glxflags
4701 ("client-handcode" "client-intercept") :glxsingle ("140") :glsflags
4702 ("client" "get") :glsopcode ("0x0104") :offset ("286")))
4703 (defglfun
4704 (("GetTexLevelParameteriv" get-tex-level-parameter-iv) :args
4705 ((:name |target| :type |TextureTarget| :direction :in)
4706 (:name |level| :type |CheckedInt32| :direction :in)
4707 (:name |pname| :type |GetTextureParameter| :direction :in)
4708 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4709 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4710 ("1.0") :glxsingle ("139") :glsflags ("get") :glsopcode ("0x0103") :wglflags
4711 ("small-data") :offset ("285")))
4712 (defglfun
4713 (("GetTexLevelParameterfv" get-tex-level-parameter-fv) :args
4714 ((:name |target| :type |TextureTarget| :direction :in)
4715 (:name |level| :type |CheckedInt32| :direction :in)
4716 (:name |pname| :type |GetTextureParameter| :direction :in)
4717 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4718 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4719 ("1.0") :glxsingle ("138") :glsflags ("get") :glsopcode ("0x0102") :wglflags
4720 ("small-data") :offset ("284")))
4721 (defglfun
4722 (("GetTexParameteriv" get-tex-parameter-iv) :args
4723 ((:name |target| :type |TextureTarget| :direction :in)
4724 (:name |pname| :type |GetTextureParameter| :direction :in)
4725 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4726 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4727 ("1.0") :glxsingle ("137") :glsflags ("get") :glsopcode ("0x0101") :wglflags
4728 ("small-data") :offset ("283")))
4729 (defglfun
4730 (("GetTexParameterfv" get-tex-parameter-fv) :args
4731 ((:name |target| :type |TextureTarget| :direction :in)
4732 (:name |pname| :type |GetTextureParameter| :direction :in)
4733 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4734 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4735 ("1.0") :glxsingle ("136") :glsflags ("get") :glsopcode ("0x0100") :wglflags
4736 ("small-data") :offset ("282")))
4737 (defglfun
4738 (("GetTexImage" get-tex-image) :args
4739 ((:name |target| :type |TextureTarget| :direction :in)
4740 (:name |level| :type |CheckedInt32| :direction :in)
4741 (:name |format| :type |PixelFormat| :direction :in)
4742 (:name |type| :type |PixelType| :direction :in)
4743 (:name |pixels| :type |Void| :direction :out :array t :size
4744 (|target| |level| |format| |type|)))
4745 :return ("void") :category ("state-req") :dlflags ("notlistable") :glxflags
4746 ("client-handcode" "server-handcode") :version ("1.0") :glxsingle ("135")
4747 :glsflags ("get" "pixel-pack") :glsopcode ("0x00FF") :wglflags
4748 ("client-handcode" "server-handcode") :offset ("281")))
4749 (defglfun
4750 (("GetTexGeniv" get-tex-gen-iv) :args
4751 ((:name |coord| :type |TextureCoordName| :direction :in)
4752 (:name |pname| :type |TextureGenParameter| :direction :in)
4753 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4754 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4755 ("1.0") :glxsingle ("134") :glsflags ("get") :glsopcode ("0x00FE") :wglflags
4756 ("small-data") :offset ("280")))
4757 (defglfun
4758 (("GetTexGenfv" get-tex-gen-fv) :args
4759 ((:name |coord| :type |TextureCoordName| :direction :in)
4760 (:name |pname| :type |TextureGenParameter| :direction :in)
4761 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4762 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4763 ("1.0") :glxsingle ("133") :glsflags ("get") :glsopcode ("0x00FD") :wglflags
4764 ("small-data") :offset ("279")))
4765 (defglfun
4766 (("GetTexGendv" get-tex-gen-dv) :args
4767 ((:name |coord| :type |TextureCoordName| :direction :in)
4768 (:name |pname| :type |TextureGenParameter| :direction :in)
4769 (:name |params| :type |Float64| :direction :out :array t :size (|pname|)))
4770 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4771 ("1.0") :glxsingle ("132") :glsflags ("get") :glsopcode ("0x00FC") :wglflags
4772 ("small-data") :offset ("278")))
4773 (defglfun
4774 (("GetTexEnviv" get-tex-env-iv) :args
4775 ((:name |target| :type |TextureEnvTarget| :direction :in)
4776 (:name |pname| :type |TextureEnvParameter| :direction :in)
4777 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4778 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4779 ("1.0") :glxsingle ("131") :glsflags ("get") :glsopcode ("0x00FB") :wglflags
4780 ("small-data") :offset ("277")))
4781 (defglfun
4782 (("GetTexEnvfv" get-tex-env-fv) :args
4783 ((:name |target| :type |TextureEnvTarget| :direction :in)
4784 (:name |pname| :type |TextureEnvParameter| :direction :in)
4785 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4786 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4787 ("1.0") :glxsingle ("130") :glsflags ("get") :glsopcode ("0x00FA") :wglflags
4788 ("small-data") :offset ("276")))
4789 (defglfun
4790 (("GetString" get-string) :args
4791 ((:name |name| :type |StringName| :direction :in)) :return ("String")
4792 :category ("state-req") :dlflags ("notlistable") :glxflags
4793 ("client-handcode" "server-handcode") :version ("1.0") :glxsingle ("129")
4794 :glsflags ("get") :glsopcode ("0x00F9") :wglflags
4795 ("client-handcode" "server-handcode") :offset ("275")))
4796 (defglfun
4797 (("GetPolygonStipple" get-polygon-stipple) :args
4798 ((:name |mask| :type |UInt8| :direction :out :array t)) :return ("void")
4799 :category ("state-req") :dlflags ("notlistable") :glxflags
4800 ("client-handcode" "server-handcode") :version ("1.0") :glxsingle ("128")
4801 :glsflags ("get" "pixel-pack") :glsopcode ("0x00F8") :wglflags
4802 ("client-handcode" "server-handcode") :offset ("274")))
4803 (defglfun
4804 (("GetPixelMapusv" get-pixel-map-usv) :args
4805 ((:name |map| :type |PixelMap| :direction :in)
4806 (:name |values| :type |UInt16| :direction :out :array t :size (|map|)))
4807 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4808 ("1.0") :glxsingle ("127") :glsflags ("get") :glsopcode ("0x00F7") :offset
4809 ("273")))
4810 (defglfun
4811 (("GetPixelMapuiv" get-pixel-map-uiv) :args
4812 ((:name |map| :type |PixelMap| :direction :in)
4813 (:name |values| :type |UInt32| :direction :out :array t :size (|map|)))
4814 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4815 ("1.0") :glxsingle ("126") :glsflags ("get") :glsopcode ("0x00F6") :offset
4816 ("272")))
4817 (defglfun
4818 (("GetPixelMapfv" get-pixel-map-fv) :args
4819 ((:name |map| :type |PixelMap| :direction :in)
4820 (:name |values| :type |Float32| :direction :out :array t :size (|map|)))
4821 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4822 ("1.0") :glxsingle ("125") :glsflags ("get") :glsopcode ("0x00F5") :offset
4823 ("271")))
4824 (defglfun
4825 (("GetMaterialiv" get-material-iv) :args
4826 ((:name |face| :type |MaterialFace| :direction :in)
4827 (:name |pname| :type |MaterialParameter| :direction :in)
4828 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4829 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4830 ("1.0") :glxsingle ("124") :glsflags ("get") :glsopcode ("0x00F4") :wglflags
4831 ("small-data") :offset ("270")))
4832 (defglfun
4833 (("GetMaterialfv" get-material-fv) :args
4834 ((:name |face| :type |MaterialFace| :direction :in)
4835 (:name |pname| :type |MaterialParameter| :direction :in)
4836 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4837 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4838 ("1.0") :glxsingle ("123") :glsflags ("get") :glsopcode ("0x00F3") :wglflags
4839 ("small-data") :offset ("269")))
4840 (defglfun
4841 (("GetMapiv" get-map-iv) :args
4842 ((:name |target| :type |MapTarget| :direction :in)
4843 (:name |query| :type |GetMapQuery| :direction :in)
4844 (:name |v| :type |Int32| :direction :out :array t :size (|target| |query|)))
4845 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4846 ("1.0") :glxsingle ("122") :glsflags ("get") :glsopcode ("0x00F2") :offset
4847 ("268")))
4848 (defglfun
4849 (("GetMapfv" get-map-fv) :args
4850 ((:name |target| :type |MapTarget| :direction :in)
4851 (:name |query| :type |GetMapQuery| :direction :in)
4852 (:name |v| :type |Float32| :direction :out :array t :size
4853 (|target| |query|)))
4854 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4855 ("1.0") :glxsingle ("121") :glsflags ("get") :glsopcode ("0x00F1") :offset
4856 ("267")))
4857 (defglfun
4858 (("GetMapdv" get-map-dv) :args
4859 ((:name |target| :type |MapTarget| :direction :in)
4860 (:name |query| :type |GetMapQuery| :direction :in)
4861 (:name |v| :type |Float64| :direction :out :array t :size
4862 (|target| |query|)))
4863 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4864 ("1.0") :glxsingle ("120") :glsflags ("get") :glsopcode ("0x00F0") :offset
4865 ("266")))
4866 (defglfun
4867 (("GetLightiv" get-light-iv) :args
4868 ((:name |light| :type |LightName| :direction :in)
4869 (:name |pname| :type |LightParameter| :direction :in)
4870 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4871 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4872 ("1.0") :glxsingle ("119") :glsflags ("get") :glsopcode ("0x00EF") :wglflags
4873 ("small-data") :offset ("265")))
4874 (defglfun
4875 (("GetLightfv" get-light-fv) :args
4876 ((:name |light| :type |LightName| :direction :in)
4877 (:name |pname| :type |LightParameter| :direction :in)
4878 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4879 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4880 ("1.0") :glxsingle ("118") :glsflags ("get") :glsopcode ("0x00EE") :wglflags
4881 ("small-data") :offset ("264")))
4882 (defglfun
4883 (("GetIntegerv" get-integerv) :args
4884 ((:name |pname| :type |GetPName| :direction :in)
4885 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
4886 :return ("void") :category ("state-req") :dlflags ("notlistable") :glxflags
4887 ("client-handcode") :version ("1.0") :glxsingle ("117") :glsflags
4888 ("client" "get") :glsopcode ("0x00ED") :wglflags ("small-data") :offset
4889 ("263")))
4890 (defglfun
4891 (("GetFloatv" get-floatv) :args
4892 ((:name |pname| :type |GetPName| :direction :in)
4893 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
4894 :return ("void") :category ("state-req") :dlflags ("notlistable") :glxflags
4895 ("client-handcode") :version ("1.0") :glxsingle ("116") :glsflags
4896 ("client" "get") :glsopcode ("0x00EC") :wglflags ("small-data") :offset
4897 ("262")))
4898 (defglfun
4899 (("GetError" get-error) :args nil :return ("ErrorCode") :category
4900 ("state-req") :dlflags ("notlistable") :glxflags ("client-handcode") :version
4901 ("1.0") :glxsingle ("115") :glsflags ("get") :glsopcode ("0x00EB") :offset
4902 ("261")))
4903 (defglfun
4904 (("GetDoublev" get-doublev) :args
4905 ((:name |pname| :type |GetPName| :direction :in)
4906 (:name |params| :type |Float64| :direction :out :array t :size (|pname|)))
4907 :return ("void") :category ("state-req") :dlflags ("notlistable") :glxflags
4908 ("client-handcode") :version ("1.0") :glxsingle ("114") :glsflags
4909 ("client" "get") :glsopcode ("0x00EA") :wglflags ("small-data") :offset
4910 ("260")))
4911 (defglfun
4912 (("GetClipPlane" get-clip-plane) :args
4913 ((:name |plane| :type |ClipPlaneName| :direction :in)
4914 (:name |equation| :type |Float64| :direction :out :array t :size #x4))
4915 :return ("void") :category ("state-req") :dlflags ("notlistable") :version
4916 ("1.0") :glxsingle ("113") :glxflags ("client-handcode" "server-handcode")
4917 :glsflags ("get") :glsopcode ("0x00E9") :offset ("259")))
4918 (defglfun
4919 (("GetBooleanv" get-booleanv) :args
4920 ((:name |pname| :type |GetPName| :direction :in)
4921 (:name |params| :type |Boolean| :direction :out :array t :size (|pname|)))
4922 :return ("void") :category ("state-req") :dlflags ("notlistable") :glxflags
4923 ("client-handcode") :version ("1.0") :glxsingle ("112") :glsflags
4924 ("client" "get") :glsopcode ("0x00E8") :wglflags ("small-data") :offset
4925 ("258")))
4927 ;;;; xform
4929 (defglfun
4930 (("Viewport" viewport) :args
4931 ((:name |x| :type |WinCoord| :direction :in)
4932 (:name |y| :type |WinCoord| :direction :in)
4933 (:name |width| :type |SizeI| :direction :in)
4934 (:name |height| :type |SizeI| :direction :in))
4935 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("191")
4936 :glsopcode ("0x0117") :offset ("305")))
4937 (defglfun
4938 (("Translatef" translate-f) :args
4939 ((:name |x| :type |Float32| :direction :in)
4940 (:name |y| :type |Float32| :direction :in)
4941 (:name |z| :type |Float32| :direction :in))
4942 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("190")
4943 :glsopcode ("0x0116") :offset ("304")))
4944 (defglfun
4945 (("Translated" translate-d) :args
4946 ((:name |x| :type |Float64| :direction :in)
4947 (:name |y| :type |Float64| :direction :in)
4948 (:name |z| :type |Float64| :direction :in))
4949 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("189")
4950 :glsopcode ("0x0115") :offset ("303")))
4951 (defglfun
4952 (("Scalef" scale-f) :args
4953 ((:name |x| :type |Float32| :direction :in)
4954 (:name |y| :type |Float32| :direction :in)
4955 (:name |z| :type |Float32| :direction :in))
4956 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("188")
4957 :glsopcode ("0x0114") :offset ("302")))
4958 (defglfun
4959 (("Scaled" scale-d) :args
4960 ((:name |x| :type |Float64| :direction :in)
4961 (:name |y| :type |Float64| :direction :in)
4962 (:name |z| :type |Float64| :direction :in))
4963 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("187")
4964 :glsopcode ("0x0113") :offset ("301")))
4965 (defglfun
4966 (("Rotatef" rotate-f) :args
4967 ((:name |angle| :type |Float32| :direction :in)
4968 (:name |x| :type |Float32| :direction :in)
4969 (:name |y| :type |Float32| :direction :in)
4970 (:name |z| :type |Float32| :direction :in))
4971 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("186")
4972 :glsopcode ("0x0112") :offset ("300")))
4973 (defglfun
4974 (("Rotated" rotate-d) :args
4975 ((:name |angle| :type |Float64| :direction :in)
4976 (:name |x| :type |Float64| :direction :in)
4977 (:name |y| :type |Float64| :direction :in)
4978 (:name |z| :type |Float64| :direction :in))
4979 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("185")
4980 :glsopcode ("0x0111") :offset ("299")))
4981 (defglfun
4982 (("PushMatrix" push-matrix) :args nil :return ("void") :category ("xform")
4983 :version ("1.0") :glxropcode ("184") :glsopcode ("0x0110") :offset ("298")))
4984 (defglfun
4985 (("PopMatrix" pop-matrix) :args nil :return ("void") :category ("xform")
4986 :version ("1.0") :glxropcode ("183") :glsopcode ("0x010F") :offset ("297")))
4987 (defglfun
4988 (("Ortho" ortho) :args
4989 ((:name |left| :type |Float64| :direction :in)
4990 (:name |right| :type |Float64| :direction :in)
4991 (:name |bottom| :type |Float64| :direction :in)
4992 (:name |top| :type |Float64| :direction :in)
4993 (:name |zNear| :type |Float64| :direction :in)
4994 (:name |zFar| :type |Float64| :direction :in))
4995 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("182")
4996 :glsopcode ("0x010E") :offset ("296")))
4997 (defglfun
4998 (("MultMatrixd" mult-matrix-d) :args
4999 ((:name |m| :type |Float64| :direction :in :array t :size #x10)) :return
5000 ("void") :category ("xform") :version ("1.0") :glxropcode ("181") :glsflags
5001 ("matrix") :glsopcode ("0x010D") :offset ("295")))
5002 (defglfun
5003 (("MultMatrixf" mult-matrix-f) :args
5004 ((:name |m| :type |Float32| :direction :in :array t :size #x10)) :return
5005 ("void") :category ("xform") :version ("1.0") :glxropcode ("180") :glsflags
5006 ("matrix") :glsopcode ("0x010C") :offset ("294")))
5007 (defglfun
5008 (("MatrixMode" matrix-mode) :args
5009 ((:name |mode| :type |MatrixMode| :direction :in)) :return ("void") :category
5010 ("xform") :version ("1.0") :glxropcode ("179") :glsopcode ("0x010B") :offset
5011 ("293")))
5012 (defglfun
5013 (("LoadMatrixd" load-matrix-d) :args
5014 ((:name |m| :type |Float64| :direction :in :array t :size #x10)) :return
5015 ("void") :category ("xform") :version ("1.0") :glxropcode ("178") :glsflags
5016 ("matrix") :glsopcode ("0x010A") :offset ("292")))
5017 (defglfun
5018 (("LoadMatrixf" load-matrix-f) :args
5019 ((:name |m| :type |Float32| :direction :in :array t :size #x10)) :return
5020 ("void") :category ("xform") :version ("1.0") :glxropcode ("177") :glsflags
5021 ("matrix") :glsopcode ("0x0109") :offset ("291")))
5022 (defglfun
5023 (("LoadIdentity" load-identity) :args nil :return ("void") :category ("xform")
5024 :version ("1.0") :glxropcode ("176") :glsopcode ("0x0108") :offset ("290")))
5025 (defglfun
5026 (("Frustum" frustum) :args
5027 ((:name |left| :type |Float64| :direction :in)
5028 (:name |right| :type |Float64| :direction :in)
5029 (:name |bottom| :type |Float64| :direction :in)
5030 (:name |top| :type |Float64| :direction :in)
5031 (:name |zNear| :type |Float64| :direction :in)
5032 (:name |zFar| :type |Float64| :direction :in))
5033 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("175")
5034 :glsopcode ("0x0107") :offset ("289")))
5035 (defglfun
5036 (("DepthRange" depth-range) :args
5037 ((:name |near| :type |ClampedFloat64| :direction :in)
5038 (:name |far| :type |ClampedFloat64| :direction :in))
5039 :return ("void") :category ("xform") :version ("1.0") :glxropcode ("174")
5040 :glsopcode ("0x0106") :offset ("288")))