Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4358 Serge 1
/* DO NOT EDIT - This file generated automatically by gl_x86_asm.py (from Mesa) script */
2
 
3
/*
4
 * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
5
 * (C) Copyright IBM Corporation 2004, 2005
6
 * All Rights Reserved.
7
 *
8
 * Permission is hereby granted, free of charge, to any person obtaining a
9
 * copy of this software and associated documentation files (the "Software"),
10
 * to deal in the Software without restriction, including without limitation
11
 * the rights to use, copy, modify, merge, publish, distribute, sub license,
12
 * and/or sell copies of the Software, and to permit persons to whom the
13
 * Software is furnished to do so, subject to the following conditions:
14
 *
15
 * The above copyright notice and this permission notice (including the next
16
 * paragraph) shall be included in all copies or substantial portions of the
17
 * Software.
18
 *
19
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
22
 * BRIAN PAUL, IBM,
23
 * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
25
 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
 * SOFTWARE.
27
 */
28
 
29
#include "x86/assyntax.h"
30
 
31
#if defined(STDCALL_API)
32
# if defined(USE_MGL_NAMESPACE)
33
#  define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n2))
34
# else
35
#  define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n2))
36
# endif
37
#else
38
# if defined(USE_MGL_NAMESPACE)
39
#  define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n))
40
#  define _glapi_Dispatch _mglapi_Dispatch
41
# else
42
#  define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n))
43
# endif
44
#endif
45
 
46
#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))
47
 
48
#if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__) && !defined(__APPLE__)
49
#define GLOBL_FN(x) GLOBL x ; .type x, @function
50
#else
51
#define GLOBL_FN(x) GLOBL x
52
#endif
53
 
54
#if defined(HAVE_PTHREAD) || defined(_WIN32)
55
#  define THREADS
56
#endif
57
 
58
#ifdef GLX_USE_TLS
59
 
60
#ifdef GLX_X86_READONLY_TEXT
61
# define CTX_INSNS MOV_L(GS:(EAX), EAX)
62
#else
63
# define CTX_INSNS NOP /* Pad for init_glapi_relocs() */
64
#endif
65
 
66
#  define GL_STUB(fn,off,fn_alt)			\
67
ALIGNTEXT16;						\
68
GLOBL_FN(GL_PREFIX(fn, fn_alt));			\
69
GL_PREFIX(fn, fn_alt):					\
70
	CALL(_x86_get_dispatch) ;			\
71
	CTX_INSNS ;					\
72
	JMP(GL_OFFSET(off))
73
 
74
#elif defined(HAVE_PTHREAD)
75
#  define GL_STUB(fn,off,fn_alt)			\
76
ALIGNTEXT16;						\
77
GLOBL_FN(GL_PREFIX(fn, fn_alt));			\
78
GL_PREFIX(fn, fn_alt):					\
79
	MOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;	\
80
	TEST_L(EAX, EAX) ;				\
81
	JE(1f) ;					\
82
	JMP(GL_OFFSET(off)) ;				\
83
1:	CALL(_x86_get_dispatch) ;			\
84
	JMP(GL_OFFSET(off))
85
#elif defined(THREADS)
86
#  define GL_STUB(fn,off,fn_alt)			\
87
ALIGNTEXT16;						\
88
GLOBL_FN(GL_PREFIX(fn, fn_alt));			\
89
GL_PREFIX(fn, fn_alt):					\
90
	MOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;	\
91
	TEST_L(EAX, EAX) ;				\
92
	JE(1f) ;					\
93
	JMP(GL_OFFSET(off)) ;				\
94
1:	CALL(_glapi_get_dispatch) ;			\
95
	JMP(GL_OFFSET(off))
96
#else /* Non-threaded version. */
97
#  define GL_STUB(fn,off,fn_alt)			\
98
ALIGNTEXT16;						\
99
GLOBL_FN(GL_PREFIX(fn, fn_alt));			\
100
GL_PREFIX(fn, fn_alt):					\
101
	MOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;	\
102
	JMP(GL_OFFSET(off))
103
#endif
104
 
105
#ifdef HAVE_ALIAS
106
#  define GL_STUB_ALIAS(fn,off,fn_alt,alias,alias_alt)	\
107
	.globl	GL_PREFIX(fn, fn_alt) ;			\
108
	.set	GL_PREFIX(fn, fn_alt), GL_PREFIX(alias, alias_alt)
109
#else
110
#  define GL_STUB_ALIAS(fn,off,fn_alt,alias,alias_alt)	\
111
    GL_STUB(fn, off, fn_alt)
112
#endif
113
 
114
SEG_TEXT
115
 
116
#ifdef GLX_USE_TLS
117
 
118
	GLOBL	GLNAME(_x86_get_dispatch)
119
	HIDDEN(GLNAME(_x86_get_dispatch))
120
ALIGNTEXT16
121
GLNAME(_x86_get_dispatch):
122
	call	1f
123
1:	popl	%eax
124
	addl	$_GLOBAL_OFFSET_TABLE_+[.-1b], %eax
125
	movl	_glapi_tls_Dispatch@GOTNTPOFF(%eax), %eax
126
	ret
127
 
128
#elif defined(HAVE_PTHREAD)
129
EXTERN GLNAME(_glapi_Dispatch)
130
EXTERN GLNAME(_gl_DispatchTSD)
131
EXTERN GLNAME(pthread_getspecific)
132
 
133
ALIGNTEXT16
134
GLNAME(_x86_get_dispatch):
135
	SUB_L(CONST(24), ESP)
136
	PUSH_L(GLNAME(_gl_DispatchTSD))
137
	CALL(GLNAME(pthread_getspecific))
138
	ADD_L(CONST(28), ESP)
139
	RET
140
#elif defined(THREADS)
141
EXTERN GLNAME(_glapi_get_dispatch)
142
#endif
143
 
144
#if defined( GLX_USE_TLS ) && !defined( GLX_X86_READONLY_TEXT )
145
		.section	wtext, "awx", @progbits
146
#endif /* defined( GLX_USE_TLS ) */
147
 
148
		ALIGNTEXT16
149
		GLOBL GLNAME(gl_dispatch_functions_start)
150
		HIDDEN(GLNAME(gl_dispatch_functions_start))
151
GLNAME(gl_dispatch_functions_start):
152
 
153
	GL_STUB(NewList, 0, NewList@8)
154
	GL_STUB(EndList, 1, EndList@0)
155
	GL_STUB(CallList, 2, CallList@4)
156
	GL_STUB(CallLists, 3, CallLists@12)
157
	GL_STUB(DeleteLists, 4, DeleteLists@8)
158
	GL_STUB(GenLists, 5, GenLists@4)
159
	GL_STUB(ListBase, 6, ListBase@4)
160
	GL_STUB(Begin, 7, Begin@4)
161
	GL_STUB(Bitmap, 8, Bitmap@28)
162
	GL_STUB(Color3b, 9, Color3b@12)
163
	GL_STUB(Color3bv, 10, Color3bv@4)
164
	GL_STUB(Color3d, 11, Color3d@24)
165
	GL_STUB(Color3dv, 12, Color3dv@4)
166
	GL_STUB(Color3f, 13, Color3f@12)
167
	GL_STUB(Color3fv, 14, Color3fv@4)
168
	GL_STUB(Color3i, 15, Color3i@12)
169
	GL_STUB(Color3iv, 16, Color3iv@4)
170
	GL_STUB(Color3s, 17, Color3s@12)
171
	GL_STUB(Color3sv, 18, Color3sv@4)
172
	GL_STUB(Color3ub, 19, Color3ub@12)
173
	GL_STUB(Color3ubv, 20, Color3ubv@4)
174
	GL_STUB(Color3ui, 21, Color3ui@12)
175
	GL_STUB(Color3uiv, 22, Color3uiv@4)
176
	GL_STUB(Color3us, 23, Color3us@12)
177
	GL_STUB(Color3usv, 24, Color3usv@4)
178
	GL_STUB(Color4b, 25, Color4b@16)
179
	GL_STUB(Color4bv, 26, Color4bv@4)
180
	GL_STUB(Color4d, 27, Color4d@32)
181
	GL_STUB(Color4dv, 28, Color4dv@4)
182
	GL_STUB(Color4f, 29, Color4f@16)
183
	GL_STUB(Color4fv, 30, Color4fv@4)
184
	GL_STUB(Color4i, 31, Color4i@16)
185
	GL_STUB(Color4iv, 32, Color4iv@4)
186
	GL_STUB(Color4s, 33, Color4s@16)
187
	GL_STUB(Color4sv, 34, Color4sv@4)
188
	GL_STUB(Color4ub, 35, Color4ub@16)
189
	GL_STUB(Color4ubv, 36, Color4ubv@4)
190
	GL_STUB(Color4ui, 37, Color4ui@16)
191
	GL_STUB(Color4uiv, 38, Color4uiv@4)
192
	GL_STUB(Color4us, 39, Color4us@16)
193
	GL_STUB(Color4usv, 40, Color4usv@4)
194
	GL_STUB(EdgeFlag, 41, EdgeFlag@4)
195
	GL_STUB(EdgeFlagv, 42, EdgeFlagv@4)
196
	GL_STUB(End, 43, End@0)
197
	GL_STUB(Indexd, 44, Indexd@8)
198
	GL_STUB(Indexdv, 45, Indexdv@4)
199
	GL_STUB(Indexf, 46, Indexf@4)
200
	GL_STUB(Indexfv, 47, Indexfv@4)
201
	GL_STUB(Indexi, 48, Indexi@4)
202
	GL_STUB(Indexiv, 49, Indexiv@4)
203
	GL_STUB(Indexs, 50, Indexs@4)
204
	GL_STUB(Indexsv, 51, Indexsv@4)
205
	GL_STUB(Normal3b, 52, Normal3b@12)
206
	GL_STUB(Normal3bv, 53, Normal3bv@4)
207
	GL_STUB(Normal3d, 54, Normal3d@24)
208
	GL_STUB(Normal3dv, 55, Normal3dv@4)
209
	GL_STUB(Normal3f, 56, Normal3f@12)
210
	GL_STUB(Normal3fv, 57, Normal3fv@4)
211
	GL_STUB(Normal3i, 58, Normal3i@12)
212
	GL_STUB(Normal3iv, 59, Normal3iv@4)
213
	GL_STUB(Normal3s, 60, Normal3s@12)
214
	GL_STUB(Normal3sv, 61, Normal3sv@4)
215
	GL_STUB(RasterPos2d, 62, RasterPos2d@16)
216
	GL_STUB(RasterPos2dv, 63, RasterPos2dv@4)
217
	GL_STUB(RasterPos2f, 64, RasterPos2f@8)
218
	GL_STUB(RasterPos2fv, 65, RasterPos2fv@4)
219
	GL_STUB(RasterPos2i, 66, RasterPos2i@8)
220
	GL_STUB(RasterPos2iv, 67, RasterPos2iv@4)
221
	GL_STUB(RasterPos2s, 68, RasterPos2s@8)
222
	GL_STUB(RasterPos2sv, 69, RasterPos2sv@4)
223
	GL_STUB(RasterPos3d, 70, RasterPos3d@24)
224
	GL_STUB(RasterPos3dv, 71, RasterPos3dv@4)
225
	GL_STUB(RasterPos3f, 72, RasterPos3f@12)
226
	GL_STUB(RasterPos3fv, 73, RasterPos3fv@4)
227
	GL_STUB(RasterPos3i, 74, RasterPos3i@12)
228
	GL_STUB(RasterPos3iv, 75, RasterPos3iv@4)
229
	GL_STUB(RasterPos3s, 76, RasterPos3s@12)
230
	GL_STUB(RasterPos3sv, 77, RasterPos3sv@4)
231
	GL_STUB(RasterPos4d, 78, RasterPos4d@32)
232
	GL_STUB(RasterPos4dv, 79, RasterPos4dv@4)
233
	GL_STUB(RasterPos4f, 80, RasterPos4f@16)
234
	GL_STUB(RasterPos4fv, 81, RasterPos4fv@4)
235
	GL_STUB(RasterPos4i, 82, RasterPos4i@16)
236
	GL_STUB(RasterPos4iv, 83, RasterPos4iv@4)
237
	GL_STUB(RasterPos4s, 84, RasterPos4s@16)
238
	GL_STUB(RasterPos4sv, 85, RasterPos4sv@4)
239
	GL_STUB(Rectd, 86, Rectd@32)
240
	GL_STUB(Rectdv, 87, Rectdv@8)
241
	GL_STUB(Rectf, 88, Rectf@16)
242
	GL_STUB(Rectfv, 89, Rectfv@8)
243
	GL_STUB(Recti, 90, Recti@16)
244
	GL_STUB(Rectiv, 91, Rectiv@8)
245
	GL_STUB(Rects, 92, Rects@16)
246
	GL_STUB(Rectsv, 93, Rectsv@8)
247
	GL_STUB(TexCoord1d, 94, TexCoord1d@8)
248
	GL_STUB(TexCoord1dv, 95, TexCoord1dv@4)
249
	GL_STUB(TexCoord1f, 96, TexCoord1f@4)
250
	GL_STUB(TexCoord1fv, 97, TexCoord1fv@4)
251
	GL_STUB(TexCoord1i, 98, TexCoord1i@4)
252
	GL_STUB(TexCoord1iv, 99, TexCoord1iv@4)
253
	GL_STUB(TexCoord1s, 100, TexCoord1s@4)
254
	GL_STUB(TexCoord1sv, 101, TexCoord1sv@4)
255
	GL_STUB(TexCoord2d, 102, TexCoord2d@16)
256
	GL_STUB(TexCoord2dv, 103, TexCoord2dv@4)
257
	GL_STUB(TexCoord2f, 104, TexCoord2f@8)
258
	GL_STUB(TexCoord2fv, 105, TexCoord2fv@4)
259
	GL_STUB(TexCoord2i, 106, TexCoord2i@8)
260
	GL_STUB(TexCoord2iv, 107, TexCoord2iv@4)
261
	GL_STUB(TexCoord2s, 108, TexCoord2s@8)
262
	GL_STUB(TexCoord2sv, 109, TexCoord2sv@4)
263
	GL_STUB(TexCoord3d, 110, TexCoord3d@24)
264
	GL_STUB(TexCoord3dv, 111, TexCoord3dv@4)
265
	GL_STUB(TexCoord3f, 112, TexCoord3f@12)
266
	GL_STUB(TexCoord3fv, 113, TexCoord3fv@4)
267
	GL_STUB(TexCoord3i, 114, TexCoord3i@12)
268
	GL_STUB(TexCoord3iv, 115, TexCoord3iv@4)
269
	GL_STUB(TexCoord3s, 116, TexCoord3s@12)
270
	GL_STUB(TexCoord3sv, 117, TexCoord3sv@4)
271
	GL_STUB(TexCoord4d, 118, TexCoord4d@32)
272
	GL_STUB(TexCoord4dv, 119, TexCoord4dv@4)
273
	GL_STUB(TexCoord4f, 120, TexCoord4f@16)
274
	GL_STUB(TexCoord4fv, 121, TexCoord4fv@4)
275
	GL_STUB(TexCoord4i, 122, TexCoord4i@16)
276
	GL_STUB(TexCoord4iv, 123, TexCoord4iv@4)
277
	GL_STUB(TexCoord4s, 124, TexCoord4s@16)
278
	GL_STUB(TexCoord4sv, 125, TexCoord4sv@4)
279
	GL_STUB(Vertex2d, 126, Vertex2d@16)
280
	GL_STUB(Vertex2dv, 127, Vertex2dv@4)
281
	GL_STUB(Vertex2f, 128, Vertex2f@8)
282
	GL_STUB(Vertex2fv, 129, Vertex2fv@4)
283
	GL_STUB(Vertex2i, 130, Vertex2i@8)
284
	GL_STUB(Vertex2iv, 131, Vertex2iv@4)
285
	GL_STUB(Vertex2s, 132, Vertex2s@8)
286
	GL_STUB(Vertex2sv, 133, Vertex2sv@4)
287
	GL_STUB(Vertex3d, 134, Vertex3d@24)
288
	GL_STUB(Vertex3dv, 135, Vertex3dv@4)
289
	GL_STUB(Vertex3f, 136, Vertex3f@12)
290
	GL_STUB(Vertex3fv, 137, Vertex3fv@4)
291
	GL_STUB(Vertex3i, 138, Vertex3i@12)
292
	GL_STUB(Vertex3iv, 139, Vertex3iv@4)
293
	GL_STUB(Vertex3s, 140, Vertex3s@12)
294
	GL_STUB(Vertex3sv, 141, Vertex3sv@4)
295
	GL_STUB(Vertex4d, 142, Vertex4d@32)
296
	GL_STUB(Vertex4dv, 143, Vertex4dv@4)
297
	GL_STUB(Vertex4f, 144, Vertex4f@16)
298
	GL_STUB(Vertex4fv, 145, Vertex4fv@4)
299
	GL_STUB(Vertex4i, 146, Vertex4i@16)
300
	GL_STUB(Vertex4iv, 147, Vertex4iv@4)
301
	GL_STUB(Vertex4s, 148, Vertex4s@16)
302
	GL_STUB(Vertex4sv, 149, Vertex4sv@4)
303
	GL_STUB(ClipPlane, 150, ClipPlane@8)
304
	GL_STUB(ColorMaterial, 151, ColorMaterial@8)
305
	GL_STUB(CullFace, 152, CullFace@4)
306
	GL_STUB(Fogf, 153, Fogf@8)
307
	GL_STUB(Fogfv, 154, Fogfv@8)
308
	GL_STUB(Fogi, 155, Fogi@8)
309
	GL_STUB(Fogiv, 156, Fogiv@8)
310
	GL_STUB(FrontFace, 157, FrontFace@4)
311
	GL_STUB(Hint, 158, Hint@8)
312
	GL_STUB(Lightf, 159, Lightf@12)
313
	GL_STUB(Lightfv, 160, Lightfv@12)
314
	GL_STUB(Lighti, 161, Lighti@12)
315
	GL_STUB(Lightiv, 162, Lightiv@12)
316
	GL_STUB(LightModelf, 163, LightModelf@8)
317
	GL_STUB(LightModelfv, 164, LightModelfv@8)
318
	GL_STUB(LightModeli, 165, LightModeli@8)
319
	GL_STUB(LightModeliv, 166, LightModeliv@8)
320
	GL_STUB(LineStipple, 167, LineStipple@8)
321
	GL_STUB(LineWidth, 168, LineWidth@4)
322
	GL_STUB(Materialf, 169, Materialf@12)
323
	GL_STUB(Materialfv, 170, Materialfv@12)
324
	GL_STUB(Materiali, 171, Materiali@12)
325
	GL_STUB(Materialiv, 172, Materialiv@12)
326
	GL_STUB(PointSize, 173, PointSize@4)
327
	GL_STUB(PolygonMode, 174, PolygonMode@8)
328
	GL_STUB(PolygonStipple, 175, PolygonStipple@4)
329
	GL_STUB(Scissor, 176, Scissor@16)
330
	GL_STUB(ShadeModel, 177, ShadeModel@4)
331
	GL_STUB(TexParameterf, 178, TexParameterf@12)
332
	GL_STUB(TexParameterfv, 179, TexParameterfv@12)
333
	GL_STUB(TexParameteri, 180, TexParameteri@12)
334
	GL_STUB(TexParameteriv, 181, TexParameteriv@12)
335
	GL_STUB(TexImage1D, 182, TexImage1D@32)
336
	GL_STUB(TexImage2D, 183, TexImage2D@36)
337
	GL_STUB(TexEnvf, 184, TexEnvf@12)
338
	GL_STUB(TexEnvfv, 185, TexEnvfv@12)
339
	GL_STUB(TexEnvi, 186, TexEnvi@12)
340
	GL_STUB(TexEnviv, 187, TexEnviv@12)
341
	GL_STUB(TexGend, 188, TexGend@16)
342
	GL_STUB(TexGendv, 189, TexGendv@12)
343
	GL_STUB(TexGenf, 190, TexGenf@12)
344
	GL_STUB(TexGenfv, 191, TexGenfv@12)
