|
1 /* |
|
2 SDL - Simple DirectMedia Layer |
|
3 Copyright (C) 1997-2009 Sam Lantinga |
|
4 |
|
5 This library is free software; you can redistribute it and/or |
|
6 modify it under the terms of the GNU Lesser General Public |
|
7 License as published by the Free Software Foundation; either |
|
8 version 2.1 of the License, or (at your option) any later version. |
|
9 |
|
10 This library is distributed in the hope that it will be useful, |
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 Lesser General Public License for more details. |
|
14 |
|
15 You should have received a copy of the GNU Lesser General Public |
|
16 License along with this library; if not, write to the Free Software |
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|
18 |
|
19 Sam Lantinga |
|
20 slouken@libsdl.org |
|
21 */ |
|
22 |
|
23 /** @file SDL_opengl.h |
|
24 * This is a simple file to encapsulate the OpenGL API headers |
|
25 */ |
|
26 |
|
27 #include "SDL_config.h" |
|
28 |
|
29 #ifdef __WIN32__ |
|
30 #define WIN32_LEAN_AND_MEAN |
|
31 #ifndef NOMINMAX |
|
32 #define NOMINMAX /* Don't defined min() and max() */ |
|
33 #endif |
|
34 #include <windows.h> |
|
35 #endif |
|
36 #ifndef NO_SDL_GLEXT |
|
37 #define __glext_h_ /* Don't let gl.h include glext.h */ |
|
38 #endif |
|
39 #if defined(__MACOSX__) |
|
40 #include <OpenGL/gl.h> /* Header File For The OpenGL Library */ |
|
41 #include <OpenGL/glu.h> /* Header File For The GLU Library */ |
|
42 #elif defined(__MACOS__) |
|
43 #include <gl.h> /* Header File For The OpenGL Library */ |
|
44 #include <glu.h> /* Header File For The GLU Library */ |
|
45 #else |
|
46 #include <GL/gl.h> /* Header File For The OpenGL Library */ |
|
47 #include <GL/glu.h> /* Header File For The GLU Library */ |
|
48 #endif |
|
49 #ifndef NO_SDL_GLEXT |
|
50 #undef __glext_h_ |
|
51 #endif |
|
52 |
|
53 /** @name GLext.h |
|
54 * This file taken from "GLext.h" from the Jeff Molofee OpenGL tutorials. |
|
55 * It is included here because glext.h is not available on some systems. |
|
56 * If you don't want this version included, simply define "NO_SDL_GLEXT" |
|
57 */ |
|
58 /*@{*/ |
|
59 #ifndef NO_SDL_GLEXT |
|
60 #if !defined(__glext_h_) && !defined(GL_GLEXT_LEGACY) |
|
61 #define __glext_h_ |
|
62 |
|
63 #ifdef __cplusplus |
|
64 extern "C" { |
|
65 #endif |
|
66 |
|
67 /* |
|
68 ** License Applicability. Except to the extent portions of this file are |
|
69 ** made subject to an alternative license as permitted in the SGI Free |
|
70 ** Software License B, Version 1.1 (the "License"), the contents of this |
|
71 ** file are subject only to the provisions of the License. You may not use |
|
72 ** this file except in compliance with the License. You may obtain a copy |
|
73 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600 |
|
74 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: |
|
75 ** |
|
76 ** http://oss.sgi.com/projects/FreeB |
|
77 ** |
|
78 ** Note that, as provided in the License, the Software is distributed on an |
|
79 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS |
|
80 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND |
|
81 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A |
|
82 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT. |
|
83 ** |
|
84 ** Original Code. The Original Code is: OpenGL Sample Implementation, |
|
85 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics, |
|
86 ** Inc. The Original Code is Copyright (c) 1991-2004 Silicon Graphics, Inc. |
|
87 ** Copyright in any portions created by third parties is as indicated |
|
88 ** elsewhere herein. All Rights Reserved. |
|
89 ** |
|
90 ** Additional Notice Provisions: This software was created using the |
|
91 ** OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has |
|
92 ** not been independently verified as being compliant with the OpenGL(R) |
|
93 ** version 1.2.1 Specification. |
|
94 */ |
|
95 |
|
96 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) |
|
97 #define WIN32_LEAN_AND_MEAN 1 |
|
98 #include <windows.h> |
|
99 #endif |
|
100 |
|
101 #ifndef APIENTRY |
|
102 #define APIENTRY |
|
103 #endif |
|
104 #ifndef APIENTRYP |
|
105 #define APIENTRYP APIENTRY * |
|
106 #endif |
|
107 #ifndef GLAPI |
|
108 #define GLAPI extern |
|
109 #endif |
|
110 |
|
111 /*************************************************************/ |
|
112 |
|
113 /* Header file version number, required by OpenGL ABI for Linux */ |
|
114 /* glext.h last updated 2005/06/20 */ |
|
115 /* Current version at http://oss.sgi.com/projects/ogl-sample/registry/ */ |
|
116 #define GL_GLEXT_VERSION 29 |
|
117 |
|
118 #ifndef GL_VERSION_1_2 |
|
119 #define GL_UNSIGNED_BYTE_3_3_2 0x8032 |
|
120 #define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 |
|
121 #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 |
|
122 #define GL_UNSIGNED_INT_8_8_8_8 0x8035 |
|
123 #define GL_UNSIGNED_INT_10_10_10_2 0x8036 |
|
124 #define GL_RESCALE_NORMAL 0x803A |
|
125 #define GL_TEXTURE_BINDING_3D 0x806A |
|
126 #define GL_PACK_SKIP_IMAGES 0x806B |
|
127 #define GL_PACK_IMAGE_HEIGHT 0x806C |
|
128 #define GL_UNPACK_SKIP_IMAGES 0x806D |
|
129 #define GL_UNPACK_IMAGE_HEIGHT 0x806E |
|
130 #define GL_TEXTURE_3D 0x806F |
|
131 #define GL_PROXY_TEXTURE_3D 0x8070 |
|
132 #define GL_TEXTURE_DEPTH 0x8071 |
|
133 #define GL_TEXTURE_WRAP_R 0x8072 |
|
134 #define GL_MAX_3D_TEXTURE_SIZE 0x8073 |
|
135 #define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 |
|
136 #define GL_UNSIGNED_SHORT_5_6_5 0x8363 |
|
137 #define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 |
|
138 #define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 |
|
139 #define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 |
|
140 #define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 |
|
141 #define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 |
|
142 #define GL_BGR 0x80E0 |
|
143 #define GL_BGRA 0x80E1 |
|
144 #define GL_MAX_ELEMENTS_VERTICES 0x80E8 |
|
145 #define GL_MAX_ELEMENTS_INDICES 0x80E9 |
|
146 #define GL_CLAMP_TO_EDGE 0x812F |
|
147 #define GL_TEXTURE_MIN_LOD 0x813A |
|
148 #define GL_TEXTURE_MAX_LOD 0x813B |
|
149 #define GL_TEXTURE_BASE_LEVEL 0x813C |
|
150 #define GL_TEXTURE_MAX_LEVEL 0x813D |
|
151 #define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 |
|
152 #define GL_SINGLE_COLOR 0x81F9 |
|
153 #define GL_SEPARATE_SPECULAR_COLOR 0x81FA |
|
154 #define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 |
|
155 #define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 |
|
156 #define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 |
|
157 #define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 |
|
158 #define GL_ALIASED_POINT_SIZE_RANGE 0x846D |
|
159 #define GL_ALIASED_LINE_WIDTH_RANGE 0x846E |
|
160 #endif |
|
161 |
|
162 #ifndef GL_ARB_imaging |
|
163 #define GL_CONSTANT_COLOR 0x8001 |
|
164 #define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 |
|
165 #define GL_CONSTANT_ALPHA 0x8003 |
|
166 #define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 |
|
167 #define GL_BLEND_COLOR 0x8005 |
|
168 #define GL_FUNC_ADD 0x8006 |
|
169 #define GL_MIN 0x8007 |
|
170 #define GL_MAX 0x8008 |
|
171 #define GL_BLEND_EQUATION 0x8009 |
|
172 #define GL_FUNC_SUBTRACT 0x800A |
|
173 #define GL_FUNC_REVERSE_SUBTRACT 0x800B |
|
174 #define GL_CONVOLUTION_1D 0x8010 |
|
175 #define GL_CONVOLUTION_2D 0x8011 |
|
176 #define GL_SEPARABLE_2D 0x8012 |
|
177 #define GL_CONVOLUTION_BORDER_MODE 0x8013 |
|
178 #define GL_CONVOLUTION_FILTER_SCALE 0x8014 |
|
179 #define GL_CONVOLUTION_FILTER_BIAS 0x8015 |
|
180 #define GL_REDUCE 0x8016 |
|
181 #define GL_CONVOLUTION_FORMAT 0x8017 |
|
182 #define GL_CONVOLUTION_WIDTH 0x8018 |
|
183 #define GL_CONVOLUTION_HEIGHT 0x8019 |
|
184 #define GL_MAX_CONVOLUTION_WIDTH 0x801A |
|
185 #define GL_MAX_CONVOLUTION_HEIGHT 0x801B |
|
186 #define GL_POST_CONVOLUTION_RED_SCALE 0x801C |
|
187 #define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D |
|
188 #define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E |
|
189 #define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F |
|
190 #define GL_POST_CONVOLUTION_RED_BIAS 0x8020 |
|
191 #define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 |
|
192 #define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 |
|
193 #define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 |
|
194 #define GL_HISTOGRAM 0x8024 |
|
195 #define GL_PROXY_HISTOGRAM 0x8025 |
|
196 #define GL_HISTOGRAM_WIDTH 0x8026 |
|
197 #define GL_HISTOGRAM_FORMAT 0x8027 |
|
198 #define GL_HISTOGRAM_RED_SIZE 0x8028 |
|
199 #define GL_HISTOGRAM_GREEN_SIZE 0x8029 |
|
200 #define GL_HISTOGRAM_BLUE_SIZE 0x802A |
|
201 #define GL_HISTOGRAM_ALPHA_SIZE 0x802B |
|
202 #define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C |
|
203 #define GL_HISTOGRAM_SINK 0x802D |
|
204 #define GL_MINMAX 0x802E |
|
205 #define GL_MINMAX_FORMAT 0x802F |
|
206 #define GL_MINMAX_SINK 0x8030 |
|
207 #define GL_TABLE_TOO_LARGE 0x8031 |
|
208 #define GL_COLOR_MATRIX 0x80B1 |
|
209 #define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 |
|
210 #define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 |
|
211 #define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 |
|
212 #define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 |
|
213 #define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 |
|
214 #define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 |
|
215 #define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 |
|
216 #define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 |
|
217 #define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA |
|
218 #define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB |
|
219 #define GL_COLOR_TABLE 0x80D0 |
|
220 #define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 |
|
221 #define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 |
|
222 #define GL_PROXY_COLOR_TABLE 0x80D3 |
|
223 #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 |
|
224 #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 |
|
225 #define GL_COLOR_TABLE_SCALE 0x80D6 |
|
226 #define GL_COLOR_TABLE_BIAS 0x80D7 |
|
227 #define GL_COLOR_TABLE_FORMAT 0x80D8 |
|
228 #define GL_COLOR_TABLE_WIDTH 0x80D9 |
|
229 #define GL_COLOR_TABLE_RED_SIZE 0x80DA |
|
230 #define GL_COLOR_TABLE_GREEN_SIZE 0x80DB |
|
231 #define GL_COLOR_TABLE_BLUE_SIZE 0x80DC |
|
232 #define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD |
|
233 #define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE |
|
234 #define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF |
|
235 #define GL_CONSTANT_BORDER 0x8151 |
|
236 #define GL_REPLICATE_BORDER 0x8153 |
|
237 #define GL_CONVOLUTION_BORDER_COLOR 0x8154 |
|
238 #endif |
|
239 |
|
240 #ifndef GL_VERSION_1_3 |
|
241 #define GL_TEXTURE0 0x84C0 |
|
242 #define GL_TEXTURE1 0x84C1 |
|
243 #define GL_TEXTURE2 0x84C2 |
|
244 #define GL_TEXTURE3 0x84C3 |
|
245 #define GL_TEXTURE4 0x84C4 |
|
246 #define GL_TEXTURE5 0x84C5 |
|
247 #define GL_TEXTURE6 0x84C6 |
|
248 #define GL_TEXTURE7 0x84C7 |
|
249 #define GL_TEXTURE8 0x84C8 |
|
250 #define GL_TEXTURE9 0x84C9 |
|
251 #define GL_TEXTURE10 0x84CA |
|
252 #define GL_TEXTURE11 0x84CB |
|
253 #define GL_TEXTURE12 0x84CC |
|
254 #define GL_TEXTURE13 0x84CD |
|
255 #define GL_TEXTURE14 0x84CE |
|
256 #define GL_TEXTURE15 0x84CF |
|
257 #define GL_TEXTURE16 0x84D0 |
|
258 #define GL_TEXTURE17 0x84D1 |
|
259 #define GL_TEXTURE18 0x84D2 |
|
260 #define GL_TEXTURE19 0x84D3 |
|
261 #define GL_TEXTURE20 0x84D4 |
|
262 #define GL_TEXTURE21 0x84D5 |
|
263 #define GL_TEXTURE22 0x84D6 |
|
264 #define GL_TEXTURE23 0x84D7 |
|
265 #define GL_TEXTURE24 0x84D8 |
|
266 #define GL_TEXTURE25 0x84D9 |
|
267 #define GL_TEXTURE26 0x84DA |
|
268 #define GL_TEXTURE27 0x84DB |
|
269 #define GL_TEXTURE28 0x84DC |
|
270 #define GL_TEXTURE29 0x84DD |
|
271 #define GL_TEXTURE30 0x84DE |
|
272 #define GL_TEXTURE31 0x84DF |
|
273 #define GL_ACTIVE_TEXTURE 0x84E0 |
|
274 #define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 |
|
275 #define GL_MAX_TEXTURE_UNITS 0x84E2 |
|
276 #define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 |
|
277 #define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 |
|
278 #define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 |
|
279 #define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 |
|
280 #define GL_MULTISAMPLE 0x809D |
|
281 #define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E |
|
282 #define GL_SAMPLE_ALPHA_TO_ONE 0x809F |
|
283 #define GL_SAMPLE_COVERAGE 0x80A0 |
|
284 #define GL_SAMPLE_BUFFERS 0x80A8 |
|
285 #define GL_SAMPLES 0x80A9 |
|
286 #define GL_SAMPLE_COVERAGE_VALUE 0x80AA |
|
287 #define GL_SAMPLE_COVERAGE_INVERT 0x80AB |
|
288 #define GL_MULTISAMPLE_BIT 0x20000000 |
|
289 #define GL_NORMAL_MAP 0x8511 |
|
290 #define GL_REFLECTION_MAP 0x8512 |
|
291 #define GL_TEXTURE_CUBE_MAP 0x8513 |
|
292 #define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 |
|
293 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 |
|
294 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 |
|
295 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 |
|
296 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 |
|
297 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 |
|
298 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A |
|
299 #define GL_PROXY_TEXTURE_CUBE_MAP 0x851B |
|
300 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C |
|
301 #define GL_COMPRESSED_ALPHA 0x84E9 |
|
302 #define GL_COMPRESSED_LUMINANCE 0x84EA |
|
303 #define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB |
|
304 #define GL_COMPRESSED_INTENSITY 0x84EC |
|
305 #define GL_COMPRESSED_RGB 0x84ED |
|
306 #define GL_COMPRESSED_RGBA 0x84EE |
|
307 #define GL_TEXTURE_COMPRESSION_HINT 0x84EF |
|
308 #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 |
|
309 #define GL_TEXTURE_COMPRESSED 0x86A1 |
|
310 #define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 |
|
311 #define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 |
|
312 #define GL_CLAMP_TO_BORDER 0x812D |
|
313 #define GL_COMBINE 0x8570 |
|
314 #define GL_COMBINE_RGB 0x8571 |
|
315 #define GL_COMBINE_ALPHA 0x8572 |
|
316 #define GL_SOURCE0_RGB 0x8580 |
|
317 #define GL_SOURCE1_RGB 0x8581 |
|
318 #define GL_SOURCE2_RGB 0x8582 |
|
319 #define GL_SOURCE0_ALPHA 0x8588 |
|
320 #define GL_SOURCE1_ALPHA 0x8589 |
|
321 #define GL_SOURCE2_ALPHA 0x858A |
|
322 #define GL_OPERAND0_RGB 0x8590 |
|
323 #define GL_OPERAND1_RGB 0x8591 |
|
324 #define GL_OPERAND2_RGB 0x8592 |
|
325 #define GL_OPERAND0_ALPHA 0x8598 |
|
326 #define GL_OPERAND1_ALPHA 0x8599 |
|
327 #define GL_OPERAND2_ALPHA 0x859A |
|
328 #define GL_RGB_SCALE 0x8573 |
|
329 #define GL_ADD_SIGNED 0x8574 |
|
330 #define GL_INTERPOLATE 0x8575 |
|
331 #define GL_SUBTRACT 0x84E7 |
|
332 #define GL_CONSTANT 0x8576 |
|
333 #define GL_PRIMARY_COLOR 0x8577 |
|
334 #define GL_PREVIOUS 0x8578 |
|
335 #define GL_DOT3_RGB 0x86AE |
|
336 #define GL_DOT3_RGBA 0x86AF |
|
337 #endif |
|
338 |
|
339 #ifndef GL_VERSION_1_4 |
|
340 #define GL_BLEND_DST_RGB 0x80C8 |
|
341 #define GL_BLEND_SRC_RGB 0x80C9 |
|
342 #define GL_BLEND_DST_ALPHA 0x80CA |
|
343 #define GL_BLEND_SRC_ALPHA 0x80CB |
|
344 #define GL_POINT_SIZE_MIN 0x8126 |
|
345 #define GL_POINT_SIZE_MAX 0x8127 |
|
346 #define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 |
|
347 #define GL_POINT_DISTANCE_ATTENUATION 0x8129 |
|
348 #define GL_GENERATE_MIPMAP 0x8191 |
|
349 #define GL_GENERATE_MIPMAP_HINT 0x8192 |
|
350 #define GL_DEPTH_COMPONENT16 0x81A5 |
|
351 #define GL_DEPTH_COMPONENT24 0x81A6 |
|
352 #define GL_DEPTH_COMPONENT32 0x81A7 |
|
353 #define GL_MIRRORED_REPEAT 0x8370 |
|
354 #define GL_FOG_COORDINATE_SOURCE 0x8450 |
|
355 #define GL_FOG_COORDINATE 0x8451 |
|
356 #define GL_FRAGMENT_DEPTH 0x8452 |
|
357 #define GL_CURRENT_FOG_COORDINATE 0x8453 |
|
358 #define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 |
|
359 #define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 |
|
360 #define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 |
|
361 #define GL_FOG_COORDINATE_ARRAY 0x8457 |
|
362 #define GL_COLOR_SUM 0x8458 |
|
363 #define GL_CURRENT_SECONDARY_COLOR 0x8459 |
|
364 #define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A |
|
365 #define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B |
|
366 #define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C |
|
367 #define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D |
|
368 #define GL_SECONDARY_COLOR_ARRAY 0x845E |
|
369 #define GL_MAX_TEXTURE_LOD_BIAS 0x84FD |
|
370 #define GL_TEXTURE_FILTER_CONTROL 0x8500 |
|
371 #define GL_TEXTURE_LOD_BIAS 0x8501 |
|
372 #define GL_INCR_WRAP 0x8507 |
|
373 #define GL_DECR_WRAP 0x8508 |
|
374 #define GL_TEXTURE_DEPTH_SIZE 0x884A |
|
375 #define GL_DEPTH_TEXTURE_MODE 0x884B |
|
376 #define GL_TEXTURE_COMPARE_MODE 0x884C |
|
377 #define GL_TEXTURE_COMPARE_FUNC 0x884D |
|
378 #define GL_COMPARE_R_TO_TEXTURE 0x884E |
|
379 #endif |
|
380 |
|
381 #ifndef GL_VERSION_1_5 |
|
382 #define GL_BUFFER_SIZE 0x8764 |
|
383 #define GL_BUFFER_USAGE 0x8765 |
|
384 #define GL_QUERY_COUNTER_BITS 0x8864 |
|
385 #define GL_CURRENT_QUERY 0x8865 |
|
386 #define GL_QUERY_RESULT 0x8866 |
|
387 #define GL_QUERY_RESULT_AVAILABLE 0x8867 |
|
388 #define GL_ARRAY_BUFFER 0x8892 |
|
389 #define GL_ELEMENT_ARRAY_BUFFER 0x8893 |
|
390 #define GL_ARRAY_BUFFER_BINDING 0x8894 |
|
391 #define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 |
|
392 #define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 |
|
393 #define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 |
|
394 #define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 |
|
395 #define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 |
|
396 #define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A |
|
397 #define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B |
|
398 #define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C |
|
399 #define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D |
|
400 #define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E |
|
401 #define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F |
|
402 #define GL_READ_ONLY 0x88B8 |
|
403 #define GL_WRITE_ONLY 0x88B9 |
|
404 #define GL_READ_WRITE 0x88BA |
|
405 #define GL_BUFFER_ACCESS 0x88BB |
|
406 #define GL_BUFFER_MAPPED 0x88BC |
|
407 #define GL_BUFFER_MAP_POINTER 0x88BD |
|
408 #define GL_STREAM_DRAW 0x88E0 |
|
409 #define GL_STREAM_READ 0x88E1 |
|
410 #define GL_STREAM_COPY 0x88E2 |
|
411 #define GL_STATIC_DRAW 0x88E4 |
|
412 #define GL_STATIC_READ 0x88E5 |
|
413 #define GL_STATIC_COPY 0x88E6 |
|
414 #define GL_DYNAMIC_DRAW 0x88E8 |
|
415 #define GL_DYNAMIC_READ 0x88E9 |
|
416 #define GL_DYNAMIC_COPY 0x88EA |
|
417 #define GL_SAMPLES_PASSED 0x8914 |
|
418 #define GL_FOG_COORD_SRC GL_FOG_COORDINATE_SOURCE |
|
419 #define GL_FOG_COORD GL_FOG_COORDINATE |
|
420 #define GL_CURRENT_FOG_COORD GL_CURRENT_FOG_COORDINATE |
|
421 #define GL_FOG_COORD_ARRAY_TYPE GL_FOG_COORDINATE_ARRAY_TYPE |
|
422 #define GL_FOG_COORD_ARRAY_STRIDE GL_FOG_COORDINATE_ARRAY_STRIDE |
|
423 #define GL_FOG_COORD_ARRAY_POINTER GL_FOG_COORDINATE_ARRAY_POINTER |
|
424 #define GL_FOG_COORD_ARRAY GL_FOG_COORDINATE_ARRAY |
|
425 #define GL_FOG_COORD_ARRAY_BUFFER_BINDING GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING |
|
426 #define GL_SRC0_RGB GL_SOURCE0_RGB |
|
427 #define GL_SRC1_RGB GL_SOURCE1_RGB |
|
428 #define GL_SRC2_RGB GL_SOURCE2_RGB |
|
429 #define GL_SRC0_ALPHA GL_SOURCE0_ALPHA |
|
430 #define GL_SRC1_ALPHA GL_SOURCE1_ALPHA |
|
431 #define GL_SRC2_ALPHA GL_SOURCE2_ALPHA |
|
432 #endif |
|
433 |
|
434 #ifndef GL_VERSION_2_0 |
|
435 #define GL_BLEND_EQUATION_RGB GL_BLEND_EQUATION |
|
436 #define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 |
|
437 #define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 |
|
438 #define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 |
|
439 #define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 |
|
440 #define GL_CURRENT_VERTEX_ATTRIB 0x8626 |
|
441 #define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 |
|
442 #define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 |
|
443 #define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 |
|
444 #define GL_STENCIL_BACK_FUNC 0x8800 |
|
445 #define GL_STENCIL_BACK_FAIL 0x8801 |
|
446 #define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 |
|
447 #define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 |
|
448 #define GL_MAX_DRAW_BUFFERS 0x8824 |
|
449 #define GL_DRAW_BUFFER0 0x8825 |
|
450 #define GL_DRAW_BUFFER1 0x8826 |
|
451 #define GL_DRAW_BUFFER2 0x8827 |
|
452 #define GL_DRAW_BUFFER3 0x8828 |
|
453 #define GL_DRAW_BUFFER4 0x8829 |
|
454 #define GL_DRAW_BUFFER5 0x882A |
|
455 #define GL_DRAW_BUFFER6 0x882B |
|
456 #define GL_DRAW_BUFFER7 0x882C |
|
457 #define GL_DRAW_BUFFER8 0x882D |
|
458 #define GL_DRAW_BUFFER9 0x882E |
|
459 #define GL_DRAW_BUFFER10 0x882F |
|
460 #define GL_DRAW_BUFFER11 0x8830 |
|
461 #define GL_DRAW_BUFFER12 0x8831 |
|
462 #define GL_DRAW_BUFFER13 0x8832 |
|
463 #define GL_DRAW_BUFFER14 0x8833 |
|
464 #define GL_DRAW_BUFFER15 0x8834 |
|
465 #define GL_BLEND_EQUATION_ALPHA 0x883D |
|
466 #define GL_POINT_SPRITE 0x8861 |
|
467 #define GL_COORD_REPLACE 0x8862 |
|
468 #define GL_MAX_VERTEX_ATTRIBS 0x8869 |
|
469 #define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A |
|
470 #define GL_MAX_TEXTURE_COORDS 0x8871 |
|
471 #define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 |
|
472 #define GL_FRAGMENT_SHADER 0x8B30 |
|
473 #define GL_VERTEX_SHADER 0x8B31 |
|
474 #define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 |
|
475 #define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A |
|
476 #define GL_MAX_VARYING_FLOATS 0x8B4B |
|
477 #define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C |
|
478 #define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D |
|
479 #define GL_SHADER_TYPE 0x8B4F |
|
480 #define GL_FLOAT_VEC2 0x8B50 |
|
481 #define GL_FLOAT_VEC3 0x8B51 |
|
482 #define GL_FLOAT_VEC4 0x8B52 |
|
483 #define GL_INT_VEC2 0x8B53 |
|
484 #define GL_INT_VEC3 0x8B54 |
|
485 #define GL_INT_VEC4 0x8B55 |
|
486 #define GL_BOOL 0x8B56 |
|
487 #define GL_BOOL_VEC2 0x8B57 |
|
488 #define GL_BOOL_VEC3 0x8B58 |
|
489 #define GL_BOOL_VEC4 0x8B59 |
|
490 #define GL_FLOAT_MAT2 0x8B5A |
|
491 #define GL_FLOAT_MAT3 0x8B5B |
|
492 #define GL_FLOAT_MAT4 0x8B5C |
|
493 #define GL_SAMPLER_1D 0x8B5D |
|
494 #define GL_SAMPLER_2D 0x8B5E |
|
495 #define GL_SAMPLER_3D 0x8B5F |
|
496 #define GL_SAMPLER_CUBE 0x8B60 |
|
497 #define GL_SAMPLER_1D_SHADOW 0x8B61 |
|
498 #define GL_SAMPLER_2D_SHADOW 0x8B62 |
|
499 #define GL_DELETE_STATUS 0x8B80 |
|
500 #define GL_COMPILE_STATUS 0x8B81 |
|
501 #define GL_LINK_STATUS 0x8B82 |
|
502 #define GL_VALIDATE_STATUS 0x8B83 |
|
503 #define GL_INFO_LOG_LENGTH 0x8B84 |
|
504 #define GL_ATTACHED_SHADERS 0x8B85 |
|
505 #define GL_ACTIVE_UNIFORMS 0x8B86 |
|
506 #define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 |
|
507 #define GL_SHADER_SOURCE_LENGTH 0x8B88 |
|
508 #define GL_ACTIVE_ATTRIBUTES 0x8B89 |
|
509 #define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A |
|
510 #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B |
|
511 #define GL_SHADING_LANGUAGE_VERSION 0x8B8C |
|
512 #define GL_CURRENT_PROGRAM 0x8B8D |
|
513 #define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 |
|
514 #define GL_LOWER_LEFT 0x8CA1 |
|
515 #define GL_UPPER_LEFT 0x8CA2 |
|
516 #define GL_STENCIL_BACK_REF 0x8CA3 |
|
517 #define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 |
|
518 #define GL_STENCIL_BACK_WRITEMASK 0x8CA5 |
|
519 #endif |
|
520 |
|
521 #ifndef GL_ARB_multitexture |
|
522 #define GL_TEXTURE0_ARB 0x84C0 |
|
523 #define GL_TEXTURE1_ARB 0x84C1 |
|
524 #define GL_TEXTURE2_ARB 0x84C2 |
|
525 #define GL_TEXTURE3_ARB 0x84C3 |
|
526 #define GL_TEXTURE4_ARB 0x84C4 |
|
527 #define GL_TEXTURE5_ARB 0x84C5 |
|
528 #define GL_TEXTURE6_ARB 0x84C6 |
|
529 #define GL_TEXTURE7_ARB 0x84C7 |
|
530 #define GL_TEXTURE8_ARB 0x84C8 |
|
531 #define GL_TEXTURE9_ARB 0x84C9 |
|
532 #define GL_TEXTURE10_ARB 0x84CA |
|
533 #define GL_TEXTURE11_ARB 0x84CB |
|
534 #define GL_TEXTURE12_ARB 0x84CC |
|
535 #define GL_TEXTURE13_ARB 0x84CD |
|
536 #define GL_TEXTURE14_ARB 0x84CE |
|
537 #define GL_TEXTURE15_ARB 0x84CF |
|
538 #define GL_TEXTURE16_ARB 0x84D0 |
|
539 #define GL_TEXTURE17_ARB 0x84D1 |
|
540 #define GL_TEXTURE18_ARB 0x84D2 |
|
541 #define GL_TEXTURE19_ARB 0x84D3 |
|
542 #define GL_TEXTURE20_ARB 0x84D4 |
|
543 #define GL_TEXTURE21_ARB 0x84D5 |
|
544 #define GL_TEXTURE22_ARB 0x84D6 |
|
545 #define GL_TEXTURE23_ARB 0x84D7 |
|
546 #define GL_TEXTURE24_ARB 0x84D8 |
|
547 #define GL_TEXTURE25_ARB 0x84D9 |
|
548 #define GL_TEXTURE26_ARB 0x84DA |
|
549 #define GL_TEXTURE27_ARB 0x84DB |
|
550 #define GL_TEXTURE28_ARB 0x84DC |
|
551 #define GL_TEXTURE29_ARB 0x84DD |
|
552 #define GL_TEXTURE30_ARB 0x84DE |
|
553 #define GL_TEXTURE31_ARB 0x84DF |
|
554 #define GL_ACTIVE_TEXTURE_ARB 0x84E0 |
|
555 #define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 |
|
556 #define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 |
|
557 #endif |
|
558 |
|
559 #ifndef GL_ARB_transpose_matrix |
|
560 #define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 |
|
561 #define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 |
|
562 #define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 |
|
563 #define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 |
|
564 #endif |
|
565 |
|
566 #ifndef GL_ARB_multisample |
|
567 #define GL_MULTISAMPLE_ARB 0x809D |
|
568 #define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E |
|
569 #define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F |
|
570 #define GL_SAMPLE_COVERAGE_ARB 0x80A0 |
|
571 #define GL_SAMPLE_BUFFERS_ARB 0x80A8 |
|
572 #define GL_SAMPLES_ARB 0x80A9 |
|
573 #define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA |
|
574 #define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB |
|
575 #define GL_MULTISAMPLE_BIT_ARB 0x20000000 |
|
576 #endif |
|
577 |
|
578 #ifndef GL_ARB_texture_env_add |
|
579 #endif |
|
580 |
|
581 #ifndef GL_ARB_texture_cube_map |
|
582 #define GL_NORMAL_MAP_ARB 0x8511 |
|
583 #define GL_REFLECTION_MAP_ARB 0x8512 |
|
584 #define GL_TEXTURE_CUBE_MAP_ARB 0x8513 |
|
585 #define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 |
|
586 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 |
|
587 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 |
|
588 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 |
|
589 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 |
|
590 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 |
|
591 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A |
|
592 #define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B |
|
593 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C |
|
594 #endif |
|
595 |
|
596 #ifndef GL_ARB_texture_compression |
|
597 #define GL_COMPRESSED_ALPHA_ARB 0x84E9 |
|
598 #define GL_COMPRESSED_LUMINANCE_ARB 0x84EA |
|
599 #define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB |
|
600 #define GL_COMPRESSED_INTENSITY_ARB 0x84EC |
|
601 #define GL_COMPRESSED_RGB_ARB 0x84ED |
|
602 #define GL_COMPRESSED_RGBA_ARB 0x84EE |
|
603 #define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF |
|
604 #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 |
|
605 #define GL_TEXTURE_COMPRESSED_ARB 0x86A1 |
|
606 #define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 |
|
607 #define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 |
|
608 #endif |
|
609 |
|
610 #ifndef GL_ARB_texture_border_clamp |
|
611 #define GL_CLAMP_TO_BORDER_ARB 0x812D |
|
612 #endif |
|
613 |
|
614 #ifndef GL_ARB_point_parameters |
|
615 #define GL_POINT_SIZE_MIN_ARB 0x8126 |
|
616 #define GL_POINT_SIZE_MAX_ARB 0x8127 |
|
617 #define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 |
|
618 #define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 |
|
619 #endif |
|
620 |
|
621 #ifndef GL_ARB_vertex_blend |
|
622 #define GL_MAX_VERTEX_UNITS_ARB 0x86A4 |
|
623 #define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 |
|
624 #define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 |
|
625 #define GL_VERTEX_BLEND_ARB 0x86A7 |
|
626 #define GL_CURRENT_WEIGHT_ARB 0x86A8 |
|
627 #define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 |
|
628 #define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA |
|
629 #define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB |
|
630 #define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC |
|
631 #define GL_WEIGHT_ARRAY_ARB 0x86AD |
|
632 #define GL_MODELVIEW0_ARB 0x1700 |
|
633 #define GL_MODELVIEW1_ARB 0x850A |
|
634 #define GL_MODELVIEW2_ARB 0x8722 |
|
635 #define GL_MODELVIEW3_ARB 0x8723 |
|
636 #define GL_MODELVIEW4_ARB 0x8724 |
|
637 #define GL_MODELVIEW5_ARB 0x8725 |
|
638 #define GL_MODELVIEW6_ARB 0x8726 |
|
639 #define GL_MODELVIEW7_ARB 0x8727 |
|
640 #define GL_MODELVIEW8_ARB 0x8728 |
|
641 #define GL_MODELVIEW9_ARB 0x8729 |
|
642 #define GL_MODELVIEW10_ARB 0x872A |
|
643 #define GL_MODELVIEW11_ARB 0x872B |
|
644 #define GL_MODELVIEW12_ARB 0x872C |
|
645 #define GL_MODELVIEW13_ARB 0x872D |
|
646 #define GL_MODELVIEW14_ARB 0x872E |
|
647 #define GL_MODELVIEW15_ARB 0x872F |
|
648 #define GL_MODELVIEW16_ARB 0x8730 |
|
649 #define GL_MODELVIEW17_ARB 0x8731 |
|
650 #define GL_MODELVIEW18_ARB 0x8732 |
|
651 #define GL_MODELVIEW19_ARB 0x8733 |
|
652 #define GL_MODELVIEW20_ARB 0x8734 |
|
653 #define GL_MODELVIEW21_ARB 0x8735 |
|
654 #define GL_MODELVIEW22_ARB 0x8736 |
|
655 #define GL_MODELVIEW23_ARB 0x8737 |
|
656 #define GL_MODELVIEW24_ARB 0x8738 |
|
657 #define GL_MODELVIEW25_ARB 0x8739 |
|
658 #define GL_MODELVIEW26_ARB 0x873A |
|
659 #define GL_MODELVIEW27_ARB 0x873B |
|
660 #define GL_MODELVIEW28_ARB 0x873C |
|
661 #define GL_MODELVIEW29_ARB 0x873D |
|
662 #define GL_MODELVIEW30_ARB 0x873E |
|
663 #define GL_MODELVIEW31_ARB 0x873F |
|
664 #endif |
|
665 |
|
666 #ifndef GL_ARB_matrix_palette |
|
667 #define GL_MATRIX_PALETTE_ARB 0x8840 |
|
668 #define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 |
|
669 #define GL_MAX_PALETTE_MATRICES_ARB 0x8842 |
|
670 #define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 |
|
671 #define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 |
|
672 #define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 |
|
673 #define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 |
|
674 #define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 |
|
675 #define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 |
|
676 #define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 |
|
677 #endif |
|
678 |
|
679 #ifndef GL_ARB_texture_env_combine |
|
680 #define GL_COMBINE_ARB 0x8570 |
|
681 #define GL_COMBINE_RGB_ARB 0x8571 |
|
682 #define GL_COMBINE_ALPHA_ARB 0x8572 |
|
683 #define GL_SOURCE0_RGB_ARB 0x8580 |
|
684 #define GL_SOURCE1_RGB_ARB 0x8581 |
|
685 #define GL_SOURCE2_RGB_ARB 0x8582 |
|
686 #define GL_SOURCE0_ALPHA_ARB 0x8588 |
|
687 #define GL_SOURCE1_ALPHA_ARB 0x8589 |
|
688 #define GL_SOURCE2_ALPHA_ARB 0x858A |
|
689 #define GL_OPERAND0_RGB_ARB 0x8590 |
|
690 #define GL_OPERAND1_RGB_ARB 0x8591 |
|
691 #define GL_OPERAND2_RGB_ARB 0x8592 |
|
692 #define GL_OPERAND0_ALPHA_ARB 0x8598 |
|
693 #define GL_OPERAND1_ALPHA_ARB 0x8599 |
|
694 #define GL_OPERAND2_ALPHA_ARB 0x859A |
|
695 #define GL_RGB_SCALE_ARB 0x8573 |
|
696 #define GL_ADD_SIGNED_ARB 0x8574 |
|
697 #define GL_INTERPOLATE_ARB 0x8575 |
|
698 #define GL_SUBTRACT_ARB 0x84E7 |
|
699 #define GL_CONSTANT_ARB 0x8576 |
|
700 #define GL_PRIMARY_COLOR_ARB 0x8577 |
|
701 #define GL_PREVIOUS_ARB 0x8578 |
|
702 #endif |
|
703 |
|
704 #ifndef GL_ARB_texture_env_crossbar |
|
705 #endif |
|
706 |
|
707 #ifndef GL_ARB_texture_env_dot3 |
|
708 #define GL_DOT3_RGB_ARB 0x86AE |
|
709 #define GL_DOT3_RGBA_ARB 0x86AF |
|
710 #endif |
|
711 |
|
712 #ifndef GL_ARB_texture_mirrored_repeat |
|
713 #define GL_MIRRORED_REPEAT_ARB 0x8370 |
|
714 #endif |
|
715 |
|
716 #ifndef GL_ARB_depth_texture |
|
717 #define GL_DEPTH_COMPONENT16_ARB 0x81A5 |
|
718 #define GL_DEPTH_COMPONENT24_ARB 0x81A6 |
|
719 #define GL_DEPTH_COMPONENT32_ARB 0x81A7 |
|
720 #define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A |
|
721 #define GL_DEPTH_TEXTURE_MODE_ARB 0x884B |
|
722 #endif |
|
723 |
|
724 #ifndef GL_ARB_shadow |
|
725 #define GL_TEXTURE_COMPARE_MODE_ARB 0x884C |
|
726 #define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D |
|
727 #define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E |
|
728 #endif |
|
729 |
|
730 #ifndef GL_ARB_shadow_ambient |
|
731 #define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF |
|
732 #endif |
|
733 |
|
734 #ifndef GL_ARB_window_pos |
|
735 #endif |
|
736 |
|
737 #ifndef GL_ARB_vertex_program |
|
738 #define GL_COLOR_SUM_ARB 0x8458 |
|
739 #define GL_VERTEX_PROGRAM_ARB 0x8620 |
|
740 #define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 |
|
741 #define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 |
|
742 #define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 |
|
743 #define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 |
|
744 #define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 |
|
745 #define GL_PROGRAM_LENGTH_ARB 0x8627 |
|
746 #define GL_PROGRAM_STRING_ARB 0x8628 |
|
747 #define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E |
|
748 #define GL_MAX_PROGRAM_MATRICES_ARB 0x862F |
|
749 #define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 |
|
750 #define GL_CURRENT_MATRIX_ARB 0x8641 |
|
751 #define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 |
|
752 #define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 |
|
753 #define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 |
|
754 #define GL_PROGRAM_ERROR_POSITION_ARB 0x864B |
|
755 #define GL_PROGRAM_BINDING_ARB 0x8677 |
|
756 #define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 |
|
757 #define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A |
|
758 #define GL_PROGRAM_ERROR_STRING_ARB 0x8874 |
|
759 #define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 |
|
760 #define GL_PROGRAM_FORMAT_ARB 0x8876 |
|
761 #define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 |
|
762 #define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 |
|
763 #define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 |
|
764 #define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 |
|
765 #define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 |
|
766 #define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 |
|
767 #define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 |
|
768 #define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 |
|
769 #define GL_PROGRAM_PARAMETERS_ARB 0x88A8 |
|
770 #define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 |
|
771 #define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA |
|
772 #define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB |
|
773 #define GL_PROGRAM_ATTRIBS_ARB 0x88AC |
|
774 #define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD |
|
775 #define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE |
|
776 #define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF |
|
777 #define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 |
|
778 #define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 |
|
779 #define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 |
|
780 #define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 |
|
781 #define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 |
|
782 #define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 |
|
783 #define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 |
|
784 #define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 |
|
785 #define GL_MATRIX0_ARB 0x88C0 |
|
786 #define GL_MATRIX1_ARB 0x88C1 |
|
787 #define GL_MATRIX2_ARB 0x88C2 |
|
788 #define GL_MATRIX3_ARB 0x88C3 |
|
789 #define GL_MATRIX4_ARB 0x88C4 |
|
790 #define GL_MATRIX5_ARB 0x88C5 |
|
791 #define GL_MATRIX6_ARB 0x88C6 |
|
792 #define GL_MATRIX7_ARB 0x88C7 |
|
793 #define GL_MATRIX8_ARB 0x88C8 |
|
794 #define GL_MATRIX9_ARB 0x88C9 |
|
795 #define GL_MATRIX10_ARB 0x88CA |
|
796 #define GL_MATRIX11_ARB 0x88CB |
|
797 #define GL_MATRIX12_ARB 0x88CC |
|
798 #define GL_MATRIX13_ARB 0x88CD |
|
799 #define GL_MATRIX14_ARB 0x88CE |
|
800 #define GL_MATRIX15_ARB 0x88CF |
|
801 #define GL_MATRIX16_ARB 0x88D0 |
|
802 #define GL_MATRIX17_ARB 0x88D1 |
|
803 #define GL_MATRIX18_ARB 0x88D2 |
|
804 #define GL_MATRIX19_ARB 0x88D3 |
|
805 #define GL_MATRIX20_ARB 0x88D4 |
|
806 #define GL_MATRIX21_ARB 0x88D5 |
|
807 #define GL_MATRIX22_ARB 0x88D6 |
|
808 #define GL_MATRIX23_ARB 0x88D7 |
|
809 #define GL_MATRIX24_ARB 0x88D8 |
|
810 #define GL_MATRIX25_ARB 0x88D9 |
|
811 #define GL_MATRIX26_ARB 0x88DA |
|
812 #define GL_MATRIX27_ARB 0x88DB |
|
813 #define GL_MATRIX28_ARB 0x88DC |
|
814 #define GL_MATRIX29_ARB 0x88DD |
|
815 #define GL_MATRIX30_ARB 0x88DE |
|
816 #define GL_MATRIX31_ARB 0x88DF |
|
817 #endif |
|
818 |
|
819 #ifndef GL_ARB_fragment_program |
|
820 #define GL_FRAGMENT_PROGRAM_ARB 0x8804 |
|
821 #define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 |
|
822 #define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 |
|
823 #define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 |
|
824 #define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 |
|
825 #define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 |
|
826 #define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A |
|
827 #define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B |
|
828 #define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C |
|
829 #define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D |
|
830 #define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E |
|
831 #define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F |
|
832 #define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 |
|
833 #define GL_MAX_TEXTURE_COORDS_ARB 0x8871 |
|
834 #define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 |
|
835 #endif |
|
836 |
|
837 #ifndef GL_ARB_vertex_buffer_object |
|
838 #define GL_BUFFER_SIZE_ARB 0x8764 |
|
839 #define GL_BUFFER_USAGE_ARB 0x8765 |
|
840 #define GL_ARRAY_BUFFER_ARB 0x8892 |
|
841 #define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 |
|
842 #define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 |
|
843 #define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 |
|
844 #define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 |
|
845 #define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 |
|
846 #define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 |
|
847 #define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 |
|
848 #define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A |
|
849 #define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B |
|
850 #define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C |
|
851 #define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D |
|
852 #define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E |
|
853 #define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F |
|
854 #define GL_READ_ONLY_ARB 0x88B8 |
|
855 #define GL_WRITE_ONLY_ARB 0x88B9 |
|
856 #define GL_READ_WRITE_ARB 0x88BA |
|
857 #define GL_BUFFER_ACCESS_ARB 0x88BB |
|
858 #define GL_BUFFER_MAPPED_ARB 0x88BC |
|
859 #define GL_BUFFER_MAP_POINTER_ARB 0x88BD |
|
860 #define GL_STREAM_DRAW_ARB 0x88E0 |
|
861 #define GL_STREAM_READ_ARB 0x88E1 |
|
862 #define GL_STREAM_COPY_ARB 0x88E2 |
|
863 #define GL_STATIC_DRAW_ARB 0x88E4 |
|
864 #define GL_STATIC_READ_ARB 0x88E5 |
|
865 #define GL_STATIC_COPY_ARB 0x88E6 |
|
866 #define GL_DYNAMIC_DRAW_ARB 0x88E8 |
|
867 #define GL_DYNAMIC_READ_ARB 0x88E9 |
|
868 #define GL_DYNAMIC_COPY_ARB 0x88EA |
|
869 #endif |
|
870 |
|
871 #ifndef GL_ARB_occlusion_query |
|
872 #define GL_QUERY_COUNTER_BITS_ARB 0x8864 |
|
873 #define GL_CURRENT_QUERY_ARB 0x8865 |
|
874 #define GL_QUERY_RESULT_ARB 0x8866 |
|
875 #define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 |
|
876 #define GL_SAMPLES_PASSED_ARB 0x8914 |
|
877 #endif |
|
878 |
|
879 #ifndef GL_ARB_shader_objects |
|
880 #define GL_PROGRAM_OBJECT_ARB 0x8B40 |
|
881 #define GL_SHADER_OBJECT_ARB 0x8B48 |
|
882 #define GL_OBJECT_TYPE_ARB 0x8B4E |
|
883 #define GL_OBJECT_SUBTYPE_ARB 0x8B4F |
|
884 #define GL_FLOAT_VEC2_ARB 0x8B50 |
|
885 #define GL_FLOAT_VEC3_ARB 0x8B51 |
|
886 #define GL_FLOAT_VEC4_ARB 0x8B52 |
|
887 #define GL_INT_VEC2_ARB 0x8B53 |
|
888 #define GL_INT_VEC3_ARB 0x8B54 |
|
889 #define GL_INT_VEC4_ARB 0x8B55 |
|
890 #define GL_BOOL_ARB 0x8B56 |
|
891 #define GL_BOOL_VEC2_ARB 0x8B57 |
|
892 #define GL_BOOL_VEC3_ARB 0x8B58 |
|
893 #define GL_BOOL_VEC4_ARB 0x8B59 |
|
894 #define GL_FLOAT_MAT2_ARB 0x8B5A |
|
895 #define GL_FLOAT_MAT3_ARB 0x8B5B |
|
896 #define GL_FLOAT_MAT4_ARB 0x8B5C |
|
897 #define GL_SAMPLER_1D_ARB 0x8B5D |
|
898 #define GL_SAMPLER_2D_ARB 0x8B5E |
|
899 #define GL_SAMPLER_3D_ARB 0x8B5F |
|
900 #define GL_SAMPLER_CUBE_ARB 0x8B60 |
|
901 #define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 |
|
902 #define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 |
|
903 #define GL_SAMPLER_2D_RECT_ARB 0x8B63 |
|
904 #define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 |
|
905 #define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 |
|
906 #define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 |
|
907 #define GL_OBJECT_LINK_STATUS_ARB 0x8B82 |
|
908 #define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 |
|
909 #define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 |
|
910 #define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 |
|
911 #define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 |
|
912 #define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 |
|
913 #define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 |
|
914 #endif |
|
915 |
|
916 #ifndef GL_ARB_vertex_shader |
|
917 #define GL_VERTEX_SHADER_ARB 0x8B31 |
|
918 #define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A |
|
919 #define GL_MAX_VARYING_FLOATS_ARB 0x8B4B |
|
920 #define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C |
|
921 #define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D |
|
922 #define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 |
|
923 #define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A |
|
924 #endif |
|
925 |
|
926 #ifndef GL_ARB_fragment_shader |
|
927 #define GL_FRAGMENT_SHADER_ARB 0x8B30 |
|
928 #define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 |
|
929 #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B |
|
930 #endif |
|
931 |
|
932 #ifndef GL_ARB_shading_language_100 |
|
933 #define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C |
|
934 #endif |
|
935 |
|
936 #ifndef GL_ARB_texture_non_power_of_two |
|
937 #endif |
|
938 |
|
939 #ifndef GL_ARB_point_sprite |
|
940 #define GL_POINT_SPRITE_ARB 0x8861 |
|
941 #define GL_COORD_REPLACE_ARB 0x8862 |
|
942 #endif |
|
943 |
|
944 #ifndef GL_ARB_fragment_program_shadow |
|
945 #endif |
|
946 |
|
947 #ifndef GL_ARB_draw_buffers |
|
948 #define GL_MAX_DRAW_BUFFERS_ARB 0x8824 |
|
949 #define GL_DRAW_BUFFER0_ARB 0x8825 |
|
950 #define GL_DRAW_BUFFER1_ARB 0x8826 |
|
951 #define GL_DRAW_BUFFER2_ARB 0x8827 |
|
952 #define GL_DRAW_BUFFER3_ARB 0x8828 |
|
953 #define GL_DRAW_BUFFER4_ARB 0x8829 |
|
954 #define GL_DRAW_BUFFER5_ARB 0x882A |
|
955 #define GL_DRAW_BUFFER6_ARB 0x882B |
|
956 #define GL_DRAW_BUFFER7_ARB 0x882C |
|
957 #define GL_DRAW_BUFFER8_ARB 0x882D |
|
958 #define GL_DRAW_BUFFER9_ARB 0x882E |
|
959 #define GL_DRAW_BUFFER10_ARB 0x882F |
|
960 #define GL_DRAW_BUFFER11_ARB 0x8830 |
|
961 #define GL_DRAW_BUFFER12_ARB 0x8831 |
|
962 #define GL_DRAW_BUFFER13_ARB 0x8832 |
|
963 #define GL_DRAW_BUFFER14_ARB 0x8833 |
|
964 #define GL_DRAW_BUFFER15_ARB 0x8834 |
|
965 #endif |
|
966 |
|
967 #ifndef GL_ARB_texture_rectangle |
|
968 #define GL_TEXTURE_RECTANGLE_ARB 0x84F5 |
|
969 #define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 |
|
970 #define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 |
|
971 #define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 |
|
972 #endif |
|
973 |
|
974 #ifndef GL_ARB_color_buffer_float |
|
975 #define GL_RGBA_FLOAT_MODE_ARB 0x8820 |
|
976 #define GL_CLAMP_VERTEX_COLOR_ARB 0x891A |
|
977 #define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B |
|
978 #define GL_CLAMP_READ_COLOR_ARB 0x891C |
|
979 #define GL_FIXED_ONLY_ARB 0x891D |
|
980 #endif |
|
981 |
|
982 #ifndef GL_ARB_half_float_pixel |
|
983 #define GL_HALF_FLOAT_ARB 0x140B |
|
984 #endif |
|
985 |
|
986 #ifndef GL_ARB_texture_float |
|
987 #define GL_TEXTURE_RED_TYPE_ARB 0x8C10 |
|
988 #define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 |
|
989 #define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 |
|
990 #define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 |
|
991 #define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 |
|
992 #define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 |
|
993 #define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 |
|
994 #define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 |
|
995 #define GL_RGBA32F_ARB 0x8814 |
|
996 #define GL_RGB32F_ARB 0x8815 |
|
997 #define GL_ALPHA32F_ARB 0x8816 |
|
998 #define GL_INTENSITY32F_ARB 0x8817 |
|
999 #define GL_LUMINANCE32F_ARB 0x8818 |
|
1000 #define GL_LUMINANCE_ALPHA32F_ARB 0x8819 |
|
1001 #define GL_RGBA16F_ARB 0x881A |
|
1002 #define GL_RGB16F_ARB 0x881B |
|
1003 #define GL_ALPHA16F_ARB 0x881C |
|
1004 #define GL_INTENSITY16F_ARB 0x881D |
|
1005 #define GL_LUMINANCE16F_ARB 0x881E |
|
1006 #define GL_LUMINANCE_ALPHA16F_ARB 0x881F |
|
1007 #endif |
|
1008 |
|
1009 #ifndef GL_ARB_pixel_buffer_object |
|
1010 #define GL_PIXEL_PACK_BUFFER_ARB 0x88EB |
|
1011 #define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC |
|
1012 #define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED |
|
1013 #define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF |
|
1014 #endif |
|
1015 |
|
1016 #ifndef GL_EXT_abgr |
|
1017 #define GL_ABGR_EXT 0x8000 |
|
1018 #endif |
|
1019 |
|
1020 #ifndef GL_EXT_blend_color |
|
1021 #define GL_CONSTANT_COLOR_EXT 0x8001 |
|
1022 #define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 |
|
1023 #define GL_CONSTANT_ALPHA_EXT 0x8003 |
|
1024 #define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 |
|
1025 #define GL_BLEND_COLOR_EXT 0x8005 |
|
1026 #endif |
|
1027 |
|
1028 #ifndef GL_EXT_polygon_offset |
|
1029 #define GL_POLYGON_OFFSET_EXT 0x8037 |
|
1030 #define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 |
|
1031 #define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 |
|
1032 #endif |
|
1033 |
|
1034 #ifndef GL_EXT_texture |
|
1035 #define GL_ALPHA4_EXT 0x803B |
|
1036 #define GL_ALPHA8_EXT 0x803C |
|
1037 #define GL_ALPHA12_EXT 0x803D |
|
1038 #define GL_ALPHA16_EXT 0x803E |
|
1039 #define GL_LUMINANCE4_EXT 0x803F |
|
1040 #define GL_LUMINANCE8_EXT 0x8040 |
|
1041 #define GL_LUMINANCE12_EXT 0x8041 |
|
1042 #define GL_LUMINANCE16_EXT 0x8042 |
|
1043 #define GL_LUMINANCE4_ALPHA4_EXT 0x8043 |
|
1044 #define GL_LUMINANCE6_ALPHA2_EXT 0x8044 |
|
1045 #define GL_LUMINANCE8_ALPHA8_EXT 0x8045 |
|
1046 #define GL_LUMINANCE12_ALPHA4_EXT 0x8046 |
|
1047 #define GL_LUMINANCE12_ALPHA12_EXT 0x8047 |
|
1048 #define GL_LUMINANCE16_ALPHA16_EXT 0x8048 |
|
1049 #define GL_INTENSITY_EXT 0x8049 |
|
1050 #define GL_INTENSITY4_EXT 0x804A |
|
1051 #define GL_INTENSITY8_EXT 0x804B |
|
1052 #define GL_INTENSITY12_EXT 0x804C |
|
1053 #define GL_INTENSITY16_EXT 0x804D |
|
1054 #define GL_RGB2_EXT 0x804E |
|
1055 #define GL_RGB4_EXT 0x804F |
|
1056 #define GL_RGB5_EXT 0x8050 |
|
1057 #define GL_RGB8_EXT 0x8051 |
|
1058 #define GL_RGB10_EXT 0x8052 |
|
1059 #define GL_RGB12_EXT 0x8053 |
|
1060 #define GL_RGB16_EXT 0x8054 |
|
1061 #define GL_RGBA2_EXT 0x8055 |
|
1062 #define GL_RGBA4_EXT 0x8056 |
|
1063 #define GL_RGB5_A1_EXT 0x8057 |
|
1064 #define GL_RGBA8_EXT 0x8058 |
|
1065 #define GL_RGB10_A2_EXT 0x8059 |
|
1066 #define GL_RGBA12_EXT 0x805A |
|
1067 #define GL_RGBA16_EXT 0x805B |
|
1068 #define GL_TEXTURE_RED_SIZE_EXT 0x805C |
|
1069 #define GL_TEXTURE_GREEN_SIZE_EXT 0x805D |
|
1070 #define GL_TEXTURE_BLUE_SIZE_EXT 0x805E |
|
1071 #define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F |
|
1072 #define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 |
|
1073 #define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 |
|
1074 #define GL_REPLACE_EXT 0x8062 |
|
1075 #define GL_PROXY_TEXTURE_1D_EXT 0x8063 |
|
1076 #define GL_PROXY_TEXTURE_2D_EXT 0x8064 |
|
1077 #define GL_TEXTURE_TOO_LARGE_EXT 0x8065 |
|
1078 #endif |
|
1079 |
|
1080 #ifndef GL_EXT_texture3D |
|
1081 #define GL_PACK_SKIP_IMAGES_EXT 0x806B |
|
1082 #define GL_PACK_IMAGE_HEIGHT_EXT 0x806C |
|
1083 #define GL_UNPACK_SKIP_IMAGES_EXT 0x806D |
|
1084 #define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E |
|
1085 #define GL_TEXTURE_3D_EXT 0x806F |
|
1086 #define GL_PROXY_TEXTURE_3D_EXT 0x8070 |
|
1087 #define GL_TEXTURE_DEPTH_EXT 0x8071 |
|
1088 #define GL_TEXTURE_WRAP_R_EXT 0x8072 |
|
1089 #define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 |
|
1090 #endif |
|
1091 |
|
1092 #ifndef GL_SGIS_texture_filter4 |
|
1093 #define GL_FILTER4_SGIS 0x8146 |
|
1094 #define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147 |
|
1095 #endif |
|
1096 |
|
1097 #ifndef GL_EXT_subtexture |
|
1098 #endif |
|
1099 |
|
1100 #ifndef GL_EXT_copy_texture |
|
1101 #endif |
|
1102 |
|
1103 #ifndef GL_EXT_histogram |
|
1104 #define GL_HISTOGRAM_EXT 0x8024 |
|
1105 #define GL_PROXY_HISTOGRAM_EXT 0x8025 |
|
1106 #define GL_HISTOGRAM_WIDTH_EXT 0x8026 |
|
1107 #define GL_HISTOGRAM_FORMAT_EXT 0x8027 |
|
1108 #define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 |
|
1109 #define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 |
|
1110 #define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A |
|
1111 #define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B |
|
1112 #define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C |
|
1113 #define GL_HISTOGRAM_SINK_EXT 0x802D |
|
1114 #define GL_MINMAX_EXT 0x802E |
|
1115 #define GL_MINMAX_FORMAT_EXT 0x802F |
|
1116 #define GL_MINMAX_SINK_EXT 0x8030 |
|
1117 #define GL_TABLE_TOO_LARGE_EXT 0x8031 |
|
1118 #endif |
|
1119 |
|
1120 #ifndef GL_EXT_convolution |
|
1121 #define GL_CONVOLUTION_1D_EXT 0x8010 |
|
1122 #define GL_CONVOLUTION_2D_EXT 0x8011 |
|
1123 #define GL_SEPARABLE_2D_EXT 0x8012 |
|
1124 #define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 |
|
1125 #define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 |
|
1126 #define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 |
|
1127 #define GL_REDUCE_EXT 0x8016 |
|
1128 #define GL_CONVOLUTION_FORMAT_EXT 0x8017 |
|
1129 #define GL_CONVOLUTION_WIDTH_EXT 0x8018 |
|
1130 #define GL_CONVOLUTION_HEIGHT_EXT 0x8019 |
|
1131 #define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A |
|
1132 #define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B |
|
1133 #define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C |
|
1134 #define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D |
|
1135 #define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E |
|
1136 #define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F |
|
1137 #define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 |
|
1138 #define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 |
|
1139 #define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 |
|
1140 #define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 |
|
1141 #endif |
|
1142 |
|
1143 #ifndef GL_SGI_color_matrix |
|
1144 #define GL_COLOR_MATRIX_SGI 0x80B1 |
|
1145 #define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 |
|
1146 #define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 |
|
1147 #define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 |
|
1148 #define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 |
|
1149 #define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 |
|
1150 #define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 |
|
1151 #define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 |
|
1152 #define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 |
|
1153 #define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA |
|
1154 #define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB |
|
1155 #endif |
|
1156 |
|
1157 #ifndef GL_SGI_color_table |
|
1158 #define GL_COLOR_TABLE_SGI 0x80D0 |
|
1159 #define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 |
|
1160 #define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 |
|
1161 #define GL_PROXY_COLOR_TABLE_SGI 0x80D3 |
|
1162 #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 |
|
1163 #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 |
|
1164 #define GL_COLOR_TABLE_SCALE_SGI 0x80D6 |
|
1165 #define GL_COLOR_TABLE_BIAS_SGI 0x80D7 |
|
1166 #define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 |
|
1167 #define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 |
|
1168 #define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA |
|
1169 #define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB |
|
1170 #define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC |
|
1171 #define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD |
|
1172 #define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE |
|
1173 #define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF |
|
1174 #endif |
|
1175 |
|
1176 #ifndef GL_SGIS_pixel_texture |
|
1177 #define GL_PIXEL_TEXTURE_SGIS 0x8353 |
|
1178 #define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354 |
|
1179 #define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355 |
|
1180 #define GL_PIXEL_GROUP_COLOR_SGIS 0x8356 |
|
1181 #endif |
|
1182 |
|
1183 #ifndef GL_SGIX_pixel_texture |
|
1184 #define GL_PIXEL_TEX_GEN_SGIX 0x8139 |
|
1185 #define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B |
|
1186 #endif |
|
1187 |
|
1188 #ifndef GL_SGIS_texture4D |
|
1189 #define GL_PACK_SKIP_VOLUMES_SGIS 0x8130 |
|
1190 #define GL_PACK_IMAGE_DEPTH_SGIS 0x8131 |
|
1191 #define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132 |
|
1192 #define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133 |
|
1193 #define GL_TEXTURE_4D_SGIS 0x8134 |
|
1194 #define GL_PROXY_TEXTURE_4D_SGIS 0x8135 |
|
1195 #define GL_TEXTURE_4DSIZE_SGIS 0x8136 |
|
1196 #define GL_TEXTURE_WRAP_Q_SGIS 0x8137 |
|
1197 #define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138 |
|
1198 #define GL_TEXTURE_4D_BINDING_SGIS 0x814F |
|
1199 #endif |
|
1200 |
|
1201 #ifndef GL_SGI_texture_color_table |
|
1202 #define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC |
|
1203 #define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD |
|
1204 #endif |
|
1205 |
|
1206 #ifndef GL_EXT_cmyka |
|
1207 #define GL_CMYK_EXT 0x800C |
|
1208 #define GL_CMYKA_EXT 0x800D |
|
1209 #define GL_PACK_CMYK_HINT_EXT 0x800E |
|
1210 #define GL_UNPACK_CMYK_HINT_EXT 0x800F |
|
1211 #endif |
|
1212 |
|
1213 #ifndef GL_EXT_texture_object |
|
1214 #define GL_TEXTURE_PRIORITY_EXT 0x8066 |
|
1215 #define GL_TEXTURE_RESIDENT_EXT 0x8067 |
|
1216 #define GL_TEXTURE_1D_BINDING_EXT 0x8068 |
|
1217 #define GL_TEXTURE_2D_BINDING_EXT 0x8069 |
|
1218 #define GL_TEXTURE_3D_BINDING_EXT 0x806A |
|
1219 #endif |
|
1220 |
|
1221 #ifndef GL_SGIS_detail_texture |
|
1222 #define GL_DETAIL_TEXTURE_2D_SGIS 0x8095 |
|
1223 #define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096 |
|
1224 #define GL_LINEAR_DETAIL_SGIS 0x8097 |
|
1225 #define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098 |
|
1226 #define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099 |
|
1227 #define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A |
|
1228 #define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B |
|
1229 #define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C |
|
1230 #endif |
|
1231 |
|
1232 #ifndef GL_SGIS_sharpen_texture |
|
1233 #define GL_LINEAR_SHARPEN_SGIS 0x80AD |
|
1234 #define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE |
|
1235 #define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF |
|
1236 #define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0 |
|
1237 #endif |
|
1238 |
|
1239 #ifndef GL_EXT_packed_pixels |
|
1240 #define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 |
|
1241 #define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 |
|
1242 #define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 |
|
1243 #define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 |
|
1244 #define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 |
|
1245 #endif |
|
1246 |
|
1247 #ifndef GL_SGIS_texture_lod |
|
1248 #define GL_TEXTURE_MIN_LOD_SGIS 0x813A |
|
1249 #define GL_TEXTURE_MAX_LOD_SGIS 0x813B |
|
1250 #define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C |
|
1251 #define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D |
|
1252 #endif |
|
1253 |
|
1254 #ifndef GL_SGIS_multisample |
|
1255 #define GL_MULTISAMPLE_SGIS 0x809D |
|
1256 #define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E |
|
1257 #define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F |
|
1258 #define GL_SAMPLE_MASK_SGIS 0x80A0 |
|
1259 #define GL_1PASS_SGIS 0x80A1 |
|
1260 #define GL_2PASS_0_SGIS 0x80A2 |
|
1261 #define GL_2PASS_1_SGIS 0x80A3 |
|
1262 #define GL_4PASS_0_SGIS 0x80A4 |
|
1263 #define GL_4PASS_1_SGIS 0x80A5 |
|
1264 #define GL_4PASS_2_SGIS 0x80A6 |
|
1265 #define GL_4PASS_3_SGIS 0x80A7 |
|
1266 #define GL_SAMPLE_BUFFERS_SGIS 0x80A8 |
|
1267 #define GL_SAMPLES_SGIS 0x80A9 |
|
1268 #define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA |
|
1269 #define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB |
|
1270 #define GL_SAMPLE_PATTERN_SGIS 0x80AC |
|
1271 #endif |
|
1272 |
|
1273 #ifndef GL_EXT_rescale_normal |
|
1274 #define GL_RESCALE_NORMAL_EXT 0x803A |
|
1275 #endif |
|
1276 |
|
1277 #ifndef GL_EXT_vertex_array |
|
1278 #define GL_VERTEX_ARRAY_EXT 0x8074 |
|
1279 #define GL_NORMAL_ARRAY_EXT 0x8075 |
|
1280 #define GL_COLOR_ARRAY_EXT 0x8076 |
|
1281 #define GL_INDEX_ARRAY_EXT 0x8077 |
|
1282 #define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 |
|
1283 #define GL_EDGE_FLAG_ARRAY_EXT 0x8079 |
|
1284 #define GL_VERTEX_ARRAY_SIZE_EXT 0x807A |
|
1285 #define GL_VERTEX_ARRAY_TYPE_EXT 0x807B |
|
1286 #define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C |
|
1287 #define GL_VERTEX_ARRAY_COUNT_EXT 0x807D |
|
1288 #define GL_NORMAL_ARRAY_TYPE_EXT 0x807E |
|
1289 #define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F |
|
1290 #define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 |
|
1291 #define GL_COLOR_ARRAY_SIZE_EXT 0x8081 |
|
1292 #define GL_COLOR_ARRAY_TYPE_EXT 0x8082 |
|
1293 #define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 |
|
1294 #define GL_COLOR_ARRAY_COUNT_EXT 0x8084 |
|
1295 #define GL_INDEX_ARRAY_TYPE_EXT 0x8085 |
|
1296 #define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 |
|
1297 #define GL_INDEX_ARRAY_COUNT_EXT 0x8087 |
|
1298 #define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 |
|
1299 #define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 |
|
1300 #define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A |
|
1301 #define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B |
|
1302 #define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C |
|
1303 #define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D |
|
1304 #define GL_VERTEX_ARRAY_POINTER_EXT 0x808E |
|
1305 #define GL_NORMAL_ARRAY_POINTER_EXT 0x808F |
|
1306 #define GL_COLOR_ARRAY_POINTER_EXT 0x8090 |
|
1307 #define GL_INDEX_ARRAY_POINTER_EXT 0x8091 |
|
1308 #define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 |
|
1309 #define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 |
|
1310 #endif |
|
1311 |
|
1312 #ifndef GL_EXT_misc_attribute |
|
1313 #endif |
|
1314 |
|
1315 #ifndef GL_SGIS_generate_mipmap |
|
1316 #define GL_GENERATE_MIPMAP_SGIS 0x8191 |
|
1317 #define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 |
|
1318 #endif |
|
1319 |
|
1320 #ifndef GL_SGIX_clipmap |
|
1321 #define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170 |
|
1322 #define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171 |
|
1323 #define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172 |
|
1324 #define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173 |
|
1325 #define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174 |
|
1326 #define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175 |
|
1327 #define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176 |
|
1328 #define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177 |
|
1329 #define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178 |
|
1330 #define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D |
|
1331 #define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E |
|
1332 #define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F |
|
1333 #endif |
|
1334 |
|
1335 #ifndef GL_SGIX_shadow |
|
1336 #define GL_TEXTURE_COMPARE_SGIX 0x819A |
|
1337 #define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B |
|
1338 #define GL_TEXTURE_LEQUAL_R_SGIX 0x819C |
|
1339 #define GL_TEXTURE_GEQUAL_R_SGIX 0x819D |
|
1340 #endif |
|
1341 |
|
1342 #ifndef GL_SGIS_texture_edge_clamp |
|
1343 #define GL_CLAMP_TO_EDGE_SGIS 0x812F |
|
1344 #endif |
|
1345 |
|
1346 #ifndef GL_SGIS_texture_border_clamp |
|
1347 #define GL_CLAMP_TO_BORDER_SGIS 0x812D |
|
1348 #endif |
|
1349 |
|
1350 #ifndef GL_EXT_blend_minmax |
|
1351 #define GL_FUNC_ADD_EXT 0x8006 |
|
1352 #define GL_MIN_EXT 0x8007 |
|
1353 #define GL_MAX_EXT 0x8008 |
|
1354 #define GL_BLEND_EQUATION_EXT 0x8009 |
|
1355 #endif |
|
1356 |
|
1357 #ifndef GL_EXT_blend_subtract |
|
1358 #define GL_FUNC_SUBTRACT_EXT 0x800A |
|
1359 #define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B |
|
1360 #endif |
|
1361 |
|
1362 #ifndef GL_EXT_blend_logic_op |
|
1363 #endif |
|
1364 |
|
1365 #ifndef GL_SGIX_interlace |
|
1366 #define GL_INTERLACE_SGIX 0x8094 |
|
1367 #endif |
|
1368 |
|
1369 #ifndef GL_SGIX_pixel_tiles |
|
1370 #define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E |
|
1371 #define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F |
|
1372 #define GL_PIXEL_TILE_WIDTH_SGIX 0x8140 |
|
1373 #define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141 |
|
1374 #define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142 |
|
1375 #define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143 |
|
1376 #define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144 |
|
1377 #define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145 |
|
1378 #endif |
|
1379 |
|
1380 #ifndef GL_SGIS_texture_select |
|
1381 #define GL_DUAL_ALPHA4_SGIS 0x8110 |
|
1382 #define GL_DUAL_ALPHA8_SGIS 0x8111 |
|
1383 #define GL_DUAL_ALPHA12_SGIS 0x8112 |
|
1384 #define GL_DUAL_ALPHA16_SGIS 0x8113 |
|
1385 #define GL_DUAL_LUMINANCE4_SGIS 0x8114 |
|
1386 #define GL_DUAL_LUMINANCE8_SGIS 0x8115 |
|
1387 #define GL_DUAL_LUMINANCE12_SGIS 0x8116 |
|
1388 #define GL_DUAL_LUMINANCE16_SGIS 0x8117 |
|
1389 #define GL_DUAL_INTENSITY4_SGIS 0x8118 |
|
1390 #define GL_DUAL_INTENSITY8_SGIS 0x8119 |
|
1391 #define GL_DUAL_INTENSITY12_SGIS 0x811A |
|
1392 #define GL_DUAL_INTENSITY16_SGIS 0x811B |
|
1393 #define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C |
|
1394 #define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D |
|
1395 #define GL_QUAD_ALPHA4_SGIS 0x811E |
|
1396 #define GL_QUAD_ALPHA8_SGIS 0x811F |
|
1397 #define GL_QUAD_LUMINANCE4_SGIS 0x8120 |
|
1398 #define GL_QUAD_LUMINANCE8_SGIS 0x8121 |
|
1399 #define GL_QUAD_INTENSITY4_SGIS 0x8122 |
|
1400 #define GL_QUAD_INTENSITY8_SGIS 0x8123 |
|
1401 #define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124 |
|
1402 #define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125 |
|
1403 #endif |
|
1404 |
|
1405 #ifndef GL_SGIX_sprite |
|
1406 #define GL_SPRITE_SGIX 0x8148 |
|
1407 #define GL_SPRITE_MODE_SGIX 0x8149 |
|
1408 #define GL_SPRITE_AXIS_SGIX 0x814A |
|
1409 #define GL_SPRITE_TRANSLATION_SGIX 0x814B |
|
1410 #define GL_SPRITE_AXIAL_SGIX 0x814C |
|
1411 #define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D |
|
1412 #define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E |
|
1413 #endif |
|
1414 |
|
1415 #ifndef GL_SGIX_texture_multi_buffer |
|
1416 #define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E |
|
1417 #endif |
|
1418 |
|
1419 #ifndef GL_EXT_point_parameters |
|
1420 #define GL_POINT_SIZE_MIN_EXT 0x8126 |
|
1421 #define GL_POINT_SIZE_MAX_EXT 0x8127 |
|
1422 #define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 |
|
1423 #define GL_DISTANCE_ATTENUATION_EXT 0x8129 |
|
1424 #endif |
|
1425 |
|
1426 #ifndef GL_SGIS_point_parameters |
|
1427 #define GL_POINT_SIZE_MIN_SGIS 0x8126 |
|
1428 #define GL_POINT_SIZE_MAX_SGIS 0x8127 |
|
1429 #define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128 |
|
1430 #define GL_DISTANCE_ATTENUATION_SGIS 0x8129 |
|
1431 #endif |
|
1432 |
|
1433 #ifndef GL_SGIX_instruments |
|
1434 #define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180 |
|
1435 #define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181 |
|
1436 #endif |
|
1437 |
|
1438 #ifndef GL_SGIX_texture_scale_bias |
|
1439 #define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 |
|
1440 #define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A |
|
1441 #define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B |
|
1442 #define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C |
|
1443 #endif |
|
1444 |
|
1445 #ifndef GL_SGIX_framezoom |
|
1446 #define GL_FRAMEZOOM_SGIX 0x818B |
|
1447 #define GL_FRAMEZOOM_FACTOR_SGIX 0x818C |
|
1448 #define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D |
|
1449 #endif |
|
1450 |
|
1451 #ifndef GL_SGIX_tag_sample_buffer |
|
1452 #endif |
|
1453 |
|
1454 #ifndef GL_FfdMaskSGIX |
|
1455 #define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001 |
|
1456 #define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002 |
|
1457 #endif |
|
1458 |
|
1459 #ifndef GL_SGIX_polynomial_ffd |
|
1460 #define GL_GEOMETRY_DEFORMATION_SGIX 0x8194 |
|
1461 #define GL_TEXTURE_DEFORMATION_SGIX 0x8195 |
|
1462 #define GL_DEFORMATIONS_MASK_SGIX 0x8196 |
|
1463 #define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197 |
|
1464 #endif |
|
1465 |
|
1466 #ifndef GL_SGIX_reference_plane |
|
1467 #define GL_REFERENCE_PLANE_SGIX 0x817D |
|
1468 #define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E |
|
1469 #endif |
|
1470 |
|
1471 #ifndef GL_SGIX_flush_raster |
|
1472 #endif |
|
1473 |
|
1474 #ifndef GL_SGIX_depth_texture |
|
1475 #define GL_DEPTH_COMPONENT16_SGIX 0x81A5 |
|
1476 #define GL_DEPTH_COMPONENT24_SGIX 0x81A6 |
|
1477 #define GL_DEPTH_COMPONENT32_SGIX 0x81A7 |
|
1478 #endif |
|
1479 |
|
1480 #ifndef GL_SGIS_fog_function |
|
1481 #define GL_FOG_FUNC_SGIS 0x812A |
|
1482 #define GL_FOG_FUNC_POINTS_SGIS 0x812B |
|
1483 #define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C |
|
1484 #endif |
|
1485 |
|
1486 #ifndef GL_SGIX_fog_offset |
|
1487 #define GL_FOG_OFFSET_SGIX 0x8198 |
|
1488 #define GL_FOG_OFFSET_VALUE_SGIX 0x8199 |
|
1489 #endif |
|
1490 |
|
1491 #ifndef GL_HP_image_transform |
|
1492 #define GL_IMAGE_SCALE_X_HP 0x8155 |
|
1493 #define GL_IMAGE_SCALE_Y_HP 0x8156 |
|
1494 #define GL_IMAGE_TRANSLATE_X_HP 0x8157 |
|
1495 #define GL_IMAGE_TRANSLATE_Y_HP 0x8158 |
|
1496 #define GL_IMAGE_ROTATE_ANGLE_HP 0x8159 |
|
1497 #define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A |
|
1498 #define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B |
|
1499 #define GL_IMAGE_MAG_FILTER_HP 0x815C |
|
1500 #define GL_IMAGE_MIN_FILTER_HP 0x815D |
|
1501 #define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E |
|
1502 #define GL_CUBIC_HP 0x815F |
|
1503 #define GL_AVERAGE_HP 0x8160 |
|
1504 #define GL_IMAGE_TRANSFORM_2D_HP 0x8161 |
|
1505 #define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162 |
|
1506 #define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163 |
|
1507 #endif |
|
1508 |
|
1509 #ifndef GL_HP_convolution_border_modes |
|
1510 #define GL_IGNORE_BORDER_HP 0x8150 |
|
1511 #define GL_CONSTANT_BORDER_HP 0x8151 |
|
1512 #define GL_REPLICATE_BORDER_HP 0x8153 |
|
1513 #define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154 |
|
1514 #endif |
|
1515 |
|
1516 #ifndef GL_INGR_palette_buffer |
|
1517 #endif |
|
1518 |
|
1519 #ifndef GL_SGIX_texture_add_env |
|
1520 #define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE |
|
1521 #endif |
|
1522 |
|
1523 #ifndef GL_EXT_color_subtable |
|
1524 #endif |
|
1525 |
|
1526 #ifndef GL_PGI_vertex_hints |
|
1527 #define GL_VERTEX_DATA_HINT_PGI 0x1A22A |
|
1528 #define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B |
|
1529 #define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C |
|
1530 #define GL_MAX_VERTEX_HINT_PGI 0x1A22D |
|
1531 #define GL_COLOR3_BIT_PGI 0x00010000 |
|
1532 #define GL_COLOR4_BIT_PGI 0x00020000 |
|
1533 #define GL_EDGEFLAG_BIT_PGI 0x00040000 |
|
1534 #define GL_INDEX_BIT_PGI 0x00080000 |
|
1535 #define GL_MAT_AMBIENT_BIT_PGI 0x00100000 |
|
1536 #define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 |
|
1537 #define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 |
|
1538 #define GL_MAT_EMISSION_BIT_PGI 0x00800000 |
|
1539 #define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 |
|
1540 #define GL_MAT_SHININESS_BIT_PGI 0x02000000 |
|
1541 #define GL_MAT_SPECULAR_BIT_PGI 0x04000000 |
|
1542 #define GL_NORMAL_BIT_PGI 0x08000000 |
|
1543 #define GL_TEXCOORD1_BIT_PGI 0x10000000 |
|
1544 #define GL_TEXCOORD2_BIT_PGI 0x20000000 |
|
1545 #define GL_TEXCOORD3_BIT_PGI 0x40000000 |
|
1546 #define GL_TEXCOORD4_BIT_PGI 0x80000000 |
|
1547 #define GL_VERTEX23_BIT_PGI 0x00000004 |
|
1548 #define GL_VERTEX4_BIT_PGI 0x00000008 |
|
1549 #endif |
|
1550 |
|
1551 #ifndef GL_PGI_misc_hints |
|
1552 #define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 |
|
1553 #define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD |
|
1554 #define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE |
|
1555 #define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202 |
|
1556 #define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203 |
|
1557 #define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204 |
|
1558 #define GL_ALWAYS_FAST_HINT_PGI 0x1A20C |
|
1559 #define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D |
|
1560 #define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E |
|
1561 #define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F |
|
1562 #define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210 |
|
1563 #define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211 |
|
1564 #define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216 |
|
1565 #define GL_STRICT_LIGHTING_HINT_PGI 0x1A217 |
|
1566 #define GL_STRICT_SCISSOR_HINT_PGI 0x1A218 |
|
1567 #define GL_FULL_STIPPLE_HINT_PGI 0x1A219 |
|
1568 #define GL_CLIP_NEAR_HINT_PGI 0x1A220 |
|
1569 #define GL_CLIP_FAR_HINT_PGI 0x1A221 |
|
1570 #define GL_WIDE_LINE_HINT_PGI 0x1A222 |
|
1571 #define GL_BACK_NORMALS_HINT_PGI 0x1A223 |
|
1572 #endif |
|
1573 |
|
1574 #ifndef GL_EXT_paletted_texture |
|
1575 #define GL_COLOR_INDEX1_EXT 0x80E2 |
|
1576 #define GL_COLOR_INDEX2_EXT 0x80E3 |
|
1577 #define GL_COLOR_INDEX4_EXT 0x80E4 |
|
1578 #define GL_COLOR_INDEX8_EXT 0x80E5 |
|
1579 #define GL_COLOR_INDEX12_EXT 0x80E6 |
|
1580 #define GL_COLOR_INDEX16_EXT 0x80E7 |
|
1581 #define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED |
|
1582 #endif |
|
1583 |
|
1584 #ifndef GL_EXT_clip_volume_hint |
|
1585 #define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 |
|
1586 #endif |
|
1587 |
|
1588 #ifndef GL_SGIX_list_priority |
|
1589 #define GL_LIST_PRIORITY_SGIX 0x8182 |
|
1590 #endif |
|
1591 |
|
1592 #ifndef GL_SGIX_ir_instrument1 |
|
1593 #define GL_IR_INSTRUMENT1_SGIX 0x817F |
|
1594 #endif |
|
1595 |
|
1596 #ifndef GL_SGIX_calligraphic_fragment |
|
1597 #define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183 |
|
1598 #endif |
|
1599 |
|
1600 #ifndef GL_SGIX_texture_lod_bias |
|
1601 #define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E |
|
1602 #define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F |
|
1603 #define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190 |
|
1604 #endif |
|
1605 |
|
1606 #ifndef GL_SGIX_shadow_ambient |
|
1607 #define GL_SHADOW_AMBIENT_SGIX 0x80BF |
|
1608 #endif |
|
1609 |
|
1610 #ifndef GL_EXT_index_texture |
|
1611 #endif |
|
1612 |
|
1613 #ifndef GL_EXT_index_material |
|
1614 #define GL_INDEX_MATERIAL_EXT 0x81B8 |
|
1615 #define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9 |
|
1616 #define GL_INDEX_MATERIAL_FACE_EXT 0x81BA |
|
1617 #endif |
|
1618 |
|
1619 #ifndef GL_EXT_index_func |
|
1620 #define GL_INDEX_TEST_EXT 0x81B5 |
|
1621 #define GL_INDEX_TEST_FUNC_EXT 0x81B6 |
|
1622 #define GL_INDEX_TEST_REF_EXT 0x81B7 |
|
1623 #endif |
|
1624 |
|
1625 #ifndef GL_EXT_index_array_formats |
|
1626 #define GL_IUI_V2F_EXT 0x81AD |
|
1627 #define GL_IUI_V3F_EXT 0x81AE |
|
1628 #define GL_IUI_N3F_V2F_EXT 0x81AF |
|
1629 #define GL_IUI_N3F_V3F_EXT 0x81B0 |
|
1630 #define GL_T2F_IUI_V2F_EXT 0x81B1 |
|
1631 #define GL_T2F_IUI_V3F_EXT 0x81B2 |
|
1632 #define GL_T2F_IUI_N3F_V2F_EXT 0x81B3 |
|
1633 #define GL_T2F_IUI_N3F_V3F_EXT 0x81B4 |
|
1634 #endif |
|
1635 |
|
1636 #ifndef GL_EXT_compiled_vertex_array |
|
1637 #define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 |
|
1638 #define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 |
|
1639 #endif |
|
1640 |
|
1641 #ifndef GL_EXT_cull_vertex |
|
1642 #define GL_CULL_VERTEX_EXT 0x81AA |
|
1643 #define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB |
|
1644 #define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC |
|
1645 #endif |
|
1646 |
|
1647 #ifndef GL_SGIX_ycrcb |
|
1648 #define GL_YCRCB_422_SGIX 0x81BB |
|
1649 #define GL_YCRCB_444_SGIX 0x81BC |
|
1650 #endif |
|
1651 |
|
1652 #ifndef GL_SGIX_fragment_lighting |
|
1653 #define GL_FRAGMENT_LIGHTING_SGIX 0x8400 |
|
1654 #define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401 |
|
1655 #define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402 |
|
1656 #define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403 |
|
1657 #define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404 |
|
1658 #define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405 |
|
1659 #define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406 |
|
1660 #define GL_LIGHT_ENV_MODE_SGIX 0x8407 |
|
1661 #define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408 |
|
1662 #define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409 |
|
1663 #define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A |
|
1664 #define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B |
|
1665 #define GL_FRAGMENT_LIGHT0_SGIX 0x840C |
|
1666 #define GL_FRAGMENT_LIGHT1_SGIX 0x840D |
|
1667 #define GL_FRAGMENT_LIGHT2_SGIX 0x840E |
|
1668 #define GL_FRAGMENT_LIGHT3_SGIX 0x840F |
|
1669 #define GL_FRAGMENT_LIGHT4_SGIX 0x8410 |
|
1670 #define GL_FRAGMENT_LIGHT5_SGIX 0x8411 |
|
1671 #define GL_FRAGMENT_LIGHT6_SGIX 0x8412 |
|
1672 #define GL_FRAGMENT_LIGHT7_SGIX 0x8413 |
|
1673 #endif |
|
1674 |
|
1675 #ifndef GL_IBM_rasterpos_clip |
|
1676 #define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262 |
|
1677 #endif |
|
1678 |
|
1679 #ifndef GL_HP_texture_lighting |
|
1680 #define GL_TEXTURE_LIGHTING_MODE_HP 0x8167 |
|
1681 #define GL_TEXTURE_POST_SPECULAR_HP 0x8168 |
|
1682 #define GL_TEXTURE_PRE_SPECULAR_HP 0x8169 |
|
1683 #endif |
|
1684 |
|
1685 #ifndef GL_EXT_draw_range_elements |
|
1686 #define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 |
|
1687 #define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 |
|
1688 #endif |
|
1689 |
|
1690 #ifndef GL_WIN_phong_shading |
|
1691 #define GL_PHONG_WIN 0x80EA |
|
1692 #define GL_PHONG_HINT_WIN 0x80EB |
|
1693 #endif |
|
1694 |
|
1695 #ifndef GL_WIN_specular_fog |
|
1696 #define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC |
|
1697 #endif |
|
1698 |
|
1699 #ifndef GL_EXT_light_texture |
|
1700 #define GL_FRAGMENT_MATERIAL_EXT 0x8349 |
|
1701 #define GL_FRAGMENT_NORMAL_EXT 0x834A |
|
1702 #define GL_FRAGMENT_COLOR_EXT 0x834C |
|
1703 #define GL_ATTENUATION_EXT 0x834D |
|
1704 #define GL_SHADOW_ATTENUATION_EXT 0x834E |
|
1705 #define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F |
|
1706 #define GL_TEXTURE_LIGHT_EXT 0x8350 |
|
1707 #define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 |
|
1708 #define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 |
|
1709 /* reuse GL_FRAGMENT_DEPTH_EXT */ |
|
1710 #endif |
|
1711 |
|
1712 #ifndef GL_SGIX_blend_alpha_minmax |
|
1713 #define GL_ALPHA_MIN_SGIX 0x8320 |
|
1714 #define GL_ALPHA_MAX_SGIX 0x8321 |
|
1715 #endif |
|
1716 |
|
1717 #ifndef GL_SGIX_impact_pixel_texture |
|
1718 #define GL_PIXEL_TEX_GEN_Q_CEILING_SGIX 0x8184 |
|
1719 #define GL_PIXEL_TEX_GEN_Q_ROUND_SGIX 0x8185 |
|
1720 #define GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX 0x8186 |
|
1721 #define GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX 0x8187 |
|
1722 #define GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX 0x8188 |
|
1723 #define GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX 0x8189 |
|
1724 #define GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX 0x818A |
|
1725 #endif |
|
1726 |
|
1727 #ifndef GL_EXT_bgra |
|
1728 #define GL_BGR_EXT 0x80E0 |
|
1729 #define GL_BGRA_EXT 0x80E1 |
|
1730 #endif |
|
1731 |
|
1732 #ifndef GL_SGIX_async |
|
1733 #define GL_ASYNC_MARKER_SGIX 0x8329 |
|
1734 #endif |
|
1735 |
|
1736 #ifndef GL_SGIX_async_pixel |
|
1737 #define GL_ASYNC_TEX_IMAGE_SGIX 0x835C |
|
1738 #define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D |
|
1739 #define GL_ASYNC_READ_PIXELS_SGIX 0x835E |
|
1740 #define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F |
|
1741 #define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 |
|
1742 #define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 |
|
1743 #endif |
|
1744 |
|
1745 #ifndef GL_SGIX_async_histogram |
|
1746 #define GL_ASYNC_HISTOGRAM_SGIX 0x832C |
|
1747 #define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D |
|
1748 #endif |
|
1749 |
|
1750 #ifndef GL_INTEL_texture_scissor |
|
1751 #endif |
|
1752 |
|
1753 #ifndef GL_INTEL_parallel_arrays |
|
1754 #define GL_PARALLEL_ARRAYS_INTEL 0x83F4 |
|
1755 #define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 |
|
1756 #define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 |
|
1757 #define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 |
|
1758 #define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 |
|
1759 #endif |
|
1760 |
|
1761 #ifndef GL_HP_occlusion_test |
|
1762 #define GL_OCCLUSION_TEST_HP 0x8165 |
|
1763 #define GL_OCCLUSION_TEST_RESULT_HP 0x8166 |
|
1764 #endif |
|
1765 |
|
1766 #ifndef GL_EXT_pixel_transform |
|
1767 #define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 |
|
1768 #define GL_PIXEL_MAG_FILTER_EXT 0x8331 |
|
1769 #define GL_PIXEL_MIN_FILTER_EXT 0x8332 |
|
1770 #define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 |
|
1771 #define GL_CUBIC_EXT 0x8334 |
|
1772 #define GL_AVERAGE_EXT 0x8335 |
|
1773 #define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 |
|
1774 #define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 |
|
1775 #define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 |
|
1776 #endif |
|
1777 |
|
1778 #ifndef GL_EXT_pixel_transform_color_table |
|
1779 #endif |
|
1780 |
|
1781 #ifndef GL_EXT_shared_texture_palette |
|
1782 #define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB |
|
1783 #endif |
|
1784 |
|
1785 #ifndef GL_EXT_separate_specular_color |
|
1786 #define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 |
|
1787 #define GL_SINGLE_COLOR_EXT 0x81F9 |
|
1788 #define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA |
|
1789 #endif |
|
1790 |
|
1791 #ifndef GL_EXT_secondary_color |
|
1792 #define GL_COLOR_SUM_EXT 0x8458 |
|
1793 #define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 |
|
1794 #define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A |
|
1795 #define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B |
|
1796 #define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C |
|
1797 #define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D |
|
1798 #define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E |
|
1799 #endif |
|
1800 |
|
1801 #ifndef GL_EXT_texture_perturb_normal |
|
1802 #define GL_PERTURB_EXT 0x85AE |
|
1803 #define GL_TEXTURE_NORMAL_EXT 0x85AF |
|
1804 #endif |
|
1805 |
|
1806 #ifndef GL_EXT_multi_draw_arrays |
|
1807 #endif |
|
1808 |
|
1809 #ifndef GL_EXT_fog_coord |
|
1810 #define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 |
|
1811 #define GL_FOG_COORDINATE_EXT 0x8451 |
|
1812 #define GL_FRAGMENT_DEPTH_EXT 0x8452 |
|
1813 #define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 |
|
1814 #define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 |
|
1815 #define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 |
|
1816 #define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 |
|
1817 #define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 |
|
1818 #endif |
|
1819 |
|
1820 #ifndef GL_REND_screen_coordinates |
|
1821 #define GL_SCREEN_COORDINATES_REND 0x8490 |
|
1822 #define GL_INVERTED_SCREEN_W_REND 0x8491 |
|
1823 #endif |
|
1824 |
|
1825 #ifndef GL_EXT_coordinate_frame |
|
1826 #define GL_TANGENT_ARRAY_EXT 0x8439 |
|
1827 #define GL_BINORMAL_ARRAY_EXT 0x843A |
|
1828 #define GL_CURRENT_TANGENT_EXT 0x843B |
|
1829 #define GL_CURRENT_BINORMAL_EXT 0x843C |
|
1830 #define GL_TANGENT_ARRAY_TYPE_EXT 0x843E |
|
1831 #define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F |
|
1832 #define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 |
|
1833 #define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 |
|
1834 #define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 |
|
1835 #define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 |
|
1836 #define GL_MAP1_TANGENT_EXT 0x8444 |
|
1837 #define GL_MAP2_TANGENT_EXT 0x8445 |
|
1838 #define GL_MAP1_BINORMAL_EXT 0x8446 |
|
1839 #define GL_MAP2_BINORMAL_EXT 0x8447 |
|
1840 #endif |
|
1841 |
|
1842 #ifndef GL_EXT_texture_env_combine |
|
1843 #define GL_COMBINE_EXT 0x8570 |
|
1844 #define GL_COMBINE_RGB_EXT 0x8571 |
|
1845 #define GL_COMBINE_ALPHA_EXT 0x8572 |
|
1846 #define GL_RGB_SCALE_EXT 0x8573 |
|
1847 #define GL_ADD_SIGNED_EXT 0x8574 |
|
1848 #define GL_INTERPOLATE_EXT 0x8575 |
|
1849 #define GL_CONSTANT_EXT 0x8576 |
|
1850 #define GL_PRIMARY_COLOR_EXT 0x8577 |
|
1851 #define GL_PREVIOUS_EXT 0x8578 |
|
1852 #define GL_SOURCE0_RGB_EXT 0x8580 |
|
1853 #define GL_SOURCE1_RGB_EXT 0x8581 |
|
1854 #define GL_SOURCE2_RGB_EXT 0x8582 |
|
1855 #define GL_SOURCE0_ALPHA_EXT 0x8588 |
|
1856 #define GL_SOURCE1_ALPHA_EXT 0x8589 |
|
1857 #define GL_SOURCE2_ALPHA_EXT 0x858A |
|
1858 #define GL_OPERAND0_RGB_EXT 0x8590 |
|
1859 #define GL_OPERAND1_RGB_EXT 0x8591 |
|
1860 #define GL_OPERAND2_RGB_EXT 0x8592 |
|
1861 #define GL_OPERAND0_ALPHA_EXT 0x8598 |
|
1862 #define GL_OPERAND1_ALPHA_EXT 0x8599 |
|
1863 #define GL_OPERAND2_ALPHA_EXT 0x859A |
|
1864 #endif |
|
1865 |
|
1866 #ifndef GL_APPLE_specular_vector |
|
1867 #define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 |
|
1868 #endif |
|
1869 |
|
1870 #ifndef GL_APPLE_transform_hint |
|
1871 #define GL_TRANSFORM_HINT_APPLE 0x85B1 |
|
1872 #endif |
|
1873 |
|
1874 #ifndef GL_SGIX_fog_scale |
|
1875 #define GL_FOG_SCALE_SGIX 0x81FC |
|
1876 #define GL_FOG_SCALE_VALUE_SGIX 0x81FD |
|
1877 #endif |
|
1878 |
|
1879 #ifndef GL_SUNX_constant_data |
|
1880 #define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 |
|
1881 #define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 |
|
1882 #endif |
|
1883 |
|
1884 #ifndef GL_SUN_global_alpha |
|
1885 #define GL_GLOBAL_ALPHA_SUN 0x81D9 |
|
1886 #define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA |
|
1887 #endif |
|
1888 |
|
1889 #ifndef GL_SUN_triangle_list |
|
1890 #define GL_RESTART_SUN 0x0001 |
|
1891 #define GL_REPLACE_MIDDLE_SUN 0x0002 |
|
1892 #define GL_REPLACE_OLDEST_SUN 0x0003 |
|
1893 #define GL_TRIANGLE_LIST_SUN 0x81D7 |
|
1894 #define GL_REPLACEMENT_CODE_SUN 0x81D8 |
|
1895 #define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 |
|
1896 #define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 |
|
1897 #define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 |
|
1898 #define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 |
|
1899 #define GL_R1UI_V3F_SUN 0x85C4 |
|
1900 #define GL_R1UI_C4UB_V3F_SUN 0x85C5 |
|
1901 #define GL_R1UI_C3F_V3F_SUN 0x85C6 |
|
1902 #define GL_R1UI_N3F_V3F_SUN 0x85C7 |
|
1903 #define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 |
|
1904 #define GL_R1UI_T2F_V3F_SUN 0x85C9 |
|
1905 #define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA |
|
1906 #define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB |
|
1907 #endif |
|
1908 |
|
1909 #ifndef GL_SUN_vertex |
|
1910 #endif |
|
1911 |
|
1912 #ifndef GL_EXT_blend_func_separate |
|
1913 #define GL_BLEND_DST_RGB_EXT 0x80C8 |
|
1914 #define GL_BLEND_SRC_RGB_EXT 0x80C9 |
|
1915 #define GL_BLEND_DST_ALPHA_EXT 0x80CA |
|
1916 #define GL_BLEND_SRC_ALPHA_EXT 0x80CB |
|
1917 #endif |
|
1918 |
|
1919 #ifndef GL_INGR_color_clamp |
|
1920 #define GL_RED_MIN_CLAMP_INGR 0x8560 |
|
1921 #define GL_GREEN_MIN_CLAMP_INGR 0x8561 |
|
1922 #define GL_BLUE_MIN_CLAMP_INGR 0x8562 |
|
1923 #define GL_ALPHA_MIN_CLAMP_INGR 0x8563 |
|
1924 #define GL_RED_MAX_CLAMP_INGR 0x8564 |
|
1925 #define GL_GREEN_MAX_CLAMP_INGR 0x8565 |
|
1926 #define GL_BLUE_MAX_CLAMP_INGR 0x8566 |
|
1927 #define GL_ALPHA_MAX_CLAMP_INGR 0x8567 |
|
1928 #endif |
|
1929 |
|
1930 #ifndef GL_INGR_interlace_read |
|
1931 #define GL_INTERLACE_READ_INGR 0x8568 |
|
1932 #endif |
|
1933 |
|
1934 #ifndef GL_EXT_stencil_wrap |
|
1935 #define GL_INCR_WRAP_EXT 0x8507 |
|
1936 #define GL_DECR_WRAP_EXT 0x8508 |
|
1937 #endif |
|
1938 |
|
1939 #ifndef GL_EXT_422_pixels |
|
1940 #define GL_422_EXT 0x80CC |
|
1941 #define GL_422_REV_EXT 0x80CD |
|
1942 #define GL_422_AVERAGE_EXT 0x80CE |
|
1943 #define GL_422_REV_AVERAGE_EXT 0x80CF |
|
1944 #endif |
|
1945 |
|
1946 #ifndef GL_NV_texgen_reflection |
|
1947 #define GL_NORMAL_MAP_NV 0x8511 |
|
1948 #define GL_REFLECTION_MAP_NV 0x8512 |
|
1949 #endif |
|
1950 |
|
1951 #ifndef GL_EXT_texture_cube_map |
|
1952 #define GL_NORMAL_MAP_EXT 0x8511 |
|
1953 #define GL_REFLECTION_MAP_EXT 0x8512 |
|
1954 #define GL_TEXTURE_CUBE_MAP_EXT 0x8513 |
|
1955 #define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 |
|
1956 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 |
|
1957 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 |
|
1958 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 |
|
1959 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 |
|
1960 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 |
|
1961 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A |
|
1962 #define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B |
|
1963 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C |
|
1964 #endif |
|
1965 |
|
1966 #ifndef GL_SUN_convolution_border_modes |
|
1967 #define GL_WRAP_BORDER_SUN 0x81D4 |
|
1968 #endif |
|
1969 |
|
1970 #ifndef GL_EXT_texture_env_add |
|
1971 #endif |
|
1972 |
|
1973 #ifndef GL_EXT_texture_lod_bias |
|
1974 #define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD |
|
1975 #define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 |
|
1976 #define GL_TEXTURE_LOD_BIAS_EXT 0x8501 |
|
1977 #endif |
|
1978 |
|
1979 #ifndef GL_EXT_texture_filter_anisotropic |
|
1980 #define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE |
|
1981 #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF |
|
1982 #endif |
|
1983 |
|
1984 #ifndef GL_EXT_vertex_weighting |
|
1985 #define GL_MODELVIEW0_STACK_DEPTH_EXT GL_MODELVIEW_STACK_DEPTH |
|
1986 #define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 |
|
1987 #define GL_MODELVIEW0_MATRIX_EXT GL_MODELVIEW_MATRIX |
|
1988 #define GL_MODELVIEW1_MATRIX_EXT 0x8506 |
|
1989 #define GL_VERTEX_WEIGHTING_EXT 0x8509 |
|
1990 #define GL_MODELVIEW0_EXT GL_MODELVIEW |
|
1991 #define GL_MODELVIEW1_EXT 0x850A |
|
1992 #define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B |
|
1993 #define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C |
|
1994 #define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D |
|
1995 #define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E |
|
1996 #define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F |
|
1997 #define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 |
|
1998 #endif |
|
1999 |
|
2000 #ifndef GL_NV_light_max_exponent |
|
2001 #define GL_MAX_SHININESS_NV 0x8504 |
|
2002 #define GL_MAX_SPOT_EXPONENT_NV 0x8505 |
|
2003 #endif |
|
2004 |
|
2005 #ifndef GL_NV_vertex_array_range |
|
2006 #define GL_VERTEX_ARRAY_RANGE_NV 0x851D |
|
2007 #define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E |
|
2008 #define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F |
|
2009 #define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 |
|
2010 #define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 |
|
2011 #endif |
|
2012 |
|
2013 #ifndef GL_NV_register_combiners |
|
2014 #define GL_REGISTER_COMBINERS_NV 0x8522 |
|
2015 #define GL_VARIABLE_A_NV 0x8523 |
|
2016 #define GL_VARIABLE_B_NV 0x8524 |
|
2017 #define GL_VARIABLE_C_NV 0x8525 |
|
2018 #define GL_VARIABLE_D_NV 0x8526 |
|
2019 #define GL_VARIABLE_E_NV 0x8527 |
|
2020 #define GL_VARIABLE_F_NV 0x8528 |
|
2021 #define GL_VARIABLE_G_NV 0x8529 |
|
2022 #define GL_CONSTANT_COLOR0_NV 0x852A |
|
2023 #define GL_CONSTANT_COLOR1_NV 0x852B |
|
2024 #define GL_PRIMARY_COLOR_NV 0x852C |
|
2025 #define GL_SECONDARY_COLOR_NV 0x852D |
|
2026 #define GL_SPARE0_NV 0x852E |
|
2027 #define GL_SPARE1_NV 0x852F |
|
2028 #define GL_DISCARD_NV 0x8530 |
|
2029 #define GL_E_TIMES_F_NV 0x8531 |
|
2030 #define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 |
|
2031 #define GL_UNSIGNED_IDENTITY_NV 0x8536 |
|
2032 #define GL_UNSIGNED_INVERT_NV 0x8537 |
|
2033 #define GL_EXPAND_NORMAL_NV 0x8538 |
|
2034 #define GL_EXPAND_NEGATE_NV 0x8539 |
|
2035 #define GL_HALF_BIAS_NORMAL_NV 0x853A |
|
2036 #define GL_HALF_BIAS_NEGATE_NV 0x853B |
|
2037 #define GL_SIGNED_IDENTITY_NV 0x853C |
|
2038 #define GL_SIGNED_NEGATE_NV 0x853D |
|
2039 #define GL_SCALE_BY_TWO_NV 0x853E |
|
2040 #define GL_SCALE_BY_FOUR_NV 0x853F |
|
2041 #define GL_SCALE_BY_ONE_HALF_NV 0x8540 |
|
2042 #define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 |
|
2043 #define GL_COMBINER_INPUT_NV 0x8542 |
|
2044 #define GL_COMBINER_MAPPING_NV 0x8543 |
|
2045 #define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 |
|
2046 #define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 |
|
2047 #define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 |
|
2048 #define GL_COMBINER_MUX_SUM_NV 0x8547 |
|
2049 #define GL_COMBINER_SCALE_NV 0x8548 |
|
2050 #define GL_COMBINER_BIAS_NV 0x8549 |
|
2051 #define GL_COMBINER_AB_OUTPUT_NV 0x854A |
|
2052 #define GL_COMBINER_CD_OUTPUT_NV 0x854B |
|
2053 #define GL_COMBINER_SUM_OUTPUT_NV 0x854C |
|
2054 #define GL_MAX_GENERAL_COMBINERS_NV 0x854D |
|
2055 #define GL_NUM_GENERAL_COMBINERS_NV 0x854E |
|
2056 #define GL_COLOR_SUM_CLAMP_NV 0x854F |
|
2057 #define GL_COMBINER0_NV 0x8550 |
|
2058 #define GL_COMBINER1_NV 0x8551 |
|
2059 #define GL_COMBINER2_NV 0x8552 |
|
2060 #define GL_COMBINER3_NV 0x8553 |
|
2061 #define GL_COMBINER4_NV 0x8554 |
|
2062 #define GL_COMBINER5_NV 0x8555 |
|
2063 #define GL_COMBINER6_NV 0x8556 |
|
2064 #define GL_COMBINER7_NV 0x8557 |
|
2065 /* reuse GL_TEXTURE0_ARB */ |
|
2066 /* reuse GL_TEXTURE1_ARB */ |
|
2067 /* reuse GL_ZERO */ |
|
2068 /* reuse GL_NONE */ |
|
2069 /* reuse GL_FOG */ |
|
2070 #endif |
|
2071 |
|
2072 #ifndef GL_NV_fog_distance |
|
2073 #define GL_FOG_DISTANCE_MODE_NV 0x855A |
|
2074 #define GL_EYE_RADIAL_NV 0x855B |
|
2075 #define GL_EYE_PLANE_ABSOLUTE_NV 0x855C |
|
2076 /* reuse GL_EYE_PLANE */ |
|
2077 #endif |
|
2078 |
|
2079 #ifndef GL_NV_texgen_emboss |
|
2080 #define GL_EMBOSS_LIGHT_NV 0x855D |
|
2081 #define GL_EMBOSS_CONSTANT_NV 0x855E |
|
2082 #define GL_EMBOSS_MAP_NV 0x855F |
|
2083 #endif |
|
2084 |
|
2085 #ifndef GL_NV_blend_square |
|
2086 #endif |
|
2087 |
|
2088 #ifndef GL_NV_texture_env_combine4 |
|
2089 #define GL_COMBINE4_NV 0x8503 |
|
2090 #define GL_SOURCE3_RGB_NV 0x8583 |
|
2091 #define GL_SOURCE3_ALPHA_NV 0x858B |
|
2092 #define GL_OPERAND3_RGB_NV 0x8593 |
|
2093 #define GL_OPERAND3_ALPHA_NV 0x859B |
|
2094 #endif |
|
2095 |
|
2096 #ifndef GL_MESA_resize_buffers |
|
2097 #endif |
|
2098 |
|
2099 #ifndef GL_MESA_window_pos |
|
2100 #endif |
|
2101 |
|
2102 #ifndef GL_EXT_texture_compression_s3tc |
|
2103 #define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 |
|
2104 #define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 |
|
2105 #define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 |
|
2106 #define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 |
|
2107 #endif |
|
2108 |
|
2109 #ifndef GL_IBM_cull_vertex |
|
2110 #define GL_CULL_VERTEX_IBM 103050 |
|
2111 #endif |
|
2112 |
|
2113 #ifndef GL_IBM_multimode_draw_arrays |
|
2114 #endif |
|
2115 |
|
2116 #ifndef GL_IBM_vertex_array_lists |
|
2117 #define GL_VERTEX_ARRAY_LIST_IBM 103070 |
|
2118 #define GL_NORMAL_ARRAY_LIST_IBM 103071 |
|
2119 #define GL_COLOR_ARRAY_LIST_IBM 103072 |
|
2120 #define GL_INDEX_ARRAY_LIST_IBM 103073 |
|
2121 #define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 |
|
2122 #define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 |
|
2123 #define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 |
|
2124 #define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 |
|
2125 #define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 |
|
2126 #define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 |
|
2127 #define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 |
|
2128 #define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 |
|
2129 #define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 |
|
2130 #define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 |
|
2131 #define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 |
|
2132 #define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 |
|
2133 #endif |
|
2134 |
|
2135 #ifndef GL_SGIX_subsample |
|
2136 #define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 |
|
2137 #define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 |
|
2138 #define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 |
|
2139 #define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 |
|
2140 #define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 |
|
2141 #endif |
|
2142 |
|
2143 #ifndef GL_SGIX_ycrcb_subsample |
|
2144 #endif |
|
2145 |
|
2146 #ifndef GL_SGIX_ycrcba |
|
2147 #define GL_YCRCB_SGIX 0x8318 |
|
2148 #define GL_YCRCBA_SGIX 0x8319 |
|
2149 #endif |
|
2150 |
|
2151 #ifndef GL_SGI_depth_pass_instrument |
|
2152 #define GL_DEPTH_PASS_INSTRUMENT_SGIX 0x8310 |
|
2153 #define GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX 0x8311 |
|
2154 #define GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX 0x8312 |
|
2155 #endif |
|
2156 |
|
2157 #ifndef GL_3DFX_texture_compression_FXT1 |
|
2158 #define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 |
|
2159 #define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 |
|
2160 #endif |
|
2161 |
|
2162 #ifndef GL_3DFX_multisample |
|
2163 #define GL_MULTISAMPLE_3DFX 0x86B2 |
|
2164 #define GL_SAMPLE_BUFFERS_3DFX 0x86B3 |
|
2165 #define GL_SAMPLES_3DFX 0x86B4 |
|
2166 #define GL_MULTISAMPLE_BIT_3DFX 0x20000000 |
|
2167 #endif |
|
2168 |
|
2169 #ifndef GL_3DFX_tbuffer |
|
2170 #endif |
|
2171 |
|
2172 #ifndef GL_EXT_multisample |
|
2173 #define GL_MULTISAMPLE_EXT 0x809D |
|
2174 #define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E |
|
2175 #define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F |
|
2176 #define GL_SAMPLE_MASK_EXT 0x80A0 |
|
2177 #define GL_1PASS_EXT 0x80A1 |
|
2178 #define GL_2PASS_0_EXT 0x80A2 |
|
2179 #define GL_2PASS_1_EXT 0x80A3 |
|
2180 #define GL_4PASS_0_EXT 0x80A4 |
|
2181 #define GL_4PASS_1_EXT 0x80A5 |
|
2182 #define GL_4PASS_2_EXT 0x80A6 |
|
2183 #define GL_4PASS_3_EXT 0x80A7 |
|
2184 #define GL_SAMPLE_BUFFERS_EXT 0x80A8 |
|
2185 #define GL_SAMPLES_EXT 0x80A9 |
|
2186 #define GL_SAMPLE_MASK_VALUE_EXT 0x80AA |
|
2187 #define GL_SAMPLE_MASK_INVERT_EXT 0x80AB |
|
2188 #define GL_SAMPLE_PATTERN_EXT 0x80AC |
|
2189 #define GL_MULTISAMPLE_BIT_EXT 0x20000000 |
|
2190 #endif |
|
2191 |
|
2192 #ifndef GL_SGIX_vertex_preclip |
|
2193 #define GL_VERTEX_PRECLIP_SGIX 0x83EE |
|
2194 #define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF |
|
2195 #endif |
|
2196 |
|
2197 #ifndef GL_SGIX_convolution_accuracy |
|
2198 #define GL_CONVOLUTION_HINT_SGIX 0x8316 |
|
2199 #endif |
|
2200 |
|
2201 #ifndef GL_SGIX_resample |
|
2202 #define GL_PACK_RESAMPLE_SGIX 0x842C |
|
2203 #define GL_UNPACK_RESAMPLE_SGIX 0x842D |
|
2204 #define GL_RESAMPLE_REPLICATE_SGIX 0x842E |
|
2205 #define GL_RESAMPLE_ZERO_FILL_SGIX 0x842F |
|
2206 #define GL_RESAMPLE_DECIMATE_SGIX 0x8430 |
|
2207 #endif |
|
2208 |
|
2209 #ifndef GL_SGIS_point_line_texgen |
|
2210 #define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 |
|
2211 #define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 |
|
2212 #define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 |
|
2213 #define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 |
|
2214 #define GL_EYE_POINT_SGIS 0x81F4 |
|
2215 #define GL_OBJECT_POINT_SGIS 0x81F5 |
|
2216 #define GL_EYE_LINE_SGIS 0x81F6 |
|
2217 #define GL_OBJECT_LINE_SGIS 0x81F7 |
|
2218 #endif |
|
2219 |
|
2220 #ifndef GL_SGIS_texture_color_mask |
|
2221 #define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF |
|
2222 #endif |
|
2223 |
|
2224 #ifndef GL_EXT_texture_env_dot3 |
|
2225 #define GL_DOT3_RGB_EXT 0x8740 |
|
2226 #define GL_DOT3_RGBA_EXT 0x8741 |
|
2227 #endif |
|
2228 |
|
2229 #ifndef GL_ATI_texture_mirror_once |
|
2230 #define GL_MIRROR_CLAMP_ATI 0x8742 |
|
2231 #define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 |
|
2232 #endif |
|
2233 |
|
2234 #ifndef GL_NV_fence |
|
2235 #define GL_ALL_COMPLETED_NV 0x84F2 |
|
2236 #define GL_FENCE_STATUS_NV 0x84F3 |
|
2237 #define GL_FENCE_CONDITION_NV 0x84F4 |
|
2238 #endif |
|
2239 |
|
2240 #ifndef GL_IBM_texture_mirrored_repeat |
|
2241 #define GL_MIRRORED_REPEAT_IBM 0x8370 |
|
2242 #endif |
|
2243 |
|
2244 #ifndef GL_NV_evaluators |
|
2245 #define GL_EVAL_2D_NV 0x86C0 |
|
2246 #define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 |
|
2247 #define GL_MAP_TESSELLATION_NV 0x86C2 |
|
2248 #define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 |
|
2249 #define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 |
|
2250 #define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 |
|
2251 #define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 |
|
2252 #define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 |
|
2253 #define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 |
|
2254 #define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 |
|
2255 #define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA |
|
2256 #define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB |
|
2257 #define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC |
|
2258 #define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD |
|
2259 #define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE |
|
2260 #define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF |
|
2261 #define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 |
|
2262 #define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 |
|
2263 #define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 |
|
2264 #define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 |
|
2265 #define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 |
|
2266 #define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 |
|
2267 #define GL_MAX_MAP_TESSELLATION_NV 0x86D6 |
|
2268 #define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 |
|
2269 #endif |
|
2270 |
|
2271 #ifndef GL_NV_packed_depth_stencil |
|
2272 #define GL_DEPTH_STENCIL_NV 0x84F9 |
|
2273 #define GL_UNSIGNED_INT_24_8_NV 0x84FA |
|
2274 #endif |
|
2275 |
|
2276 #ifndef GL_NV_register_combiners2 |
|
2277 #define GL_PER_STAGE_CONSTANTS_NV 0x8535 |
|
2278 #endif |
|
2279 |
|
2280 #ifndef GL_NV_texture_compression_vtc |
|
2281 #endif |
|
2282 |
|
2283 #ifndef GL_NV_texture_rectangle |
|
2284 #define GL_TEXTURE_RECTANGLE_NV 0x84F5 |
|
2285 #define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 |
|
2286 #define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 |
|
2287 #define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 |
|
2288 #endif |
|
2289 |
|
2290 #ifndef GL_NV_texture_shader |
|
2291 #define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C |
|
2292 #define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D |
|
2293 #define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E |
|
2294 #define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 |
|
2295 #define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA |
|
2296 #define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB |
|
2297 #define GL_DSDT_MAG_INTENSITY_NV 0x86DC |
|
2298 #define GL_SHADER_CONSISTENT_NV 0x86DD |
|
2299 #define GL_TEXTURE_SHADER_NV 0x86DE |
|
2300 #define GL_SHADER_OPERATION_NV 0x86DF |
|
2301 #define GL_CULL_MODES_NV 0x86E0 |
|
2302 #define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 |
|
2303 #define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 |
|
2304 #define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 |
|
2305 #define GL_OFFSET_TEXTURE_2D_MATRIX_NV GL_OFFSET_TEXTURE_MATRIX_NV |
|
2306 #define GL_OFFSET_TEXTURE_2D_SCALE_NV GL_OFFSET_TEXTURE_SCALE_NV |
|
2307 #define GL_OFFSET_TEXTURE_2D_BIAS_NV GL_OFFSET_TEXTURE_BIAS_NV |
|
2308 #define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 |
|
2309 #define GL_CONST_EYE_NV 0x86E5 |
|
2310 #define GL_PASS_THROUGH_NV 0x86E6 |
|
2311 #define GL_CULL_FRAGMENT_NV 0x86E7 |
|
2312 #define GL_OFFSET_TEXTURE_2D_NV 0x86E8 |
|
2313 #define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 |
|
2314 #define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA |
|
2315 #define GL_DOT_PRODUCT_NV 0x86EC |
|
2316 #define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED |
|
2317 #define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE |
|
2318 #define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 |
|
2319 #define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 |
|
2320 #define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 |
|
2321 #define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 |
|
2322 #define GL_HILO_NV 0x86F4 |
|
2323 #define GL_DSDT_NV 0x86F5 |
|
2324 #define GL_DSDT_MAG_NV 0x86F6 |
|
2325 #define GL_DSDT_MAG_VIB_NV 0x86F7 |
|
2326 #define GL_HILO16_NV 0x86F8 |
|
2327 #define GL_SIGNED_HILO_NV 0x86F9 |
|
2328 #define GL_SIGNED_HILO16_NV 0x86FA |
|
2329 #define GL_SIGNED_RGBA_NV 0x86FB |
|
2330 #define GL_SIGNED_RGBA8_NV 0x86FC |
|
2331 #define GL_SIGNED_RGB_NV 0x86FE |
|
2332 #define GL_SIGNED_RGB8_NV 0x86FF |
|
2333 #define GL_SIGNED_LUMINANCE_NV 0x8701 |
|
2334 #define GL_SIGNED_LUMINANCE8_NV 0x8702 |
|
2335 #define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 |
|
2336 #define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 |
|
2337 #define GL_SIGNED_ALPHA_NV 0x8705 |
|
2338 #define GL_SIGNED_ALPHA8_NV 0x8706 |
|
2339 #define GL_SIGNED_INTENSITY_NV 0x8707 |
|
2340 #define GL_SIGNED_INTENSITY8_NV 0x8708 |
|
2341 #define GL_DSDT8_NV 0x8709 |
|
2342 #define GL_DSDT8_MAG8_NV 0x870A |
|
2343 #define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B |
|
2344 #define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C |
|
2345 #define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D |
|
2346 #define GL_HI_SCALE_NV 0x870E |
|
2347 #define GL_LO_SCALE_NV 0x870F |
|
2348 #define GL_DS_SCALE_NV 0x8710 |
|
2349 #define GL_DT_SCALE_NV 0x8711 |
|
2350 #define GL_MAGNITUDE_SCALE_NV 0x8712 |
|
2351 #define GL_VIBRANCE_SCALE_NV 0x8713 |
|
2352 #define GL_HI_BIAS_NV 0x8714 |
|
2353 #define GL_LO_BIAS_NV 0x8715 |
|
2354 #define GL_DS_BIAS_NV 0x8716 |
|
2355 #define GL_DT_BIAS_NV 0x8717 |
|
2356 #define GL_MAGNITUDE_BIAS_NV 0x8718 |
|
2357 #define GL_VIBRANCE_BIAS_NV 0x8719 |
|
2358 #define GL_TEXTURE_BORDER_VALUES_NV 0x871A |
|
2359 #define GL_TEXTURE_HI_SIZE_NV 0x871B |
|
2360 #define GL_TEXTURE_LO_SIZE_NV 0x871C |
|
2361 #define GL_TEXTURE_DS_SIZE_NV 0x871D |
|
2362 #define GL_TEXTURE_DT_SIZE_NV 0x871E |
|
2363 #define GL_TEXTURE_MAG_SIZE_NV 0x871F |
|
2364 #endif |
|
2365 |
|
2366 #ifndef GL_NV_texture_shader2 |
|
2367 #define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF |
|
2368 #endif |
|
2369 |
|
2370 #ifndef GL_NV_vertex_array_range2 |
|
2371 #define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 |
|
2372 #endif |
|
2373 |
|
2374 #ifndef GL_NV_vertex_program |
|
2375 #define GL_VERTEX_PROGRAM_NV 0x8620 |
|
2376 #define GL_VERTEX_STATE_PROGRAM_NV 0x8621 |
|
2377 #define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 |
|
2378 #define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 |
|
2379 #define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 |
|
2380 #define GL_CURRENT_ATTRIB_NV 0x8626 |
|
2381 #define GL_PROGRAM_LENGTH_NV 0x8627 |
|
2382 #define GL_PROGRAM_STRING_NV 0x8628 |
|
2383 #define GL_MODELVIEW_PROJECTION_NV 0x8629 |
|
2384 #define GL_IDENTITY_NV 0x862A |
|
2385 #define GL_INVERSE_NV 0x862B |
|
2386 #define GL_TRANSPOSE_NV 0x862C |
|
2387 #define GL_INVERSE_TRANSPOSE_NV 0x862D |
|
2388 #define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E |
|
2389 #define GL_MAX_TRACK_MATRICES_NV 0x862F |
|
2390 #define GL_MATRIX0_NV 0x8630 |
|
2391 #define GL_MATRIX1_NV 0x8631 |
|
2392 #define GL_MATRIX2_NV 0x8632 |
|
2393 #define GL_MATRIX3_NV 0x8633 |
|
2394 #define GL_MATRIX4_NV 0x8634 |
|
2395 #define GL_MATRIX5_NV 0x8635 |
|
2396 #define GL_MATRIX6_NV 0x8636 |
|
2397 #define GL_MATRIX7_NV 0x8637 |
|
2398 #define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 |
|
2399 #define GL_CURRENT_MATRIX_NV 0x8641 |
|
2400 #define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 |
|
2401 #define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 |
|
2402 #define GL_PROGRAM_PARAMETER_NV 0x8644 |
|
2403 #define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 |
|
2404 #define GL_PROGRAM_TARGET_NV 0x8646 |
|
2405 #define GL_PROGRAM_RESIDENT_NV 0x8647 |
|
2406 #define GL_TRACK_MATRIX_NV 0x8648 |
|
2407 #define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 |
|
2408 #define GL_VERTEX_PROGRAM_BINDING_NV 0x864A |
|
2409 #define GL_PROGRAM_ERROR_POSITION_NV 0x864B |
|
2410 #define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 |
|
2411 #define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 |
|
2412 #define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 |
|
2413 #define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 |
|
2414 #define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 |
|
2415 #define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 |
|
2416 #define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 |
|
2417 #define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 |
|
2418 #define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 |
|
2419 #define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 |
|
2420 #define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A |
|
2421 #define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B |
|
2422 #define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C |
|
2423 #define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D |
|
2424 #define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E |
|
2425 #define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F |
|
2426 #define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 |
|
2427 #define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 |
|
2428 #define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 |
|
2429 #define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 |
|
2430 #define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 |
|
2431 #define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 |
|
2432 #define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 |
|
2433 #define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 |
|
2434 #define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 |
|
2435 #define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 |
|
2436 #define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A |
|
2437 #define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B |
|
2438 #define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C |
|
2439 #define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D |
|
2440 #define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E |
|
2441 #define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F |
|
2442 #define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 |
|
2443 #define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 |
|
2444 #define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 |
|
2445 #define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 |
|
2446 #define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 |
|
2447 #define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 |
|
2448 #define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 |
|
2449 #define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 |
|
2450 #define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 |
|
2451 #define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 |
|
2452 #define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A |
|
2453 #define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B |
|
2454 #define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C |
|
2455 #define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D |
|
2456 #define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E |
|
2457 #define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F |
|
2458 #endif |
|
2459 |
|
2460 #ifndef GL_SGIX_texture_coordinate_clamp |
|
2461 #define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 |
|
2462 #define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A |
|
2463 #define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B |
|
2464 #endif |
|
2465 |
|
2466 #ifndef GL_SGIX_scalebias_hint |
|
2467 #define GL_SCALEBIAS_HINT_SGIX 0x8322 |
|
2468 #endif |
|
2469 |
|
2470 #ifndef GL_OML_interlace |
|
2471 #define GL_INTERLACE_OML 0x8980 |
|
2472 #define GL_INTERLACE_READ_OML 0x8981 |
|
2473 #endif |
|
2474 |
|
2475 #ifndef GL_OML_subsample |
|
2476 #define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 |
|
2477 #define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 |
|
2478 #endif |
|
2479 |
|
2480 #ifndef GL_OML_resample |
|
2481 #define GL_PACK_RESAMPLE_OML 0x8984 |
|
2482 #define GL_UNPACK_RESAMPLE_OML 0x8985 |
|
2483 #define GL_RESAMPLE_REPLICATE_OML 0x8986 |
|
2484 #define GL_RESAMPLE_ZERO_FILL_OML 0x8987 |
|
2485 #define GL_RESAMPLE_AVERAGE_OML 0x8988 |
|
2486 #define GL_RESAMPLE_DECIMATE_OML 0x8989 |
|
2487 #endif |
|
2488 |
|
2489 #ifndef GL_NV_copy_depth_to_color |
|
2490 #define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E |
|
2491 #define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F |
|
2492 #endif |
|
2493 |
|
2494 #ifndef GL_ATI_envmap_bumpmap |
|
2495 #define GL_BUMP_ROT_MATRIX_ATI 0x8775 |
|
2496 #define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 |
|
2497 #define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 |
|
2498 #define GL_BUMP_TEX_UNITS_ATI 0x8778 |
|
2499 #define GL_DUDV_ATI 0x8779 |
|
2500 #define GL_DU8DV8_ATI 0x877A |
|
2501 #define GL_BUMP_ENVMAP_ATI 0x877B |
|
2502 #define GL_BUMP_TARGET_ATI 0x877C |
|
2503 #endif |
|
2504 |
|
2505 #ifndef GL_ATI_fragment_shader |
|
2506 #define GL_FRAGMENT_SHADER_ATI 0x8920 |
|
2507 #define GL_REG_0_ATI 0x8921 |
|
2508 #define GL_REG_1_ATI 0x8922 |
|
2509 #define GL_REG_2_ATI 0x8923 |
|
2510 #define GL_REG_3_ATI 0x8924 |
|
2511 #define GL_REG_4_ATI 0x8925 |
|
2512 #define GL_REG_5_ATI 0x8926 |
|
2513 #define GL_REG_6_ATI 0x8927 |
|
2514 #define GL_REG_7_ATI 0x8928 |
|
2515 #define GL_REG_8_ATI 0x8929 |
|
2516 #define GL_REG_9_ATI 0x892A |
|
2517 #define GL_REG_10_ATI 0x892B |
|
2518 #define GL_REG_11_ATI 0x892C |
|
2519 #define GL_REG_12_ATI 0x892D |
|
2520 #define GL_REG_13_ATI 0x892E |
|
2521 #define GL_REG_14_ATI 0x892F |
|
2522 #define GL_REG_15_ATI 0x8930 |
|
2523 #define GL_REG_16_ATI 0x8931 |
|
2524 #define GL_REG_17_ATI 0x8932 |
|
2525 #define GL_REG_18_ATI 0x8933 |
|
2526 #define GL_REG_19_ATI 0x8934 |
|
2527 #define GL_REG_20_ATI 0x8935 |
|
2528 #define GL_REG_21_ATI 0x8936 |
|
2529 #define GL_REG_22_ATI 0x8937 |
|
2530 #define GL_REG_23_ATI 0x8938 |
|
2531 #define GL_REG_24_ATI 0x8939 |
|
2532 #define GL_REG_25_ATI 0x893A |
|
2533 #define GL_REG_26_ATI 0x893B |
|
2534 #define GL_REG_27_ATI 0x893C |
|
2535 #define GL_REG_28_ATI 0x893D |
|
2536 #define GL_REG_29_ATI 0x893E |
|
2537 #define GL_REG_30_ATI 0x893F |
|
2538 #define GL_REG_31_ATI 0x8940 |
|
2539 #define GL_CON_0_ATI 0x8941 |
|
2540 #define GL_CON_1_ATI 0x8942 |
|
2541 #define GL_CON_2_ATI 0x8943 |
|
2542 #define GL_CON_3_ATI 0x8944 |
|
2543 #define GL_CON_4_ATI 0x8945 |
|
2544 #define GL_CON_5_ATI 0x8946 |
|
2545 #define GL_CON_6_ATI 0x8947 |
|
2546 #define GL_CON_7_ATI 0x8948 |
|
2547 #define GL_CON_8_ATI 0x8949 |
|
2548 #define GL_CON_9_ATI 0x894A |
|
2549 #define GL_CON_10_ATI 0x894B |
|
2550 #define GL_CON_11_ATI 0x894C |
|
2551 #define GL_CON_12_ATI 0x894D |
|
2552 #define GL_CON_13_ATI 0x894E |
|
2553 #define GL_CON_14_ATI 0x894F |
|
2554 #define GL_CON_15_ATI 0x8950 |
|
2555 #define GL_CON_16_ATI 0x8951 |
|
2556 #define GL_CON_17_ATI 0x8952 |
|
2557 #define GL_CON_18_ATI 0x8953 |
|
2558 #define GL_CON_19_ATI 0x8954 |
|
2559 #define GL_CON_20_ATI 0x8955 |
|
2560 #define GL_CON_21_ATI 0x8956 |
|
2561 #define GL_CON_22_ATI 0x8957 |
|
2562 #define GL_CON_23_ATI 0x8958 |
|
2563 #define GL_CON_24_ATI 0x8959 |
|
2564 #define GL_CON_25_ATI 0x895A |
|
2565 #define GL_CON_26_ATI 0x895B |
|
2566 #define GL_CON_27_ATI 0x895C |
|
2567 #define GL_CON_28_ATI 0x895D |
|
2568 #define GL_CON_29_ATI 0x895E |
|
2569 #define GL_CON_30_ATI 0x895F |
|
2570 #define GL_CON_31_ATI 0x8960 |
|
2571 #define GL_MOV_ATI 0x8961 |
|
2572 #define GL_ADD_ATI 0x8963 |
|
2573 #define GL_MUL_ATI 0x8964 |
|
2574 #define GL_SUB_ATI 0x8965 |
|
2575 #define GL_DOT3_ATI 0x8966 |
|
2576 #define GL_DOT4_ATI 0x8967 |
|
2577 #define GL_MAD_ATI 0x8968 |
|
2578 #define GL_LERP_ATI 0x8969 |
|
2579 #define GL_CND_ATI 0x896A |
|
2580 #define GL_CND0_ATI 0x896B |
|
2581 #define GL_DOT2_ADD_ATI 0x896C |
|
2582 #define GL_SECONDARY_INTERPOLATOR_ATI 0x896D |
|
2583 #define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E |
|
2584 #define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F |
|
2585 #define GL_NUM_PASSES_ATI 0x8970 |
|
2586 #define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 |
|
2587 #define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 |
|
2588 #define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 |
|
2589 #define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 |
|
2590 #define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 |
|
2591 #define GL_SWIZZLE_STR_ATI 0x8976 |
|
2592 #define GL_SWIZZLE_STQ_ATI 0x8977 |
|
2593 #define GL_SWIZZLE_STR_DR_ATI 0x8978 |
|
2594 #define GL_SWIZZLE_STQ_DQ_ATI 0x8979 |
|
2595 #define GL_SWIZZLE_STRQ_ATI 0x897A |
|
2596 #define GL_SWIZZLE_STRQ_DQ_ATI 0x897B |
|
2597 #define GL_RED_BIT_ATI 0x00000001 |
|
2598 #define GL_GREEN_BIT_ATI 0x00000002 |
|
2599 #define GL_BLUE_BIT_ATI 0x00000004 |
|
2600 #define GL_2X_BIT_ATI 0x00000001 |
|
2601 #define GL_4X_BIT_ATI 0x00000002 |
|
2602 #define GL_8X_BIT_ATI 0x00000004 |
|
2603 #define GL_HALF_BIT_ATI 0x00000008 |
|
2604 #define GL_QUARTER_BIT_ATI 0x00000010 |
|
2605 #define GL_EIGHTH_BIT_ATI 0x00000020 |
|
2606 #define GL_SATURATE_BIT_ATI 0x00000040 |
|
2607 #define GL_COMP_BIT_ATI 0x00000002 |
|
2608 #define GL_NEGATE_BIT_ATI 0x00000004 |
|
2609 #define GL_BIAS_BIT_ATI 0x00000008 |
|
2610 #endif |
|
2611 |
|
2612 #ifndef GL_ATI_pn_triangles |
|
2613 #define GL_PN_TRIANGLES_ATI 0x87F0 |
|
2614 #define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 |
|
2615 #define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 |
|
2616 #define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 |
|
2617 #define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 |
|
2618 #define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 |
|
2619 #define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 |
|
2620 #define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 |
|
2621 #define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 |
|
2622 #endif |
|
2623 |
|
2624 #ifndef GL_ATI_vertex_array_object |
|
2625 #define GL_STATIC_ATI 0x8760 |
|
2626 #define GL_DYNAMIC_ATI 0x8761 |
|
2627 #define GL_PRESERVE_ATI 0x8762 |
|
2628 #define GL_DISCARD_ATI 0x8763 |
|
2629 #define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 |
|
2630 #define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 |
|
2631 #define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 |
|
2632 #define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 |
|
2633 #endif |
|
2634 |
|
2635 #ifndef GL_EXT_vertex_shader |
|
2636 #define GL_VERTEX_SHADER_EXT 0x8780 |
|
2637 #define GL_VERTEX_SHADER_BINDING_EXT 0x8781 |
|
2638 #define GL_OP_INDEX_EXT 0x8782 |
|
2639 #define GL_OP_NEGATE_EXT 0x8783 |
|
2640 #define GL_OP_DOT3_EXT 0x8784 |
|
2641 #define GL_OP_DOT4_EXT 0x8785 |
|
2642 #define GL_OP_MUL_EXT 0x8786 |
|
2643 #define GL_OP_ADD_EXT 0x8787 |
|
2644 #define GL_OP_MADD_EXT 0x8788 |
|
2645 #define GL_OP_FRAC_EXT 0x8789 |
|
2646 #define GL_OP_MAX_EXT 0x878A |
|
2647 #define GL_OP_MIN_EXT 0x878B |
|
2648 #define GL_OP_SET_GE_EXT 0x878C |
|
2649 #define GL_OP_SET_LT_EXT 0x878D |
|
2650 #define GL_OP_CLAMP_EXT 0x878E |
|
2651 #define GL_OP_FLOOR_EXT 0x878F |
|
2652 #define GL_OP_ROUND_EXT 0x8790 |
|
2653 #define GL_OP_EXP_BASE_2_EXT 0x8791 |
|
2654 #define GL_OP_LOG_BASE_2_EXT 0x8792 |
|
2655 #define GL_OP_POWER_EXT 0x8793 |
|
2656 #define GL_OP_RECIP_EXT 0x8794 |
|
2657 #define GL_OP_RECIP_SQRT_EXT 0x8795 |
|
2658 #define GL_OP_SUB_EXT 0x8796 |
|
2659 #define GL_OP_CROSS_PRODUCT_EXT 0x8797 |
|
2660 #define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 |
|
2661 #define GL_OP_MOV_EXT 0x8799 |
|
2662 #define GL_OUTPUT_VERTEX_EXT 0x879A |
|
2663 #define GL_OUTPUT_COLOR0_EXT 0x879B |
|
2664 #define GL_OUTPUT_COLOR1_EXT 0x879C |
|
2665 #define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D |
|
2666 #define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E |
|
2667 #define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F |
|
2668 #define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 |
|
2669 #define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 |
|
2670 #define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 |
|
2671 #define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 |
|
2672 #define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 |
|
2673 #define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 |
|
2674 #define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 |
|
2675 #define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 |
|
2676 #define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 |
|
2677 #define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 |
|
2678 #define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA |
|
2679 #define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB |
|
2680 #define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC |
|
2681 #define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD |
|
2682 #define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE |
|
2683 #define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF |
|
2684 #define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 |
|
2685 #define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 |
|
2686 #define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 |
|
2687 #define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 |
|
2688 #define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 |
|
2689 #define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 |
|
2690 #define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 |
|
2691 #define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 |
|
2692 #define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 |
|
2693 #define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 |
|
2694 #define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA |
|
2695 #define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB |
|
2696 #define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC |
|
2697 #define GL_OUTPUT_FOG_EXT 0x87BD |
|
2698 #define GL_SCALAR_EXT 0x87BE |
|
2699 #define GL_VECTOR_EXT 0x87BF |
|
2700 #define GL_MATRIX_EXT 0x87C0 |
|
2701 #define GL_VARIANT_EXT 0x87C1 |
|
2702 #define GL_INVARIANT_EXT 0x87C2 |
|
2703 #define GL_LOCAL_CONSTANT_EXT 0x87C3 |
|
2704 #define GL_LOCAL_EXT 0x87C4 |
|
2705 #define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 |
|
2706 #define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 |
|
2707 #define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 |
|
2708 #define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 |
|
2709 #define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 |
|
2710 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA |
|
2711 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB |
|
2712 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC |
|
2713 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD |
|
2714 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE |
|
2715 #define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF |
|
2716 #define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 |
|
2717 #define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 |
|
2718 #define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 |
|
2719 #define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 |
|
2720 #define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 |
|
2721 #define GL_X_EXT 0x87D5 |
|
2722 #define GL_Y_EXT 0x87D6 |
|
2723 #define GL_Z_EXT 0x87D7 |
|
2724 #define GL_W_EXT 0x87D8 |
|
2725 #define GL_NEGATIVE_X_EXT 0x87D9 |
|
2726 #define GL_NEGATIVE_Y_EXT 0x87DA |
|
2727 #define GL_NEGATIVE_Z_EXT 0x87DB |
|
2728 #define GL_NEGATIVE_W_EXT 0x87DC |
|
2729 #define GL_ZERO_EXT 0x87DD |
|
2730 #define GL_ONE_EXT 0x87DE |
|
2731 #define GL_NEGATIVE_ONE_EXT 0x87DF |
|
2732 #define GL_NORMALIZED_RANGE_EXT 0x87E0 |
|
2733 #define GL_FULL_RANGE_EXT 0x87E1 |
|
2734 #define GL_CURRENT_VERTEX_EXT 0x87E2 |
|
2735 #define GL_MVP_MATRIX_EXT 0x87E3 |
|
2736 #define GL_VARIANT_VALUE_EXT 0x87E4 |
|
2737 #define GL_VARIANT_DATATYPE_EXT 0x87E5 |
|
2738 #define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 |
|
2739 #define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 |
|
2740 #define GL_VARIANT_ARRAY_EXT 0x87E8 |
|
2741 #define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 |
|
2742 #define GL_INVARIANT_VALUE_EXT 0x87EA |
|
2743 #define GL_INVARIANT_DATATYPE_EXT 0x87EB |
|
2744 #define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC |
|
2745 #define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED |
|
2746 #endif |
|
2747 |
|
2748 #ifndef GL_ATI_vertex_streams |
|
2749 #define GL_MAX_VERTEX_STREAMS_ATI 0x876B |
|
2750 #define GL_VERTEX_STREAM0_ATI 0x876C |
|
2751 #define GL_VERTEX_STREAM1_ATI 0x876D |
|
2752 #define GL_VERTEX_STREAM2_ATI 0x876E |
|
2753 #define GL_VERTEX_STREAM3_ATI 0x876F |
|
2754 #define GL_VERTEX_STREAM4_ATI 0x8770 |
|
2755 #define GL_VERTEX_STREAM5_ATI 0x8771 |
|
2756 #define GL_VERTEX_STREAM6_ATI 0x8772 |
|
2757 #define GL_VERTEX_STREAM7_ATI 0x8773 |
|
2758 #define GL_VERTEX_SOURCE_ATI 0x8774 |
|
2759 #endif |
|
2760 |
|
2761 #ifndef GL_ATI_element_array |
|
2762 #define GL_ELEMENT_ARRAY_ATI 0x8768 |
|
2763 #define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 |
|
2764 #define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A |
|
2765 #endif |
|
2766 |
|
2767 #ifndef GL_SUN_mesh_array |
|
2768 #define GL_QUAD_MESH_SUN 0x8614 |
|
2769 #define GL_TRIANGLE_MESH_SUN 0x8615 |
|
2770 #endif |
|
2771 |
|
2772 #ifndef GL_SUN_slice_accum |
|
2773 #define GL_SLICE_ACCUM_SUN 0x85CC |
|
2774 #endif |
|
2775 |
|
2776 #ifndef GL_NV_multisample_filter_hint |
|
2777 #define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 |
|
2778 #endif |
|
2779 |
|
2780 #ifndef GL_NV_depth_clamp |
|
2781 #define GL_DEPTH_CLAMP_NV 0x864F |
|
2782 #endif |
|
2783 |
|
2784 #ifndef GL_NV_occlusion_query |
|
2785 #define GL_PIXEL_COUNTER_BITS_NV 0x8864 |
|
2786 #define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 |
|
2787 #define GL_PIXEL_COUNT_NV 0x8866 |
|
2788 #define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 |
|
2789 #endif |
|
2790 |
|
2791 #ifndef GL_NV_point_sprite |
|
2792 #define GL_POINT_SPRITE_NV 0x8861 |
|
2793 #define GL_COORD_REPLACE_NV 0x8862 |
|
2794 #define GL_POINT_SPRITE_R_MODE_NV 0x8863 |
|
2795 #endif |
|
2796 |
|
2797 #ifndef GL_NV_texture_shader3 |
|
2798 #define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 |
|
2799 #define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 |
|
2800 #define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 |
|
2801 #define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 |
|
2802 #define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 |
|
2803 #define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 |
|
2804 #define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 |
|
2805 #define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 |
|
2806 #define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 |
|
2807 #define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 |
|
2808 #define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A |
|
2809 #define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B |
|
2810 #define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C |
|
2811 #define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D |
|
2812 #define GL_HILO8_NV 0x885E |
|
2813 #define GL_SIGNED_HILO8_NV 0x885F |
|
2814 #define GL_FORCE_BLUE_TO_ONE_NV 0x8860 |
|
2815 #endif |
|
2816 |
|
2817 #ifndef GL_NV_vertex_program1_1 |
|
2818 #endif |
|
2819 |
|
2820 #ifndef GL_EXT_shadow_funcs |
|
2821 #endif |
|
2822 |
|
2823 #ifndef GL_EXT_stencil_two_side |
|
2824 #define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 |
|
2825 #define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 |
|
2826 #endif |
|
2827 |
|
2828 #ifndef GL_ATI_text_fragment_shader |
|
2829 #define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 |
|
2830 #endif |
|
2831 |
|
2832 #ifndef GL_APPLE_client_storage |
|
2833 #define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 |
|
2834 #endif |
|
2835 |
|
2836 #ifndef GL_APPLE_element_array |
|
2837 #define GL_ELEMENT_ARRAY_APPLE 0x8768 |
|
2838 #define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8769 |
|
2839 #define GL_ELEMENT_ARRAY_POINTER_APPLE 0x876A |
|
2840 #endif |
|
2841 |
|
2842 #ifndef GL_APPLE_fence |
|
2843 #define GL_DRAW_PIXELS_APPLE 0x8A0A |
|
2844 #define GL_FENCE_APPLE 0x8A0B |
|
2845 #endif |
|
2846 |
|
2847 #ifndef GL_APPLE_vertex_array_object |
|
2848 #define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 |
|
2849 #endif |
|
2850 |
|
2851 #ifndef GL_APPLE_vertex_array_range |
|
2852 #define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D |
|
2853 #define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E |
|
2854 #define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F |
|
2855 #define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 |
|
2856 #define GL_STORAGE_CACHED_APPLE 0x85BE |
|
2857 #define GL_STORAGE_SHARED_APPLE 0x85BF |
|
2858 #endif |
|
2859 |
|
2860 #ifndef GL_APPLE_ycbcr_422 |
|
2861 #define GL_YCBCR_422_APPLE 0x85B9 |
|
2862 #define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA |
|
2863 #define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB |
|
2864 #endif |
|
2865 |
|
2866 #ifndef GL_S3_s3tc |
|
2867 #define GL_RGB_S3TC 0x83A0 |
|
2868 #define GL_RGB4_S3TC 0x83A1 |
|
2869 #define GL_RGBA_S3TC 0x83A2 |
|
2870 #define GL_RGBA4_S3TC 0x83A3 |
|
2871 #endif |
|
2872 |
|
2873 #ifndef GL_ATI_draw_buffers |
|
2874 #define GL_MAX_DRAW_BUFFERS_ATI 0x8824 |
|
2875 #define GL_DRAW_BUFFER0_ATI 0x8825 |
|
2876 #define GL_DRAW_BUFFER1_ATI 0x8826 |
|
2877 #define GL_DRAW_BUFFER2_ATI 0x8827 |
|
2878 #define GL_DRAW_BUFFER3_ATI 0x8828 |
|
2879 #define GL_DRAW_BUFFER4_ATI 0x8829 |
|
2880 #define GL_DRAW_BUFFER5_ATI 0x882A |
|
2881 #define GL_DRAW_BUFFER6_ATI 0x882B |
|
2882 #define GL_DRAW_BUFFER7_ATI 0x882C |
|
2883 #define GL_DRAW_BUFFER8_ATI 0x882D |
|
2884 #define GL_DRAW_BUFFER9_ATI 0x882E |
|
2885 #define GL_DRAW_BUFFER10_ATI 0x882F |
|
2886 #define GL_DRAW_BUFFER11_ATI 0x8830 |
|
2887 #define GL_DRAW_BUFFER12_ATI 0x8831 |
|
2888 #define GL_DRAW_BUFFER13_ATI 0x8832 |
|
2889 #define GL_DRAW_BUFFER14_ATI 0x8833 |
|
2890 #define GL_DRAW_BUFFER15_ATI 0x8834 |
|
2891 #endif |
|
2892 |
|
2893 #ifndef GL_ATI_pixel_format_float |
|
2894 #define GL_TYPE_RGBA_FLOAT_ATI 0x8820 |
|
2895 #define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 |
|
2896 #endif |
|
2897 |
|
2898 #ifndef GL_ATI_texture_env_combine3 |
|
2899 #define GL_MODULATE_ADD_ATI 0x8744 |
|
2900 #define GL_MODULATE_SIGNED_ADD_ATI 0x8745 |
|
2901 #define GL_MODULATE_SUBTRACT_ATI 0x8746 |
|
2902 #endif |
|
2903 |
|
2904 #ifndef GL_ATI_texture_float |
|
2905 #define GL_RGBA_FLOAT32_ATI 0x8814 |
|
2906 #define GL_RGB_FLOAT32_ATI 0x8815 |
|
2907 #define GL_ALPHA_FLOAT32_ATI 0x8816 |
|
2908 #define GL_INTENSITY_FLOAT32_ATI 0x8817 |
|
2909 #define GL_LUMINANCE_FLOAT32_ATI 0x8818 |
|
2910 #define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 |
|
2911 #define GL_RGBA_FLOAT16_ATI 0x881A |
|
2912 #define GL_RGB_FLOAT16_ATI 0x881B |
|
2913 #define GL_ALPHA_FLOAT16_ATI 0x881C |
|
2914 #define GL_INTENSITY_FLOAT16_ATI 0x881D |
|
2915 #define GL_LUMINANCE_FLOAT16_ATI 0x881E |
|
2916 #define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F |
|
2917 #endif |
|
2918 |
|
2919 #ifndef GL_NV_float_buffer |
|
2920 #define GL_FLOAT_R_NV 0x8880 |
|
2921 #define GL_FLOAT_RG_NV 0x8881 |
|
2922 #define GL_FLOAT_RGB_NV 0x8882 |
|
2923 #define GL_FLOAT_RGBA_NV 0x8883 |
|
2924 #define GL_FLOAT_R16_NV 0x8884 |
|
2925 #define GL_FLOAT_R32_NV 0x8885 |
|
2926 #define GL_FLOAT_RG16_NV 0x8886 |
|
2927 #define GL_FLOAT_RG32_NV 0x8887 |
|
2928 #define GL_FLOAT_RGB16_NV 0x8888 |
|
2929 #define GL_FLOAT_RGB32_NV 0x8889 |
|
2930 #define GL_FLOAT_RGBA16_NV 0x888A |
|
2931 #define GL_FLOAT_RGBA32_NV 0x888B |
|
2932 #define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C |
|
2933 #define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D |
|
2934 #define GL_FLOAT_RGBA_MODE_NV 0x888E |
|
2935 #endif |
|
2936 |
|
2937 #ifndef GL_NV_fragment_program |
|
2938 #define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 |
|
2939 #define GL_FRAGMENT_PROGRAM_NV 0x8870 |
|
2940 #define GL_MAX_TEXTURE_COORDS_NV 0x8871 |
|
2941 #define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 |
|
2942 #define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 |
|
2943 #define GL_PROGRAM_ERROR_STRING_NV 0x8874 |
|
2944 #endif |
|
2945 |
|
2946 #ifndef GL_NV_half_float |
|
2947 #define GL_HALF_FLOAT_NV 0x140B |
|
2948 #endif |
|
2949 |
|
2950 #ifndef GL_NV_pixel_data_range |
|
2951 #define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 |
|
2952 #define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 |
|
2953 #define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A |
|
2954 #define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B |
|
2955 #define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C |
|
2956 #define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D |
|
2957 #endif |
|
2958 |
|
2959 #ifndef GL_NV_primitive_restart |
|
2960 #define GL_PRIMITIVE_RESTART_NV 0x8558 |
|
2961 #define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 |
|
2962 #endif |
|
2963 |
|
2964 #ifndef GL_NV_texture_expand_normal |
|
2965 #define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F |
|
2966 #endif |
|
2967 |
|
2968 #ifndef GL_NV_vertex_program2 |
|
2969 #endif |
|
2970 |
|
2971 #ifndef GL_ATI_map_object_buffer |
|
2972 #endif |
|
2973 |
|
2974 #ifndef GL_ATI_separate_stencil |
|
2975 #define GL_STENCIL_BACK_FUNC_ATI 0x8800 |
|
2976 #define GL_STENCIL_BACK_FAIL_ATI 0x8801 |
|
2977 #define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 |
|
2978 #define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 |
|
2979 #endif |
|
2980 |
|
2981 #ifndef GL_ATI_vertex_attrib_array_object |
|
2982 #endif |
|
2983 |
|
2984 #ifndef GL_OES_read_format |
|
2985 #define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A |
|
2986 #define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B |
|
2987 #endif |
|
2988 |
|
2989 #ifndef GL_EXT_depth_bounds_test |
|
2990 #define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 |
|
2991 #define GL_DEPTH_BOUNDS_EXT 0x8891 |
|
2992 #endif |
|
2993 |
|
2994 #ifndef GL_EXT_texture_mirror_clamp |
|
2995 #define GL_MIRROR_CLAMP_EXT 0x8742 |
|
2996 #define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 |
|
2997 #define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 |
|
2998 #endif |
|
2999 |
|
3000 #ifndef GL_EXT_blend_equation_separate |
|
3001 #define GL_BLEND_EQUATION_RGB_EXT GL_BLEND_EQUATION |
|
3002 #define GL_BLEND_EQUATION_ALPHA_EXT 0x883D |
|
3003 #endif |
|
3004 |
|
3005 #ifndef GL_MESA_pack_invert |
|
3006 #define GL_PACK_INVERT_MESA 0x8758 |
|
3007 #endif |
|
3008 |
|
3009 #ifndef GL_MESA_ycbcr_texture |
|
3010 #define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA |
|
3011 #define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB |
|
3012 #define GL_YCBCR_MESA 0x8757 |
|
3013 #endif |
|
3014 |
|
3015 #ifndef GL_EXT_pixel_buffer_object |
|
3016 #define GL_PIXEL_PACK_BUFFER_EXT 0x88EB |
|
3017 #define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC |
|
3018 #define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED |
|
3019 #define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF |
|
3020 #endif |
|
3021 |
|
3022 #ifndef GL_NV_fragment_program_option |
|
3023 #endif |
|
3024 |
|
3025 #ifndef GL_NV_fragment_program2 |
|
3026 #define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 |
|
3027 #define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 |
|
3028 #define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 |
|
3029 #define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 |
|
3030 #define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 |
|
3031 #endif |
|
3032 |
|
3033 #ifndef GL_NV_vertex_program2_option |
|
3034 /* reuse GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ |
|
3035 /* reuse GL_MAX_PROGRAM_CALL_DEPTH_NV */ |
|
3036 #endif |
|
3037 |
|
3038 #ifndef GL_NV_vertex_program3 |
|
3039 /* reuse GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */ |
|
3040 #endif |
|
3041 |
|
3042 #ifndef GL_EXT_framebuffer_object |
|
3043 #define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 |
|
3044 #define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 |
|
3045 #define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 |
|
3046 #define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 |
|
3047 #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 |
|
3048 #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 |
|
3049 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 |
|
3050 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 |
|
3051 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 |
|
3052 #define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 |
|
3053 #define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 |
|
3054 #define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 |
|
3055 #define GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT 0x8CD8 |
|
3056 #define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 |
|
3057 #define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA |
|
3058 #define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB |
|
3059 #define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC |
|
3060 #define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD |
|
3061 #define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF |
|
3062 #define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 |
|
3063 #define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 |
|
3064 #define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 |
|
3065 #define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 |
|
3066 #define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 |
|
3067 #define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 |
|
3068 #define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 |
|
3069 #define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 |
|
3070 #define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 |
|
3071 #define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 |
|
3072 #define GL_COLOR_ATTACHMENT10_EXT 0x8CEA |
|
3073 #define GL_COLOR_ATTACHMENT11_EXT 0x8CEB |
|
3074 #define GL_COLOR_ATTACHMENT12_EXT 0x8CEC |
|
3075 #define GL_COLOR_ATTACHMENT13_EXT 0x8CED |
|
3076 #define GL_COLOR_ATTACHMENT14_EXT 0x8CEE |
|
3077 #define GL_COLOR_ATTACHMENT15_EXT 0x8CEF |
|
3078 #define GL_DEPTH_ATTACHMENT_EXT 0x8D00 |
|
3079 #define GL_STENCIL_ATTACHMENT_EXT 0x8D20 |
|
3080 #define GL_FRAMEBUFFER_EXT 0x8D40 |
|
3081 #define GL_RENDERBUFFER_EXT 0x8D41 |
|
3082 #define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 |
|
3083 #define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 |
|
3084 #define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 |
|
3085 #define GL_STENCIL_INDEX1_EXT 0x8D46 |
|
3086 #define GL_STENCIL_INDEX4_EXT 0x8D47 |
|
3087 #define GL_STENCIL_INDEX8_EXT 0x8D48 |
|
3088 #define GL_STENCIL_INDEX16_EXT 0x8D49 |
|
3089 #define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 |
|
3090 #define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 |
|
3091 #define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 |
|
3092 #define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 |
|
3093 #define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 |
|
3094 #define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 |
|
3095 #endif |
|
3096 |
|
3097 #ifndef GL_GREMEDY_string_marker |
|
3098 #endif |
|
3099 |
|
3100 |
|
3101 /*************************************************************/ |
|
3102 |
|
3103 #include <stddef.h> |
|
3104 #ifndef GL_VERSION_2_0 |
|
3105 /* GL type for program/shader text */ |
|
3106 typedef char GLchar; /* native character */ |
|
3107 #endif |
|
3108 |
|
3109 #ifndef GL_VERSION_1_5 |
|
3110 /* GL types for handling large vertex buffer objects */ |
|
3111 typedef ptrdiff_t GLintptr; |
|
3112 typedef ptrdiff_t GLsizeiptr; |
|
3113 #endif |
|
3114 |
|
3115 #ifndef GL_ARB_vertex_buffer_object |
|
3116 /* GL types for handling large vertex buffer objects */ |
|
3117 typedef ptrdiff_t GLintptrARB; |
|
3118 typedef ptrdiff_t GLsizeiptrARB; |
|
3119 #endif |
|
3120 |
|
3121 #ifndef GL_ARB_shader_objects |
|
3122 /* GL types for handling shader object handles and program/shader text */ |
|
3123 typedef char GLcharARB; /* native character */ |
|
3124 typedef unsigned int GLhandleARB; /* shader object handle */ |
|
3125 #endif |
|
3126 |
|
3127 /* GL types for "half" precision (s10e5) float data in host memory */ |
|
3128 #ifndef GL_ARB_half_float_pixel |
|
3129 typedef unsigned short GLhalfARB; |
|
3130 #endif |
|
3131 |
|
3132 #ifndef GL_NV_half_float |
|
3133 typedef unsigned short GLhalfNV; |
|
3134 #endif |
|
3135 |
|
3136 #ifndef GL_VERSION_1_2 |
|
3137 #define GL_VERSION_1_2 1 |
|
3138 #ifdef GL_GLEXT_PROTOTYPES |
|
3139 GLAPI void APIENTRY glBlendColor (GLclampf, GLclampf, GLclampf, GLclampf); |
|
3140 GLAPI void APIENTRY glBlendEquation (GLenum); |
|
3141 GLAPI void APIENTRY glDrawRangeElements (GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *); |
|
3142 GLAPI void APIENTRY glColorTable (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); |
|
3143 GLAPI void APIENTRY glColorTableParameterfv (GLenum, GLenum, const GLfloat *); |
|
3144 GLAPI void APIENTRY glColorTableParameteriv (GLenum, GLenum, const GLint *); |
|
3145 GLAPI void APIENTRY glCopyColorTable (GLenum, GLenum, GLint, GLint, GLsizei); |
|
3146 GLAPI void APIENTRY glGetColorTable (GLenum, GLenum, GLenum, GLvoid *); |
|
3147 GLAPI void APIENTRY glGetColorTableParameterfv (GLenum, GLenum, GLfloat *); |
|
3148 GLAPI void APIENTRY glGetColorTableParameteriv (GLenum, GLenum, GLint *); |
|
3149 GLAPI void APIENTRY glColorSubTable (GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
3150 GLAPI void APIENTRY glCopyColorSubTable (GLenum, GLsizei, GLint, GLint, GLsizei); |
|
3151 GLAPI void APIENTRY glConvolutionFilter1D (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); |
|
3152 GLAPI void APIENTRY glConvolutionFilter2D (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
3153 GLAPI void APIENTRY glConvolutionParameterf (GLenum, GLenum, GLfloat); |
|
3154 GLAPI void APIENTRY glConvolutionParameterfv (GLenum, GLenum, const GLfloat *); |
|
3155 GLAPI void APIENTRY glConvolutionParameteri (GLenum, GLenum, GLint); |
|
3156 GLAPI void APIENTRY glConvolutionParameteriv (GLenum, GLenum, const GLint *); |
|
3157 GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum, GLenum, GLint, GLint, GLsizei); |
|
3158 GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum, GLenum, GLint, GLint, GLsizei, GLsizei); |
|
3159 GLAPI void APIENTRY glGetConvolutionFilter (GLenum, GLenum, GLenum, GLvoid *); |
|
3160 GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum, GLenum, GLfloat *); |
|
3161 GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum, GLenum, GLint *); |
|
3162 GLAPI void APIENTRY glGetSeparableFilter (GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *); |
|
3163 GLAPI void APIENTRY glSeparableFilter2D (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *); |
|
3164 GLAPI void APIENTRY glGetHistogram (GLenum, GLboolean, GLenum, GLenum, GLvoid *); |
|
3165 GLAPI void APIENTRY glGetHistogramParameterfv (GLenum, GLenum, GLfloat *); |
|
3166 GLAPI void APIENTRY glGetHistogramParameteriv (GLenum, GLenum, GLint *); |
|
3167 GLAPI void APIENTRY glGetMinmax (GLenum, GLboolean, GLenum, GLenum, GLvoid *); |
|
3168 GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum, GLenum, GLfloat *); |
|
3169 GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum, GLenum, GLint *); |
|
3170 GLAPI void APIENTRY glHistogram (GLenum, GLsizei, GLenum, GLboolean); |
|
3171 GLAPI void APIENTRY glMinmax (GLenum, GLenum, GLboolean); |
|
3172 GLAPI void APIENTRY glResetHistogram (GLenum); |
|
3173 GLAPI void APIENTRY glResetMinmax (GLenum); |
|
3174 GLAPI void APIENTRY glTexImage3D (GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *); |
|
3175 GLAPI void APIENTRY glTexSubImage3D (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
3176 GLAPI void APIENTRY glCopyTexSubImage3D (GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei); |
|
3177 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3178 typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); |
|
3179 typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); |
|
3180 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); |
|
3181 typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); |
|
3182 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
3183 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); |
|
3184 typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); |
|
3185 typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table); |
|
3186 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
3187 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); |
|
3188 typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data); |
|
3189 typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); |
|
3190 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image); |
|
3191 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image); |
|
3192 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); |
|
3193 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
3194 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); |
|
3195 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); |
|
3196 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); |
|
3197 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); |
|
3198 typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image); |
|
3199 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
3200 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); |
|
3201 typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span); |
|
3202 typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column); |
|
3203 typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); |
|
3204 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
3205 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); |
|
3206 typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); |
|
3207 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
3208 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); |
|
3209 typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); |
|
3210 typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); |
|
3211 typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target); |
|
3212 typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target); |
|
3213 typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); |
|
3214 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); |
|
3215 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); |
|
3216 #endif |
|
3217 |
|
3218 #ifndef GL_VERSION_1_3 |
|
3219 #define GL_VERSION_1_3 1 |
|
3220 #ifdef GL_GLEXT_PROTOTYPES |
|
3221 GLAPI void APIENTRY glActiveTexture (GLenum); |
|
3222 GLAPI void APIENTRY glClientActiveTexture (GLenum); |
|
3223 GLAPI void APIENTRY glMultiTexCoord1d (GLenum, GLdouble); |
|
3224 GLAPI void APIENTRY glMultiTexCoord1dv (GLenum, const GLdouble *); |
|
3225 GLAPI void APIENTRY glMultiTexCoord1f (GLenum, GLfloat); |
|
3226 GLAPI void APIENTRY glMultiTexCoord1fv (GLenum, const GLfloat *); |
|
3227 GLAPI void APIENTRY glMultiTexCoord1i (GLenum, GLint); |
|
3228 GLAPI void APIENTRY glMultiTexCoord1iv (GLenum, const GLint *); |
|
3229 GLAPI void APIENTRY glMultiTexCoord1s (GLenum, GLshort); |
|
3230 GLAPI void APIENTRY glMultiTexCoord1sv (GLenum, const GLshort *); |
|
3231 GLAPI void APIENTRY glMultiTexCoord2d (GLenum, GLdouble, GLdouble); |
|
3232 GLAPI void APIENTRY glMultiTexCoord2dv (GLenum, const GLdouble *); |
|
3233 GLAPI void APIENTRY glMultiTexCoord2f (GLenum, GLfloat, GLfloat); |
|
3234 GLAPI void APIENTRY glMultiTexCoord2fv (GLenum, const GLfloat *); |
|
3235 GLAPI void APIENTRY glMultiTexCoord2i (GLenum, GLint, GLint); |
|
3236 GLAPI void APIENTRY glMultiTexCoord2iv (GLenum, const GLint *); |
|
3237 GLAPI void APIENTRY glMultiTexCoord2s (GLenum, GLshort, GLshort); |
|
3238 GLAPI void APIENTRY glMultiTexCoord2sv (GLenum, const GLshort *); |
|
3239 GLAPI void APIENTRY glMultiTexCoord3d (GLenum, GLdouble, GLdouble, GLdouble); |
|
3240 GLAPI void APIENTRY glMultiTexCoord3dv (GLenum, const GLdouble *); |
|
3241 GLAPI void APIENTRY glMultiTexCoord3f (GLenum, GLfloat, GLfloat, GLfloat); |
|
3242 GLAPI void APIENTRY glMultiTexCoord3fv (GLenum, const GLfloat *); |
|
3243 GLAPI void APIENTRY glMultiTexCoord3i (GLenum, GLint, GLint, GLint); |
|
3244 GLAPI void APIENTRY glMultiTexCoord3iv (GLenum, const GLint *); |
|
3245 GLAPI void APIENTRY glMultiTexCoord3s (GLenum, GLshort, GLshort, GLshort); |
|
3246 GLAPI void APIENTRY glMultiTexCoord3sv (GLenum, const GLshort *); |
|
3247 GLAPI void APIENTRY glMultiTexCoord4d (GLenum, GLdouble, GLdouble, GLdouble, GLdouble); |
|
3248 GLAPI void APIENTRY glMultiTexCoord4dv (GLenum, const GLdouble *); |
|
3249 GLAPI void APIENTRY glMultiTexCoord4f (GLenum, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3250 GLAPI void APIENTRY glMultiTexCoord4fv (GLenum, const GLfloat *); |
|
3251 GLAPI void APIENTRY glMultiTexCoord4i (GLenum, GLint, GLint, GLint, GLint); |
|
3252 GLAPI void APIENTRY glMultiTexCoord4iv (GLenum, const GLint *); |
|
3253 GLAPI void APIENTRY glMultiTexCoord4s (GLenum, GLshort, GLshort, GLshort, GLshort); |
|
3254 GLAPI void APIENTRY glMultiTexCoord4sv (GLenum, const GLshort *); |
|
3255 GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *); |
|
3256 GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *); |
|
3257 GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *); |
|
3258 GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *); |
|
3259 GLAPI void APIENTRY glSampleCoverage (GLclampf, GLboolean); |
|
3260 GLAPI void APIENTRY glCompressedTexImage3D (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *); |
|
3261 GLAPI void APIENTRY glCompressedTexImage2D (GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *); |
|
3262 GLAPI void APIENTRY glCompressedTexImage1D (GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *); |
|
3263 GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *); |
|
3264 GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *); |
|
3265 GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *); |
|
3266 GLAPI void APIENTRY glGetCompressedTexImage (GLenum, GLint, GLvoid *); |
|
3267 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3268 typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); |
|
3269 typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); |
|
3270 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); |
|
3271 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); |
|
3272 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); |
|
3273 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); |
|
3274 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); |
|
3275 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); |
|
3276 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); |
|
3277 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); |
|
3278 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); |
|
3279 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); |
|
3280 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); |
|
3281 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); |
|
3282 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); |
|
3283 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); |
|
3284 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); |
|
3285 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); |
|
3286 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); |
|
3287 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); |
|
3288 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); |
|
3289 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); |
|
3290 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); |
|
3291 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); |
|
3292 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); |
|
3293 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); |
|
3294 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); |
|
3295 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); |
|
3296 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); |
|
3297 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); |
|
3298 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); |
|
3299 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); |
|
3300 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); |
|
3301 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); |
|
3302 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m); |
|
3303 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m); |
|
3304 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m); |
|
3305 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m); |
|
3306 typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); |
|
3307 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); |
|
3308 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); |
|
3309 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); |
|
3310 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); |
|
3311 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); |
|
3312 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); |
|
3313 typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img); |
|
3314 #endif |
|
3315 |
|
3316 #ifndef GL_VERSION_1_4 |
|
3317 #define GL_VERSION_1_4 1 |
|
3318 #ifdef GL_GLEXT_PROTOTYPES |
|
3319 GLAPI void APIENTRY glBlendFuncSeparate (GLenum, GLenum, GLenum, GLenum); |
|
3320 GLAPI void APIENTRY glFogCoordf (GLfloat); |
|
3321 GLAPI void APIENTRY glFogCoordfv (const GLfloat *); |
|
3322 GLAPI void APIENTRY glFogCoordd (GLdouble); |
|
3323 GLAPI void APIENTRY glFogCoorddv (const GLdouble *); |
|
3324 GLAPI void APIENTRY glFogCoordPointer (GLenum, GLsizei, const GLvoid *); |
|
3325 GLAPI void APIENTRY glMultiDrawArrays (GLenum, GLint *, GLsizei *, GLsizei); |
|
3326 GLAPI void APIENTRY glMultiDrawElements (GLenum, const GLsizei *, GLenum, const GLvoid* *, GLsizei); |
|
3327 GLAPI void APIENTRY glPointParameterf (GLenum, GLfloat); |
|
3328 GLAPI void APIENTRY glPointParameterfv (GLenum, const GLfloat *); |
|
3329 GLAPI void APIENTRY glPointParameteri (GLenum, GLint); |
|
3330 GLAPI void APIENTRY glPointParameteriv (GLenum, const GLint *); |
|
3331 GLAPI void APIENTRY glSecondaryColor3b (GLbyte, GLbyte, GLbyte); |
|
3332 GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *); |
|
3333 GLAPI void APIENTRY glSecondaryColor3d (GLdouble, GLdouble, GLdouble); |
|
3334 GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *); |
|
3335 GLAPI void APIENTRY glSecondaryColor3f (GLfloat, GLfloat, GLfloat); |
|
3336 GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *); |
|
3337 GLAPI void APIENTRY glSecondaryColor3i (GLint, GLint, GLint); |
|
3338 GLAPI void APIENTRY glSecondaryColor3iv (const GLint *); |
|
3339 GLAPI void APIENTRY glSecondaryColor3s (GLshort, GLshort, GLshort); |
|
3340 GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *); |
|
3341 GLAPI void APIENTRY glSecondaryColor3ub (GLubyte, GLubyte, GLubyte); |
|
3342 GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *); |
|
3343 GLAPI void APIENTRY glSecondaryColor3ui (GLuint, GLuint, GLuint); |
|
3344 GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *); |
|
3345 GLAPI void APIENTRY glSecondaryColor3us (GLushort, GLushort, GLushort); |
|
3346 GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *); |
|
3347 GLAPI void APIENTRY glSecondaryColorPointer (GLint, GLenum, GLsizei, const GLvoid *); |
|
3348 GLAPI void APIENTRY glWindowPos2d (GLdouble, GLdouble); |
|
3349 GLAPI void APIENTRY glWindowPos2dv (const GLdouble *); |
|
3350 GLAPI void APIENTRY glWindowPos2f (GLfloat, GLfloat); |
|
3351 GLAPI void APIENTRY glWindowPos2fv (const GLfloat *); |
|
3352 GLAPI void APIENTRY glWindowPos2i (GLint, GLint); |
|
3353 GLAPI void APIENTRY glWindowPos2iv (const GLint *); |
|
3354 GLAPI void APIENTRY glWindowPos2s (GLshort, GLshort); |
|
3355 GLAPI void APIENTRY glWindowPos2sv (const GLshort *); |
|
3356 GLAPI void APIENTRY glWindowPos3d (GLdouble, GLdouble, GLdouble); |
|
3357 GLAPI void APIENTRY glWindowPos3dv (const GLdouble *); |
|
3358 GLAPI void APIENTRY glWindowPos3f (GLfloat, GLfloat, GLfloat); |
|
3359 GLAPI void APIENTRY glWindowPos3fv (const GLfloat *); |
|
3360 GLAPI void APIENTRY glWindowPos3i (GLint, GLint, GLint); |
|
3361 GLAPI void APIENTRY glWindowPos3iv (const GLint *); |
|
3362 GLAPI void APIENTRY glWindowPos3s (GLshort, GLshort, GLshort); |
|
3363 GLAPI void APIENTRY glWindowPos3sv (const GLshort *); |
|
3364 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3365 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); |
|
3366 typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord); |
|
3367 typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord); |
|
3368 typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord); |
|
3369 typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord); |
|
3370 typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); |
|
3371 typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, GLint *first, GLsizei *count, GLsizei primcount); |
|
3372 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); |
|
3373 typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); |
|
3374 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); |
|
3375 typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); |
|
3376 typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); |
|
3377 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); |
|
3378 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); |
|
3379 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); |
|
3380 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); |
|
3381 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); |
|
3382 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); |
|
3383 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); |
|
3384 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); |
|
3385 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); |
|
3386 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); |
|
3387 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); |
|
3388 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); |
|
3389 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); |
|
3390 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); |
|
3391 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); |
|
3392 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); |
|
3393 typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); |
|
3394 typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); |
|
3395 typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v); |
|
3396 typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); |
|
3397 typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v); |
|
3398 typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); |
|
3399 typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v); |
|
3400 typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); |
|
3401 typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v); |
|
3402 typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); |
|
3403 typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v); |
|
3404 typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); |
|
3405 typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v); |
|
3406 typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); |
|
3407 typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v); |
|
3408 typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); |
|
3409 typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v); |
|
3410 #endif |
|
3411 |
|
3412 #ifndef GL_VERSION_1_5 |
|
3413 #define GL_VERSION_1_5 1 |
|
3414 #ifdef GL_GLEXT_PROTOTYPES |
|
3415 GLAPI void APIENTRY glGenQueries (GLsizei, GLuint *); |
|
3416 GLAPI void APIENTRY glDeleteQueries (GLsizei, const GLuint *); |
|
3417 GLAPI GLboolean APIENTRY glIsQuery (GLuint); |
|
3418 GLAPI void APIENTRY glBeginQuery (GLenum, GLuint); |
|
3419 GLAPI void APIENTRY glEndQuery (GLenum); |
|
3420 GLAPI void APIENTRY glGetQueryiv (GLenum, GLenum, GLint *); |
|
3421 GLAPI void APIENTRY glGetQueryObjectiv (GLuint, GLenum, GLint *); |
|
3422 GLAPI void APIENTRY glGetQueryObjectuiv (GLuint, GLenum, GLuint *); |
|
3423 GLAPI void APIENTRY glBindBuffer (GLenum, GLuint); |
|
3424 GLAPI void APIENTRY glDeleteBuffers (GLsizei, const GLuint *); |
|
3425 GLAPI void APIENTRY glGenBuffers (GLsizei, GLuint *); |
|
3426 GLAPI GLboolean APIENTRY glIsBuffer (GLuint); |
|
3427 GLAPI void APIENTRY glBufferData (GLenum, GLsizeiptr, const GLvoid *, GLenum); |
|
3428 GLAPI void APIENTRY glBufferSubData (GLenum, GLintptr, GLsizeiptr, const GLvoid *); |
|
3429 GLAPI void APIENTRY glGetBufferSubData (GLenum, GLintptr, GLsizeiptr, GLvoid *); |
|
3430 GLAPI GLvoid* APIENTRY glMapBuffer (GLenum, GLenum); |
|
3431 GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum); |
|
3432 GLAPI void APIENTRY glGetBufferParameteriv (GLenum, GLenum, GLint *); |
|
3433 GLAPI void APIENTRY glGetBufferPointerv (GLenum, GLenum, GLvoid* *); |
|
3434 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3435 typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids); |
|
3436 typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids); |
|
3437 typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id); |
|
3438 typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); |
|
3439 typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target); |
|
3440 typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params); |
|
3441 typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params); |
|
3442 typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params); |
|
3443 typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); |
|
3444 typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); |
|
3445 typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); |
|
3446 typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); |
|
3447 typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage); |
|
3448 typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data); |
|
3449 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data); |
|
3450 typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); |
|
3451 typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target); |
|
3452 typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); |
|
3453 typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, GLvoid* *params); |
|
3454 #endif |
|
3455 |
|
3456 #ifndef GL_VERSION_2_0 |
|
3457 #define GL_VERSION_2_0 1 |
|
3458 #ifdef GL_GLEXT_PROTOTYPES |
|
3459 GLAPI void APIENTRY glBlendEquationSeparate (GLenum, GLenum); |
|
3460 GLAPI void APIENTRY glDrawBuffers (GLsizei, const GLenum *); |
|
3461 GLAPI void APIENTRY glStencilOpSeparate (GLenum, GLenum, GLenum, GLenum); |
|
3462 GLAPI void APIENTRY glStencilFuncSeparate (GLenum, GLenum, GLint, GLuint); |
|
3463 GLAPI void APIENTRY glStencilMaskSeparate (GLenum, GLuint); |
|
3464 GLAPI void APIENTRY glAttachShader (GLuint, GLuint); |
|
3465 GLAPI void APIENTRY glBindAttribLocation (GLuint, GLuint, const GLchar *); |
|
3466 GLAPI void APIENTRY glCompileShader (GLuint); |
|
3467 GLAPI GLuint APIENTRY glCreateProgram (void); |
|
3468 GLAPI GLuint APIENTRY glCreateShader (GLenum); |
|
3469 GLAPI void APIENTRY glDeleteProgram (GLuint); |
|
3470 GLAPI void APIENTRY glDeleteShader (GLuint); |
|
3471 GLAPI void APIENTRY glDetachShader (GLuint, GLuint); |
|
3472 GLAPI void APIENTRY glDisableVertexAttribArray (GLuint); |
|
3473 GLAPI void APIENTRY glEnableVertexAttribArray (GLuint); |
|
3474 GLAPI void APIENTRY glGetActiveAttrib (GLuint, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLchar *); |
|
3475 GLAPI void APIENTRY glGetActiveUniform (GLuint, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLchar *); |
|
3476 GLAPI void APIENTRY glGetAttachedShaders (GLuint, GLsizei, GLsizei *, GLuint *); |
|
3477 GLAPI GLint APIENTRY glGetAttribLocation (GLuint, const GLchar *); |
|
3478 GLAPI void APIENTRY glGetProgramiv (GLuint, GLenum, GLint *); |
|
3479 GLAPI void APIENTRY glGetProgramInfoLog (GLuint, GLsizei, GLsizei *, GLchar *); |
|
3480 GLAPI void APIENTRY glGetShaderiv (GLuint, GLenum, GLint *); |
|
3481 GLAPI void APIENTRY glGetShaderInfoLog (GLuint, GLsizei, GLsizei *, GLchar *); |
|
3482 GLAPI void APIENTRY glGetShaderSource (GLuint, GLsizei, GLsizei *, GLchar *); |
|
3483 GLAPI GLint APIENTRY glGetUniformLocation (GLuint, const GLchar *); |
|
3484 GLAPI void APIENTRY glGetUniformfv (GLuint, GLint, GLfloat *); |
|
3485 GLAPI void APIENTRY glGetUniformiv (GLuint, GLint, GLint *); |
|
3486 GLAPI void APIENTRY glGetVertexAttribdv (GLuint, GLenum, GLdouble *); |
|
3487 GLAPI void APIENTRY glGetVertexAttribfv (GLuint, GLenum, GLfloat *); |
|
3488 GLAPI void APIENTRY glGetVertexAttribiv (GLuint, GLenum, GLint *); |
|
3489 GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint, GLenum, GLvoid* *); |
|
3490 GLAPI GLboolean APIENTRY glIsProgram (GLuint); |
|
3491 GLAPI GLboolean APIENTRY glIsShader (GLuint); |
|
3492 GLAPI void APIENTRY glLinkProgram (GLuint); |
|
3493 GLAPI void APIENTRY glShaderSource (GLuint, GLsizei, const GLchar* *, const GLint *); |
|
3494 GLAPI void APIENTRY glUseProgram (GLuint); |
|
3495 GLAPI void APIENTRY glUniform1f (GLint, GLfloat); |
|
3496 GLAPI void APIENTRY glUniform2f (GLint, GLfloat, GLfloat); |
|
3497 GLAPI void APIENTRY glUniform3f (GLint, GLfloat, GLfloat, GLfloat); |
|
3498 GLAPI void APIENTRY glUniform4f (GLint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3499 GLAPI void APIENTRY glUniform1i (GLint, GLint); |
|
3500 GLAPI void APIENTRY glUniform2i (GLint, GLint, GLint); |
|
3501 GLAPI void APIENTRY glUniform3i (GLint, GLint, GLint, GLint); |
|
3502 GLAPI void APIENTRY glUniform4i (GLint, GLint, GLint, GLint, GLint); |
|
3503 GLAPI void APIENTRY glUniform1fv (GLint, GLsizei, const GLfloat *); |
|
3504 GLAPI void APIENTRY glUniform2fv (GLint, GLsizei, const GLfloat *); |
|
3505 GLAPI void APIENTRY glUniform3fv (GLint, GLsizei, const GLfloat *); |
|
3506 GLAPI void APIENTRY glUniform4fv (GLint, GLsizei, const GLfloat *); |
|
3507 GLAPI void APIENTRY glUniform1iv (GLint, GLsizei, const GLint *); |
|
3508 GLAPI void APIENTRY glUniform2iv (GLint, GLsizei, const GLint *); |
|
3509 GLAPI void APIENTRY glUniform3iv (GLint, GLsizei, const GLint *); |
|
3510 GLAPI void APIENTRY glUniform4iv (GLint, GLsizei, const GLint *); |
|
3511 GLAPI void APIENTRY glUniformMatrix2fv (GLint, GLsizei, GLboolean, const GLfloat *); |
|
3512 GLAPI void APIENTRY glUniformMatrix3fv (GLint, GLsizei, GLboolean, const GLfloat *); |
|
3513 GLAPI void APIENTRY glUniformMatrix4fv (GLint, GLsizei, GLboolean, const GLfloat *); |
|
3514 GLAPI void APIENTRY glValidateProgram (GLuint); |
|
3515 GLAPI void APIENTRY glVertexAttrib1d (GLuint, GLdouble); |
|
3516 GLAPI void APIENTRY glVertexAttrib1dv (GLuint, const GLdouble *); |
|
3517 GLAPI void APIENTRY glVertexAttrib1f (GLuint, GLfloat); |
|
3518 GLAPI void APIENTRY glVertexAttrib1fv (GLuint, const GLfloat *); |
|
3519 GLAPI void APIENTRY glVertexAttrib1s (GLuint, GLshort); |
|
3520 GLAPI void APIENTRY glVertexAttrib1sv (GLuint, const GLshort *); |
|
3521 GLAPI void APIENTRY glVertexAttrib2d (GLuint, GLdouble, GLdouble); |
|
3522 GLAPI void APIENTRY glVertexAttrib2dv (GLuint, const GLdouble *); |
|
3523 GLAPI void APIENTRY glVertexAttrib2f (GLuint, GLfloat, GLfloat); |
|
3524 GLAPI void APIENTRY glVertexAttrib2fv (GLuint, const GLfloat *); |
|
3525 GLAPI void APIENTRY glVertexAttrib2s (GLuint, GLshort, GLshort); |
|
3526 GLAPI void APIENTRY glVertexAttrib2sv (GLuint, const GLshort *); |
|
3527 GLAPI void APIENTRY glVertexAttrib3d (GLuint, GLdouble, GLdouble, GLdouble); |
|
3528 GLAPI void APIENTRY glVertexAttrib3dv (GLuint, const GLdouble *); |
|
3529 GLAPI void APIENTRY glVertexAttrib3f (GLuint, GLfloat, GLfloat, GLfloat); |
|
3530 GLAPI void APIENTRY glVertexAttrib3fv (GLuint, const GLfloat *); |
|
3531 GLAPI void APIENTRY glVertexAttrib3s (GLuint, GLshort, GLshort, GLshort); |
|
3532 GLAPI void APIENTRY glVertexAttrib3sv (GLuint, const GLshort *); |
|
3533 GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint, const GLbyte *); |
|
3534 GLAPI void APIENTRY glVertexAttrib4Niv (GLuint, const GLint *); |
|
3535 GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint, const GLshort *); |
|
3536 GLAPI void APIENTRY glVertexAttrib4Nub (GLuint, GLubyte, GLubyte, GLubyte, GLubyte); |
|
3537 GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint, const GLubyte *); |
|
3538 GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint, const GLuint *); |
|
3539 GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint, const GLushort *); |
|
3540 GLAPI void APIENTRY glVertexAttrib4bv (GLuint, const GLbyte *); |
|
3541 GLAPI void APIENTRY glVertexAttrib4d (GLuint, GLdouble, GLdouble, GLdouble, GLdouble); |
|
3542 GLAPI void APIENTRY glVertexAttrib4dv (GLuint, const GLdouble *); |
|
3543 GLAPI void APIENTRY glVertexAttrib4f (GLuint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3544 GLAPI void APIENTRY glVertexAttrib4fv (GLuint, const GLfloat *); |
|
3545 GLAPI void APIENTRY glVertexAttrib4iv (GLuint, const GLint *); |
|
3546 GLAPI void APIENTRY glVertexAttrib4s (GLuint, GLshort, GLshort, GLshort, GLshort); |
|
3547 GLAPI void APIENTRY glVertexAttrib4sv (GLuint, const GLshort *); |
|
3548 GLAPI void APIENTRY glVertexAttrib4ubv (GLuint, const GLubyte *); |
|
3549 GLAPI void APIENTRY glVertexAttrib4uiv (GLuint, const GLuint *); |
|
3550 GLAPI void APIENTRY glVertexAttrib4usv (GLuint, const GLushort *); |
|
3551 GLAPI void APIENTRY glVertexAttribPointer (GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *); |
|
3552 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3553 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); |
|
3554 typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs); |
|
3555 typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); |
|
3556 typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); |
|
3557 typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); |
|
3558 typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); |
|
3559 typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); |
|
3560 typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); |
|
3561 typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void); |
|
3562 typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); |
|
3563 typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); |
|
3564 typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); |
|
3565 typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); |
|
3566 typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); |
|
3567 typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); |
|
3568 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); |
|
3569 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); |
|
3570 typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj); |
|
3571 typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); |
|
3572 typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); |
|
3573 typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); |
|
3574 typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); |
|
3575 typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); |
|
3576 typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); |
|
3577 typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); |
|
3578 typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); |
|
3579 typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); |
|
3580 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params); |
|
3581 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); |
|
3582 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); |
|
3583 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, GLvoid* *pointer); |
|
3584 typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); |
|
3585 typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader); |
|
3586 typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); |
|
3587 typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar* *string, const GLint *length); |
|
3588 typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); |
|
3589 typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); |
|
3590 typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); |
|
3591 typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); |
|
3592 typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); |
|
3593 typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); |
|
3594 typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); |
|
3595 typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); |
|
3596 typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); |
|
3597 typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
3598 typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
3599 typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
3600 typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
3601 typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); |
|
3602 typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); |
|
3603 typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); |
|
3604 typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); |
|
3605 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); |
|
3606 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); |
|
3607 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); |
|
3608 typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); |
|
3609 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); |
|
3610 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v); |
|
3611 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); |
|
3612 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); |
|
3613 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); |
|
3614 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v); |
|
3615 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); |
|
3616 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v); |
|
3617 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); |
|
3618 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); |
|
3619 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); |
|
3620 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v); |
|
3621 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); |
|
3622 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v); |
|
3623 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); |
|
3624 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); |
|
3625 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); |
|
3626 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v); |
|
3627 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v); |
|
3628 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v); |
|
3629 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v); |
|
3630 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); |
|
3631 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v); |
|
3632 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v); |
|
3633 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v); |
|
3634 typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v); |
|
3635 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
3636 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v); |
|
3637 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
3638 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); |
|
3639 typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v); |
|
3640 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); |
|
3641 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v); |
|
3642 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v); |
|
3643 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v); |
|
3644 typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v); |
|
3645 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); |
|
3646 #endif |
|
3647 |
|
3648 #ifndef GL_ARB_multitexture |
|
3649 #define GL_ARB_multitexture 1 |
|
3650 #ifdef GL_GLEXT_PROTOTYPES |
|
3651 GLAPI void APIENTRY glActiveTextureARB (GLenum); |
|
3652 GLAPI void APIENTRY glClientActiveTextureARB (GLenum); |
|
3653 GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum, GLdouble); |
|
3654 GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum, const GLdouble *); |
|
3655 GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum, GLfloat); |
|
3656 GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum, const GLfloat *); |
|
3657 GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum, GLint); |
|
3658 GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum, const GLint *); |
|
3659 GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum, GLshort); |
|
3660 GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum, const GLshort *); |
|
3661 GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum, GLdouble, GLdouble); |
|
3662 GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum, const GLdouble *); |
|
3663 GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum, GLfloat, GLfloat); |
|
3664 GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum, const GLfloat *); |
|
3665 GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum, GLint, GLint); |
|
3666 GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum, const GLint *); |
|
3667 GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum, GLshort, GLshort); |
|
3668 GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum, const GLshort *); |
|
3669 GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum, GLdouble, GLdouble, GLdouble); |
|
3670 GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum, const GLdouble *); |
|
3671 GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum, GLfloat, GLfloat, GLfloat); |
|
3672 GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum, const GLfloat *); |
|
3673 GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum, GLint, GLint, GLint); |
|
3674 GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum, const GLint *); |
|
3675 GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum, GLshort, GLshort, GLshort); |
|
3676 GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum, const GLshort *); |
|
3677 GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum, GLdouble, GLdouble, GLdouble, GLdouble); |
|
3678 GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum, const GLdouble *); |
|
3679 GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3680 GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum, const GLfloat *); |
|
3681 GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum, GLint, GLint, GLint, GLint); |
|
3682 GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum, const GLint *); |
|
3683 GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum, GLshort, GLshort, GLshort, GLshort); |
|
3684 GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum, const GLshort *); |
|
3685 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3686 typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); |
|
3687 typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); |
|
3688 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); |
|
3689 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); |
|
3690 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); |
|
3691 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); |
|
3692 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); |
|
3693 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); |
|
3694 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); |
|
3695 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); |
|
3696 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); |
|
3697 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); |
|
3698 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); |
|
3699 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); |
|
3700 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); |
|
3701 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); |
|
3702 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); |
|
3703 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); |
|
3704 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); |
|
3705 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); |
|
3706 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); |
|
3707 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); |
|
3708 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); |
|
3709 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); |
|
3710 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); |
|
3711 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); |
|
3712 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); |
|
3713 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); |
|
3714 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); |
|
3715 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); |
|
3716 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); |
|
3717 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); |
|
3718 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); |
|
3719 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); |
|
3720 #endif |
|
3721 |
|
3722 #ifndef GL_ARB_transpose_matrix |
|
3723 #define GL_ARB_transpose_matrix 1 |
|
3724 #ifdef GL_GLEXT_PROTOTYPES |
|
3725 GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *); |
|
3726 GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *); |
|
3727 GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *); |
|
3728 GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *); |
|
3729 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3730 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); |
|
3731 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); |
|
3732 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); |
|
3733 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); |
|
3734 #endif |
|
3735 |
|
3736 #ifndef GL_ARB_multisample |
|
3737 #define GL_ARB_multisample 1 |
|
3738 #ifdef GL_GLEXT_PROTOTYPES |
|
3739 GLAPI void APIENTRY glSampleCoverageARB (GLclampf, GLboolean); |
|
3740 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3741 typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLclampf value, GLboolean invert); |
|
3742 #endif |
|
3743 |
|
3744 #ifndef GL_ARB_texture_env_add |
|
3745 #define GL_ARB_texture_env_add 1 |
|
3746 #endif |
|
3747 |
|
3748 #ifndef GL_ARB_texture_cube_map |
|
3749 #define GL_ARB_texture_cube_map 1 |
|
3750 #endif |
|
3751 |
|
3752 #ifndef GL_ARB_texture_compression |
|
3753 #define GL_ARB_texture_compression 1 |
|
3754 #ifdef GL_GLEXT_PROTOTYPES |
|
3755 GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *); |
|
3756 GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *); |
|
3757 GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *); |
|
3758 GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *); |
|
3759 GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *); |
|
3760 GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *); |
|
3761 GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum, GLint, GLvoid *); |
|
3762 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3763 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); |
|
3764 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); |
|
3765 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); |
|
3766 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); |
|
3767 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); |
|
3768 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); |
|
3769 typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, GLvoid *img); |
|
3770 #endif |
|
3771 |
|
3772 #ifndef GL_ARB_texture_border_clamp |
|
3773 #define GL_ARB_texture_border_clamp 1 |
|
3774 #endif |
|
3775 |
|
3776 #ifndef GL_ARB_point_parameters |
|
3777 #define GL_ARB_point_parameters 1 |
|
3778 #ifdef GL_GLEXT_PROTOTYPES |
|
3779 GLAPI void APIENTRY glPointParameterfARB (GLenum, GLfloat); |
|
3780 GLAPI void APIENTRY glPointParameterfvARB (GLenum, const GLfloat *); |
|
3781 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3782 typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); |
|
3783 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params); |
|
3784 #endif |
|
3785 |
|
3786 #ifndef GL_ARB_vertex_blend |
|
3787 #define GL_ARB_vertex_blend 1 |
|
3788 #ifdef GL_GLEXT_PROTOTYPES |
|
3789 GLAPI void APIENTRY glWeightbvARB (GLint, const GLbyte *); |
|
3790 GLAPI void APIENTRY glWeightsvARB (GLint, const GLshort *); |
|
3791 GLAPI void APIENTRY glWeightivARB (GLint, const GLint *); |
|
3792 GLAPI void APIENTRY glWeightfvARB (GLint, const GLfloat *); |
|
3793 GLAPI void APIENTRY glWeightdvARB (GLint, const GLdouble *); |
|
3794 GLAPI void APIENTRY glWeightubvARB (GLint, const GLubyte *); |
|
3795 GLAPI void APIENTRY glWeightusvARB (GLint, const GLushort *); |
|
3796 GLAPI void APIENTRY glWeightuivARB (GLint, const GLuint *); |
|
3797 GLAPI void APIENTRY glWeightPointerARB (GLint, GLenum, GLsizei, const GLvoid *); |
|
3798 GLAPI void APIENTRY glVertexBlendARB (GLint); |
|
3799 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3800 typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights); |
|
3801 typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights); |
|
3802 typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights); |
|
3803 typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights); |
|
3804 typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights); |
|
3805 typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights); |
|
3806 typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights); |
|
3807 typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights); |
|
3808 typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); |
|
3809 typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count); |
|
3810 #endif |
|
3811 |
|
3812 #ifndef GL_ARB_matrix_palette |
|
3813 #define GL_ARB_matrix_palette 1 |
|
3814 #ifdef GL_GLEXT_PROTOTYPES |
|
3815 GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint); |
|
3816 GLAPI void APIENTRY glMatrixIndexubvARB (GLint, const GLubyte *); |
|
3817 GLAPI void APIENTRY glMatrixIndexusvARB (GLint, const GLushort *); |
|
3818 GLAPI void APIENTRY glMatrixIndexuivARB (GLint, const GLuint *); |
|
3819 GLAPI void APIENTRY glMatrixIndexPointerARB (GLint, GLenum, GLsizei, const GLvoid *); |
|
3820 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3821 typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); |
|
3822 typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices); |
|
3823 typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices); |
|
3824 typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices); |
|
3825 typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); |
|
3826 #endif |
|
3827 |
|
3828 #ifndef GL_ARB_texture_env_combine |
|
3829 #define GL_ARB_texture_env_combine 1 |
|
3830 #endif |
|
3831 |
|
3832 #ifndef GL_ARB_texture_env_crossbar |
|
3833 #define GL_ARB_texture_env_crossbar 1 |
|
3834 #endif |
|
3835 |
|
3836 #ifndef GL_ARB_texture_env_dot3 |
|
3837 #define GL_ARB_texture_env_dot3 1 |
|
3838 #endif |
|
3839 |
|
3840 #ifndef GL_ARB_texture_mirrored_repeat |
|
3841 #define GL_ARB_texture_mirrored_repeat 1 |
|
3842 #endif |
|
3843 |
|
3844 #ifndef GL_ARB_depth_texture |
|
3845 #define GL_ARB_depth_texture 1 |
|
3846 #endif |
|
3847 |
|
3848 #ifndef GL_ARB_shadow |
|
3849 #define GL_ARB_shadow 1 |
|
3850 #endif |
|
3851 |
|
3852 #ifndef GL_ARB_shadow_ambient |
|
3853 #define GL_ARB_shadow_ambient 1 |
|
3854 #endif |
|
3855 |
|
3856 #ifndef GL_ARB_window_pos |
|
3857 #define GL_ARB_window_pos 1 |
|
3858 #ifdef GL_GLEXT_PROTOTYPES |
|
3859 GLAPI void APIENTRY glWindowPos2dARB (GLdouble, GLdouble); |
|
3860 GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *); |
|
3861 GLAPI void APIENTRY glWindowPos2fARB (GLfloat, GLfloat); |
|
3862 GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *); |
|
3863 GLAPI void APIENTRY glWindowPos2iARB (GLint, GLint); |
|
3864 GLAPI void APIENTRY glWindowPos2ivARB (const GLint *); |
|
3865 GLAPI void APIENTRY glWindowPos2sARB (GLshort, GLshort); |
|
3866 GLAPI void APIENTRY glWindowPos2svARB (const GLshort *); |
|
3867 GLAPI void APIENTRY glWindowPos3dARB (GLdouble, GLdouble, GLdouble); |
|
3868 GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *); |
|
3869 GLAPI void APIENTRY glWindowPos3fARB (GLfloat, GLfloat, GLfloat); |
|
3870 GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *); |
|
3871 GLAPI void APIENTRY glWindowPos3iARB (GLint, GLint, GLint); |
|
3872 GLAPI void APIENTRY glWindowPos3ivARB (const GLint *); |
|
3873 GLAPI void APIENTRY glWindowPos3sARB (GLshort, GLshort, GLshort); |
|
3874 GLAPI void APIENTRY glWindowPos3svARB (const GLshort *); |
|
3875 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3876 typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); |
|
3877 typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v); |
|
3878 typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); |
|
3879 typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v); |
|
3880 typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); |
|
3881 typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v); |
|
3882 typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); |
|
3883 typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v); |
|
3884 typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); |
|
3885 typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v); |
|
3886 typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); |
|
3887 typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v); |
|
3888 typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); |
|
3889 typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v); |
|
3890 typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); |
|
3891 typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v); |
|
3892 #endif |
|
3893 |
|
3894 #ifndef GL_ARB_vertex_program |
|
3895 #define GL_ARB_vertex_program 1 |
|
3896 #ifdef GL_GLEXT_PROTOTYPES |
|
3897 GLAPI void APIENTRY glVertexAttrib1dARB (GLuint, GLdouble); |
|
3898 GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint, const GLdouble *); |
|
3899 GLAPI void APIENTRY glVertexAttrib1fARB (GLuint, GLfloat); |
|
3900 GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint, const GLfloat *); |
|
3901 GLAPI void APIENTRY glVertexAttrib1sARB (GLuint, GLshort); |
|
3902 GLAPI void APIENTRY glVertexAttrib1svARB (GLuint, const GLshort *); |
|
3903 GLAPI void APIENTRY glVertexAttrib2dARB (GLuint, GLdouble, GLdouble); |
|
3904 GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint, const GLdouble *); |
|
3905 GLAPI void APIENTRY glVertexAttrib2fARB (GLuint, GLfloat, GLfloat); |
|
3906 GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint, const GLfloat *); |
|
3907 GLAPI void APIENTRY glVertexAttrib2sARB (GLuint, GLshort, GLshort); |
|
3908 GLAPI void APIENTRY glVertexAttrib2svARB (GLuint, const GLshort *); |
|
3909 GLAPI void APIENTRY glVertexAttrib3dARB (GLuint, GLdouble, GLdouble, GLdouble); |
|
3910 GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint, const GLdouble *); |
|
3911 GLAPI void APIENTRY glVertexAttrib3fARB (GLuint, GLfloat, GLfloat, GLfloat); |
|
3912 GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint, const GLfloat *); |
|
3913 GLAPI void APIENTRY glVertexAttrib3sARB (GLuint, GLshort, GLshort, GLshort); |
|
3914 GLAPI void APIENTRY glVertexAttrib3svARB (GLuint, const GLshort *); |
|
3915 GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint, const GLbyte *); |
|
3916 GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint, const GLint *); |
|
3917 GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint, const GLshort *); |
|
3918 GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint, GLubyte, GLubyte, GLubyte, GLubyte); |
|
3919 GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint, const GLubyte *); |
|
3920 GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint, const GLuint *); |
|
3921 GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint, const GLushort *); |
|
3922 GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint, const GLbyte *); |
|
3923 GLAPI void APIENTRY glVertexAttrib4dARB (GLuint, GLdouble, GLdouble, GLdouble, GLdouble); |
|
3924 GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint, const GLdouble *); |
|
3925 GLAPI void APIENTRY glVertexAttrib4fARB (GLuint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3926 GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint, const GLfloat *); |
|
3927 GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint, const GLint *); |
|
3928 GLAPI void APIENTRY glVertexAttrib4sARB (GLuint, GLshort, GLshort, GLshort, GLshort); |
|
3929 GLAPI void APIENTRY glVertexAttrib4svARB (GLuint, const GLshort *); |
|
3930 GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint, const GLubyte *); |
|
3931 GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint, const GLuint *); |
|
3932 GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint, const GLushort *); |
|
3933 GLAPI void APIENTRY glVertexAttribPointerARB (GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *); |
|
3934 GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint); |
|
3935 GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint); |
|
3936 GLAPI void APIENTRY glProgramStringARB (GLenum, GLenum, GLsizei, const GLvoid *); |
|
3937 GLAPI void APIENTRY glBindProgramARB (GLenum, GLuint); |
|
3938 GLAPI void APIENTRY glDeleteProgramsARB (GLsizei, const GLuint *); |
|
3939 GLAPI void APIENTRY glGenProgramsARB (GLsizei, GLuint *); |
|
3940 GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble); |
|
3941 GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum, GLuint, const GLdouble *); |
|
3942 GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3943 GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum, GLuint, const GLfloat *); |
|
3944 GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble); |
|
3945 GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum, GLuint, const GLdouble *); |
|
3946 GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
3947 GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum, GLuint, const GLfloat *); |
|
3948 GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum, GLuint, GLdouble *); |
|
3949 GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum, GLuint, GLfloat *); |
|
3950 GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum, GLuint, GLdouble *); |
|
3951 GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum, GLuint, GLfloat *); |
|
3952 GLAPI void APIENTRY glGetProgramivARB (GLenum, GLenum, GLint *); |
|
3953 GLAPI void APIENTRY glGetProgramStringARB (GLenum, GLenum, GLvoid *); |
|
3954 GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint, GLenum, GLdouble *); |
|
3955 GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint, GLenum, GLfloat *); |
|
3956 GLAPI void APIENTRY glGetVertexAttribivARB (GLuint, GLenum, GLint *); |
|
3957 GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint, GLenum, GLvoid* *); |
|
3958 GLAPI GLboolean APIENTRY glIsProgramARB (GLuint); |
|
3959 #endif /* GL_GLEXT_PROTOTYPES */ |
|
3960 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); |
|
3961 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v); |
|
3962 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); |
|
3963 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v); |
|
3964 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); |
|
3965 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v); |
|
3966 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); |
|
3967 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v); |
|
3968 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); |
|
3969 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v); |
|
3970 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); |
|
3971 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v); |
|
3972 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); |
|
3973 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v); |
|
3974 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); |
|
3975 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v); |
|
3976 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); |
|
3977 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v); |
|
3978 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v); |
|
3979 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v); |
|
3980 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v); |
|
3981 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); |
|
3982 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v); |
|
3983 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v); |
|
3984 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v); |
|
3985 typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v); |
|
3986 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
3987 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v); |
|
3988 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
3989 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v); |
|
3990 typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v); |
|
3991 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); |
|
3992 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v); |
|
3993 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v); |
|
3994 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v); |
|
3995 typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v); |
|
3996 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); |
|
3997 typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); |
|
3998 typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); |
|
3999 typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const GLvoid *string); |
|
4000 typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); |
|
4001 typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs); |
|
4002 typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs); |
|
4003 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
4004 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); |
|
4005 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
4006 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); |
|
4007 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
4008 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); |
|
4009 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
4010 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); |
|
4011 typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); |
|
4012 typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); |
|
4013 typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); |
|
4014 typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); |
|
4015 typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params); |
|
4016 typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, GLvoid *string); |
|
4017 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params); |
|
4018 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params); |
|
4019 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params); |
|
4020 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, GLvoid* *pointer); |
|
4021 typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); |
|
4022 #endif |
|
4023 |
|
4024 #ifndef GL_ARB_fragment_program |
|
4025 #define GL_ARB_fragment_program 1 |
|
4026 /* All ARB_fragment_program entry points are shared with ARB_vertex_program. */ |
|
4027 #endif |
|
4028 |
|
4029 #ifndef GL_ARB_vertex_buffer_object |
|
4030 #define GL_ARB_vertex_buffer_object 1 |
|
4031 #ifdef GL_GLEXT_PROTOTYPES |
|
4032 GLAPI void APIENTRY glBindBufferARB (GLenum, GLuint); |
|
4033 GLAPI void APIENTRY glDeleteBuffersARB (GLsizei, const GLuint *); |
|
4034 GLAPI void APIENTRY glGenBuffersARB (GLsizei, GLuint *); |
|
4035 GLAPI GLboolean APIENTRY glIsBufferARB (GLuint); |
|
4036 GLAPI void APIENTRY glBufferDataARB (GLenum, GLsizeiptrARB, const GLvoid *, GLenum); |
|
4037 GLAPI void APIENTRY glBufferSubDataARB (GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *); |
|
4038 GLAPI void APIENTRY glGetBufferSubDataARB (GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *); |
|
4039 GLAPI GLvoid* APIENTRY glMapBufferARB (GLenum, GLenum); |
|
4040 GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum); |
|
4041 GLAPI void APIENTRY glGetBufferParameterivARB (GLenum, GLenum, GLint *); |
|
4042 GLAPI void APIENTRY glGetBufferPointervARB (GLenum, GLenum, GLvoid* *); |
|
4043 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4044 typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); |
|
4045 typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers); |
|
4046 typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers); |
|
4047 typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer); |
|
4048 typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage); |
|
4049 typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data); |
|
4050 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid *data); |
|
4051 typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); |
|
4052 typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target); |
|
4053 typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params); |
|
4054 typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, GLvoid* *params); |
|
4055 #endif |
|
4056 |
|
4057 #ifndef GL_ARB_occlusion_query |
|
4058 #define GL_ARB_occlusion_query 1 |
|
4059 #ifdef GL_GLEXT_PROTOTYPES |
|
4060 GLAPI void APIENTRY glGenQueriesARB (GLsizei, GLuint *); |
|
4061 GLAPI void APIENTRY glDeleteQueriesARB (GLsizei, const GLuint *); |
|
4062 GLAPI GLboolean APIENTRY glIsQueryARB (GLuint); |
|
4063 GLAPI void APIENTRY glBeginQueryARB (GLenum, GLuint); |
|
4064 GLAPI void APIENTRY glEndQueryARB (GLenum); |
|
4065 GLAPI void APIENTRY glGetQueryivARB (GLenum, GLenum, GLint *); |
|
4066 GLAPI void APIENTRY glGetQueryObjectivARB (GLuint, GLenum, GLint *); |
|
4067 GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint, GLenum, GLuint *); |
|
4068 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4069 typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids); |
|
4070 typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids); |
|
4071 typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id); |
|
4072 typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); |
|
4073 typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target); |
|
4074 typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params); |
|
4075 typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params); |
|
4076 typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params); |
|
4077 #endif |
|
4078 |
|
4079 #ifndef GL_ARB_shader_objects |
|
4080 #define GL_ARB_shader_objects 1 |
|
4081 #ifdef GL_GLEXT_PROTOTYPES |
|
4082 GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB); |
|
4083 GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum); |
|
4084 GLAPI void APIENTRY glDetachObjectARB (GLhandleARB, GLhandleARB); |
|
4085 GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum); |
|
4086 GLAPI void APIENTRY glShaderSourceARB (GLhandleARB, GLsizei, const GLcharARB* *, const GLint *); |
|
4087 GLAPI void APIENTRY glCompileShaderARB (GLhandleARB); |
|
4088 GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void); |
|
4089 GLAPI void APIENTRY glAttachObjectARB (GLhandleARB, GLhandleARB); |
|
4090 GLAPI void APIENTRY glLinkProgramARB (GLhandleARB); |
|
4091 GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB); |
|
4092 GLAPI void APIENTRY glValidateProgramARB (GLhandleARB); |
|
4093 GLAPI void APIENTRY glUniform1fARB (GLint, GLfloat); |
|
4094 GLAPI void APIENTRY glUniform2fARB (GLint, GLfloat, GLfloat); |
|
4095 GLAPI void APIENTRY glUniform3fARB (GLint, GLfloat, GLfloat, GLfloat); |
|
4096 GLAPI void APIENTRY glUniform4fARB (GLint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
4097 GLAPI void APIENTRY glUniform1iARB (GLint, GLint); |
|
4098 GLAPI void APIENTRY glUniform2iARB (GLint, GLint, GLint); |
|
4099 GLAPI void APIENTRY glUniform3iARB (GLint, GLint, GLint, GLint); |
|
4100 GLAPI void APIENTRY glUniform4iARB (GLint, GLint, GLint, GLint, GLint); |
|
4101 GLAPI void APIENTRY glUniform1fvARB (GLint, GLsizei, const GLfloat *); |
|
4102 GLAPI void APIENTRY glUniform2fvARB (GLint, GLsizei, const GLfloat *); |
|
4103 GLAPI void APIENTRY glUniform3fvARB (GLint, GLsizei, const GLfloat *); |
|
4104 GLAPI void APIENTRY glUniform4fvARB (GLint, GLsizei, const GLfloat *); |
|
4105 GLAPI void APIENTRY glUniform1ivARB (GLint, GLsizei, const GLint *); |
|
4106 GLAPI void APIENTRY glUniform2ivARB (GLint, GLsizei, const GLint *); |
|
4107 GLAPI void APIENTRY glUniform3ivARB (GLint, GLsizei, const GLint *); |
|
4108 GLAPI void APIENTRY glUniform4ivARB (GLint, GLsizei, const GLint *); |
|
4109 GLAPI void APIENTRY glUniformMatrix2fvARB (GLint, GLsizei, GLboolean, const GLfloat *); |
|
4110 GLAPI void APIENTRY glUniformMatrix3fvARB (GLint, GLsizei, GLboolean, const GLfloat *); |
|
4111 GLAPI void APIENTRY glUniformMatrix4fvARB (GLint, GLsizei, GLboolean, const GLfloat *); |
|
4112 GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB, GLenum, GLfloat *); |
|
4113 GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB, GLenum, GLint *); |
|
4114 GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB, GLsizei, GLsizei *, GLcharARB *); |
|
4115 GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB, GLsizei, GLsizei *, GLhandleARB *); |
|
4116 GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB, const GLcharARB *); |
|
4117 GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *); |
|
4118 GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB, GLint, GLfloat *); |
|
4119 GLAPI void APIENTRY glGetUniformivARB (GLhandleARB, GLint, GLint *); |
|
4120 GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB, GLsizei, GLsizei *, GLcharARB *); |
|
4121 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4122 typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); |
|
4123 typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname); |
|
4124 typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); |
|
4125 typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); |
|
4126 typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB* *string, const GLint *length); |
|
4127 typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); |
|
4128 typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void); |
|
4129 typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); |
|
4130 typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); |
|
4131 typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); |
|
4132 typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); |
|
4133 typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); |
|
4134 typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); |
|
4135 typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); |
|
4136 typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); |
|
4137 typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); |
|
4138 typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); |
|
4139 typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); |
|
4140 typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); |
|
4141 typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
4142 typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
4143 typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
4144 typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); |
|
4145 typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value); |
|
4146 typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value); |
|
4147 typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value); |
|
4148 typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value); |
|
4149 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); |
|
4150 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); |
|
4151 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); |
|
4152 typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params); |
|
4153 typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params); |
|
4154 typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); |
|
4155 typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); |
|
4156 typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); |
|
4157 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); |
|
4158 typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params); |
|
4159 typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params); |
|
4160 typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); |
|
4161 #endif |
|
4162 |
|
4163 #ifndef GL_ARB_vertex_shader |
|
4164 #define GL_ARB_vertex_shader 1 |
|
4165 #ifdef GL_GLEXT_PROTOTYPES |
|
4166 GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB, GLuint, const GLcharARB *); |
|
4167 GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *); |
|
4168 GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB, const GLcharARB *); |
|
4169 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4170 typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name); |
|
4171 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); |
|
4172 typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); |
|
4173 #endif |
|
4174 |
|
4175 #ifndef GL_ARB_fragment_shader |
|
4176 #define GL_ARB_fragment_shader 1 |
|
4177 #endif |
|
4178 |
|
4179 #ifndef GL_ARB_shading_language_100 |
|
4180 #define GL_ARB_shading_language_100 1 |
|
4181 #endif |
|
4182 |
|
4183 #ifndef GL_ARB_texture_non_power_of_two |
|
4184 #define GL_ARB_texture_non_power_of_two 1 |
|
4185 #endif |
|
4186 |
|
4187 #ifndef GL_ARB_point_sprite |
|
4188 #define GL_ARB_point_sprite 1 |
|
4189 #endif |
|
4190 |
|
4191 #ifndef GL_ARB_fragment_program_shadow |
|
4192 #define GL_ARB_fragment_program_shadow 1 |
|
4193 #endif |
|
4194 |
|
4195 #ifndef GL_ARB_draw_buffers |
|
4196 #define GL_ARB_draw_buffers 1 |
|
4197 #ifdef GL_GLEXT_PROTOTYPES |
|
4198 GLAPI void APIENTRY glDrawBuffersARB (GLsizei, const GLenum *); |
|
4199 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4200 typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs); |
|
4201 #endif |
|
4202 |
|
4203 #ifndef GL_ARB_texture_rectangle |
|
4204 #define GL_ARB_texture_rectangle 1 |
|
4205 #endif |
|
4206 |
|
4207 #ifndef GL_ARB_color_buffer_float |
|
4208 #define GL_ARB_color_buffer_float 1 |
|
4209 #ifdef GL_GLEXT_PROTOTYPES |
|
4210 GLAPI void APIENTRY glClampColorARB (GLenum, GLenum); |
|
4211 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4212 typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); |
|
4213 #endif |
|
4214 |
|
4215 #ifndef GL_ARB_half_float_pixel |
|
4216 #define GL_ARB_half_float_pixel 1 |
|
4217 #endif |
|
4218 |
|
4219 #ifndef GL_ARB_texture_float |
|
4220 #define GL_ARB_texture_float 1 |
|
4221 #endif |
|
4222 |
|
4223 #ifndef GL_ARB_pixel_buffer_object |
|
4224 #define GL_ARB_pixel_buffer_object 1 |
|
4225 #endif |
|
4226 |
|
4227 #ifndef GL_EXT_abgr |
|
4228 #define GL_EXT_abgr 1 |
|
4229 #endif |
|
4230 |
|
4231 #ifndef GL_EXT_blend_color |
|
4232 #define GL_EXT_blend_color 1 |
|
4233 #ifdef GL_GLEXT_PROTOTYPES |
|
4234 GLAPI void APIENTRY glBlendColorEXT (GLclampf, GLclampf, GLclampf, GLclampf); |
|
4235 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4236 typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); |
|
4237 #endif |
|
4238 |
|
4239 #ifndef GL_EXT_polygon_offset |
|
4240 #define GL_EXT_polygon_offset 1 |
|
4241 #ifdef GL_GLEXT_PROTOTYPES |
|
4242 GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat, GLfloat); |
|
4243 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4244 typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); |
|
4245 #endif |
|
4246 |
|
4247 #ifndef GL_EXT_texture |
|
4248 #define GL_EXT_texture 1 |
|
4249 #endif |
|
4250 |
|
4251 #ifndef GL_EXT_texture3D |
|
4252 #define GL_EXT_texture3D 1 |
|
4253 #ifdef GL_GLEXT_PROTOTYPES |
|
4254 GLAPI void APIENTRY glTexImage3DEXT (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *); |
|
4255 GLAPI void APIENTRY glTexSubImage3DEXT (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4256 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4257 typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); |
|
4258 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); |
|
4259 #endif |
|
4260 |
|
4261 #ifndef GL_SGIS_texture_filter4 |
|
4262 #define GL_SGIS_texture_filter4 1 |
|
4263 #ifdef GL_GLEXT_PROTOTYPES |
|
4264 GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum, GLenum, GLfloat *); |
|
4265 GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum, GLenum, GLsizei, const GLfloat *); |
|
4266 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4267 typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights); |
|
4268 typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); |
|
4269 #endif |
|
4270 |
|
4271 #ifndef GL_EXT_subtexture |
|
4272 #define GL_EXT_subtexture 1 |
|
4273 #ifdef GL_GLEXT_PROTOTYPES |
|
4274 GLAPI void APIENTRY glTexSubImage1DEXT (GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4275 GLAPI void APIENTRY glTexSubImage2DEXT (GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4276 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4277 typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels); |
|
4278 typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); |
|
4279 #endif |
|
4280 |
|
4281 #ifndef GL_EXT_copy_texture |
|
4282 #define GL_EXT_copy_texture 1 |
|
4283 #ifdef GL_GLEXT_PROTOTYPES |
|
4284 GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint); |
|
4285 GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint); |
|
4286 GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum, GLint, GLint, GLint, GLint, GLsizei); |
|
4287 GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei); |
|
4288 GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei); |
|
4289 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4290 typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); |
|
4291 typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); |
|
4292 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); |
|
4293 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); |
|
4294 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); |
|
4295 #endif |
|
4296 |
|
4297 #ifndef GL_EXT_histogram |
|
4298 #define GL_EXT_histogram 1 |
|
4299 #ifdef GL_GLEXT_PROTOTYPES |
|
4300 GLAPI void APIENTRY glGetHistogramEXT (GLenum, GLboolean, GLenum, GLenum, GLvoid *); |
|
4301 GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum, GLenum, GLfloat *); |
|
4302 GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum, GLenum, GLint *); |
|
4303 GLAPI void APIENTRY glGetMinmaxEXT (GLenum, GLboolean, GLenum, GLenum, GLvoid *); |
|
4304 GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum, GLenum, GLfloat *); |
|
4305 GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum, GLenum, GLint *); |
|
4306 GLAPI void APIENTRY glHistogramEXT (GLenum, GLsizei, GLenum, GLboolean); |
|
4307 GLAPI void APIENTRY glMinmaxEXT (GLenum, GLenum, GLboolean); |
|
4308 GLAPI void APIENTRY glResetHistogramEXT (GLenum); |
|
4309 GLAPI void APIENTRY glResetMinmaxEXT (GLenum); |
|
4310 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4311 typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); |
|
4312 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
4313 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); |
|
4314 typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values); |
|
4315 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
4316 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); |
|
4317 typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); |
|
4318 typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); |
|
4319 typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); |
|
4320 typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target); |
|
4321 #endif |
|
4322 |
|
4323 #ifndef GL_EXT_convolution |
|
4324 #define GL_EXT_convolution 1 |
|
4325 #ifdef GL_GLEXT_PROTOTYPES |
|
4326 GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4327 GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4328 GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum, GLenum, GLfloat); |
|
4329 GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum, GLenum, const GLfloat *); |
|
4330 GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum, GLenum, GLint); |
|
4331 GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum, GLenum, const GLint *); |
|
4332 GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum, GLenum, GLint, GLint, GLsizei); |
|
4333 GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum, GLenum, GLint, GLint, GLsizei, GLsizei); |
|
4334 GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum, GLenum, GLenum, GLvoid *); |
|
4335 GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum, GLenum, GLfloat *); |
|
4336 GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum, GLenum, GLint *); |
|
4337 GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *); |
|
4338 GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *); |
|
4339 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4340 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image); |
|
4341 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image); |
|
4342 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params); |
|
4343 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
4344 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params); |
|
4345 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); |
|
4346 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); |
|
4347 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); |
|
4348 typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image); |
|
4349 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
4350 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); |
|
4351 typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span); |
|
4352 typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column); |
|
4353 #endif |
|
4354 |
|
4355 #ifndef GL_EXT_color_matrix |
|
4356 #define GL_EXT_color_matrix 1 |
|
4357 #endif |
|
4358 |
|
4359 #ifndef GL_SGI_color_table |
|
4360 #define GL_SGI_color_table 1 |
|
4361 #ifdef GL_GLEXT_PROTOTYPES |
|
4362 GLAPI void APIENTRY glColorTableSGI (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4363 GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum, GLenum, const GLfloat *); |
|
4364 GLAPI void APIENTRY glColorTableParameterivSGI (GLenum, GLenum, const GLint *); |
|
4365 GLAPI void APIENTRY glCopyColorTableSGI (GLenum, GLenum, GLint, GLint, GLsizei); |
|
4366 GLAPI void APIENTRY glGetColorTableSGI (GLenum, GLenum, GLenum, GLvoid *); |
|
4367 GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum, GLenum, GLfloat *); |
|
4368 GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum, GLenum, GLint *); |
|
4369 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4370 typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); |
|
4371 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
4372 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params); |
|
4373 typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); |
|
4374 typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table); |
|
4375 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
4376 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params); |
|
4377 #endif |
|
4378 |
|
4379 #ifndef GL_SGIX_pixel_texture |
|
4380 #define GL_SGIX_pixel_texture 1 |
|
4381 #ifdef GL_GLEXT_PROTOTYPES |
|
4382 GLAPI void APIENTRY glPixelTexGenSGIX (GLenum); |
|
4383 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4384 typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); |
|
4385 #endif |
|
4386 |
|
4387 #ifndef GL_SGIS_pixel_texture |
|
4388 #define GL_SGIS_pixel_texture 1 |
|
4389 #ifdef GL_GLEXT_PROTOTYPES |
|
4390 GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum, GLint); |
|
4391 GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum, const GLint *); |
|
4392 GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum, GLfloat); |
|
4393 GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum, const GLfloat *); |
|
4394 GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum, GLint *); |
|
4395 GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum, GLfloat *); |
|
4396 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4397 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param); |
|
4398 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params); |
|
4399 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param); |
|
4400 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); |
|
4401 typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params); |
|
4402 typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params); |
|
4403 #endif |
|
4404 |
|
4405 #ifndef GL_SGIS_texture4D |
|
4406 #define GL_SGIS_texture4D 1 |
|
4407 #ifdef GL_GLEXT_PROTOTYPES |
|
4408 GLAPI void APIENTRY glTexImage4DSGIS (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *); |
|
4409 GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4410 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4411 typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const GLvoid *pixels); |
|
4412 typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const GLvoid *pixels); |
|
4413 #endif |
|
4414 |
|
4415 #ifndef GL_SGI_texture_color_table |
|
4416 #define GL_SGI_texture_color_table 1 |
|
4417 #endif |
|
4418 |
|
4419 #ifndef GL_EXT_cmyka |
|
4420 #define GL_EXT_cmyka 1 |
|
4421 #endif |
|
4422 |
|
4423 #ifndef GL_EXT_texture_object |
|
4424 #define GL_EXT_texture_object 1 |
|
4425 #ifdef GL_GLEXT_PROTOTYPES |
|
4426 GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei, const GLuint *, GLboolean *); |
|
4427 GLAPI void APIENTRY glBindTextureEXT (GLenum, GLuint); |
|
4428 GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei, const GLuint *); |
|
4429 GLAPI void APIENTRY glGenTexturesEXT (GLsizei, GLuint *); |
|
4430 GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint); |
|
4431 GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei, const GLuint *, const GLclampf *); |
|
4432 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4433 typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences); |
|
4434 typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); |
|
4435 typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures); |
|
4436 typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures); |
|
4437 typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture); |
|
4438 typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities); |
|
4439 #endif |
|
4440 |
|
4441 #ifndef GL_SGIS_detail_texture |
|
4442 #define GL_SGIS_detail_texture 1 |
|
4443 #ifdef GL_GLEXT_PROTOTYPES |
|
4444 GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum, GLsizei, const GLfloat *); |
|
4445 GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum, GLfloat *); |
|
4446 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4447 typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); |
|
4448 typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points); |
|
4449 #endif |
|
4450 |
|
4451 #ifndef GL_SGIS_sharpen_texture |
|
4452 #define GL_SGIS_sharpen_texture 1 |
|
4453 #ifdef GL_GLEXT_PROTOTYPES |
|
4454 GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum, GLsizei, const GLfloat *); |
|
4455 GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum, GLfloat *); |
|
4456 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4457 typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); |
|
4458 typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points); |
|
4459 #endif |
|
4460 |
|
4461 #ifndef GL_EXT_packed_pixels |
|
4462 #define GL_EXT_packed_pixels 1 |
|
4463 #endif |
|
4464 |
|
4465 #ifndef GL_SGIS_texture_lod |
|
4466 #define GL_SGIS_texture_lod 1 |
|
4467 #endif |
|
4468 |
|
4469 #ifndef GL_SGIS_multisample |
|
4470 #define GL_SGIS_multisample 1 |
|
4471 #ifdef GL_GLEXT_PROTOTYPES |
|
4472 GLAPI void APIENTRY glSampleMaskSGIS (GLclampf, GLboolean); |
|
4473 GLAPI void APIENTRY glSamplePatternSGIS (GLenum); |
|
4474 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4475 typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); |
|
4476 typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); |
|
4477 #endif |
|
4478 |
|
4479 #ifndef GL_EXT_rescale_normal |
|
4480 #define GL_EXT_rescale_normal 1 |
|
4481 #endif |
|
4482 |
|
4483 #ifndef GL_EXT_vertex_array |
|
4484 #define GL_EXT_vertex_array 1 |
|
4485 #ifdef GL_GLEXT_PROTOTYPES |
|
4486 GLAPI void APIENTRY glArrayElementEXT (GLint); |
|
4487 GLAPI void APIENTRY glColorPointerEXT (GLint, GLenum, GLsizei, GLsizei, const GLvoid *); |
|
4488 GLAPI void APIENTRY glDrawArraysEXT (GLenum, GLint, GLsizei); |
|
4489 GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei, GLsizei, const GLboolean *); |
|
4490 GLAPI void APIENTRY glGetPointervEXT (GLenum, GLvoid* *); |
|
4491 GLAPI void APIENTRY glIndexPointerEXT (GLenum, GLsizei, GLsizei, const GLvoid *); |
|
4492 GLAPI void APIENTRY glNormalPointerEXT (GLenum, GLsizei, GLsizei, const GLvoid *); |
|
4493 GLAPI void APIENTRY glTexCoordPointerEXT (GLint, GLenum, GLsizei, GLsizei, const GLvoid *); |
|
4494 GLAPI void APIENTRY glVertexPointerEXT (GLint, GLenum, GLsizei, GLsizei, const GLvoid *); |
|
4495 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4496 typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i); |
|
4497 typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); |
|
4498 typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); |
|
4499 typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer); |
|
4500 typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, GLvoid* *params); |
|
4501 typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); |
|
4502 typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); |
|
4503 typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); |
|
4504 typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); |
|
4505 #endif |
|
4506 |
|
4507 #ifndef GL_EXT_misc_attribute |
|
4508 #define GL_EXT_misc_attribute 1 |
|
4509 #endif |
|
4510 |
|
4511 #ifndef GL_SGIS_generate_mipmap |
|
4512 #define GL_SGIS_generate_mipmap 1 |
|
4513 #endif |
|
4514 |
|
4515 #ifndef GL_SGIX_clipmap |
|
4516 #define GL_SGIX_clipmap 1 |
|
4517 #endif |
|
4518 |
|
4519 #ifndef GL_SGIX_shadow |
|
4520 #define GL_SGIX_shadow 1 |
|
4521 #endif |
|
4522 |
|
4523 #ifndef GL_SGIS_texture_edge_clamp |
|
4524 #define GL_SGIS_texture_edge_clamp 1 |
|
4525 #endif |
|
4526 |
|
4527 #ifndef GL_SGIS_texture_border_clamp |
|
4528 #define GL_SGIS_texture_border_clamp 1 |
|
4529 #endif |
|
4530 |
|
4531 #ifndef GL_EXT_blend_minmax |
|
4532 #define GL_EXT_blend_minmax 1 |
|
4533 #ifdef GL_GLEXT_PROTOTYPES |
|
4534 GLAPI void APIENTRY glBlendEquationEXT (GLenum); |
|
4535 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4536 typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); |
|
4537 #endif |
|
4538 |
|
4539 #ifndef GL_EXT_blend_subtract |
|
4540 #define GL_EXT_blend_subtract 1 |
|
4541 #endif |
|
4542 |
|
4543 #ifndef GL_EXT_blend_logic_op |
|
4544 #define GL_EXT_blend_logic_op 1 |
|
4545 #endif |
|
4546 |
|
4547 #ifndef GL_SGIX_interlace |
|
4548 #define GL_SGIX_interlace 1 |
|
4549 #endif |
|
4550 |
|
4551 #ifndef GL_SGIX_pixel_tiles |
|
4552 #define GL_SGIX_pixel_tiles 1 |
|
4553 #endif |
|
4554 |
|
4555 #ifndef GL_SGIX_texture_select |
|
4556 #define GL_SGIX_texture_select 1 |
|
4557 #endif |
|
4558 |
|
4559 #ifndef GL_SGIX_sprite |
|
4560 #define GL_SGIX_sprite 1 |
|
4561 #ifdef GL_GLEXT_PROTOTYPES |
|
4562 GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum, GLfloat); |
|
4563 GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum, const GLfloat *); |
|
4564 GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum, GLint); |
|
4565 GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum, const GLint *); |
|
4566 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4567 typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); |
|
4568 typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params); |
|
4569 typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); |
|
4570 typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params); |
|
4571 #endif |
|
4572 |
|
4573 #ifndef GL_SGIX_texture_multi_buffer |
|
4574 #define GL_SGIX_texture_multi_buffer 1 |
|
4575 #endif |
|
4576 |
|
4577 #ifndef GL_EXT_point_parameters |
|
4578 #define GL_EXT_point_parameters 1 |
|
4579 #ifdef GL_GLEXT_PROTOTYPES |
|
4580 GLAPI void APIENTRY glPointParameterfEXT (GLenum, GLfloat); |
|
4581 GLAPI void APIENTRY glPointParameterfvEXT (GLenum, const GLfloat *); |
|
4582 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4583 typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); |
|
4584 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params); |
|
4585 #endif |
|
4586 |
|
4587 #ifndef GL_SGIS_point_parameters |
|
4588 #define GL_SGIS_point_parameters 1 |
|
4589 #ifdef GL_GLEXT_PROTOTYPES |
|
4590 GLAPI void APIENTRY glPointParameterfSGIS (GLenum, GLfloat); |
|
4591 GLAPI void APIENTRY glPointParameterfvSGIS (GLenum, const GLfloat *); |
|
4592 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4593 typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param); |
|
4594 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); |
|
4595 #endif |
|
4596 |
|
4597 #ifndef GL_SGIX_instruments |
|
4598 #define GL_SGIX_instruments 1 |
|
4599 #ifdef GL_GLEXT_PROTOTYPES |
|
4600 GLAPI GLint APIENTRY glGetInstrumentsSGIX (void); |
|
4601 GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei, GLint *); |
|
4602 GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *); |
|
4603 GLAPI void APIENTRY glReadInstrumentsSGIX (GLint); |
|
4604 GLAPI void APIENTRY glStartInstrumentsSGIX (void); |
|
4605 GLAPI void APIENTRY glStopInstrumentsSGIX (GLint); |
|
4606 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4607 typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void); |
|
4608 typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer); |
|
4609 typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p); |
|
4610 typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker); |
|
4611 typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void); |
|
4612 typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker); |
|
4613 #endif |
|
4614 |
|
4615 #ifndef GL_SGIX_texture_scale_bias |
|
4616 #define GL_SGIX_texture_scale_bias 1 |
|
4617 #endif |
|
4618 |
|
4619 #ifndef GL_SGIX_framezoom |
|
4620 #define GL_SGIX_framezoom 1 |
|
4621 #ifdef GL_GLEXT_PROTOTYPES |
|
4622 GLAPI void APIENTRY glFrameZoomSGIX (GLint); |
|
4623 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4624 typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor); |
|
4625 #endif |
|
4626 |
|
4627 #ifndef GL_SGIX_tag_sample_buffer |
|
4628 #define GL_SGIX_tag_sample_buffer 1 |
|
4629 #ifdef GL_GLEXT_PROTOTYPES |
|
4630 GLAPI void APIENTRY glTagSampleBufferSGIX (void); |
|
4631 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4632 typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); |
|
4633 #endif |
|
4634 |
|
4635 #ifndef GL_SGIX_polynomial_ffd |
|
4636 #define GL_SGIX_polynomial_ffd 1 |
|
4637 #ifdef GL_GLEXT_PROTOTYPES |
|
4638 GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *); |
|
4639 GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *); |
|
4640 GLAPI void APIENTRY glDeformSGIX (GLbitfield); |
|
4641 GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield); |
|
4642 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4643 typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); |
|
4644 typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); |
|
4645 typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask); |
|
4646 typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); |
|
4647 #endif |
|
4648 |
|
4649 #ifndef GL_SGIX_reference_plane |
|
4650 #define GL_SGIX_reference_plane 1 |
|
4651 #ifdef GL_GLEXT_PROTOTYPES |
|
4652 GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *); |
|
4653 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4654 typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation); |
|
4655 #endif |
|
4656 |
|
4657 #ifndef GL_SGIX_flush_raster |
|
4658 #define GL_SGIX_flush_raster 1 |
|
4659 #ifdef GL_GLEXT_PROTOTYPES |
|
4660 GLAPI void APIENTRY glFlushRasterSGIX (void); |
|
4661 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4662 typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void); |
|
4663 #endif |
|
4664 |
|
4665 #ifndef GL_SGIX_depth_texture |
|
4666 #define GL_SGIX_depth_texture 1 |
|
4667 #endif |
|
4668 |
|
4669 #ifndef GL_SGIS_fog_function |
|
4670 #define GL_SGIS_fog_function 1 |
|
4671 #ifdef GL_GLEXT_PROTOTYPES |
|
4672 GLAPI void APIENTRY glFogFuncSGIS (GLsizei, const GLfloat *); |
|
4673 GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *); |
|
4674 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4675 typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points); |
|
4676 typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points); |
|
4677 #endif |
|
4678 |
|
4679 #ifndef GL_SGIX_fog_offset |
|
4680 #define GL_SGIX_fog_offset 1 |
|
4681 #endif |
|
4682 |
|
4683 #ifndef GL_HP_image_transform |
|
4684 #define GL_HP_image_transform 1 |
|
4685 #ifdef GL_GLEXT_PROTOTYPES |
|
4686 GLAPI void APIENTRY glImageTransformParameteriHP (GLenum, GLenum, GLint); |
|
4687 GLAPI void APIENTRY glImageTransformParameterfHP (GLenum, GLenum, GLfloat); |
|
4688 GLAPI void APIENTRY glImageTransformParameterivHP (GLenum, GLenum, const GLint *); |
|
4689 GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum, GLenum, const GLfloat *); |
|
4690 GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum, GLenum, GLint *); |
|
4691 GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum, GLenum, GLfloat *); |
|
4692 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4693 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param); |
|
4694 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param); |
|
4695 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params); |
|
4696 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
4697 typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params); |
|
4698 typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
4699 #endif |
|
4700 |
|
4701 #ifndef GL_HP_convolution_border_modes |
|
4702 #define GL_HP_convolution_border_modes 1 |
|
4703 #endif |
|
4704 |
|
4705 #ifndef GL_SGIX_texture_add_env |
|
4706 #define GL_SGIX_texture_add_env 1 |
|
4707 #endif |
|
4708 |
|
4709 #ifndef GL_EXT_color_subtable |
|
4710 #define GL_EXT_color_subtable 1 |
|
4711 #ifdef GL_GLEXT_PROTOTYPES |
|
4712 GLAPI void APIENTRY glColorSubTableEXT (GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4713 GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum, GLsizei, GLint, GLint, GLsizei); |
|
4714 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4715 typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data); |
|
4716 typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); |
|
4717 #endif |
|
4718 |
|
4719 #ifndef GL_PGI_vertex_hints |
|
4720 #define GL_PGI_vertex_hints 1 |
|
4721 #endif |
|
4722 |
|
4723 #ifndef GL_PGI_misc_hints |
|
4724 #define GL_PGI_misc_hints 1 |
|
4725 #ifdef GL_GLEXT_PROTOTYPES |
|
4726 GLAPI void APIENTRY glHintPGI (GLenum, GLint); |
|
4727 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4728 typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode); |
|
4729 #endif |
|
4730 |
|
4731 #ifndef GL_EXT_paletted_texture |
|
4732 #define GL_EXT_paletted_texture 1 |
|
4733 #ifdef GL_GLEXT_PROTOTYPES |
|
4734 GLAPI void APIENTRY glColorTableEXT (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); |
|
4735 GLAPI void APIENTRY glGetColorTableEXT (GLenum, GLenum, GLenum, GLvoid *); |
|
4736 GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum, GLenum, GLint *); |
|
4737 GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum, GLenum, GLfloat *); |
|
4738 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4739 typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table); |
|
4740 typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *data); |
|
4741 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); |
|
4742 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
4743 #endif |
|
4744 |
|
4745 #ifndef GL_EXT_clip_volume_hint |
|
4746 #define GL_EXT_clip_volume_hint 1 |
|
4747 #endif |
|
4748 |
|
4749 #ifndef GL_SGIX_list_priority |
|
4750 #define GL_SGIX_list_priority 1 |
|
4751 #ifdef GL_GLEXT_PROTOTYPES |
|
4752 GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint, GLenum, GLfloat *); |
|
4753 GLAPI void APIENTRY glGetListParameterivSGIX (GLuint, GLenum, GLint *); |
|
4754 GLAPI void APIENTRY glListParameterfSGIX (GLuint, GLenum, GLfloat); |
|
4755 GLAPI void APIENTRY glListParameterfvSGIX (GLuint, GLenum, const GLfloat *); |
|
4756 GLAPI void APIENTRY glListParameteriSGIX (GLuint, GLenum, GLint); |
|
4757 GLAPI void APIENTRY glListParameterivSGIX (GLuint, GLenum, const GLint *); |
|
4758 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4759 typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params); |
|
4760 typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params); |
|
4761 typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param); |
|
4762 typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params); |
|
4763 typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param); |
|
4764 typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params); |
|
4765 #endif |
|
4766 |
|
4767 #ifndef GL_SGIX_ir_instrument1 |
|
4768 #define GL_SGIX_ir_instrument1 1 |
|
4769 #endif |
|
4770 |
|
4771 #ifndef GL_SGIX_calligraphic_fragment |
|
4772 #define GL_SGIX_calligraphic_fragment 1 |
|
4773 #endif |
|
4774 |
|
4775 #ifndef GL_SGIX_texture_lod_bias |
|
4776 #define GL_SGIX_texture_lod_bias 1 |
|
4777 #endif |
|
4778 |
|
4779 #ifndef GL_SGIX_shadow_ambient |
|
4780 #define GL_SGIX_shadow_ambient 1 |
|
4781 #endif |
|
4782 |
|
4783 #ifndef GL_EXT_index_texture |
|
4784 #define GL_EXT_index_texture 1 |
|
4785 #endif |
|
4786 |
|
4787 #ifndef GL_EXT_index_material |
|
4788 #define GL_EXT_index_material 1 |
|
4789 #ifdef GL_GLEXT_PROTOTYPES |
|
4790 GLAPI void APIENTRY glIndexMaterialEXT (GLenum, GLenum); |
|
4791 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4792 typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); |
|
4793 #endif |
|
4794 |
|
4795 #ifndef GL_EXT_index_func |
|
4796 #define GL_EXT_index_func 1 |
|
4797 #ifdef GL_GLEXT_PROTOTYPES |
|
4798 GLAPI void APIENTRY glIndexFuncEXT (GLenum, GLclampf); |
|
4799 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4800 typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref); |
|
4801 #endif |
|
4802 |
|
4803 #ifndef GL_EXT_index_array_formats |
|
4804 #define GL_EXT_index_array_formats 1 |
|
4805 #endif |
|
4806 |
|
4807 #ifndef GL_EXT_compiled_vertex_array |
|
4808 #define GL_EXT_compiled_vertex_array 1 |
|
4809 #ifdef GL_GLEXT_PROTOTYPES |
|
4810 GLAPI void APIENTRY glLockArraysEXT (GLint, GLsizei); |
|
4811 GLAPI void APIENTRY glUnlockArraysEXT (void); |
|
4812 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4813 typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); |
|
4814 typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void); |
|
4815 #endif |
|
4816 |
|
4817 #ifndef GL_EXT_cull_vertex |
|
4818 #define GL_EXT_cull_vertex 1 |
|
4819 #ifdef GL_GLEXT_PROTOTYPES |
|
4820 GLAPI void APIENTRY glCullParameterdvEXT (GLenum, GLdouble *); |
|
4821 GLAPI void APIENTRY glCullParameterfvEXT (GLenum, GLfloat *); |
|
4822 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4823 typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params); |
|
4824 typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params); |
|
4825 #endif |
|
4826 |
|
4827 #ifndef GL_SGIX_ycrcb |
|
4828 #define GL_SGIX_ycrcb 1 |
|
4829 #endif |
|
4830 |
|
4831 #ifndef GL_SGIX_fragment_lighting |
|
4832 #define GL_SGIX_fragment_lighting 1 |
|
4833 #ifdef GL_GLEXT_PROTOTYPES |
|
4834 GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum, GLenum); |
|
4835 GLAPI void APIENTRY glFragmentLightfSGIX (GLenum, GLenum, GLfloat); |
|
4836 GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum, GLenum, const GLfloat *); |
|
4837 GLAPI void APIENTRY glFragmentLightiSGIX (GLenum, GLenum, GLint); |
|
4838 GLAPI void APIENTRY glFragmentLightivSGIX (GLenum, GLenum, const GLint *); |
|
4839 GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum, GLfloat); |
|
4840 GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum, const GLfloat *); |
|
4841 GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum, GLint); |
|
4842 GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum, const GLint *); |
|
4843 GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum, GLenum, GLfloat); |
|
4844 GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum, GLenum, const GLfloat *); |
|
4845 GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum, GLenum, GLint); |
|
4846 GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum, GLenum, const GLint *); |
|
4847 GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum, GLenum, GLfloat *); |
|
4848 GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum, GLenum, GLint *); |
|
4849 GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum, GLenum, GLfloat *); |
|
4850 GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum, GLenum, GLint *); |
|
4851 GLAPI void APIENTRY glLightEnviSGIX (GLenum, GLint); |
|
4852 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4853 typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); |
|
4854 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); |
|
4855 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params); |
|
4856 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); |
|
4857 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params); |
|
4858 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); |
|
4859 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params); |
|
4860 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); |
|
4861 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params); |
|
4862 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param); |
|
4863 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params); |
|
4864 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param); |
|
4865 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params); |
|
4866 typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params); |
|
4867 typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params); |
|
4868 typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params); |
|
4869 typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params); |
|
4870 typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); |
|
4871 #endif |
|
4872 |
|
4873 #ifndef GL_IBM_rasterpos_clip |
|
4874 #define GL_IBM_rasterpos_clip 1 |
|
4875 #endif |
|
4876 |
|
4877 #ifndef GL_HP_texture_lighting |
|
4878 #define GL_HP_texture_lighting 1 |
|
4879 #endif |
|
4880 |
|
4881 #ifndef GL_EXT_draw_range_elements |
|
4882 #define GL_EXT_draw_range_elements 1 |
|
4883 #ifdef GL_GLEXT_PROTOTYPES |
|
4884 GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *); |
|
4885 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4886 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); |
|
4887 #endif |
|
4888 |
|
4889 #ifndef GL_WIN_phong_shading |
|
4890 #define GL_WIN_phong_shading 1 |
|
4891 #endif |
|
4892 |
|
4893 #ifndef GL_WIN_specular_fog |
|
4894 #define GL_WIN_specular_fog 1 |
|
4895 #endif |
|
4896 |
|
4897 #ifndef GL_EXT_light_texture |
|
4898 #define GL_EXT_light_texture 1 |
|
4899 #ifdef GL_GLEXT_PROTOTYPES |
|
4900 GLAPI void APIENTRY glApplyTextureEXT (GLenum); |
|
4901 GLAPI void APIENTRY glTextureLightEXT (GLenum); |
|
4902 GLAPI void APIENTRY glTextureMaterialEXT (GLenum, GLenum); |
|
4903 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4904 typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); |
|
4905 typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); |
|
4906 typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); |
|
4907 #endif |
|
4908 |
|
4909 #ifndef GL_SGIX_blend_alpha_minmax |
|
4910 #define GL_SGIX_blend_alpha_minmax 1 |
|
4911 #endif |
|
4912 |
|
4913 #ifndef GL_EXT_bgra |
|
4914 #define GL_EXT_bgra 1 |
|
4915 #endif |
|
4916 |
|
4917 #ifndef GL_SGIX_async |
|
4918 #define GL_SGIX_async 1 |
|
4919 #ifdef GL_GLEXT_PROTOTYPES |
|
4920 GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint); |
|
4921 GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *); |
|
4922 GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *); |
|
4923 GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei); |
|
4924 GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint, GLsizei); |
|
4925 GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint); |
|
4926 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4927 typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker); |
|
4928 typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp); |
|
4929 typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp); |
|
4930 typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); |
|
4931 typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); |
|
4932 typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); |
|
4933 #endif |
|
4934 |
|
4935 #ifndef GL_SGIX_async_pixel |
|
4936 #define GL_SGIX_async_pixel 1 |
|
4937 #endif |
|
4938 |
|
4939 #ifndef GL_SGIX_async_histogram |
|
4940 #define GL_SGIX_async_histogram 1 |
|
4941 #endif |
|
4942 |
|
4943 #ifndef GL_INTEL_parallel_arrays |
|
4944 #define GL_INTEL_parallel_arrays 1 |
|
4945 #ifdef GL_GLEXT_PROTOTYPES |
|
4946 GLAPI void APIENTRY glVertexPointervINTEL (GLint, GLenum, const GLvoid* *); |
|
4947 GLAPI void APIENTRY glNormalPointervINTEL (GLenum, const GLvoid* *); |
|
4948 GLAPI void APIENTRY glColorPointervINTEL (GLint, GLenum, const GLvoid* *); |
|
4949 GLAPI void APIENTRY glTexCoordPointervINTEL (GLint, GLenum, const GLvoid* *); |
|
4950 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4951 typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer); |
|
4952 typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const GLvoid* *pointer); |
|
4953 typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer); |
|
4954 typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer); |
|
4955 #endif |
|
4956 |
|
4957 #ifndef GL_HP_occlusion_test |
|
4958 #define GL_HP_occlusion_test 1 |
|
4959 #endif |
|
4960 |
|
4961 #ifndef GL_EXT_pixel_transform |
|
4962 #define GL_EXT_pixel_transform 1 |
|
4963 #ifdef GL_GLEXT_PROTOTYPES |
|
4964 GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum, GLenum, GLint); |
|
4965 GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum, GLenum, GLfloat); |
|
4966 GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum, GLenum, const GLint *); |
|
4967 GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum, GLenum, const GLfloat *); |
|
4968 #endif /* GL_GLEXT_PROTOTYPES */ |
|
4969 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); |
|
4970 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); |
|
4971 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); |
|
4972 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
4973 #endif |
|
4974 |
|
4975 #ifndef GL_EXT_pixel_transform_color_table |
|
4976 #define GL_EXT_pixel_transform_color_table 1 |
|
4977 #endif |
|
4978 |
|
4979 #ifndef GL_EXT_shared_texture_palette |
|
4980 #define GL_EXT_shared_texture_palette 1 |
|
4981 #endif |
|
4982 |
|
4983 #ifndef GL_EXT_separate_specular_color |
|
4984 #define GL_EXT_separate_specular_color 1 |
|
4985 #endif |
|
4986 |
|
4987 #ifndef GL_EXT_secondary_color |
|
4988 #define GL_EXT_secondary_color 1 |
|
4989 #ifdef GL_GLEXT_PROTOTYPES |
|
4990 GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte, GLbyte, GLbyte); |
|
4991 GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *); |
|
4992 GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble, GLdouble, GLdouble); |
|
4993 GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *); |
|
4994 GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat, GLfloat, GLfloat); |
|
4995 GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *); |
|
4996 GLAPI void APIENTRY glSecondaryColor3iEXT (GLint, GLint, GLint); |
|
4997 GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *); |
|
4998 GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort, GLshort, GLshort); |
|
4999 GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *); |
|
5000 GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte, GLubyte, GLubyte); |
|
5001 GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *); |
|
5002 GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint, GLuint, GLuint); |
|
5003 GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *); |
|
5004 GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort, GLushort, GLushort); |
|
5005 GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *); |
|
5006 GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint, GLenum, GLsizei, const GLvoid *); |
|
5007 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5008 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); |
|
5009 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); |
|
5010 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); |
|
5011 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); |
|
5012 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); |
|
5013 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); |
|
5014 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); |
|
5015 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); |
|
5016 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); |
|
5017 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); |
|
5018 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); |
|
5019 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); |
|
5020 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); |
|
5021 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); |
|
5022 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); |
|
5023 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); |
|
5024 typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer); |
|
5025 #endif |
|
5026 |
|
5027 #ifndef GL_EXT_texture_perturb_normal |
|
5028 #define GL_EXT_texture_perturb_normal 1 |
|
5029 #ifdef GL_GLEXT_PROTOTYPES |
|
5030 GLAPI void APIENTRY glTextureNormalEXT (GLenum); |
|
5031 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5032 typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode); |
|
5033 #endif |
|
5034 |
|
5035 #ifndef GL_EXT_multi_draw_arrays |
|
5036 #define GL_EXT_multi_draw_arrays 1 |
|
5037 #ifdef GL_GLEXT_PROTOTYPES |
|
5038 GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum, GLint *, GLsizei *, GLsizei); |
|
5039 GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum, const GLsizei *, GLenum, const GLvoid* *, GLsizei); |
|
5040 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5041 typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, GLint *first, GLsizei *count, GLsizei primcount); |
|
5042 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount); |
|
5043 #endif |
|
5044 |
|
5045 #ifndef GL_EXT_fog_coord |
|
5046 #define GL_EXT_fog_coord 1 |
|
5047 #ifdef GL_GLEXT_PROTOTYPES |
|
5048 GLAPI void APIENTRY glFogCoordfEXT (GLfloat); |
|
5049 GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *); |
|
5050 GLAPI void APIENTRY glFogCoorddEXT (GLdouble); |
|
5051 GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *); |
|
5052 GLAPI void APIENTRY glFogCoordPointerEXT (GLenum, GLsizei, const GLvoid *); |
|
5053 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5054 typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord); |
|
5055 typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); |
|
5056 typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord); |
|
5057 typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); |
|
5058 typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); |
|
5059 #endif |
|
5060 |
|
5061 #ifndef GL_REND_screen_coordinates |
|
5062 #define GL_REND_screen_coordinates 1 |
|
5063 #endif |
|
5064 |
|
5065 #ifndef GL_EXT_coordinate_frame |
|
5066 #define GL_EXT_coordinate_frame 1 |
|
5067 #ifdef GL_GLEXT_PROTOTYPES |
|
5068 GLAPI void APIENTRY glTangent3bEXT (GLbyte, GLbyte, GLbyte); |
|
5069 GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *); |
|
5070 GLAPI void APIENTRY glTangent3dEXT (GLdouble, GLdouble, GLdouble); |
|
5071 GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *); |
|
5072 GLAPI void APIENTRY glTangent3fEXT (GLfloat, GLfloat, GLfloat); |
|
5073 GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *); |
|
5074 GLAPI void APIENTRY glTangent3iEXT (GLint, GLint, GLint); |
|
5075 GLAPI void APIENTRY glTangent3ivEXT (const GLint *); |
|
5076 GLAPI void APIENTRY glTangent3sEXT (GLshort, GLshort, GLshort); |
|
5077 GLAPI void APIENTRY glTangent3svEXT (const GLshort *); |
|
5078 GLAPI void APIENTRY glBinormal3bEXT (GLbyte, GLbyte, GLbyte); |
|
5079 GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *); |
|
5080 GLAPI void APIENTRY glBinormal3dEXT (GLdouble, GLdouble, GLdouble); |
|
5081 GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *); |
|
5082 GLAPI void APIENTRY glBinormal3fEXT (GLfloat, GLfloat, GLfloat); |
|
5083 GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *); |
|
5084 GLAPI void APIENTRY glBinormal3iEXT (GLint, GLint, GLint); |
|
5085 GLAPI void APIENTRY glBinormal3ivEXT (const GLint *); |
|
5086 GLAPI void APIENTRY glBinormal3sEXT (GLshort, GLshort, GLshort); |
|
5087 GLAPI void APIENTRY glBinormal3svEXT (const GLshort *); |
|
5088 GLAPI void APIENTRY glTangentPointerEXT (GLenum, GLsizei, const GLvoid *); |
|
5089 GLAPI void APIENTRY glBinormalPointerEXT (GLenum, GLsizei, const GLvoid *); |
|
5090 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5091 typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz); |
|
5092 typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v); |
|
5093 typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz); |
|
5094 typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v); |
|
5095 typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz); |
|
5096 typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v); |
|
5097 typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz); |
|
5098 typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v); |
|
5099 typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz); |
|
5100 typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v); |
|
5101 typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz); |
|
5102 typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v); |
|
5103 typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz); |
|
5104 typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v); |
|
5105 typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz); |
|
5106 typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v); |
|
5107 typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz); |
|
5108 typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v); |
|
5109 typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz); |
|
5110 typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v); |
|
5111 typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); |
|
5112 typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer); |
|
5113 #endif |
|
5114 |
|
5115 #ifndef GL_EXT_texture_env_combine |
|
5116 #define GL_EXT_texture_env_combine 1 |
|
5117 #endif |
|
5118 |
|
5119 #ifndef GL_APPLE_specular_vector |
|
5120 #define GL_APPLE_specular_vector 1 |
|
5121 #endif |
|
5122 |
|
5123 #ifndef GL_APPLE_transform_hint |
|
5124 #define GL_APPLE_transform_hint 1 |
|
5125 #endif |
|
5126 |
|
5127 #ifndef GL_SGIX_fog_scale |
|
5128 #define GL_SGIX_fog_scale 1 |
|
5129 #endif |
|
5130 |
|
5131 #ifndef GL_SUNX_constant_data |
|
5132 #define GL_SUNX_constant_data 1 |
|
5133 #ifdef GL_GLEXT_PROTOTYPES |
|
5134 GLAPI void APIENTRY glFinishTextureSUNX (void); |
|
5135 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5136 typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void); |
|
5137 #endif |
|
5138 |
|
5139 #ifndef GL_SUN_global_alpha |
|
5140 #define GL_SUN_global_alpha 1 |
|
5141 #ifdef GL_GLEXT_PROTOTYPES |
|
5142 GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte); |
|
5143 GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort); |
|
5144 GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint); |
|
5145 GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat); |
|
5146 GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble); |
|
5147 GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte); |
|
5148 GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort); |
|
5149 GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint); |
|
5150 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5151 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); |
|
5152 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); |
|
5153 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); |
|
5154 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); |
|
5155 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); |
|
5156 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); |
|
5157 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); |
|
5158 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); |
|
5159 #endif |
|
5160 |
|
5161 #ifndef GL_SUN_triangle_list |
|
5162 #define GL_SUN_triangle_list 1 |
|
5163 #ifdef GL_GLEXT_PROTOTYPES |
|
5164 GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint); |
|
5165 GLAPI void APIENTRY glReplacementCodeusSUN (GLushort); |
|
5166 GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte); |
|
5167 GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *); |
|
5168 GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *); |
|
5169 GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *); |
|
5170 GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum, GLsizei, const GLvoid* *); |
|
5171 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5172 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); |
|
5173 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); |
|
5174 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); |
|
5175 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code); |
|
5176 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code); |
|
5177 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code); |
|
5178 typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const GLvoid* *pointer); |
|
5179 #endif |
|
5180 |
|
5181 #ifndef GL_SUN_vertex |
|
5182 #define GL_SUN_vertex 1 |
|
5183 #ifdef GL_GLEXT_PROTOTYPES |
|
5184 GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat); |
|
5185 GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *, const GLfloat *); |
|
5186 GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat); |
|
5187 GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *, const GLfloat *); |
|
5188 GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5189 GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *, const GLfloat *); |
|
5190 GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5191 GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *); |
|
5192 GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5193 GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *); |
|
5194 GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5195 GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *, const GLfloat *); |
|
5196 GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5197 GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *, const GLfloat *); |
|
5198 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat); |
|
5199 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *, const GLubyte *, const GLfloat *); |
|
5200 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5201 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *); |
|
5202 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5203 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *); |
|
5204 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5205 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *); |
|
5206 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5207 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *); |
|
5208 GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat); |
|
5209 GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *, const GLfloat *); |
|
5210 GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat); |
|
5211 GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *, const GLubyte *, const GLfloat *); |
|
5212 GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5213 GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *, const GLfloat *, const GLfloat *); |
|
5214 GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5215 GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *, const GLfloat *, const GLfloat *); |
|
5216 GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5217 GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *, const GLfloat *, const GLfloat *, const GLfloat *); |
|
5218 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5219 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *, const GLfloat *, const GLfloat *); |
|
5220 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5221 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *, const GLfloat *, const GLfloat *, const GLfloat *); |
|
5222 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5223 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *); |
|
5224 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5225 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); |
|
5226 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v); |
|
5227 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); |
|
5228 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v); |
|
5229 typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); |
|
5230 typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v); |
|
5231 typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5232 typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v); |
|
5233 typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5234 typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v); |
|
5235 typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); |
|
5236 typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); |
|
5237 typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
5238 typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); |
|
5239 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); |
|
5240 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v); |
|
5241 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); |
|
5242 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v); |
|
5243 typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5244 typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v); |
|
5245 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5246 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); |
|
5247 typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
5248 typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); |
|
5249 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); |
|
5250 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v); |
|
5251 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); |
|
5252 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v); |
|
5253 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); |
|
5254 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v); |
|
5255 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5256 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v); |
|
5257 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5258 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); |
|
5259 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); |
|
5260 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); |
|
5261 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5262 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); |
|
5263 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); |
|
5264 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); |
|
5265 #endif |
|
5266 |
|
5267 #ifndef GL_EXT_blend_func_separate |
|
5268 #define GL_EXT_blend_func_separate 1 |
|
5269 #ifdef GL_GLEXT_PROTOTYPES |
|
5270 GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum, GLenum, GLenum, GLenum); |
|
5271 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5272 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); |
|
5273 #endif |
|
5274 |
|
5275 #ifndef GL_INGR_blend_func_separate |
|
5276 #define GL_INGR_blend_func_separate 1 |
|
5277 #ifdef GL_GLEXT_PROTOTYPES |
|
5278 GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum, GLenum, GLenum, GLenum); |
|
5279 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5280 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); |
|
5281 #endif |
|
5282 |
|
5283 #ifndef GL_INGR_color_clamp |
|
5284 #define GL_INGR_color_clamp 1 |
|
5285 #endif |
|
5286 |
|
5287 #ifndef GL_INGR_interlace_read |
|
5288 #define GL_INGR_interlace_read 1 |
|
5289 #endif |
|
5290 |
|
5291 #ifndef GL_EXT_stencil_wrap |
|
5292 #define GL_EXT_stencil_wrap 1 |
|
5293 #endif |
|
5294 |
|
5295 #ifndef GL_EXT_422_pixels |
|
5296 #define GL_EXT_422_pixels 1 |
|
5297 #endif |
|
5298 |
|
5299 #ifndef GL_NV_texgen_reflection |
|
5300 #define GL_NV_texgen_reflection 1 |
|
5301 #endif |
|
5302 |
|
5303 #ifndef GL_SUN_convolution_border_modes |
|
5304 #define GL_SUN_convolution_border_modes 1 |
|
5305 #endif |
|
5306 |
|
5307 #ifndef GL_EXT_texture_env_add |
|
5308 #define GL_EXT_texture_env_add 1 |
|
5309 #endif |
|
5310 |
|
5311 #ifndef GL_EXT_texture_lod_bias |
|
5312 #define GL_EXT_texture_lod_bias 1 |
|
5313 #endif |
|
5314 |
|
5315 #ifndef GL_EXT_texture_filter_anisotropic |
|
5316 #define GL_EXT_texture_filter_anisotropic 1 |
|
5317 #endif |
|
5318 |
|
5319 #ifndef GL_EXT_vertex_weighting |
|
5320 #define GL_EXT_vertex_weighting 1 |
|
5321 #ifdef GL_GLEXT_PROTOTYPES |
|
5322 GLAPI void APIENTRY glVertexWeightfEXT (GLfloat); |
|
5323 GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *); |
|
5324 GLAPI void APIENTRY glVertexWeightPointerEXT (GLsizei, GLenum, GLsizei, const GLvoid *); |
|
5325 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5326 typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); |
|
5327 typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight); |
|
5328 typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLsizei size, GLenum type, GLsizei stride, const GLvoid *pointer); |
|
5329 #endif |
|
5330 |
|
5331 #ifndef GL_NV_light_max_exponent |
|
5332 #define GL_NV_light_max_exponent 1 |
|
5333 #endif |
|
5334 |
|
5335 #ifndef GL_NV_vertex_array_range |
|
5336 #define GL_NV_vertex_array_range 1 |
|
5337 #ifdef GL_GLEXT_PROTOTYPES |
|
5338 GLAPI void APIENTRY glFlushVertexArrayRangeNV (void); |
|
5339 GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei, const GLvoid *); |
|
5340 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5341 typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); |
|
5342 typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const GLvoid *pointer); |
|
5343 #endif |
|
5344 |
|
5345 #ifndef GL_NV_register_combiners |
|
5346 #define GL_NV_register_combiners 1 |
|
5347 #ifdef GL_GLEXT_PROTOTYPES |
|
5348 GLAPI void APIENTRY glCombinerParameterfvNV (GLenum, const GLfloat *); |
|
5349 GLAPI void APIENTRY glCombinerParameterfNV (GLenum, GLfloat); |
|
5350 GLAPI void APIENTRY glCombinerParameterivNV (GLenum, const GLint *); |
|
5351 GLAPI void APIENTRY glCombinerParameteriNV (GLenum, GLint); |
|
5352 GLAPI void APIENTRY glCombinerInputNV (GLenum, GLenum, GLenum, GLenum, GLenum, GLenum); |
|
5353 GLAPI void APIENTRY glCombinerOutputNV (GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean); |
|
5354 GLAPI void APIENTRY glFinalCombinerInputNV (GLenum, GLenum, GLenum, GLenum); |
|
5355 GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum, GLenum, GLenum, GLenum, GLfloat *); |
|
5356 GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum, GLenum, GLenum, GLenum, GLint *); |
|
5357 GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum, GLenum, GLenum, GLfloat *); |
|
5358 GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum, GLenum, GLenum, GLint *); |
|
5359 GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum, GLenum, GLfloat *); |
|
5360 GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum, GLenum, GLint *); |
|
5361 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5362 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params); |
|
5363 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); |
|
5364 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params); |
|
5365 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); |
|
5366 typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); |
|
5367 typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); |
|
5368 typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); |
|
5369 typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); |
|
5370 typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); |
|
5371 typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); |
|
5372 typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params); |
|
5373 typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params); |
|
5374 typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params); |
|
5375 #endif |
|
5376 |
|
5377 #ifndef GL_NV_fog_distance |
|
5378 #define GL_NV_fog_distance 1 |
|
5379 #endif |
|
5380 |
|
5381 #ifndef GL_NV_texgen_emboss |
|
5382 #define GL_NV_texgen_emboss 1 |
|
5383 #endif |
|
5384 |
|
5385 #ifndef GL_NV_blend_square |
|
5386 #define GL_NV_blend_square 1 |
|
5387 #endif |
|
5388 |
|
5389 #ifndef GL_NV_texture_env_combine4 |
|
5390 #define GL_NV_texture_env_combine4 1 |
|
5391 #endif |
|
5392 |
|
5393 #ifndef GL_MESA_resize_buffers |
|
5394 #define GL_MESA_resize_buffers 1 |
|
5395 #ifdef GL_GLEXT_PROTOTYPES |
|
5396 GLAPI void APIENTRY glResizeBuffersMESA (void); |
|
5397 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5398 typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); |
|
5399 #endif |
|
5400 |
|
5401 #ifndef GL_MESA_window_pos |
|
5402 #define GL_MESA_window_pos 1 |
|
5403 #ifdef GL_GLEXT_PROTOTYPES |
|
5404 GLAPI void APIENTRY glWindowPos2dMESA (GLdouble, GLdouble); |
|
5405 GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *); |
|
5406 GLAPI void APIENTRY glWindowPos2fMESA (GLfloat, GLfloat); |
|
5407 GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *); |
|
5408 GLAPI void APIENTRY glWindowPos2iMESA (GLint, GLint); |
|
5409 GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *); |
|
5410 GLAPI void APIENTRY glWindowPos2sMESA (GLshort, GLshort); |
|
5411 GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *); |
|
5412 GLAPI void APIENTRY glWindowPos3dMESA (GLdouble, GLdouble, GLdouble); |
|
5413 GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *); |
|
5414 GLAPI void APIENTRY glWindowPos3fMESA (GLfloat, GLfloat, GLfloat); |
|
5415 GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *); |
|
5416 GLAPI void APIENTRY glWindowPos3iMESA (GLint, GLint, GLint); |
|
5417 GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *); |
|
5418 GLAPI void APIENTRY glWindowPos3sMESA (GLshort, GLshort, GLshort); |
|
5419 GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *); |
|
5420 GLAPI void APIENTRY glWindowPos4dMESA (GLdouble, GLdouble, GLdouble, GLdouble); |
|
5421 GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *); |
|
5422 GLAPI void APIENTRY glWindowPos4fMESA (GLfloat, GLfloat, GLfloat, GLfloat); |
|
5423 GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *); |
|
5424 GLAPI void APIENTRY glWindowPos4iMESA (GLint, GLint, GLint, GLint); |
|
5425 GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *); |
|
5426 GLAPI void APIENTRY glWindowPos4sMESA (GLshort, GLshort, GLshort, GLshort); |
|
5427 GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *); |
|
5428 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5429 typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); |
|
5430 typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v); |
|
5431 typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); |
|
5432 typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v); |
|
5433 typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); |
|
5434 typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v); |
|
5435 typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); |
|
5436 typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v); |
|
5437 typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); |
|
5438 typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v); |
|
5439 typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); |
|
5440 typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v); |
|
5441 typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); |
|
5442 typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v); |
|
5443 typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); |
|
5444 typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v); |
|
5445 typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
5446 typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v); |
|
5447 typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
5448 typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v); |
|
5449 typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); |
|
5450 typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v); |
|
5451 typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); |
|
5452 typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v); |
|
5453 #endif |
|
5454 |
|
5455 #ifndef GL_IBM_cull_vertex |
|
5456 #define GL_IBM_cull_vertex 1 |
|
5457 #endif |
|
5458 |
|
5459 #ifndef GL_IBM_multimode_draw_arrays |
|
5460 #define GL_IBM_multimode_draw_arrays 1 |
|
5461 #ifdef GL_GLEXT_PROTOTYPES |
|
5462 GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint); |
|
5463 GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *, const GLsizei *, GLenum, const GLvoid* const *, GLsizei, GLint); |
|
5464 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5465 typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); |
|
5466 typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei primcount, GLint modestride); |
|
5467 #endif |
|
5468 |
|
5469 #ifndef GL_IBM_vertex_array_lists |
|
5470 #define GL_IBM_vertex_array_lists 1 |
|
5471 #ifdef GL_GLEXT_PROTOTYPES |
|
5472 GLAPI void APIENTRY glColorPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint); |
|
5473 GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint); |
|
5474 GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint, const GLboolean* *, GLint); |
|
5475 GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum, GLint, const GLvoid* *, GLint); |
|
5476 GLAPI void APIENTRY glIndexPointerListIBM (GLenum, GLint, const GLvoid* *, GLint); |
|
5477 GLAPI void APIENTRY glNormalPointerListIBM (GLenum, GLint, const GLvoid* *, GLint); |
|
5478 GLAPI void APIENTRY glTexCoordPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint); |
|
5479 GLAPI void APIENTRY glVertexPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint); |
|
5480 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5481 typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5482 typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5483 typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean* *pointer, GLint ptrstride); |
|
5484 typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5485 typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5486 typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5487 typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5488 typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride); |
|
5489 #endif |
|
5490 |
|
5491 #ifndef GL_SGIX_subsample |
|
5492 #define GL_SGIX_subsample 1 |
|
5493 #endif |
|
5494 |
|
5495 #ifndef GL_SGIX_ycrcba |
|
5496 #define GL_SGIX_ycrcba 1 |
|
5497 #endif |
|
5498 |
|
5499 #ifndef GL_SGIX_ycrcb_subsample |
|
5500 #define GL_SGIX_ycrcb_subsample 1 |
|
5501 #endif |
|
5502 |
|
5503 #ifndef GL_SGIX_depth_pass_instrument |
|
5504 #define GL_SGIX_depth_pass_instrument 1 |
|
5505 #endif |
|
5506 |
|
5507 #ifndef GL_3DFX_texture_compression_FXT1 |
|
5508 #define GL_3DFX_texture_compression_FXT1 1 |
|
5509 #endif |
|
5510 |
|
5511 #ifndef GL_3DFX_multisample |
|
5512 #define GL_3DFX_multisample 1 |
|
5513 #endif |
|
5514 |
|
5515 #ifndef GL_3DFX_tbuffer |
|
5516 #define GL_3DFX_tbuffer 1 |
|
5517 #ifdef GL_GLEXT_PROTOTYPES |
|
5518 GLAPI void APIENTRY glTbufferMask3DFX (GLuint); |
|
5519 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5520 typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); |
|
5521 #endif |
|
5522 |
|
5523 #ifndef GL_EXT_multisample |
|
5524 #define GL_EXT_multisample 1 |
|
5525 #ifdef GL_GLEXT_PROTOTYPES |
|
5526 GLAPI void APIENTRY glSampleMaskEXT (GLclampf, GLboolean); |
|
5527 GLAPI void APIENTRY glSamplePatternEXT (GLenum); |
|
5528 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5529 typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); |
|
5530 typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); |
|
5531 #endif |
|
5532 |
|
5533 #ifndef GL_SGIX_vertex_preclip |
|
5534 #define GL_SGIX_vertex_preclip 1 |
|
5535 #endif |
|
5536 |
|
5537 #ifndef GL_SGIX_convolution_accuracy |
|
5538 #define GL_SGIX_convolution_accuracy 1 |
|
5539 #endif |
|
5540 |
|
5541 #ifndef GL_SGIX_resample |
|
5542 #define GL_SGIX_resample 1 |
|
5543 #endif |
|
5544 |
|
5545 #ifndef GL_SGIS_point_line_texgen |
|
5546 #define GL_SGIS_point_line_texgen 1 |
|
5547 #endif |
|
5548 |
|
5549 #ifndef GL_SGIS_texture_color_mask |
|
5550 #define GL_SGIS_texture_color_mask 1 |
|
5551 #ifdef GL_GLEXT_PROTOTYPES |
|
5552 GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean, GLboolean, GLboolean, GLboolean); |
|
5553 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5554 typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); |
|
5555 #endif |
|
5556 |
|
5557 #ifndef GL_SGIX_igloo_interface |
|
5558 #define GL_SGIX_igloo_interface 1 |
|
5559 #ifdef GL_GLEXT_PROTOTYPES |
|
5560 GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum, const GLvoid *); |
|
5561 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5562 typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const GLvoid *params); |
|
5563 #endif |
|
5564 |
|
5565 #ifndef GL_EXT_texture_env_dot3 |
|
5566 #define GL_EXT_texture_env_dot3 1 |
|
5567 #endif |
|
5568 |
|
5569 #ifndef GL_ATI_texture_mirror_once |
|
5570 #define GL_ATI_texture_mirror_once 1 |
|
5571 #endif |
|
5572 |
|
5573 #ifndef GL_NV_fence |
|
5574 #define GL_NV_fence 1 |
|
5575 #ifdef GL_GLEXT_PROTOTYPES |
|
5576 GLAPI void APIENTRY glDeleteFencesNV (GLsizei, const GLuint *); |
|
5577 GLAPI void APIENTRY glGenFencesNV (GLsizei, GLuint *); |
|
5578 GLAPI GLboolean APIENTRY glIsFenceNV (GLuint); |
|
5579 GLAPI GLboolean APIENTRY glTestFenceNV (GLuint); |
|
5580 GLAPI void APIENTRY glGetFenceivNV (GLuint, GLenum, GLint *); |
|
5581 GLAPI void APIENTRY glFinishFenceNV (GLuint); |
|
5582 GLAPI void APIENTRY glSetFenceNV (GLuint, GLenum); |
|
5583 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5584 typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); |
|
5585 typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); |
|
5586 typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); |
|
5587 typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); |
|
5588 typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); |
|
5589 typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); |
|
5590 typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); |
|
5591 #endif |
|
5592 |
|
5593 #ifndef GL_NV_evaluators |
|
5594 #define GL_NV_evaluators 1 |
|
5595 #ifdef GL_GLEXT_PROTOTYPES |
|
5596 GLAPI void APIENTRY glMapControlPointsNV (GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *); |
|
5597 GLAPI void APIENTRY glMapParameterivNV (GLenum, GLenum, const GLint *); |
|
5598 GLAPI void APIENTRY glMapParameterfvNV (GLenum, GLenum, const GLfloat *); |
|
5599 GLAPI void APIENTRY glGetMapControlPointsNV (GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *); |
|
5600 GLAPI void APIENTRY glGetMapParameterivNV (GLenum, GLenum, GLint *); |
|
5601 GLAPI void APIENTRY glGetMapParameterfvNV (GLenum, GLenum, GLfloat *); |
|
5602 GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum, GLuint, GLenum, GLint *); |
|
5603 GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum, GLuint, GLenum, GLfloat *); |
|
5604 GLAPI void APIENTRY glEvalMapsNV (GLenum, GLenum); |
|
5605 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5606 typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const GLvoid *points); |
|
5607 typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params); |
|
5608 typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params); |
|
5609 typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, GLvoid *points); |
|
5610 typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params); |
|
5611 typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params); |
|
5612 typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); |
|
5613 typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); |
|
5614 typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); |
|
5615 #endif |
|
5616 |
|
5617 #ifndef GL_NV_packed_depth_stencil |
|
5618 #define GL_NV_packed_depth_stencil 1 |
|
5619 #endif |
|
5620 |
|
5621 #ifndef GL_NV_register_combiners2 |
|
5622 #define GL_NV_register_combiners2 1 |
|
5623 #ifdef GL_GLEXT_PROTOTYPES |
|
5624 GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum, GLenum, const GLfloat *); |
|
5625 GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum, GLenum, GLfloat *); |
|
5626 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5627 typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params); |
|
5628 typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params); |
|
5629 #endif |
|
5630 |
|
5631 #ifndef GL_NV_texture_compression_vtc |
|
5632 #define GL_NV_texture_compression_vtc 1 |
|
5633 #endif |
|
5634 |
|
5635 #ifndef GL_NV_texture_rectangle |
|
5636 #define GL_NV_texture_rectangle 1 |
|
5637 #endif |
|
5638 |
|
5639 #ifndef GL_NV_texture_shader |
|
5640 #define GL_NV_texture_shader 1 |
|
5641 #endif |
|
5642 |
|
5643 #ifndef GL_NV_texture_shader2 |
|
5644 #define GL_NV_texture_shader2 1 |
|
5645 #endif |
|
5646 |
|
5647 #ifndef GL_NV_vertex_array_range2 |
|
5648 #define GL_NV_vertex_array_range2 1 |
|
5649 #endif |
|
5650 |
|
5651 #ifndef GL_NV_vertex_program |
|
5652 #define GL_NV_vertex_program 1 |
|
5653 #ifdef GL_GLEXT_PROTOTYPES |
|
5654 GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei, const GLuint *, GLboolean *); |
|
5655 GLAPI void APIENTRY glBindProgramNV (GLenum, GLuint); |
|
5656 GLAPI void APIENTRY glDeleteProgramsNV (GLsizei, const GLuint *); |
|
5657 GLAPI void APIENTRY glExecuteProgramNV (GLenum, GLuint, const GLfloat *); |
|
5658 GLAPI void APIENTRY glGenProgramsNV (GLsizei, GLuint *); |
|
5659 GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum, GLuint, GLenum, GLdouble *); |
|
5660 GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum, GLuint, GLenum, GLfloat *); |
|
5661 GLAPI void APIENTRY glGetProgramivNV (GLuint, GLenum, GLint *); |
|
5662 GLAPI void APIENTRY glGetProgramStringNV (GLuint, GLenum, GLubyte *); |
|
5663 GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum, GLuint, GLenum, GLint *); |
|
5664 GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint, GLenum, GLdouble *); |
|
5665 GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint, GLenum, GLfloat *); |
|
5666 GLAPI void APIENTRY glGetVertexAttribivNV (GLuint, GLenum, GLint *); |
|
5667 GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint, GLenum, GLvoid* *); |
|
5668 GLAPI GLboolean APIENTRY glIsProgramNV (GLuint); |
|
5669 GLAPI void APIENTRY glLoadProgramNV (GLenum, GLuint, GLsizei, const GLubyte *); |
|
5670 GLAPI void APIENTRY glProgramParameter4dNV (GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble); |
|
5671 GLAPI void APIENTRY glProgramParameter4dvNV (GLenum, GLuint, const GLdouble *); |
|
5672 GLAPI void APIENTRY glProgramParameter4fNV (GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5673 GLAPI void APIENTRY glProgramParameter4fvNV (GLenum, GLuint, const GLfloat *); |
|
5674 GLAPI void APIENTRY glProgramParameters4dvNV (GLenum, GLuint, GLuint, const GLdouble *); |
|
5675 GLAPI void APIENTRY glProgramParameters4fvNV (GLenum, GLuint, GLuint, const GLfloat *); |
|
5676 GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei, const GLuint *); |
|
5677 GLAPI void APIENTRY glTrackMatrixNV (GLenum, GLuint, GLenum, GLenum); |
|
5678 GLAPI void APIENTRY glVertexAttribPointerNV (GLuint, GLint, GLenum, GLsizei, const GLvoid *); |
|
5679 GLAPI void APIENTRY glVertexAttrib1dNV (GLuint, GLdouble); |
|
5680 GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint, const GLdouble *); |
|
5681 GLAPI void APIENTRY glVertexAttrib1fNV (GLuint, GLfloat); |
|
5682 GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint, const GLfloat *); |
|
5683 GLAPI void APIENTRY glVertexAttrib1sNV (GLuint, GLshort); |
|
5684 GLAPI void APIENTRY glVertexAttrib1svNV (GLuint, const GLshort *); |
|
5685 GLAPI void APIENTRY glVertexAttrib2dNV (GLuint, GLdouble, GLdouble); |
|
5686 GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint, const GLdouble *); |
|
5687 GLAPI void APIENTRY glVertexAttrib2fNV (GLuint, GLfloat, GLfloat); |
|
5688 GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint, const GLfloat *); |
|
5689 GLAPI void APIENTRY glVertexAttrib2sNV (GLuint, GLshort, GLshort); |
|
5690 GLAPI void APIENTRY glVertexAttrib2svNV (GLuint, const GLshort *); |
|
5691 GLAPI void APIENTRY glVertexAttrib3dNV (GLuint, GLdouble, GLdouble, GLdouble); |
|
5692 GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint, const GLdouble *); |
|
5693 GLAPI void APIENTRY glVertexAttrib3fNV (GLuint, GLfloat, GLfloat, GLfloat); |
|
5694 GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint, const GLfloat *); |
|
5695 GLAPI void APIENTRY glVertexAttrib3sNV (GLuint, GLshort, GLshort, GLshort); |
|
5696 GLAPI void APIENTRY glVertexAttrib3svNV (GLuint, const GLshort *); |
|
5697 GLAPI void APIENTRY glVertexAttrib4dNV (GLuint, GLdouble, GLdouble, GLdouble, GLdouble); |
|
5698 GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint, const GLdouble *); |
|
5699 GLAPI void APIENTRY glVertexAttrib4fNV (GLuint, GLfloat, GLfloat, GLfloat, GLfloat); |
|
5700 GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint, const GLfloat *); |
|
5701 GLAPI void APIENTRY glVertexAttrib4sNV (GLuint, GLshort, GLshort, GLshort, GLshort); |
|
5702 GLAPI void APIENTRY glVertexAttrib4svNV (GLuint, const GLshort *); |
|
5703 GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint, GLubyte, GLubyte, GLubyte, GLubyte); |
|
5704 GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint, const GLubyte *); |
|
5705 GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint, GLsizei, const GLdouble *); |
|
5706 GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint, GLsizei, const GLfloat *); |
|
5707 GLAPI void APIENTRY glVertexAttribs1svNV (GLuint, GLsizei, const GLshort *); |
|
5708 GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint, GLsizei, const GLdouble *); |
|
5709 GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint, GLsizei, const GLfloat *); |
|
5710 GLAPI void APIENTRY glVertexAttribs2svNV (GLuint, GLsizei, const GLshort *); |
|
5711 GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint, GLsizei, const GLdouble *); |
|
5712 GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint, GLsizei, const GLfloat *); |
|
5713 GLAPI void APIENTRY glVertexAttribs3svNV (GLuint, GLsizei, const GLshort *); |
|
5714 GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint, GLsizei, const GLdouble *); |
|
5715 GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint, GLsizei, const GLfloat *); |
|
5716 GLAPI void APIENTRY glVertexAttribs4svNV (GLuint, GLsizei, const GLshort *); |
|
5717 GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint, GLsizei, const GLubyte *); |
|
5718 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5719 typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences); |
|
5720 typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); |
|
5721 typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); |
|
5722 typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params); |
|
5723 typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs); |
|
5724 typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params); |
|
5725 typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); |
|
5726 typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params); |
|
5727 typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program); |
|
5728 typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params); |
|
5729 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params); |
|
5730 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params); |
|
5731 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params); |
|
5732 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, GLvoid* *pointer); |
|
5733 typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id); |
|
5734 typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program); |
|
5735 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
5736 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v); |
|
5737 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
5738 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v); |
|
5739 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLuint count, const GLdouble *v); |
|
5740 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLuint count, const GLfloat *v); |
|
5741 typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); |
|
5742 typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); |
|
5743 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer); |
|
5744 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); |
|
5745 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v); |
|
5746 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); |
|
5747 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v); |
|
5748 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); |
|
5749 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v); |
|
5750 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); |
|
5751 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v); |
|
5752 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); |
|
5753 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v); |
|
5754 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); |
|
5755 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v); |
|
5756 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); |
|
5757 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v); |
|
5758 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); |
|
5759 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v); |
|
5760 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); |
|
5761 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v); |
|
5762 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
5763 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v); |
|
5764 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
5765 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v); |
|
5766 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); |
|
5767 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v); |
|
5768 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); |
|
5769 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v); |
|
5770 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); |
|
5771 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); |
|
5772 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); |
|
5773 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); |
|
5774 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); |
|
5775 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); |
|
5776 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); |
|
5777 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); |
|
5778 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); |
|
5779 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); |
|
5780 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); |
|
5781 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); |
|
5782 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v); |
|
5783 #endif |
|
5784 |
|
5785 #ifndef GL_SGIX_texture_coordinate_clamp |
|
5786 #define GL_SGIX_texture_coordinate_clamp 1 |
|
5787 #endif |
|
5788 |
|
5789 #ifndef GL_SGIX_scalebias_hint |
|
5790 #define GL_SGIX_scalebias_hint 1 |
|
5791 #endif |
|
5792 |
|
5793 #ifndef GL_OML_interlace |
|
5794 #define GL_OML_interlace 1 |
|
5795 #endif |
|
5796 |
|
5797 #ifndef GL_OML_subsample |
|
5798 #define GL_OML_subsample 1 |
|
5799 #endif |
|
5800 |
|
5801 #ifndef GL_OML_resample |
|
5802 #define GL_OML_resample 1 |
|
5803 #endif |
|
5804 |
|
5805 #ifndef GL_NV_copy_depth_to_color |
|
5806 #define GL_NV_copy_depth_to_color 1 |
|
5807 #endif |
|
5808 |
|
5809 #ifndef GL_ATI_envmap_bumpmap |
|
5810 #define GL_ATI_envmap_bumpmap 1 |
|
5811 #ifdef GL_GLEXT_PROTOTYPES |
|
5812 GLAPI void APIENTRY glTexBumpParameterivATI (GLenum, const GLint *); |
|
5813 GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum, const GLfloat *); |
|
5814 GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum, GLint *); |
|
5815 GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum, GLfloat *); |
|
5816 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5817 typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param); |
|
5818 typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param); |
|
5819 typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); |
|
5820 typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); |
|
5821 #endif |
|
5822 |
|
5823 #ifndef GL_ATI_fragment_shader |
|
5824 #define GL_ATI_fragment_shader 1 |
|
5825 #ifdef GL_GLEXT_PROTOTYPES |
|
5826 GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint); |
|
5827 GLAPI void APIENTRY glBindFragmentShaderATI (GLuint); |
|
5828 GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint); |
|
5829 GLAPI void APIENTRY glBeginFragmentShaderATI (void); |
|
5830 GLAPI void APIENTRY glEndFragmentShaderATI (void); |
|
5831 GLAPI void APIENTRY glPassTexCoordATI (GLuint, GLuint, GLenum); |
|
5832 GLAPI void APIENTRY glSampleMapATI (GLuint, GLuint, GLenum); |
|
5833 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); |
|
5834 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); |
|
5835 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); |
|
5836 GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint); |
|
5837 GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); |
|
5838 GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); |
|
5839 GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint, const GLfloat *); |
|
5840 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5841 typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); |
|
5842 typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); |
|
5843 typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); |
|
5844 typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void); |
|
5845 typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void); |
|
5846 typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); |
|
5847 typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); |
|
5848 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); |
|
5849 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); |
|
5850 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); |
|
5851 typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); |
|
5852 typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); |
|
5853 typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); |
|
5854 typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value); |
|
5855 #endif |
|
5856 |
|
5857 #ifndef GL_ATI_pn_triangles |
|
5858 #define GL_ATI_pn_triangles 1 |
|
5859 #ifdef GL_GLEXT_PROTOTYPES |
|
5860 GLAPI void APIENTRY glPNTrianglesiATI (GLenum, GLint); |
|
5861 GLAPI void APIENTRY glPNTrianglesfATI (GLenum, GLfloat); |
|
5862 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5863 typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); |
|
5864 typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); |
|
5865 #endif |
|
5866 |
|
5867 #ifndef GL_ATI_vertex_array_object |
|
5868 #define GL_ATI_vertex_array_object 1 |
|
5869 #ifdef GL_GLEXT_PROTOTYPES |
|
5870 GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei, const GLvoid *, GLenum); |
|
5871 GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint); |
|
5872 GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint, GLuint, GLsizei, const GLvoid *, GLenum); |
|
5873 GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint, GLenum, GLfloat *); |
|
5874 GLAPI void APIENTRY glGetObjectBufferivATI (GLuint, GLenum, GLint *); |
|
5875 GLAPI void APIENTRY glFreeObjectBufferATI (GLuint); |
|
5876 GLAPI void APIENTRY glArrayObjectATI (GLenum, GLint, GLenum, GLsizei, GLuint, GLuint); |
|
5877 GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum, GLenum, GLfloat *); |
|
5878 GLAPI void APIENTRY glGetArrayObjectivATI (GLenum, GLenum, GLint *); |
|
5879 GLAPI void APIENTRY glVariantArrayObjectATI (GLuint, GLenum, GLsizei, GLuint, GLuint); |
|
5880 GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint, GLenum, GLfloat *); |
|
5881 GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint, GLenum, GLint *); |
|
5882 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5883 typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const GLvoid *pointer, GLenum usage); |
|
5884 typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); |
|
5885 typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve); |
|
5886 typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params); |
|
5887 typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params); |
|
5888 typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); |
|
5889 typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); |
|
5890 typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params); |
|
5891 typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params); |
|
5892 typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); |
|
5893 typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params); |
|
5894 typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params); |
|
5895 #endif |
|
5896 |
|
5897 #ifndef GL_EXT_vertex_shader |
|
5898 #define GL_EXT_vertex_shader 1 |
|
5899 #ifdef GL_GLEXT_PROTOTYPES |
|
5900 GLAPI void APIENTRY glBeginVertexShaderEXT (void); |
|
5901 GLAPI void APIENTRY glEndVertexShaderEXT (void); |
|
5902 GLAPI void APIENTRY glBindVertexShaderEXT (GLuint); |
|
5903 GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint); |
|
5904 GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint); |
|
5905 GLAPI void APIENTRY glShaderOp1EXT (GLenum, GLuint, GLuint); |
|
5906 GLAPI void APIENTRY glShaderOp2EXT (GLenum, GLuint, GLuint, GLuint); |
|
5907 GLAPI void APIENTRY glShaderOp3EXT (GLenum, GLuint, GLuint, GLuint, GLuint); |
|
5908 GLAPI void APIENTRY glSwizzleEXT (GLuint, GLuint, GLenum, GLenum, GLenum, GLenum); |
|
5909 GLAPI void APIENTRY glWriteMaskEXT (GLuint, GLuint, GLenum, GLenum, GLenum, GLenum); |
|
5910 GLAPI void APIENTRY glInsertComponentEXT (GLuint, GLuint, GLuint); |
|
5911 GLAPI void APIENTRY glExtractComponentEXT (GLuint, GLuint, GLuint); |
|
5912 GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum, GLenum, GLenum, GLuint); |
|
5913 GLAPI void APIENTRY glSetInvariantEXT (GLuint, GLenum, const GLvoid *); |
|
5914 GLAPI void APIENTRY glSetLocalConstantEXT (GLuint, GLenum, const GLvoid *); |
|
5915 GLAPI void APIENTRY glVariantbvEXT (GLuint, const GLbyte *); |
|
5916 GLAPI void APIENTRY glVariantsvEXT (GLuint, const GLshort *); |
|
5917 GLAPI void APIENTRY glVariantivEXT (GLuint, const GLint *); |
|
5918 GLAPI void APIENTRY glVariantfvEXT (GLuint, const GLfloat *); |
|
5919 GLAPI void APIENTRY glVariantdvEXT (GLuint, const GLdouble *); |
|
5920 GLAPI void APIENTRY glVariantubvEXT (GLuint, const GLubyte *); |
|
5921 GLAPI void APIENTRY glVariantusvEXT (GLuint, const GLushort *); |
|
5922 GLAPI void APIENTRY glVariantuivEXT (GLuint, const GLuint *); |
|
5923 GLAPI void APIENTRY glVariantPointerEXT (GLuint, GLenum, GLuint, const GLvoid *); |
|
5924 GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint); |
|
5925 GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint); |
|
5926 GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum, GLenum); |
|
5927 GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum, GLenum); |
|
5928 GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum, GLenum, GLenum); |
|
5929 GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum, GLenum); |
|
5930 GLAPI GLuint APIENTRY glBindParameterEXT (GLenum); |
|
5931 GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint, GLenum); |
|
5932 GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint, GLenum, GLboolean *); |
|
5933 GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint, GLenum, GLint *); |
|
5934 GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint, GLenum, GLfloat *); |
|
5935 GLAPI void APIENTRY glGetVariantPointervEXT (GLuint, GLenum, GLvoid* *); |
|
5936 GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint, GLenum, GLboolean *); |
|
5937 GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint, GLenum, GLint *); |
|
5938 GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint, GLenum, GLfloat *); |
|
5939 GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint, GLenum, GLboolean *); |
|
5940 GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint, GLenum, GLint *); |
|
5941 GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint, GLenum, GLfloat *); |
|
5942 #endif /* GL_GLEXT_PROTOTYPES */ |
|
5943 typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void); |
|
5944 typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void); |
|
5945 typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); |
|
5946 typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); |
|
5947 typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); |
|
5948 typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); |
|
5949 typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); |
|
5950 typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); |
|
5951 typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); |
|
5952 typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); |
|
5953 typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); |
|
5954 typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); |
|
5955 typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); |
|
5956 typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const GLvoid *addr); |
|
5957 typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const GLvoid *addr); |
|
5958 typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr); |
|
5959 typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr); |
|
5960 typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr); |
|
5961 typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr); |
|
5962 typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr); |
|
5963 typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr); |
|
5964 typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr); |
|
5965 typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr); |
|
5966 typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const GLvoid *addr); |
|
5967 typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); |
|
5968 typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); |
|
5969 typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); |
|
5970 typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); |
|
5971 typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); |
|
5972 typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); |
|
5973 typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value); |
|
5974 typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); |
|
5975 typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); |
|
5976 typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); |
|
5977 typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); |
|
5978 typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, GLvoid* *data); |
|
5979 typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); |
|
5980 typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); |
|
5981 typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); |
|
5982 typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); |
|
5983 typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); |
|
5984 typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); |
|
5985 #endif |
|
5986 |
|
5987 #ifndef GL_ATI_vertex_streams |
|
5988 #define GL_ATI_vertex_streams 1 |
|
5989 #ifdef GL_GLEXT_PROTOTYPES |
|
5990 GLAPI void APIENTRY glVertexStream1sATI (GLenum, GLshort); |
|
5991 GLAPI void APIENTRY glVertexStream1svATI (GLenum, const GLshort *); |
|
5992 GLAPI void APIENTRY glVertexStream1iATI (GLenum, GLint); |
|
5993 GLAPI void APIENTRY glVertexStream1ivATI (GLenum, const GLint *); |
|
5994 GLAPI void APIENTRY glVertexStream1fATI (GLenum, GLfloat); |
|
5995 GLAPI void APIENTRY glVertexStream1fvATI (GLenum, const GLfloat *); |
|
5996 GLAPI void APIENTRY glVertexStream1dATI (GLenum, GLdouble); |
|
5997 GLAPI void APIENTRY glVertexStream1dvATI (GLenum, const GLdouble *); |
|
5998 GLAPI void APIENTRY glVertexStream2sATI (GLenum, GLshort, GLshort); |
|
5999 GLAPI void APIENTRY glVertexStream2svATI (GLenum, const GLshort *); |
|
6000 GLAPI void APIENTRY glVertexStream2iATI (GLenum, GLint, GLint); |
|
6001 GLAPI void APIENTRY glVertexStream2ivATI (GLenum, const GLint *); |
|
6002 GLAPI void APIENTRY glVertexStream2fATI (GLenum, GLfloat, GLfloat); |
|
6003 GLAPI void APIENTRY glVertexStream2fvATI (GLenum, const GLfloat *); |
|
6004 GLAPI void APIENTRY glVertexStream2dATI (GLenum, GLdouble, GLdouble); |
|
6005 GLAPI void APIENTRY glVertexStream2dvATI (GLenum, const GLdouble *); |
|
6006 GLAPI void APIENTRY glVertexStream3sATI (GLenum, GLshort, GLshort, GLshort); |
|
6007 GLAPI void APIENTRY glVertexStream3svATI (GLenum, const GLshort *); |
|
6008 GLAPI void APIENTRY glVertexStream3iATI (GLenum, GLint, GLint, GLint); |
|
6009 GLAPI void APIENTRY glVertexStream3ivATI (GLenum, const GLint *); |
|
6010 GLAPI void APIENTRY glVertexStream3fATI (GLenum, GLfloat, GLfloat, GLfloat); |
|
6011 GLAPI void APIENTRY glVertexStream3fvATI (GLenum, const GLfloat *); |
|
6012 GLAPI void APIENTRY glVertexStream3dATI (GLenum, GLdouble, GLdouble, GLdouble); |
|
6013 GLAPI void APIENTRY glVertexStream3dvATI (GLenum, const GLdouble *); |
|
6014 GLAPI void APIENTRY glVertexStream4sATI (GLenum, GLshort, GLshort, GLshort, GLshort); |
|
6015 GLAPI void APIENTRY glVertexStream4svATI (GLenum, const GLshort *); |
|
6016 GLAPI void APIENTRY glVertexStream4iATI (GLenum, GLint, GLint, GLint, GLint); |
|
6017 GLAPI void APIENTRY glVertexStream4ivATI (GLenum, const GLint *); |
|
6018 GLAPI void APIENTRY glVertexStream4fATI (GLenum, GLfloat, GLfloat, GLfloat, GLfloat); |
|
6019 GLAPI void APIENTRY glVertexStream4fvATI (GLenum, const GLfloat *); |
|
6020 GLAPI void APIENTRY glVertexStream4dATI (GLenum, GLdouble, GLdouble, GLdouble, GLdouble); |
|
6021 GLAPI void APIENTRY glVertexStream4dvATI (GLenum, const GLdouble *); |
|
6022 GLAPI void APIENTRY glNormalStream3bATI (GLenum, GLbyte, GLbyte, GLbyte); |
|
6023 GLAPI void APIENTRY glNormalStream3bvATI (GLenum, const GLbyte *); |
|
6024 GLAPI void APIENTRY glNormalStream3sATI (GLenum, GLshort, GLshort, GLshort); |
|
6025 GLAPI void APIENTRY glNormalStream3svATI (GLenum, const GLshort *); |
|
6026 GLAPI void APIENTRY glNormalStream3iATI (GLenum, GLint, GLint, GLint); |
|
6027 GLAPI void APIENTRY glNormalStream3ivATI (GLenum, const GLint *); |
|
6028 GLAPI void APIENTRY glNormalStream3fATI (GLenum, GLfloat, GLfloat, GLfloat); |
|
6029 GLAPI void APIENTRY glNormalStream3fvATI (GLenum, const GLfloat *); |
|
6030 GLAPI void APIENTRY glNormalStream3dATI (GLenum, GLdouble, GLdouble, GLdouble); |
|
6031 GLAPI void APIENTRY glNormalStream3dvATI (GLenum, const GLdouble *); |
|
6032 GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum); |
|
6033 GLAPI void APIENTRY glVertexBlendEnviATI (GLenum, GLint); |
|
6034 GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum, GLfloat); |
|
6035 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6036 typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); |
|
6037 typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); |
|
6038 typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); |
|
6039 typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); |
|
6040 typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); |
|
6041 typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); |
|
6042 typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); |
|
6043 typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); |
|
6044 typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); |
|
6045 typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); |
|
6046 typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); |
|
6047 typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); |
|
6048 typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); |
|
6049 typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); |
|
6050 typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); |
|
6051 typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); |
|
6052 typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); |
|
6053 typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); |
|
6054 typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); |
|
6055 typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); |
|
6056 typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); |
|
6057 typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); |
|
6058 typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); |
|
6059 typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); |
|
6060 typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); |
|
6061 typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); |
|
6062 typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); |
|
6063 typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); |
|
6064 typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
6065 typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); |
|
6066 typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
6067 typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); |
|
6068 typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); |
|
6069 typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); |
|
6070 typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz); |
|
6071 typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); |
|
6072 typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz); |
|
6073 typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); |
|
6074 typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); |
|
6075 typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); |
|
6076 typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); |
|
6077 typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); |
|
6078 typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); |
|
6079 typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); |
|
6080 typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); |
|
6081 #endif |
|
6082 |
|
6083 #ifndef GL_ATI_element_array |
|
6084 #define GL_ATI_element_array 1 |
|
6085 #ifdef GL_GLEXT_PROTOTYPES |
|
6086 GLAPI void APIENTRY glElementPointerATI (GLenum, const GLvoid *); |
|
6087 GLAPI void APIENTRY glDrawElementArrayATI (GLenum, GLsizei); |
|
6088 GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum, GLuint, GLuint, GLsizei); |
|
6089 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6090 typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const GLvoid *pointer); |
|
6091 typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); |
|
6092 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); |
|
6093 #endif |
|
6094 |
|
6095 #ifndef GL_SUN_mesh_array |
|
6096 #define GL_SUN_mesh_array 1 |
|
6097 #ifdef GL_GLEXT_PROTOTYPES |
|
6098 GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum, GLint, GLsizei, GLsizei); |
|
6099 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6100 typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width); |
|
6101 #endif |
|
6102 |
|
6103 #ifndef GL_SUN_slice_accum |
|
6104 #define GL_SUN_slice_accum 1 |
|
6105 #endif |
|
6106 |
|
6107 #ifndef GL_NV_multisample_filter_hint |
|
6108 #define GL_NV_multisample_filter_hint 1 |
|
6109 #endif |
|
6110 |
|
6111 #ifndef GL_NV_depth_clamp |
|
6112 #define GL_NV_depth_clamp 1 |
|
6113 #endif |
|
6114 |
|
6115 #ifndef GL_NV_occlusion_query |
|
6116 #define GL_NV_occlusion_query 1 |
|
6117 #ifdef GL_GLEXT_PROTOTYPES |
|
6118 GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei, GLuint *); |
|
6119 GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei, const GLuint *); |
|
6120 GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint); |
|
6121 GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint); |
|
6122 GLAPI void APIENTRY glEndOcclusionQueryNV (void); |
|
6123 GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint, GLenum, GLint *); |
|
6124 GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint, GLenum, GLuint *); |
|
6125 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6126 typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids); |
|
6127 typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids); |
|
6128 typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); |
|
6129 typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); |
|
6130 typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void); |
|
6131 typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params); |
|
6132 typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params); |
|
6133 #endif |
|
6134 |
|
6135 #ifndef GL_NV_point_sprite |
|
6136 #define GL_NV_point_sprite 1 |
|
6137 #ifdef GL_GLEXT_PROTOTYPES |
|
6138 GLAPI void APIENTRY glPointParameteriNV (GLenum, GLint); |
|
6139 GLAPI void APIENTRY glPointParameterivNV (GLenum, const GLint *); |
|
6140 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6141 typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); |
|
6142 typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params); |
|
6143 #endif |
|
6144 |
|
6145 #ifndef GL_NV_texture_shader3 |
|
6146 #define GL_NV_texture_shader3 1 |
|
6147 #endif |
|
6148 |
|
6149 #ifndef GL_NV_vertex_program1_1 |
|
6150 #define GL_NV_vertex_program1_1 1 |
|
6151 #endif |
|
6152 |
|
6153 #ifndef GL_EXT_shadow_funcs |
|
6154 #define GL_EXT_shadow_funcs 1 |
|
6155 #endif |
|
6156 |
|
6157 #ifndef GL_EXT_stencil_two_side |
|
6158 #define GL_EXT_stencil_two_side 1 |
|
6159 #ifdef GL_GLEXT_PROTOTYPES |
|
6160 GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum); |
|
6161 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6162 typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); |
|
6163 #endif |
|
6164 |
|
6165 #ifndef GL_ATI_text_fragment_shader |
|
6166 #define GL_ATI_text_fragment_shader 1 |
|
6167 #endif |
|
6168 |
|
6169 #ifndef GL_APPLE_client_storage |
|
6170 #define GL_APPLE_client_storage 1 |
|
6171 #endif |
|
6172 |
|
6173 #ifndef GL_APPLE_element_array |
|
6174 #define GL_APPLE_element_array 1 |
|
6175 #ifdef GL_GLEXT_PROTOTYPES |
|
6176 GLAPI void APIENTRY glElementPointerAPPLE (GLenum, const GLvoid *); |
|
6177 GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum, GLint, GLsizei); |
|
6178 GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum, GLuint, GLuint, GLint, GLsizei); |
|
6179 GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum, const GLint *, const GLsizei *, GLsizei); |
|
6180 GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum, GLuint, GLuint, const GLint *, const GLsizei *, GLsizei); |
|
6181 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6182 typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const GLvoid *pointer); |
|
6183 typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); |
|
6184 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); |
|
6185 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); |
|
6186 typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); |
|
6187 #endif |
|
6188 |
|
6189 #ifndef GL_APPLE_fence |
|
6190 #define GL_APPLE_fence 1 |
|
6191 #ifdef GL_GLEXT_PROTOTYPES |
|
6192 GLAPI void APIENTRY glGenFencesAPPLE (GLsizei, GLuint *); |
|
6193 GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei, const GLuint *); |
|
6194 GLAPI void APIENTRY glSetFenceAPPLE (GLuint); |
|
6195 GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint); |
|
6196 GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint); |
|
6197 GLAPI void APIENTRY glFinishFenceAPPLE (GLuint); |
|
6198 GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum, GLuint); |
|
6199 GLAPI void APIENTRY glFinishObjectAPPLE (GLenum, GLint); |
|
6200 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6201 typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences); |
|
6202 typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences); |
|
6203 typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence); |
|
6204 typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence); |
|
6205 typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence); |
|
6206 typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); |
|
6207 typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); |
|
6208 typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); |
|
6209 #endif |
|
6210 |
|
6211 #ifndef GL_APPLE_vertex_array_object |
|
6212 #define GL_APPLE_vertex_array_object 1 |
|
6213 #ifdef GL_GLEXT_PROTOTYPES |
|
6214 GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint); |
|
6215 GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei, const GLuint *); |
|
6216 GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei, const GLuint *); |
|
6217 GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint); |
|
6218 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6219 typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); |
|
6220 typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); |
|
6221 typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); |
|
6222 typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); |
|
6223 #endif |
|
6224 |
|
6225 #ifndef GL_APPLE_vertex_array_range |
|
6226 #define GL_APPLE_vertex_array_range 1 |
|
6227 #ifdef GL_GLEXT_PROTOTYPES |
|
6228 GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei, GLvoid *); |
|
6229 GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei, GLvoid *); |
|
6230 GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum, GLint); |
|
6231 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6232 typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, GLvoid *pointer); |
|
6233 typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, GLvoid *pointer); |
|
6234 typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); |
|
6235 #endif |
|
6236 |
|
6237 #ifndef GL_APPLE_ycbcr_422 |
|
6238 #define GL_APPLE_ycbcr_422 1 |
|
6239 #endif |
|
6240 |
|
6241 #ifndef GL_S3_s3tc |
|
6242 #define GL_S3_s3tc 1 |
|
6243 #endif |
|
6244 |
|
6245 #ifndef GL_ATI_draw_buffers |
|
6246 #define GL_ATI_draw_buffers 1 |
|
6247 #ifdef GL_GLEXT_PROTOTYPES |
|
6248 GLAPI void APIENTRY glDrawBuffersATI (GLsizei, const GLenum *); |
|
6249 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6250 typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs); |
|
6251 #endif |
|
6252 |
|
6253 #ifndef GL_ATI_pixel_format_float |
|
6254 #define GL_ATI_pixel_format_float 1 |
|
6255 /* This is really a WGL extension, but defines some associated GL enums. |
|
6256 * ATI does not export "GL_ATI_pixel_format_float" in the GL_EXTENSIONS string. |
|
6257 */ |
|
6258 #endif |
|
6259 |
|
6260 #ifndef GL_ATI_texture_env_combine3 |
|
6261 #define GL_ATI_texture_env_combine3 1 |
|
6262 #endif |
|
6263 |
|
6264 #ifndef GL_ATI_texture_float |
|
6265 #define GL_ATI_texture_float 1 |
|
6266 #endif |
|
6267 |
|
6268 #ifndef GL_NV_float_buffer |
|
6269 #define GL_NV_float_buffer 1 |
|
6270 #endif |
|
6271 |
|
6272 #ifndef GL_NV_fragment_program |
|
6273 #define GL_NV_fragment_program 1 |
|
6274 /* Some NV_fragment_program entry points are shared with ARB_vertex_program. */ |
|
6275 #ifdef GL_GLEXT_PROTOTYPES |
|
6276 GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat); |
|
6277 GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble); |
|
6278 GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint, GLsizei, const GLubyte *, const GLfloat *); |
|
6279 GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint, GLsizei, const GLubyte *, const GLdouble *); |
|
6280 GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint, GLsizei, const GLubyte *, GLfloat *); |
|
6281 GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint, GLsizei, const GLubyte *, GLdouble *); |
|
6282 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6283 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); |
|
6284 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |
|
6285 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); |
|
6286 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); |
|
6287 typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); |
|
6288 typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); |
|
6289 #endif |
|
6290 |
|
6291 #ifndef GL_NV_half_float |
|
6292 #define GL_NV_half_float 1 |
|
6293 #ifdef GL_GLEXT_PROTOTYPES |
|
6294 GLAPI void APIENTRY glVertex2hNV (GLhalfNV, GLhalfNV); |
|
6295 GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *); |
|
6296 GLAPI void APIENTRY glVertex3hNV (GLhalfNV, GLhalfNV, GLhalfNV); |
|
6297 GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *); |
|
6298 GLAPI void APIENTRY glVertex4hNV (GLhalfNV, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6299 GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *); |
|
6300 GLAPI void APIENTRY glNormal3hNV (GLhalfNV, GLhalfNV, GLhalfNV); |
|
6301 GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *); |
|
6302 GLAPI void APIENTRY glColor3hNV (GLhalfNV, GLhalfNV, GLhalfNV); |
|
6303 GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *); |
|
6304 GLAPI void APIENTRY glColor4hNV (GLhalfNV, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6305 GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *); |
|
6306 GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV); |
|
6307 GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *); |
|
6308 GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV, GLhalfNV); |
|
6309 GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *); |
|
6310 GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV, GLhalfNV, GLhalfNV); |
|
6311 GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *); |
|
6312 GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6313 GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *); |
|
6314 GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum, GLhalfNV); |
|
6315 GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum, const GLhalfNV *); |
|
6316 GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum, GLhalfNV, GLhalfNV); |
|
6317 GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum, const GLhalfNV *); |
|
6318 GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6319 GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum, const GLhalfNV *); |
|
6320 GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum, GLhalfNV, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6321 GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum, const GLhalfNV *); |
|
6322 GLAPI void APIENTRY glFogCoordhNV (GLhalfNV); |
|
6323 GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *); |
|
6324 GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV, GLhalfNV, GLhalfNV); |
|
6325 GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *); |
|
6326 GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV); |
|
6327 GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *); |
|
6328 GLAPI void APIENTRY glVertexAttrib1hNV (GLuint, GLhalfNV); |
|
6329 GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint, const GLhalfNV *); |
|
6330 GLAPI void APIENTRY glVertexAttrib2hNV (GLuint, GLhalfNV, GLhalfNV); |
|
6331 GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint, const GLhalfNV *); |
|
6332 GLAPI void APIENTRY glVertexAttrib3hNV (GLuint, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6333 GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint, const GLhalfNV *); |
|
6334 GLAPI void APIENTRY glVertexAttrib4hNV (GLuint, GLhalfNV, GLhalfNV, GLhalfNV, GLhalfNV); |
|
6335 GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint, const GLhalfNV *); |
|
6336 GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint, GLsizei, const GLhalfNV *); |
|
6337 GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint, GLsizei, const GLhalfNV *); |
|
6338 GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint, GLsizei, const GLhalfNV *); |
|
6339 GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint, GLsizei, const GLhalfNV *); |
|
6340 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6341 typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y); |
|
6342 typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v); |
|
6343 typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z); |
|
6344 typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v); |
|
6345 typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); |
|
6346 typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v); |
|
6347 typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); |
|
6348 typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v); |
|
6349 typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); |
|
6350 typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v); |
|
6351 typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); |
|
6352 typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v); |
|
6353 typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s); |
|
6354 typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v); |
|
6355 typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t); |
|
6356 typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v); |
|
6357 typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r); |
|
6358 typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v); |
|
6359 typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); |
|
6360 typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v); |
|
6361 typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s); |
|
6362 typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v); |
|
6363 typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t); |
|
6364 typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v); |
|
6365 typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); |
|
6366 typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v); |
|
6367 typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); |
|
6368 typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v); |
|
6369 typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog); |
|
6370 typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog); |
|
6371 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); |
|
6372 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v); |
|
6373 typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight); |
|
6374 typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight); |
|
6375 typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x); |
|
6376 typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v); |
|
6377 typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y); |
|
6378 typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v); |
|
6379 typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); |
|
6380 typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v); |
|
6381 typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); |
|
6382 typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v); |
|
6383 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); |
|
6384 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); |
|
6385 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); |
|
6386 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); |
|
6387 #endif |
|
6388 |
|
6389 #ifndef GL_NV_pixel_data_range |
|
6390 #define GL_NV_pixel_data_range 1 |
|
6391 #ifdef GL_GLEXT_PROTOTYPES |
|
6392 GLAPI void APIENTRY glPixelDataRangeNV (GLenum, GLsizei, GLvoid *); |
|
6393 GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum); |
|
6394 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6395 typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, GLvoid *pointer); |
|
6396 typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); |
|
6397 #endif |
|
6398 |
|
6399 #ifndef GL_NV_primitive_restart |
|
6400 #define GL_NV_primitive_restart 1 |
|
6401 #ifdef GL_GLEXT_PROTOTYPES |
|
6402 GLAPI void APIENTRY glPrimitiveRestartNV (void); |
|
6403 GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint); |
|
6404 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6405 typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void); |
|
6406 typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); |
|
6407 #endif |
|
6408 |
|
6409 #ifndef GL_NV_texture_expand_normal |
|
6410 #define GL_NV_texture_expand_normal 1 |
|
6411 #endif |
|
6412 |
|
6413 #ifndef GL_NV_vertex_program2 |
|
6414 #define GL_NV_vertex_program2 1 |
|
6415 #endif |
|
6416 |
|
6417 #ifndef GL_ATI_map_object_buffer |
|
6418 #define GL_ATI_map_object_buffer 1 |
|
6419 #ifdef GL_GLEXT_PROTOTYPES |
|
6420 GLAPI GLvoid* APIENTRY glMapObjectBufferATI (GLuint); |
|
6421 GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint); |
|
6422 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6423 typedef GLvoid* (APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); |
|
6424 typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); |
|
6425 #endif |
|
6426 |
|
6427 #ifndef GL_ATI_separate_stencil |
|
6428 #define GL_ATI_separate_stencil 1 |
|
6429 #ifdef GL_GLEXT_PROTOTYPES |
|
6430 GLAPI void APIENTRY glStencilOpSeparateATI (GLenum, GLenum, GLenum, GLenum); |
|
6431 GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum, GLenum, GLint, GLuint); |
|
6432 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6433 typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); |
|
6434 typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); |
|
6435 #endif |
|
6436 |
|
6437 #ifndef GL_ATI_vertex_attrib_array_object |
|
6438 #define GL_ATI_vertex_attrib_array_object 1 |
|
6439 #ifdef GL_GLEXT_PROTOTYPES |
|
6440 GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint, GLint, GLenum, GLboolean, GLsizei, GLuint, GLuint); |
|
6441 GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint, GLenum, GLfloat *); |
|
6442 GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint, GLenum, GLint *); |
|
6443 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6444 typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); |
|
6445 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params); |
|
6446 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params); |
|
6447 #endif |
|
6448 |
|
6449 #ifndef GL_OES_read_format |
|
6450 #define GL_OES_read_format 1 |
|
6451 #endif |
|
6452 |
|
6453 #ifndef GL_EXT_depth_bounds_test |
|
6454 #define GL_EXT_depth_bounds_test 1 |
|
6455 #ifdef GL_GLEXT_PROTOTYPES |
|
6456 GLAPI void APIENTRY glDepthBoundsEXT (GLclampd, GLclampd); |
|
6457 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6458 typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); |
|
6459 #endif |
|
6460 |
|
6461 #ifndef GL_EXT_texture_mirror_clamp |
|
6462 #define GL_EXT_texture_mirror_clamp 1 |
|
6463 #endif |
|
6464 |
|
6465 #ifndef GL_EXT_blend_equation_separate |
|
6466 #define GL_EXT_blend_equation_separate 1 |
|
6467 #ifdef GL_GLEXT_PROTOTYPES |
|
6468 GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum, GLenum); |
|
6469 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6470 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); |
|
6471 #endif |
|
6472 |
|
6473 #ifndef GL_MESA_pack_invert |
|
6474 #define GL_MESA_pack_invert 1 |
|
6475 #endif |
|
6476 |
|
6477 #ifndef GL_MESA_ycbcr_texture |
|
6478 #define GL_MESA_ycbcr_texture 1 |
|
6479 #endif |
|
6480 |
|
6481 #ifndef GL_EXT_pixel_buffer_object |
|
6482 #define GL_EXT_pixel_buffer_object 1 |
|
6483 #endif |
|
6484 |
|
6485 #ifndef GL_NV_fragment_program_option |
|
6486 #define GL_NV_fragment_program_option 1 |
|
6487 #endif |
|
6488 |
|
6489 #ifndef GL_NV_fragment_program2 |
|
6490 #define GL_NV_fragment_program2 1 |
|
6491 #endif |
|
6492 |
|
6493 #ifndef GL_NV_vertex_program2_option |
|
6494 #define GL_NV_vertex_program2_option 1 |
|
6495 #endif |
|
6496 |
|
6497 #ifndef GL_NV_vertex_program3 |
|
6498 #define GL_NV_vertex_program3 1 |
|
6499 #endif |
|
6500 |
|
6501 #ifndef GL_EXT_framebuffer_object |
|
6502 #define GL_EXT_framebuffer_object 1 |
|
6503 #ifdef GL_GLEXT_PROTOTYPES |
|
6504 GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint); |
|
6505 GLAPI void APIENTRY glBindRenderbufferEXT (GLenum, GLuint); |
|
6506 GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei, const GLuint *); |
|
6507 GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei, GLuint *); |
|
6508 GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum, GLenum, GLsizei, GLsizei); |
|
6509 GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum, GLenum, GLint *); |
|
6510 GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint); |
|
6511 GLAPI void APIENTRY glBindFramebufferEXT (GLenum, GLuint); |
|
6512 GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei, const GLuint *); |
|
6513 GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei, GLuint *); |
|
6514 GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum); |
|
6515 GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum, GLenum, GLenum, GLuint, GLint); |
|
6516 GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum, GLenum, GLenum, GLuint, GLint); |
|
6517 GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum, GLenum, GLenum, GLuint, GLint, GLint); |
|
6518 GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum, GLenum, GLenum, GLuint); |
|
6519 GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum, GLenum, GLenum, GLint *); |
|
6520 GLAPI void APIENTRY glGenerateMipmapEXT (GLenum); |
|
6521 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6522 typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); |
|
6523 typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); |
|
6524 typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers); |
|
6525 typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers); |
|
6526 typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); |
|
6527 typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); |
|
6528 typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); |
|
6529 typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); |
|
6530 typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers); |
|
6531 typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers); |
|
6532 typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); |
|
6533 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); |
|
6534 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); |
|
6535 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); |
|
6536 typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); |
|
6537 typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); |
|
6538 typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); |
|
6539 #endif |
|
6540 |
|
6541 #ifndef GL_GREMEDY_string_marker |
|
6542 #define GL_GREMEDY_string_marker 1 |
|
6543 #ifdef GL_GLEXT_PROTOTYPES |
|
6544 GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei, const GLvoid *); |
|
6545 #endif /* GL_GLEXT_PROTOTYPES */ |
|
6546 typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const GLvoid *string); |
|
6547 #endif |
|
6548 |
|
6549 |
|
6550 #ifdef __cplusplus |
|
6551 } |
|
6552 #endif |
|
6553 |
|
6554 #endif |
|
6555 #endif /* NO_SDL_GLEXT */ |
|
6556 /*@}*/ |