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