345
	GL_STUB(TexGeni, 192, TexGeni@12)
346
	GL_STUB(TexGeniv, 193, TexGeniv@12)
347
	GL_STUB(FeedbackBuffer, 194, FeedbackBuffer@12)
348
	GL_STUB(SelectBuffer, 195, SelectBuffer@8)
349
	GL_STUB(RenderMode, 196, RenderMode@4)
350
	GL_STUB(InitNames, 197, InitNames@0)
351
	GL_STUB(LoadName, 198, LoadName@4)
352
	GL_STUB(PassThrough, 199, PassThrough@4)
353
	GL_STUB(PopName, 200, PopName@0)
354
	GL_STUB(PushName, 201, PushName@4)
355
	GL_STUB(DrawBuffer, 202, DrawBuffer@4)
356
	GL_STUB(Clear, 203, Clear@4)
357
	GL_STUB(ClearAccum, 204, ClearAccum@16)
358
	GL_STUB(ClearIndex, 205, ClearIndex@4)
359
	GL_STUB(ClearColor, 206, ClearColor@16)
360
	GL_STUB(ClearStencil, 207, ClearStencil@4)
361
	GL_STUB(ClearDepth, 208, ClearDepth@8)
362
	GL_STUB(StencilMask, 209, StencilMask@4)
363
	GL_STUB(ColorMask, 210, ColorMask@16)
364
	GL_STUB(DepthMask, 211, DepthMask@4)
365
	GL_STUB(IndexMask, 212, IndexMask@4)
366
	GL_STUB(Accum, 213, Accum@8)
367
	GL_STUB(Disable, 214, Disable@4)
368
	GL_STUB(Enable, 215, Enable@4)
369
	GL_STUB(Finish, 216, Finish@0)
370
	GL_STUB(Flush, 217, Flush@0)
371
	GL_STUB(PopAttrib, 218, PopAttrib@0)
372
	GL_STUB(PushAttrib, 219, PushAttrib@4)
373
	GL_STUB(Map1d, 220, Map1d@32)
374
	GL_STUB(Map1f, 221, Map1f@24)
375
	GL_STUB(Map2d, 222, Map2d@56)
376
	GL_STUB(Map2f, 223, Map2f@40)
377
	GL_STUB(MapGrid1d, 224, MapGrid1d@20)
378
	GL_STUB(MapGrid1f, 225, MapGrid1f@12)
379
	GL_STUB(MapGrid2d, 226, MapGrid2d@40)
380
	GL_STUB(MapGrid2f, 227, MapGrid2f@24)
381
	GL_STUB(EvalCoord1d, 228, EvalCoord1d@8)
382
	GL_STUB(EvalCoord1dv, 229, EvalCoord1dv@4)
383
	GL_STUB(EvalCoord1f, 230, EvalCoord1f@4)
384
	GL_STUB(EvalCoord1fv, 231, EvalCoord1fv@4)
385
	GL_STUB(EvalCoord2d, 232, EvalCoord2d@16)
386
	GL_STUB(EvalCoord2dv, 233, EvalCoord2dv@4)
387
	GL_STUB(EvalCoord2f, 234, EvalCoord2f@8)
388
	GL_STUB(EvalCoord2fv, 235, EvalCoord2fv@4)
389
	GL_STUB(EvalMesh1, 236, EvalMesh1@12)
390
	GL_STUB(EvalPoint1, 237, EvalPoint1@4)
391
	GL_STUB(EvalMesh2, 238, EvalMesh2@20)
392
	GL_STUB(EvalPoint2, 239, EvalPoint2@8)
393
	GL_STUB(AlphaFunc, 240, AlphaFunc@8)
394
	GL_STUB(BlendFunc, 241, BlendFunc@8)
395
	GL_STUB(LogicOp, 242, LogicOp@4)
396
	GL_STUB(StencilFunc, 243, StencilFunc@12)
397
	GL_STUB(StencilOp, 244, StencilOp@12)
398
	GL_STUB(DepthFunc, 245, DepthFunc@4)
399
	GL_STUB(PixelZoom, 246, PixelZoom@8)
400
	GL_STUB(PixelTransferf, 247, PixelTransferf@8)
401
	GL_STUB(PixelTransferi, 248, PixelTransferi@8)
402
	GL_STUB(PixelStoref, 249, PixelStoref@8)
403
	GL_STUB(PixelStorei, 250, PixelStorei@8)
404
	GL_STUB(PixelMapfv, 251, PixelMapfv@12)
405
	GL_STUB(PixelMapuiv, 252, PixelMapuiv@12)
406
	GL_STUB(PixelMapusv, 253, PixelMapusv@12)
407
	GL_STUB(ReadBuffer, 254, ReadBuffer@4)
408
	GL_STUB(CopyPixels, 255, CopyPixels@20)
409
	GL_STUB(ReadPixels, 256, ReadPixels@28)
410
	GL_STUB(DrawPixels, 257, DrawPixels@20)
411
	GL_STUB(GetBooleanv, 258, GetBooleanv@8)
412
	GL_STUB(GetClipPlane, 259, GetClipPlane@8)
413
	GL_STUB(GetDoublev, 260, GetDoublev@8)
414
	GL_STUB(GetError, 261, GetError@0)
415
	GL_STUB(GetFloatv, 262, GetFloatv@8)
416
	GL_STUB(GetIntegerv, 263, GetIntegerv@8)
417
	GL_STUB(GetLightfv, 264, GetLightfv@12)
418
	GL_STUB(GetLightiv, 265, GetLightiv@12)
419
	GL_STUB(GetMapdv, 266, GetMapdv@12)
420
	GL_STUB(GetMapfv, 267, GetMapfv@12)
421
	GL_STUB(GetMapiv, 268, GetMapiv@12)
422
	GL_STUB(GetMaterialfv, 269, GetMaterialfv@12)
423
	GL_STUB(GetMaterialiv, 270, GetMaterialiv@12)
424
	GL_STUB(GetPixelMapfv, 271, GetPixelMapfv@8)
425
	GL_STUB(GetPixelMapuiv, 272, GetPixelMapuiv@8)
426
	GL_STUB(GetPixelMapusv, 273, GetPixelMapusv@8)
427
	GL_STUB(GetPolygonStipple, 274, GetPolygonStipple@4)
428
	GL_STUB(GetString, 275, GetString@4)
429
	GL_STUB(GetTexEnvfv, 276, GetTexEnvfv@12)
430
	GL_STUB(GetTexEnviv, 277, GetTexEnviv@12)
431
	GL_STUB(GetTexGendv, 278, GetTexGendv@12)
432
	GL_STUB(GetTexGenfv, 279, GetTexGenfv@12)
433
	GL_STUB(GetTexGeniv, 280, GetTexGeniv@12)
434
	GL_STUB(GetTexImage, 281, GetTexImage@20)
435
	GL_STUB(GetTexParameterfv, 282, GetTexParameterfv@12)
436
	GL_STUB(GetTexParameteriv, 283, GetTexParameteriv@12)
437
	GL_STUB(GetTexLevelParameterfv, 284, GetTexLevelParameterfv@16)
438
	GL_STUB(GetTexLevelParameteriv, 285, GetTexLevelParameteriv@16)
439
	GL_STUB(IsEnabled, 286, IsEnabled@4)
440
	GL_STUB(IsList, 287, IsList@4)
441
	GL_STUB(DepthRange, 288, DepthRange@16)
442
	GL_STUB(Frustum, 289, Frustum@48)
443
	GL_STUB(LoadIdentity, 290, LoadIdentity@0)
444
	GL_STUB(LoadMatrixf, 291, LoadMatrixf@4)
445
	GL_STUB(LoadMatrixd, 292, LoadMatrixd@4)
446
	GL_STUB(MatrixMode, 293, MatrixMode@4)
447
	GL_STUB(MultMatrixf, 294, MultMatrixf@4)
448
	GL_STUB(MultMatrixd, 295, MultMatrixd@4)
449
	GL_STUB(Ortho, 296, Ortho@48)
450
	GL_STUB(PopMatrix, 297, PopMatrix@0)
451
	GL_STUB(PushMatrix, 298, PushMatrix@0)
452
	GL_STUB(Rotated, 299, Rotated@32)
453
	GL_STUB(Rotatef, 300, Rotatef@16)
454
	GL_STUB(Scaled, 301, Scaled@24)
455
	GL_STUB(Scalef, 302, Scalef@12)
456
	GL_STUB(Translated, 303, Translated@24)
457
	GL_STUB(Translatef, 304, Translatef@12)
458
	GL_STUB(Viewport, 305, Viewport@16)
459
	GL_STUB(ArrayElement, 306, ArrayElement@4)
460
	GL_STUB(BindTexture, 307, BindTexture@8)
461
	GL_STUB(ColorPointer, 308, ColorPointer@16)
462
	GL_STUB(DisableClientState, 309, DisableClientState@4)
463
	GL_STUB(DrawArrays, 310, DrawArrays@12)
464
	GL_STUB(DrawElements, 311, DrawElements@16)
465
	GL_STUB(EdgeFlagPointer, 312, EdgeFlagPointer@8)
466
	GL_STUB(EnableClientState, 313, EnableClientState@4)
467
	GL_STUB(IndexPointer, 314, IndexPointer@12)
468
	GL_STUB(Indexub, 315, Indexub@4)
469
	GL_STUB(Indexubv, 316, Indexubv@4)
470
	GL_STUB(InterleavedArrays, 317, InterleavedArrays@12)
471
	GL_STUB(NormalPointer, 318, NormalPointer@12)
472
	GL_STUB(PolygonOffset, 319, PolygonOffset@8)
473
	GL_STUB(TexCoordPointer, 320, TexCoordPointer@16)
474
	GL_STUB(VertexPointer, 321, VertexPointer@16)
475
	GL_STUB(AreTexturesResident, 322, AreTexturesResident@12)
476
	GL_STUB(CopyTexImage1D, 323, CopyTexImage1D@28)
477
	GL_STUB(CopyTexImage2D, 324, CopyTexImage2D@32)
478
	GL_STUB(CopyTexSubImage1D, 325, CopyTexSubImage1D@24)
479
	GL_STUB(CopyTexSubImage2D, 326, CopyTexSubImage2D@32)
480
	GL_STUB(DeleteTextures, 327, DeleteTextures@8)
481
	GL_STUB(GenTextures, 328, GenTextures@8)
482
	GL_STUB(GetPointerv, 329, GetPointerv@8)
483
	GL_STUB(IsTexture, 330, IsTexture@4)
484
	GL_STUB(PrioritizeTextures, 331, PrioritizeTextures@12)
485
	GL_STUB(TexSubImage1D, 332, TexSubImage1D@28)
486
	GL_STUB(TexSubImage2D, 333, TexSubImage2D@36)
487
	GL_STUB(PopClientAttrib, 334, PopClientAttrib@0)
488
	GL_STUB(PushClientAttrib, 335, PushClientAttrib@4)
489
	GL_STUB(BlendColor, 336, BlendColor@16)
490
	GL_STUB(BlendEquation, 337, BlendEquation@4)
491
	GL_STUB(DrawRangeElements, 338, DrawRangeElements@24)
492
	GL_STUB(ColorTable, 339, ColorTable@24)
493
	GL_STUB(ColorTableParameterfv, 340, ColorTableParameterfv@12)
494
	GL_STUB(ColorTableParameteriv, 341, ColorTableParameteriv@12)
495
	GL_STUB(CopyColorTable, 342, CopyColorTable@20)
496
	GL_STUB(GetColorTable, 343, GetColorTable@16)
497
	GL_STUB(GetColorTableParameterfv, 344, GetColorTableParameterfv@12)
498
	GL_STUB(GetColorTableParameteriv, 345, GetColorTableParameteriv@12)
499
	GL_STUB(ColorSubTable, 346, ColorSubTable@24)
500
	GL_STUB(CopyColorSubTable, 347, CopyColorSubTable@20)
501
	GL_STUB(ConvolutionFilter1D, 348, ConvolutionFilter1D@24)
502
	GL_STUB(ConvolutionFilter2D, 349, ConvolutionFilter2D@28)
503
	GL_STUB(ConvolutionParameterf, 350, ConvolutionParameterf@12)
504
	GL_STUB(ConvolutionParameterfv, 351, ConvolutionParameterfv@12)
505
	GL_STUB(ConvolutionParameteri, 352, ConvolutionParameteri@12)
506
	GL_STUB(ConvolutionParameteriv, 353, ConvolutionParameteriv@12)
507
	GL_STUB(CopyConvolutionFilter1D, 354, CopyConvolutionFilter1D@20)
508
	GL_STUB(CopyConvolutionFilter2D, 355, CopyConvolutionFilter2D@24)
509
	GL_STUB(GetConvolutionFilter, 356, GetConvolutionFilter@16)
510
	GL_STUB(GetConvolutionParameterfv, 357, GetConvolutionParameterfv@12)
511
	GL_STUB(GetConvolutionParameteriv, 358, GetConvolutionParameteriv@12)
512
	GL_STUB(GetSeparableFilter, 359, GetSeparableFilter@24)
513
	GL_STUB(SeparableFilter2D, 360, SeparableFilter2D@32)
514
	GL_STUB(GetHistogram, 361, GetHistogram@20)
515
	GL_STUB(GetHistogramParameterfv, 362, GetHistogramParameterfv@12)
516
	GL_STUB(GetHistogramParameteriv, 363, GetHistogramParameteriv@12)
517
	GL_STUB(GetMinmax, 364, GetMinmax@20)
518
	GL_STUB(GetMinmaxParameterfv, 365, GetMinmaxParameterfv@12)
519
	GL_STUB(GetMinmaxParameteriv, 366, GetMinmaxParameteriv@12)
520
	GL_STUB(Histogram, 367, Histogram@16)
521
	GL_STUB(Minmax, 368, Minmax@12)
522
	GL_STUB(ResetHistogram, 369, ResetHistogram@4)
523
	GL_STUB(ResetMinmax, 370, ResetMinmax@4)
524
	GL_STUB(TexImage3D, 371, TexImage3D@40)
525
	GL_STUB(TexSubImage3D, 372, TexSubImage3D@44)
526
	GL_STUB(CopyTexSubImage3D, 373, CopyTexSubImage3D@36)
527
	GL_STUB(ActiveTexture, 374, ActiveTexture@4)
528
	GL_STUB(ClientActiveTexture, 375, ClientActiveTexture@4)
529
	GL_STUB(MultiTexCoord1d, 376, MultiTexCoord1d@12)
530
	GL_STUB(MultiTexCoord1dv, 377, MultiTexCoord1dv@8)
531
	GL_STUB(MultiTexCoord1fARB, 378, MultiTexCoord1fARB@8)
532
	GL_STUB(MultiTexCoord1fvARB, 379, MultiTexCoord1fvARB@8)
533
	GL_STUB(MultiTexCoord1i, 380, MultiTexCoord1i@8)
534
	GL_STUB(MultiTexCoord1iv, 381, MultiTexCoord1iv@8)
535
	GL_STUB(MultiTexCoord1s, 382, MultiTexCoord1s@8)
536
	GL_STUB(MultiTexCoord1sv, 383, MultiTexCoord1sv@8)
537
	GL_STUB(MultiTexCoord2d, 384, MultiTexCoord2d@20)
538
	GL_STUB(MultiTexCoord2dv, 385, MultiTexCoord2dv@8)
539
	GL_STUB(MultiTexCoord2fARB, 386, MultiTexCoord2fARB@12)
540
	GL_STUB(MultiTexCoord2fvARB, 387, MultiTexCoord2fvARB@8)
541
	GL_STUB(MultiTexCoord2i, 388, MultiTexCoord2i@12)
542
	GL_STUB(MultiTexCoord2iv, 389, MultiTexCoord2iv@8)
543
	GL_STUB(MultiTexCoord2s, 390, MultiTexCoord2s@12)
544
	GL_STUB(MultiTexCoord2sv, 391, MultiTexCoord2sv@8)
545
	GL_STUB(MultiTexCoord3d, 392, MultiTexCoord3d@28)
546
	GL_STUB(MultiTexCoord3dv, 393, MultiTexCoord3dv@8)
547
	GL_STUB(MultiTexCoord3fARB, 394, MultiTexCoord3fARB@16)
548
	GL_STUB(MultiTexCoord3fvARB, 395, MultiTexCoord3fvARB@8)
549
	GL_STUB(MultiTexCoord3i, 396, MultiTexCoord3i@16)
550
	GL_STUB(MultiTexCoord3iv, 397, MultiTexCoord3iv@8)
551
	GL_STUB(MultiTexCoord3s, 398, MultiTexCoord3s@16)
552
	GL_STUB(MultiTexCoord3sv, 399, MultiTexCoord3sv@8)
553
	GL_STUB(MultiTexCoord4d, 400, MultiTexCoord4d@36)
554
	GL_STUB(MultiTexCoord4dv, 401, MultiTexCoord4dv@8)
555
	GL_STUB(MultiTexCoord4fARB, 402, MultiTexCoord4fARB@20)
556
	GL_STUB(MultiTexCoord4fvARB, 403, MultiTexCoord4fvARB@8)
557
	GL_STUB(MultiTexCoord4i, 404, MultiTexCoord4i@20)
558
	GL_STUB(MultiTexCoord4iv, 405, MultiTexCoord4iv@8)
559
	GL_STUB(MultiTexCoord4s, 406, MultiTexCoord4s@20)
560
	GL_STUB(MultiTexCoord4sv, 407, MultiTexCoord4sv@8)
561
	GL_STUB(CompressedTexImage1D, 408, CompressedTexImage1D@28)
562
	GL_STUB(CompressedTexImage2D, 409, CompressedTexImage2D@32)
563
	GL_STUB(CompressedTexImage3D, 410, CompressedTexImage3D@36)
564
	GL_STUB(CompressedTexSubImage1D, 411, CompressedTexSubImage1D@28)
565
	GL_STUB(CompressedTexSubImage2D, 412, CompressedTexSubImage2D@36)
566
	GL_STUB(CompressedTexSubImage3D, 413, CompressedTexSubImage3D@44)
567
	GL_STUB(GetCompressedTexImage, 414, GetCompressedTexImage@12)
568
	GL_STUB(LoadTransposeMatrixd, 415, LoadTransposeMatrixd@4)
569
	GL_STUB(LoadTransposeMatrixf, 416, LoadTransposeMatrixf@4)
570
	GL_STUB(MultTransposeMatrixd, 417, MultTransposeMatrixd@4)
571
	GL_STUB(MultTransposeMatrixf, 418, MultTransposeMatrixf@4)
572
	GL_STUB(SampleCoverage, 419, SampleCoverage@8)
573
	GL_STUB(BlendFuncSeparate, 420, BlendFuncSeparate@16)
574
	GL_STUB(FogCoordPointer, 421, FogCoordPointer@12)
575
	GL_STUB(FogCoordd, 422, FogCoordd@8)
576
	GL_STUB(FogCoorddv, 423, FogCoorddv@4)
577
	GL_STUB(MultiDrawArrays, 424, MultiDrawArrays@16)
578
	GL_STUB(PointParameterf, 425, PointParameterf@8)
579
	GL_STUB(PointParameterfv, 426, PointParameterfv@8)
580
	GL_STUB(PointParameteri, 427, PointParameteri@8)
581
	GL_STUB(PointParameteriv, 428, PointParameteriv@8)
582
	GL_STUB(SecondaryColor3b, 429, SecondaryColor3b@12)
583
	GL_STUB(SecondaryColor3bv, 430, SecondaryColor3bv@4)
584
	GL_STUB(SecondaryColor3d, 431, SecondaryColor3d@24)
585
	GL_STUB(SecondaryColor3dv, 432, SecondaryColor3dv@4)
586
	GL_STUB(SecondaryColor3i, 433, SecondaryColor3i@12)
587
	GL_STUB(SecondaryColor3iv, 434, SecondaryColor3iv@4)
588
	GL_STUB(SecondaryColor3s, 435, SecondaryColor3s@12)
589
	GL_STUB(SecondaryColor3sv, 436, SecondaryColor3sv@4)
590
	GL_STUB(SecondaryColor3ub, 437, SecondaryColor3ub@12)
591
	GL_STUB(SecondaryColor3ubv, 438, SecondaryColor3ubv@4)
592
	GL_STUB(SecondaryColor3ui, 439, SecondaryColor3ui@12)
593
	GL_STUB(SecondaryColor3uiv, 440, SecondaryColor3uiv@4)
594
	GL_STUB(SecondaryColor3us, 441, SecondaryColor3us@12)
595
	GL_STUB(SecondaryColor3usv, 442, SecondaryColor3usv@4)
596
	GL_STUB(SecondaryColorPointer, 443, SecondaryColorPointer@16)
597
	GL_STUB(WindowPos2d, 444, WindowPos2d@16)
598
	GL_STUB(WindowPos2dv, 445, WindowPos2dv@4)
599
	GL_STUB(WindowPos2f, 446, WindowPos2f@8)
600
	GL_STUB(WindowPos2fv, 447, WindowPos2fv@4)
601
	GL_STUB(WindowPos2i, 448, WindowPos2i@8)
602
	GL_STUB(WindowPos2iv, 449, WindowPos2iv@4)
603
	GL_STUB(WindowPos2s, 450, WindowPos2s@8)
604
	GL_STUB(WindowPos2sv, 451, WindowPos2sv@4)
605
	GL_STUB(WindowPos3d, 452, WindowPos3d@24)
606
	GL_STUB(WindowPos3dv, 453, WindowPos3dv@4)
607
	GL_STUB(WindowPos3f, 454, WindowPos3f@12)
608
	GL_STUB(WindowPos3fv, 455, WindowPos3fv@4)
609
	GL_STUB(WindowPos3i, 456, WindowPos3i@12)
610
	GL_STUB(WindowPos3iv, 457, WindowPos3iv@4)
611
	GL_STUB(WindowPos3s, 458, WindowPos3s@12)
612
	GL_STUB(WindowPos3sv, 459, WindowPos3sv@4)
613
	GL_STUB(BeginQuery, 460, BeginQuery@8)
614
	GL_STUB(BindBuffer, 461, BindBuffer@8)
615
	GL_STUB(BufferData, 462, BufferData@16)
616
	GL_STUB(BufferSubData, 463, BufferSubData@16)
617
	GL_STUB(DeleteBuffers, 464, DeleteBuffers@8)
618
	GL_STUB(DeleteQueries, 465, DeleteQueries@8)
619
	GL_STUB(EndQuery, 466, EndQuery@4)
620
	GL_STUB(GenBuffers, 467, GenBuffers@8)
621
	GL_STUB(GenQueries, 468, GenQueries@8)
622
	GL_STUB(GetBufferParameteriv, 469, GetBufferParameteriv@12)
623
	GL_STUB(GetBufferPointerv, 470, GetBufferPointerv@12)
624
	GL_STUB(GetBufferSubData, 471, GetBufferSubData@16)
625
	GL_STUB(GetQueryObjectiv, 472, GetQueryObjectiv@12)
626
	GL_STUB(GetQueryObjectuiv, 473, GetQueryObjectuiv@12)
627
	GL_STUB(GetQueryiv, 474, GetQueryiv@12)
628
	GL_STUB(IsBuffer, 475, IsBuffer@4)
629
	GL_STUB(IsQuery, 476, IsQuery@4)
630
	GL_STUB(MapBuffer, 477, MapBuffer@8)
631
	GL_STUB(UnmapBuffer, 478, UnmapBuffer@4)
632
	GL_STUB(AttachShader, 479, AttachShader@8)
633
	GL_STUB(BindAttribLocation, 480, BindAttribLocation@12)
634
	GL_STUB(BlendEquationSeparate, 481, BlendEquationSeparate@8)
635
	GL_STUB(CompileShader, 482, CompileShader@4)
636
	GL_STUB(CreateProgram, 483, CreateProgram@0)
637
	GL_STUB(CreateShader, 484, CreateShader@4)
638
	GL_STUB(DeleteProgram, 485, DeleteProgram@4)
639
	GL_STUB(DeleteShader, 486, DeleteShader@4)
640
	GL_STUB(DetachShader, 487, DetachShader@8)
641
	GL_STUB(DisableVertexAttribArray, 488, DisableVertexAttribArray@4)
642
	GL_STUB(DrawBuffers, 489, DrawBuffers@8)
643
	GL_STUB(EnableVertexAttribArray, 490, EnableVertexAttribArray@4)
644
	GL_STUB(GetActiveAttrib, 491, GetActiveAttrib@28)
645
	GL_STUB(GetActiveUniform, 492, GetActiveUniform@28)
646
	GL_STUB(GetAttachedShaders, 493, GetAttachedShaders@16)
647
	GL_STUB(GetAttribLocation, 494, GetAttribLocation@8)
648
	GL_STUB(GetProgramInfoLog, 495, GetProgramInfoLog@16)
649
	GL_STUB(GetProgramiv, 496, GetProgramiv@12)
650
	GL_STUB(GetShaderInfoLog, 497, GetShaderInfoLog@16)
651
	GL_STUB(GetShaderSource, 498, GetShaderSource@16)
652
	GL_STUB(GetShaderiv, 499, GetShaderiv@12)
653
	GL_STUB(GetUniformLocation, 500, GetUniformLocation@8)
654
	GL_STUB(GetUniformfv, 501, GetUniformfv@12)
655
	GL_STUB(GetUniformiv, 502, GetUniformiv@12)
656
	GL_STUB(GetVertexAttribPointerv, 503, GetVertexAttribPointerv@12)
657
	GL_STUB(GetVertexAttribdv, 504, GetVertexAttribdv@12)
658
	GL_STUB(GetVertexAttribfv, 505, GetVertexAttribfv@12)
659
	GL_STUB(GetVertexAttribiv, 506, GetVertexAttribiv@12)
660
	GL_STUB(IsProgram, 507, IsProgram@4)
661
	GL_STUB(IsShader, 508, IsShader@4)
662
	GL_STUB(LinkProgram, 509, LinkProgram@4)
663
	GL_STUB(ShaderSource, 510, ShaderSource@16)
664
	GL_STUB(StencilFuncSeparate, 511, StencilFuncSeparate@16)
665
	GL_STUB(StencilMaskSeparate, 512, StencilMaskSeparate@8)
666
	GL_STUB(StencilOpSeparate, 513, StencilOpSeparate@16)
667
	GL_STUB(Uniform1f, 514, Uniform1f@8)
668
	GL_STUB(Uniform1fv, 515, Uniform1fv@12)
669
	GL_STUB(Uniform1i, 516, Uniform1i@8)
670
	GL_STUB(Uniform1iv, 517, Uniform1iv@12)
671
	GL_STUB(Uniform2f, 518, Uniform2f@12)
672
	GL_STUB(Uniform2fv, 519, Uniform2fv@12)
673
	GL_STUB(Uniform2i, 520, Uniform2i@12)
674
	GL_STUB(Uniform2iv, 521, Uniform2iv@12)
675
	GL_STUB(Uniform3f, 522, Uniform3f@16)
676
	GL_STUB(Uniform3fv, 523, Uniform3fv@12)
677
	GL_STUB(Uniform3i, 524, Uniform3i@16)
678
	GL_STUB(Uniform3iv, 525, Uniform3iv@12)
679
	GL_STUB(Uniform4f, 526, Uniform4f@20)
680
	GL_STUB(Uniform4fv, 527, Uniform4fv@12)
681
	GL_STUB(Uniform4i, 528, Uniform4i@20)
682
	GL_STUB(Uniform4iv, 529, Uniform4iv@12)
683
	GL_STUB(UniformMatrix2fv, 530, UniformMatrix2fv@16)
684
	GL_STUB(UniformMatrix3fv, 531, UniformMatrix3fv@16)
685
	GL_STUB(UniformMatrix4fv, 532, UniformMatrix4fv@16)
686
	GL_STUB(UseProgram, 533, UseProgram@4)
687
	GL_STUB(ValidateProgram, 534, ValidateProgram@4)
688
	GL_STUB(VertexAttrib1d, 535, VertexAttrib1d@12)
689
	GL_STUB(VertexAttrib1dv, 536, VertexAttrib1dv@8)
690
	GL_STUB(VertexAttrib1s, 537, VertexAttrib1s@8)
691
	GL_STUB(VertexAttrib1sv, 538, VertexAttrib1sv@8)
692
	GL_STUB(VertexAttrib2d, 539, VertexAttrib2d@20)
693
	GL_STUB(VertexAttrib2dv, 540, VertexAttrib2dv@8)
694
	GL_STUB(VertexAttrib2s, 541, VertexAttrib2s@12)
695
	GL_STUB(VertexAttrib2sv, 542, VertexAttrib2sv@8)
696
	GL_STUB(VertexAttrib3d, 543, VertexAttrib3d@28)
697
	GL_STUB(VertexAttrib3dv, 544, VertexAttrib3dv@8)
698
	GL_STUB(VertexAttrib3s, 545, VertexAttrib3s@16)
699
	GL_STUB(VertexAttrib3sv, 546, VertexAttrib3sv@8)
700
	GL_STUB(VertexAttrib4Nbv, 547, VertexAttrib4Nbv@8)
701
	GL_STUB(VertexAttrib4Niv, 548, VertexAttrib4Niv@8)
702
	GL_STUB(VertexAttrib4Nsv, 549, VertexAttrib4Nsv@8)
703
	GL_STUB(VertexAttrib4Nub, 550, VertexAttrib4Nub@20)
704
	GL_STUB(VertexAttrib4Nubv, 551, VertexAttrib4Nubv@8)
705
	GL_STUB(VertexAttrib4Nuiv, 552, VertexAttrib4Nuiv@8)
706
	GL_STUB(VertexAttrib4Nusv, 553, VertexAttrib4Nusv@8)
707
	GL_STUB(VertexAttrib4bv, 554, VertexAttrib4bv@8)
708
	GL_STUB(VertexAttrib4d, 555, VertexAttrib4d@36)
709
	GL_STUB(VertexAttrib4dv, 556, VertexAttrib4dv@8)
710
	GL_STUB(VertexAttrib4iv, 557, VertexAttrib4iv@8)
711
	GL_STUB(VertexAttrib4s, 558, VertexAttrib4s@20)
712
	GL_STUB(VertexAttrib4sv, 559, VertexAttrib4sv@8)
713
	GL_STUB(VertexAttrib4ubv, 560, VertexAttrib4ubv@8)
714
	GL_STUB(VertexAttrib4uiv, 561, VertexAttrib4uiv@8)
715
	GL_STUB(VertexAttrib4usv, 562, VertexAttrib4usv@8)
716
	GL_STUB(VertexAttribPointer, 563, VertexAttribPointer@24)
717
	GL_STUB(UniformMatrix2x3fv, 564, UniformMatrix2x3fv@16)
718
	GL_STUB(UniformMatrix2x4fv, 565, UniformMatrix2x4fv@16)
719
	GL_STUB(UniformMatrix3x2fv, 566, UniformMatrix3x2fv@16)
720
	GL_STUB(UniformMatrix3x4fv, 567, UniformMatrix3x4fv@16)
721
	GL_STUB(UniformMatrix4x2fv, 568, UniformMatrix4x2fv@16)
722
	GL_STUB(UniformMatrix4x3fv, 569, UniformMatrix4x3fv@16)
723
	GL_STUB(BeginConditionalRender, 570, BeginConditionalRender@8)
724
	GL_STUB(BeginTransformFeedback, 571, BeginTransformFeedback@4)
725
	GL_STUB(BindBufferBase, 572, BindBufferBase@12)
726
	GL_STUB(BindBufferRange, 573, BindBufferRange@20)
727
	GL_STUB(BindFragDataLocation, 574, BindFragDataLocation@12)
728
	GL_STUB(ClampColor, 575, ClampColor@8)
729
	GL_STUB(ClearBufferfi, 576, ClearBufferfi@16)
730
	GL_STUB(ClearBufferfv, 577, ClearBufferfv@12)
731
	GL_STUB(ClearBufferiv, 578, ClearBufferiv@12)
732
	GL_STUB(ClearBufferuiv, 579, ClearBufferuiv@12)
733
	GL_STUB(ColorMaski, 580, ColorMaski@20)
734
	GL_STUB(Disablei, 581, Disablei@8)
735
	GL_STUB(Enablei, 582, Enablei@8)
736
	GL_STUB(EndConditionalRender, 583, EndConditionalRender@0)
737
	GL_STUB(EndTransformFeedback, 584, EndTransformFeedback@0)
738
	GL_STUB(GetBooleani_v, 585, GetBooleani_v@12)
739
	GL_STUB(GetFragDataLocation, 586, GetFragDataLocation@8)
740
	GL_STUB(GetIntegeri_v, 587, GetIntegeri_v@12)
741
	GL_STUB(GetStringi, 588, GetStringi@8)
742
	GL_STUB(GetTexParameterIiv, 589, GetTexParameterIiv@12)
743
	GL_STUB(GetTexParameterIuiv, 590, GetTexParameterIuiv@12)
744
	GL_STUB(GetTransformFeedbackVarying, 591, GetTransformFeedbackVarying@28)
745
	GL_STUB(GetUniformuiv, 592, GetUniformuiv@12)
746
	GL_STUB(GetVertexAttribIiv, 593, GetVertexAttribIiv@12)
747
	GL_STUB(GetVertexAttribIuiv, 594, GetVertexAttribIuiv@12)
748
	GL_STUB(IsEnabledi, 595, IsEnabledi@8)
749
	GL_STUB(TexParameterIiv, 596, TexParameterIiv@12)
750
	GL_STUB(TexParameterIuiv, 597, TexParameterIuiv@12)
751
	GL_STUB(TransformFeedbackVaryings, 598, TransformFeedbackVaryings@16)
752
	GL_STUB(Uniform1ui, 599, Uniform1ui@8)
753
	GL_STUB(Uniform1uiv, 600, Uniform1uiv@12)
754
	GL_STUB(Uniform2ui, 601, Uniform2ui@12)
755
	GL_STUB(Uniform2uiv, 602, Uniform2uiv@12)
756
	GL_STUB(Uniform3ui, 603, Uniform3ui@16)
757
	GL_STUB(Uniform3uiv, 604, Uniform3uiv@12)
758
	GL_STUB(Uniform4ui, 605, Uniform4ui@20)
759
	GL_STUB(Uniform4uiv, 606, Uniform4uiv@12)
760
	GL_STUB(VertexAttribI1iv, 607, VertexAttribI1iv@8)
761
	GL_STUB(VertexAttribI1uiv, 608, VertexAttribI1uiv@8)
762
	GL_STUB(VertexAttribI4bv, 609, VertexAttribI4bv@8)
763
	GL_STUB(VertexAttribI4sv, 610, VertexAttribI4sv@8)
764
	GL_STUB(VertexAttribI4ubv, 611, VertexAttribI4ubv@8)
765
	GL_STUB(VertexAttribI4usv, 612, VertexAttribI4usv@8)
766
	GL_STUB(VertexAttribIPointer, 613, VertexAttribIPointer@20)
767
	GL_STUB(PrimitiveRestartIndex, 614, PrimitiveRestartIndex@4)
768
	GL_STUB(TexBuffer, 615, TexBuffer@12)
769
	GL_STUB(FramebufferTexture, 616, FramebufferTexture@16)
770
	GL_STUB(GetBufferParameteri64v, 617, GetBufferParameteri64v@12)
771
	GL_STUB(GetInteger64i_v, 618, GetInteger64i_v@12)
772
	GL_STUB(VertexAttribDivisor, 619, VertexAttribDivisor@8)
773
	GL_STUB(BindProgramARB, 620, BindProgramARB@8)
774
	GL_STUB(DeleteProgramsARB, 621, DeleteProgramsARB@8)
775
	GL_STUB(GenProgramsARB, 622, GenProgramsARB@8)
776
	GL_STUB(GetProgramEnvParameterdvARB, 623, GetProgramEnvParameterdvARB@12)
777
	GL_STUB(GetProgramEnvParameterfvARB, 624, GetProgramEnvParameterfvARB@12)
778
	GL_STUB(GetProgramLocalParameterdvARB, 625, GetProgramLocalParameterdvARB@12)
779
	GL_STUB(GetProgramLocalParameterfvARB, 626, GetProgramLocalParameterfvARB@12)
780
	GL_STUB(GetProgramStringARB, 627, GetProgramStringARB@12)
781
	GL_STUB(GetProgramivARB, 628, GetProgramivARB@12)
782
	GL_STUB(IsProgramARB, 629, IsProgramARB@4)
783
	GL_STUB(ProgramEnvParameter4dARB, 630, ProgramEnvParameter4dARB@40)
784
	GL_STUB(ProgramEnvParameter4dvARB, 631, ProgramEnvParameter4dvARB@12)
785
	GL_STUB(ProgramEnvParameter4fARB, 632, ProgramEnvParameter4fARB@24)
786
	GL_STUB(ProgramEnvParameter4fvARB, 633, ProgramEnvParameter4fvARB@12)
787
	GL_STUB(ProgramLocalParameter4dARB, 634, ProgramLocalParameter4dARB@40)
788
	GL_STUB(ProgramLocalParameter4dvARB, 635, ProgramLocalParameter4dvARB@12)
789
	GL_STUB(ProgramLocalParameter4fARB, 636, ProgramLocalParameter4fARB@24)
790
	GL_STUB(ProgramLocalParameter4fvARB, 637, ProgramLocalParameter4fvARB@12)
791
	GL_STUB(ProgramStringARB, 638, ProgramStringARB@16)
792
	GL_STUB(VertexAttrib1fARB, 639, VertexAttrib1fARB@8)
793
	GL_STUB(VertexAttrib1fvARB, 640, VertexAttrib1fvARB@8)
794
	GL_STUB(VertexAttrib2fARB, 641, VertexAttrib2fARB@12)
795
	GL_STUB(VertexAttrib2fvARB, 642, VertexAttrib2fvARB@8)
796
	GL_STUB(VertexAttrib3fARB, 643, VertexAttrib3fARB@16)
797
	GL_STUB(VertexAttrib3fvARB, 644, VertexAttrib3fvARB@8)
798
	GL_STUB(VertexAttrib4fARB, 645, VertexAttrib4fARB@20)
799
	GL_STUB(VertexAttrib4fvARB, 646, VertexAttrib4fvARB@8)
800
	GL_STUB(AttachObjectARB, 647, AttachObjectARB@8)
801
	GL_STUB(CreateProgramObjectARB, 648, CreateProgramObjectARB@0)
802
	GL_STUB(CreateShaderObjectARB, 649, CreateShaderObjectARB@4)
803
	GL_STUB(DeleteObjectARB, 650, DeleteObjectARB@4)
804
	GL_STUB(DetachObjectARB, 651, DetachObjectARB@8)
805
	GL_STUB(GetAttachedObjectsARB, 652, GetAttachedObjectsARB@16)
806
	GL_STUB(GetHandleARB, 653, GetHandleARB@4)
807
	GL_STUB(GetInfoLogARB, 654, GetInfoLogARB@16)
808
	GL_STUB(GetObjectParameterfvARB, 655, GetObjectParameterfvARB@12)
809
	GL_STUB(GetObjectParameterivARB, 656, GetObjectParameterivARB@12)
810
	GL_STUB(DrawArraysInstancedARB, 657, DrawArraysInstancedARB@16)
811
	GL_STUB(DrawElementsInstancedARB, 658, DrawElementsInstancedARB@20)
812
	GL_STUB(BindFramebuffer, 659, BindFramebuffer@8)
813
	GL_STUB(BindRenderbuffer, 660, BindRenderbuffer@8)
814
	GL_STUB(BlitFramebuffer, 661, BlitFramebuffer@40)
815
	GL_STUB(CheckFramebufferStatus, 662, CheckFramebufferStatus@4)
816
	GL_STUB(DeleteFramebuffers, 663, DeleteFramebuffers@8)
817
	GL_STUB(DeleteRenderbuffers, 664, DeleteRenderbuffers@8)
818
	GL_STUB(FramebufferRenderbuffer, 665, FramebufferRenderbuffer@16)
819
	GL_STUB(FramebufferTexture1D, 666, FramebufferTexture1D@20)
820
	GL_STUB(FramebufferTexture2D, 667, FramebufferTexture2D@20)
821
	GL_STUB(FramebufferTexture3D, 668, FramebufferTexture3D@24)
822
	GL_STUB(FramebufferTextureLayer, 669, FramebufferTextureLayer@20)
823
	GL_STUB(GenFramebuffers, 670, GenFramebuffers@8)
824
	GL_STUB(GenRenderbuffers, 671, GenRenderbuffers@8)
825
	GL_STUB(GenerateMipmap, 672, GenerateMipmap@4)
826
	GL_STUB(GetFramebufferAttachmentParameteriv, 673, GetFramebufferAttachmentParameteriv@16)
827
	GL_STUB(GetRenderbufferParameteriv, 674, GetRenderbufferParameteriv@12)
828
	GL_STUB(IsFramebuffer, 675, IsFramebuffer@4)
829
	GL_STUB(IsRenderbuffer, 676, IsRenderbuffer@4)
830
	GL_STUB(RenderbufferStorage, 677, RenderbufferStorage@16)
831
	GL_STUB(RenderbufferStorageMultisample, 678, RenderbufferStorageMultisample@20)
832
	GL_STUB(FramebufferTextureFaceARB, 679, FramebufferTextureFaceARB@20)
833
	GL_STUB(FlushMappedBufferRange, 680, FlushMappedBufferRange@12)
834
	GL_STUB(MapBufferRange, 681, MapBufferRange@16)
835
	GL_STUB(BindVertexArray, 682, BindVertexArray@4)
836
	GL_STUB(DeleteVertexArrays, 683, DeleteVertexArrays@8)
837
	GL_STUB(GenVertexArrays, 684, GenVertexArrays@8)
838
	GL_STUB(IsVertexArray, 685, IsVertexArray@4)
839
	GL_STUB(GetActiveUniformBlockName, 686, GetActiveUniformBlockName@20)
840
	GL_STUB(GetActiveUniformBlockiv, 687, GetActiveUniformBlockiv@16)
841
	GL_STUB(GetActiveUniformName, 688, GetActiveUniformName@20)
842
	GL_STUB(GetActiveUniformsiv, 689, GetActiveUniformsiv@20)
843
	GL_STUB(GetUniformBlockIndex, 690, GetUniformBlockIndex@8)
844
	GL_STUB(GetUniformIndices, 691, GetUniformIndices@16)
845
	GL_STUB(UniformBlockBinding, 692, UniformBlockBinding@12)
846
	GL_STUB(CopyBufferSubData, 693, CopyBufferSubData@20)
847
	GL_STUB(ClientWaitSync, 694, ClientWaitSync@12)
848
	GL_STUB(DeleteSync, 695, DeleteSync@4)
849
	GL_STUB(FenceSync, 696, FenceSync@8)
850
	GL_STUB(GetInteger64v, 697, GetInteger64v@8)
851
	GL_STUB(GetSynciv, 698, GetSynciv@20)
852
	GL_STUB(IsSync, 699, IsSync@4)
853
	GL_STUB(WaitSync, 700, WaitSync@12)
854
	GL_STUB(DrawElementsBaseVertex, 701, DrawElementsBaseVertex@20)
855
	GL_STUB(DrawElementsInstancedBaseVertex, 702, DrawElementsInstancedBaseVertex@24)
856
	GL_STUB(DrawRangeElementsBaseVertex, 703, DrawRangeElementsBaseVertex@28)
857
	GL_STUB(MultiDrawElementsBaseVertex, 704, MultiDrawElementsBaseVertex@24)
858
	GL_STUB(ProvokingVertex, 705, ProvokingVertex@4)
859
	GL_STUB(GetMultisamplefv, 706, GetMultisamplefv@12)
860
	GL_STUB(SampleMaski, 707, SampleMaski@8)
861
	GL_STUB(TexImage2DMultisample, 708, TexImage2DMultisample@24)
862
	GL_STUB(TexImage3DMultisample, 709, TexImage3DMultisample@28)
863
	GL_STUB(BlendEquationSeparateiARB, 710, BlendEquationSeparateiARB@12)
864
	GL_STUB(BlendEquationiARB, 711, BlendEquationiARB@8)
865
	GL_STUB(BlendFuncSeparateiARB, 712, BlendFuncSeparateiARB@20)
866
	GL_STUB(BlendFunciARB, 713, BlendFunciARB@12)
867
	GL_STUB(BindFragDataLocationIndexed, 714, BindFragDataLocationIndexed@16)
868
	GL_STUB(GetFragDataIndex, 715, GetFragDataIndex@8)
869
	GL_STUB(BindSampler, 716, BindSampler@8)
870
	GL_STUB(DeleteSamplers, 717, DeleteSamplers@8)
871
	GL_STUB(GenSamplers, 718, GenSamplers@8)
872
	GL_STUB(GetSamplerParameterIiv, 719, GetSamplerParameterIiv@12)
873
	GL_STUB(GetSamplerParameterIuiv, 720, GetSamplerParameterIuiv@12)
874
	GL_STUB(GetSamplerParameterfv, 721, GetSamplerParameterfv@12)
875
	GL_STUB(GetSamplerParameteriv, 722, GetSamplerParameteriv@12)
876
	GL_STUB(IsSampler, 723, IsSampler@4)
877
	GL_STUB(SamplerParameterIiv, 724, SamplerParameterIiv@12)
878
	GL_STUB(SamplerParameterIuiv, 725, SamplerParameterIuiv@12)
879
	GL_STUB(SamplerParameterf, 726, SamplerParameterf@12)
880
	GL_STUB(SamplerParameterfv, 727, SamplerParameterfv@12)
881
	GL_STUB(SamplerParameteri, 728, SamplerParameteri@12)
882
	GL_STUB(SamplerParameteriv, 729, SamplerParameteriv@12)
883
	GL_STUB(_dispatch_stub_730, 730, _dispatch_stub_730@12)
884
	HIDDEN(GL_PREFIX(_dispatch_stub_730, _dispatch_stub_730@12))
885
	GL_STUB(_dispatch_stub_731, 731, _dispatch_stub_731@12)
886
	HIDDEN(GL_PREFIX(_dispatch_stub_731, _dispatch_stub_731@12))
887
	GL_STUB(_dispatch_stub_732, 732, _dispatch_stub_732@8)
888
	HIDDEN(GL_PREFIX(_dispatch_stub_732, _dispatch_stub_732@8))
889
	GL_STUB(ColorP3ui, 733, ColorP3ui@8)
890
	GL_STUB(ColorP3uiv, 734, ColorP3uiv@8)
891
	GL_STUB(ColorP4ui, 735, ColorP4ui@8)
892
	GL_STUB(ColorP4uiv, 736, ColorP4uiv@8)
893
	GL_STUB(MultiTexCoordP1ui, 737, MultiTexCoordP1ui@12)
894
	GL_STUB(MultiTexCoordP1uiv, 738, MultiTexCoordP1uiv@12)
895
	GL_STUB(MultiTexCoordP2ui, 739, MultiTexCoordP2ui@12)
896
	GL_STUB(MultiTexCoordP2uiv, 740, MultiTexCoordP2uiv@12)
897
	GL_STUB(MultiTexCoordP3ui, 741, MultiTexCoordP3ui@12)
898
	GL_STUB(MultiTexCoordP3uiv, 742, MultiTexCoordP3uiv@12)
899
	GL_STUB(MultiTexCoordP4ui, 743, MultiTexCoordP4ui@12)
900
	GL_STUB(MultiTexCoordP4uiv, 744, MultiTexCoordP4uiv@12)
901
	GL_STUB(NormalP3ui, 745, NormalP3ui@8)
902
	GL_STUB(NormalP3uiv, 746, NormalP3uiv@8)
903
	GL_STUB(SecondaryColorP3ui, 747, SecondaryColorP3ui@8)
904
	GL_STUB(SecondaryColorP3uiv, 748, SecondaryColorP3uiv@8)
905
	GL_STUB(TexCoordP1ui, 749, TexCoordP1ui@8)
906
	GL_STUB(TexCoordP1uiv, 750, TexCoordP1uiv@8)
907
	GL_STUB(TexCoordP2ui, 751, TexCoordP2ui@8)
908
	GL_STUB(TexCoordP2uiv, 752, TexCoordP2uiv@8)
909
	GL_STUB(TexCoordP3ui, 753, TexCoordP3ui@8)
910
	GL_STUB(TexCoordP3uiv, 754, TexCoordP3uiv@8)
911
	GL_STUB(TexCoordP4ui, 755, TexCoordP4ui@8)
912
	GL_STUB(TexCoordP4uiv, 756, TexCoordP4uiv@8)
913
	GL_STUB(VertexAttribP1ui, 757, VertexAttribP1ui@16)
914
	GL_STUB(VertexAttribP1uiv, 758, VertexAttribP1uiv@16)
915
	GL_STUB(VertexAttribP2ui, 759, VertexAttribP2ui@16)
916
	GL_STUB(VertexAttribP2uiv, 760, VertexAttribP2uiv@16)
917
	GL_STUB(VertexAttribP3ui, 761, VertexAttribP3ui@16)
918
	GL_STUB(VertexAttribP3uiv, 762, VertexAttribP3uiv@16)
919
	GL_STUB(VertexAttribP4ui, 763, VertexAttribP4ui@16)
920
	GL_STUB(VertexAttribP4uiv, 764, VertexAttribP4uiv@16)
921
	GL_STUB(VertexP2ui, 765, VertexP2ui@8)
922
	GL_STUB(VertexP2uiv, 766, VertexP2uiv@8)
923
	GL_STUB(VertexP3ui, 767, VertexP3ui@8)
924
	GL_STUB(VertexP3uiv, 768, VertexP3uiv@8)
925
	GL_STUB(VertexP4ui, 769, VertexP4ui@8)
926
	GL_STUB(VertexP4uiv, 770, VertexP4uiv@8)
927
	GL_STUB(BindTransformFeedback, 771, BindTransformFeedback@8)
928
	GL_STUB(DeleteTransformFeedbacks, 772, DeleteTransformFeedbacks@8)
929
	GL_STUB(DrawTransformFeedback, 773, DrawTransformFeedback@8)
930
	GL_STUB(GenTransformFeedbacks, 774, GenTransformFeedbacks@8)
931
	GL_STUB(IsTransformFeedback, 775, IsTransformFeedback@4)
932
	GL_STUB(PauseTransformFeedback, 776, PauseTransformFeedback@0)
933
	GL_STUB(ResumeTransformFeedback, 777, ResumeTransformFeedback@0)
934
	GL_STUB(BeginQueryIndexed, 778, BeginQueryIndexed@12)
935
	GL_STUB(DrawTransformFeedbackStream, 779, DrawTransformFeedbackStream@12)
936
	GL_STUB(EndQueryIndexed, 780, EndQueryIndexed@8)
937
	GL_STUB(GetQueryIndexediv, 781, GetQueryIndexediv@16)
938
	GL_STUB(ClearDepthf, 782, ClearDepthf@4)
939
	GL_STUB(DepthRangef, 783, DepthRangef@8)
940
	GL_STUB(GetShaderPrecisionFormat, 784, GetShaderPrecisionFormat@16)
941
	GL_STUB(ReleaseShaderCompiler, 785, ReleaseShaderCompiler@0)
942
	GL_STUB(ShaderBinary, 786, ShaderBinary@20)
943
	GL_STUB(GetProgramBinary, 787, GetProgramBinary@20)
944
	GL_STUB(ProgramBinary, 788, ProgramBinary@16)
945
	GL_STUB(ProgramParameteri, 789, ProgramParameteri@12)
946
	GL_STUB(DebugMessageCallbackARB, 790, DebugMessageCallbackARB@8)
947
	GL_STUB(DebugMessageControlARB, 791, DebugMessageControlARB@24)
948
	GL_STUB(DebugMessageInsertARB, 792, DebugMessageInsertARB@24)
949
	GL_STUB(GetDebugMessageLogARB, 793, GetDebugMessageLogARB@32)
950
	GL_STUB(GetGraphicsResetStatusARB, 794, GetGraphicsResetStatusARB@0)
951
	GL_STUB(GetnColorTableARB, 795, GetnColorTableARB@20)
952
	GL_STUB(GetnCompressedTexImageARB, 796, GetnCompressedTexImageARB@16)
953
	GL_STUB(GetnConvolutionFilterARB, 797, GetnConvolutionFilterARB@20)
954
	GL_STUB(GetnHistogramARB, 798, GetnHistogramARB@24)
955
	GL_STUB(GetnMapdvARB, 799, GetnMapdvARB@16)
956
	GL_STUB(GetnMapfvARB, 800, GetnMapfvARB@16)
957
	GL_STUB(GetnMapivARB, 801, GetnMapivARB@16)
958
	GL_STUB(GetnMinmaxARB, 802, GetnMinmaxARB@24)
959
	GL_STUB(GetnPixelMapfvARB, 803, GetnPixelMapfvARB@12)
960
	GL_STUB(GetnPixelMapuivARB, 804, GetnPixelMapuivARB@12)
961
	GL_STUB(GetnPixelMapusvARB, 805, GetnPixelMapusvARB@12)
962
	GL_STUB(GetnPolygonStippleARB, 806, GetnPolygonStippleARB@8)
963
	GL_STUB(GetnSeparableFilterARB, 807, GetnSeparableFilterARB@32)
964
	GL_STUB(GetnTexImageARB, 808, GetnTexImageARB@24)
965
	GL_STUB(GetnUniformdvARB, 809, GetnUniformdvARB@16)
966
	GL_STUB(GetnUniformfvARB, 810, GetnUniformfvARB@16)
967
	GL_STUB(GetnUniformivARB, 811, GetnUniformivARB@16)
968
	GL_STUB(GetnUniformuivARB, 812, GetnUniformuivARB@16)
969
	GL_STUB(ReadnPixelsARB, 813, ReadnPixelsARB@32)
970
	GL_STUB(DrawArraysInstancedBaseInstance, 814, DrawArraysInstancedBaseInstance@20)
971
	GL_STUB(DrawElementsInstancedBaseInstance, 815, DrawElementsInstancedBaseInstance@24)
972
	GL_STUB(DrawElementsInstancedBaseVertexBaseInstance, 816, DrawElementsInstancedBaseVertexBaseInstance@28)
973
	GL_STUB(DrawTransformFeedbackInstanced, 817, DrawTransformFeedbackInstanced@12)
974
	GL_STUB(DrawTransformFeedbackStreamInstanced, 818, DrawTransformFeedbackStreamInstanced@16)
975
	GL_STUB(_dispatch_stub_819, 819, _dispatch_stub_819@20)
976
	HIDDEN(GL_PREFIX(_dispatch_stub_819, _dispatch_stub_819@20))
977
	GL_STUB(TexStorage1D, 820, TexStorage1D@16)
978
	GL_STUB(TexStorage2D, 821, TexStorage2D@20)
979
	GL_STUB(TexStorage3D, 822, TexStorage3D@24)
980
	GL_STUB(TextureStorage1DEXT, 823, TextureStorage1DEXT@20)
981
	GL_STUB(TextureStorage2DEXT, 824, TextureStorage2DEXT@24)
982
	GL_STUB(TextureStorage3DEXT, 825, TextureStorage3DEXT@28)
983
	GL_STUB(TexBufferRange, 826, TexBufferRange@20)
984
	GL_STUB(TexStorage2DMultisample, 827, TexStorage2DMultisample@24)
985
	GL_STUB(TexStorage3DMultisample, 828, TexStorage3DMultisample@28)
986
	GL_STUB(InvalidateBufferData, 829, InvalidateBufferData@4)
987
	GL_STUB(InvalidateBufferSubData, 830, InvalidateBufferSubData@12)
988
	GL_STUB(InvalidateFramebuffer, 831, InvalidateFramebuffer@12)
989
	GL_STUB(InvalidateSubFramebuffer, 832, InvalidateSubFramebuffer@28)
990
	GL_STUB(InvalidateTexImage, 833, InvalidateTexImage@8)
991
	GL_STUB(InvalidateTexSubImage, 834, InvalidateTexSubImage@32)
992
	GL_STUB(PolygonOffsetEXT, 835, PolygonOffsetEXT@8)
993
	GL_STUB(_dispatch_stub_836, 836, _dispatch_stub_836@20)
994
	HIDDEN(GL_PREFIX(_dispatch_stub_836, _dispatch_stub_836@20))
995
	GL_STUB(_dispatch_stub_837, 837, _dispatch_stub_837@4)
996
	HIDDEN(GL_PREFIX(_dispatch_stub_837, _dispatch_stub_837@4))
997
	GL_STUB(_dispatch_stub_838, 838, _dispatch_stub_838@20)
998
	HIDDEN(GL_PREFIX(_dispatch_stub_838, _dispatch_stub_838@20))
999
	GL_STUB(_dispatch_stub_839, 839, _dispatch_stub_839@4)
1000
	HIDDEN(GL_PREFIX(_dispatch_stub_839, _dispatch_stub_839@4))
1001
	GL_STUB(_dispatch_stub_840, 840, _dispatch_stub_840@20)
1002
	HIDDEN(GL_PREFIX(_dispatch_stub_840, _dispatch_stub_840@20))
1003
	GL_STUB(_dispatch_stub_841, 841, _dispatch_stub_841@4)
1004
	HIDDEN(GL_PREFIX(_dispatch_stub_841, _dispatch_stub_841@4))
1005
	GL_STUB(_dispatch_stub_842, 842, _dispatch_stub_842@20)
1006
	HIDDEN(GL_PREFIX(_dispatch_stub_842, _dispatch_stub_842@20))
1007
	GL_STUB(_dispatch_stub_843, 843, _dispatch_stub_843@4)
1008
	HIDDEN(GL_PREFIX(_dispatch_stub_843, _dispatch_stub_843@4))
1009
	GL_STUB(_dispatch_stub_844, 844, _dispatch_stub_844@12)
1010
	HIDDEN(GL_PREFIX(_dispatch_stub_844, _dispatch_stub_844@12))
1011
	GL_STUB(_dispatch_stub_845, 845, _dispatch_stub_845@8)
1012
	HIDDEN(GL_PREFIX(_dispatch_stub_845, _dispatch_stub_845@8))
1013
	GL_STUB(_dispatch_stub_846, 846, _dispatch_stub_846@8)
1014
	HIDDEN(GL_PREFIX(_dispatch_stub_846, _dispatch_stub_846@8))
1015
	GL_STUB(_dispatch_stub_847, 847, _dispatch_stub_847@4)
1016
	HIDDEN(GL_PREFIX(_dispatch_stub_847, _dispatch_stub_847@4))
1017
	GL_STUB(ColorPointerEXT, 848, ColorPointerEXT@20)
1018
	GL_STUB(EdgeFlagPointerEXT, 849, EdgeFlagPointerEXT@12)
1019
	GL_STUB(IndexPointerEXT, 850, IndexPointerEXT@16)
1020
	GL_STUB(NormalPointerEXT, 851, NormalPointerEXT@16)
1021
	GL_STUB(TexCoordPointerEXT, 852, TexCoordPointerEXT@20)
1022
	GL_STUB(VertexPointerEXT, 853, VertexPointerEXT@20)
1023
	GL_STUB(_dispatch_stub_854, 854, _dispatch_stub_854@12)
1024
	HIDDEN(GL_PREFIX(_dispatch_stub_854, _dispatch_stub_854@12))
1025
	GL_STUB(LockArraysEXT, 855, LockArraysEXT@8)
1026
	GL_STUB(UnlockArraysEXT, 856, UnlockArraysEXT@0)
1027
	GL_STUB(SecondaryColor3fEXT, 857, SecondaryColor3fEXT@12)
1028
	GL_STUB(SecondaryColor3fvEXT, 858, SecondaryColor3fvEXT@4)
1029
	GL_STUB(MultiDrawElementsEXT, 859, MultiDrawElementsEXT@20)
1030
	GL_STUB(FogCoordfEXT, 860, FogCoordfEXT@4)
1031
	GL_STUB(FogCoordfvEXT, 861, FogCoordfvEXT@4)
1032
	GL_STUB(ResizeBuffersMESA, 862, ResizeBuffersMESA@0)
1033
	GL_STUB(WindowPos4dMESA, 863, WindowPos4dMESA@32)
1034
	GL_STUB(WindowPos4dvMESA, 864, WindowPos4dvMESA@4)
1035
	GL_STUB(WindowPos4fMESA, 865, WindowPos4fMESA@16)
1036
	GL_STUB(WindowPos4fvMESA, 866, WindowPos4fvMESA@4)
1037
	GL_STUB(WindowPos4iMESA, 867, WindowPos4iMESA@16)
1038
	GL_STUB(WindowPos4ivMESA, 868, WindowPos4ivMESA@4)
1039
	GL_STUB(WindowPos4sMESA, 869, WindowPos4sMESA@16)
1040
	GL_STUB(WindowPos4svMESA, 870, WindowPos4svMESA@4)
1041
	GL_STUB(_dispatch_stub_871, 871, _dispatch_stub_871@20)
1042
	HIDDEN(GL_PREFIX(_dispatch_stub_871, _dispatch_stub_871@20))
1043
	GL_STUB(_dispatch_stub_872, 872, _dispatch_stub_872@24)
1044
	HIDDEN(GL_PREFIX(_dispatch_stub_872, _dispatch_stub_872@24))
1045
	GL_STUB(AreProgramsResidentNV, 873, AreProgramsResidentNV@12)
1046
	GL_STUB(ExecuteProgramNV, 874, ExecuteProgramNV@12)
1047
	GL_STUB(GetProgramParameterdvNV, 875, GetProgramParameterdvNV@16)
1048
	GL_STUB(GetProgramParameterfvNV, 876, GetProgramParameterfvNV@16)
1049
	GL_STUB(GetProgramStringNV, 877, GetProgramStringNV@12)
1050
	GL_STUB(GetProgramivNV, 878, GetProgramivNV@12)
1051
	GL_STUB(GetTrackMatrixivNV, 879, GetTrackMatrixivNV@16)
1052
	GL_STUB(GetVertexAttribdvNV, 880, GetVertexAttribdvNV@12)
1053
	GL_STUB(GetVertexAttribfvNV, 881, GetVertexAttribfvNV@12)
1054
	GL_STUB(GetVertexAttribivNV, 882, GetVertexAttribivNV@12)
1055
	GL_STUB(LoadProgramNV, 883, LoadProgramNV@16)
1056
	GL_STUB(ProgramParameters4dvNV, 884, ProgramParameters4dvNV@16)
1057
	GL_STUB(ProgramParameters4fvNV, 885, ProgramParameters4fvNV@16)
1058
	GL_STUB(RequestResidentProgramsNV, 886, RequestResidentProgramsNV@8)
1059
	GL_STUB(TrackMatrixNV, 887, TrackMatrixNV@16)
1060
	GL_STUB(VertexAttrib1dNV, 888, VertexAttrib1dNV@12)
1061
	GL_STUB(VertexAttrib1dvNV, 889, VertexAttrib1dvNV@8)
1062
	GL_STUB(VertexAttrib1fNV, 890, VertexAttrib1fNV@8)
1063
	GL_STUB(VertexAttrib1fvNV, 891, VertexAttrib1fvNV@8)
1064
	GL_STUB(VertexAttrib1sNV, 892, VertexAttrib1sNV@8)
1065
	GL_STUB(VertexAttrib1svNV, 893, VertexAttrib1svNV@8)
1066
	GL_STUB(VertexAttrib2dNV, 894, VertexAttrib2dNV@20)
1067
	GL_STUB(VertexAttrib2dvNV, 895, VertexAttrib2dvNV@8)
1068
	GL_STUB(VertexAttrib2fNV, 896, VertexAttrib2fNV@12)
1069
	GL_STUB(VertexAttrib2fvNV, 897, VertexAttrib2fvNV@8)
1070
	GL_STUB(VertexAttrib2sNV, 898, VertexAttrib2sNV@12)
1071
	GL_STUB(VertexAttrib2svNV, 899, VertexAttrib2svNV@8)
1072
	GL_STUB(VertexAttrib3dNV, 900, VertexAttrib3dNV@28)
1073
	GL_STUB(VertexAttrib3dvNV, 901, VertexAttrib3dvNV@8)
1074
	GL_STUB(VertexAttrib3fNV, 902, VertexAttrib3fNV@16)
1075
	GL_STUB(VertexAttrib3fvNV, 903, VertexAttrib3fvNV@8)
1076
	GL_STUB(VertexAttrib3sNV, 904, VertexAttrib3sNV@16)
1077
	GL_STUB(VertexAttrib3svNV, 905, VertexAttrib3svNV@8)
1078
	GL_STUB(VertexAttrib4dNV, 906, VertexAttrib4dNV@36)
1079
	GL_STUB(VertexAttrib4dvNV, 907, VertexAttrib4dvNV@8)
1080
	GL_STUB(VertexAttrib4fNV, 908, VertexAttrib4fNV@20)
1081
	GL_STUB(VertexAttrib4fvNV, 909, VertexAttrib4fvNV@8)
1082
	GL_STUB(VertexAttrib4sNV, 910, VertexAttrib4sNV@20)
1083
	GL_STUB(VertexAttrib4svNV, 911, VertexAttrib4svNV@8)
1084
	GL_STUB(VertexAttrib4ubNV, 912, VertexAttrib4ubNV@20)
1085
	GL_STUB(VertexAttrib4ubvNV, 913, VertexAttrib4ubvNV@8)
1086
	GL_STUB(VertexAttribPointerNV, 914, VertexAttribPointerNV@20)
1087
	GL_STUB(VertexAttribs1dvNV, 915, VertexAttribs1dvNV@12)
1088
	GL_STUB(VertexAttribs1fvNV, 916, VertexAttribs1fvNV@12)
1089
	GL_STUB(VertexAttribs1svNV, 917, VertexAttribs1svNV@12)
1090
	GL_STUB(VertexAttribs2dvNV, 918, VertexAttribs2dvNV@12)
1091
	GL_STUB(VertexAttribs2fvNV, 919, VertexAttribs2fvNV@12)
1092
	GL_STUB(VertexAttribs2svNV, 920, VertexAttribs2svNV@12)
1093
	GL_STUB(VertexAttribs3dvNV, 921, VertexAttribs3dvNV@12)
1094
	GL_STUB(VertexAttribs3fvNV, 922, VertexAttribs3fvNV@12)
1095
	GL_STUB(VertexAttribs3svNV, 923, VertexAttribs3svNV@12)
1096
	GL_STUB(VertexAttribs4dvNV, 924, VertexAttribs4dvNV@12)
1097
	GL_STUB(VertexAttribs4fvNV, 925, VertexAttribs4fvNV@12)
1098
	GL_STUB(VertexAttribs4svNV, 926, VertexAttribs4svNV@12)
1099
	GL_STUB(VertexAttribs4ubvNV, 927, VertexAttribs4ubvNV@12)
1100
	GL_STUB(GetTexBumpParameterfvATI, 928, GetTexBumpParameterfvATI@8)
1101
	GL_STUB(GetTexBumpParameterivATI, 929, GetTexBumpParameterivATI@8)
1102
	GL_STUB(TexBumpParameterfvATI, 930, TexBumpParameterfvATI@8)
1103
	GL_STUB(TexBumpParameterivATI, 931, TexBumpParameterivATI@8)
1104
	GL_STUB(AlphaFragmentOp1ATI, 932, AlphaFragmentOp1ATI@24)
1105
	GL_STUB(AlphaFragmentOp2ATI, 933, AlphaFragmentOp2ATI@36)
1106
	GL_STUB(AlphaFragmentOp3ATI, 934, AlphaFragmentOp3ATI@48)
1107
	GL_STUB(BeginFragmentShaderATI, 935, BeginFragmentShaderATI@0)
1108
	GL_STUB(BindFragmentShaderATI, 936, BindFragmentShaderATI@4)
1109
	GL_STUB(ColorFragmentOp1ATI, 937, ColorFragmentOp1ATI@28)
1110
	GL_STUB(ColorFragmentOp2ATI, 938, ColorFragmentOp2ATI@40)
1111
	GL_STUB(ColorFragmentOp3ATI, 939, ColorFragmentOp3ATI@52)
1112
	GL_STUB(DeleteFragmentShaderATI, 940, DeleteFragmentShaderATI@4)
1113
	GL_STUB(EndFragmentShaderATI, 941, EndFragmentShaderATI@0)
1114
	GL_STUB(GenFragmentShadersATI, 942, GenFragmentShadersATI@4)
1115
	GL_STUB(PassTexCoordATI, 943, PassTexCoordATI@12)
1116
	GL_STUB(SampleMapATI, 944, SampleMapATI@12)
1117
	GL_STUB(SetFragmentShaderConstantATI, 945, SetFragmentShaderConstantATI@8)
1118
	GL_STUB(_dispatch_stub_946, 946, _dispatch_stub_946@4)
1119
	HIDDEN(GL_PREFIX(_dispatch_stub_946, _dispatch_stub_946@4))
1120
	GL_STUB(_dispatch_stub_947, 947, _dispatch_stub_947@4)
1121
	HIDDEN(GL_PREFIX(_dispatch_stub_947, _dispatch_stub_947@4))
1122
	GL_STUB(_dispatch_stub_948, 948, _dispatch_stub_948@8)
1123
	HIDDEN(GL_PREFIX(_dispatch_stub_948, _dispatch_stub_948@8))
1124
	GL_STUB(GetProgramNamedParameterdvNV, 949, GetProgramNamedParameterdvNV@16)
1125
	GL_STUB(GetProgramNamedParameterfvNV, 950, GetProgramNamedParameterfvNV@16)
1126
	GL_STUB(ProgramNamedParameter4dNV, 951, ProgramNamedParameter4dNV@44)
1127
	GL_STUB(ProgramNamedParameter4dvNV, 952, ProgramNamedParameter4dvNV@16)
1128
	GL_STUB(ProgramNamedParameter4fNV, 953, ProgramNamedParameter4fNV@28)
1129
	GL_STUB(ProgramNamedParameter4fvNV, 954, ProgramNamedParameter4fvNV@16)
1130
	GL_STUB(PrimitiveRestartNV, 955, PrimitiveRestartNV@0)
1131
	GL_STUB(_dispatch_stub_956, 956, _dispatch_stub_956@12)
1132
	HIDDEN(GL_PREFIX(_dispatch_stub_956, _dispatch_stub_956@12))
1133
	GL_STUB(_dispatch_stub_957, 957, _dispatch_stub_957@12)
1134
	HIDDEN(GL_PREFIX(_dispatch_stub_957, _dispatch_stub_957@12))
1135
	GL_STUB(_dispatch_stub_958, 958, _dispatch_stub_958@12)
1136
	HIDDEN(GL_PREFIX(_dispatch_stub_958, _dispatch_stub_958@12))
1137
	GL_STUB(_dispatch_stub_959, 959, _dispatch_stub_959@16)
1138
	HIDDEN(GL_PREFIX(_dispatch_stub_959, _dispatch_stub_959@16))
1139
	GL_STUB(BindFramebufferEXT, 960, BindFramebufferEXT@8)
1140
	GL_STUB(BindRenderbufferEXT, 961, BindRenderbufferEXT@8)
1141
	GL_STUB(_dispatch_stub_962, 962, _dispatch_stub_962@12)
1142
	HIDDEN(GL_PREFIX(_dispatch_stub_962, _dispatch_stub_962@12))
1143
	GL_STUB(_dispatch_stub_963, 963, _dispatch_stub_963@12)
1144
	HIDDEN(GL_PREFIX(_dispatch_stub_963, _dispatch_stub_963@12))
1145
	GL_STUB(VertexAttribI1iEXT, 964, VertexAttribI1iEXT@8)
1146
	GL_STUB(VertexAttribI1uiEXT, 965, VertexAttribI1uiEXT@8)
1147
	GL_STUB(VertexAttribI2iEXT, 966, VertexAttribI2iEXT@12)
1148
	GL_STUB(VertexAttribI2ivEXT, 967, VertexAttribI2ivEXT@8)
1149
	GL_STUB(VertexAttribI2uiEXT, 968, VertexAttribI2uiEXT@12)
1150
	GL_STUB(VertexAttribI2uivEXT, 969, VertexAttribI2uivEXT@8)
1151
	GL_STUB(VertexAttribI3iEXT, 970, VertexAttribI3iEXT@16)
1152
	GL_STUB(VertexAttribI3ivEXT, 971, VertexAttribI3ivEXT@8)
1153
	GL_STUB(VertexAttribI3uiEXT, 972, VertexAttribI3uiEXT@16)
1154
	GL_STUB(VertexAttribI3uivEXT, 973, VertexAttribI3uivEXT@8)
1155
	GL_STUB(VertexAttribI4iEXT, 974, VertexAttribI4iEXT@20)
1156
	GL_STUB(VertexAttribI4ivEXT, 975, VertexAttribI4ivEXT@8)
1157
	GL_STUB(VertexAttribI4uiEXT, 976, VertexAttribI4uiEXT@20)
1158
	GL_STUB(VertexAttribI4uivEXT, 977, VertexAttribI4uivEXT@8)
1159
	GL_STUB(ClearColorIiEXT, 978, ClearColorIiEXT@16)
1160
	GL_STUB(ClearColorIuiEXT, 979, ClearColorIuiEXT@16)
1161
	GL_STUB(BindBufferOffsetEXT, 980, BindBufferOffsetEXT@16)
1162
	GL_STUB(GetObjectParameterivAPPLE, 981, GetObjectParameterivAPPLE@16)
1163
	GL_STUB(ObjectPurgeableAPPLE, 982, ObjectPurgeableAPPLE@12)
1164
	GL_STUB(ObjectUnpurgeableAPPLE, 983, ObjectUnpurgeableAPPLE@12)
1165
	GL_STUB(ActiveProgramEXT, 984, ActiveProgramEXT@4)
1166
	GL_STUB(CreateShaderProgramEXT, 985, CreateShaderProgramEXT@8)
1167
	GL_STUB(UseShaderProgramEXT, 986, UseShaderProgramEXT@8)
1168
	GL_STUB(TextureBarrierNV, 987, TextureBarrierNV@0)
1169
	GL_STUB(_dispatch_stub_988, 988, _dispatch_stub_988@16)
1170
	HIDDEN(GL_PREFIX(_dispatch_stub_988, _dispatch_stub_988@16))
1171
	GL_STUB(_dispatch_stub_989, 989, _dispatch_stub_989@16)
1172
	HIDDEN(GL_PREFIX(_dispatch_stub_989, _dispatch_stub_989@16))
1173
	GL_STUB(_dispatch_stub_990, 990, _dispatch_stub_990@16)
1174
	HIDDEN(GL_PREFIX(_dispatch_stub_990, _dispatch_stub_990@16))
1175
	GL_STUB(EGLImageTargetRenderbufferStorageOES, 991, EGLImageTargetRenderbufferStorageOES@8)
1176
	GL_STUB(EGLImageTargetTexture2DOES, 992, EGLImageTargetTexture2DOES@8)
1177
	GL_STUB(_dispatch_stub_993, 993, _dispatch_stub_993@8)
1178
	HIDDEN(GL_PREFIX(_dispatch_stub_993, _dispatch_stub_993@8))
1179
	GL_STUB(_dispatch_stub_994, 994, _dispatch_stub_994@16)
1180
	HIDDEN(GL_PREFIX(_dispatch_stub_994, _dispatch_stub_994@16))
1181
	GL_STUB(_dispatch_stub_995, 995, _dispatch_stub_995@4)
1182
	HIDDEN(GL_PREFIX(_dispatch_stub_995, _dispatch_stub_995@4))
1183
	GL_STUB(_dispatch_stub_996, 996, _dispatch_stub_996@16)
1184
	HIDDEN(GL_PREFIX(_dispatch_stub_996, _dispatch_stub_996@16))
1185
	GL_STUB(_dispatch_stub_997, 997, _dispatch_stub_997@8)
1186
	HIDDEN(GL_PREFIX(_dispatch_stub_997, _dispatch_stub_997@8))
1187
	GL_STUB(_dispatch_stub_998, 998, _dispatch_stub_998@8)
1188
	HIDDEN(GL_PREFIX(_dispatch_stub_998, _dispatch_stub_998@8))
1189
	GL_STUB(_dispatch_stub_999, 999, _dispatch_stub_999@8)
1190
	HIDDEN(GL_PREFIX(_dispatch_stub_999, _dispatch_stub_999@8))
1191
	GL_STUB(_dispatch_stub_1000, 1000, _dispatch_stub_1000@24)
1192
	HIDDEN(GL_PREFIX(_dispatch_stub_1000, _dispatch_stub_1000@24))
1193
	GL_STUB(_dispatch_stub_1001, 1001, _dispatch_stub_1001@24)
1194
	HIDDEN(GL_PREFIX(_dispatch_stub_1001, _dispatch_stub_1001@24))
1195
	GL_STUB(_dispatch_stub_1002, 1002, _dispatch_stub_1002@8)
1196
	HIDDEN(GL_PREFIX(_dispatch_stub_1002, _dispatch_stub_1002@8))
1197
	GL_STUB(_dispatch_stub_1003, 1003, _dispatch_stub_1003@8)
1198
	HIDDEN(GL_PREFIX(_dispatch_stub_1003, _dispatch_stub_1003@8))
1199
	GL_STUB(_dispatch_stub_1004, 1004, _dispatch_stub_1004@12)
1200
	HIDDEN(GL_PREFIX(_dispatch_stub_1004, _dispatch_stub_1004@12))
1201
	GL_STUB(_dispatch_stub_1005, 1005, _dispatch_stub_1005@12)
1202
	HIDDEN(GL_PREFIX(_dispatch_stub_1005, _dispatch_stub_1005@12))
1203
	GL_STUB(_dispatch_stub_1006, 1006, _dispatch_stub_1006@4)
1204
	HIDDEN(GL_PREFIX(_dispatch_stub_1006, _dispatch_stub_1006@4))
1205
	GL_STUB(_dispatch_stub_1007, 1007, _dispatch_stub_1007@4)
1206
	HIDDEN(GL_PREFIX(_dispatch_stub_1007, _dispatch_stub_1007@4))
1207
	GL_STUB(_dispatch_stub_1008, 1008, _dispatch_stub_1008@12)
1208
	HIDDEN(GL_PREFIX(_dispatch_stub_1008, _dispatch_stub_1008@12))
1209
	GL_STUB(_dispatch_stub_1009, 1009, _dispatch_stub_1009@12)
1210
	HIDDEN(GL_PREFIX(_dispatch_stub_1009, _dispatch_stub_1009@12))
1211
	GL_STUB(_dispatch_stub_1010, 1010, _dispatch_stub_1010@4)
1212
	HIDDEN(GL_PREFIX(_dispatch_stub_1010, _dispatch_stub_1010@4))
1213
	GL_STUB(_dispatch_stub_1011, 1011, _dispatch_stub_1011@20)
1214
	HIDDEN(GL_PREFIX(_dispatch_stub_1011, _dispatch_stub_1011@20))
1215
	GL_STUB(_dispatch_stub_1012, 1012, _dispatch_stub_1012@12)
1216
	HIDDEN(GL_PREFIX(_dispatch_stub_1012, _dispatch_stub_1012@12))
1217
	GL_STUB(_dispatch_stub_1013, 1013, _dispatch_stub_1013@24)
1218
	HIDDEN(GL_PREFIX(_dispatch_stub_1013, _dispatch_stub_1013@24))
1219
	GL_STUB(_dispatch_stub_1014, 1014, _dispatch_stub_1014@24)
1220
	HIDDEN(GL_PREFIX(_dispatch_stub_1014, _dispatch_stub_1014@24))
1221
	GL_STUB(_dispatch_stub_1015, 1015, _dispatch_stub_1015@4)
1222
	HIDDEN(GL_PREFIX(_dispatch_stub_1015, _dispatch_stub_1015@4))
1223
	GL_STUB(_dispatch_stub_1016, 1016, _dispatch_stub_1016@8)
1224
	HIDDEN(GL_PREFIX(_dispatch_stub_1016, _dispatch_stub_1016@8))
1225
	GL_STUB(_dispatch_stub_1017, 1017, _dispatch_stub_1017@16)
1226
	HIDDEN(GL_PREFIX(_dispatch_stub_1017, _dispatch_stub_1017@16))
1227
	GL_STUB(_dispatch_stub_1018, 1018, _dispatch_stub_1018@8)
1228
	HIDDEN(GL_PREFIX(_dispatch_stub_1018, _dispatch_stub_1018@8))
1229
	GL_STUB(_dispatch_stub_1019, 1019, _dispatch_stub_1019@12)
1230
	HIDDEN(GL_PREFIX(_dispatch_stub_1019, _dispatch_stub_1019@12))
1231
	GL_STUB(_dispatch_stub_1020, 1020, _dispatch_stub_1020@12)
1232
	HIDDEN(GL_PREFIX(_dispatch_stub_1020, _dispatch_stub_1020@12))
1233
	GL_STUB(_dispatch_stub_1021, 1021, _dispatch_stub_1021@12)
1234
	HIDDEN(GL_PREFIX(_dispatch_stub_1021, _dispatch_stub_1021@12))
1235
	GL_STUB(_dispatch_stub_1022, 1022, _dispatch_stub_1022@12)
1236
	HIDDEN(GL_PREFIX(_dispatch_stub_1022, _dispatch_stub_1022@12))
1237
	GL_STUB(_dispatch_stub_1023, 1023, _dispatch_stub_1023@12)
1238
	HIDDEN(GL_PREFIX(_dispatch_stub_1023, _dispatch_stub_1023@12))
1239
	GL_STUB(_dispatch_stub_1024, 1024, _dispatch_stub_1024@8)
1240
	HIDDEN(GL_PREFIX(_dispatch_stub_1024, _dispatch_stub_1024@8))
1241
	GL_STUB(_dispatch_stub_1025, 1025, _dispatch_stub_1025@8)
1242
	HIDDEN(GL_PREFIX(_dispatch_stub_1025, _dispatch_stub_1025@8))
1243
	GL_STUB(_dispatch_stub_1026, 1026, _dispatch_stub_1026@8)
1244
	HIDDEN(GL_PREFIX(_dispatch_stub_1026, _dispatch_stub_1026@8))
1245
	GL_STUB(_dispatch_stub_1027, 1027, _dispatch_stub_1027@8)
1246
	HIDDEN(GL_PREFIX(_dispatch_stub_1027, _dispatch_stub_1027@8))
1247
	GL_STUB(_dispatch_stub_1028, 1028, _dispatch_stub_1028@8)
1248
	HIDDEN(GL_PREFIX(_dispatch_stub_1028, _dispatch_stub_1028@8))
1249
	GL_STUB(_dispatch_stub_1029, 1029, _dispatch_stub_1029@12)
1250
	HIDDEN(GL_PREFIX(_dispatch_stub_1029, _dispatch_stub_1029@12))
1251
	GL_STUB(_dispatch_stub_1030, 1030, _dispatch_stub_1030@12)
1252
	HIDDEN(GL_PREFIX(_dispatch_stub_1030, _dispatch_stub_1030@12))
1253
	GL_STUB(_dispatch_stub_1031, 1031, _dispatch_stub_1031@12)
1254
	HIDDEN(GL_PREFIX(_dispatch_stub_1031, _dispatch_stub_1031@12))
1255
	GL_STUB(_dispatch_stub_1032, 1032, _dispatch_stub_1032@12)
1256
	HIDDEN(GL_PREFIX(_dispatch_stub_1032, _dispatch_stub_1032@12))
1257
	GL_STUB(_dispatch_stub_1033, 1033, _dispatch_stub_1033@8)
1258
	HIDDEN(GL_PREFIX(_dispatch_stub_1033, _dispatch_stub_1033@8))
1259
	GL_STUB(_dispatch_stub_1034, 1034, _dispatch_stub_1034@8)
1260
	HIDDEN(GL_PREFIX(_dispatch_stub_1034, _dispatch_stub_1034@8))
1261
	GL_STUB(_dispatch_stub_1035, 1035, _dispatch_stub_1035@12)
1262
	HIDDEN(GL_PREFIX(_dispatch_stub_1035, _dispatch_stub_1035@12))
1263
	GL_STUB_ALIAS(ArrayElementEXT, 306, ArrayElementEXT@4, ArrayElement, ArrayElement@4)
1264
	GL_STUB_ALIAS(BindTextureEXT, 307, BindTextureEXT@8, BindTexture, BindTexture@8)
1265
	GL_STUB_ALIAS(DrawArraysEXT, 310, DrawArraysEXT@12, DrawArrays, DrawArrays@12)
1266
#ifndef GLX_INDIRECT_RENDERING
1267
	GL_STUB_ALIAS(AreTexturesResidentEXT, 322, AreTexturesResidentEXT@12, AreTexturesResident, AreTexturesResident@12)
1268
#endif
1269
	GL_STUB_ALIAS(CopyTexImage1DEXT, 323, CopyTexImage1DEXT@28, CopyTexImage1D, CopyTexImage1D@28)
1270
	GL_STUB_ALIAS(CopyTexImage2DEXT, 324, CopyTexImage2DEXT@32, CopyTexImage2D, CopyTexImage2D@32)
1271
	GL_STUB_ALIAS(CopyTexSubImage1DEXT, 325, CopyTexSubImage1DEXT@24, CopyTexSubImage1D, CopyTexSubImage1D@24)
1272
	GL_STUB_ALIAS(CopyTexSubImage2DEXT, 326, CopyTexSubImage2DEXT@32, CopyTexSubImage2D, CopyTexSubImage2D@32)
1273
#ifndef GLX_INDIRECT_RENDERING
1274
	GL_STUB_ALIAS(DeleteTexturesEXT, 327, DeleteTexturesEXT@8, DeleteTextures, DeleteTextures@8)
1275
#endif
1276
#ifndef GLX_INDIRECT_RENDERING
1277
	GL_STUB_ALIAS(GenTexturesEXT, 328, GenTexturesEXT@8, GenTextures, GenTextures@8)
1278
#endif
1279
	GL_STUB_ALIAS(GetPointervEXT, 329, GetPointervEXT@8, GetPointerv, GetPointerv@8)
1280
#ifndef GLX_INDIRECT_RENDERING
1281
	GL_STUB_ALIAS(IsTextureEXT, 330, IsTextureEXT@4, IsTexture, IsTexture@4)
1282
#endif
1283
	GL_STUB_ALIAS(PrioritizeTexturesEXT, 331, PrioritizeTexturesEXT@12, PrioritizeTextures, PrioritizeTextures@12)
1284
	GL_STUB_ALIAS(TexSubImage1DEXT, 332, TexSubImage1DEXT@28, TexSubImage1D, TexSubImage1D@28)
1285
	GL_STUB_ALIAS(TexSubImage2DEXT, 333, TexSubImage2DEXT@36, TexSubImage2D, TexSubImage2D@36)
1286
	GL_STUB_ALIAS(BlendColorEXT, 336, BlendColorEXT@16, BlendColor, BlendColor@16)
1287
	GL_STUB_ALIAS(BlendEquationEXT, 337, BlendEquationEXT@4, BlendEquation, BlendEquation@4)
1288
	GL_STUB_ALIAS(DrawRangeElementsEXT, 338, DrawRangeElementsEXT@24, DrawRangeElements, DrawRangeElements@24)
1289
	GL_STUB_ALIAS(ColorTableEXT, 339, ColorTableEXT@24, ColorTable, ColorTable@24)
1290
#ifndef GLX_INDIRECT_RENDERING
1291
	GL_STUB_ALIAS(GetColorTableEXT, 343, GetColorTableEXT@16, GetColorTable, GetColorTable@16)
1292
#endif
1293
#ifndef GLX_INDIRECT_RENDERING
1294
	GL_STUB_ALIAS(GetColorTableParameterfvEXT, 344, GetColorTableParameterfvEXT@12, GetColorTableParameterfv, GetColorTableParameterfv@12)
1295
#endif
1296
#ifndef GLX_INDIRECT_RENDERING
1297
	GL_STUB_ALIAS(GetColorTableParameterivEXT, 345, GetColorTableParameterivEXT@12, GetColorTableParameteriv, GetColorTableParameteriv@12)
1298
#endif
1299
	GL_STUB_ALIAS(TexImage3DEXT, 371, TexImage3DEXT@40, TexImage3D, TexImage3D@40)
1300
	GL_STUB_ALIAS(TexSubImage3DEXT, 372, TexSubImage3DEXT@44, TexSubImage3D, TexSubImage3D@44)
1301
	GL_STUB_ALIAS(CopyTexSubImage3DEXT, 373, CopyTexSubImage3DEXT@36, CopyTexSubImage3D, CopyTexSubImage3D@36)
1302
	GL_STUB_ALIAS(ActiveTextureARB, 374, ActiveTextureARB@4, ActiveTexture, ActiveTexture@4)
1303
	GL_STUB_ALIAS(ClientActiveTextureARB, 375, ClientActiveTextureARB@4, ClientActiveTexture, ClientActiveTexture@4)
1304
	GL_STUB_ALIAS(MultiTexCoord1dARB, 376, MultiTexCoord1dARB@12, MultiTexCoord1d, MultiTexCoord1d@12)
1305
	GL_STUB_ALIAS(MultiTexCoord1dvARB, 377, MultiTexCoord1dvARB@8, MultiTexCoord1dv, MultiTexCoord1dv@8)
1306
	GL_STUB_ALIAS(MultiTexCoord1f, 378, MultiTexCoord1f@8, MultiTexCoord1fARB, MultiTexCoord1fARB@8)
1307
	GL_STUB_ALIAS(MultiTexCoord1fv, 379, MultiTexCoord1fv@8, MultiTexCoord1fvARB, MultiTexCoord1fvARB@8)
1308
	GL_STUB_ALIAS(MultiTexCoord1iARB, 380, MultiTexCoord1iARB@8, MultiTexCoord1i, MultiTexCoord1i@8)
1309
	GL_STUB_ALIAS(MultiTexCoord1ivARB, 381, MultiTexCoord1ivARB@8, MultiTexCoord1iv, MultiTexCoord1iv@8)
1310
	GL_STUB_ALIAS(MultiTexCoord1sARB, 382, MultiTexCoord1sARB@8, MultiTexCoord1s, MultiTexCoord1s@8)
1311
	GL_STUB_ALIAS(MultiTexCoord1svARB, 383, MultiTexCoord1svARB@8, MultiTexCoord1sv, MultiTexCoord1sv@8)
1312
	GL_STUB_ALIAS(MultiTexCoord2dARB, 384, MultiTexCoord2dARB@20, MultiTexCoord2d, MultiTexCoord2d@20)
1313
	GL_STUB_ALIAS(MultiTexCoord2dvARB, 385, MultiTexCoord2dvARB@8, MultiTexCoord2dv, MultiTexCoord2dv@8)
1314
	GL_STUB_ALIAS(MultiTexCoord2f, 386, MultiTexCoord2f@12, MultiTexCoord2fARB, MultiTexCoord2fARB@12)
1315
	GL_STUB_ALIAS(MultiTexCoord2fv, 387, MultiTexCoord2fv@8, MultiTexCoord2fvARB, MultiTexCoord2fvARB@8)
1316
	GL_STUB_ALIAS(MultiTexCoord2iARB, 388, MultiTexCoord2iARB@12, MultiTexCoord2i, MultiTexCoord2i@12)
1317
	GL_STUB_ALIAS(MultiTexCoord2ivARB, 389, MultiTexCoord2ivARB@8, MultiTexCoord2iv, MultiTexCoord2iv@8)
1318
	GL_STUB_ALIAS(MultiTexCoord2sARB, 390, MultiTexCoord2sARB@12, MultiTexCoord2s, MultiTexCoord2s@12)
1319
	GL_STUB_ALIAS(MultiTexCoord2svARB, 391, MultiTexCoord2svARB@8, MultiTexCoord2sv, MultiTexCoord2sv@8)
1320
	GL_STUB_ALIAS(MultiTexCoord3dARB, 392, MultiTexCoord3dARB@28, MultiTexCoord3d, MultiTexCoord3d@28)
1321
	GL_STUB_ALIAS(MultiTexCoord3dvARB, 393, MultiTexCoord3dvARB@8, MultiTexCoord3dv, MultiTexCoord3dv@8)
1322
	GL_STUB_ALIAS(MultiTexCoord3f, 394, MultiTexCoord3f@16, MultiTexCoord3fARB, MultiTexCoord3fARB@16)
1323
	GL_STUB_ALIAS(MultiTexCoord3fv, 395, MultiTexCoord3fv@8, MultiTexCoord3fvARB, MultiTexCoord3fvARB@8)
1324
	GL_STUB_ALIAS(MultiTexCoord3iARB, 396, MultiTexCoord3iARB@16, MultiTexCoord3i, MultiTexCoord3i@16)
1325
	GL_STUB_ALIAS(MultiTexCoord3ivARB, 397, MultiTexCoord3ivARB@8, MultiTexCoord3iv, MultiTexCoord3iv@8)
1326
	GL_STUB_ALIAS(MultiTexCoord3sARB, 398, MultiTexCoord3sARB@16, MultiTexCoord3s, MultiTexCoord3s@16)
1327
	GL_STUB_ALIAS(MultiTexCoord3svARB, 399, MultiTexCoord3svARB@8, MultiTexCoord3sv, MultiTexCoord3sv@8)
1328
	GL_STUB_ALIAS(MultiTexCoord4dARB, 400, MultiTexCoord4dARB@36, MultiTexCoord4d, MultiTexCoord4d@36)
1329
	GL_STUB_ALIAS(MultiTexCoord4dvARB, 401, MultiTexCoord4dvARB@8, MultiTexCoord4dv, MultiTexCoord4dv@8)
1330
	GL_STUB_ALIAS(MultiTexCoord4f, 402, MultiTexCoord4f@20, MultiTexCoord4fARB, MultiTexCoord4fARB@20)
1331
	GL_STUB_ALIAS(MultiTexCoord4fv, 403, MultiTexCoord4fv@8, MultiTexCoord4fvARB, MultiTexCoord4fvARB@8)
1332
	GL_STUB_ALIAS(MultiTexCoord4iARB, 404, MultiTexCoord4iARB@20, MultiTexCoord4i, MultiTexCoord4i@20)
1333
	GL_STUB_ALIAS(MultiTexCoord4ivARB, 405, MultiTexCoord4ivARB@8, MultiTexCoord4iv, MultiTexCoord4iv@8)
1334
	GL_STUB_ALIAS(MultiTexCoord4sARB, 406, MultiTexCoord4sARB@20, MultiTexCoord4s, MultiTexCoord4s@20)
1335
	GL_STUB_ALIAS(MultiTexCoord4svARB, 407, MultiTexCoord4svARB@8, MultiTexCoord4sv, MultiTexCoord4sv@8)
1336
	GL_STUB_ALIAS(CompressedTexImage1DARB, 408, CompressedTexImage1DARB@28, CompressedTexImage1D, CompressedTexImage1D@28)
1337
	GL_STUB_ALIAS(CompressedTexImage2DARB, 409, CompressedTexImage2DARB@32, CompressedTexImage2D, CompressedTexImage2D@32)
1338
	GL_STUB_ALIAS(CompressedTexImage3DARB, 410, CompressedTexImage3DARB@36, CompressedTexImage3D, CompressedTexImage3D@36)
1339
	GL_STUB_ALIAS(CompressedTexSubImage1DARB, 411, CompressedTexSubImage1DARB@28, CompressedTexSubImage1D, CompressedTexSubImage1D@28)
1340
	GL_STUB_ALIAS(CompressedTexSubImage2DARB, 412, CompressedTexSubImage2DARB@36, CompressedTexSubImage2D, CompressedTexSubImage2D@36)
1341
	GL_STUB_ALIAS(CompressedTexSubImage3DARB, 413, CompressedTexSubImage3DARB@44, CompressedTexSubImage3D, CompressedTexSubImage3D@44)
1342
	GL_STUB_ALIAS(GetCompressedTexImageARB, 414, GetCompressedTexImageARB@12, GetCompressedTexImage, GetCompressedTexImage@12)
1343
	GL_STUB_ALIAS(LoadTransposeMatrixdARB, 415, LoadTransposeMatrixdARB@4, LoadTransposeMatrixd, LoadTransposeMatrixd@4)
1344
	GL_STUB_ALIAS(LoadTransposeMatrixfARB, 416, LoadTransposeMatrixfARB@4, LoadTransposeMatrixf, LoadTransposeMatrixf@4)
1345
	GL_STUB_ALIAS(MultTransposeMatrixdARB, 417, MultTransposeMatrixdARB@4, MultTransposeMatrixd, MultTransposeMatrixd@4)
1346
	GL_STUB_ALIAS(MultTransposeMatrixfARB, 418, MultTransposeMatrixfARB@4, MultTransposeMatrixf, MultTransposeMatrixf@4)
1347
	GL_STUB_ALIAS(SampleCoverageARB, 419, SampleCoverageARB@8, SampleCoverage, SampleCoverage@8)
1348
	GL_STUB_ALIAS(BlendFuncSeparateEXT, 420, BlendFuncSeparateEXT@16, BlendFuncSeparate, BlendFuncSeparate@16)
1349
	GL_STUB_ALIAS(FogCoordPointerEXT, 421, FogCoordPointerEXT@12, FogCoordPointer, FogCoordPointer@12)
1350
	GL_STUB_ALIAS(FogCoorddEXT, 422, FogCoorddEXT@8, FogCoordd, FogCoordd@8)
1351
	GL_STUB_ALIAS(FogCoorddvEXT, 423, FogCoorddvEXT@4, FogCoorddv, FogCoorddv@4)
1352
	GL_STUB_ALIAS(MultiDrawArraysEXT, 424, MultiDrawArraysEXT@16, MultiDrawArrays, MultiDrawArrays@16)
1353
	GL_STUB_ALIAS(PointParameterfARB, 425, PointParameterfARB@8, PointParameterf, PointParameterf@8)
1354
	GL_STUB_ALIAS(PointParameterfEXT, 425, PointParameterfEXT@8, PointParameterf, PointParameterf@8)
1355
	GL_STUB_ALIAS(PointParameterfvARB, 426, PointParameterfvARB@8, PointParameterfv, PointParameterfv@8)
1356
	GL_STUB_ALIAS(PointParameterfvEXT, 426, PointParameterfvEXT@8, PointParameterfv, PointParameterfv@8)
1357
	GL_STUB_ALIAS(PointParameteriNV, 427, PointParameteriNV@8, PointParameteri, PointParameteri@8)
1358
	GL_STUB_ALIAS(PointParameterivNV, 428, PointParameterivNV@8, PointParameteriv, PointParameteriv@8)
1359
	GL_STUB_ALIAS(SecondaryColor3bEXT, 429, SecondaryColor3bEXT@12, SecondaryColor3b, SecondaryColor3b@12)
1360
	GL_STUB_ALIAS(SecondaryColor3bvEXT, 430, SecondaryColor3bvEXT@4, SecondaryColor3bv, SecondaryColor3bv@4)
1361
	GL_STUB_ALIAS(SecondaryColor3dEXT, 431, SecondaryColor3dEXT@24, SecondaryColor3d, SecondaryColor3d@24)
1362
	GL_STUB_ALIAS(SecondaryColor3dvEXT, 432, SecondaryColor3dvEXT@4, SecondaryColor3dv, SecondaryColor3dv@4)
1363
	GL_STUB_ALIAS(SecondaryColor3iEXT, 433, SecondaryColor3iEXT@12, SecondaryColor3i, SecondaryColor3i@12)
1364
	GL_STUB_ALIAS(SecondaryColor3ivEXT, 434, SecondaryColor3ivEXT@4, SecondaryColor3iv, SecondaryColor3iv@4)
1365
	GL_STUB_ALIAS(SecondaryColor3sEXT, 435, SecondaryColor3sEXT@12, SecondaryColor3s, SecondaryColor3s@12)
1366
	GL_STUB_ALIAS(SecondaryColor3svEXT, 436, SecondaryColor3svEXT@4, SecondaryColor3sv, SecondaryColor3sv@4)
1367
	GL_STUB_ALIAS(SecondaryColor3ubEXT, 437, SecondaryColor3ubEXT@12, SecondaryColor3ub, SecondaryColor3ub@12)
1368
	GL_STUB_ALIAS(SecondaryColor3ubvEXT, 438, SecondaryColor3ubvEXT@4, SecondaryColor3ubv, SecondaryColor3ubv@4)
1369
	GL_STUB_ALIAS(SecondaryColor3uiEXT, 439, SecondaryColor3uiEXT@12, SecondaryColor3ui, SecondaryColor3ui@12)
1370
	GL_STUB_ALIAS(SecondaryColor3uivEXT, 440, SecondaryColor3uivEXT@4, SecondaryColor3uiv, SecondaryColor3uiv@4)
1371
	GL_STUB_ALIAS(SecondaryColor3usEXT, 441, SecondaryColor3usEXT@12, SecondaryColor3us, SecondaryColor3us@12)
1372
	GL_STUB_ALIAS(SecondaryColor3usvEXT, 442, SecondaryColor3usvEXT@4, SecondaryColor3usv, SecondaryColor3usv@4)
1373
	GL_STUB_ALIAS(SecondaryColorPointerEXT, 443, SecondaryColorPointerEXT@16, SecondaryColorPointer, SecondaryColorPointer@16)
1374
	GL_STUB_ALIAS(WindowPos2dARB, 444, WindowPos2dARB@16, WindowPos2d, WindowPos2d@16)
1375
	GL_STUB_ALIAS(WindowPos2dMESA, 444, WindowPos2dMESA@16, WindowPos2d, WindowPos2d@16)
1376
	GL_STUB_ALIAS(WindowPos2dvARB, 445, WindowPos2dvARB@4, WindowPos2dv, WindowPos2dv@4)
1377
	GL_STUB_ALIAS(WindowPos2dvMESA, 445, WindowPos2dvMESA@4, WindowPos2dv, WindowPos2dv@4)
1378
	GL_STUB_ALIAS(WindowPos2fARB, 446, WindowPos2fARB@8, WindowPos2f, WindowPos2f@8)
1379
	GL_STUB_ALIAS(WindowPos2fMESA, 446, WindowPos2fMESA@8, WindowPos2f, WindowPos2f@8)
1380
	GL_STUB_ALIAS(WindowPos2fvARB, 447, WindowPos2fvARB@4, WindowPos2fv, WindowPos2fv@4)
1381
	GL_STUB_ALIAS(WindowPos2fvMESA, 447, WindowPos2fvMESA@4, WindowPos2fv, WindowPos2fv@4)
1382
	GL_STUB_ALIAS(WindowPos2iARB, 448, WindowPos2iARB@8, WindowPos2i, WindowPos2i@8)
1383
	GL_STUB_ALIAS(WindowPos2iMESA, 448, WindowPos2iMESA@8, WindowPos2i, WindowPos2i@8)
1384
	GL_STUB_ALIAS(WindowPos2ivARB, 449, WindowPos2ivARB@4, WindowPos2iv, WindowPos2iv@4)
1385
	GL_STUB_ALIAS(WindowPos2ivMESA, 449, WindowPos2ivMESA@4, WindowPos2iv, WindowPos2iv@4)
1386
	GL_STUB_ALIAS(WindowPos2sARB, 450, WindowPos2sARB@8, WindowPos2s, WindowPos2s@8)
1387
	GL_STUB_ALIAS(WindowPos2sMESA, 450, WindowPos2sMESA@8, WindowPos2s, WindowPos2s@8)
1388
	GL_STUB_ALIAS(WindowPos2svARB, 451, WindowPos2svARB@4, WindowPos2sv, WindowPos2sv@4)
1389
	GL_STUB_ALIAS(WindowPos2svMESA, 451, WindowPos2svMESA@4, WindowPos2sv, WindowPos2sv@4)
1390
	GL_STUB_ALIAS(WindowPos3dARB, 452, WindowPos3dARB@24, WindowPos3d, WindowPos3d@24)
1391
	GL_STUB_ALIAS(WindowPos3dMESA, 452, WindowPos3dMESA@24, WindowPos3d, WindowPos3d@24)
1392
	GL_STUB_ALIAS(WindowPos3dvARB, 453, WindowPos3dvARB@4, WindowPos3dv, WindowPos3dv@4)
1393
	GL_STUB_ALIAS(WindowPos3dvMESA, 453, WindowPos3dvMESA@4, WindowPos3dv, WindowPos3dv@4)
1394
	GL_STUB_ALIAS(WindowPos3fARB, 454, WindowPos3fARB@12, WindowPos3f, WindowPos3f@12)
1395
	GL_STUB_ALIAS(WindowPos3fMESA, 454, WindowPos3fMESA@12, WindowPos3f, WindowPos3f@12)
1396
	GL_STUB_ALIAS(WindowPos3fvARB, 455, WindowPos3fvARB@4, WindowPos3fv, WindowPos3fv@4)
1397
	GL_STUB_ALIAS(WindowPos3fvMESA, 455, WindowPos3fvMESA@4, WindowPos3fv, WindowPos3fv@4)
1398
	GL_STUB_ALIAS(WindowPos3iARB, 456, WindowPos3iARB@12, WindowPos3i, WindowPos3i@12)
1399
	GL_STUB_ALIAS(WindowPos3iMESA, 456, WindowPos3iMESA@12, WindowPos3i, WindowPos3i@12)
1400
	GL_STUB_ALIAS(WindowPos3ivARB, 457, WindowPos3ivARB@4, WindowPos3iv, WindowPos3iv@4)
1401
	GL_STUB_ALIAS(WindowPos3ivMESA, 457, WindowPos3ivMESA@4, WindowPos3iv, WindowPos3iv@4)
1402
	GL_STUB_ALIAS(WindowPos3sARB, 458, WindowPos3sARB@12, WindowPos3s, WindowPos3s@12)
1403
	GL_STUB_ALIAS(WindowPos3sMESA, 458, WindowPos3sMESA@12, WindowPos3s, WindowPos3s@12)
1404
	GL_STUB_ALIAS(WindowPos3svARB, 459, WindowPos3svARB@4, WindowPos3sv, WindowPos3sv@4)
1405
	GL_STUB_ALIAS(WindowPos3svMESA, 459, WindowPos3svMESA@4, WindowPos3sv, WindowPos3sv@4)
1406
	GL_STUB_ALIAS(BeginQueryARB, 460, BeginQueryARB@8, BeginQuery, BeginQuery@8)
1407
	GL_STUB_ALIAS(BindBufferARB, 461, BindBufferARB@8, BindBuffer, BindBuffer@8)
1408
	GL_STUB_ALIAS(BufferDataARB, 462, BufferDataARB@16, BufferData, BufferData@16)
1409
	GL_STUB_ALIAS(BufferSubDataARB, 463, BufferSubDataARB@16, BufferSubData, BufferSubData@16)
1410
	GL_STUB_ALIAS(DeleteBuffersARB, 464, DeleteBuffersARB@8, DeleteBuffers, DeleteBuffers@8)
1411
	GL_STUB_ALIAS(DeleteQueriesARB, 465, DeleteQueriesARB@8, DeleteQueries, DeleteQueries@8)
1412
	GL_STUB_ALIAS(EndQueryARB, 466, EndQueryARB@4, EndQuery, EndQuery@4)
1413
	GL_STUB_ALIAS(GenBuffersARB, 467, GenBuffersARB@8, GenBuffers, GenBuffers@8)
1414
	GL_STUB_ALIAS(GenQueriesARB, 468, GenQueriesARB@8, GenQueries, GenQueries@8)
1415
	GL_STUB_ALIAS(GetBufferParameterivARB, 469, GetBufferParameterivARB@12, GetBufferParameteriv, GetBufferParameteriv@12)
1416
	GL_STUB_ALIAS(GetBufferPointervARB, 470, GetBufferPointervARB@12, GetBufferPointerv, GetBufferPointerv@12)
1417
	GL_STUB_ALIAS(GetBufferSubDataARB, 471, GetBufferSubDataARB@16, GetBufferSubData, GetBufferSubData@16)
1418
	GL_STUB_ALIAS(GetQueryObjectivARB, 472, GetQueryObjectivARB@12, GetQueryObjectiv, GetQueryObjectiv@12)
1419
	GL_STUB_ALIAS(GetQueryObjectuivARB, 473, GetQueryObjectuivARB@12, GetQueryObjectuiv, GetQueryObjectuiv@12)
1420
	GL_STUB_ALIAS(GetQueryivARB, 474, GetQueryivARB@12, GetQueryiv, GetQueryiv@12)
1421
	GL_STUB_ALIAS(IsBufferARB, 475, IsBufferARB@4, IsBuffer, IsBuffer@4)
1422
	GL_STUB_ALIAS(IsQueryARB, 476, IsQueryARB@4, IsQuery, IsQuery@4)
1423
	GL_STUB_ALIAS(MapBufferARB, 477, MapBufferARB@8, MapBuffer, MapBuffer@8)
1424
	GL_STUB_ALIAS(UnmapBufferARB, 478, UnmapBufferARB@4, UnmapBuffer, UnmapBuffer@4)
1425
	GL_STUB_ALIAS(BindAttribLocationARB, 480, BindAttribLocationARB@12, BindAttribLocation, BindAttribLocation@12)
1426
	GL_STUB_ALIAS(CompileShaderARB, 482, CompileShaderARB@4, CompileShader, CompileShader@4)
1427
	GL_STUB_ALIAS(DisableVertexAttribArrayARB, 488, DisableVertexAttribArrayARB@4, DisableVertexAttribArray, DisableVertexAttribArray@4)
1428
	GL_STUB_ALIAS(DrawBuffersARB, 489, DrawBuffersARB@8, DrawBuffers, DrawBuffers@8)
1429
	GL_STUB_ALIAS(DrawBuffersATI, 489, DrawBuffersATI@8, DrawBuffers, DrawBuffers@8)
1430
	GL_STUB_ALIAS(EnableVertexAttribArrayARB, 490, EnableVertexAttribArrayARB@4, EnableVertexAttribArray, EnableVertexAttribArray@4)
1431
	GL_STUB_ALIAS(GetActiveAttribARB, 491, GetActiveAttribARB@28, GetActiveAttrib, GetActiveAttrib@28)
1432
	GL_STUB_ALIAS(GetActiveUniformARB, 492, GetActiveUniformARB@28, GetActiveUniform, GetActiveUniform@28)
1433
	GL_STUB_ALIAS(GetAttribLocationARB, 494, GetAttribLocationARB@8, GetAttribLocation, GetAttribLocation@8)
1434
	GL_STUB_ALIAS(GetShaderSourceARB, 498, GetShaderSourceARB@16, GetShaderSource, GetShaderSource@16)
1435
	GL_STUB_ALIAS(GetUniformLocationARB, 500, GetUniformLocationARB@8, GetUniformLocation, GetUniformLocation@8)
1436
	GL_STUB_ALIAS(GetUniformfvARB, 501, GetUniformfvARB@12, GetUniformfv, GetUniformfv@12)
1437
	GL_STUB_ALIAS(GetUniformivARB, 502, GetUniformivARB@12, GetUniformiv, GetUniformiv@12)
1438
	GL_STUB_ALIAS(GetVertexAttribPointervARB, 503, GetVertexAttribPointervARB@12, GetVertexAttribPointerv, GetVertexAttribPointerv@12)
1439
	GL_STUB_ALIAS(GetVertexAttribPointervNV, 503, GetVertexAttribPointervNV@12, GetVertexAttribPointerv, GetVertexAttribPointerv@12)
1440
	GL_STUB_ALIAS(GetVertexAttribdvARB, 504, GetVertexAttribdvARB@12, GetVertexAttribdv, GetVertexAttribdv@12)
1441
	GL_STUB_ALIAS(GetVertexAttribfvARB, 505, GetVertexAttribfvARB@12, GetVertexAttribfv, GetVertexAttribfv@12)
1442
	GL_STUB_ALIAS(GetVertexAttribivARB, 506, GetVertexAttribivARB@12, GetVertexAttribiv, GetVertexAttribiv@12)
1443
	GL_STUB_ALIAS(LinkProgramARB, 509, LinkProgramARB@4, LinkProgram, LinkProgram@4)
1444
	GL_STUB_ALIAS(ShaderSourceARB, 510, ShaderSourceARB@16, ShaderSource, ShaderSource@16)
1445
	GL_STUB_ALIAS(Uniform1fARB, 514, Uniform1fARB@8, Uniform1f, Uniform1f@8)
1446
	GL_STUB_ALIAS(Uniform1fvARB, 515, Uniform1fvARB@12, Uniform1fv, Uniform1fv@12)
1447
	GL_STUB_ALIAS(Uniform1iARB, 516, Uniform1iARB@8, Uniform1i, Uniform1i@8)
1448
	GL_STUB_ALIAS(Uniform1ivARB, 517, Uniform1ivARB@12, Uniform1iv, Uniform1iv@12)
1449
	GL_STUB_ALIAS(Uniform2fARB, 518, Uniform2fARB@12, Uniform2f, Uniform2f@12)
1450
	GL_STUB_ALIAS(Uniform2fvARB, 519, Uniform2fvARB@12, Uniform2fv, Uniform2fv@12)
1451
	GL_STUB_ALIAS(Uniform2iARB, 520, Uniform2iARB@12, Uniform2i, Uniform2i@12)
1452
	GL_STUB_ALIAS(Uniform2ivARB, 521, Uniform2ivARB@12, Uniform2iv, Uniform2iv@12)
1453
	GL_STUB_ALIAS(Uniform3fARB, 522, Uniform3fARB@16, Uniform3f, Uniform3f@16)
1454
	GL_STUB_ALIAS(Uniform3fvARB, 523, Uniform3fvARB@12, Uniform3fv, Uniform3fv@12)
1455
	GL_STUB_ALIAS(Uniform3iARB, 524, Uniform3iARB@16, Uniform3i, Uniform3i@16)
1456
	GL_STUB_ALIAS(Uniform3ivARB, 525, Uniform3ivARB@12, Uniform3iv, Uniform3iv@12)
1457
	GL_STUB_ALIAS(Uniform4fARB, 526, Uniform4fARB@20, Uniform4f, Uniform4f@20)
1458
	GL_STUB_ALIAS(Uniform4fvARB, 527, Uniform4fvARB@12, Uniform4fv, Uniform4fv@12)
1459
	GL_STUB_ALIAS(Uniform4iARB, 528, Uniform4iARB@20, Uniform4i, Uniform4i@20)
1460
	GL_STUB_ALIAS(Uniform4ivARB, 529, Uniform4ivARB@12, Uniform4iv, Uniform4iv@12)
1461
	GL_STUB_ALIAS(UniformMatrix2fvARB, 530, UniformMatrix2fvARB@16, UniformMatrix2fv, UniformMatrix2fv@16)
1462
	GL_STUB_ALIAS(UniformMatrix3fvARB, 531, UniformMatrix3fvARB@16, UniformMatrix3fv, UniformMatrix3fv@16)
1463
	GL_STUB_ALIAS(UniformMatrix4fvARB, 532, UniformMatrix4fvARB@16, UniformMatrix4fv, UniformMatrix4fv@16)
1464
	GL_STUB_ALIAS(UseProgramObjectARB, 533, UseProgramObjectARB@4, UseProgram, UseProgram@4)
1465
	GL_STUB_ALIAS(ValidateProgramARB, 534, ValidateProgramARB@4, ValidateProgram, ValidateProgram@4)
1466
	GL_STUB_ALIAS(VertexAttrib1dARB, 535, VertexAttrib1dARB@12, VertexAttrib1d, VertexAttrib1d@12)
1467
	GL_STUB_ALIAS(VertexAttrib1dvARB, 536, VertexAttrib1dvARB@8, VertexAttrib1dv, VertexAttrib1dv@8)
1468
	GL_STUB_ALIAS(VertexAttrib1sARB, 537, VertexAttrib1sARB@8, VertexAttrib1s, VertexAttrib1s@8)
1469
	GL_STUB_ALIAS(VertexAttrib1svARB, 538, VertexAttrib1svARB@8, VertexAttrib1sv, VertexAttrib1sv@8)
1470
	GL_STUB_ALIAS(VertexAttrib2dARB, 539, VertexAttrib2dARB@20, VertexAttrib2d, VertexAttrib2d@20)
1471
	GL_STUB_ALIAS(VertexAttrib2dvARB, 540, VertexAttrib2dvARB@8, VertexAttrib2dv, VertexAttrib2dv@8)
1472
	GL_STUB_ALIAS(VertexAttrib2sARB, 541, VertexAttrib2sARB@12, VertexAttrib2s, VertexAttrib2s@12)
1473
	GL_STUB_ALIAS(VertexAttrib2svARB, 542, VertexAttrib2svARB@8, VertexAttrib2sv, VertexAttrib2sv@8)
1474
	GL_STUB_ALIAS(VertexAttrib3dARB, 543, VertexAttrib3dARB@28, VertexAttrib3d, VertexAttrib3d@28)
1475
	GL_STUB_ALIAS(VertexAttrib3dvARB, 544, VertexAttrib3dvARB@8, VertexAttrib3dv, VertexAttrib3dv@8)
1476
	GL_STUB_ALIAS(VertexAttrib3sARB, 545, VertexAttrib3sARB@16, VertexAttrib3s, VertexAttrib3s@16)
1477
	GL_STUB_ALIAS(VertexAttrib3svARB, 546, VertexAttrib3svARB@8, VertexAttrib3sv, VertexAttrib3sv@8)
1478
	GL_STUB_ALIAS(VertexAttrib4NbvARB, 547, VertexAttrib4NbvARB@8, VertexAttrib4Nbv, VertexAttrib4Nbv@8)
1479
	GL_STUB_ALIAS(VertexAttrib4NivARB, 548, VertexAttrib4NivARB@8, VertexAttrib4Niv, VertexAttrib4Niv@8)
1480
	GL_STUB_ALIAS(VertexAttrib4NsvARB, 549, VertexAttrib4NsvARB@8, VertexAttrib4Nsv, VertexAttrib4Nsv@8)
1481
	GL_STUB_ALIAS(VertexAttrib4NubARB, 550, VertexAttrib4NubARB@20, VertexAttrib4Nub, VertexAttrib4Nub@20)
1482
	GL_STUB_ALIAS(VertexAttrib4NubvARB, 551, VertexAttrib4NubvARB@8, VertexAttrib4Nubv, VertexAttrib4Nubv@8)
1483
	GL_STUB_ALIAS(VertexAttrib4NuivARB, 552, VertexAttrib4NuivARB@8, VertexAttrib4Nuiv, VertexAttrib4Nuiv@8)
1484
	GL_STUB_ALIAS(VertexAttrib4NusvARB, 553, VertexAttrib4NusvARB@8, VertexAttrib4Nusv, VertexAttrib4Nusv@8)
1485
	GL_STUB_ALIAS(VertexAttrib4bvARB, 554, VertexAttrib4bvARB@8, VertexAttrib4bv, VertexAttrib4bv@8)
1486
	GL_STUB_ALIAS(VertexAttrib4dARB, 555, VertexAttrib4dARB@36, VertexAttrib4d, VertexAttrib4d@36)
1487
	GL_STUB_ALIAS(VertexAttrib4dvARB, 556, VertexAttrib4dvARB@8, VertexAttrib4dv, VertexAttrib4dv@8)
1488
	GL_STUB_ALIAS(VertexAttrib4ivARB, 557, VertexAttrib4ivARB@8, VertexAttrib4iv, VertexAttrib4iv@8)
1489
	GL_STUB_ALIAS(VertexAttrib4sARB, 558, VertexAttrib4sARB@20, VertexAttrib4s, VertexAttrib4s@20)
1490
	GL_STUB_ALIAS(VertexAttrib4svARB, 559, VertexAttrib4svARB@8, VertexAttrib4sv, VertexAttrib4sv@8)
1491
	GL_STUB_ALIAS(VertexAttrib4ubvARB, 560, VertexAttrib4ubvARB@8, VertexAttrib4ubv, VertexAttrib4ubv@8)
1492
	GL_STUB_ALIAS(VertexAttrib4uivARB, 561, VertexAttrib4uivARB@8, VertexAttrib4uiv, VertexAttrib4uiv@8)
1493
	GL_STUB_ALIAS(VertexAttrib4usvARB, 562, VertexAttrib4usvARB@8, VertexAttrib4usv, VertexAttrib4usv@8)
1494
	GL_STUB_ALIAS(VertexAttribPointerARB, 563, VertexAttribPointerARB@24, VertexAttribPointer, VertexAttribPointer@24)
1495
	GL_STUB_ALIAS(BeginConditionalRenderNV, 570, BeginConditionalRenderNV@8, BeginConditionalRender, BeginConditionalRender@8)
1496
	GL_STUB_ALIAS(BeginTransformFeedbackEXT, 571, BeginTransformFeedbackEXT@4, BeginTransformFeedback, BeginTransformFeedback@4)
1497
	GL_STUB_ALIAS(BindBufferBaseEXT, 572, BindBufferBaseEXT@12, BindBufferBase, BindBufferBase@12)
1498
	GL_STUB_ALIAS(BindBufferRangeEXT, 573, BindBufferRangeEXT@20, BindBufferRange, BindBufferRange@20)
1499
	GL_STUB_ALIAS(BindFragDataLocationEXT, 574, BindFragDataLocationEXT@12, BindFragDataLocation, BindFragDataLocation@12)
1500
	GL_STUB_ALIAS(ClampColorARB, 575, ClampColorARB@8, ClampColor, ClampColor@8)
1501
	GL_STUB_ALIAS(ColorMaskIndexedEXT, 580, ColorMaskIndexedEXT@20, ColorMaski, ColorMaski@20)
1502
	GL_STUB_ALIAS(DisableIndexedEXT, 581, DisableIndexedEXT@8, Disablei, Disablei@8)
1503
	GL_STUB_ALIAS(EnableIndexedEXT, 582, EnableIndexedEXT@8, Enablei, Enablei@8)
1504
	GL_STUB_ALIAS(EndConditionalRenderNV, 583, EndConditionalRenderNV@0, EndConditionalRender, EndConditionalRender@0)
1505
	GL_STUB_ALIAS(EndTransformFeedbackEXT, 584, EndTransformFeedbackEXT@0, EndTransformFeedback, EndTransformFeedback@0)
1506
	GL_STUB_ALIAS(GetBooleanIndexedvEXT, 585, GetBooleanIndexedvEXT@12, GetBooleani_v, GetBooleani_v@12)
1507
	GL_STUB_ALIAS(GetFragDataLocationEXT, 586, GetFragDataLocationEXT@8, GetFragDataLocation, GetFragDataLocation@8)
1508
	GL_STUB_ALIAS(GetIntegerIndexedvEXT, 587, GetIntegerIndexedvEXT@12, GetIntegeri_v, GetIntegeri_v@12)
1509
	GL_STUB_ALIAS(GetTexParameterIivEXT, 589, GetTexParameterIivEXT@12, GetTexParameterIiv, GetTexParameterIiv@12)
1510
	GL_STUB_ALIAS(GetTexParameterIuivEXT, 590, GetTexParameterIuivEXT@12, GetTexParameterIuiv, GetTexParameterIuiv@12)
1511
	GL_STUB_ALIAS(GetTransformFeedbackVaryingEXT, 591, GetTransformFeedbackVaryingEXT@28, GetTransformFeedbackVarying, GetTransformFeedbackVarying@28)
1512
	GL_STUB_ALIAS(GetUniformuivEXT, 592, GetUniformuivEXT@12, GetUniformuiv, GetUniformuiv@12)
1513
	GL_STUB_ALIAS(GetVertexAttribIivEXT, 593, GetVertexAttribIivEXT@12, GetVertexAttribIiv, GetVertexAttribIiv@12)
1514
	GL_STUB_ALIAS(GetVertexAttribIuivEXT, 594, GetVertexAttribIuivEXT@12, GetVertexAttribIuiv, GetVertexAttribIuiv@12)
1515
	GL_STUB_ALIAS(IsEnabledIndexedEXT, 595, IsEnabledIndexedEXT@8, IsEnabledi, IsEnabledi@8)
1516
	GL_STUB_ALIAS(TexParameterIivEXT, 596, TexParameterIivEXT@12, TexParameterIiv, TexParameterIiv@12)
1517
	GL_STUB_ALIAS(TexParameterIuivEXT, 597, TexParameterIuivEXT@12, TexParameterIuiv, TexParameterIuiv@12)
1518
	GL_STUB_ALIAS(TransformFeedbackVaryingsEXT, 598, TransformFeedbackVaryingsEXT@16, TransformFeedbackVaryings, TransformFeedbackVaryings@16)
1519
	GL_STUB_ALIAS(Uniform1uiEXT, 599, Uniform1uiEXT@8, Uniform1ui, Uniform1ui@8)
1520
	GL_STUB_ALIAS(Uniform1uivEXT, 600, Uniform1uivEXT@12, Uniform1uiv, Uniform1uiv@12)
1521
	GL_STUB_ALIAS(Uniform2uiEXT, 601, Uniform2uiEXT@12, Uniform2ui, Uniform2ui@12)
1522
	GL_STUB_ALIAS(Uniform2uivEXT, 602, Uniform2uivEXT@12, Uniform2uiv, Uniform2uiv@12)
1523
	GL_STUB_ALIAS(Uniform3uiEXT, 603, Uniform3uiEXT@16, Uniform3ui, Uniform3ui@16)
1524
	GL_STUB_ALIAS(Uniform3uivEXT, 604, Uniform3uivEXT@12, Uniform3uiv, Uniform3uiv@12)
1525
	GL_STUB_ALIAS(Uniform4uiEXT, 605, Uniform4uiEXT@20, Uniform4ui, Uniform4ui@20)
1526
	GL_STUB_ALIAS(Uniform4uivEXT, 606, Uniform4uivEXT@12, Uniform4uiv, Uniform4uiv@12)
1527
	GL_STUB_ALIAS(VertexAttribI1ivEXT, 607, VertexAttribI1ivEXT@8, VertexAttribI1iv, VertexAttribI1iv@8)
1528
	GL_STUB_ALIAS(VertexAttribI1uivEXT, 608, VertexAttribI1uivEXT@8, VertexAttribI1uiv, VertexAttribI1uiv@8)
1529
	GL_STUB_ALIAS(VertexAttribI4bvEXT, 609, VertexAttribI4bvEXT@8, VertexAttribI4bv, VertexAttribI4bv@8)
1530
	GL_STUB_ALIAS(VertexAttribI4svEXT, 610, VertexAttribI4svEXT@8, VertexAttribI4sv, VertexAttribI4sv@8)
1531
	GL_STUB_ALIAS(VertexAttribI4ubvEXT, 611, VertexAttribI4ubvEXT@8, VertexAttribI4ubv, VertexAttribI4ubv@8)
1532
	GL_STUB_ALIAS(VertexAttribI4usvEXT, 612, VertexAttribI4usvEXT@8, VertexAttribI4usv, VertexAttribI4usv@8)
1533
	GL_STUB_ALIAS(VertexAttribIPointerEXT, 613, VertexAttribIPointerEXT@20, VertexAttribIPointer, VertexAttribIPointer@20)
1534
	GL_STUB_ALIAS(PrimitiveRestartIndexNV, 614, PrimitiveRestartIndexNV@4, PrimitiveRestartIndex, PrimitiveRestartIndex@4)
1535
	GL_STUB_ALIAS(TexBufferARB, 615, TexBufferARB@12, TexBuffer, TexBuffer@12)
1536
	GL_STUB_ALIAS(FramebufferTextureARB, 616, FramebufferTextureARB@16, FramebufferTexture, FramebufferTexture@16)
1537
	GL_STUB_ALIAS(VertexAttribDivisorARB, 619, VertexAttribDivisorARB@8, VertexAttribDivisor, VertexAttribDivisor@8)
1538
	GL_STUB_ALIAS(BindProgramNV, 620, BindProgramNV@8, BindProgramARB, BindProgramARB@8)
1539
	GL_STUB_ALIAS(DeleteProgramsNV, 621, DeleteProgramsNV@8, DeleteProgramsARB, DeleteProgramsARB@8)
1540
	GL_STUB_ALIAS(GenProgramsNV, 622, GenProgramsNV@8, GenProgramsARB, GenProgramsARB@8)
1541
	GL_STUB_ALIAS(IsProgramNV, 629, IsProgramNV@4, IsProgramARB, IsProgramARB@4)
1542
	GL_STUB_ALIAS(ProgramParameter4dNV, 630, ProgramParameter4dNV@40, ProgramEnvParameter4dARB, ProgramEnvParameter4dARB@40)
1543
	GL_STUB_ALIAS(ProgramParameter4dvNV, 631, ProgramParameter4dvNV@12, ProgramEnvParameter4dvARB, ProgramEnvParameter4dvARB@12)
1544
	GL_STUB_ALIAS(ProgramParameter4fNV, 632, ProgramParameter4fNV@24, ProgramEnvParameter4fARB, ProgramEnvParameter4fARB@24)
1545
	GL_STUB_ALIAS(ProgramParameter4fvNV, 633, ProgramParameter4fvNV@12, ProgramEnvParameter4fvARB, ProgramEnvParameter4fvARB@12)
1546
	GL_STUB_ALIAS(VertexAttrib1f, 639, VertexAttrib1f@8, VertexAttrib1fARB, VertexAttrib1fARB@8)
1547
	GL_STUB_ALIAS(VertexAttrib1fv, 640, VertexAttrib1fv@8, VertexAttrib1fvARB, VertexAttrib1fvARB@8)
1548
	GL_STUB_ALIAS(VertexAttrib2f, 641, VertexAttrib2f@12, VertexAttrib2fARB, VertexAttrib2fARB@12)
1549
	GL_STUB_ALIAS(VertexAttrib2fv, 642, VertexAttrib2fv@8, VertexAttrib2fvARB, VertexAttrib2fvARB@8)
1550
	GL_STUB_ALIAS(VertexAttrib3f, 643, VertexAttrib3f@16, VertexAttrib3fARB, VertexAttrib3fARB@16)
1551
	GL_STUB_ALIAS(VertexAttrib3fv, 644, VertexAttrib3fv@8, VertexAttrib3fvARB, VertexAttrib3fvARB@8)
1552
	GL_STUB_ALIAS(VertexAttrib4f, 645, VertexAttrib4f@20, VertexAttrib4fARB, VertexAttrib4fARB@20)
1553
	GL_STUB_ALIAS(VertexAttrib4fv, 646, VertexAttrib4fv@8, VertexAttrib4fvARB, VertexAttrib4fvARB@8)
1554
	GL_STUB_ALIAS(DrawArraysInstancedEXT, 657, DrawArraysInstancedEXT@16, DrawArraysInstancedARB, DrawArraysInstancedARB@16)
1555
	GL_STUB_ALIAS(DrawArraysInstanced, 657, DrawArraysInstanced@16, DrawArraysInstancedARB, DrawArraysInstancedARB@16)
1556
	GL_STUB_ALIAS(DrawElementsInstancedEXT, 658, DrawElementsInstancedEXT@20, DrawElementsInstancedARB, DrawElementsInstancedARB@20)
1557
	GL_STUB_ALIAS(DrawElementsInstanced, 658, DrawElementsInstanced@20, DrawElementsInstancedARB, DrawElementsInstancedARB@20)
1558
	GL_STUB_ALIAS(CheckFramebufferStatusEXT, 662, CheckFramebufferStatusEXT@4, CheckFramebufferStatus, CheckFramebufferStatus@4)
1559
	GL_STUB_ALIAS(DeleteFramebuffersEXT, 663, DeleteFramebuffersEXT@8, DeleteFramebuffers, DeleteFramebuffers@8)
1560
	GL_STUB_ALIAS(DeleteRenderbuffersEXT, 664, DeleteRenderbuffersEXT@8, DeleteRenderbuffers, DeleteRenderbuffers@8)
1561
	GL_STUB_ALIAS(FramebufferRenderbufferEXT, 665, FramebufferRenderbufferEXT@16, FramebufferRenderbuffer, FramebufferRenderbuffer@16)
1562
	GL_STUB_ALIAS(FramebufferTexture1DEXT, 666, FramebufferTexture1DEXT@20, FramebufferTexture1D, FramebufferTexture1D@20)
1563
	GL_STUB_ALIAS(FramebufferTexture2DEXT, 667, FramebufferTexture2DEXT@20, FramebufferTexture2D, FramebufferTexture2D@20)
1564
	GL_STUB_ALIAS(FramebufferTexture3DEXT, 668, FramebufferTexture3DEXT@24, FramebufferTexture3D, FramebufferTexture3D@24)
1565
	GL_STUB_ALIAS(FramebufferTextureLayerARB, 669, FramebufferTextureLayerARB@20, FramebufferTextureLayer, FramebufferTextureLayer@20)
1566
	GL_STUB_ALIAS(FramebufferTextureLayerEXT, 669, FramebufferTextureLayerEXT@20, FramebufferTextureLayer, FramebufferTextureLayer@20)
1567
	GL_STUB_ALIAS(GenFramebuffersEXT, 670, GenFramebuffersEXT@8, GenFramebuffers, GenFramebuffers@8)
1568
	GL_STUB_ALIAS(GenRenderbuffersEXT, 671, GenRenderbuffersEXT@8, GenRenderbuffers, GenRenderbuffers@8)
1569
	GL_STUB_ALIAS(GenerateMipmapEXT, 672, GenerateMipmapEXT@4, GenerateMipmap, GenerateMipmap@4)
1570
	GL_STUB_ALIAS(GetFramebufferAttachmentParameterivEXT, 673, GetFramebufferAttachmentParameterivEXT@16, GetFramebufferAttachmentParameteriv, GetFramebufferAttachmentParameteriv@16)
1571
	GL_STUB_ALIAS(GetRenderbufferParameterivEXT, 674, GetRenderbufferParameterivEXT@12, GetRenderbufferParameteriv, GetRenderbufferParameteriv@12)
1572
	GL_STUB_ALIAS(IsFramebufferEXT, 675, IsFramebufferEXT@4, IsFramebuffer, IsFramebuffer@4)
1573
	GL_STUB_ALIAS(IsRenderbufferEXT, 676, IsRenderbufferEXT@4, IsRenderbuffer, IsRenderbuffer@4)
1574
	GL_STUB_ALIAS(RenderbufferStorageEXT, 677, RenderbufferStorageEXT@16, RenderbufferStorage, RenderbufferStorage@16)
1575
	GL_STUB_ALIAS(RenderbufferStorageMultisampleEXT, 678, RenderbufferStorageMultisampleEXT@20, RenderbufferStorageMultisample, RenderbufferStorageMultisample@20)
1576
	GL_STUB_ALIAS(ProvokingVertexEXT, 705, ProvokingVertexEXT@4, ProvokingVertex, ProvokingVertex@4)
1577
	GL_STUB_ALIAS(BlendEquationSeparateIndexedAMD, 710, BlendEquationSeparateIndexedAMD@12, BlendEquationSeparateiARB, BlendEquationSeparateiARB@12)
1578
	GL_STUB_ALIAS(BlendEquationIndexedAMD, 711, BlendEquationIndexedAMD@8, BlendEquationiARB, BlendEquationiARB@8)
1579
	GL_STUB_ALIAS(BlendFuncSeparateIndexedAMD, 712, BlendFuncSeparateIndexedAMD@20, BlendFuncSeparateiARB, BlendFuncSeparateiARB@20)
1580
	GL_STUB_ALIAS(BlendFuncIndexedAMD, 713, BlendFuncIndexedAMD@12, BlendFunciARB, BlendFunciARB@12)
1581
	GL_STUB_ALIAS(ProgramParameteriARB, 789, ProgramParameteriARB@12, ProgramParameteri, ProgramParameteri@12)
1582
	GL_STUB_ALIAS(SecondaryColor3f, 857, SecondaryColor3f@12, SecondaryColor3fEXT, SecondaryColor3fEXT@12)
1583
	GL_STUB_ALIAS(SecondaryColor3fv, 858, SecondaryColor3fv@4, SecondaryColor3fvEXT, SecondaryColor3fvEXT@4)
1584
	GL_STUB_ALIAS(MultiDrawElements, 859, MultiDrawElements@20, MultiDrawElementsEXT, MultiDrawElementsEXT@20)
1585
	GL_STUB_ALIAS(FogCoordf, 860, FogCoordf@4, FogCoordfEXT, FogCoordfEXT@4)
1586
	GL_STUB_ALIAS(FogCoordfv, 861, FogCoordfv@4, FogCoordfvEXT, FogCoordfvEXT@4)
1587
	GL_STUB_ALIAS(VertexAttribI1i, 964, VertexAttribI1i@8, VertexAttribI1iEXT, VertexAttribI1iEXT@8)
1588
	GL_STUB_ALIAS(VertexAttribI1ui, 965, VertexAttribI1ui@8, VertexAttribI1uiEXT, VertexAttribI1uiEXT@8)
1589
	GL_STUB_ALIAS(VertexAttribI2i, 966, VertexAttribI2i@12, VertexAttribI2iEXT, VertexAttribI2iEXT@12)
1590
	GL_STUB_ALIAS(VertexAttribI2iv, 967, VertexAttribI2iv@8, VertexAttribI2ivEXT, VertexAttribI2ivEXT@8)
1591
	GL_STUB_ALIAS(VertexAttribI2ui, 968, VertexAttribI2ui@12, VertexAttribI2uiEXT, VertexAttribI2uiEXT@12)
1592
	GL_STUB_ALIAS(VertexAttribI2uiv, 969, VertexAttribI2uiv@8, VertexAttribI2uivEXT, VertexAttribI2uivEXT@8)
1593
	GL_STUB_ALIAS(VertexAttribI3i, 970, VertexAttribI3i@16, VertexAttribI3iEXT, VertexAttribI3iEXT@16)
1594
	GL_STUB_ALIAS(VertexAttribI3iv, 971, VertexAttribI3iv@8, VertexAttribI3ivEXT, VertexAttribI3ivEXT@8)
1595
	GL_STUB_ALIAS(VertexAttribI3ui, 972, VertexAttribI3ui@16, VertexAttribI3uiEXT, VertexAttribI3uiEXT@16)
1596
	GL_STUB_ALIAS(VertexAttribI3uiv, 973, VertexAttribI3uiv@8, VertexAttribI3uivEXT, VertexAttribI3uivEXT@8)
1597
	GL_STUB_ALIAS(VertexAttribI4i, 974, VertexAttribI4i@20, VertexAttribI4iEXT, VertexAttribI4iEXT@20)
1598
	GL_STUB_ALIAS(VertexAttribI4iv, 975, VertexAttribI4iv@8, VertexAttribI4ivEXT, VertexAttribI4ivEXT@8)
1599
	GL_STUB_ALIAS(VertexAttribI4ui, 976, VertexAttribI4ui@20, VertexAttribI4uiEXT, VertexAttribI4uiEXT@20)
1600
	GL_STUB_ALIAS(VertexAttribI4uiv, 977, VertexAttribI4uiv@8, VertexAttribI4uivEXT, VertexAttribI4uivEXT@8)
1601
 
1602
		GLOBL	GLNAME(gl_dispatch_functions_end)
1603
		HIDDEN(GLNAME(gl_dispatch_functions_end))
1604
		ALIGNTEXT16
1605
GLNAME(gl_dispatch_functions_end):
1606
 
1607
#if defined (__ELF__) && defined (__linux__)
1608
	.section .note.GNU-stack,"",%progbits
1609
#endif