31134bbc54500934b1e4a2d562fc9e142e4eacb0
[reactos.git] / reactos / dll / opengl / mesa / src / mesa / main / dispatch.h
1 /* DO NOT EDIT - This file generated automatically by gl_table.py (from Mesa) script */
2
3 /*
4 * (C) Copyright IBM Corporation 2005
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sub license,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * IBM,
22 * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28 #if !defined( _DISPATCH_H_ )
29 # define _DISPATCH_H_
30
31
32 /**
33 * \file main/dispatch.h
34 * Macros for handling GL dispatch tables.
35 *
36 * For each known GL function, there are 3 macros in this file. The first
37 * macro is named CALL_FuncName and is used to call that GL function using
38 * the specified dispatch table. The other 2 macros, called GET_FuncName
39 * can SET_FuncName, are used to get and set the dispatch pointer for the
40 * named function in the specified dispatch table.
41 */
42
43 /* GLXEXT is defined when building the GLX extension in the xserver.
44 */
45 #if !defined(GLXEXT)
46 #include "main/mfeatures.h"
47 #endif
48
49 #define CALL_by_offset(disp, cast, offset, parameters) \
50 (*(cast (GET_by_offset(disp, offset)))) parameters
51 #define GET_by_offset(disp, offset) \
52 (offset >= 0) ? (((_glapi_proc *)(disp))[offset]) : NULL
53 #define SET_by_offset(disp, offset, fn) \
54 do { \
55 if ( (offset) < 0 ) { \
56 /* fprintf( stderr, "[%s:%u] SET_by_offset(%p, %d, %s)!\n", */ \
57 /* __func__, __LINE__, disp, offset, # fn); */ \
58 /* abort(); */ \
59 } \
60 else { \
61 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
62 } \
63 } while(0)
64
65 /* total number of offsets below */
66 #define _gloffset_COUNT 973
67
68 #define _gloffset_NewList 0
69 #define _gloffset_EndList 1
70 #define _gloffset_CallList 2
71 #define _gloffset_CallLists 3
72 #define _gloffset_DeleteLists 4
73 #define _gloffset_GenLists 5
74 #define _gloffset_ListBase 6
75 #define _gloffset_Begin 7
76 #define _gloffset_Bitmap 8
77 #define _gloffset_Color3b 9
78 #define _gloffset_Color3bv 10
79 #define _gloffset_Color3d 11
80 #define _gloffset_Color3dv 12
81 #define _gloffset_Color3f 13
82 #define _gloffset_Color3fv 14
83 #define _gloffset_Color3i 15
84 #define _gloffset_Color3iv 16
85 #define _gloffset_Color3s 17
86 #define _gloffset_Color3sv 18
87 #define _gloffset_Color3ub 19
88 #define _gloffset_Color3ubv 20
89 #define _gloffset_Color3ui 21
90 #define _gloffset_Color3uiv 22
91 #define _gloffset_Color3us 23
92 #define _gloffset_Color3usv 24
93 #define _gloffset_Color4b 25
94 #define _gloffset_Color4bv 26
95 #define _gloffset_Color4d 27
96 #define _gloffset_Color4dv 28
97 #define _gloffset_Color4f 29
98 #define _gloffset_Color4fv 30
99 #define _gloffset_Color4i 31
100 #define _gloffset_Color4iv 32
101 #define _gloffset_Color4s 33
102 #define _gloffset_Color4sv 34
103 #define _gloffset_Color4ub 35
104 #define _gloffset_Color4ubv 36
105 #define _gloffset_Color4ui 37
106 #define _gloffset_Color4uiv 38
107 #define _gloffset_Color4us 39
108 #define _gloffset_Color4usv 40
109 #define _gloffset_EdgeFlag 41
110 #define _gloffset_EdgeFlagv 42
111 #define _gloffset_End 43
112 #define _gloffset_Indexd 44
113 #define _gloffset_Indexdv 45
114 #define _gloffset_Indexf 46
115 #define _gloffset_Indexfv 47
116 #define _gloffset_Indexi 48
117 #define _gloffset_Indexiv 49
118 #define _gloffset_Indexs 50
119 #define _gloffset_Indexsv 51
120 #define _gloffset_Normal3b 52
121 #define _gloffset_Normal3bv 53
122 #define _gloffset_Normal3d 54
123 #define _gloffset_Normal3dv 55
124 #define _gloffset_Normal3f 56
125 #define _gloffset_Normal3fv 57
126 #define _gloffset_Normal3i 58
127 #define _gloffset_Normal3iv 59
128 #define _gloffset_Normal3s 60
129 #define _gloffset_Normal3sv 61
130 #define _gloffset_RasterPos2d 62
131 #define _gloffset_RasterPos2dv 63
132 #define _gloffset_RasterPos2f 64
133 #define _gloffset_RasterPos2fv 65
134 #define _gloffset_RasterPos2i 66
135 #define _gloffset_RasterPos2iv 67
136 #define _gloffset_RasterPos2s 68
137 #define _gloffset_RasterPos2sv 69
138 #define _gloffset_RasterPos3d 70
139 #define _gloffset_RasterPos3dv 71
140 #define _gloffset_RasterPos3f 72
141 #define _gloffset_RasterPos3fv 73
142 #define _gloffset_RasterPos3i 74
143 #define _gloffset_RasterPos3iv 75
144 #define _gloffset_RasterPos3s 76
145 #define _gloffset_RasterPos3sv 77
146 #define _gloffset_RasterPos4d 78
147 #define _gloffset_RasterPos4dv 79
148 #define _gloffset_RasterPos4f 80
149 #define _gloffset_RasterPos4fv 81
150 #define _gloffset_RasterPos4i 82
151 #define _gloffset_RasterPos4iv 83
152 #define _gloffset_RasterPos4s 84
153 #define _gloffset_RasterPos4sv 85
154 #define _gloffset_Rectd 86
155 #define _gloffset_Rectdv 87
156 #define _gloffset_Rectf 88
157 #define _gloffset_Rectfv 89
158 #define _gloffset_Recti 90
159 #define _gloffset_Rectiv 91
160 #define _gloffset_Rects 92
161 #define _gloffset_Rectsv 93
162 #define _gloffset_TexCoord1d 94
163 #define _gloffset_TexCoord1dv 95
164 #define _gloffset_TexCoord1f 96
165 #define _gloffset_TexCoord1fv 97
166 #define _gloffset_TexCoord1i 98
167 #define _gloffset_TexCoord1iv 99
168 #define _gloffset_TexCoord1s 100
169 #define _gloffset_TexCoord1sv 101
170 #define _gloffset_TexCoord2d 102
171 #define _gloffset_TexCoord2dv 103
172 #define _gloffset_TexCoord2f 104
173 #define _gloffset_TexCoord2fv 105
174 #define _gloffset_TexCoord2i 106
175 #define _gloffset_TexCoord2iv 107
176 #define _gloffset_TexCoord2s 108
177 #define _gloffset_TexCoord2sv 109
178 #define _gloffset_TexCoord3d 110
179 #define _gloffset_TexCoord3dv 111
180 #define _gloffset_TexCoord3f 112
181 #define _gloffset_TexCoord3fv 113
182 #define _gloffset_TexCoord3i 114
183 #define _gloffset_TexCoord3iv 115
184 #define _gloffset_TexCoord3s 116
185 #define _gloffset_TexCoord3sv 117
186 #define _gloffset_TexCoord4d 118
187 #define _gloffset_TexCoord4dv 119
188 #define _gloffset_TexCoord4f 120
189 #define _gloffset_TexCoord4fv 121
190 #define _gloffset_TexCoord4i 122
191 #define _gloffset_TexCoord4iv 123
192 #define _gloffset_TexCoord4s 124
193 #define _gloffset_TexCoord4sv 125
194 #define _gloffset_Vertex2d 126
195 #define _gloffset_Vertex2dv 127
196 #define _gloffset_Vertex2f 128
197 #define _gloffset_Vertex2fv 129
198 #define _gloffset_Vertex2i 130
199 #define _gloffset_Vertex2iv 131
200 #define _gloffset_Vertex2s 132
201 #define _gloffset_Vertex2sv 133
202 #define _gloffset_Vertex3d 134
203 #define _gloffset_Vertex3dv 135
204 #define _gloffset_Vertex3f 136
205 #define _gloffset_Vertex3fv 137
206 #define _gloffset_Vertex3i 138
207 #define _gloffset_Vertex3iv 139
208 #define _gloffset_Vertex3s 140
209 #define _gloffset_Vertex3sv 141
210 #define _gloffset_Vertex4d 142
211 #define _gloffset_Vertex4dv 143
212 #define _gloffset_Vertex4f 144
213 #define _gloffset_Vertex4fv 145
214 #define _gloffset_Vertex4i 146
215 #define _gloffset_Vertex4iv 147
216 #define _gloffset_Vertex4s 148
217 #define _gloffset_Vertex4sv 149
218 #define _gloffset_ClipPlane 150
219 #define _gloffset_ColorMaterial 151
220 #define _gloffset_CullFace 152
221 #define _gloffset_Fogf 153
222 #define _gloffset_Fogfv 154
223 #define _gloffset_Fogi 155
224 #define _gloffset_Fogiv 156
225 #define _gloffset_FrontFace 157
226 #define _gloffset_Hint 158
227 #define _gloffset_Lightf 159
228 #define _gloffset_Lightfv 160
229 #define _gloffset_Lighti 161
230 #define _gloffset_Lightiv 162
231 #define _gloffset_LightModelf 163
232 #define _gloffset_LightModelfv 164
233 #define _gloffset_LightModeli 165
234 #define _gloffset_LightModeliv 166
235 #define _gloffset_LineStipple 167
236 #define _gloffset_LineWidth 168
237 #define _gloffset_Materialf 169
238 #define _gloffset_Materialfv 170
239 #define _gloffset_Materiali 171
240 #define _gloffset_Materialiv 172
241 #define _gloffset_PointSize 173
242 #define _gloffset_PolygonMode 174
243 #define _gloffset_PolygonStipple 175
244 #define _gloffset_Scissor 176
245 #define _gloffset_ShadeModel 177
246 #define _gloffset_TexParameterf 178
247 #define _gloffset_TexParameterfv 179
248 #define _gloffset_TexParameteri 180
249 #define _gloffset_TexParameteriv 181
250 #define _gloffset_TexImage1D 182
251 #define _gloffset_TexImage2D 183
252 #define _gloffset_TexEnvf 184
253 #define _gloffset_TexEnvfv 185
254 #define _gloffset_TexEnvi 186
255 #define _gloffset_TexEnviv 187
256 #define _gloffset_TexGend 188
257 #define _gloffset_TexGendv 189
258 #define _gloffset_TexGenf 190
259 #define _gloffset_TexGenfv 191
260 #define _gloffset_TexGeni 192
261 #define _gloffset_TexGeniv 193
262 #define _gloffset_FeedbackBuffer 194
263 #define _gloffset_SelectBuffer 195
264 #define _gloffset_RenderMode 196
265 #define _gloffset_InitNames 197
266 #define _gloffset_LoadName 198
267 #define _gloffset_PassThrough 199
268 #define _gloffset_PopName 200
269 #define _gloffset_PushName 201
270 #define _gloffset_DrawBuffer 202
271 #define _gloffset_Clear 203
272 #define _gloffset_ClearAccum 204
273 #define _gloffset_ClearIndex 205
274 #define _gloffset_ClearColor 206
275 #define _gloffset_ClearStencil 207
276 #define _gloffset_ClearDepth 208
277 #define _gloffset_StencilMask 209
278 #define _gloffset_ColorMask 210
279 #define _gloffset_DepthMask 211
280 #define _gloffset_IndexMask 212
281 #define _gloffset_Accum 213
282 #define _gloffset_Disable 214
283 #define _gloffset_Enable 215
284 #define _gloffset_Finish 216
285 #define _gloffset_Flush 217
286 #define _gloffset_PopAttrib 218
287 #define _gloffset_PushAttrib 219
288 #define _gloffset_Map1d 220
289 #define _gloffset_Map1f 221
290 #define _gloffset_Map2d 222
291 #define _gloffset_Map2f 223
292 #define _gloffset_MapGrid1d 224
293 #define _gloffset_MapGrid1f 225
294 #define _gloffset_MapGrid2d 226
295 #define _gloffset_MapGrid2f 227
296 #define _gloffset_EvalCoord1d 228
297 #define _gloffset_EvalCoord1dv 229
298 #define _gloffset_EvalCoord1f 230
299 #define _gloffset_EvalCoord1fv 231
300 #define _gloffset_EvalCoord2d 232
301 #define _gloffset_EvalCoord2dv 233
302 #define _gloffset_EvalCoord2f 234
303 #define _gloffset_EvalCoord2fv 235
304 #define _gloffset_EvalMesh1 236
305 #define _gloffset_EvalPoint1 237
306 #define _gloffset_EvalMesh2 238
307 #define _gloffset_EvalPoint2 239
308 #define _gloffset_AlphaFunc 240
309 #define _gloffset_BlendFunc 241
310 #define _gloffset_LogicOp 242
311 #define _gloffset_StencilFunc 243
312 #define _gloffset_StencilOp 244
313 #define _gloffset_DepthFunc 245
314 #define _gloffset_PixelZoom 246
315 #define _gloffset_PixelTransferf 247
316 #define _gloffset_PixelTransferi 248
317 #define _gloffset_PixelStoref 249
318 #define _gloffset_PixelStorei 250
319 #define _gloffset_PixelMapfv 251
320 #define _gloffset_PixelMapuiv 252
321 #define _gloffset_PixelMapusv 253
322 #define _gloffset_ReadBuffer 254
323 #define _gloffset_CopyPixels 255
324 #define _gloffset_ReadPixels 256
325 #define _gloffset_DrawPixels 257
326 #define _gloffset_GetBooleanv 258
327 #define _gloffset_GetClipPlane 259
328 #define _gloffset_GetDoublev 260
329 #define _gloffset_GetError 261
330 #define _gloffset_GetFloatv 262
331 #define _gloffset_GetIntegerv 263
332 #define _gloffset_GetLightfv 264
333 #define _gloffset_GetLightiv 265
334 #define _gloffset_GetMapdv 266
335 #define _gloffset_GetMapfv 267
336 #define _gloffset_GetMapiv 268
337 #define _gloffset_GetMaterialfv 269
338 #define _gloffset_GetMaterialiv 270
339 #define _gloffset_GetPixelMapfv 271
340 #define _gloffset_GetPixelMapuiv 272
341 #define _gloffset_GetPixelMapusv 273
342 #define _gloffset_GetPolygonStipple 274
343 #define _gloffset_GetString 275
344 #define _gloffset_GetTexEnvfv 276
345 #define _gloffset_GetTexEnviv 277
346 #define _gloffset_GetTexGendv 278
347 #define _gloffset_GetTexGenfv 279
348 #define _gloffset_GetTexGeniv 280
349 #define _gloffset_GetTexImage 281
350 #define _gloffset_GetTexParameterfv 282
351 #define _gloffset_GetTexParameteriv 283
352 #define _gloffset_GetTexLevelParameterfv 284
353 #define _gloffset_GetTexLevelParameteriv 285
354 #define _gloffset_IsEnabled 286
355 #define _gloffset_IsList 287
356 #define _gloffset_DepthRange 288
357 #define _gloffset_Frustum 289
358 #define _gloffset_LoadIdentity 290
359 #define _gloffset_LoadMatrixf 291
360 #define _gloffset_LoadMatrixd 292
361 #define _gloffset_MatrixMode 293
362 #define _gloffset_MultMatrixf 294
363 #define _gloffset_MultMatrixd 295
364 #define _gloffset_Ortho 296
365 #define _gloffset_PopMatrix 297
366 #define _gloffset_PushMatrix 298
367 #define _gloffset_Rotated 299
368 #define _gloffset_Rotatef 300
369 #define _gloffset_Scaled 301
370 #define _gloffset_Scalef 302
371 #define _gloffset_Translated 303
372 #define _gloffset_Translatef 304
373 #define _gloffset_Viewport 305
374 #define _gloffset_ArrayElement 306
375 #define _gloffset_BindTexture 307
376 #define _gloffset_ColorPointer 308
377 #define _gloffset_DisableClientState 309
378 #define _gloffset_DrawArrays 310
379 #define _gloffset_DrawElements 311
380 #define _gloffset_EdgeFlagPointer 312
381 #define _gloffset_EnableClientState 313
382 #define _gloffset_IndexPointer 314
383 #define _gloffset_Indexub 315
384 #define _gloffset_Indexubv 316
385 #define _gloffset_InterleavedArrays 317
386 #define _gloffset_NormalPointer 318
387 #define _gloffset_PolygonOffset 319
388 #define _gloffset_TexCoordPointer 320
389 #define _gloffset_VertexPointer 321
390 #define _gloffset_AreTexturesResident 322
391 #define _gloffset_CopyTexImage1D 323
392 #define _gloffset_CopyTexImage2D 324
393 #define _gloffset_CopyTexSubImage1D 325
394 #define _gloffset_CopyTexSubImage2D 326
395 #define _gloffset_DeleteTextures 327
396 #define _gloffset_GenTextures 328
397 #define _gloffset_GetPointerv 329
398 #define _gloffset_IsTexture 330
399 #define _gloffset_PrioritizeTextures 331
400 #define _gloffset_TexSubImage1D 332
401 #define _gloffset_TexSubImage2D 333
402 #define _gloffset_PopClientAttrib 334
403 #define _gloffset_PushClientAttrib 335
404 #define _gloffset_BlendColor 336
405 #define _gloffset_BlendEquation 337
406 #define _gloffset_DrawRangeElements 338
407 #define _gloffset_ColorTable 339
408 #define _gloffset_ColorTableParameterfv 340
409 #define _gloffset_ColorTableParameteriv 341
410 #define _gloffset_CopyColorTable 342
411 #define _gloffset_GetColorTable 343
412 #define _gloffset_GetColorTableParameterfv 344
413 #define _gloffset_GetColorTableParameteriv 345
414 #define _gloffset_ColorSubTable 346
415 #define _gloffset_CopyColorSubTable 347
416 #define _gloffset_ConvolutionFilter1D 348
417 #define _gloffset_ConvolutionFilter2D 349
418 #define _gloffset_ConvolutionParameterf 350
419 #define _gloffset_ConvolutionParameterfv 351
420 #define _gloffset_ConvolutionParameteri 352
421 #define _gloffset_ConvolutionParameteriv 353
422 #define _gloffset_CopyConvolutionFilter1D 354
423 #define _gloffset_CopyConvolutionFilter2D 355
424 #define _gloffset_GetConvolutionFilter 356
425 #define _gloffset_GetConvolutionParameterfv 357
426 #define _gloffset_GetConvolutionParameteriv 358
427 #define _gloffset_GetSeparableFilter 359
428 #define _gloffset_SeparableFilter2D 360
429 #define _gloffset_GetHistogram 361
430 #define _gloffset_GetHistogramParameterfv 362
431 #define _gloffset_GetHistogramParameteriv 363
432 #define _gloffset_GetMinmax 364
433 #define _gloffset_GetMinmaxParameterfv 365
434 #define _gloffset_GetMinmaxParameteriv 366
435 #define _gloffset_Histogram 367
436 #define _gloffset_Minmax 368
437 #define _gloffset_ResetHistogram 369
438 #define _gloffset_ResetMinmax 370
439 #define _gloffset_TexImage3D 371
440 #define _gloffset_TexSubImage3D 372
441 #define _gloffset_CopyTexSubImage3D 373
442 #define _gloffset_ActiveTextureARB 374
443 #define _gloffset_ClientActiveTextureARB 375
444 #define _gloffset_MultiTexCoord1dARB 376
445 #define _gloffset_MultiTexCoord1dvARB 377
446 #define _gloffset_MultiTexCoord1fARB 378
447 #define _gloffset_MultiTexCoord1fvARB 379
448 #define _gloffset_MultiTexCoord1iARB 380
449 #define _gloffset_MultiTexCoord1ivARB 381
450 #define _gloffset_MultiTexCoord1sARB 382
451 #define _gloffset_MultiTexCoord1svARB 383
452 #define _gloffset_MultiTexCoord2dARB 384
453 #define _gloffset_MultiTexCoord2dvARB 385
454 #define _gloffset_MultiTexCoord2fARB 386
455 #define _gloffset_MultiTexCoord2fvARB 387
456 #define _gloffset_MultiTexCoord2iARB 388
457 #define _gloffset_MultiTexCoord2ivARB 389
458 #define _gloffset_MultiTexCoord2sARB 390
459 #define _gloffset_MultiTexCoord2svARB 391
460 #define _gloffset_MultiTexCoord3dARB 392
461 #define _gloffset_MultiTexCoord3dvARB 393
462 #define _gloffset_MultiTexCoord3fARB 394
463 #define _gloffset_MultiTexCoord3fvARB 395
464 #define _gloffset_MultiTexCoord3iARB 396
465 #define _gloffset_MultiTexCoord3ivARB 397
466 #define _gloffset_MultiTexCoord3sARB 398
467 #define _gloffset_MultiTexCoord3svARB 399
468 #define _gloffset_MultiTexCoord4dARB 400
469 #define _gloffset_MultiTexCoord4dvARB 401
470 #define _gloffset_MultiTexCoord4fARB 402
471 #define _gloffset_MultiTexCoord4fvARB 403
472 #define _gloffset_MultiTexCoord4iARB 404
473 #define _gloffset_MultiTexCoord4ivARB 405
474 #define _gloffset_MultiTexCoord4sARB 406
475 #define _gloffset_MultiTexCoord4svARB 407
476
477 #if !FEATURE_remap_table
478
479 #define _gloffset_AttachShader 408
480 #define _gloffset_CreateProgram 409
481 #define _gloffset_CreateShader 410
482 #define _gloffset_DeleteProgram 411
483 #define _gloffset_DeleteShader 412
484 #define _gloffset_DetachShader 413
485 #define _gloffset_GetAttachedShaders 414
486 #define _gloffset_GetProgramInfoLog 415
487 #define _gloffset_GetProgramiv 416
488 #define _gloffset_GetShaderInfoLog 417
489 #define _gloffset_GetShaderiv 418
490 #define _gloffset_IsProgram 419
491 #define _gloffset_IsShader 420
492 #define _gloffset_StencilFuncSeparate 421
493 #define _gloffset_StencilMaskSeparate 422
494 #define _gloffset_StencilOpSeparate 423
495 #define _gloffset_UniformMatrix2x3fv 424
496 #define _gloffset_UniformMatrix2x4fv 425
497 #define _gloffset_UniformMatrix3x2fv 426
498 #define _gloffset_UniformMatrix3x4fv 427
499 #define _gloffset_UniformMatrix4x2fv 428
500 #define _gloffset_UniformMatrix4x3fv 429
501 #define _gloffset_ClampColor 430
502 #define _gloffset_ClearBufferfi 431
503 #define _gloffset_ClearBufferfv 432
504 #define _gloffset_ClearBufferiv 433
505 #define _gloffset_ClearBufferuiv 434
506 #define _gloffset_GetStringi 435
507 #define _gloffset_TexBuffer 436
508 #define _gloffset_GetBufferParameteri64v 438
509 #define _gloffset_GetInteger64i_v 439
510 #define _gloffset_LoadTransposeMatrixdARB 441
511 #define _gloffset_LoadTransposeMatrixfARB 442
512 #define _gloffset_MultTransposeMatrixdARB 443
513 #define _gloffset_MultTransposeMatrixfARB 444
514 #define _gloffset_SampleCoverageARB 445
515 #define _gloffset_CompressedTexImage1DARB 446
516 #define _gloffset_CompressedTexImage2DARB 447
517 #define _gloffset_CompressedTexImage3DARB 448
518 #define _gloffset_CompressedTexSubImage1DARB 449
519 #define _gloffset_CompressedTexSubImage2DARB 450
520 #define _gloffset_CompressedTexSubImage3DARB 451
521 #define _gloffset_GetCompressedTexImageARB 452
522 #define _gloffset_DisableVertexAttribArrayARB 453
523 #define _gloffset_EnableVertexAttribArrayARB 454
524 #define _gloffset_GetProgramEnvParameterdvARB 455
525 #define _gloffset_GetProgramEnvParameterfvARB 456
526 #define _gloffset_GetProgramLocalParameterdvARB 457
527 #define _gloffset_GetProgramLocalParameterfvARB 458
528 #define _gloffset_GetProgramStringARB 459
529 #define _gloffset_GetProgramivARB 460
530 #define _gloffset_GetVertexAttribdvARB 461
531 #define _gloffset_GetVertexAttribfvARB 462
532 #define _gloffset_GetVertexAttribivARB 463
533 #define _gloffset_ProgramEnvParameter4dARB 464
534 #define _gloffset_ProgramEnvParameter4dvARB 465
535 #define _gloffset_ProgramEnvParameter4fARB 466
536 #define _gloffset_ProgramEnvParameter4fvARB 467
537 #define _gloffset_ProgramLocalParameter4dARB 468
538 #define _gloffset_ProgramLocalParameter4dvARB 469
539 #define _gloffset_ProgramLocalParameter4fARB 470
540 #define _gloffset_ProgramLocalParameter4fvARB 471
541 #define _gloffset_ProgramStringARB 472
542 #define _gloffset_VertexAttrib1dARB 473
543 #define _gloffset_VertexAttrib1dvARB 474
544 #define _gloffset_VertexAttrib1fARB 475
545 #define _gloffset_VertexAttrib1fvARB 476
546 #define _gloffset_VertexAttrib1sARB 477
547 #define _gloffset_VertexAttrib1svARB 478
548 #define _gloffset_VertexAttrib2dARB 479
549 #define _gloffset_VertexAttrib2dvARB 480
550 #define _gloffset_VertexAttrib2fARB 481
551 #define _gloffset_VertexAttrib2fvARB 482
552 #define _gloffset_VertexAttrib2sARB 483
553 #define _gloffset_VertexAttrib2svARB 484
554 #define _gloffset_VertexAttrib3dARB 485
555 #define _gloffset_VertexAttrib3dvARB 486
556 #define _gloffset_VertexAttrib3fARB 487
557 #define _gloffset_VertexAttrib3fvARB 488
558 #define _gloffset_VertexAttrib3sARB 489
559 #define _gloffset_VertexAttrib3svARB 490
560 #define _gloffset_VertexAttrib4NbvARB 491
561 #define _gloffset_VertexAttrib4NivARB 492
562 #define _gloffset_VertexAttrib4NsvARB 493
563 #define _gloffset_VertexAttrib4NubARB 494
564 #define _gloffset_VertexAttrib4NubvARB 495
565 #define _gloffset_VertexAttrib4NuivARB 496
566 #define _gloffset_VertexAttrib4NusvARB 497
567 #define _gloffset_VertexAttrib4bvARB 498
568 #define _gloffset_VertexAttrib4dARB 499
569 #define _gloffset_VertexAttrib4dvARB 500
570 #define _gloffset_VertexAttrib4fARB 501
571 #define _gloffset_VertexAttrib4fvARB 502
572 #define _gloffset_VertexAttrib4ivARB 503
573 #define _gloffset_VertexAttrib4sARB 504
574 #define _gloffset_VertexAttrib4svARB 505
575 #define _gloffset_VertexAttrib4ubvARB 506
576 #define _gloffset_VertexAttrib4uivARB 507
577 #define _gloffset_VertexAttrib4usvARB 508
578 #define _gloffset_VertexAttribPointerARB 509
579 #define _gloffset_BindBufferARB 510
580 #define _gloffset_BufferDataARB 511
581 #define _gloffset_BufferSubDataARB 512
582 #define _gloffset_DeleteBuffersARB 513
583 #define _gloffset_GenBuffersARB 514
584 #define _gloffset_GetBufferParameterivARB 515
585 #define _gloffset_GetBufferPointervARB 516
586 #define _gloffset_GetBufferSubDataARB 517
587 #define _gloffset_IsBufferARB 518
588 #define _gloffset_MapBufferARB 519
589 #define _gloffset_UnmapBufferARB 520
590 #define _gloffset_AttachObjectARB 529
591 #define _gloffset_CompileShaderARB 530
592 #define _gloffset_CreateProgramObjectARB 531
593 #define _gloffset_CreateShaderObjectARB 532
594 #define _gloffset_DeleteObjectARB 533
595 #define _gloffset_DetachObjectARB 534
596 #define _gloffset_GetActiveUniformARB 535
597 #define _gloffset_GetAttachedObjectsARB 536
598 #define _gloffset_GetHandleARB 537
599 #define _gloffset_GetInfoLogARB 538
600 #define _gloffset_GetObjectParameterfvARB 539
601 #define _gloffset_GetObjectParameterivARB 540
602 #define _gloffset_GetShaderSourceARB 541
603 #define _gloffset_GetUniformLocationARB 542
604 #define _gloffset_GetUniformfvARB 543
605 #define _gloffset_GetUniformivARB 544
606 #define _gloffset_LinkProgramARB 545
607 #define _gloffset_ShaderSourceARB 546
608 #define _gloffset_Uniform1fARB 547
609 #define _gloffset_Uniform1fvARB 548
610 #define _gloffset_Uniform1iARB 549
611 #define _gloffset_Uniform1ivARB 550
612 #define _gloffset_Uniform2fARB 551
613 #define _gloffset_Uniform2fvARB 552
614 #define _gloffset_Uniform2iARB 553
615 #define _gloffset_Uniform2ivARB 554
616 #define _gloffset_Uniform3fARB 555
617 #define _gloffset_Uniform3fvARB 556
618 #define _gloffset_Uniform3iARB 557
619 #define _gloffset_Uniform3ivARB 558
620 #define _gloffset_Uniform4fARB 559
621 #define _gloffset_Uniform4fvARB 560
622 #define _gloffset_Uniform4iARB 561
623 #define _gloffset_Uniform4ivARB 562
624 #define _gloffset_UniformMatrix2fvARB 563
625 #define _gloffset_UniformMatrix3fvARB 564
626 #define _gloffset_UniformMatrix4fvARB 565
627 #define _gloffset_UseProgramObjectARB 566
628 #define _gloffset_ValidateProgramARB 567
629 #define _gloffset_BindAttribLocationARB 568
630 #define _gloffset_GetActiveAttribARB 569
631 #define _gloffset_GetAttribLocationARB 570
632 #define _gloffset_DrawBuffersARB 571
633 #define _gloffset_ClampColorARB 572
634 #define _gloffset_DrawArraysInstancedARB 573
635 #define _gloffset_DrawElementsInstancedARB 574
636 #define _gloffset_RenderbufferStorageMultisample 575
637 #define _gloffset_FlushMappedBufferRange 580
638 #define _gloffset_MapBufferRange 581
639 #define _gloffset_TexBufferARB 582
640 #define _gloffset_BindVertexArray 583
641 #define _gloffset_GenVertexArrays 584
642 #define _gloffset_CopyBufferSubData 585
643 #define _gloffset_BlendEquationSeparateiARB 597
644 #define _gloffset_BlendEquationiARB 598
645 #define _gloffset_BlendFuncSeparateiARB 599
646 #define _gloffset_BlendFunciARB 600
647 #define _gloffset_ClearDepthf 660
648 #define _gloffset_DepthRangef 661
649 #define _gloffset_GetShaderPrecisionFormat 662
650 #define _gloffset_ReleaseShaderCompiler 663
651 #define _gloffset_ShaderBinary 664
652 #define _gloffset_GetGraphicsResetStatusARB 665
653 #define _gloffset_GetnColorTableARB 666
654 #define _gloffset_GetnCompressedTexImageARB 667
655 #define _gloffset_GetnConvolutionFilterARB 668
656 #define _gloffset_GetnHistogramARB 669
657 #define _gloffset_GetnMapdvARB 670
658 #define _gloffset_GetnMapfvARB 671
659 #define _gloffset_GetnMapivARB 672
660 #define _gloffset_GetnMinmaxARB 673
661 #define _gloffset_GetnPixelMapfvARB 674
662 #define _gloffset_GetnPixelMapuivARB 675
663 #define _gloffset_GetnPixelMapusvARB 676
664 #define _gloffset_GetnPolygonStippleARB 677
665 #define _gloffset_GetnSeparableFilterARB 678
666 #define _gloffset_GetnTexImageARB 679
667 #define _gloffset_GetnUniformdvARB 680
668 #define _gloffset_GetnUniformfvARB 681
669 #define _gloffset_GetnUniformivARB 682
670 #define _gloffset_GetnUniformuivARB 683
671 #define _gloffset_ReadnPixelsARB 684
672 #define _gloffset_TexStorage1D 685
673 #define _gloffset_TexStorage2D 686
674 #define _gloffset_TexStorage3D 687
675 #define _gloffset_TextureStorage1DEXT 688
676 #define _gloffset_TextureStorage2DEXT 689
677 #define _gloffset_TextureStorage3DEXT 690
678 #define _gloffset_PolygonOffsetEXT 691
679 #define _gloffset_GetPixelTexGenParameterfvSGIS 692
680 #define _gloffset_GetPixelTexGenParameterivSGIS 693
681 #define _gloffset_PixelTexGenParameterfSGIS 694
682 #define _gloffset_PixelTexGenParameterfvSGIS 695
683 #define _gloffset_PixelTexGenParameteriSGIS 696
684 #define _gloffset_PixelTexGenParameterivSGIS 697
685 #define _gloffset_SampleMaskSGIS 698
686 #define _gloffset_SamplePatternSGIS 699
687 #define _gloffset_ColorPointerEXT 700
688 #define _gloffset_EdgeFlagPointerEXT 701
689 #define _gloffset_IndexPointerEXT 702
690 #define _gloffset_NormalPointerEXT 703
691 #define _gloffset_TexCoordPointerEXT 704
692 #define _gloffset_VertexPointerEXT 705
693 #define _gloffset_PointParameterfEXT 706
694 #define _gloffset_PointParameterfvEXT 707
695 #define _gloffset_LockArraysEXT 708
696 #define _gloffset_UnlockArraysEXT 709
697 #define _gloffset_SecondaryColor3bEXT 710
698 #define _gloffset_SecondaryColor3bvEXT 711
699 #define _gloffset_SecondaryColor3dEXT 712
700 #define _gloffset_SecondaryColor3dvEXT 713
701 #define _gloffset_SecondaryColor3fEXT 714
702 #define _gloffset_SecondaryColor3fvEXT 715
703 #define _gloffset_SecondaryColor3iEXT 716
704 #define _gloffset_SecondaryColor3ivEXT 717
705 #define _gloffset_SecondaryColor3sEXT 718
706 #define _gloffset_SecondaryColor3svEXT 719
707 #define _gloffset_SecondaryColor3ubEXT 720
708 #define _gloffset_SecondaryColor3ubvEXT 721
709 #define _gloffset_SecondaryColor3uiEXT 722
710 #define _gloffset_SecondaryColor3uivEXT 723
711 #define _gloffset_SecondaryColor3usEXT 724
712 #define _gloffset_SecondaryColor3usvEXT 725
713 #define _gloffset_SecondaryColorPointerEXT 726
714 #define _gloffset_MultiDrawArraysEXT 727
715 #define _gloffset_MultiDrawElementsEXT 728
716 #define _gloffset_FogCoordPointerEXT 729
717 #define _gloffset_FogCoorddEXT 730
718 #define _gloffset_FogCoorddvEXT 731
719 #define _gloffset_FogCoordfEXT 732
720 #define _gloffset_FogCoordfvEXT 733
721 #define _gloffset_PixelTexGenSGIX 734
722 #define _gloffset_BlendFuncSeparateEXT 735
723 #define _gloffset_FlushVertexArrayRangeNV 736
724 #define _gloffset_VertexArrayRangeNV 737
725 #define _gloffset_CombinerInputNV 738
726 #define _gloffset_CombinerOutputNV 739
727 #define _gloffset_CombinerParameterfNV 740
728 #define _gloffset_CombinerParameterfvNV 741
729 #define _gloffset_CombinerParameteriNV 742
730 #define _gloffset_CombinerParameterivNV 743
731 #define _gloffset_FinalCombinerInputNV 744
732 #define _gloffset_GetCombinerInputParameterfvNV 745
733 #define _gloffset_GetCombinerInputParameterivNV 746
734 #define _gloffset_GetCombinerOutputParameterfvNV 747
735 #define _gloffset_GetCombinerOutputParameterivNV 748
736 #define _gloffset_GetFinalCombinerInputParameterfvNV 749
737 #define _gloffset_GetFinalCombinerInputParameterivNV 750
738 #define _gloffset_ResizeBuffersMESA 751
739 #define _gloffset_WindowPos2dMESA 752
740 #define _gloffset_WindowPos2dvMESA 753
741 #define _gloffset_WindowPos2fMESA 754
742 #define _gloffset_WindowPos2fvMESA 755
743 #define _gloffset_WindowPos2iMESA 756
744 #define _gloffset_WindowPos2ivMESA 757
745 #define _gloffset_WindowPos2sMESA 758
746 #define _gloffset_WindowPos2svMESA 759
747 #define _gloffset_WindowPos3dMESA 760
748 #define _gloffset_WindowPos3dvMESA 761
749 #define _gloffset_WindowPos3fMESA 762
750 #define _gloffset_WindowPos3fvMESA 763
751 #define _gloffset_WindowPos3iMESA 764
752 #define _gloffset_WindowPos3ivMESA 765
753 #define _gloffset_WindowPos3sMESA 766
754 #define _gloffset_WindowPos3svMESA 767
755 #define _gloffset_WindowPos4dMESA 768
756 #define _gloffset_WindowPos4dvMESA 769
757 #define _gloffset_WindowPos4fMESA 770
758 #define _gloffset_WindowPos4fvMESA 771
759 #define _gloffset_WindowPos4iMESA 772
760 #define _gloffset_WindowPos4ivMESA 773
761 #define _gloffset_WindowPos4sMESA 774
762 #define _gloffset_WindowPos4svMESA 775
763 #define _gloffset_MultiModeDrawArraysIBM 776
764 #define _gloffset_MultiModeDrawElementsIBM 777
765 #define _gloffset_DeleteFencesNV 778
766 #define _gloffset_FinishFenceNV 779
767 #define _gloffset_GenFencesNV 780
768 #define _gloffset_GetFenceivNV 781
769 #define _gloffset_IsFenceNV 782
770 #define _gloffset_SetFenceNV 783
771 #define _gloffset_TestFenceNV 784
772 #define _gloffset_AreProgramsResidentNV 785
773 #define _gloffset_BindProgramNV 786
774 #define _gloffset_DeleteProgramsNV 787
775 #define _gloffset_ExecuteProgramNV 788
776 #define _gloffset_GenProgramsNV 789
777 #define _gloffset_GetProgramParameterdvNV 790
778 #define _gloffset_GetProgramParameterfvNV 791
779 #define _gloffset_GetProgramStringNV 792
780 #define _gloffset_GetProgramivNV 793
781 #define _gloffset_GetTrackMatrixivNV 794
782 #define _gloffset_GetVertexAttribPointervNV 795
783 #define _gloffset_GetVertexAttribdvNV 796
784 #define _gloffset_GetVertexAttribfvNV 797
785 #define _gloffset_GetVertexAttribivNV 798
786 #define _gloffset_IsProgramNV 799
787 #define _gloffset_LoadProgramNV 800
788 #define _gloffset_ProgramParameters4dvNV 801
789 #define _gloffset_ProgramParameters4fvNV 802
790 #define _gloffset_RequestResidentProgramsNV 803
791 #define _gloffset_TrackMatrixNV 804
792 #define _gloffset_VertexAttrib1dNV 805
793 #define _gloffset_VertexAttrib1dvNV 806
794 #define _gloffset_VertexAttrib1fNV 807
795 #define _gloffset_VertexAttrib1fvNV 808
796 #define _gloffset_VertexAttrib1sNV 809
797 #define _gloffset_VertexAttrib1svNV 810
798 #define _gloffset_VertexAttrib2dNV 811
799 #define _gloffset_VertexAttrib2dvNV 812
800 #define _gloffset_VertexAttrib2fNV 813
801 #define _gloffset_VertexAttrib2fvNV 814
802 #define _gloffset_VertexAttrib2sNV 815
803 #define _gloffset_VertexAttrib2svNV 816
804 #define _gloffset_VertexAttrib3dNV 817
805 #define _gloffset_VertexAttrib3dvNV 818
806 #define _gloffset_VertexAttrib3fNV 819
807 #define _gloffset_VertexAttrib3fvNV 820
808 #define _gloffset_VertexAttrib3sNV 821
809 #define _gloffset_VertexAttrib3svNV 822
810 #define _gloffset_VertexAttrib4dNV 823
811 #define _gloffset_VertexAttrib4dvNV 824
812 #define _gloffset_VertexAttrib4fNV 825
813 #define _gloffset_VertexAttrib4fvNV 826
814 #define _gloffset_VertexAttrib4sNV 827
815 #define _gloffset_VertexAttrib4svNV 828
816 #define _gloffset_VertexAttrib4ubNV 829
817 #define _gloffset_VertexAttrib4ubvNV 830
818 #define _gloffset_VertexAttribPointerNV 831
819 #define _gloffset_VertexAttribs1dvNV 832
820 #define _gloffset_VertexAttribs1fvNV 833
821 #define _gloffset_VertexAttribs1svNV 834
822 #define _gloffset_VertexAttribs2dvNV 835
823 #define _gloffset_VertexAttribs2fvNV 836
824 #define _gloffset_VertexAttribs2svNV 837
825 #define _gloffset_VertexAttribs3dvNV 838
826 #define _gloffset_VertexAttribs3fvNV 839
827 #define _gloffset_VertexAttribs3svNV 840
828 #define _gloffset_VertexAttribs4dvNV 841
829 #define _gloffset_VertexAttribs4fvNV 842
830 #define _gloffset_VertexAttribs4svNV 843
831 #define _gloffset_VertexAttribs4ubvNV 844
832 #define _gloffset_GetTexBumpParameterfvATI 845
833 #define _gloffset_GetTexBumpParameterivATI 846
834 #define _gloffset_TexBumpParameterfvATI 847
835 #define _gloffset_TexBumpParameterivATI 848
836 #define _gloffset_PointParameteriNV 863
837 #define _gloffset_PointParameterivNV 864
838 #define _gloffset_ActiveStencilFaceEXT 865
839 #define _gloffset_BindVertexArrayAPPLE 866
840 #define _gloffset_DeleteVertexArraysAPPLE 867
841 #define _gloffset_GenVertexArraysAPPLE 868
842 #define _gloffset_IsVertexArrayAPPLE 869
843 #define _gloffset_GetProgramNamedParameterdvNV 870
844 #define _gloffset_GetProgramNamedParameterfvNV 871
845 #define _gloffset_ProgramNamedParameter4dNV 872
846 #define _gloffset_ProgramNamedParameter4dvNV 873
847 #define _gloffset_ProgramNamedParameter4fNV 874
848 #define _gloffset_ProgramNamedParameter4fvNV 875
849 #define _gloffset_PrimitiveRestartIndexNV 876
850 #define _gloffset_PrimitiveRestartNV 877
851 #define _gloffset_DepthBoundsEXT 878
852 #define _gloffset_BlendEquationSeparateEXT 879
853 #define _gloffset_BindFramebufferEXT 880
854 #define _gloffset_BindRenderbufferEXT 881
855 #define _gloffset_CheckFramebufferStatusEXT 882
856 #define _gloffset_DeleteFramebuffersEXT 883
857 #define _gloffset_DeleteRenderbuffersEXT 884
858 #define _gloffset_FramebufferRenderbufferEXT 885
859 #define _gloffset_FramebufferTexture1DEXT 886
860 #define _gloffset_FramebufferTexture2DEXT 887
861 #define _gloffset_FramebufferTexture3DEXT 888
862 #define _gloffset_GenFramebuffersEXT 889
863 #define _gloffset_GenRenderbuffersEXT 890
864 #define _gloffset_GenerateMipmapEXT 891
865 #define _gloffset_GetFramebufferAttachmentParameterivEXT 892
866 #define _gloffset_GetRenderbufferParameterivEXT 893
867 #define _gloffset_IsFramebufferEXT 894
868 #define _gloffset_IsRenderbufferEXT 895
869 #define _gloffset_RenderbufferStorageEXT 896
870 #define _gloffset_BlitFramebufferEXT 897
871 #define _gloffset_BufferParameteriAPPLE 898
872 #define _gloffset_FlushMappedBufferRangeAPPLE 899
873 #define _gloffset_BindFragDataLocationEXT 900
874 #define _gloffset_GetFragDataLocationEXT 901
875 #define _gloffset_GetUniformuivEXT 902
876 #define _gloffset_GetVertexAttribIivEXT 903
877 #define _gloffset_GetVertexAttribIuivEXT 904
878 #define _gloffset_Uniform1uiEXT 905
879 #define _gloffset_Uniform1uivEXT 906
880 #define _gloffset_Uniform2uiEXT 907
881 #define _gloffset_Uniform2uivEXT 908
882 #define _gloffset_Uniform3uiEXT 909
883 #define _gloffset_Uniform3uivEXT 910
884 #define _gloffset_Uniform4uiEXT 911
885 #define _gloffset_Uniform4uivEXT 912
886 #define _gloffset_VertexAttribI1iEXT 913
887 #define _gloffset_VertexAttribI1ivEXT 914
888 #define _gloffset_VertexAttribI1uiEXT 915
889 #define _gloffset_VertexAttribI1uivEXT 916
890 #define _gloffset_VertexAttribI2iEXT 917
891 #define _gloffset_VertexAttribI2ivEXT 918
892 #define _gloffset_VertexAttribI2uiEXT 919
893 #define _gloffset_VertexAttribI2uivEXT 920
894 #define _gloffset_VertexAttribI3iEXT 921
895 #define _gloffset_VertexAttribI3ivEXT 922
896 #define _gloffset_VertexAttribI3uiEXT 923
897 #define _gloffset_VertexAttribI3uivEXT 924
898 #define _gloffset_VertexAttribI4bvEXT 925
899 #define _gloffset_VertexAttribI4iEXT 926
900 #define _gloffset_VertexAttribI4ivEXT 927
901 #define _gloffset_VertexAttribI4svEXT 928
902 #define _gloffset_VertexAttribI4ubvEXT 929
903 #define _gloffset_VertexAttribI4uiEXT 930
904 #define _gloffset_VertexAttribI4uivEXT 931
905 #define _gloffset_VertexAttribI4usvEXT 932
906 #define _gloffset_VertexAttribIPointerEXT 933
907 #define _gloffset_ClearColorIiEXT 941
908 #define _gloffset_ClearColorIuiEXT 942
909 #define _gloffset_GetTexParameterIivEXT 943
910 #define _gloffset_GetTexParameterIuivEXT 944
911 #define _gloffset_TexParameterIivEXT 945
912 #define _gloffset_TexParameterIuivEXT 946
913 #define _gloffset_GetTexParameterPointervAPPLE 957
914 #define _gloffset_TextureRangeAPPLE 958
915 #define _gloffset_GetObjectParameterivAPPLE 959
916 #define _gloffset_ObjectPurgeableAPPLE 960
917 #define _gloffset_ObjectUnpurgeableAPPLE 961
918 #define _gloffset_ActiveProgramEXT 962
919 #define _gloffset_CreateShaderProgramEXT 963
920 #define _gloffset_UseShaderProgramEXT 964
921 #define _gloffset_TextureBarrierNV 965
922 #define _gloffset_StencilFuncSeparateATI 966
923 #define _gloffset_ProgramEnvParameters4fvEXT 967
924 #define _gloffset_ProgramLocalParameters4fvEXT 968
925
926 #else /* !FEATURE_remap_table */
927
928 #define driDispatchRemapTable_size 565
929 extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
930
931 #define AttachShader_remap_index 0
932 #define CreateProgram_remap_index 1
933 #define CreateShader_remap_index 2
934 #define DeleteProgram_remap_index 3
935 #define DeleteShader_remap_index 4
936 #define DetachShader_remap_index 5
937 #define GetAttachedShaders_remap_index 6
938 #define GetProgramInfoLog_remap_index 7
939 #define GetProgramiv_remap_index 8
940 #define GetShaderInfoLog_remap_index 9
941 #define GetShaderiv_remap_index 10
942 #define IsProgram_remap_index 11
943 #define IsShader_remap_index 12
944 #define StencilFuncSeparate_remap_index 13
945 #define StencilMaskSeparate_remap_index 14
946 #define StencilOpSeparate_remap_index 15
947 #define UniformMatrix2x3fv_remap_index 16
948 #define UniformMatrix2x4fv_remap_index 17
949 #define UniformMatrix3x2fv_remap_index 18
950 #define UniformMatrix3x4fv_remap_index 19
951 #define UniformMatrix4x2fv_remap_index 20
952 #define UniformMatrix4x3fv_remap_index 21
953 #define ClampColor_remap_index 22
954 #define ClearBufferfi_remap_index 23
955 #define ClearBufferfv_remap_index 24
956 #define ClearBufferiv_remap_index 25
957 #define ClearBufferuiv_remap_index 26
958 #define GetStringi_remap_index 27
959 #define TexBuffer_remap_index 28
960 #define GetBufferParameteri64v_remap_index 30
961 #define GetInteger64i_v_remap_index 31
962 #define VertexAttribDivisor_remap_index 32
963 #define LoadTransposeMatrixdARB_remap_index 33
964 #define LoadTransposeMatrixfARB_remap_index 34
965 #define MultTransposeMatrixdARB_remap_index 35
966 #define MultTransposeMatrixfARB_remap_index 36
967 #define SampleCoverageARB_remap_index 37
968 #define CompressedTexImage1DARB_remap_index 38
969 #define CompressedTexImage2DARB_remap_index 39
970 #define CompressedTexImage3DARB_remap_index 40
971 #define CompressedTexSubImage1DARB_remap_index 41
972 #define CompressedTexSubImage2DARB_remap_index 42
973 #define CompressedTexSubImage3DARB_remap_index 43
974 #define GetCompressedTexImageARB_remap_index 44
975 #define DisableVertexAttribArrayARB_remap_index 45
976 #define EnableVertexAttribArrayARB_remap_index 46
977 #define GetProgramEnvParameterdvARB_remap_index 47
978 #define GetProgramEnvParameterfvARB_remap_index 48
979 #define GetProgramLocalParameterdvARB_remap_index 49
980 #define GetProgramLocalParameterfvARB_remap_index 50
981 #define GetProgramStringARB_remap_index 51
982 #define GetProgramivARB_remap_index 52
983 #define GetVertexAttribdvARB_remap_index 53
984 #define GetVertexAttribfvARB_remap_index 54
985 #define GetVertexAttribivARB_remap_index 55
986 #define ProgramEnvParameter4dARB_remap_index 56
987 #define ProgramEnvParameter4dvARB_remap_index 57
988 #define ProgramEnvParameter4fARB_remap_index 58
989 #define ProgramEnvParameter4fvARB_remap_index 59
990 #define ProgramLocalParameter4dARB_remap_index 60
991 #define ProgramLocalParameter4dvARB_remap_index 61
992 #define ProgramLocalParameter4fARB_remap_index 62
993 #define ProgramLocalParameter4fvARB_remap_index 63
994 #define ProgramStringARB_remap_index 64
995 #define VertexAttrib1dARB_remap_index 65
996 #define VertexAttrib1dvARB_remap_index 66
997 #define VertexAttrib1fARB_remap_index 67
998 #define VertexAttrib1fvARB_remap_index 68
999 #define VertexAttrib1sARB_remap_index 69
1000 #define VertexAttrib1svARB_remap_index 70
1001 #define VertexAttrib2dARB_remap_index 71
1002 #define VertexAttrib2dvARB_remap_index 72
1003 #define VertexAttrib2fARB_remap_index 73
1004 #define VertexAttrib2fvARB_remap_index 74
1005 #define VertexAttrib2sARB_remap_index 75
1006 #define VertexAttrib2svARB_remap_index 76
1007 #define VertexAttrib3dARB_remap_index 77
1008 #define VertexAttrib3dvARB_remap_index 78
1009 #define VertexAttrib3fARB_remap_index 79
1010 #define VertexAttrib3fvARB_remap_index 80
1011 #define VertexAttrib3sARB_remap_index 81
1012 #define VertexAttrib3svARB_remap_index 82
1013 #define VertexAttrib4NbvARB_remap_index 83
1014 #define VertexAttrib4NivARB_remap_index 84
1015 #define VertexAttrib4NsvARB_remap_index 85
1016 #define VertexAttrib4NubARB_remap_index 86
1017 #define VertexAttrib4NubvARB_remap_index 87
1018 #define VertexAttrib4NuivARB_remap_index 88
1019 #define VertexAttrib4NusvARB_remap_index 89
1020 #define VertexAttrib4bvARB_remap_index 90
1021 #define VertexAttrib4dARB_remap_index 91
1022 #define VertexAttrib4dvARB_remap_index 92
1023 #define VertexAttrib4fARB_remap_index 93
1024 #define VertexAttrib4fvARB_remap_index 94
1025 #define VertexAttrib4ivARB_remap_index 95
1026 #define VertexAttrib4sARB_remap_index 96
1027 #define VertexAttrib4svARB_remap_index 97
1028 #define VertexAttrib4ubvARB_remap_index 98
1029 #define VertexAttrib4uivARB_remap_index 99
1030 #define VertexAttrib4usvARB_remap_index 100
1031 #define VertexAttribPointerARB_remap_index 101
1032 #define BindBufferARB_remap_index 102
1033 #define BufferDataARB_remap_index 103
1034 #define BufferSubDataARB_remap_index 104
1035 #define DeleteBuffersARB_remap_index 105
1036 #define GenBuffersARB_remap_index 106
1037 #define GetBufferParameterivARB_remap_index 107
1038 #define GetBufferPointervARB_remap_index 108
1039 #define GetBufferSubDataARB_remap_index 109
1040 #define IsBufferARB_remap_index 110
1041 #define MapBufferARB_remap_index 111
1042 #define UnmapBufferARB_remap_index 112
1043 #define AttachObjectARB_remap_index 121
1044 #define CompileShaderARB_remap_index 122
1045 #define CreateProgramObjectARB_remap_index 123
1046 #define CreateShaderObjectARB_remap_index 124
1047 #define DeleteObjectARB_remap_index 125
1048 #define DetachObjectARB_remap_index 126
1049 #define GetActiveUniformARB_remap_index 127
1050 #define GetAttachedObjectsARB_remap_index 128
1051 #define GetHandleARB_remap_index 129
1052 #define GetInfoLogARB_remap_index 130
1053 #define GetObjectParameterfvARB_remap_index 131
1054 #define GetObjectParameterivARB_remap_index 132
1055 #define GetShaderSourceARB_remap_index 133
1056 #define GetUniformLocationARB_remap_index 134
1057 #define GetUniformfvARB_remap_index 135
1058 #define GetUniformivARB_remap_index 136
1059 #define LinkProgramARB_remap_index 137
1060 #define ShaderSourceARB_remap_index 138
1061 #define Uniform1fARB_remap_index 139
1062 #define Uniform1fvARB_remap_index 140
1063 #define Uniform1iARB_remap_index 141
1064 #define Uniform1ivARB_remap_index 142
1065 #define Uniform2fARB_remap_index 143
1066 #define Uniform2fvARB_remap_index 144
1067 #define Uniform2iARB_remap_index 145
1068 #define Uniform2ivARB_remap_index 146
1069 #define Uniform3fARB_remap_index 147
1070 #define Uniform3fvARB_remap_index 148
1071 #define Uniform3iARB_remap_index 149
1072 #define Uniform3ivARB_remap_index 150
1073 #define Uniform4fARB_remap_index 151
1074 #define Uniform4fvARB_remap_index 152
1075 #define Uniform4iARB_remap_index 153
1076 #define Uniform4ivARB_remap_index 154
1077 #define UniformMatrix2fvARB_remap_index 155
1078 #define UniformMatrix3fvARB_remap_index 156
1079 #define UniformMatrix4fvARB_remap_index 157
1080 #define UseProgramObjectARB_remap_index 158
1081 #define ValidateProgramARB_remap_index 159
1082 #define BindAttribLocationARB_remap_index 160
1083 #define GetActiveAttribARB_remap_index 161
1084 #define GetAttribLocationARB_remap_index 162
1085 #define DrawBuffersARB_remap_index 163
1086 #define ClampColorARB_remap_index 164
1087 #define DrawArraysInstancedARB_remap_index 165
1088 #define DrawElementsInstancedARB_remap_index 166
1089 #define RenderbufferStorageMultisample_remap_index 167
1090 #define VertexAttribDivisorARB_remap_index 171
1091 #define FlushMappedBufferRange_remap_index 172
1092 #define MapBufferRange_remap_index 173
1093 #define TexBufferARB_remap_index 174
1094 #define BindVertexArray_remap_index 175
1095 #define GenVertexArrays_remap_index 176
1096 #define CopyBufferSubData_remap_index 177
1097 #define BlendEquationSeparateiARB_remap_index 189
1098 #define BlendEquationiARB_remap_index 190
1099 #define BlendFuncSeparateiARB_remap_index 191
1100 #define BlendFunciARB_remap_index 192
1101 #define ClearDepthf_remap_index 252
1102 #define DepthRangef_remap_index 253
1103 #define GetShaderPrecisionFormat_remap_index 254
1104 #define ReleaseShaderCompiler_remap_index 255
1105 #define ShaderBinary_remap_index 256
1106 #define GetGraphicsResetStatusARB_remap_index 257
1107 #define GetnColorTableARB_remap_index 258
1108 #define GetnCompressedTexImageARB_remap_index 259
1109 #define GetnConvolutionFilterARB_remap_index 260
1110 #define GetnHistogramARB_remap_index 261
1111 #define GetnMapdvARB_remap_index 262
1112 #define GetnMapfvARB_remap_index 263
1113 #define GetnMapivARB_remap_index 264
1114 #define GetnMinmaxARB_remap_index 265
1115 #define GetnPixelMapfvARB_remap_index 266
1116 #define GetnPixelMapuivARB_remap_index 267
1117 #define GetnPixelMapusvARB_remap_index 268
1118 #define GetnPolygonStippleARB_remap_index 269
1119 #define GetnSeparableFilterARB_remap_index 270
1120 #define GetnTexImageARB_remap_index 271
1121 #define GetnUniformdvARB_remap_index 272
1122 #define GetnUniformfvARB_remap_index 273
1123 #define GetnUniformivARB_remap_index 274
1124 #define GetnUniformuivARB_remap_index 275
1125 #define ReadnPixelsARB_remap_index 276
1126 #define TexStorage1D_remap_index 277
1127 #define TexStorage2D_remap_index 278
1128 #define TexStorage3D_remap_index 279
1129 #define TextureStorage1DEXT_remap_index 280
1130 #define TextureStorage2DEXT_remap_index 281
1131 #define TextureStorage3DEXT_remap_index 282
1132 #define PolygonOffsetEXT_remap_index 283
1133 #define GetPixelTexGenParameterfvSGIS_remap_index 284
1134 #define GetPixelTexGenParameterivSGIS_remap_index 285
1135 #define PixelTexGenParameterfSGIS_remap_index 286
1136 #define PixelTexGenParameterfvSGIS_remap_index 287
1137 #define PixelTexGenParameteriSGIS_remap_index 288
1138 #define PixelTexGenParameterivSGIS_remap_index 289
1139 #define SampleMaskSGIS_remap_index 290
1140 #define SamplePatternSGIS_remap_index 291
1141 #define ColorPointerEXT_remap_index 292
1142 #define EdgeFlagPointerEXT_remap_index 293
1143 #define IndexPointerEXT_remap_index 294
1144 #define NormalPointerEXT_remap_index 295
1145 #define TexCoordPointerEXT_remap_index 296
1146 #define VertexPointerEXT_remap_index 297
1147 #define PointParameterfEXT_remap_index 298
1148 #define PointParameterfvEXT_remap_index 299
1149 #define LockArraysEXT_remap_index 300
1150 #define UnlockArraysEXT_remap_index 301
1151 #define SecondaryColor3bEXT_remap_index 302
1152 #define SecondaryColor3bvEXT_remap_index 303
1153 #define SecondaryColor3dEXT_remap_index 304
1154 #define SecondaryColor3dvEXT_remap_index 305
1155 #define SecondaryColor3fEXT_remap_index 306
1156 #define SecondaryColor3fvEXT_remap_index 307
1157 #define SecondaryColor3iEXT_remap_index 308
1158 #define SecondaryColor3ivEXT_remap_index 309
1159 #define SecondaryColor3sEXT_remap_index 310
1160 #define SecondaryColor3svEXT_remap_index 311
1161 #define SecondaryColor3ubEXT_remap_index 312
1162 #define SecondaryColor3ubvEXT_remap_index 313
1163 #define SecondaryColor3uiEXT_remap_index 314
1164 #define SecondaryColor3uivEXT_remap_index 315
1165 #define SecondaryColor3usEXT_remap_index 316
1166 #define SecondaryColor3usvEXT_remap_index 317
1167 #define SecondaryColorPointerEXT_remap_index 318
1168 #define MultiDrawArraysEXT_remap_index 319
1169 #define MultiDrawElementsEXT_remap_index 320
1170 #define FogCoordPointerEXT_remap_index 321
1171 #define FogCoorddEXT_remap_index 322
1172 #define FogCoorddvEXT_remap_index 323
1173 #define FogCoordfEXT_remap_index 324
1174 #define FogCoordfvEXT_remap_index 325
1175 #define PixelTexGenSGIX_remap_index 326
1176 #define BlendFuncSeparateEXT_remap_index 327
1177 #define FlushVertexArrayRangeNV_remap_index 328
1178 #define VertexArrayRangeNV_remap_index 329
1179 #define CombinerInputNV_remap_index 330
1180 #define CombinerOutputNV_remap_index 331
1181 #define CombinerParameterfNV_remap_index 332
1182 #define CombinerParameterfvNV_remap_index 333
1183 #define CombinerParameteriNV_remap_index 334
1184 #define CombinerParameterivNV_remap_index 335
1185 #define FinalCombinerInputNV_remap_index 336
1186 #define GetCombinerInputParameterfvNV_remap_index 337
1187 #define GetCombinerInputParameterivNV_remap_index 338
1188 #define GetCombinerOutputParameterfvNV_remap_index 339
1189 #define GetCombinerOutputParameterivNV_remap_index 340
1190 #define GetFinalCombinerInputParameterfvNV_remap_index 341
1191 #define GetFinalCombinerInputParameterivNV_remap_index 342
1192 #define ResizeBuffersMESA_remap_index 343
1193 #define WindowPos2dMESA_remap_index 344
1194 #define WindowPos2dvMESA_remap_index 345
1195 #define WindowPos2fMESA_remap_index 346
1196 #define WindowPos2fvMESA_remap_index 347
1197 #define WindowPos2iMESA_remap_index 348
1198 #define WindowPos2ivMESA_remap_index 349
1199 #define WindowPos2sMESA_remap_index 350
1200 #define WindowPos2svMESA_remap_index 351
1201 #define WindowPos3dMESA_remap_index 352
1202 #define WindowPos3dvMESA_remap_index 353
1203 #define WindowPos3fMESA_remap_index 354
1204 #define WindowPos3fvMESA_remap_index 355
1205 #define WindowPos3iMESA_remap_index 356
1206 #define WindowPos3ivMESA_remap_index 357
1207 #define WindowPos3sMESA_remap_index 358
1208 #define WindowPos3svMESA_remap_index 359
1209 #define WindowPos4dMESA_remap_index 360
1210 #define WindowPos4dvMESA_remap_index 361
1211 #define WindowPos4fMESA_remap_index 362
1212 #define WindowPos4fvMESA_remap_index 363
1213 #define WindowPos4iMESA_remap_index 364
1214 #define WindowPos4ivMESA_remap_index 365
1215 #define WindowPos4sMESA_remap_index 366
1216 #define WindowPos4svMESA_remap_index 367
1217 #define MultiModeDrawArraysIBM_remap_index 368
1218 #define MultiModeDrawElementsIBM_remap_index 369
1219 #define DeleteFencesNV_remap_index 370
1220 #define FinishFenceNV_remap_index 371
1221 #define GenFencesNV_remap_index 372
1222 #define GetFenceivNV_remap_index 373
1223 #define IsFenceNV_remap_index 374
1224 #define SetFenceNV_remap_index 375
1225 #define TestFenceNV_remap_index 376
1226 #define AreProgramsResidentNV_remap_index 377
1227 #define BindProgramNV_remap_index 378
1228 #define DeleteProgramsNV_remap_index 379
1229 #define ExecuteProgramNV_remap_index 380
1230 #define GenProgramsNV_remap_index 381
1231 #define GetProgramParameterdvNV_remap_index 382
1232 #define GetProgramParameterfvNV_remap_index 383
1233 #define GetProgramStringNV_remap_index 384
1234 #define GetProgramivNV_remap_index 385
1235 #define GetTrackMatrixivNV_remap_index 386
1236 #define GetVertexAttribPointervNV_remap_index 387
1237 #define GetVertexAttribdvNV_remap_index 388
1238 #define GetVertexAttribfvNV_remap_index 389
1239 #define GetVertexAttribivNV_remap_index 390
1240 #define IsProgramNV_remap_index 391
1241 #define LoadProgramNV_remap_index 392
1242 #define ProgramParameters4dvNV_remap_index 393
1243 #define ProgramParameters4fvNV_remap_index 394
1244 #define RequestResidentProgramsNV_remap_index 395
1245 #define TrackMatrixNV_remap_index 396
1246 #define VertexAttrib1dNV_remap_index 397
1247 #define VertexAttrib1dvNV_remap_index 398
1248 #define VertexAttrib1fNV_remap_index 399
1249 #define VertexAttrib1fvNV_remap_index 400
1250 #define VertexAttrib1sNV_remap_index 401
1251 #define VertexAttrib1svNV_remap_index 402
1252 #define VertexAttrib2dNV_remap_index 403
1253 #define VertexAttrib2dvNV_remap_index 404
1254 #define VertexAttrib2fNV_remap_index 405
1255 #define VertexAttrib2fvNV_remap_index 406
1256 #define VertexAttrib2sNV_remap_index 407
1257 #define VertexAttrib2svNV_remap_index 408
1258 #define VertexAttrib3dNV_remap_index 409
1259 #define VertexAttrib3dvNV_remap_index 410
1260 #define VertexAttrib3fNV_remap_index 411
1261 #define VertexAttrib3fvNV_remap_index 412
1262 #define VertexAttrib3sNV_remap_index 413
1263 #define VertexAttrib3svNV_remap_index 414
1264 #define VertexAttrib4dNV_remap_index 415
1265 #define VertexAttrib4dvNV_remap_index 416
1266 #define VertexAttrib4fNV_remap_index 417
1267 #define VertexAttrib4fvNV_remap_index 418
1268 #define VertexAttrib4sNV_remap_index 419
1269 #define VertexAttrib4svNV_remap_index 420
1270 #define VertexAttrib4ubNV_remap_index 421
1271 #define VertexAttrib4ubvNV_remap_index 422
1272 #define VertexAttribPointerNV_remap_index 423
1273 #define VertexAttribs1dvNV_remap_index 424
1274 #define VertexAttribs1fvNV_remap_index 425
1275 #define VertexAttribs1svNV_remap_index 426
1276 #define VertexAttribs2dvNV_remap_index 427
1277 #define VertexAttribs2fvNV_remap_index 428
1278 #define VertexAttribs2svNV_remap_index 429
1279 #define VertexAttribs3dvNV_remap_index 430
1280 #define VertexAttribs3fvNV_remap_index 431
1281 #define VertexAttribs3svNV_remap_index 432
1282 #define VertexAttribs4dvNV_remap_index 433
1283 #define VertexAttribs4fvNV_remap_index 434
1284 #define VertexAttribs4svNV_remap_index 435
1285 #define VertexAttribs4ubvNV_remap_index 436
1286 #define GetTexBumpParameterfvATI_remap_index 437
1287 #define GetTexBumpParameterivATI_remap_index 438
1288 #define TexBumpParameterfvATI_remap_index 439
1289 #define TexBumpParameterivATI_remap_index 440
1290 #define PointParameteriNV_remap_index 455
1291 #define PointParameterivNV_remap_index 456
1292 #define ActiveStencilFaceEXT_remap_index 457
1293 #define BindVertexArrayAPPLE_remap_index 458
1294 #define DeleteVertexArraysAPPLE_remap_index 459
1295 #define GenVertexArraysAPPLE_remap_index 460
1296 #define IsVertexArrayAPPLE_remap_index 461
1297 #define GetProgramNamedParameterdvNV_remap_index 462
1298 #define GetProgramNamedParameterfvNV_remap_index 463
1299 #define ProgramNamedParameter4dNV_remap_index 464
1300 #define ProgramNamedParameter4dvNV_remap_index 465
1301 #define ProgramNamedParameter4fNV_remap_index 466
1302 #define ProgramNamedParameter4fvNV_remap_index 467
1303 #define PrimitiveRestartIndexNV_remap_index 468
1304 #define PrimitiveRestartNV_remap_index 469
1305 #define DepthBoundsEXT_remap_index 470
1306 #define BlendEquationSeparateEXT_remap_index 471
1307 #define BindFramebufferEXT_remap_index 472
1308 #define BindRenderbufferEXT_remap_index 473
1309 #define CheckFramebufferStatusEXT_remap_index 474
1310 #define DeleteFramebuffersEXT_remap_index 475
1311 #define DeleteRenderbuffersEXT_remap_index 476
1312 #define FramebufferRenderbufferEXT_remap_index 477
1313 #define FramebufferTexture1DEXT_remap_index 478
1314 #define FramebufferTexture2DEXT_remap_index 479
1315 #define FramebufferTexture3DEXT_remap_index 480
1316 #define GenFramebuffersEXT_remap_index 481
1317 #define GenRenderbuffersEXT_remap_index 482
1318 #define GenerateMipmapEXT_remap_index 483
1319 #define GetFramebufferAttachmentParameterivEXT_remap_index 484
1320 #define GetRenderbufferParameterivEXT_remap_index 485
1321 #define IsFramebufferEXT_remap_index 486
1322 #define IsRenderbufferEXT_remap_index 487
1323 #define RenderbufferStorageEXT_remap_index 488
1324 #define BlitFramebufferEXT_remap_index 489
1325 #define BufferParameteriAPPLE_remap_index 490
1326 #define FlushMappedBufferRangeAPPLE_remap_index 491
1327 #define BindFragDataLocationEXT_remap_index 492
1328 #define GetFragDataLocationEXT_remap_index 493
1329 #define GetUniformuivEXT_remap_index 494
1330 #define GetVertexAttribIivEXT_remap_index 495
1331 #define GetVertexAttribIuivEXT_remap_index 496
1332 #define Uniform1uiEXT_remap_index 497
1333 #define Uniform1uivEXT_remap_index 498
1334 #define Uniform2uiEXT_remap_index 499
1335 #define Uniform2uivEXT_remap_index 500
1336 #define Uniform3uiEXT_remap_index 501
1337 #define Uniform3uivEXT_remap_index 502
1338 #define Uniform4uiEXT_remap_index 503
1339 #define Uniform4uivEXT_remap_index 504
1340 #define VertexAttribI1iEXT_remap_index 505
1341 #define VertexAttribI1ivEXT_remap_index 506
1342 #define VertexAttribI1uiEXT_remap_index 507
1343 #define VertexAttribI1uivEXT_remap_index 508
1344 #define VertexAttribI2iEXT_remap_index 509
1345 #define VertexAttribI2ivEXT_remap_index 510
1346 #define VertexAttribI2uiEXT_remap_index 511
1347 #define VertexAttribI2uivEXT_remap_index 512
1348 #define VertexAttribI3iEXT_remap_index 513
1349 #define VertexAttribI3ivEXT_remap_index 514
1350 #define VertexAttribI3uiEXT_remap_index 515
1351 #define VertexAttribI3uivEXT_remap_index 516
1352 #define VertexAttribI4bvEXT_remap_index 517
1353 #define VertexAttribI4iEXT_remap_index 518
1354 #define VertexAttribI4ivEXT_remap_index 519
1355 #define VertexAttribI4svEXT_remap_index 520
1356 #define VertexAttribI4ubvEXT_remap_index 521
1357 #define VertexAttribI4uiEXT_remap_index 522
1358 #define VertexAttribI4uivEXT_remap_index 523
1359 #define VertexAttribI4usvEXT_remap_index 524
1360 #define VertexAttribIPointerEXT_remap_index 525
1361 #define ClearColorIiEXT_remap_index 533
1362 #define ClearColorIuiEXT_remap_index 534
1363 #define GetTexParameterIivEXT_remap_index 535
1364 #define GetTexParameterIuivEXT_remap_index 536
1365 #define TexParameterIivEXT_remap_index 537
1366 #define TexParameterIuivEXT_remap_index 538
1367 #define GetTexParameterPointervAPPLE_remap_index 549
1368 #define TextureRangeAPPLE_remap_index 550
1369 #define GetObjectParameterivAPPLE_remap_index 551
1370 #define ObjectPurgeableAPPLE_remap_index 552
1371 #define ObjectUnpurgeableAPPLE_remap_index 553
1372 #define ActiveProgramEXT_remap_index 554
1373 #define CreateShaderProgramEXT_remap_index 555
1374 #define UseShaderProgramEXT_remap_index 556
1375 #define TextureBarrierNV_remap_index 557
1376 #define StencilFuncSeparateATI_remap_index 558
1377 #define ProgramEnvParameters4fvEXT_remap_index 559
1378 #define ProgramLocalParameters4fvEXT_remap_index 560
1379
1380 #define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index]
1381 #define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index]
1382 #define _gloffset_CreateShader driDispatchRemapTable[CreateShader_remap_index]
1383 #define _gloffset_DeleteProgram driDispatchRemapTable[DeleteProgram_remap_index]
1384 #define _gloffset_DeleteShader driDispatchRemapTable[DeleteShader_remap_index]
1385 #define _gloffset_DetachShader driDispatchRemapTable[DetachShader_remap_index]
1386 #define _gloffset_GetAttachedShaders driDispatchRemapTable[GetAttachedShaders_remap_index]
1387 #define _gloffset_GetProgramInfoLog driDispatchRemapTable[GetProgramInfoLog_remap_index]
1388 #define _gloffset_GetProgramiv driDispatchRemapTable[GetProgramiv_remap_index]
1389 #define _gloffset_GetShaderInfoLog driDispatchRemapTable[GetShaderInfoLog_remap_index]
1390 #define _gloffset_GetShaderiv driDispatchRemapTable[GetShaderiv_remap_index]
1391 #define _gloffset_IsProgram driDispatchRemapTable[IsProgram_remap_index]
1392 #define _gloffset_IsShader driDispatchRemapTable[IsShader_remap_index]
1393 #define _gloffset_StencilFuncSeparate driDispatchRemapTable[StencilFuncSeparate_remap_index]
1394 #define _gloffset_StencilMaskSeparate driDispatchRemapTable[StencilMaskSeparate_remap_index]
1395 #define _gloffset_StencilOpSeparate driDispatchRemapTable[StencilOpSeparate_remap_index]
1396 #define _gloffset_UniformMatrix2x3fv driDispatchRemapTable[UniformMatrix2x3fv_remap_index]
1397 #define _gloffset_UniformMatrix2x4fv driDispatchRemapTable[UniformMatrix2x4fv_remap_index]
1398 #define _gloffset_UniformMatrix3x2fv driDispatchRemapTable[UniformMatrix3x2fv_remap_index]
1399 #define _gloffset_UniformMatrix3x4fv driDispatchRemapTable[UniformMatrix3x4fv_remap_index]
1400 #define _gloffset_UniformMatrix4x2fv driDispatchRemapTable[UniformMatrix4x2fv_remap_index]
1401 #define _gloffset_UniformMatrix4x3fv driDispatchRemapTable[UniformMatrix4x3fv_remap_index]
1402 #define _gloffset_ClampColor driDispatchRemapTable[ClampColor_remap_index]
1403 #define _gloffset_ClearBufferfi driDispatchRemapTable[ClearBufferfi_remap_index]
1404 #define _gloffset_ClearBufferfv driDispatchRemapTable[ClearBufferfv_remap_index]
1405 #define _gloffset_ClearBufferiv driDispatchRemapTable[ClearBufferiv_remap_index]
1406 #define _gloffset_ClearBufferuiv driDispatchRemapTable[ClearBufferuiv_remap_index]
1407 #define _gloffset_GetStringi driDispatchRemapTable[GetStringi_remap_index]
1408 #define _gloffset_TexBuffer driDispatchRemapTable[TexBuffer_remap_index]
1409 #define _gloffset_FramebufferTexture driDispatchRemapTable[FramebufferTexture_remap_index]
1410 #define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index]
1411 #define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index]
1412 #define _gloffset_LoadTransposeMatrixdARB driDispatchRemapTable[LoadTransposeMatrixdARB_remap_index]
1413 #define _gloffset_LoadTransposeMatrixfARB driDispatchRemapTable[LoadTransposeMatrixfARB_remap_index]
1414 #define _gloffset_MultTransposeMatrixdARB driDispatchRemapTable[MultTransposeMatrixdARB_remap_index]
1415 #define _gloffset_MultTransposeMatrixfARB driDispatchRemapTable[MultTransposeMatrixfARB_remap_index]
1416 #define _gloffset_SampleCoverageARB driDispatchRemapTable[SampleCoverageARB_remap_index]
1417 #define _gloffset_CompressedTexImage1DARB driDispatchRemapTable[CompressedTexImage1DARB_remap_index]
1418 #define _gloffset_CompressedTexImage2DARB driDispatchRemapTable[CompressedTexImage2DARB_remap_index]
1419 #define _gloffset_CompressedTexImage3DARB driDispatchRemapTable[CompressedTexImage3DARB_remap_index]
1420 #define _gloffset_CompressedTexSubImage1DARB driDispatchRemapTable[CompressedTexSubImage1DARB_remap_index]
1421 #define _gloffset_CompressedTexSubImage2DARB driDispatchRemapTable[CompressedTexSubImage2DARB_remap_index]
1422 #define _gloffset_CompressedTexSubImage3DARB driDispatchRemapTable[CompressedTexSubImage3DARB_remap_index]
1423 #define _gloffset_GetCompressedTexImageARB driDispatchRemapTable[GetCompressedTexImageARB_remap_index]
1424 #define _gloffset_DisableVertexAttribArrayARB driDispatchRemapTable[DisableVertexAttribArrayARB_remap_index]
1425 #define _gloffset_EnableVertexAttribArrayARB driDispatchRemapTable[EnableVertexAttribArrayARB_remap_index]
1426 #define _gloffset_GetProgramEnvParameterdvARB driDispatchRemapTable[GetProgramEnvParameterdvARB_remap_index]
1427 #define _gloffset_GetProgramEnvParameterfvARB driDispatchRemapTable[GetProgramEnvParameterfvARB_remap_index]
1428 #define _gloffset_GetProgramLocalParameterdvARB driDispatchRemapTable[GetProgramLocalParameterdvARB_remap_index]
1429 #define _gloffset_GetProgramLocalParameterfvARB driDispatchRemapTable[GetProgramLocalParameterfvARB_remap_index]
1430 #define _gloffset_GetProgramStringARB driDispatchRemapTable[GetProgramStringARB_remap_index]
1431 #define _gloffset_GetProgramivARB driDispatchRemapTable[GetProgramivARB_remap_index]
1432 #define _gloffset_GetVertexAttribdvARB driDispatchRemapTable[GetVertexAttribdvARB_remap_index]
1433 #define _gloffset_GetVertexAttribfvARB driDispatchRemapTable[GetVertexAttribfvARB_remap_index]
1434 #define _gloffset_GetVertexAttribivARB driDispatchRemapTable[GetVertexAttribivARB_remap_index]
1435 #define _gloffset_ProgramEnvParameter4dARB driDispatchRemapTable[ProgramEnvParameter4dARB_remap_index]
1436 #define _gloffset_ProgramEnvParameter4dvARB driDispatchRemapTable[ProgramEnvParameter4dvARB_remap_index]
1437 #define _gloffset_ProgramEnvParameter4fARB driDispatchRemapTable[ProgramEnvParameter4fARB_remap_index]
1438 #define _gloffset_ProgramEnvParameter4fvARB driDispatchRemapTable[ProgramEnvParameter4fvARB_remap_index]
1439 #define _gloffset_ProgramLocalParameter4dARB driDispatchRemapTable[ProgramLocalParameter4dARB_remap_index]
1440 #define _gloffset_ProgramLocalParameter4dvARB driDispatchRemapTable[ProgramLocalParameter4dvARB_remap_index]
1441 #define _gloffset_ProgramLocalParameter4fARB driDispatchRemapTable[ProgramLocalParameter4fARB_remap_index]
1442 #define _gloffset_ProgramLocalParameter4fvARB driDispatchRemapTable[ProgramLocalParameter4fvARB_remap_index]
1443 #define _gloffset_ProgramStringARB driDispatchRemapTable[ProgramStringARB_remap_index]
1444 #define _gloffset_VertexAttrib1dARB driDispatchRemapTable[VertexAttrib1dARB_remap_index]
1445 #define _gloffset_VertexAttrib1dvARB driDispatchRemapTable[VertexAttrib1dvARB_remap_index]
1446 #define _gloffset_VertexAttrib1fARB driDispatchRemapTable[VertexAttrib1fARB_remap_index]
1447 #define _gloffset_VertexAttrib1fvARB driDispatchRemapTable[VertexAttrib1fvARB_remap_index]
1448 #define _gloffset_VertexAttrib1sARB driDispatchRemapTable[VertexAttrib1sARB_remap_index]
1449 #define _gloffset_VertexAttrib1svARB driDispatchRemapTable[VertexAttrib1svARB_remap_index]
1450 #define _gloffset_VertexAttrib2dARB driDispatchRemapTable[VertexAttrib2dARB_remap_index]
1451 #define _gloffset_VertexAttrib2dvARB driDispatchRemapTable[VertexAttrib2dvARB_remap_index]
1452 #define _gloffset_VertexAttrib2fARB driDispatchRemapTable[VertexAttrib2fARB_remap_index]
1453 #define _gloffset_VertexAttrib2fvARB driDispatchRemapTable[VertexAttrib2fvARB_remap_index]
1454 #define _gloffset_VertexAttrib2sARB driDispatchRemapTable[VertexAttrib2sARB_remap_index]
1455 #define _gloffset_VertexAttrib2svARB driDispatchRemapTable[VertexAttrib2svARB_remap_index]
1456 #define _gloffset_VertexAttrib3dARB driDispatchRemapTable[VertexAttrib3dARB_remap_index]
1457 #define _gloffset_VertexAttrib3dvARB driDispatchRemapTable[VertexAttrib3dvARB_remap_index]
1458 #define _gloffset_VertexAttrib3fARB driDispatchRemapTable[VertexAttrib3fARB_remap_index]
1459 #define _gloffset_VertexAttrib3fvARB driDispatchRemapTable[VertexAttrib3fvARB_remap_index]
1460 #define _gloffset_VertexAttrib3sARB driDispatchRemapTable[VertexAttrib3sARB_remap_index]
1461 #define _gloffset_VertexAttrib3svARB driDispatchRemapTable[VertexAttrib3svARB_remap_index]
1462 #define _gloffset_VertexAttrib4NbvARB driDispatchRemapTable[VertexAttrib4NbvARB_remap_index]
1463 #define _gloffset_VertexAttrib4NivARB driDispatchRemapTable[VertexAttrib4NivARB_remap_index]
1464 #define _gloffset_VertexAttrib4NsvARB driDispatchRemapTable[VertexAttrib4NsvARB_remap_index]
1465 #define _gloffset_VertexAttrib4NubARB driDispatchRemapTable[VertexAttrib4NubARB_remap_index]
1466 #define _gloffset_VertexAttrib4NubvARB driDispatchRemapTable[VertexAttrib4NubvARB_remap_index]
1467 #define _gloffset_VertexAttrib4NuivARB driDispatchRemapTable[VertexAttrib4NuivARB_remap_index]
1468 #define _gloffset_VertexAttrib4NusvARB driDispatchRemapTable[VertexAttrib4NusvARB_remap_index]
1469 #define _gloffset_VertexAttrib4bvARB driDispatchRemapTable[VertexAttrib4bvARB_remap_index]
1470 #define _gloffset_VertexAttrib4dARB driDispatchRemapTable[VertexAttrib4dARB_remap_index]
1471 #define _gloffset_VertexAttrib4dvARB driDispatchRemapTable[VertexAttrib4dvARB_remap_index]
1472 #define _gloffset_VertexAttrib4fARB driDispatchRemapTable[VertexAttrib4fARB_remap_index]
1473 #define _gloffset_VertexAttrib4fvARB driDispatchRemapTable[VertexAttrib4fvARB_remap_index]
1474 #define _gloffset_VertexAttrib4ivARB driDispatchRemapTable[VertexAttrib4ivARB_remap_index]
1475 #define _gloffset_VertexAttrib4sARB driDispatchRemapTable[VertexAttrib4sARB_remap_index]
1476 #define _gloffset_VertexAttrib4svARB driDispatchRemapTable[VertexAttrib4svARB_remap_index]
1477 #define _gloffset_VertexAttrib4ubvARB driDispatchRemapTable[VertexAttrib4ubvARB_remap_index]
1478 #define _gloffset_VertexAttrib4uivARB driDispatchRemapTable[VertexAttrib4uivARB_remap_index]
1479 #define _gloffset_VertexAttrib4usvARB driDispatchRemapTable[VertexAttrib4usvARB_remap_index]
1480 #define _gloffset_VertexAttribPointerARB driDispatchRemapTable[VertexAttribPointerARB_remap_index]
1481 #define _gloffset_BindBufferARB driDispatchRemapTable[BindBufferARB_remap_index]
1482 #define _gloffset_BufferDataARB driDispatchRemapTable[BufferDataARB_remap_index]
1483 #define _gloffset_BufferSubDataARB driDispatchRemapTable[BufferSubDataARB_remap_index]
1484 #define _gloffset_DeleteBuffersARB driDispatchRemapTable[DeleteBuffersARB_remap_index]
1485 #define _gloffset_GenBuffersARB driDispatchRemapTable[GenBuffersARB_remap_index]
1486 #define _gloffset_GetBufferParameterivARB driDispatchRemapTable[GetBufferParameterivARB_remap_index]
1487 #define _gloffset_GetBufferPointervARB driDispatchRemapTable[GetBufferPointervARB_remap_index]
1488 #define _gloffset_GetBufferSubDataARB driDispatchRemapTable[GetBufferSubDataARB_remap_index]
1489 #define _gloffset_IsBufferARB driDispatchRemapTable[IsBufferARB_remap_index]
1490 #define _gloffset_MapBufferARB driDispatchRemapTable[MapBufferARB_remap_index]
1491 #define _gloffset_UnmapBufferARB driDispatchRemapTable[UnmapBufferARB_remap_index]
1492 #define _gloffset_AttachObjectARB driDispatchRemapTable[AttachObjectARB_remap_index]
1493 #define _gloffset_CompileShaderARB driDispatchRemapTable[CompileShaderARB_remap_index]
1494 #define _gloffset_CreateProgramObjectARB driDispatchRemapTable[CreateProgramObjectARB_remap_index]
1495 #define _gloffset_CreateShaderObjectARB driDispatchRemapTable[CreateShaderObjectARB_remap_index]
1496 #define _gloffset_DeleteObjectARB driDispatchRemapTable[DeleteObjectARB_remap_index]
1497 #define _gloffset_DetachObjectARB driDispatchRemapTable[DetachObjectARB_remap_index]
1498 #define _gloffset_GetActiveUniformARB driDispatchRemapTable[GetActiveUniformARB_remap_index]
1499 #define _gloffset_GetAttachedObjectsARB driDispatchRemapTable[GetAttachedObjectsARB_remap_index]
1500 #define _gloffset_GetHandleARB driDispatchRemapTable[GetHandleARB_remap_index]
1501 #define _gloffset_GetInfoLogARB driDispatchRemapTable[GetInfoLogARB_remap_index]
1502 #define _gloffset_GetObjectParameterfvARB driDispatchRemapTable[GetObjectParameterfvARB_remap_index]
1503 #define _gloffset_GetObjectParameterivARB driDispatchRemapTable[GetObjectParameterivARB_remap_index]
1504 #define _gloffset_GetShaderSourceARB driDispatchRemapTable[GetShaderSourceARB_remap_index]
1505 #define _gloffset_GetUniformLocationARB driDispatchRemapTable[GetUniformLocationARB_remap_index]
1506 #define _gloffset_GetUniformfvARB driDispatchRemapTable[GetUniformfvARB_remap_index]
1507 #define _gloffset_GetUniformivARB driDispatchRemapTable[GetUniformivARB_remap_index]
1508 #define _gloffset_LinkProgramARB driDispatchRemapTable[LinkProgramARB_remap_index]
1509 #define _gloffset_ShaderSourceARB driDispatchRemapTable[ShaderSourceARB_remap_index]
1510 #define _gloffset_Uniform1fARB driDispatchRemapTable[Uniform1fARB_remap_index]
1511 #define _gloffset_Uniform1fvARB driDispatchRemapTable[Uniform1fvARB_remap_index]
1512 #define _gloffset_Uniform1iARB driDispatchRemapTable[Uniform1iARB_remap_index]
1513 #define _gloffset_Uniform1ivARB driDispatchRemapTable[Uniform1ivARB_remap_index]
1514 #define _gloffset_Uniform2fARB driDispatchRemapTable[Uniform2fARB_remap_index]
1515 #define _gloffset_Uniform2fvARB driDispatchRemapTable[Uniform2fvARB_remap_index]
1516 #define _gloffset_Uniform2iARB driDispatchRemapTable[Uniform2iARB_remap_index]
1517 #define _gloffset_Uniform2ivARB driDispatchRemapTable[Uniform2ivARB_remap_index]
1518 #define _gloffset_Uniform3fARB driDispatchRemapTable[Uniform3fARB_remap_index]
1519 #define _gloffset_Uniform3fvARB driDispatchRemapTable[Uniform3fvARB_remap_index]
1520 #define _gloffset_Uniform3iARB driDispatchRemapTable[Uniform3iARB_remap_index]
1521 #define _gloffset_Uniform3ivARB driDispatchRemapTable[Uniform3ivARB_remap_index]
1522 #define _gloffset_Uniform4fARB driDispatchRemapTable[Uniform4fARB_remap_index]
1523 #define _gloffset_Uniform4fvARB driDispatchRemapTable[Uniform4fvARB_remap_index]
1524 #define _gloffset_Uniform4iARB driDispatchRemapTable[Uniform4iARB_remap_index]
1525 #define _gloffset_Uniform4ivARB driDispatchRemapTable[Uniform4ivARB_remap_index]
1526 #define _gloffset_UniformMatrix2fvARB driDispatchRemapTable[UniformMatrix2fvARB_remap_index]
1527 #define _gloffset_UniformMatrix3fvARB driDispatchRemapTable[UniformMatrix3fvARB_remap_index]
1528 #define _gloffset_UniformMatrix4fvARB driDispatchRemapTable[UniformMatrix4fvARB_remap_index]
1529 #define _gloffset_UseProgramObjectARB driDispatchRemapTable[UseProgramObjectARB_remap_index]
1530 #define _gloffset_ValidateProgramARB driDispatchRemapTable[ValidateProgramARB_remap_index]
1531 #define _gloffset_BindAttribLocationARB driDispatchRemapTable[BindAttribLocationARB_remap_index]
1532 #define _gloffset_GetActiveAttribARB driDispatchRemapTable[GetActiveAttribARB_remap_index]
1533 #define _gloffset_GetAttribLocationARB driDispatchRemapTable[GetAttribLocationARB_remap_index]
1534 #define _gloffset_DrawBuffersARB driDispatchRemapTable[DrawBuffersARB_remap_index]
1535 #define _gloffset_ClampColorARB driDispatchRemapTable[ClampColorARB_remap_index]
1536 #define _gloffset_DrawArraysInstancedARB driDispatchRemapTable[DrawArraysInstancedARB_remap_index]
1537 #define _gloffset_DrawElementsInstancedARB driDispatchRemapTable[DrawElementsInstancedARB_remap_index]
1538 #define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index]
1539 #define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
1540 #define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
1541 #define _gloffset_TexBufferARB driDispatchRemapTable[TexBufferARB_remap_index]
1542 #define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index]
1543 #define _gloffset_GenVertexArrays driDispatchRemapTable[GenVertexArrays_remap_index]
1544 #define _gloffset_CopyBufferSubData driDispatchRemapTable[CopyBufferSubData_remap_index]
1545 #define _gloffset_BlendEquationSeparateiARB driDispatchRemapTable[BlendEquationSeparateiARB_remap_index]
1546 #define _gloffset_BlendEquationiARB driDispatchRemapTable[BlendEquationiARB_remap_index]
1547 #define _gloffset_BlendFuncSeparateiARB driDispatchRemapTable[BlendFuncSeparateiARB_remap_index]
1548 #define _gloffset_BlendFunciARB driDispatchRemapTable[BlendFunciARB_remap_index]
1549 #define _gloffset_ClearDepthf driDispatchRemapTable[ClearDepthf_remap_index]
1550 #define _gloffset_DepthRangef driDispatchRemapTable[DepthRangef_remap_index]
1551 #define _gloffset_GetShaderPrecisionFormat driDispatchRemapTable[GetShaderPrecisionFormat_remap_index]
1552 #define _gloffset_ReleaseShaderCompiler driDispatchRemapTable[ReleaseShaderCompiler_remap_index]
1553 #define _gloffset_ShaderBinary driDispatchRemapTable[ShaderBinary_remap_index]
1554 #define _gloffset_GetGraphicsResetStatusARB driDispatchRemapTable[GetGraphicsResetStatusARB_remap_index]
1555 #define _gloffset_GetnColorTableARB driDispatchRemapTable[GetnColorTableARB_remap_index]
1556 #define _gloffset_GetnCompressedTexImageARB driDispatchRemapTable[GetnCompressedTexImageARB_remap_index]
1557 #define _gloffset_GetnConvolutionFilterARB driDispatchRemapTable[GetnConvolutionFilterARB_remap_index]
1558 #define _gloffset_GetnHistogramARB driDispatchRemapTable[GetnHistogramARB_remap_index]
1559 #define _gloffset_GetnMapdvARB driDispatchRemapTable[GetnMapdvARB_remap_index]
1560 #define _gloffset_GetnMapfvARB driDispatchRemapTable[GetnMapfvARB_remap_index]
1561 #define _gloffset_GetnMapivARB driDispatchRemapTable[GetnMapivARB_remap_index]
1562 #define _gloffset_GetnMinmaxARB driDispatchRemapTable[GetnMinmaxARB_remap_index]
1563 #define _gloffset_GetnPixelMapfvARB driDispatchRemapTable[GetnPixelMapfvARB_remap_index]
1564 #define _gloffset_GetnPixelMapuivARB driDispatchRemapTable[GetnPixelMapuivARB_remap_index]
1565 #define _gloffset_GetnPixelMapusvARB driDispatchRemapTable[GetnPixelMapusvARB_remap_index]
1566 #define _gloffset_GetnPolygonStippleARB driDispatchRemapTable[GetnPolygonStippleARB_remap_index]
1567 #define _gloffset_GetnSeparableFilterARB driDispatchRemapTable[GetnSeparableFilterARB_remap_index]
1568 #define _gloffset_GetnTexImageARB driDispatchRemapTable[GetnTexImageARB_remap_index]
1569 #define _gloffset_GetnUniformdvARB driDispatchRemapTable[GetnUniformdvARB_remap_index]
1570 #define _gloffset_GetnUniformfvARB driDispatchRemapTable[GetnUniformfvARB_remap_index]
1571 #define _gloffset_GetnUniformivARB driDispatchRemapTable[GetnUniformivARB_remap_index]
1572 #define _gloffset_GetnUniformuivARB driDispatchRemapTable[GetnUniformuivARB_remap_index]
1573 #define _gloffset_ReadnPixelsARB driDispatchRemapTable[ReadnPixelsARB_remap_index]
1574 #define _gloffset_TexStorage1D driDispatchRemapTable[TexStorage1D_remap_index]
1575 #define _gloffset_TexStorage2D driDispatchRemapTable[TexStorage2D_remap_index]
1576 #define _gloffset_TexStorage3D driDispatchRemapTable[TexStorage3D_remap_index]
1577 #define _gloffset_TextureStorage1DEXT driDispatchRemapTable[TextureStorage1DEXT_remap_index]
1578 #define _gloffset_TextureStorage2DEXT driDispatchRemapTable[TextureStorage2DEXT_remap_index]
1579 #define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index]
1580 #define _gloffset_PolygonOffsetEXT driDispatchRemapTable[PolygonOffsetEXT_remap_index]
1581 #define _gloffset_GetPixelTexGenParameterfvSGIS driDispatchRemapTable[GetPixelTexGenParameterfvSGIS_remap_index]
1582 #define _gloffset_GetPixelTexGenParameterivSGIS driDispatchRemapTable[GetPixelTexGenParameterivSGIS_remap_index]
1583 #define _gloffset_PixelTexGenParameterfSGIS driDispatchRemapTable[PixelTexGenParameterfSGIS_remap_index]
1584 #define _gloffset_PixelTexGenParameterfvSGIS driDispatchRemapTable[PixelTexGenParameterfvSGIS_remap_index]
1585 #define _gloffset_PixelTexGenParameteriSGIS driDispatchRemapTable[PixelTexGenParameteriSGIS_remap_index]
1586 #define _gloffset_PixelTexGenParameterivSGIS driDispatchRemapTable[PixelTexGenParameterivSGIS_remap_index]
1587 #define _gloffset_SampleMaskSGIS driDispatchRemapTable[SampleMaskSGIS_remap_index]
1588 #define _gloffset_SamplePatternSGIS driDispatchRemapTable[SamplePatternSGIS_remap_index]
1589 #define _gloffset_ColorPointerEXT driDispatchRemapTable[ColorPointerEXT_remap_index]
1590 #define _gloffset_EdgeFlagPointerEXT driDispatchRemapTable[EdgeFlagPointerEXT_remap_index]
1591 #define _gloffset_IndexPointerEXT driDispatchRemapTable[IndexPointerEXT_remap_index]
1592 #define _gloffset_NormalPointerEXT driDispatchRemapTable[NormalPointerEXT_remap_index]
1593 #define _gloffset_TexCoordPointerEXT driDispatchRemapTable[TexCoordPointerEXT_remap_index]
1594 #define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index]
1595 #define _gloffset_PointParameterfEXT driDispatchRemapTable[PointParameterfEXT_remap_index]
1596 #define _gloffset_PointParameterfvEXT driDispatchRemapTable[PointParameterfvEXT_remap_index]
1597 #define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index]
1598 #define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index]
1599 #define _gloffset_SecondaryColor3bEXT driDispatchRemapTable[SecondaryColor3bEXT_remap_index]
1600 #define _gloffset_SecondaryColor3bvEXT driDispatchRemapTable[SecondaryColor3bvEXT_remap_index]
1601 #define _gloffset_SecondaryColor3dEXT driDispatchRemapTable[SecondaryColor3dEXT_remap_index]
1602 #define _gloffset_SecondaryColor3dvEXT driDispatchRemapTable[SecondaryColor3dvEXT_remap_index]
1603 #define _gloffset_SecondaryColor3fEXT driDispatchRemapTable[SecondaryColor3fEXT_remap_index]
1604 #define _gloffset_SecondaryColor3fvEXT driDispatchRemapTable[SecondaryColor3fvEXT_remap_index]
1605 #define _gloffset_SecondaryColor3iEXT driDispatchRemapTable[SecondaryColor3iEXT_remap_index]
1606 #define _gloffset_SecondaryColor3ivEXT driDispatchRemapTable[SecondaryColor3ivEXT_remap_index]
1607 #define _gloffset_SecondaryColor3sEXT driDispatchRemapTable[SecondaryColor3sEXT_remap_index]
1608 #define _gloffset_SecondaryColor3svEXT driDispatchRemapTable[SecondaryColor3svEXT_remap_index]
1609 #define _gloffset_SecondaryColor3ubEXT driDispatchRemapTable[SecondaryColor3ubEXT_remap_index]
1610 #define _gloffset_SecondaryColor3ubvEXT driDispatchRemapTable[SecondaryColor3ubvEXT_remap_index]
1611 #define _gloffset_SecondaryColor3uiEXT driDispatchRemapTable[SecondaryColor3uiEXT_remap_index]
1612 #define _gloffset_SecondaryColor3uivEXT driDispatchRemapTable[SecondaryColor3uivEXT_remap_index]
1613 #define _gloffset_SecondaryColor3usEXT driDispatchRemapTable[SecondaryColor3usEXT_remap_index]
1614 #define _gloffset_SecondaryColor3usvEXT driDispatchRemapTable[SecondaryColor3usvEXT_remap_index]
1615 #define _gloffset_SecondaryColorPointerEXT driDispatchRemapTable[SecondaryColorPointerEXT_remap_index]
1616 #define _gloffset_MultiDrawArraysEXT driDispatchRemapTable[MultiDrawArraysEXT_remap_index]
1617 #define _gloffset_MultiDrawElementsEXT driDispatchRemapTable[MultiDrawElementsEXT_remap_index]
1618 #define _gloffset_FogCoordPointerEXT driDispatchRemapTable[FogCoordPointerEXT_remap_index]
1619 #define _gloffset_FogCoorddEXT driDispatchRemapTable[FogCoorddEXT_remap_index]
1620 #define _gloffset_FogCoorddvEXT driDispatchRemapTable[FogCoorddvEXT_remap_index]
1621 #define _gloffset_FogCoordfEXT driDispatchRemapTable[FogCoordfEXT_remap_index]
1622 #define _gloffset_FogCoordfvEXT driDispatchRemapTable[FogCoordfvEXT_remap_index]
1623 #define _gloffset_PixelTexGenSGIX driDispatchRemapTable[PixelTexGenSGIX_remap_index]
1624 #define _gloffset_BlendFuncSeparateEXT driDispatchRemapTable[BlendFuncSeparateEXT_remap_index]
1625 #define _gloffset_FlushVertexArrayRangeNV driDispatchRemapTable[FlushVertexArrayRangeNV_remap_index]
1626 #define _gloffset_VertexArrayRangeNV driDispatchRemapTable[VertexArrayRangeNV_remap_index]
1627 #define _gloffset_CombinerInputNV driDispatchRemapTable[CombinerInputNV_remap_index]
1628 #define _gloffset_CombinerOutputNV driDispatchRemapTable[CombinerOutputNV_remap_index]
1629 #define _gloffset_CombinerParameterfNV driDispatchRemapTable[CombinerParameterfNV_remap_index]
1630 #define _gloffset_CombinerParameterfvNV driDispatchRemapTable[CombinerParameterfvNV_remap_index]
1631 #define _gloffset_CombinerParameteriNV driDispatchRemapTable[CombinerParameteriNV_remap_index]
1632 #define _gloffset_CombinerParameterivNV driDispatchRemapTable[CombinerParameterivNV_remap_index]
1633 #define _gloffset_FinalCombinerInputNV driDispatchRemapTable[FinalCombinerInputNV_remap_index]
1634 #define _gloffset_GetCombinerInputParameterfvNV driDispatchRemapTable[GetCombinerInputParameterfvNV_remap_index]
1635 #define _gloffset_GetCombinerInputParameterivNV driDispatchRemapTable[GetCombinerInputParameterivNV_remap_index]
1636 #define _gloffset_GetCombinerOutputParameterfvNV driDispatchRemapTable[GetCombinerOutputParameterfvNV_remap_index]
1637 #define _gloffset_GetCombinerOutputParameterivNV driDispatchRemapTable[GetCombinerOutputParameterivNV_remap_index]
1638 #define _gloffset_GetFinalCombinerInputParameterfvNV driDispatchRemapTable[GetFinalCombinerInputParameterfvNV_remap_index]
1639 #define _gloffset_GetFinalCombinerInputParameterivNV driDispatchRemapTable[GetFinalCombinerInputParameterivNV_remap_index]
1640 #define _gloffset_ResizeBuffersMESA driDispatchRemapTable[ResizeBuffersMESA_remap_index]
1641 #define _gloffset_WindowPos2dMESA driDispatchRemapTable[WindowPos2dMESA_remap_index]
1642 #define _gloffset_WindowPos2dvMESA driDispatchRemapTable[WindowPos2dvMESA_remap_index]
1643 #define _gloffset_WindowPos2fMESA driDispatchRemapTable[WindowPos2fMESA_remap_index]
1644 #define _gloffset_WindowPos2fvMESA driDispatchRemapTable[WindowPos2fvMESA_remap_index]
1645 #define _gloffset_WindowPos2iMESA driDispatchRemapTable[WindowPos2iMESA_remap_index]
1646 #define _gloffset_WindowPos2ivMESA driDispatchRemapTable[WindowPos2ivMESA_remap_index]
1647 #define _gloffset_WindowPos2sMESA driDispatchRemapTable[WindowPos2sMESA_remap_index]
1648 #define _gloffset_WindowPos2svMESA driDispatchRemapTable[WindowPos2svMESA_remap_index]
1649 #define _gloffset_WindowPos3dMESA driDispatchRemapTable[WindowPos3dMESA_remap_index]
1650 #define _gloffset_WindowPos3dvMESA driDispatchRemapTable[WindowPos3dvMESA_remap_index]
1651 #define _gloffset_WindowPos3fMESA driDispatchRemapTable[WindowPos3fMESA_remap_index]
1652 #define _gloffset_WindowPos3fvMESA driDispatchRemapTable[WindowPos3fvMESA_remap_index]
1653 #define _gloffset_WindowPos3iMESA driDispatchRemapTable[WindowPos3iMESA_remap_index]
1654 #define _gloffset_WindowPos3ivMESA driDispatchRemapTable[WindowPos3ivMESA_remap_index]
1655 #define _gloffset_WindowPos3sMESA driDispatchRemapTable[WindowPos3sMESA_remap_index]
1656 #define _gloffset_WindowPos3svMESA driDispatchRemapTable[WindowPos3svMESA_remap_index]
1657 #define _gloffset_WindowPos4dMESA driDispatchRemapTable[WindowPos4dMESA_remap_index]
1658 #define _gloffset_WindowPos4dvMESA driDispatchRemapTable[WindowPos4dvMESA_remap_index]
1659 #define _gloffset_WindowPos4fMESA driDispatchRemapTable[WindowPos4fMESA_remap_index]
1660 #define _gloffset_WindowPos4fvMESA driDispatchRemapTable[WindowPos4fvMESA_remap_index]
1661 #define _gloffset_WindowPos4iMESA driDispatchRemapTable[WindowPos4iMESA_remap_index]
1662 #define _gloffset_WindowPos4ivMESA driDispatchRemapTable[WindowPos4ivMESA_remap_index]
1663 #define _gloffset_WindowPos4sMESA driDispatchRemapTable[WindowPos4sMESA_remap_index]
1664 #define _gloffset_WindowPos4svMESA driDispatchRemapTable[WindowPos4svMESA_remap_index]
1665 #define _gloffset_MultiModeDrawArraysIBM driDispatchRemapTable[MultiModeDrawArraysIBM_remap_index]
1666 #define _gloffset_MultiModeDrawElementsIBM driDispatchRemapTable[MultiModeDrawElementsIBM_remap_index]
1667 #define _gloffset_DeleteFencesNV driDispatchRemapTable[DeleteFencesNV_remap_index]
1668 #define _gloffset_FinishFenceNV driDispatchRemapTable[FinishFenceNV_remap_index]
1669 #define _gloffset_GenFencesNV driDispatchRemapTable[GenFencesNV_remap_index]
1670 #define _gloffset_GetFenceivNV driDispatchRemapTable[GetFenceivNV_remap_index]
1671 #define _gloffset_IsFenceNV driDispatchRemapTable[IsFenceNV_remap_index]
1672 #define _gloffset_SetFenceNV driDispatchRemapTable[SetFenceNV_remap_index]
1673 #define _gloffset_TestFenceNV driDispatchRemapTable[TestFenceNV_remap_index]
1674 #define _gloffset_AreProgramsResidentNV driDispatchRemapTable[AreProgramsResidentNV_remap_index]
1675 #define _gloffset_BindProgramNV driDispatchRemapTable[BindProgramNV_remap_index]
1676 #define _gloffset_DeleteProgramsNV driDispatchRemapTable[DeleteProgramsNV_remap_index]
1677 #define _gloffset_ExecuteProgramNV driDispatchRemapTable[ExecuteProgramNV_remap_index]
1678 #define _gloffset_GenProgramsNV driDispatchRemapTable[GenProgramsNV_remap_index]
1679 #define _gloffset_GetProgramParameterdvNV driDispatchRemapTable[GetProgramParameterdvNV_remap_index]
1680 #define _gloffset_GetProgramParameterfvNV driDispatchRemapTable[GetProgramParameterfvNV_remap_index]
1681 #define _gloffset_GetProgramStringNV driDispatchRemapTable[GetProgramStringNV_remap_index]
1682 #define _gloffset_GetProgramivNV driDispatchRemapTable[GetProgramivNV_remap_index]
1683 #define _gloffset_GetTrackMatrixivNV driDispatchRemapTable[GetTrackMatrixivNV_remap_index]
1684 #define _gloffset_GetVertexAttribPointervNV driDispatchRemapTable[GetVertexAttribPointervNV_remap_index]
1685 #define _gloffset_GetVertexAttribdvNV driDispatchRemapTable[GetVertexAttribdvNV_remap_index]
1686 #define _gloffset_GetVertexAttribfvNV driDispatchRemapTable[GetVertexAttribfvNV_remap_index]
1687 #define _gloffset_GetVertexAttribivNV driDispatchRemapTable[GetVertexAttribivNV_remap_index]
1688 #define _gloffset_IsProgramNV driDispatchRemapTable[IsProgramNV_remap_index]
1689 #define _gloffset_LoadProgramNV driDispatchRemapTable[LoadProgramNV_remap_index]
1690 #define _gloffset_ProgramParameters4dvNV driDispatchRemapTable[ProgramParameters4dvNV_remap_index]
1691 #define _gloffset_ProgramParameters4fvNV driDispatchRemapTable[ProgramParameters4fvNV_remap_index]
1692 #define _gloffset_RequestResidentProgramsNV driDispatchRemapTable[RequestResidentProgramsNV_remap_index]
1693 #define _gloffset_TrackMatrixNV driDispatchRemapTable[TrackMatrixNV_remap_index]
1694 #define _gloffset_VertexAttrib1dNV driDispatchRemapTable[VertexAttrib1dNV_remap_index]
1695 #define _gloffset_VertexAttrib1dvNV driDispatchRemapTable[VertexAttrib1dvNV_remap_index]
1696 #define _gloffset_VertexAttrib1fNV driDispatchRemapTable[VertexAttrib1fNV_remap_index]
1697 #define _gloffset_VertexAttrib1fvNV driDispatchRemapTable[VertexAttrib1fvNV_remap_index]
1698 #define _gloffset_VertexAttrib1sNV driDispatchRemapTable[VertexAttrib1sNV_remap_index]
1699 #define _gloffset_VertexAttrib1svNV driDispatchRemapTable[VertexAttrib1svNV_remap_index]
1700 #define _gloffset_VertexAttrib2dNV driDispatchRemapTable[VertexAttrib2dNV_remap_index]
1701 #define _gloffset_VertexAttrib2dvNV driDispatchRemapTable[VertexAttrib2dvNV_remap_index]
1702 #define _gloffset_VertexAttrib2fNV driDispatchRemapTable[VertexAttrib2fNV_remap_index]
1703 #define _gloffset_VertexAttrib2fvNV driDispatchRemapTable[VertexAttrib2fvNV_remap_index]
1704 #define _gloffset_VertexAttrib2sNV driDispatchRemapTable[VertexAttrib2sNV_remap_index]
1705 #define _gloffset_VertexAttrib2svNV driDispatchRemapTable[VertexAttrib2svNV_remap_index]
1706 #define _gloffset_VertexAttrib3dNV driDispatchRemapTable[VertexAttrib3dNV_remap_index]
1707 #define _gloffset_VertexAttrib3dvNV driDispatchRemapTable[VertexAttrib3dvNV_remap_index]
1708 #define _gloffset_VertexAttrib3fNV driDispatchRemapTable[VertexAttrib3fNV_remap_index]
1709 #define _gloffset_VertexAttrib3fvNV driDispatchRemapTable[VertexAttrib3fvNV_remap_index]
1710 #define _gloffset_VertexAttrib3sNV driDispatchRemapTable[VertexAttrib3sNV_remap_index]
1711 #define _gloffset_VertexAttrib3svNV driDispatchRemapTable[VertexAttrib3svNV_remap_index]
1712 #define _gloffset_VertexAttrib4dNV driDispatchRemapTable[VertexAttrib4dNV_remap_index]
1713 #define _gloffset_VertexAttrib4dvNV driDispatchRemapTable[VertexAttrib4dvNV_remap_index]
1714 #define _gloffset_VertexAttrib4fNV driDispatchRemapTable[VertexAttrib4fNV_remap_index]
1715 #define _gloffset_VertexAttrib4fvNV driDispatchRemapTable[VertexAttrib4fvNV_remap_index]
1716 #define _gloffset_VertexAttrib4sNV driDispatchRemapTable[VertexAttrib4sNV_remap_index]
1717 #define _gloffset_VertexAttrib4svNV driDispatchRemapTable[VertexAttrib4svNV_remap_index]
1718 #define _gloffset_VertexAttrib4ubNV driDispatchRemapTable[VertexAttrib4ubNV_remap_index]
1719 #define _gloffset_VertexAttrib4ubvNV driDispatchRemapTable[VertexAttrib4ubvNV_remap_index]
1720 #define _gloffset_VertexAttribPointerNV driDispatchRemapTable[VertexAttribPointerNV_remap_index]
1721 #define _gloffset_VertexAttribs1dvNV driDispatchRemapTable[VertexAttribs1dvNV_remap_index]
1722 #define _gloffset_VertexAttribs1fvNV driDispatchRemapTable[VertexAttribs1fvNV_remap_index]
1723 #define _gloffset_VertexAttribs1svNV driDispatchRemapTable[VertexAttribs1svNV_remap_index]
1724 #define _gloffset_VertexAttribs2dvNV driDispatchRemapTable[VertexAttribs2dvNV_remap_index]
1725 #define _gloffset_VertexAttribs2fvNV driDispatchRemapTable[VertexAttribs2fvNV_remap_index]
1726 #define _gloffset_VertexAttribs2svNV driDispatchRemapTable[VertexAttribs2svNV_remap_index]
1727 #define _gloffset_VertexAttribs3dvNV driDispatchRemapTable[VertexAttribs3dvNV_remap_index]
1728 #define _gloffset_VertexAttribs3fvNV driDispatchRemapTable[VertexAttribs3fvNV_remap_index]
1729 #define _gloffset_VertexAttribs3svNV driDispatchRemapTable[VertexAttribs3svNV_remap_index]
1730 #define _gloffset_VertexAttribs4dvNV driDispatchRemapTable[VertexAttribs4dvNV_remap_index]
1731 #define _gloffset_VertexAttribs4fvNV driDispatchRemapTable[VertexAttribs4fvNV_remap_index]
1732 #define _gloffset_VertexAttribs4svNV driDispatchRemapTable[VertexAttribs4svNV_remap_index]
1733 #define _gloffset_VertexAttribs4ubvNV driDispatchRemapTable[VertexAttribs4ubvNV_remap_index]
1734 #define _gloffset_GetTexBumpParameterfvATI driDispatchRemapTable[GetTexBumpParameterfvATI_remap_index]
1735 #define _gloffset_GetTexBumpParameterivATI driDispatchRemapTable[GetTexBumpParameterivATI_remap_index]
1736 #define _gloffset_TexBumpParameterfvATI driDispatchRemapTable[TexBumpParameterfvATI_remap_index]
1737 #define _gloffset_TexBumpParameterivATI driDispatchRemapTable[TexBumpParameterivATI_remap_index]
1738 #define _gloffset_PointParameteriNV driDispatchRemapTable[PointParameteriNV_remap_index]
1739 #define _gloffset_PointParameterivNV driDispatchRemapTable[PointParameterivNV_remap_index]
1740 #define _gloffset_ActiveStencilFaceEXT driDispatchRemapTable[ActiveStencilFaceEXT_remap_index]
1741 #define _gloffset_BindVertexArrayAPPLE driDispatchRemapTable[BindVertexArrayAPPLE_remap_index]
1742 #define _gloffset_DeleteVertexArraysAPPLE driDispatchRemapTable[DeleteVertexArraysAPPLE_remap_index]
1743 #define _gloffset_GenVertexArraysAPPLE driDispatchRemapTable[GenVertexArraysAPPLE_remap_index]
1744 #define _gloffset_IsVertexArrayAPPLE driDispatchRemapTable[IsVertexArrayAPPLE_remap_index]
1745 #define _gloffset_GetProgramNamedParameterdvNV driDispatchRemapTable[GetProgramNamedParameterdvNV_remap_index]
1746 #define _gloffset_GetProgramNamedParameterfvNV driDispatchRemapTable[GetProgramNamedParameterfvNV_remap_index]
1747 #define _gloffset_ProgramNamedParameter4dNV driDispatchRemapTable[ProgramNamedParameter4dNV_remap_index]
1748 #define _gloffset_ProgramNamedParameter4dvNV driDispatchRemapTable[ProgramNamedParameter4dvNV_remap_index]
1749 #define _gloffset_ProgramNamedParameter4fNV driDispatchRemapTable[ProgramNamedParameter4fNV_remap_index]
1750 #define _gloffset_ProgramNamedParameter4fvNV driDispatchRemapTable[ProgramNamedParameter4fvNV_remap_index]
1751 #define _gloffset_PrimitiveRestartIndexNV driDispatchRemapTable[PrimitiveRestartIndexNV_remap_index]
1752 #define _gloffset_PrimitiveRestartNV driDispatchRemapTable[PrimitiveRestartNV_remap_index]
1753 #define _gloffset_DepthBoundsEXT driDispatchRemapTable[DepthBoundsEXT_remap_index]
1754 #define _gloffset_BlendEquationSeparateEXT driDispatchRemapTable[BlendEquationSeparateEXT_remap_index]
1755 #define _gloffset_BindFramebufferEXT driDispatchRemapTable[BindFramebufferEXT_remap_index]
1756 #define _gloffset_BindRenderbufferEXT driDispatchRemapTable[BindRenderbufferEXT_remap_index]
1757 #define _gloffset_CheckFramebufferStatusEXT driDispatchRemapTable[CheckFramebufferStatusEXT_remap_index]
1758 #define _gloffset_DeleteFramebuffersEXT driDispatchRemapTable[DeleteFramebuffersEXT_remap_index]
1759 #define _gloffset_DeleteRenderbuffersEXT driDispatchRemapTable[DeleteRenderbuffersEXT_remap_index]
1760 #define _gloffset_FramebufferRenderbufferEXT driDispatchRemapTable[FramebufferRenderbufferEXT_remap_index]
1761 #define _gloffset_FramebufferTexture1DEXT driDispatchRemapTable[FramebufferTexture1DEXT_remap_index]
1762 #define _gloffset_FramebufferTexture2DEXT driDispatchRemapTable[FramebufferTexture2DEXT_remap_index]
1763 #define _gloffset_FramebufferTexture3DEXT driDispatchRemapTable[FramebufferTexture3DEXT_remap_index]
1764 #define _gloffset_GenFramebuffersEXT driDispatchRemapTable[GenFramebuffersEXT_remap_index]
1765 #define _gloffset_GenRenderbuffersEXT driDispatchRemapTable[GenRenderbuffersEXT_remap_index]
1766 #define _gloffset_GenerateMipmapEXT driDispatchRemapTable[GenerateMipmapEXT_remap_index]
1767 #define _gloffset_GetFramebufferAttachmentParameterivEXT driDispatchRemapTable[GetFramebufferAttachmentParameterivEXT_remap_index]
1768 #define _gloffset_GetRenderbufferParameterivEXT driDispatchRemapTable[GetRenderbufferParameterivEXT_remap_index]
1769 #define _gloffset_IsFramebufferEXT driDispatchRemapTable[IsFramebufferEXT_remap_index]
1770 #define _gloffset_IsRenderbufferEXT driDispatchRemapTable[IsRenderbufferEXT_remap_index]
1771 #define _gloffset_RenderbufferStorageEXT driDispatchRemapTable[RenderbufferStorageEXT_remap_index]
1772 #define _gloffset_BlitFramebufferEXT driDispatchRemapTable[BlitFramebufferEXT_remap_index]
1773 #define _gloffset_BufferParameteriAPPLE driDispatchRemapTable[BufferParameteriAPPLE_remap_index]
1774 #define _gloffset_FlushMappedBufferRangeAPPLE driDispatchRemapTable[FlushMappedBufferRangeAPPLE_remap_index]
1775 #define _gloffset_BindFragDataLocationEXT driDispatchRemapTable[BindFragDataLocationEXT_remap_index]
1776 #define _gloffset_GetFragDataLocationEXT driDispatchRemapTable[GetFragDataLocationEXT_remap_index]
1777 #define _gloffset_GetUniformuivEXT driDispatchRemapTable[GetUniformuivEXT_remap_index]
1778 #define _gloffset_GetVertexAttribIivEXT driDispatchRemapTable[GetVertexAttribIivEXT_remap_index]
1779 #define _gloffset_GetVertexAttribIuivEXT driDispatchRemapTable[GetVertexAttribIuivEXT_remap_index]
1780 #define _gloffset_Uniform1uiEXT driDispatchRemapTable[Uniform1uiEXT_remap_index]
1781 #define _gloffset_Uniform1uivEXT driDispatchRemapTable[Uniform1uivEXT_remap_index]
1782 #define _gloffset_Uniform2uiEXT driDispatchRemapTable[Uniform2uiEXT_remap_index]
1783 #define _gloffset_Uniform2uivEXT driDispatchRemapTable[Uniform2uivEXT_remap_index]
1784 #define _gloffset_Uniform3uiEXT driDispatchRemapTable[Uniform3uiEXT_remap_index]
1785 #define _gloffset_Uniform3uivEXT driDispatchRemapTable[Uniform3uivEXT_remap_index]
1786 #define _gloffset_Uniform4uiEXT driDispatchRemapTable[Uniform4uiEXT_remap_index]
1787 #define _gloffset_Uniform4uivEXT driDispatchRemapTable[Uniform4uivEXT_remap_index]
1788 #define _gloffset_VertexAttribI1iEXT driDispatchRemapTable[VertexAttribI1iEXT_remap_index]
1789 #define _gloffset_VertexAttribI1ivEXT driDispatchRemapTable[VertexAttribI1ivEXT_remap_index]
1790 #define _gloffset_VertexAttribI1uiEXT driDispatchRemapTable[VertexAttribI1uiEXT_remap_index]
1791 #define _gloffset_VertexAttribI1uivEXT driDispatchRemapTable[VertexAttribI1uivEXT_remap_index]
1792 #define _gloffset_VertexAttribI2iEXT driDispatchRemapTable[VertexAttribI2iEXT_remap_index]
1793 #define _gloffset_VertexAttribI2ivEXT driDispatchRemapTable[VertexAttribI2ivEXT_remap_index]
1794 #define _gloffset_VertexAttribI2uiEXT driDispatchRemapTable[VertexAttribI2uiEXT_remap_index]
1795 #define _gloffset_VertexAttribI2uivEXT driDispatchRemapTable[VertexAttribI2uivEXT_remap_index]
1796 #define _gloffset_VertexAttribI3iEXT driDispatchRemapTable[VertexAttribI3iEXT_remap_index]
1797 #define _gloffset_VertexAttribI3ivEXT driDispatchRemapTable[VertexAttribI3ivEXT_remap_index]
1798 #define _gloffset_VertexAttribI3uiEXT driDispatchRemapTable[VertexAttribI3uiEXT_remap_index]
1799 #define _gloffset_VertexAttribI3uivEXT driDispatchRemapTable[VertexAttribI3uivEXT_remap_index]
1800 #define _gloffset_VertexAttribI4bvEXT driDispatchRemapTable[VertexAttribI4bvEXT_remap_index]
1801 #define _gloffset_VertexAttribI4iEXT driDispatchRemapTable[VertexAttribI4iEXT_remap_index]
1802 #define _gloffset_VertexAttribI4ivEXT driDispatchRemapTable[VertexAttribI4ivEXT_remap_index]
1803 #define _gloffset_VertexAttribI4svEXT driDispatchRemapTable[VertexAttribI4svEXT_remap_index]
1804 #define _gloffset_VertexAttribI4ubvEXT driDispatchRemapTable[VertexAttribI4ubvEXT_remap_index]
1805 #define _gloffset_VertexAttribI4uiEXT driDispatchRemapTable[VertexAttribI4uiEXT_remap_index]
1806 #define _gloffset_VertexAttribI4uivEXT driDispatchRemapTable[VertexAttribI4uivEXT_remap_index]
1807 #define _gloffset_VertexAttribI4usvEXT driDispatchRemapTable[VertexAttribI4usvEXT_remap_index]
1808 #define _gloffset_VertexAttribIPointerEXT driDispatchRemapTable[VertexAttribIPointerEXT_remap_index]
1809 #define _gloffset_ClearColorIiEXT driDispatchRemapTable[ClearColorIiEXT_remap_index]
1810 #define _gloffset_ClearColorIuiEXT driDispatchRemapTable[ClearColorIuiEXT_remap_index]
1811 #define _gloffset_GetTexParameterIivEXT driDispatchRemapTable[GetTexParameterIivEXT_remap_index]
1812 #define _gloffset_GetTexParameterIuivEXT driDispatchRemapTable[GetTexParameterIuivEXT_remap_index]
1813 #define _gloffset_TexParameterIivEXT driDispatchRemapTable[TexParameterIivEXT_remap_index]
1814 #define _gloffset_TexParameterIuivEXT driDispatchRemapTable[TexParameterIuivEXT_remap_index]
1815 #define _gloffset_GetTexParameterPointervAPPLE driDispatchRemapTable[GetTexParameterPointervAPPLE_remap_index]
1816 #define _gloffset_TextureRangeAPPLE driDispatchRemapTable[TextureRangeAPPLE_remap_index]
1817 #define _gloffset_GetObjectParameterivAPPLE driDispatchRemapTable[GetObjectParameterivAPPLE_remap_index]
1818 #define _gloffset_ObjectPurgeableAPPLE driDispatchRemapTable[ObjectPurgeableAPPLE_remap_index]
1819 #define _gloffset_ObjectUnpurgeableAPPLE driDispatchRemapTable[ObjectUnpurgeableAPPLE_remap_index]
1820 #define _gloffset_ActiveProgramEXT driDispatchRemapTable[ActiveProgramEXT_remap_index]
1821 #define _gloffset_CreateShaderProgramEXT driDispatchRemapTable[CreateShaderProgramEXT_remap_index]
1822 #define _gloffset_UseShaderProgramEXT driDispatchRemapTable[UseShaderProgramEXT_remap_index]
1823 #define _gloffset_TextureBarrierNV driDispatchRemapTable[TextureBarrierNV_remap_index]
1824 #define _gloffset_StencilFuncSeparateATI driDispatchRemapTable[StencilFuncSeparateATI_remap_index]
1825 #define _gloffset_ProgramEnvParameters4fvEXT driDispatchRemapTable[ProgramEnvParameters4fvEXT_remap_index]
1826 #define _gloffset_ProgramLocalParameters4fvEXT driDispatchRemapTable[ProgramLocalParameters4fvEXT_remap_index]
1827
1828 #endif /* !FEATURE_remap_table */
1829
1830 typedef void (GLAPIENTRYP _glptr_NewList)(GLuint, GLenum);
1831 #define CALL_NewList(disp, parameters) \
1832 (* GET_NewList(disp)) parameters
1833 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) {
1834 return (_glptr_NewList) (GET_by_offset(disp, _gloffset_NewList));
1835 }
1836
1837 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
1838 SET_by_offset(disp, _gloffset_NewList, fn);
1839 }
1840
1841 typedef void (GLAPIENTRYP _glptr_EndList)(void);
1842 #define CALL_EndList(disp, parameters) \
1843 (* GET_EndList(disp)) parameters
1844 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) {
1845 return (_glptr_EndList) (GET_by_offset(disp, _gloffset_EndList));
1846 }
1847
1848 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
1849 SET_by_offset(disp, _gloffset_EndList, fn);
1850 }
1851
1852 typedef void (GLAPIENTRYP _glptr_CallList)(GLuint);
1853 #define CALL_CallList(disp, parameters) \
1854 (* GET_CallList(disp)) parameters
1855 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) {
1856 return (_glptr_CallList) (GET_by_offset(disp, _gloffset_CallList));
1857 }
1858
1859 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
1860 SET_by_offset(disp, _gloffset_CallList, fn);
1861 }
1862
1863 typedef void (GLAPIENTRYP _glptr_CallLists)(GLsizei, GLenum, const GLvoid *);
1864 #define CALL_CallLists(disp, parameters) \
1865 (* GET_CallLists(disp)) parameters
1866 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
1867 return (_glptr_CallLists) (GET_by_offset(disp, _gloffset_CallLists));
1868 }
1869
1870 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
1871 SET_by_offset(disp, _gloffset_CallLists, fn);
1872 }
1873
1874 typedef void (GLAPIENTRYP _glptr_DeleteLists)(GLuint, GLsizei);
1875 #define CALL_DeleteLists(disp, parameters) \
1876 (* GET_DeleteLists(disp)) parameters
1877 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
1878 return (_glptr_DeleteLists) (GET_by_offset(disp, _gloffset_DeleteLists));
1879 }
1880
1881 static inline void SET_DeleteLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei)) {
1882 SET_by_offset(disp, _gloffset_DeleteLists, fn);
1883 }
1884
1885 typedef GLuint (GLAPIENTRYP _glptr_GenLists)(GLsizei);
1886 #define CALL_GenLists(disp, parameters) \
1887 (* GET_GenLists(disp)) parameters
1888 static inline _glptr_GenLists GET_GenLists(struct _glapi_table *disp) {
1889 return (_glptr_GenLists) (GET_by_offset(disp, _gloffset_GenLists));
1890 }
1891
1892 static inline void SET_GenLists(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLsizei)) {
1893 SET_by_offset(disp, _gloffset_GenLists, fn);
1894 }
1895
1896 typedef void (GLAPIENTRYP _glptr_ListBase)(GLuint);
1897 #define CALL_ListBase(disp, parameters) \
1898 (* GET_ListBase(disp)) parameters
1899 static inline _glptr_ListBase GET_ListBase(struct _glapi_table *disp) {
1900 return (_glptr_ListBase) (GET_by_offset(disp, _gloffset_ListBase));
1901 }
1902
1903 static inline void SET_ListBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
1904 SET_by_offset(disp, _gloffset_ListBase, fn);
1905 }
1906
1907 typedef void (GLAPIENTRYP _glptr_Begin)(GLenum);
1908 #define CALL_Begin(disp, parameters) \
1909 (* GET_Begin(disp)) parameters
1910 static inline _glptr_Begin GET_Begin(struct _glapi_table *disp) {
1911 return (_glptr_Begin) (GET_by_offset(disp, _gloffset_Begin));
1912 }
1913
1914 static inline void SET_Begin(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
1915 SET_by_offset(disp, _gloffset_Begin, fn);
1916 }
1917
1918 typedef void (GLAPIENTRYP _glptr_Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
1919 #define CALL_Bitmap(disp, parameters) \
1920 (* GET_Bitmap(disp)) parameters
1921 static inline _glptr_Bitmap GET_Bitmap(struct _glapi_table *disp) {
1922 return (_glptr_Bitmap) (GET_by_offset(disp, _gloffset_Bitmap));
1923 }
1924
1925 static inline void SET_Bitmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *)) {
1926 SET_by_offset(disp, _gloffset_Bitmap, fn);
1927 }
1928
1929 typedef void (GLAPIENTRYP _glptr_Color3b)(GLbyte, GLbyte, GLbyte);
1930 #define CALL_Color3b(disp, parameters) \
1931 (* GET_Color3b(disp)) parameters
1932 static inline _glptr_Color3b GET_Color3b(struct _glapi_table *disp) {
1933 return (_glptr_Color3b) (GET_by_offset(disp, _gloffset_Color3b));
1934 }
1935
1936 static inline void SET_Color3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
1937 SET_by_offset(disp, _gloffset_Color3b, fn);
1938 }
1939
1940 typedef void (GLAPIENTRYP _glptr_Color3bv)(const GLbyte *);
1941 #define CALL_Color3bv(disp, parameters) \
1942 (* GET_Color3bv(disp)) parameters
1943 static inline _glptr_Color3bv GET_Color3bv(struct _glapi_table *disp) {
1944 return (_glptr_Color3bv) (GET_by_offset(disp, _gloffset_Color3bv));
1945 }
1946
1947 static inline void SET_Color3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
1948 SET_by_offset(disp, _gloffset_Color3bv, fn);
1949 }
1950
1951 typedef void (GLAPIENTRYP _glptr_Color3d)(GLdouble, GLdouble, GLdouble);
1952 #define CALL_Color3d(disp, parameters) \
1953 (* GET_Color3d(disp)) parameters
1954 static inline _glptr_Color3d GET_Color3d(struct _glapi_table *disp) {
1955 return (_glptr_Color3d) (GET_by_offset(disp, _gloffset_Color3d));
1956 }
1957
1958 static inline void SET_Color3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
1959 SET_by_offset(disp, _gloffset_Color3d, fn);
1960 }
1961
1962 typedef void (GLAPIENTRYP _glptr_Color3dv)(const GLdouble *);
1963 #define CALL_Color3dv(disp, parameters) \
1964 (* GET_Color3dv(disp)) parameters
1965 static inline _glptr_Color3dv GET_Color3dv(struct _glapi_table *disp) {
1966 return (_glptr_Color3dv) (GET_by_offset(disp, _gloffset_Color3dv));
1967 }
1968
1969 static inline void SET_Color3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1970 SET_by_offset(disp, _gloffset_Color3dv, fn);
1971 }
1972
1973 typedef void (GLAPIENTRYP _glptr_Color3f)(GLfloat, GLfloat, GLfloat);
1974 #define CALL_Color3f(disp, parameters) \
1975 (* GET_Color3f(disp)) parameters
1976 static inline _glptr_Color3f GET_Color3f(struct _glapi_table *disp) {
1977 return (_glptr_Color3f) (GET_by_offset(disp, _gloffset_Color3f));
1978 }
1979
1980 static inline void SET_Color3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
1981 SET_by_offset(disp, _gloffset_Color3f, fn);
1982 }
1983
1984 typedef void (GLAPIENTRYP _glptr_Color3fv)(const GLfloat *);
1985 #define CALL_Color3fv(disp, parameters) \
1986 (* GET_Color3fv(disp)) parameters
1987 static inline _glptr_Color3fv GET_Color3fv(struct _glapi_table *disp) {
1988 return (_glptr_Color3fv) (GET_by_offset(disp, _gloffset_Color3fv));
1989 }
1990
1991 static inline void SET_Color3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1992 SET_by_offset(disp, _gloffset_Color3fv, fn);
1993 }
1994
1995 typedef void (GLAPIENTRYP _glptr_Color3i)(GLint, GLint, GLint);
1996 #define CALL_Color3i(disp, parameters) \
1997 (* GET_Color3i(disp)) parameters
1998 static inline _glptr_Color3i GET_Color3i(struct _glapi_table *disp) {
1999 return (_glptr_Color3i) (GET_by_offset(disp, _gloffset_Color3i));
2000 }
2001
2002 static inline void SET_Color3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2003 SET_by_offset(disp, _gloffset_Color3i, fn);
2004 }
2005
2006 typedef void (GLAPIENTRYP _glptr_Color3iv)(const GLint *);
2007 #define CALL_Color3iv(disp, parameters) \
2008 (* GET_Color3iv(disp)) parameters
2009 static inline _glptr_Color3iv GET_Color3iv(struct _glapi_table *disp) {
2010 return (_glptr_Color3iv) (GET_by_offset(disp, _gloffset_Color3iv));
2011 }
2012
2013 static inline void SET_Color3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2014 SET_by_offset(disp, _gloffset_Color3iv, fn);
2015 }
2016
2017 typedef void (GLAPIENTRYP _glptr_Color3s)(GLshort, GLshort, GLshort);
2018 #define CALL_Color3s(disp, parameters) \
2019 (* GET_Color3s(disp)) parameters
2020 static inline _glptr_Color3s GET_Color3s(struct _glapi_table *disp) {
2021 return (_glptr_Color3s) (GET_by_offset(disp, _gloffset_Color3s));
2022 }
2023
2024 static inline void SET_Color3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2025 SET_by_offset(disp, _gloffset_Color3s, fn);
2026 }
2027
2028 typedef void (GLAPIENTRYP _glptr_Color3sv)(const GLshort *);
2029 #define CALL_Color3sv(disp, parameters) \
2030 (* GET_Color3sv(disp)) parameters
2031 static inline _glptr_Color3sv GET_Color3sv(struct _glapi_table *disp) {
2032 return (_glptr_Color3sv) (GET_by_offset(disp, _gloffset_Color3sv));
2033 }
2034
2035 static inline void SET_Color3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2036 SET_by_offset(disp, _gloffset_Color3sv, fn);
2037 }
2038
2039 typedef void (GLAPIENTRYP _glptr_Color3ub)(GLubyte, GLubyte, GLubyte);
2040 #define CALL_Color3ub(disp, parameters) \
2041 (* GET_Color3ub(disp)) parameters
2042 static inline _glptr_Color3ub GET_Color3ub(struct _glapi_table *disp) {
2043 return (_glptr_Color3ub) (GET_by_offset(disp, _gloffset_Color3ub));
2044 }
2045
2046 static inline void SET_Color3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
2047 SET_by_offset(disp, _gloffset_Color3ub, fn);
2048 }
2049
2050 typedef void (GLAPIENTRYP _glptr_Color3ubv)(const GLubyte *);
2051 #define CALL_Color3ubv(disp, parameters) \
2052 (* GET_Color3ubv(disp)) parameters
2053 static inline _glptr_Color3ubv GET_Color3ubv(struct _glapi_table *disp) {
2054 return (_glptr_Color3ubv) (GET_by_offset(disp, _gloffset_Color3ubv));
2055 }
2056
2057 static inline void SET_Color3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
2058 SET_by_offset(disp, _gloffset_Color3ubv, fn);
2059 }
2060
2061 typedef void (GLAPIENTRYP _glptr_Color3ui)(GLuint, GLuint, GLuint);
2062 #define CALL_Color3ui(disp, parameters) \
2063 (* GET_Color3ui(disp)) parameters
2064 static inline _glptr_Color3ui GET_Color3ui(struct _glapi_table *disp) {
2065 return (_glptr_Color3ui) (GET_by_offset(disp, _gloffset_Color3ui));
2066 }
2067
2068 static inline void SET_Color3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
2069 SET_by_offset(disp, _gloffset_Color3ui, fn);
2070 }
2071
2072 typedef void (GLAPIENTRYP _glptr_Color3uiv)(const GLuint *);
2073 #define CALL_Color3uiv(disp, parameters) \
2074 (* GET_Color3uiv(disp)) parameters
2075 static inline _glptr_Color3uiv GET_Color3uiv(struct _glapi_table *disp) {
2076 return (_glptr_Color3uiv) (GET_by_offset(disp, _gloffset_Color3uiv));
2077 }
2078
2079 static inline void SET_Color3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
2080 SET_by_offset(disp, _gloffset_Color3uiv, fn);
2081 }
2082
2083 typedef void (GLAPIENTRYP _glptr_Color3us)(GLushort, GLushort, GLushort);
2084 #define CALL_Color3us(disp, parameters) \
2085 (* GET_Color3us(disp)) parameters
2086 static inline _glptr_Color3us GET_Color3us(struct _glapi_table *disp) {
2087 return (_glptr_Color3us) (GET_by_offset(disp, _gloffset_Color3us));
2088 }
2089
2090 static inline void SET_Color3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
2091 SET_by_offset(disp, _gloffset_Color3us, fn);
2092 }
2093
2094 typedef void (GLAPIENTRYP _glptr_Color3usv)(const GLushort *);
2095 #define CALL_Color3usv(disp, parameters) \
2096 (* GET_Color3usv(disp)) parameters
2097 static inline _glptr_Color3usv GET_Color3usv(struct _glapi_table *disp) {
2098 return (_glptr_Color3usv) (GET_by_offset(disp, _gloffset_Color3usv));
2099 }
2100
2101 static inline void SET_Color3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
2102 SET_by_offset(disp, _gloffset_Color3usv, fn);
2103 }
2104
2105 typedef void (GLAPIENTRYP _glptr_Color4b)(GLbyte, GLbyte, GLbyte, GLbyte);
2106 #define CALL_Color4b(disp, parameters) \
2107 (* GET_Color4b(disp)) parameters
2108 static inline _glptr_Color4b GET_Color4b(struct _glapi_table *disp) {
2109 return (_glptr_Color4b) (GET_by_offset(disp, _gloffset_Color4b));
2110 }
2111
2112 static inline void SET_Color4b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte, GLbyte)) {
2113 SET_by_offset(disp, _gloffset_Color4b, fn);
2114 }
2115
2116 typedef void (GLAPIENTRYP _glptr_Color4bv)(const GLbyte *);
2117 #define CALL_Color4bv(disp, parameters) \
2118 (* GET_Color4bv(disp)) parameters
2119 static inline _glptr_Color4bv GET_Color4bv(struct _glapi_table *disp) {
2120 return (_glptr_Color4bv) (GET_by_offset(disp, _gloffset_Color4bv));
2121 }
2122
2123 static inline void SET_Color4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
2124 SET_by_offset(disp, _gloffset_Color4bv, fn);
2125 }
2126
2127 typedef void (GLAPIENTRYP _glptr_Color4d)(GLdouble, GLdouble, GLdouble, GLdouble);
2128 #define CALL_Color4d(disp, parameters) \
2129 (* GET_Color4d(disp)) parameters
2130 static inline _glptr_Color4d GET_Color4d(struct _glapi_table *disp) {
2131 return (_glptr_Color4d) (GET_by_offset(disp, _gloffset_Color4d));
2132 }
2133
2134 static inline void SET_Color4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2135 SET_by_offset(disp, _gloffset_Color4d, fn);
2136 }
2137
2138 typedef void (GLAPIENTRYP _glptr_Color4dv)(const GLdouble *);
2139 #define CALL_Color4dv(disp, parameters) \
2140 (* GET_Color4dv(disp)) parameters
2141 static inline _glptr_Color4dv GET_Color4dv(struct _glapi_table *disp) {
2142 return (_glptr_Color4dv) (GET_by_offset(disp, _gloffset_Color4dv));
2143 }
2144
2145 static inline void SET_Color4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2146 SET_by_offset(disp, _gloffset_Color4dv, fn);
2147 }
2148
2149 typedef void (GLAPIENTRYP _glptr_Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
2150 #define CALL_Color4f(disp, parameters) \
2151 (* GET_Color4f(disp)) parameters
2152 static inline _glptr_Color4f GET_Color4f(struct _glapi_table *disp) {
2153 return (_glptr_Color4f) (GET_by_offset(disp, _gloffset_Color4f));
2154 }
2155
2156 static inline void SET_Color4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2157 SET_by_offset(disp, _gloffset_Color4f, fn);
2158 }
2159
2160 typedef void (GLAPIENTRYP _glptr_Color4fv)(const GLfloat *);
2161 #define CALL_Color4fv(disp, parameters) \
2162 (* GET_Color4fv(disp)) parameters
2163 static inline _glptr_Color4fv GET_Color4fv(struct _glapi_table *disp) {
2164 return (_glptr_Color4fv) (GET_by_offset(disp, _gloffset_Color4fv));
2165 }
2166
2167 static inline void SET_Color4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2168 SET_by_offset(disp, _gloffset_Color4fv, fn);
2169 }
2170
2171 typedef void (GLAPIENTRYP _glptr_Color4i)(GLint, GLint, GLint, GLint);
2172 #define CALL_Color4i(disp, parameters) \
2173 (* GET_Color4i(disp)) parameters
2174 static inline _glptr_Color4i GET_Color4i(struct _glapi_table *disp) {
2175 return (_glptr_Color4i) (GET_by_offset(disp, _gloffset_Color4i));
2176 }
2177
2178 static inline void SET_Color4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2179 SET_by_offset(disp, _gloffset_Color4i, fn);
2180 }
2181
2182 typedef void (GLAPIENTRYP _glptr_Color4iv)(const GLint *);
2183 #define CALL_Color4iv(disp, parameters) \
2184 (* GET_Color4iv(disp)) parameters
2185 static inline _glptr_Color4iv GET_Color4iv(struct _glapi_table *disp) {
2186 return (_glptr_Color4iv) (GET_by_offset(disp, _gloffset_Color4iv));
2187 }
2188
2189 static inline void SET_Color4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2190 SET_by_offset(disp, _gloffset_Color4iv, fn);
2191 }
2192
2193 typedef void (GLAPIENTRYP _glptr_Color4s)(GLshort, GLshort, GLshort, GLshort);
2194 #define CALL_Color4s(disp, parameters) \
2195 (* GET_Color4s(disp)) parameters
2196 static inline _glptr_Color4s GET_Color4s(struct _glapi_table *disp) {
2197 return (_glptr_Color4s) (GET_by_offset(disp, _gloffset_Color4s));
2198 }
2199
2200 static inline void SET_Color4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2201 SET_by_offset(disp, _gloffset_Color4s, fn);
2202 }
2203
2204 typedef void (GLAPIENTRYP _glptr_Color4sv)(const GLshort *);
2205 #define CALL_Color4sv(disp, parameters) \
2206 (* GET_Color4sv(disp)) parameters
2207 static inline _glptr_Color4sv GET_Color4sv(struct _glapi_table *disp) {
2208 return (_glptr_Color4sv) (GET_by_offset(disp, _gloffset_Color4sv));
2209 }
2210
2211 static inline void SET_Color4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2212 SET_by_offset(disp, _gloffset_Color4sv, fn);
2213 }
2214
2215 typedef void (GLAPIENTRYP _glptr_Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
2216 #define CALL_Color4ub(disp, parameters) \
2217 (* GET_Color4ub(disp)) parameters
2218 static inline _glptr_Color4ub GET_Color4ub(struct _glapi_table *disp) {
2219 return (_glptr_Color4ub) (GET_by_offset(disp, _gloffset_Color4ub));
2220 }
2221
2222 static inline void SET_Color4ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte, GLubyte)) {
2223 SET_by_offset(disp, _gloffset_Color4ub, fn);
2224 }
2225
2226 typedef void (GLAPIENTRYP _glptr_Color4ubv)(const GLubyte *);
2227 #define CALL_Color4ubv(disp, parameters) \
2228 (* GET_Color4ubv(disp)) parameters
2229 static inline _glptr_Color4ubv GET_Color4ubv(struct _glapi_table *disp) {
2230 return (_glptr_Color4ubv) (GET_by_offset(disp, _gloffset_Color4ubv));
2231 }
2232
2233 static inline void SET_Color4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
2234 SET_by_offset(disp, _gloffset_Color4ubv, fn);
2235 }
2236
2237 typedef void (GLAPIENTRYP _glptr_Color4ui)(GLuint, GLuint, GLuint, GLuint);
2238 #define CALL_Color4ui(disp, parameters) \
2239 (* GET_Color4ui(disp)) parameters
2240 static inline _glptr_Color4ui GET_Color4ui(struct _glapi_table *disp) {
2241 return (_glptr_Color4ui) (GET_by_offset(disp, _gloffset_Color4ui));
2242 }
2243
2244 static inline void SET_Color4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
2245 SET_by_offset(disp, _gloffset_Color4ui, fn);
2246 }
2247
2248 typedef void (GLAPIENTRYP _glptr_Color4uiv)(const GLuint *);
2249 #define CALL_Color4uiv(disp, parameters) \
2250 (* GET_Color4uiv(disp)) parameters
2251 static inline _glptr_Color4uiv GET_Color4uiv(struct _glapi_table *disp) {
2252 return (_glptr_Color4uiv) (GET_by_offset(disp, _gloffset_Color4uiv));
2253 }
2254
2255 static inline void SET_Color4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
2256 SET_by_offset(disp, _gloffset_Color4uiv, fn);
2257 }
2258
2259 typedef void (GLAPIENTRYP _glptr_Color4us)(GLushort, GLushort, GLushort, GLushort);
2260 #define CALL_Color4us(disp, parameters) \
2261 (* GET_Color4us(disp)) parameters
2262 static inline _glptr_Color4us GET_Color4us(struct _glapi_table *disp) {
2263 return (_glptr_Color4us) (GET_by_offset(disp, _gloffset_Color4us));
2264 }
2265
2266 static inline void SET_Color4us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort, GLushort)) {
2267 SET_by_offset(disp, _gloffset_Color4us, fn);
2268 }
2269
2270 typedef void (GLAPIENTRYP _glptr_Color4usv)(const GLushort *);
2271 #define CALL_Color4usv(disp, parameters) \
2272 (* GET_Color4usv(disp)) parameters
2273 static inline _glptr_Color4usv GET_Color4usv(struct _glapi_table *disp) {
2274 return (_glptr_Color4usv) (GET_by_offset(disp, _gloffset_Color4usv));
2275 }
2276
2277 static inline void SET_Color4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
2278 SET_by_offset(disp, _gloffset_Color4usv, fn);
2279 }
2280
2281 typedef void (GLAPIENTRYP _glptr_EdgeFlag)(GLboolean);
2282 #define CALL_EdgeFlag(disp, parameters) \
2283 (* GET_EdgeFlag(disp)) parameters
2284 static inline _glptr_EdgeFlag GET_EdgeFlag(struct _glapi_table *disp) {
2285 return (_glptr_EdgeFlag) (GET_by_offset(disp, _gloffset_EdgeFlag));
2286 }
2287
2288 static inline void SET_EdgeFlag(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
2289 SET_by_offset(disp, _gloffset_EdgeFlag, fn);
2290 }
2291
2292 typedef void (GLAPIENTRYP _glptr_EdgeFlagv)(const GLboolean *);
2293 #define CALL_EdgeFlagv(disp, parameters) \
2294 (* GET_EdgeFlagv(disp)) parameters
2295 static inline _glptr_EdgeFlagv GET_EdgeFlagv(struct _glapi_table *disp) {
2296 return (_glptr_EdgeFlagv) (GET_by_offset(disp, _gloffset_EdgeFlagv));
2297 }
2298
2299 static inline void SET_EdgeFlagv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLboolean *)) {
2300 SET_by_offset(disp, _gloffset_EdgeFlagv, fn);
2301 }
2302
2303 typedef void (GLAPIENTRYP _glptr_End)(void);
2304 #define CALL_End(disp, parameters) \
2305 (* GET_End(disp)) parameters
2306 static inline _glptr_End GET_End(struct _glapi_table *disp) {
2307 return (_glptr_End) (GET_by_offset(disp, _gloffset_End));
2308 }
2309
2310 static inline void SET_End(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2311 SET_by_offset(disp, _gloffset_End, fn);
2312 }
2313
2314 typedef void (GLAPIENTRYP _glptr_Indexd)(GLdouble);
2315 #define CALL_Indexd(disp, parameters) \
2316 (* GET_Indexd(disp)) parameters
2317 static inline _glptr_Indexd GET_Indexd(struct _glapi_table *disp) {
2318 return (_glptr_Indexd) (GET_by_offset(disp, _gloffset_Indexd));
2319 }
2320
2321 static inline void SET_Indexd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
2322 SET_by_offset(disp, _gloffset_Indexd, fn);
2323 }
2324
2325 typedef void (GLAPIENTRYP _glptr_Indexdv)(const GLdouble *);
2326 #define CALL_Indexdv(disp, parameters) \
2327 (* GET_Indexdv(disp)) parameters
2328 static inline _glptr_Indexdv GET_Indexdv(struct _glapi_table *disp) {
2329 return (_glptr_Indexdv) (GET_by_offset(disp, _gloffset_Indexdv));
2330 }
2331
2332 static inline void SET_Indexdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2333 SET_by_offset(disp, _gloffset_Indexdv, fn);
2334 }
2335
2336 typedef void (GLAPIENTRYP _glptr_Indexf)(GLfloat);
2337 #define CALL_Indexf(disp, parameters) \
2338 (* GET_Indexf(disp)) parameters
2339 static inline _glptr_Indexf GET_Indexf(struct _glapi_table *disp) {
2340 return (_glptr_Indexf) (GET_by_offset(disp, _gloffset_Indexf));
2341 }
2342
2343 static inline void SET_Indexf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
2344 SET_by_offset(disp, _gloffset_Indexf, fn);
2345 }
2346
2347 typedef void (GLAPIENTRYP _glptr_Indexfv)(const GLfloat *);
2348 #define CALL_Indexfv(disp, parameters) \
2349 (* GET_Indexfv(disp)) parameters
2350 static inline _glptr_Indexfv GET_Indexfv(struct _glapi_table *disp) {
2351 return (_glptr_Indexfv) (GET_by_offset(disp, _gloffset_Indexfv));
2352 }
2353
2354 static inline void SET_Indexfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2355 SET_by_offset(disp, _gloffset_Indexfv, fn);
2356 }
2357
2358 typedef void (GLAPIENTRYP _glptr_Indexi)(GLint);
2359 #define CALL_Indexi(disp, parameters) \
2360 (* GET_Indexi(disp)) parameters
2361 static inline _glptr_Indexi GET_Indexi(struct _glapi_table *disp) {
2362 return (_glptr_Indexi) (GET_by_offset(disp, _gloffset_Indexi));
2363 }
2364
2365 static inline void SET_Indexi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
2366 SET_by_offset(disp, _gloffset_Indexi, fn);
2367 }
2368
2369 typedef void (GLAPIENTRYP _glptr_Indexiv)(const GLint *);
2370 #define CALL_Indexiv(disp, parameters) \
2371 (* GET_Indexiv(disp)) parameters
2372 static inline _glptr_Indexiv GET_Indexiv(struct _glapi_table *disp) {
2373 return (_glptr_Indexiv) (GET_by_offset(disp, _gloffset_Indexiv));
2374 }
2375
2376 static inline void SET_Indexiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2377 SET_by_offset(disp, _gloffset_Indexiv, fn);
2378 }
2379
2380 typedef void (GLAPIENTRYP _glptr_Indexs)(GLshort);
2381 #define CALL_Indexs(disp, parameters) \
2382 (* GET_Indexs(disp)) parameters
2383 static inline _glptr_Indexs GET_Indexs(struct _glapi_table *disp) {
2384 return (_glptr_Indexs) (GET_by_offset(disp, _gloffset_Indexs));
2385 }
2386
2387 static inline void SET_Indexs(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
2388 SET_by_offset(disp, _gloffset_Indexs, fn);
2389 }
2390
2391 typedef void (GLAPIENTRYP _glptr_Indexsv)(const GLshort *);
2392 #define CALL_Indexsv(disp, parameters) \
2393 (* GET_Indexsv(disp)) parameters
2394 static inline _glptr_Indexsv GET_Indexsv(struct _glapi_table *disp) {
2395 return (_glptr_Indexsv) (GET_by_offset(disp, _gloffset_Indexsv));
2396 }
2397
2398 static inline void SET_Indexsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2399 SET_by_offset(disp, _gloffset_Indexsv, fn);
2400 }
2401
2402 typedef void (GLAPIENTRYP _glptr_Normal3b)(GLbyte, GLbyte, GLbyte);
2403 #define CALL_Normal3b(disp, parameters) \
2404 (* GET_Normal3b(disp)) parameters
2405 static inline _glptr_Normal3b GET_Normal3b(struct _glapi_table *disp) {
2406 return (_glptr_Normal3b) (GET_by_offset(disp, _gloffset_Normal3b));
2407 }
2408
2409 static inline void SET_Normal3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
2410 SET_by_offset(disp, _gloffset_Normal3b, fn);
2411 }
2412
2413 typedef void (GLAPIENTRYP _glptr_Normal3bv)(const GLbyte *);
2414 #define CALL_Normal3bv(disp, parameters) \
2415 (* GET_Normal3bv(disp)) parameters
2416 static inline _glptr_Normal3bv GET_Normal3bv(struct _glapi_table *disp) {
2417 return (_glptr_Normal3bv) (GET_by_offset(disp, _gloffset_Normal3bv));
2418 }
2419
2420 static inline void SET_Normal3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
2421 SET_by_offset(disp, _gloffset_Normal3bv, fn);
2422 }
2423
2424 typedef void (GLAPIENTRYP _glptr_Normal3d)(GLdouble, GLdouble, GLdouble);
2425 #define CALL_Normal3d(disp, parameters) \
2426 (* GET_Normal3d(disp)) parameters
2427 static inline _glptr_Normal3d GET_Normal3d(struct _glapi_table *disp) {
2428 return (_glptr_Normal3d) (GET_by_offset(disp, _gloffset_Normal3d));
2429 }
2430
2431 static inline void SET_Normal3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2432 SET_by_offset(disp, _gloffset_Normal3d, fn);
2433 }
2434
2435 typedef void (GLAPIENTRYP _glptr_Normal3dv)(const GLdouble *);
2436 #define CALL_Normal3dv(disp, parameters) \
2437 (* GET_Normal3dv(disp)) parameters
2438 static inline _glptr_Normal3dv GET_Normal3dv(struct _glapi_table *disp) {
2439 return (_glptr_Normal3dv) (GET_by_offset(disp, _gloffset_Normal3dv));
2440 }
2441
2442 static inline void SET_Normal3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2443 SET_by_offset(disp, _gloffset_Normal3dv, fn);
2444 }
2445
2446 typedef void (GLAPIENTRYP _glptr_Normal3f)(GLfloat, GLfloat, GLfloat);
2447 #define CALL_Normal3f(disp, parameters) \
2448 (* GET_Normal3f(disp)) parameters
2449 static inline _glptr_Normal3f GET_Normal3f(struct _glapi_table *disp) {
2450 return (_glptr_Normal3f) (GET_by_offset(disp, _gloffset_Normal3f));
2451 }
2452
2453 static inline void SET_Normal3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2454 SET_by_offset(disp, _gloffset_Normal3f, fn);
2455 }
2456
2457 typedef void (GLAPIENTRYP _glptr_Normal3fv)(const GLfloat *);
2458 #define CALL_Normal3fv(disp, parameters) \
2459 (* GET_Normal3fv(disp)) parameters
2460 static inline _glptr_Normal3fv GET_Normal3fv(struct _glapi_table *disp) {
2461 return (_glptr_Normal3fv) (GET_by_offset(disp, _gloffset_Normal3fv));
2462 }
2463
2464 static inline void SET_Normal3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2465 SET_by_offset(disp, _gloffset_Normal3fv, fn);
2466 }
2467
2468 typedef void (GLAPIENTRYP _glptr_Normal3i)(GLint, GLint, GLint);
2469 #define CALL_Normal3i(disp, parameters) \
2470 (* GET_Normal3i(disp)) parameters
2471 static inline _glptr_Normal3i GET_Normal3i(struct _glapi_table *disp) {
2472 return (_glptr_Normal3i) (GET_by_offset(disp, _gloffset_Normal3i));
2473 }
2474
2475 static inline void SET_Normal3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2476 SET_by_offset(disp, _gloffset_Normal3i, fn);
2477 }
2478
2479 typedef void (GLAPIENTRYP _glptr_Normal3iv)(const GLint *);
2480 #define CALL_Normal3iv(disp, parameters) \
2481 (* GET_Normal3iv(disp)) parameters
2482 static inline _glptr_Normal3iv GET_Normal3iv(struct _glapi_table *disp) {
2483 return (_glptr_Normal3iv) (GET_by_offset(disp, _gloffset_Normal3iv));
2484 }
2485
2486 static inline void SET_Normal3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2487 SET_by_offset(disp, _gloffset_Normal3iv, fn);
2488 }
2489
2490 typedef void (GLAPIENTRYP _glptr_Normal3s)(GLshort, GLshort, GLshort);
2491 #define CALL_Normal3s(disp, parameters) \
2492 (* GET_Normal3s(disp)) parameters
2493 static inline _glptr_Normal3s GET_Normal3s(struct _glapi_table *disp) {
2494 return (_glptr_Normal3s) (GET_by_offset(disp, _gloffset_Normal3s));
2495 }
2496
2497 static inline void SET_Normal3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2498 SET_by_offset(disp, _gloffset_Normal3s, fn);
2499 }
2500
2501 typedef void (GLAPIENTRYP _glptr_Normal3sv)(const GLshort *);
2502 #define CALL_Normal3sv(disp, parameters) \
2503 (* GET_Normal3sv(disp)) parameters
2504 static inline _glptr_Normal3sv GET_Normal3sv(struct _glapi_table *disp) {
2505 return (_glptr_Normal3sv) (GET_by_offset(disp, _gloffset_Normal3sv));
2506 }
2507
2508 static inline void SET_Normal3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2509 SET_by_offset(disp, _gloffset_Normal3sv, fn);
2510 }
2511
2512 typedef void (GLAPIENTRYP _glptr_RasterPos2d)(GLdouble, GLdouble);
2513 #define CALL_RasterPos2d(disp, parameters) \
2514 (* GET_RasterPos2d(disp)) parameters
2515 static inline _glptr_RasterPos2d GET_RasterPos2d(struct _glapi_table *disp) {
2516 return (_glptr_RasterPos2d) (GET_by_offset(disp, _gloffset_RasterPos2d));
2517 }
2518
2519 static inline void SET_RasterPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
2520 SET_by_offset(disp, _gloffset_RasterPos2d, fn);
2521 }
2522
2523 typedef void (GLAPIENTRYP _glptr_RasterPos2dv)(const GLdouble *);
2524 #define CALL_RasterPos2dv(disp, parameters) \
2525 (* GET_RasterPos2dv(disp)) parameters
2526 static inline _glptr_RasterPos2dv GET_RasterPos2dv(struct _glapi_table *disp) {
2527 return (_glptr_RasterPos2dv) (GET_by_offset(disp, _gloffset_RasterPos2dv));
2528 }
2529
2530 static inline void SET_RasterPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2531 SET_by_offset(disp, _gloffset_RasterPos2dv, fn);
2532 }
2533
2534 typedef void (GLAPIENTRYP _glptr_RasterPos2f)(GLfloat, GLfloat);
2535 #define CALL_RasterPos2f(disp, parameters) \
2536 (* GET_RasterPos2f(disp)) parameters
2537 static inline _glptr_RasterPos2f GET_RasterPos2f(struct _glapi_table *disp) {
2538 return (_glptr_RasterPos2f) (GET_by_offset(disp, _gloffset_RasterPos2f));
2539 }
2540
2541 static inline void SET_RasterPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
2542 SET_by_offset(disp, _gloffset_RasterPos2f, fn);
2543 }
2544
2545 typedef void (GLAPIENTRYP _glptr_RasterPos2fv)(const GLfloat *);
2546 #define CALL_RasterPos2fv(disp, parameters) \
2547 (* GET_RasterPos2fv(disp)) parameters
2548 static inline _glptr_RasterPos2fv GET_RasterPos2fv(struct _glapi_table *disp) {
2549 return (_glptr_RasterPos2fv) (GET_by_offset(disp, _gloffset_RasterPos2fv));
2550 }
2551
2552 static inline void SET_RasterPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2553 SET_by_offset(disp, _gloffset_RasterPos2fv, fn);
2554 }
2555
2556 typedef void (GLAPIENTRYP _glptr_RasterPos2i)(GLint, GLint);
2557 #define CALL_RasterPos2i(disp, parameters) \
2558 (* GET_RasterPos2i(disp)) parameters
2559 static inline _glptr_RasterPos2i GET_RasterPos2i(struct _glapi_table *disp) {
2560 return (_glptr_RasterPos2i) (GET_by_offset(disp, _gloffset_RasterPos2i));
2561 }
2562
2563 static inline void SET_RasterPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
2564 SET_by_offset(disp, _gloffset_RasterPos2i, fn);
2565 }
2566
2567 typedef void (GLAPIENTRYP _glptr_RasterPos2iv)(const GLint *);
2568 #define CALL_RasterPos2iv(disp, parameters) \
2569 (* GET_RasterPos2iv(disp)) parameters
2570 static inline _glptr_RasterPos2iv GET_RasterPos2iv(struct _glapi_table *disp) {
2571 return (_glptr_RasterPos2iv) (GET_by_offset(disp, _gloffset_RasterPos2iv));
2572 }
2573
2574 static inline void SET_RasterPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2575 SET_by_offset(disp, _gloffset_RasterPos2iv, fn);
2576 }
2577
2578 typedef void (GLAPIENTRYP _glptr_RasterPos2s)(GLshort, GLshort);
2579 #define CALL_RasterPos2s(disp, parameters) \
2580 (* GET_RasterPos2s(disp)) parameters
2581 static inline _glptr_RasterPos2s GET_RasterPos2s(struct _glapi_table *disp) {
2582 return (_glptr_RasterPos2s) (GET_by_offset(disp, _gloffset_RasterPos2s));
2583 }
2584
2585 static inline void SET_RasterPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
2586 SET_by_offset(disp, _gloffset_RasterPos2s, fn);
2587 }
2588
2589 typedef void (GLAPIENTRYP _glptr_RasterPos2sv)(const GLshort *);
2590 #define CALL_RasterPos2sv(disp, parameters) \
2591 (* GET_RasterPos2sv(disp)) parameters
2592 static inline _glptr_RasterPos2sv GET_RasterPos2sv(struct _glapi_table *disp) {
2593 return (_glptr_RasterPos2sv) (GET_by_offset(disp, _gloffset_RasterPos2sv));
2594 }
2595
2596 static inline void SET_RasterPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2597 SET_by_offset(disp, _gloffset_RasterPos2sv, fn);
2598 }
2599
2600 typedef void (GLAPIENTRYP _glptr_RasterPos3d)(GLdouble, GLdouble, GLdouble);
2601 #define CALL_RasterPos3d(disp, parameters) \
2602 (* GET_RasterPos3d(disp)) parameters
2603 static inline _glptr_RasterPos3d GET_RasterPos3d(struct _glapi_table *disp) {
2604 return (_glptr_RasterPos3d) (GET_by_offset(disp, _gloffset_RasterPos3d));
2605 }
2606
2607 static inline void SET_RasterPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2608 SET_by_offset(disp, _gloffset_RasterPos3d, fn);
2609 }
2610
2611 typedef void (GLAPIENTRYP _glptr_RasterPos3dv)(const GLdouble *);
2612 #define CALL_RasterPos3dv(disp, parameters) \
2613 (* GET_RasterPos3dv(disp)) parameters
2614 static inline _glptr_RasterPos3dv GET_RasterPos3dv(struct _glapi_table *disp) {
2615 return (_glptr_RasterPos3dv) (GET_by_offset(disp, _gloffset_RasterPos3dv));
2616 }
2617
2618 static inline void SET_RasterPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2619 SET_by_offset(disp, _gloffset_RasterPos3dv, fn);
2620 }
2621
2622 typedef void (GLAPIENTRYP _glptr_RasterPos3f)(GLfloat, GLfloat, GLfloat);
2623 #define CALL_RasterPos3f(disp, parameters) \
2624 (* GET_RasterPos3f(disp)) parameters
2625 static inline _glptr_RasterPos3f GET_RasterPos3f(struct _glapi_table *disp) {
2626 return (_glptr_RasterPos3f) (GET_by_offset(disp, _gloffset_RasterPos3f));
2627 }
2628
2629 static inline void SET_RasterPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2630 SET_by_offset(disp, _gloffset_RasterPos3f, fn);
2631 }
2632
2633 typedef void (GLAPIENTRYP _glptr_RasterPos3fv)(const GLfloat *);
2634 #define CALL_RasterPos3fv(disp, parameters) \
2635 (* GET_RasterPos3fv(disp)) parameters
2636 static inline _glptr_RasterPos3fv GET_RasterPos3fv(struct _glapi_table *disp) {
2637 return (_glptr_RasterPos3fv) (GET_by_offset(disp, _gloffset_RasterPos3fv));
2638 }
2639
2640 static inline void SET_RasterPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2641 SET_by_offset(disp, _gloffset_RasterPos3fv, fn);
2642 }
2643
2644 typedef void (GLAPIENTRYP _glptr_RasterPos3i)(GLint, GLint, GLint);
2645 #define CALL_RasterPos3i(disp, parameters) \
2646 (* GET_RasterPos3i(disp)) parameters
2647 static inline _glptr_RasterPos3i GET_RasterPos3i(struct _glapi_table *disp) {
2648 return (_glptr_RasterPos3i) (GET_by_offset(disp, _gloffset_RasterPos3i));
2649 }
2650
2651 static inline void SET_RasterPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2652 SET_by_offset(disp, _gloffset_RasterPos3i, fn);
2653 }
2654
2655 typedef void (GLAPIENTRYP _glptr_RasterPos3iv)(const GLint *);
2656 #define CALL_RasterPos3iv(disp, parameters) \
2657 (* GET_RasterPos3iv(disp)) parameters
2658 static inline _glptr_RasterPos3iv GET_RasterPos3iv(struct _glapi_table *disp) {
2659 return (_glptr_RasterPos3iv) (GET_by_offset(disp, _gloffset_RasterPos3iv));
2660 }
2661
2662 static inline void SET_RasterPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2663 SET_by_offset(disp, _gloffset_RasterPos3iv, fn);
2664 }
2665
2666 typedef void (GLAPIENTRYP _glptr_RasterPos3s)(GLshort, GLshort, GLshort);
2667 #define CALL_RasterPos3s(disp, parameters) \
2668 (* GET_RasterPos3s(disp)) parameters
2669 static inline _glptr_RasterPos3s GET_RasterPos3s(struct _glapi_table *disp) {
2670 return (_glptr_RasterPos3s) (GET_by_offset(disp, _gloffset_RasterPos3s));
2671 }
2672
2673 static inline void SET_RasterPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2674 SET_by_offset(disp, _gloffset_RasterPos3s, fn);
2675 }
2676
2677 typedef void (GLAPIENTRYP _glptr_RasterPos3sv)(const GLshort *);
2678 #define CALL_RasterPos3sv(disp, parameters) \
2679 (* GET_RasterPos3sv(disp)) parameters
2680 static inline _glptr_RasterPos3sv GET_RasterPos3sv(struct _glapi_table *disp) {
2681 return (_glptr_RasterPos3sv) (GET_by_offset(disp, _gloffset_RasterPos3sv));
2682 }
2683
2684 static inline void SET_RasterPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2685 SET_by_offset(disp, _gloffset_RasterPos3sv, fn);
2686 }
2687
2688 typedef void (GLAPIENTRYP _glptr_RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble);
2689 #define CALL_RasterPos4d(disp, parameters) \
2690 (* GET_RasterPos4d(disp)) parameters
2691 static inline _glptr_RasterPos4d GET_RasterPos4d(struct _glapi_table *disp) {
2692 return (_glptr_RasterPos4d) (GET_by_offset(disp, _gloffset_RasterPos4d));
2693 }
2694
2695 static inline void SET_RasterPos4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2696 SET_by_offset(disp, _gloffset_RasterPos4d, fn);
2697 }
2698
2699 typedef void (GLAPIENTRYP _glptr_RasterPos4dv)(const GLdouble *);
2700 #define CALL_RasterPos4dv(disp, parameters) \
2701 (* GET_RasterPos4dv(disp)) parameters
2702 static inline _glptr_RasterPos4dv GET_RasterPos4dv(struct _glapi_table *disp) {
2703 return (_glptr_RasterPos4dv) (GET_by_offset(disp, _gloffset_RasterPos4dv));
2704 }
2705
2706 static inline void SET_RasterPos4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2707 SET_by_offset(disp, _gloffset_RasterPos4dv, fn);
2708 }
2709
2710 typedef void (GLAPIENTRYP _glptr_RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat);
2711 #define CALL_RasterPos4f(disp, parameters) \
2712 (* GET_RasterPos4f(disp)) parameters
2713 static inline _glptr_RasterPos4f GET_RasterPos4f(struct _glapi_table *disp) {
2714 return (_glptr_RasterPos4f) (GET_by_offset(disp, _gloffset_RasterPos4f));
2715 }
2716
2717 static inline void SET_RasterPos4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2718 SET_by_offset(disp, _gloffset_RasterPos4f, fn);
2719 }
2720
2721 typedef void (GLAPIENTRYP _glptr_RasterPos4fv)(const GLfloat *);
2722 #define CALL_RasterPos4fv(disp, parameters) \
2723 (* GET_RasterPos4fv(disp)) parameters
2724 static inline _glptr_RasterPos4fv GET_RasterPos4fv(struct _glapi_table *disp) {
2725 return (_glptr_RasterPos4fv) (GET_by_offset(disp, _gloffset_RasterPos4fv));
2726 }
2727
2728 static inline void SET_RasterPos4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2729 SET_by_offset(disp, _gloffset_RasterPos4fv, fn);
2730 }
2731
2732 typedef void (GLAPIENTRYP _glptr_RasterPos4i)(GLint, GLint, GLint, GLint);
2733 #define CALL_RasterPos4i(disp, parameters) \
2734 (* GET_RasterPos4i(disp)) parameters
2735 static inline _glptr_RasterPos4i GET_RasterPos4i(struct _glapi_table *disp) {
2736 return (_glptr_RasterPos4i) (GET_by_offset(disp, _gloffset_RasterPos4i));
2737 }
2738
2739 static inline void SET_RasterPos4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2740 SET_by_offset(disp, _gloffset_RasterPos4i, fn);
2741 }
2742
2743 typedef void (GLAPIENTRYP _glptr_RasterPos4iv)(const GLint *);
2744 #define CALL_RasterPos4iv(disp, parameters) \
2745 (* GET_RasterPos4iv(disp)) parameters
2746 static inline _glptr_RasterPos4iv GET_RasterPos4iv(struct _glapi_table *disp) {
2747 return (_glptr_RasterPos4iv) (GET_by_offset(disp, _gloffset_RasterPos4iv));
2748 }
2749
2750 static inline void SET_RasterPos4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2751 SET_by_offset(disp, _gloffset_RasterPos4iv, fn);
2752 }
2753
2754 typedef void (GLAPIENTRYP _glptr_RasterPos4s)(GLshort, GLshort, GLshort, GLshort);
2755 #define CALL_RasterPos4s(disp, parameters) \
2756 (* GET_RasterPos4s(disp)) parameters
2757 static inline _glptr_RasterPos4s GET_RasterPos4s(struct _glapi_table *disp) {
2758 return (_glptr_RasterPos4s) (GET_by_offset(disp, _gloffset_RasterPos4s));
2759 }
2760
2761 static inline void SET_RasterPos4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2762 SET_by_offset(disp, _gloffset_RasterPos4s, fn);
2763 }
2764
2765 typedef void (GLAPIENTRYP _glptr_RasterPos4sv)(const GLshort *);
2766 #define CALL_RasterPos4sv(disp, parameters) \
2767 (* GET_RasterPos4sv(disp)) parameters
2768 static inline _glptr_RasterPos4sv GET_RasterPos4sv(struct _glapi_table *disp) {
2769 return (_glptr_RasterPos4sv) (GET_by_offset(disp, _gloffset_RasterPos4sv));
2770 }
2771
2772 static inline void SET_RasterPos4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2773 SET_by_offset(disp, _gloffset_RasterPos4sv, fn);
2774 }
2775
2776 typedef void (GLAPIENTRYP _glptr_Rectd)(GLdouble, GLdouble, GLdouble, GLdouble);
2777 #define CALL_Rectd(disp, parameters) \
2778 (* GET_Rectd(disp)) parameters
2779 static inline _glptr_Rectd GET_Rectd(struct _glapi_table *disp) {
2780 return (_glptr_Rectd) (GET_by_offset(disp, _gloffset_Rectd));
2781 }
2782
2783 static inline void SET_Rectd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2784 SET_by_offset(disp, _gloffset_Rectd, fn);
2785 }
2786
2787 typedef void (GLAPIENTRYP _glptr_Rectdv)(const GLdouble *, const GLdouble *);
2788 #define CALL_Rectdv(disp, parameters) \
2789 (* GET_Rectdv(disp)) parameters
2790 static inline _glptr_Rectdv GET_Rectdv(struct _glapi_table *disp) {
2791 return (_glptr_Rectdv) (GET_by_offset(disp, _gloffset_Rectdv));
2792 }
2793
2794 static inline void SET_Rectdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *, const GLdouble *)) {
2795 SET_by_offset(disp, _gloffset_Rectdv, fn);
2796 }
2797
2798 typedef void (GLAPIENTRYP _glptr_Rectf)(GLfloat, GLfloat, GLfloat, GLfloat);
2799 #define CALL_Rectf(disp, parameters) \
2800 (* GET_Rectf(disp)) parameters
2801 static inline _glptr_Rectf GET_Rectf(struct _glapi_table *disp) {
2802 return (_glptr_Rectf) (GET_by_offset(disp, _gloffset_Rectf));
2803 }
2804
2805 static inline void SET_Rectf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2806 SET_by_offset(disp, _gloffset_Rectf, fn);
2807 }
2808
2809 typedef void (GLAPIENTRYP _glptr_Rectfv)(const GLfloat *, const GLfloat *);
2810 #define CALL_Rectfv(disp, parameters) \
2811 (* GET_Rectfv(disp)) parameters
2812 static inline _glptr_Rectfv GET_Rectfv(struct _glapi_table *disp) {
2813 return (_glptr_Rectfv) (GET_by_offset(disp, _gloffset_Rectfv));
2814 }
2815
2816 static inline void SET_Rectfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *, const GLfloat *)) {
2817 SET_by_offset(disp, _gloffset_Rectfv, fn);
2818 }
2819
2820 typedef void (GLAPIENTRYP _glptr_Recti)(GLint, GLint, GLint, GLint);
2821 #define CALL_Recti(disp, parameters) \
2822 (* GET_Recti(disp)) parameters
2823 static inline _glptr_Recti GET_Recti(struct _glapi_table *disp) {
2824 return (_glptr_Recti) (GET_by_offset(disp, _gloffset_Recti));
2825 }
2826
2827 static inline void SET_Recti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2828 SET_by_offset(disp, _gloffset_Recti, fn);
2829 }
2830
2831 typedef void (GLAPIENTRYP _glptr_Rectiv)(const GLint *, const GLint *);
2832 #define CALL_Rectiv(disp, parameters) \
2833 (* GET_Rectiv(disp)) parameters
2834 static inline _glptr_Rectiv GET_Rectiv(struct _glapi_table *disp) {
2835 return (_glptr_Rectiv) (GET_by_offset(disp, _gloffset_Rectiv));
2836 }
2837
2838 static inline void SET_Rectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *, const GLint *)) {
2839 SET_by_offset(disp, _gloffset_Rectiv, fn);
2840 }
2841
2842 typedef void (GLAPIENTRYP _glptr_Rects)(GLshort, GLshort, GLshort, GLshort);
2843 #define CALL_Rects(disp, parameters) \
2844 (* GET_Rects(disp)) parameters
2845 static inline _glptr_Rects GET_Rects(struct _glapi_table *disp) {
2846 return (_glptr_Rects) (GET_by_offset(disp, _gloffset_Rects));
2847 }
2848
2849 static inline void SET_Rects(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2850 SET_by_offset(disp, _gloffset_Rects, fn);
2851 }
2852
2853 typedef void (GLAPIENTRYP _glptr_Rectsv)(const GLshort *, const GLshort *);
2854 #define CALL_Rectsv(disp, parameters) \
2855 (* GET_Rectsv(disp)) parameters
2856 static inline _glptr_Rectsv GET_Rectsv(struct _glapi_table *disp) {
2857 return (_glptr_Rectsv) (GET_by_offset(disp, _gloffset_Rectsv));
2858 }
2859
2860 static inline void SET_Rectsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *, const GLshort *)) {
2861 SET_by_offset(disp, _gloffset_Rectsv, fn);
2862 }
2863
2864 typedef void (GLAPIENTRYP _glptr_TexCoord1d)(GLdouble);
2865 #define CALL_TexCoord1d(disp, parameters) \
2866 (* GET_TexCoord1d(disp)) parameters
2867 static inline _glptr_TexCoord1d GET_TexCoord1d(struct _glapi_table *disp) {
2868 return (_glptr_TexCoord1d) (GET_by_offset(disp, _gloffset_TexCoord1d));
2869 }
2870
2871 static inline void SET_TexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
2872 SET_by_offset(disp, _gloffset_TexCoord1d, fn);
2873 }
2874
2875 typedef void (GLAPIENTRYP _glptr_TexCoord1dv)(const GLdouble *);
2876 #define CALL_TexCoord1dv(disp, parameters) \
2877 (* GET_TexCoord1dv(disp)) parameters
2878 static inline _glptr_TexCoord1dv GET_TexCoord1dv(struct _glapi_table *disp) {
2879 return (_glptr_TexCoord1dv) (GET_by_offset(disp, _gloffset_TexCoord1dv));
2880 }
2881
2882 static inline void SET_TexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2883 SET_by_offset(disp, _gloffset_TexCoord1dv, fn);
2884 }
2885
2886 typedef void (GLAPIENTRYP _glptr_TexCoord1f)(GLfloat);
2887 #define CALL_TexCoord1f(disp, parameters) \
2888 (* GET_TexCoord1f(disp)) parameters
2889 static inline _glptr_TexCoord1f GET_TexCoord1f(struct _glapi_table *disp) {
2890 return (_glptr_TexCoord1f) (GET_by_offset(disp, _gloffset_TexCoord1f));
2891 }
2892
2893 static inline void SET_TexCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
2894 SET_by_offset(disp, _gloffset_TexCoord1f, fn);
2895 }
2896
2897 typedef void (GLAPIENTRYP _glptr_TexCoord1fv)(const GLfloat *);
2898 #define CALL_TexCoord1fv(disp, parameters) \
2899 (* GET_TexCoord1fv(disp)) parameters
2900 static inline _glptr_TexCoord1fv GET_TexCoord1fv(struct _glapi_table *disp) {
2901 return (_glptr_TexCoord1fv) (GET_by_offset(disp, _gloffset_TexCoord1fv));
2902 }
2903
2904 static inline void SET_TexCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2905 SET_by_offset(disp, _gloffset_TexCoord1fv, fn);
2906 }
2907
2908 typedef void (GLAPIENTRYP _glptr_TexCoord1i)(GLint);
2909 #define CALL_TexCoord1i(disp, parameters) \
2910 (* GET_TexCoord1i(disp)) parameters
2911 static inline _glptr_TexCoord1i GET_TexCoord1i(struct _glapi_table *disp) {
2912 return (_glptr_TexCoord1i) (GET_by_offset(disp, _gloffset_TexCoord1i));
2913 }
2914
2915 static inline void SET_TexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
2916 SET_by_offset(disp, _gloffset_TexCoord1i, fn);
2917 }
2918
2919 typedef void (GLAPIENTRYP _glptr_TexCoord1iv)(const GLint *);
2920 #define CALL_TexCoord1iv(disp, parameters) \
2921 (* GET_TexCoord1iv(disp)) parameters
2922 static inline _glptr_TexCoord1iv GET_TexCoord1iv(struct _glapi_table *disp) {
2923 return (_glptr_TexCoord1iv) (GET_by_offset(disp, _gloffset_TexCoord1iv));
2924 }
2925
2926 static inline void SET_TexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2927 SET_by_offset(disp, _gloffset_TexCoord1iv, fn);
2928 }
2929
2930 typedef void (GLAPIENTRYP _glptr_TexCoord1s)(GLshort);
2931 #define CALL_TexCoord1s(disp, parameters) \
2932 (* GET_TexCoord1s(disp)) parameters
2933 static inline _glptr_TexCoord1s GET_TexCoord1s(struct _glapi_table *disp) {
2934 return (_glptr_TexCoord1s) (GET_by_offset(disp, _gloffset_TexCoord1s));
2935 }
2936
2937 static inline void SET_TexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
2938 SET_by_offset(disp, _gloffset_TexCoord1s, fn);
2939 }
2940
2941 typedef void (GLAPIENTRYP _glptr_TexCoord1sv)(const GLshort *);
2942 #define CALL_TexCoord1sv(disp, parameters) \
2943 (* GET_TexCoord1sv(disp)) parameters
2944 static inline _glptr_TexCoord1sv GET_TexCoord1sv(struct _glapi_table *disp) {
2945 return (_glptr_TexCoord1sv) (GET_by_offset(disp, _gloffset_TexCoord1sv));
2946 }
2947
2948 static inline void SET_TexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2949 SET_by_offset(disp, _gloffset_TexCoord1sv, fn);
2950 }
2951
2952 typedef void (GLAPIENTRYP _glptr_TexCoord2d)(GLdouble, GLdouble);
2953 #define CALL_TexCoord2d(disp, parameters) \
2954 (* GET_TexCoord2d(disp)) parameters
2955 static inline _glptr_TexCoord2d GET_TexCoord2d(struct _glapi_table *disp) {
2956 return (_glptr_TexCoord2d) (GET_by_offset(disp, _gloffset_TexCoord2d));
2957 }
2958
2959 static inline void SET_TexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
2960 SET_by_offset(disp, _gloffset_TexCoord2d, fn);
2961 }
2962
2963 typedef void (GLAPIENTRYP _glptr_TexCoord2dv)(const GLdouble *);
2964 #define CALL_TexCoord2dv(disp, parameters) \
2965 (* GET_TexCoord2dv(disp)) parameters
2966 static inline _glptr_TexCoord2dv GET_TexCoord2dv(struct _glapi_table *disp) {
2967 return (_glptr_TexCoord2dv) (GET_by_offset(disp, _gloffset_TexCoord2dv));
2968 }
2969
2970 static inline void SET_TexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2971 SET_by_offset(disp, _gloffset_TexCoord2dv, fn);
2972 }
2973
2974 typedef void (GLAPIENTRYP _glptr_TexCoord2f)(GLfloat, GLfloat);
2975 #define CALL_TexCoord2f(disp, parameters) \
2976 (* GET_TexCoord2f(disp)) parameters
2977 static inline _glptr_TexCoord2f GET_TexCoord2f(struct _glapi_table *disp) {
2978 return (_glptr_TexCoord2f) (GET_by_offset(disp, _gloffset_TexCoord2f));
2979 }
2980
2981 static inline void SET_TexCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
2982 SET_by_offset(disp, _gloffset_TexCoord2f, fn);
2983 }
2984
2985 typedef void (GLAPIENTRYP _glptr_TexCoord2fv)(const GLfloat *);
2986 #define CALL_TexCoord2fv(disp, parameters) \
2987 (* GET_TexCoord2fv(disp)) parameters
2988 static inline _glptr_TexCoord2fv GET_TexCoord2fv(struct _glapi_table *disp) {
2989 return (_glptr_TexCoord2fv) (GET_by_offset(disp, _gloffset_TexCoord2fv));
2990 }
2991
2992 static inline void SET_TexCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2993 SET_by_offset(disp, _gloffset_TexCoord2fv, fn);
2994 }
2995
2996 typedef void (GLAPIENTRYP _glptr_TexCoord2i)(GLint, GLint);
2997 #define CALL_TexCoord2i(disp, parameters) \
2998 (* GET_TexCoord2i(disp)) parameters
2999 static inline _glptr_TexCoord2i GET_TexCoord2i(struct _glapi_table *disp) {
3000 return (_glptr_TexCoord2i) (GET_by_offset(disp, _gloffset_TexCoord2i));
3001 }
3002
3003 static inline void SET_TexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
3004 SET_by_offset(disp, _gloffset_TexCoord2i, fn);
3005 }
3006
3007 typedef void (GLAPIENTRYP _glptr_TexCoord2iv)(const GLint *);
3008 #define CALL_TexCoord2iv(disp, parameters) \
3009 (* GET_TexCoord2iv(disp)) parameters
3010 static inline _glptr_TexCoord2iv GET_TexCoord2iv(struct _glapi_table *disp) {
3011 return (_glptr_TexCoord2iv) (GET_by_offset(disp, _gloffset_TexCoord2iv));
3012 }
3013
3014 static inline void SET_TexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3015 SET_by_offset(disp, _gloffset_TexCoord2iv, fn);
3016 }
3017
3018 typedef void (GLAPIENTRYP _glptr_TexCoord2s)(GLshort, GLshort);
3019 #define CALL_TexCoord2s(disp, parameters) \
3020 (* GET_TexCoord2s(disp)) parameters
3021 static inline _glptr_TexCoord2s GET_TexCoord2s(struct _glapi_table *disp) {
3022 return (_glptr_TexCoord2s) (GET_by_offset(disp, _gloffset_TexCoord2s));
3023 }
3024
3025 static inline void SET_TexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
3026 SET_by_offset(disp, _gloffset_TexCoord2s, fn);
3027 }
3028
3029 typedef void (GLAPIENTRYP _glptr_TexCoord2sv)(const GLshort *);
3030 #define CALL_TexCoord2sv(disp, parameters) \
3031 (* GET_TexCoord2sv(disp)) parameters
3032 static inline _glptr_TexCoord2sv GET_TexCoord2sv(struct _glapi_table *disp) {
3033 return (_glptr_TexCoord2sv) (GET_by_offset(disp, _gloffset_TexCoord2sv));
3034 }
3035
3036 static inline void SET_TexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3037 SET_by_offset(disp, _gloffset_TexCoord2sv, fn);
3038 }
3039
3040 typedef void (GLAPIENTRYP _glptr_TexCoord3d)(GLdouble, GLdouble, GLdouble);
3041 #define CALL_TexCoord3d(disp, parameters) \
3042 (* GET_TexCoord3d(disp)) parameters
3043 static inline _glptr_TexCoord3d GET_TexCoord3d(struct _glapi_table *disp) {
3044 return (_glptr_TexCoord3d) (GET_by_offset(disp, _gloffset_TexCoord3d));
3045 }
3046
3047 static inline void SET_TexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
3048 SET_by_offset(disp, _gloffset_TexCoord3d, fn);
3049 }
3050
3051 typedef void (GLAPIENTRYP _glptr_TexCoord3dv)(const GLdouble *);
3052 #define CALL_TexCoord3dv(disp, parameters) \
3053 (* GET_TexCoord3dv(disp)) parameters
3054 static inline _glptr_TexCoord3dv GET_TexCoord3dv(struct _glapi_table *disp) {
3055 return (_glptr_TexCoord3dv) (GET_by_offset(disp, _gloffset_TexCoord3dv));
3056 }
3057
3058 static inline void SET_TexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3059 SET_by_offset(disp, _gloffset_TexCoord3dv, fn);
3060 }
3061
3062 typedef void (GLAPIENTRYP _glptr_TexCoord3f)(GLfloat, GLfloat, GLfloat);
3063 #define CALL_TexCoord3f(disp, parameters) \
3064 (* GET_TexCoord3f(disp)) parameters
3065 static inline _glptr_TexCoord3f GET_TexCoord3f(struct _glapi_table *disp) {
3066 return (_glptr_TexCoord3f) (GET_by_offset(disp, _gloffset_TexCoord3f));
3067 }
3068
3069 static inline void SET_TexCoord3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
3070 SET_by_offset(disp, _gloffset_TexCoord3f, fn);
3071 }
3072
3073 typedef void (GLAPIENTRYP _glptr_TexCoord3fv)(const GLfloat *);
3074 #define CALL_TexCoord3fv(disp, parameters) \
3075 (* GET_TexCoord3fv(disp)) parameters
3076 static inline _glptr_TexCoord3fv GET_TexCoord3fv(struct _glapi_table *disp) {
3077 return (_glptr_TexCoord3fv) (GET_by_offset(disp, _gloffset_TexCoord3fv));
3078 }
3079
3080 static inline void SET_TexCoord3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3081 SET_by_offset(disp, _gloffset_TexCoord3fv, fn);
3082 }
3083
3084 typedef void (GLAPIENTRYP _glptr_TexCoord3i)(GLint, GLint, GLint);
3085 #define CALL_TexCoord3i(disp, parameters) \
3086 (* GET_TexCoord3i(disp)) parameters
3087 static inline _glptr_TexCoord3i GET_TexCoord3i(struct _glapi_table *disp) {
3088 return (_glptr_TexCoord3i) (GET_by_offset(disp, _gloffset_TexCoord3i));
3089 }
3090
3091 static inline void SET_TexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
3092 SET_by_offset(disp, _gloffset_TexCoord3i, fn);
3093 }
3094
3095 typedef void (GLAPIENTRYP _glptr_TexCoord3iv)(const GLint *);
3096 #define CALL_TexCoord3iv(disp, parameters) \
3097 (* GET_TexCoord3iv(disp)) parameters
3098 static inline _glptr_TexCoord3iv GET_TexCoord3iv(struct _glapi_table *disp) {
3099 return (_glptr_TexCoord3iv) (GET_by_offset(disp, _gloffset_TexCoord3iv));
3100 }
3101
3102 static inline void SET_TexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3103 SET_by_offset(disp, _gloffset_TexCoord3iv, fn);
3104 }
3105
3106 typedef void (GLAPIENTRYP _glptr_TexCoord3s)(GLshort, GLshort, GLshort);
3107 #define CALL_TexCoord3s(disp, parameters) \
3108 (* GET_TexCoord3s(disp)) parameters
3109 static inline _glptr_TexCoord3s GET_TexCoord3s(struct _glapi_table *disp) {
3110 return (_glptr_TexCoord3s) (GET_by_offset(disp, _gloffset_TexCoord3s));
3111 }
3112
3113 static inline void SET_TexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
3114 SET_by_offset(disp, _gloffset_TexCoord3s, fn);
3115 }
3116
3117 typedef void (GLAPIENTRYP _glptr_TexCoord3sv)(const GLshort *);
3118 #define CALL_TexCoord3sv(disp, parameters) \
3119 (* GET_TexCoord3sv(disp)) parameters
3120 static inline _glptr_TexCoord3sv GET_TexCoord3sv(struct _glapi_table *disp) {
3121 return (_glptr_TexCoord3sv) (GET_by_offset(disp, _gloffset_TexCoord3sv));
3122 }
3123
3124 static inline void SET_TexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3125 SET_by_offset(disp, _gloffset_TexCoord3sv, fn);
3126 }
3127
3128 typedef void (GLAPIENTRYP _glptr_TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble);
3129 #define CALL_TexCoord4d(disp, parameters) \
3130 (* GET_TexCoord4d(disp)) parameters
3131 static inline _glptr_TexCoord4d GET_TexCoord4d(struct _glapi_table *disp) {
3132 return (_glptr_TexCoord4d) (GET_by_offset(disp, _gloffset_TexCoord4d));
3133 }
3134
3135 static inline void SET_TexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
3136 SET_by_offset(disp, _gloffset_TexCoord4d, fn);
3137 }
3138
3139 typedef void (GLAPIENTRYP _glptr_TexCoord4dv)(const GLdouble *);
3140 #define CALL_TexCoord4dv(disp, parameters) \
3141 (* GET_TexCoord4dv(disp)) parameters
3142 static inline _glptr_TexCoord4dv GET_TexCoord4dv(struct _glapi_table *disp) {
3143 return (_glptr_TexCoord4dv) (GET_by_offset(disp, _gloffset_TexCoord4dv));
3144 }
3145
3146 static inline void SET_TexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3147 SET_by_offset(disp, _gloffset_TexCoord4dv, fn);
3148 }
3149
3150 typedef void (GLAPIENTRYP _glptr_TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat);
3151 #define CALL_TexCoord4f(disp, parameters) \
3152 (* GET_TexCoord4f(disp)) parameters
3153 static inline _glptr_TexCoord4f GET_TexCoord4f(struct _glapi_table *disp) {
3154 return (_glptr_TexCoord4f) (GET_by_offset(disp, _gloffset_TexCoord4f));
3155 }
3156
3157 static inline void SET_TexCoord4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3158 SET_by_offset(disp, _gloffset_TexCoord4f, fn);
3159 }
3160
3161 typedef void (GLAPIENTRYP _glptr_TexCoord4fv)(const GLfloat *);
3162 #define CALL_TexCoord4fv(disp, parameters) \
3163 (* GET_TexCoord4fv(disp)) parameters
3164 static inline _glptr_TexCoord4fv GET_TexCoord4fv(struct _glapi_table *disp) {
3165 return (_glptr_TexCoord4fv) (GET_by_offset(disp, _gloffset_TexCoord4fv));
3166 }
3167
3168 static inline void SET_TexCoord4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3169 SET_by_offset(disp, _gloffset_TexCoord4fv, fn);
3170 }
3171
3172 typedef void (GLAPIENTRYP _glptr_TexCoord4i)(GLint, GLint, GLint, GLint);
3173 #define CALL_TexCoord4i(disp, parameters) \
3174 (* GET_TexCoord4i(disp)) parameters
3175 static inline _glptr_TexCoord4i GET_TexCoord4i(struct _glapi_table *disp) {
3176 return (_glptr_TexCoord4i) (GET_by_offset(disp, _gloffset_TexCoord4i));
3177 }
3178
3179 static inline void SET_TexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
3180 SET_by_offset(disp, _gloffset_TexCoord4i, fn);
3181 }
3182
3183 typedef void (GLAPIENTRYP _glptr_TexCoord4iv)(const GLint *);
3184 #define CALL_TexCoord4iv(disp, parameters) \
3185 (* GET_TexCoord4iv(disp)) parameters
3186 static inline _glptr_TexCoord4iv GET_TexCoord4iv(struct _glapi_table *disp) {
3187 return (_glptr_TexCoord4iv) (GET_by_offset(disp, _gloffset_TexCoord4iv));
3188 }
3189
3190 static inline void SET_TexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3191 SET_by_offset(disp, _gloffset_TexCoord4iv, fn);
3192 }
3193
3194 typedef void (GLAPIENTRYP _glptr_TexCoord4s)(GLshort, GLshort, GLshort, GLshort);
3195 #define CALL_TexCoord4s(disp, parameters) \
3196 (* GET_TexCoord4s(disp)) parameters
3197 static inline _glptr_TexCoord4s GET_TexCoord4s(struct _glapi_table *disp) {
3198 return (_glptr_TexCoord4s) (GET_by_offset(disp, _gloffset_TexCoord4s));
3199 }
3200
3201 static inline void SET_TexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
3202 SET_by_offset(disp, _gloffset_TexCoord4s, fn);
3203 }
3204
3205 typedef void (GLAPIENTRYP _glptr_TexCoord4sv)(const GLshort *);
3206 #define CALL_TexCoord4sv(disp, parameters) \
3207 (* GET_TexCoord4sv(disp)) parameters
3208 static inline _glptr_TexCoord4sv GET_TexCoord4sv(struct _glapi_table *disp) {
3209 return (_glptr_TexCoord4sv) (GET_by_offset(disp, _gloffset_TexCoord4sv));
3210 }
3211
3212 static inline void SET_TexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3213 SET_by_offset(disp, _gloffset_TexCoord4sv, fn);
3214 }
3215
3216 typedef void (GLAPIENTRYP _glptr_Vertex2d)(GLdouble, GLdouble);
3217 #define CALL_Vertex2d(disp, parameters) \
3218 (* GET_Vertex2d(disp)) parameters
3219 static inline _glptr_Vertex2d GET_Vertex2d(struct _glapi_table *disp) {
3220 return (_glptr_Vertex2d) (GET_by_offset(disp, _gloffset_Vertex2d));
3221 }
3222
3223 static inline void SET_Vertex2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
3224 SET_by_offset(disp, _gloffset_Vertex2d, fn);
3225 }
3226
3227 typedef void (GLAPIENTRYP _glptr_Vertex2dv)(const GLdouble *);
3228 #define CALL_Vertex2dv(disp, parameters) \
3229 (* GET_Vertex2dv(disp)) parameters
3230 static inline _glptr_Vertex2dv GET_Vertex2dv(struct _glapi_table *disp) {
3231 return (_glptr_Vertex2dv) (GET_by_offset(disp, _gloffset_Vertex2dv));
3232 }
3233
3234 static inline void SET_Vertex2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3235 SET_by_offset(disp, _gloffset_Vertex2dv, fn);
3236 }
3237
3238 typedef void (GLAPIENTRYP _glptr_Vertex2f)(GLfloat, GLfloat);
3239 #define CALL_Vertex2f(disp, parameters) \
3240 (* GET_Vertex2f(disp)) parameters
3241 static inline _glptr_Vertex2f GET_Vertex2f(struct _glapi_table *disp) {
3242 return (_glptr_Vertex2f) (GET_by_offset(disp, _gloffset_Vertex2f));
3243 }
3244
3245 static inline void SET_Vertex2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
3246 SET_by_offset(disp, _gloffset_Vertex2f, fn);
3247 }
3248
3249 typedef void (GLAPIENTRYP _glptr_Vertex2fv)(const GLfloat *);
3250 #define CALL_Vertex2fv(disp, parameters) \
3251 (* GET_Vertex2fv(disp)) parameters
3252 static inline _glptr_Vertex2fv GET_Vertex2fv(struct _glapi_table *disp) {
3253 return (_glptr_Vertex2fv) (GET_by_offset(disp, _gloffset_Vertex2fv));
3254 }
3255
3256 static inline void SET_Vertex2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3257 SET_by_offset(disp, _gloffset_Vertex2fv, fn);
3258 }
3259
3260 typedef void (GLAPIENTRYP _glptr_Vertex2i)(GLint, GLint);
3261 #define CALL_Vertex2i(disp, parameters) \
3262 (* GET_Vertex2i(disp)) parameters
3263 static inline _glptr_Vertex2i GET_Vertex2i(struct _glapi_table *disp) {
3264 return (_glptr_Vertex2i) (GET_by_offset(disp, _gloffset_Vertex2i));
3265 }
3266
3267 static inline void SET_Vertex2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
3268 SET_by_offset(disp, _gloffset_Vertex2i, fn);
3269 }
3270
3271 typedef void (GLAPIENTRYP _glptr_Vertex2iv)(const GLint *);
3272 #define CALL_Vertex2iv(disp, parameters) \
3273 (* GET_Vertex2iv(disp)) parameters
3274 static inline _glptr_Vertex2iv GET_Vertex2iv(struct _glapi_table *disp) {
3275 return (_glptr_Vertex2iv) (GET_by_offset(disp, _gloffset_Vertex2iv));
3276 }
3277
3278 static inline void SET_Vertex2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3279 SET_by_offset(disp, _gloffset_Vertex2iv, fn);
3280 }
3281
3282 typedef void (GLAPIENTRYP _glptr_Vertex2s)(GLshort, GLshort);
3283 #define CALL_Vertex2s(disp, parameters) \
3284 (* GET_Vertex2s(disp)) parameters
3285 static inline _glptr_Vertex2s GET_Vertex2s(struct _glapi_table *disp) {
3286 return (_glptr_Vertex2s) (GET_by_offset(disp, _gloffset_Vertex2s));
3287 }
3288
3289 static inline void SET_Vertex2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
3290 SET_by_offset(disp, _gloffset_Vertex2s, fn);
3291 }
3292
3293 typedef void (GLAPIENTRYP _glptr_Vertex2sv)(const GLshort *);
3294 #define CALL_Vertex2sv(disp, parameters) \
3295 (* GET_Vertex2sv(disp)) parameters
3296 static inline _glptr_Vertex2sv GET_Vertex2sv(struct _glapi_table *disp) {
3297 return (_glptr_Vertex2sv) (GET_by_offset(disp, _gloffset_Vertex2sv));
3298 }
3299
3300 static inline void SET_Vertex2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3301 SET_by_offset(disp, _gloffset_Vertex2sv, fn);
3302 }
3303
3304 typedef void (GLAPIENTRYP _glptr_Vertex3d)(GLdouble, GLdouble, GLdouble);
3305 #define CALL_Vertex3d(disp, parameters) \
3306 (* GET_Vertex3d(disp)) parameters
3307 static inline _glptr_Vertex3d GET_Vertex3d(struct _glapi_table *disp) {
3308 return (_glptr_Vertex3d) (GET_by_offset(disp, _gloffset_Vertex3d));
3309 }
3310
3311 static inline void SET_Vertex3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
3312 SET_by_offset(disp, _gloffset_Vertex3d, fn);
3313 }
3314
3315 typedef void (GLAPIENTRYP _glptr_Vertex3dv)(const GLdouble *);
3316 #define CALL_Vertex3dv(disp, parameters) \
3317 (* GET_Vertex3dv(disp)) parameters
3318 static inline _glptr_Vertex3dv GET_Vertex3dv(struct _glapi_table *disp) {
3319 return (_glptr_Vertex3dv) (GET_by_offset(disp, _gloffset_Vertex3dv));
3320 }
3321
3322 static inline void SET_Vertex3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3323 SET_by_offset(disp, _gloffset_Vertex3dv, fn);
3324 }
3325
3326 typedef void (GLAPIENTRYP _glptr_Vertex3f)(GLfloat, GLfloat, GLfloat);
3327 #define CALL_Vertex3f(disp, parameters) \
3328 (* GET_Vertex3f(disp)) parameters
3329 static inline _glptr_Vertex3f GET_Vertex3f(struct _glapi_table *disp) {
3330 return (_glptr_Vertex3f) (GET_by_offset(disp, _gloffset_Vertex3f));
3331 }
3332
3333 static inline void SET_Vertex3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
3334 SET_by_offset(disp, _gloffset_Vertex3f, fn);
3335 }
3336
3337 typedef void (GLAPIENTRYP _glptr_Vertex3fv)(const GLfloat *);
3338 #define CALL_Vertex3fv(disp, parameters) \
3339 (* GET_Vertex3fv(disp)) parameters
3340 static inline _glptr_Vertex3fv GET_Vertex3fv(struct _glapi_table *disp) {
3341 return (_glptr_Vertex3fv) (GET_by_offset(disp, _gloffset_Vertex3fv));
3342 }
3343
3344 static inline void SET_Vertex3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3345 SET_by_offset(disp, _gloffset_Vertex3fv, fn);
3346 }
3347
3348 typedef void (GLAPIENTRYP _glptr_Vertex3i)(GLint, GLint, GLint);
3349 #define CALL_Vertex3i(disp, parameters) \
3350 (* GET_Vertex3i(disp)) parameters
3351 static inline _glptr_Vertex3i GET_Vertex3i(struct _glapi_table *disp) {
3352 return (_glptr_Vertex3i) (GET_by_offset(disp, _gloffset_Vertex3i));
3353 }
3354
3355 static inline void SET_Vertex3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
3356 SET_by_offset(disp, _gloffset_Vertex3i, fn);
3357 }
3358
3359 typedef void (GLAPIENTRYP _glptr_Vertex3iv)(const GLint *);
3360 #define CALL_Vertex3iv(disp, parameters) \
3361 (* GET_Vertex3iv(disp)) parameters
3362 static inline _glptr_Vertex3iv GET_Vertex3iv(struct _glapi_table *disp) {
3363 return (_glptr_Vertex3iv) (GET_by_offset(disp, _gloffset_Vertex3iv));
3364 }
3365
3366 static inline void SET_Vertex3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3367 SET_by_offset(disp, _gloffset_Vertex3iv, fn);
3368 }
3369
3370 typedef void (GLAPIENTRYP _glptr_Vertex3s)(GLshort, GLshort, GLshort);
3371 #define CALL_Vertex3s(disp, parameters) \
3372 (* GET_Vertex3s(disp)) parameters
3373 static inline _glptr_Vertex3s GET_Vertex3s(struct _glapi_table *disp) {
3374 return (_glptr_Vertex3s) (GET_by_offset(disp, _gloffset_Vertex3s));
3375 }
3376
3377 static inline void SET_Vertex3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
3378 SET_by_offset(disp, _gloffset_Vertex3s, fn);
3379 }
3380
3381 typedef void (GLAPIENTRYP _glptr_Vertex3sv)(const GLshort *);
3382 #define CALL_Vertex3sv(disp, parameters) \
3383 (* GET_Vertex3sv(disp)) parameters
3384 static inline _glptr_Vertex3sv GET_Vertex3sv(struct _glapi_table *disp) {
3385 return (_glptr_Vertex3sv) (GET_by_offset(disp, _gloffset_Vertex3sv));
3386 }
3387
3388 static inline void SET_Vertex3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3389 SET_by_offset(disp, _gloffset_Vertex3sv, fn);
3390 }
3391
3392 typedef void (GLAPIENTRYP _glptr_Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble);
3393 #define CALL_Vertex4d(disp, parameters) \
3394 (* GET_Vertex4d(disp)) parameters
3395 static inline _glptr_Vertex4d GET_Vertex4d(struct _glapi_table *disp) {
3396 return (_glptr_Vertex4d) (GET_by_offset(disp, _gloffset_Vertex4d));
3397 }
3398
3399 static inline void SET_Vertex4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
3400 SET_by_offset(disp, _gloffset_Vertex4d, fn);
3401 }
3402
3403 typedef void (GLAPIENTRYP _glptr_Vertex4dv)(const GLdouble *);
3404 #define CALL_Vertex4dv(disp, parameters) \
3405 (* GET_Vertex4dv(disp)) parameters
3406 static inline _glptr_Vertex4dv GET_Vertex4dv(struct _glapi_table *disp) {
3407 return (_glptr_Vertex4dv) (GET_by_offset(disp, _gloffset_Vertex4dv));
3408 }
3409
3410 static inline void SET_Vertex4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3411 SET_by_offset(disp, _gloffset_Vertex4dv, fn);
3412 }
3413
3414 typedef void (GLAPIENTRYP _glptr_Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat);
3415 #define CALL_Vertex4f(disp, parameters) \
3416 (* GET_Vertex4f(disp)) parameters
3417 static inline _glptr_Vertex4f GET_Vertex4f(struct _glapi_table *disp) {
3418 return (_glptr_Vertex4f) (GET_by_offset(disp, _gloffset_Vertex4f));
3419 }
3420
3421 static inline void SET_Vertex4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3422 SET_by_offset(disp, _gloffset_Vertex4f, fn);
3423 }
3424
3425 typedef void (GLAPIENTRYP _glptr_Vertex4fv)(const GLfloat *);
3426 #define CALL_Vertex4fv(disp, parameters) \
3427 (* GET_Vertex4fv(disp)) parameters
3428 static inline _glptr_Vertex4fv GET_Vertex4fv(struct _glapi_table *disp) {
3429 return (_glptr_Vertex4fv) (GET_by_offset(disp, _gloffset_Vertex4fv));
3430 }
3431
3432 static inline void SET_Vertex4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3433 SET_by_offset(disp, _gloffset_Vertex4fv, fn);
3434 }
3435
3436 typedef void (GLAPIENTRYP _glptr_Vertex4i)(GLint, GLint, GLint, GLint);
3437 #define CALL_Vertex4i(disp, parameters) \
3438 (* GET_Vertex4i(disp)) parameters
3439 static inline _glptr_Vertex4i GET_Vertex4i(struct _glapi_table *disp) {
3440 return (_glptr_Vertex4i) (GET_by_offset(disp, _gloffset_Vertex4i));
3441 }
3442
3443 static inline void SET_Vertex4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
3444 SET_by_offset(disp, _gloffset_Vertex4i, fn);
3445 }
3446
3447 typedef void (GLAPIENTRYP _glptr_Vertex4iv)(const GLint *);
3448 #define CALL_Vertex4iv(disp, parameters) \
3449 (* GET_Vertex4iv(disp)) parameters
3450 static inline _glptr_Vertex4iv GET_Vertex4iv(struct _glapi_table *disp) {
3451 return (_glptr_Vertex4iv) (GET_by_offset(disp, _gloffset_Vertex4iv));
3452 }
3453
3454 static inline void SET_Vertex4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3455 SET_by_offset(disp, _gloffset_Vertex4iv, fn);
3456 }
3457
3458 typedef void (GLAPIENTRYP _glptr_Vertex4s)(GLshort, GLshort, GLshort, GLshort);
3459 #define CALL_Vertex4s(disp, parameters) \
3460 (* GET_Vertex4s(disp)) parameters
3461 static inline _glptr_Vertex4s GET_Vertex4s(struct _glapi_table *disp) {
3462 return (_glptr_Vertex4s) (GET_by_offset(disp, _gloffset_Vertex4s));
3463 }
3464
3465 static inline void SET_Vertex4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
3466 SET_by_offset(disp, _gloffset_Vertex4s, fn);
3467 }
3468
3469 typedef void (GLAPIENTRYP _glptr_Vertex4sv)(const GLshort *);
3470 #define CALL_Vertex4sv(disp, parameters) \
3471 (* GET_Vertex4sv(disp)) parameters
3472 static inline _glptr_Vertex4sv GET_Vertex4sv(struct _glapi_table *disp) {
3473 return (_glptr_Vertex4sv) (GET_by_offset(disp, _gloffset_Vertex4sv));
3474 }
3475
3476 static inline void SET_Vertex4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3477 SET_by_offset(disp, _gloffset_Vertex4sv, fn);
3478 }
3479
3480 typedef void (GLAPIENTRYP _glptr_ClipPlane)(GLenum, const GLdouble *);
3481 #define CALL_ClipPlane(disp, parameters) \
3482 (* GET_ClipPlane(disp)) parameters
3483 static inline _glptr_ClipPlane GET_ClipPlane(struct _glapi_table *disp) {
3484 return (_glptr_ClipPlane) (GET_by_offset(disp, _gloffset_ClipPlane));
3485 }
3486
3487 static inline void SET_ClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
3488 SET_by_offset(disp, _gloffset_ClipPlane, fn);
3489 }
3490
3491 typedef void (GLAPIENTRYP _glptr_ColorMaterial)(GLenum, GLenum);
3492 #define CALL_ColorMaterial(disp, parameters) \
3493 (* GET_ColorMaterial(disp)) parameters
3494 static inline _glptr_ColorMaterial GET_ColorMaterial(struct _glapi_table *disp) {
3495 return (_glptr_ColorMaterial) (GET_by_offset(disp, _gloffset_ColorMaterial));
3496 }
3497
3498 static inline void SET_ColorMaterial(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3499 SET_by_offset(disp, _gloffset_ColorMaterial, fn);
3500 }
3501
3502 typedef void (GLAPIENTRYP _glptr_CullFace)(GLenum);
3503 #define CALL_CullFace(disp, parameters) \
3504 (* GET_CullFace(disp)) parameters
3505 static inline _glptr_CullFace GET_CullFace(struct _glapi_table *disp) {
3506 return (_glptr_CullFace) (GET_by_offset(disp, _gloffset_CullFace));
3507 }
3508
3509 static inline void SET_CullFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3510 SET_by_offset(disp, _gloffset_CullFace, fn);
3511 }
3512
3513 typedef void (GLAPIENTRYP _glptr_Fogf)(GLenum, GLfloat);
3514 #define CALL_Fogf(disp, parameters) \
3515 (* GET_Fogf(disp)) parameters
3516 static inline _glptr_Fogf GET_Fogf(struct _glapi_table *disp) {
3517 return (_glptr_Fogf) (GET_by_offset(disp, _gloffset_Fogf));
3518 }
3519
3520 static inline void SET_Fogf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3521 SET_by_offset(disp, _gloffset_Fogf, fn);
3522 }
3523
3524 typedef void (GLAPIENTRYP _glptr_Fogfv)(GLenum, const GLfloat *);
3525 #define CALL_Fogfv(disp, parameters) \
3526 (* GET_Fogfv(disp)) parameters
3527 static inline _glptr_Fogfv GET_Fogfv(struct _glapi_table *disp) {
3528 return (_glptr_Fogfv) (GET_by_offset(disp, _gloffset_Fogfv));
3529 }
3530
3531 static inline void SET_Fogfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
3532 SET_by_offset(disp, _gloffset_Fogfv, fn);
3533 }
3534
3535 typedef void (GLAPIENTRYP _glptr_Fogi)(GLenum, GLint);
3536 #define CALL_Fogi(disp, parameters) \
3537 (* GET_Fogi(disp)) parameters
3538 static inline _glptr_Fogi GET_Fogi(struct _glapi_table *disp) {
3539 return (_glptr_Fogi) (GET_by_offset(disp, _gloffset_Fogi));
3540 }
3541
3542 static inline void SET_Fogi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
3543 SET_by_offset(disp, _gloffset_Fogi, fn);
3544 }
3545
3546 typedef void (GLAPIENTRYP _glptr_Fogiv)(GLenum, const GLint *);
3547 #define CALL_Fogiv(disp, parameters) \
3548 (* GET_Fogiv(disp)) parameters
3549 static inline _glptr_Fogiv GET_Fogiv(struct _glapi_table *disp) {
3550 return (_glptr_Fogiv) (GET_by_offset(disp, _gloffset_Fogiv));
3551 }
3552
3553 static inline void SET_Fogiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
3554 SET_by_offset(disp, _gloffset_Fogiv, fn);
3555 }
3556
3557 typedef void (GLAPIENTRYP _glptr_FrontFace)(GLenum);
3558 #define CALL_FrontFace(disp, parameters) \
3559 (* GET_FrontFace(disp)) parameters
3560 static inline _glptr_FrontFace GET_FrontFace(struct _glapi_table *disp) {
3561 return (_glptr_FrontFace) (GET_by_offset(disp, _gloffset_FrontFace));
3562 }
3563
3564 static inline void SET_FrontFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3565 SET_by_offset(disp, _gloffset_FrontFace, fn);
3566 }
3567
3568 typedef void (GLAPIENTRYP _glptr_Hint)(GLenum, GLenum);
3569 #define CALL_Hint(disp, parameters) \
3570 (* GET_Hint(disp)) parameters
3571 static inline _glptr_Hint GET_Hint(struct _glapi_table *disp) {
3572 return (_glptr_Hint) (GET_by_offset(disp, _gloffset_Hint));
3573 }
3574
3575 static inline void SET_Hint(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3576 SET_by_offset(disp, _gloffset_Hint, fn);
3577 }
3578
3579 typedef void (GLAPIENTRYP _glptr_Lightf)(GLenum, GLenum, GLfloat);
3580 #define CALL_Lightf(disp, parameters) \
3581 (* GET_Lightf(disp)) parameters
3582 static inline _glptr_Lightf GET_Lightf(struct _glapi_table *disp) {
3583 return (_glptr_Lightf) (GET_by_offset(disp, _gloffset_Lightf));
3584 }
3585
3586 static inline void SET_Lightf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3587 SET_by_offset(disp, _gloffset_Lightf, fn);
3588 }
3589
3590 typedef void (GLAPIENTRYP _glptr_Lightfv)(GLenum, GLenum, const GLfloat *);
3591 #define CALL_Lightfv(disp, parameters) \
3592 (* GET_Lightfv(disp)) parameters
3593 static inline _glptr_Lightfv GET_Lightfv(struct _glapi_table *disp) {
3594 return (_glptr_Lightfv) (GET_by_offset(disp, _gloffset_Lightfv));
3595 }
3596
3597 static inline void SET_Lightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3598 SET_by_offset(disp, _gloffset_Lightfv, fn);
3599 }
3600
3601 typedef void (GLAPIENTRYP _glptr_Lighti)(GLenum, GLenum, GLint);
3602 #define CALL_Lighti(disp, parameters) \
3603 (* GET_Lighti(disp)) parameters
3604 static inline _glptr_Lighti GET_Lighti(struct _glapi_table *disp) {
3605 return (_glptr_Lighti) (GET_by_offset(disp, _gloffset_Lighti));
3606 }
3607
3608 static inline void SET_Lighti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3609 SET_by_offset(disp, _gloffset_Lighti, fn);
3610 }
3611
3612 typedef void (GLAPIENTRYP _glptr_Lightiv)(GLenum, GLenum, const GLint *);
3613 #define CALL_Lightiv(disp, parameters) \
3614 (* GET_Lightiv(disp)) parameters
3615 static inline _glptr_Lightiv GET_Lightiv(struct _glapi_table *disp) {
3616 return (_glptr_Lightiv) (GET_by_offset(disp, _gloffset_Lightiv));
3617 }
3618
3619 static inline void SET_Lightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3620 SET_by_offset(disp, _gloffset_Lightiv, fn);
3621 }
3622
3623 typedef void (GLAPIENTRYP _glptr_LightModelf)(GLenum, GLfloat);
3624 #define CALL_LightModelf(disp, parameters) \
3625 (* GET_LightModelf(disp)) parameters
3626 static inline _glptr_LightModelf GET_LightModelf(struct _glapi_table *disp) {
3627 return (_glptr_LightModelf) (GET_by_offset(disp, _gloffset_LightModelf));
3628 }
3629
3630 static inline void SET_LightModelf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3631 SET_by_offset(disp, _gloffset_LightModelf, fn);
3632 }
3633
3634 typedef void (GLAPIENTRYP _glptr_LightModelfv)(GLenum, const GLfloat *);
3635 #define CALL_LightModelfv(disp, parameters) \
3636 (* GET_LightModelfv(disp)) parameters
3637 static inline _glptr_LightModelfv GET_LightModelfv(struct _glapi_table *disp) {
3638 return (_glptr_LightModelfv) (GET_by_offset(disp, _gloffset_LightModelfv));
3639 }
3640
3641 static inline void SET_LightModelfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
3642 SET_by_offset(disp, _gloffset_LightModelfv, fn);
3643 }
3644
3645 typedef void (GLAPIENTRYP _glptr_LightModeli)(GLenum, GLint);
3646 #define CALL_LightModeli(disp, parameters) \
3647 (* GET_LightModeli(disp)) parameters
3648 static inline _glptr_LightModeli GET_LightModeli(struct _glapi_table *disp) {
3649 return (_glptr_LightModeli) (GET_by_offset(disp, _gloffset_LightModeli));
3650 }
3651
3652 static inline void SET_LightModeli(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
3653 SET_by_offset(disp, _gloffset_LightModeli, fn);
3654 }
3655
3656 typedef void (GLAPIENTRYP _glptr_LightModeliv)(GLenum, const GLint *);
3657 #define CALL_LightModeliv(disp, parameters) \
3658 (* GET_LightModeliv(disp)) parameters
3659 static inline _glptr_LightModeliv GET_LightModeliv(struct _glapi_table *disp) {
3660 return (_glptr_LightModeliv) (GET_by_offset(disp, _gloffset_LightModeliv));
3661 }
3662
3663 static inline void SET_LightModeliv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
3664 SET_by_offset(disp, _gloffset_LightModeliv, fn);
3665 }
3666
3667 typedef void (GLAPIENTRYP _glptr_LineStipple)(GLint, GLushort);
3668 #define CALL_LineStipple(disp, parameters) \
3669 (* GET_LineStipple(disp)) parameters
3670 static inline _glptr_LineStipple GET_LineStipple(struct _glapi_table *disp) {
3671 return (_glptr_LineStipple) (GET_by_offset(disp, _gloffset_LineStipple));
3672 }
3673
3674 static inline void SET_LineStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLushort)) {
3675 SET_by_offset(disp, _gloffset_LineStipple, fn);
3676 }
3677
3678 typedef void (GLAPIENTRYP _glptr_LineWidth)(GLfloat);
3679 #define CALL_LineWidth(disp, parameters) \
3680 (* GET_LineWidth(disp)) parameters
3681 static inline _glptr_LineWidth GET_LineWidth(struct _glapi_table *disp) {
3682 return (_glptr_LineWidth) (GET_by_offset(disp, _gloffset_LineWidth));
3683 }
3684
3685 static inline void SET_LineWidth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3686 SET_by_offset(disp, _gloffset_LineWidth, fn);
3687 }
3688
3689 typedef void (GLAPIENTRYP _glptr_Materialf)(GLenum, GLenum, GLfloat);
3690 #define CALL_Materialf(disp, parameters) \
3691 (* GET_Materialf(disp)) parameters
3692 static inline _glptr_Materialf GET_Materialf(struct _glapi_table *disp) {
3693 return (_glptr_Materialf) (GET_by_offset(disp, _gloffset_Materialf));
3694 }
3695
3696 static inline void SET_Materialf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3697 SET_by_offset(disp, _gloffset_Materialf, fn);
3698 }
3699
3700 typedef void (GLAPIENTRYP _glptr_Materialfv)(GLenum, GLenum, const GLfloat *);
3701 #define CALL_Materialfv(disp, parameters) \
3702 (* GET_Materialfv(disp)) parameters
3703 static inline _glptr_Materialfv GET_Materialfv(struct _glapi_table *disp) {
3704 return (_glptr_Materialfv) (GET_by_offset(disp, _gloffset_Materialfv));
3705 }
3706
3707 static inline void SET_Materialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3708 SET_by_offset(disp, _gloffset_Materialfv, fn);
3709 }
3710
3711 typedef void (GLAPIENTRYP _glptr_Materiali)(GLenum, GLenum, GLint);
3712 #define CALL_Materiali(disp, parameters) \
3713 (* GET_Materiali(disp)) parameters
3714 static inline _glptr_Materiali GET_Materiali(struct _glapi_table *disp) {
3715 return (_glptr_Materiali) (GET_by_offset(disp, _gloffset_Materiali));
3716 }
3717
3718 static inline void SET_Materiali(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3719 SET_by_offset(disp, _gloffset_Materiali, fn);
3720 }
3721
3722 typedef void (GLAPIENTRYP _glptr_Materialiv)(GLenum, GLenum, const GLint *);
3723 #define CALL_Materialiv(disp, parameters) \
3724 (* GET_Materialiv(disp)) parameters
3725 static inline _glptr_Materialiv GET_Materialiv(struct _glapi_table *disp) {
3726 return (_glptr_Materialiv) (GET_by_offset(disp, _gloffset_Materialiv));
3727 }
3728
3729 static inline void SET_Materialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3730 SET_by_offset(disp, _gloffset_Materialiv, fn);
3731 }
3732
3733 typedef void (GLAPIENTRYP _glptr_PointSize)(GLfloat);
3734 #define CALL_PointSize(disp, parameters) \
3735 (* GET_PointSize(disp)) parameters
3736 static inline _glptr_PointSize GET_PointSize(struct _glapi_table *disp) {
3737 return (_glptr_PointSize) (GET_by_offset(disp, _gloffset_PointSize));
3738 }
3739
3740 static inline void SET_PointSize(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3741 SET_by_offset(disp, _gloffset_PointSize, fn);
3742 }
3743
3744 typedef void (GLAPIENTRYP _glptr_PolygonMode)(GLenum, GLenum);
3745 #define CALL_PolygonMode(disp, parameters) \
3746 (* GET_PolygonMode(disp)) parameters
3747 static inline _glptr_PolygonMode GET_PolygonMode(struct _glapi_table *disp) {
3748 return (_glptr_PolygonMode) (GET_by_offset(disp, _gloffset_PolygonMode));
3749 }
3750
3751 static inline void SET_PolygonMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3752 SET_by_offset(disp, _gloffset_PolygonMode, fn);
3753 }
3754
3755 typedef void (GLAPIENTRYP _glptr_PolygonStipple)(const GLubyte *);
3756 #define CALL_PolygonStipple(disp, parameters) \
3757 (* GET_PolygonStipple(disp)) parameters
3758 static inline _glptr_PolygonStipple GET_PolygonStipple(struct _glapi_table *disp) {
3759 return (_glptr_PolygonStipple) (GET_by_offset(disp, _gloffset_PolygonStipple));
3760 }
3761
3762 static inline void SET_PolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
3763 SET_by_offset(disp, _gloffset_PolygonStipple, fn);
3764 }
3765
3766 typedef void (GLAPIENTRYP _glptr_Scissor)(GLint, GLint, GLsizei, GLsizei);
3767 #define CALL_Scissor(disp, parameters) \
3768 (* GET_Scissor(disp)) parameters
3769 static inline _glptr_Scissor GET_Scissor(struct _glapi_table *disp) {
3770 return (_glptr_Scissor) (GET_by_offset(disp, _gloffset_Scissor));
3771 }
3772
3773 static inline void SET_Scissor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
3774 SET_by_offset(disp, _gloffset_Scissor, fn);
3775 }
3776
3777 typedef void (GLAPIENTRYP _glptr_ShadeModel)(GLenum);
3778 #define CALL_ShadeModel(disp, parameters) \
3779 (* GET_ShadeModel(disp)) parameters
3780 static inline _glptr_ShadeModel GET_ShadeModel(struct _glapi_table *disp) {
3781 return (_glptr_ShadeModel) (GET_by_offset(disp, _gloffset_ShadeModel));
3782 }
3783
3784 static inline void SET_ShadeModel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3785 SET_by_offset(disp, _gloffset_ShadeModel, fn);
3786 }
3787
3788 typedef void (GLAPIENTRYP _glptr_TexParameterf)(GLenum, GLenum, GLfloat);
3789 #define CALL_TexParameterf(disp, parameters) \
3790 (* GET_TexParameterf(disp)) parameters
3791 static inline _glptr_TexParameterf GET_TexParameterf(struct _glapi_table *disp) {
3792 return (_glptr_TexParameterf) (GET_by_offset(disp, _gloffset_TexParameterf));
3793 }
3794
3795 static inline void SET_TexParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3796 SET_by_offset(disp, _gloffset_TexParameterf, fn);
3797 }
3798
3799 typedef void (GLAPIENTRYP _glptr_TexParameterfv)(GLenum, GLenum, const GLfloat *);
3800 #define CALL_TexParameterfv(disp, parameters) \
3801 (* GET_TexParameterfv(disp)) parameters
3802 static inline _glptr_TexParameterfv GET_TexParameterfv(struct _glapi_table *disp) {
3803 return (_glptr_TexParameterfv) (GET_by_offset(disp, _gloffset_TexParameterfv));
3804 }
3805
3806 static inline void SET_TexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3807 SET_by_offset(disp, _gloffset_TexParameterfv, fn);
3808 }
3809
3810 typedef void (GLAPIENTRYP _glptr_TexParameteri)(GLenum, GLenum, GLint);
3811 #define CALL_TexParameteri(disp, parameters) \
3812 (* GET_TexParameteri(disp)) parameters
3813 static inline _glptr_TexParameteri GET_TexParameteri(struct _glapi_table *disp) {
3814 return (_glptr_TexParameteri) (GET_by_offset(disp, _gloffset_TexParameteri));
3815 }
3816
3817 static inline void SET_TexParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3818 SET_by_offset(disp, _gloffset_TexParameteri, fn);
3819 }
3820
3821 typedef void (GLAPIENTRYP _glptr_TexParameteriv)(GLenum, GLenum, const GLint *);
3822 #define CALL_TexParameteriv(disp, parameters) \
3823 (* GET_TexParameteriv(disp)) parameters
3824 static inline _glptr_TexParameteriv GET_TexParameteriv(struct _glapi_table *disp) {
3825 return (_glptr_TexParameteriv) (GET_by_offset(disp, _gloffset_TexParameteriv));
3826 }
3827
3828 static inline void SET_TexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3829 SET_by_offset(disp, _gloffset_TexParameteriv, fn);
3830 }
3831
3832 typedef void (GLAPIENTRYP _glptr_TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
3833 #define CALL_TexImage1D(disp, parameters) \
3834 (* GET_TexImage1D(disp)) parameters
3835 static inline _glptr_TexImage1D GET_TexImage1D(struct _glapi_table *disp) {
3836 return (_glptr_TexImage1D) (GET_by_offset(disp, _gloffset_TexImage1D));
3837 }
3838
3839 static inline void SET_TexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
3840 SET_by_offset(disp, _gloffset_TexImage1D, fn);
3841 }
3842
3843 typedef void (GLAPIENTRYP _glptr_TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
3844 #define CALL_TexImage2D(disp, parameters) \
3845 (* GET_TexImage2D(disp)) parameters
3846 static inline _glptr_TexImage2D GET_TexImage2D(struct _glapi_table *disp) {
3847 return (_glptr_TexImage2D) (GET_by_offset(disp, _gloffset_TexImage2D));
3848 }
3849
3850 static inline void SET_TexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
3851 SET_by_offset(disp, _gloffset_TexImage2D, fn);
3852 }
3853
3854 typedef void (GLAPIENTRYP _glptr_TexEnvf)(GLenum, GLenum, GLfloat);
3855 #define CALL_TexEnvf(disp, parameters) \
3856 (* GET_TexEnvf(disp)) parameters
3857 static inline _glptr_TexEnvf GET_TexEnvf(struct _glapi_table *disp) {
3858 return (_glptr_TexEnvf) (GET_by_offset(disp, _gloffset_TexEnvf));
3859 }
3860
3861 static inline void SET_TexEnvf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3862 SET_by_offset(disp, _gloffset_TexEnvf, fn);
3863 }
3864
3865 typedef void (GLAPIENTRYP _glptr_TexEnvfv)(GLenum, GLenum, const GLfloat *);
3866 #define CALL_TexEnvfv(disp, parameters) \
3867 (* GET_TexEnvfv(disp)) parameters
3868 static inline _glptr_TexEnvfv GET_TexEnvfv(struct _glapi_table *disp) {
3869 return (_glptr_TexEnvfv) (GET_by_offset(disp, _gloffset_TexEnvfv));
3870 }
3871
3872 static inline void SET_TexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3873 SET_by_offset(disp, _gloffset_TexEnvfv, fn);
3874 }
3875
3876 typedef void (GLAPIENTRYP _glptr_TexEnvi)(GLenum, GLenum, GLint);
3877 #define CALL_TexEnvi(disp, parameters) \
3878 (* GET_TexEnvi(disp)) parameters
3879 static inline _glptr_TexEnvi GET_TexEnvi(struct _glapi_table *disp) {
3880 return (_glptr_TexEnvi) (GET_by_offset(disp, _gloffset_TexEnvi));
3881 }
3882
3883 static inline void SET_TexEnvi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3884 SET_by_offset(disp, _gloffset_TexEnvi, fn);
3885 }
3886
3887 typedef void (GLAPIENTRYP _glptr_TexEnviv)(GLenum, GLenum, const GLint *);
3888 #define CALL_TexEnviv(disp, parameters) \
3889 (* GET_TexEnviv(disp)) parameters
3890 static inline _glptr_TexEnviv GET_TexEnviv(struct _glapi_table *disp) {
3891 return (_glptr_TexEnviv) (GET_by_offset(disp, _gloffset_TexEnviv));
3892 }
3893
3894 static inline void SET_TexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3895 SET_by_offset(disp, _gloffset_TexEnviv, fn);
3896 }
3897
3898 typedef void (GLAPIENTRYP _glptr_TexGend)(GLenum, GLenum, GLdouble);
3899 #define CALL_TexGend(disp, parameters) \
3900 (* GET_TexGend(disp)) parameters
3901 static inline _glptr_TexGend GET_TexGend(struct _glapi_table *disp) {
3902 return (_glptr_TexGend) (GET_by_offset(disp, _gloffset_TexGend));
3903 }
3904
3905 static inline void SET_TexGend(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble)) {
3906 SET_by_offset(disp, _gloffset_TexGend, fn);
3907 }
3908
3909 typedef void (GLAPIENTRYP _glptr_TexGendv)(GLenum, GLenum, const GLdouble *);
3910 #define CALL_TexGendv(disp, parameters) \
3911 (* GET_TexGendv(disp)) parameters
3912 static inline _glptr_TexGendv GET_TexGendv(struct _glapi_table *disp) {
3913 return (_glptr_TexGendv) (GET_by_offset(disp, _gloffset_TexGendv));
3914 }
3915
3916 static inline void SET_TexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLdouble *)) {
3917 SET_by_offset(disp, _gloffset_TexGendv, fn);
3918 }
3919
3920 typedef void (GLAPIENTRYP _glptr_TexGenf)(GLenum, GLenum, GLfloat);
3921 #define CALL_TexGenf(disp, parameters) \
3922 (* GET_TexGenf(disp)) parameters
3923 static inline _glptr_TexGenf GET_TexGenf(struct _glapi_table *disp) {
3924 return (_glptr_TexGenf) (GET_by_offset(disp, _gloffset_TexGenf));
3925 }
3926
3927 static inline void SET_TexGenf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3928 SET_by_offset(disp, _gloffset_TexGenf, fn);
3929 }
3930
3931 typedef void (GLAPIENTRYP _glptr_TexGenfv)(GLenum, GLenum, const GLfloat *);
3932 #define CALL_TexGenfv(disp, parameters) \
3933 (* GET_TexGenfv(disp)) parameters
3934 static inline _glptr_TexGenfv GET_TexGenfv(struct _glapi_table *disp) {
3935 return (_glptr_TexGenfv) (GET_by_offset(disp, _gloffset_TexGenfv));
3936 }
3937
3938 static inline void SET_TexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3939 SET_by_offset(disp, _gloffset_TexGenfv, fn);
3940 }
3941
3942 typedef void (GLAPIENTRYP _glptr_TexGeni)(GLenum, GLenum, GLint);
3943 #define CALL_TexGeni(disp, parameters) \
3944 (* GET_TexGeni(disp)) parameters
3945 static inline _glptr_TexGeni GET_TexGeni(struct _glapi_table *disp) {
3946 return (_glptr_TexGeni) (GET_by_offset(disp, _gloffset_TexGeni));
3947 }
3948
3949 static inline void SET_TexGeni(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3950 SET_by_offset(disp, _gloffset_TexGeni, fn);
3951 }
3952
3953 typedef void (GLAPIENTRYP _glptr_TexGeniv)(GLenum, GLenum, const GLint *);
3954 #define CALL_TexGeniv(disp, parameters) \
3955 (* GET_TexGeniv(disp)) parameters
3956 static inline _glptr_TexGeniv GET_TexGeniv(struct _glapi_table *disp) {
3957 return (_glptr_TexGeniv) (GET_by_offset(disp, _gloffset_TexGeniv));
3958 }
3959
3960 static inline void SET_TexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3961 SET_by_offset(disp, _gloffset_TexGeniv, fn);
3962 }
3963
3964 typedef void (GLAPIENTRYP _glptr_FeedbackBuffer)(GLsizei, GLenum, GLfloat *);
3965 #define CALL_FeedbackBuffer(disp, parameters) \
3966 (* GET_FeedbackBuffer(disp)) parameters
3967 static inline _glptr_FeedbackBuffer GET_FeedbackBuffer(struct _glapi_table *disp) {
3968 return (_glptr_FeedbackBuffer) (GET_by_offset(disp, _gloffset_FeedbackBuffer));
3969 }
3970
3971 static inline void SET_FeedbackBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, GLfloat *)) {
3972 SET_by_offset(disp, _gloffset_FeedbackBuffer, fn);
3973 }
3974
3975 typedef void (GLAPIENTRYP _glptr_SelectBuffer)(GLsizei, GLuint *);
3976 #define CALL_SelectBuffer(disp, parameters) \
3977 (* GET_SelectBuffer(disp)) parameters
3978 static inline _glptr_SelectBuffer GET_SelectBuffer(struct _glapi_table *disp) {
3979 return (_glptr_SelectBuffer) (GET_by_offset(disp, _gloffset_SelectBuffer));
3980 }
3981
3982 static inline void SET_SelectBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
3983 SET_by_offset(disp, _gloffset_SelectBuffer, fn);
3984 }
3985
3986 typedef GLint (GLAPIENTRYP _glptr_RenderMode)(GLenum);
3987 #define CALL_RenderMode(disp, parameters) \
3988 (* GET_RenderMode(disp)) parameters
3989 static inline _glptr_RenderMode GET_RenderMode(struct _glapi_table *disp) {
3990 return (_glptr_RenderMode) (GET_by_offset(disp, _gloffset_RenderMode));
3991 }
3992
3993 static inline void SET_RenderMode(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLenum)) {
3994 SET_by_offset(disp, _gloffset_RenderMode, fn);
3995 }
3996
3997 typedef void (GLAPIENTRYP _glptr_InitNames)(void);
3998 #define CALL_InitNames(disp, parameters) \
3999 (* GET_InitNames(disp)) parameters
4000 static inline _glptr_InitNames GET_InitNames(struct _glapi_table *disp) {
4001 return (_glptr_InitNames) (GET_by_offset(disp, _gloffset_InitNames));
4002 }
4003
4004 static inline void SET_InitNames(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4005 SET_by_offset(disp, _gloffset_InitNames, fn);
4006 }
4007
4008 typedef void (GLAPIENTRYP _glptr_LoadName)(GLuint);
4009 #define CALL_LoadName(disp, parameters) \
4010 (* GET_LoadName(disp)) parameters
4011 static inline _glptr_LoadName GET_LoadName(struct _glapi_table *disp) {
4012 return (_glptr_LoadName) (GET_by_offset(disp, _gloffset_LoadName));
4013 }
4014
4015 static inline void SET_LoadName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4016 SET_by_offset(disp, _gloffset_LoadName, fn);
4017 }
4018
4019 typedef void (GLAPIENTRYP _glptr_PassThrough)(GLfloat);
4020 #define CALL_PassThrough(disp, parameters) \
4021 (* GET_PassThrough(disp)) parameters
4022 static inline _glptr_PassThrough GET_PassThrough(struct _glapi_table *disp) {
4023 return (_glptr_PassThrough) (GET_by_offset(disp, _gloffset_PassThrough));
4024 }
4025
4026 static inline void SET_PassThrough(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4027 SET_by_offset(disp, _gloffset_PassThrough, fn);
4028 }
4029
4030 typedef void (GLAPIENTRYP _glptr_PopName)(void);
4031 #define CALL_PopName(disp, parameters) \
4032 (* GET_PopName(disp)) parameters
4033 static inline _glptr_PopName GET_PopName(struct _glapi_table *disp) {
4034 return (_glptr_PopName) (GET_by_offset(disp, _gloffset_PopName));
4035 }
4036
4037 static inline void SET_PopName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4038 SET_by_offset(disp, _gloffset_PopName, fn);
4039 }
4040
4041 typedef void (GLAPIENTRYP _glptr_PushName)(GLuint);
4042 #define CALL_PushName(disp, parameters) \
4043 (* GET_PushName(disp)) parameters
4044 static inline _glptr_PushName GET_PushName(struct _glapi_table *disp) {
4045 return (_glptr_PushName) (GET_by_offset(disp, _gloffset_PushName));
4046 }
4047
4048 static inline void SET_PushName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4049 SET_by_offset(disp, _gloffset_PushName, fn);
4050 }
4051
4052 typedef void (GLAPIENTRYP _glptr_DrawBuffer)(GLenum);
4053 #define CALL_DrawBuffer(disp, parameters) \
4054 (* GET_DrawBuffer(disp)) parameters
4055 static inline _glptr_DrawBuffer GET_DrawBuffer(struct _glapi_table *disp) {
4056 return (_glptr_DrawBuffer) (GET_by_offset(disp, _gloffset_DrawBuffer));
4057 }
4058
4059 static inline void SET_DrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4060 SET_by_offset(disp, _gloffset_DrawBuffer, fn);
4061 }
4062
4063 typedef void (GLAPIENTRYP _glptr_Clear)(GLbitfield);
4064 #define CALL_Clear(disp, parameters) \
4065 (* GET_Clear(disp)) parameters
4066 static inline _glptr_Clear GET_Clear(struct _glapi_table *disp) {
4067 return (_glptr_Clear) (GET_by_offset(disp, _gloffset_Clear));
4068 }
4069
4070 static inline void SET_Clear(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
4071 SET_by_offset(disp, _gloffset_Clear, fn);
4072 }
4073
4074 typedef void (GLAPIENTRYP _glptr_ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat);
4075 #define CALL_ClearAccum(disp, parameters) \
4076 (* GET_ClearAccum(disp)) parameters
4077 static inline _glptr_ClearAccum GET_ClearAccum(struct _glapi_table *disp) {
4078 return (_glptr_ClearAccum) (GET_by_offset(disp, _gloffset_ClearAccum));
4079 }
4080
4081 static inline void SET_ClearAccum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
4082 SET_by_offset(disp, _gloffset_ClearAccum, fn);
4083 }
4084
4085 typedef void (GLAPIENTRYP _glptr_ClearIndex)(GLfloat);
4086 #define CALL_ClearIndex(disp, parameters) \
4087 (* GET_ClearIndex(disp)) parameters
4088 static inline _glptr_ClearIndex GET_ClearIndex(struct _glapi_table *disp) {
4089 return (_glptr_ClearIndex) (GET_by_offset(disp, _gloffset_ClearIndex));
4090 }
4091
4092 static inline void SET_ClearIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4093 SET_by_offset(disp, _gloffset_ClearIndex, fn);
4094 }
4095
4096 typedef void (GLAPIENTRYP _glptr_ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
4097 #define CALL_ClearColor(disp, parameters) \
4098 (* GET_ClearColor(disp)) parameters
4099 static inline _glptr_ClearColor GET_ClearColor(struct _glapi_table *disp) {
4100 return (_glptr_ClearColor) (GET_by_offset(disp, _gloffset_ClearColor));
4101 }
4102
4103 static inline void SET_ClearColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
4104 SET_by_offset(disp, _gloffset_ClearColor, fn);
4105 }
4106
4107 typedef void (GLAPIENTRYP _glptr_ClearStencil)(GLint);
4108 #define CALL_ClearStencil(disp, parameters) \
4109 (* GET_ClearStencil(disp)) parameters
4110 static inline _glptr_ClearStencil GET_ClearStencil(struct _glapi_table *disp) {
4111 return (_glptr_ClearStencil) (GET_by_offset(disp, _gloffset_ClearStencil));
4112 }
4113
4114 static inline void SET_ClearStencil(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
4115 SET_by_offset(disp, _gloffset_ClearStencil, fn);
4116 }
4117
4118 typedef void (GLAPIENTRYP _glptr_ClearDepth)(GLclampd);
4119 #define CALL_ClearDepth(disp, parameters) \
4120 (* GET_ClearDepth(disp)) parameters
4121 static inline _glptr_ClearDepth GET_ClearDepth(struct _glapi_table *disp) {
4122 return (_glptr_ClearDepth) (GET_by_offset(disp, _gloffset_ClearDepth));
4123 }
4124
4125 static inline void SET_ClearDepth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd)) {
4126 SET_by_offset(disp, _gloffset_ClearDepth, fn);
4127 }
4128
4129 typedef void (GLAPIENTRYP _glptr_StencilMask)(GLuint);
4130 #define CALL_StencilMask(disp, parameters) \
4131 (* GET_StencilMask(disp)) parameters
4132 static inline _glptr_StencilMask GET_StencilMask(struct _glapi_table *disp) {
4133 return (_glptr_StencilMask) (GET_by_offset(disp, _gloffset_StencilMask));
4134 }
4135
4136 static inline void SET_StencilMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4137 SET_by_offset(disp, _gloffset_StencilMask, fn);
4138 }
4139
4140 typedef void (GLAPIENTRYP _glptr_ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean);
4141 #define CALL_ColorMask(disp, parameters) \
4142 (* GET_ColorMask(disp)) parameters
4143 static inline _glptr_ColorMask GET_ColorMask(struct _glapi_table *disp) {
4144 return (_glptr_ColorMask) (GET_by_offset(disp, _gloffset_ColorMask));
4145 }
4146
4147 static inline void SET_ColorMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean, GLboolean, GLboolean, GLboolean)) {
4148 SET_by_offset(disp, _gloffset_ColorMask, fn);
4149 }
4150
4151 typedef void (GLAPIENTRYP _glptr_DepthMask)(GLboolean);
4152 #define CALL_DepthMask(disp, parameters) \
4153 (* GET_DepthMask(disp)) parameters
4154 static inline _glptr_DepthMask GET_DepthMask(struct _glapi_table *disp) {
4155 return (_glptr_DepthMask) (GET_by_offset(disp, _gloffset_DepthMask));
4156 }
4157
4158 static inline void SET_DepthMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
4159 SET_by_offset(disp, _gloffset_DepthMask, fn);
4160 }
4161
4162 typedef void (GLAPIENTRYP _glptr_IndexMask)(GLuint);
4163 #define CALL_IndexMask(disp, parameters) \
4164 (* GET_IndexMask(disp)) parameters
4165 static inline _glptr_IndexMask GET_IndexMask(struct _glapi_table *disp) {
4166 return (_glptr_IndexMask) (GET_by_offset(disp, _gloffset_IndexMask));
4167 }
4168
4169 static inline void SET_IndexMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4170 SET_by_offset(disp, _gloffset_IndexMask, fn);
4171 }
4172
4173 typedef void (GLAPIENTRYP _glptr_Accum)(GLenum, GLfloat);
4174 #define CALL_Accum(disp, parameters) \
4175 (* GET_Accum(disp)) parameters
4176 static inline _glptr_Accum GET_Accum(struct _glapi_table *disp) {
4177 return (_glptr_Accum) (GET_by_offset(disp, _gloffset_Accum));
4178 }
4179
4180 static inline void SET_Accum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
4181 SET_by_offset(disp, _gloffset_Accum, fn);
4182 }
4183
4184 typedef void (GLAPIENTRYP _glptr_Disable)(GLenum);
4185 #define CALL_Disable(disp, parameters) \
4186 (* GET_Disable(disp)) parameters
4187 static inline _glptr_Disable GET_Disable(struct _glapi_table *disp) {
4188 return (_glptr_Disable) (GET_by_offset(disp, _gloffset_Disable));
4189 }
4190
4191 static inline void SET_Disable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4192 SET_by_offset(disp, _gloffset_Disable, fn);
4193 }
4194
4195 typedef void (GLAPIENTRYP _glptr_Enable)(GLenum);
4196 #define CALL_Enable(disp, parameters) \
4197 (* GET_Enable(disp)) parameters
4198 static inline _glptr_Enable GET_Enable(struct _glapi_table *disp) {
4199 return (_glptr_Enable) (GET_by_offset(disp, _gloffset_Enable));
4200 }
4201
4202 static inline void SET_Enable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4203 SET_by_offset(disp, _gloffset_Enable, fn);
4204 }
4205
4206 typedef void (GLAPIENTRYP _glptr_Finish)(void);
4207 #define CALL_Finish(disp, parameters) \
4208 (* GET_Finish(disp)) parameters
4209 static inline _glptr_Finish GET_Finish(struct _glapi_table *disp) {
4210 return (_glptr_Finish) (GET_by_offset(disp, _gloffset_Finish));
4211 }
4212
4213 static inline void SET_Finish(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4214 SET_by_offset(disp, _gloffset_Finish, fn);
4215 }
4216
4217 typedef void (GLAPIENTRYP _glptr_Flush)(void);
4218 #define CALL_Flush(disp, parameters) \
4219 (* GET_Flush(disp)) parameters
4220 static inline _glptr_Flush GET_Flush(struct _glapi_table *disp) {
4221 return (_glptr_Flush) (GET_by_offset(disp, _gloffset_Flush));
4222 }
4223
4224 static inline void SET_Flush(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4225 SET_by_offset(disp, _gloffset_Flush, fn);
4226 }
4227
4228 typedef void (GLAPIENTRYP _glptr_PopAttrib)(void);
4229 #define CALL_PopAttrib(disp, parameters) \
4230 (* GET_PopAttrib(disp)) parameters
4231 static inline _glptr_PopAttrib GET_PopAttrib(struct _glapi_table *disp) {
4232 return (_glptr_PopAttrib) (GET_by_offset(disp, _gloffset_PopAttrib));
4233 }
4234
4235 static inline void SET_PopAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4236 SET_by_offset(disp, _gloffset_PopAttrib, fn);
4237 }
4238
4239 typedef void (GLAPIENTRYP _glptr_PushAttrib)(GLbitfield);
4240 #define CALL_PushAttrib(disp, parameters) \
4241 (* GET_PushAttrib(disp)) parameters
4242 static inline _glptr_PushAttrib GET_PushAttrib(struct _glapi_table *disp) {
4243 return (_glptr_PushAttrib) (GET_by_offset(disp, _gloffset_PushAttrib));
4244 }
4245
4246 static inline void SET_PushAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
4247 SET_by_offset(disp, _gloffset_PushAttrib, fn);
4248 }
4249
4250 typedef void (GLAPIENTRYP _glptr_Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
4251 #define CALL_Map1d(disp, parameters) \
4252 (* GET_Map1d(disp)) parameters
4253 static inline _glptr_Map1d GET_Map1d(struct _glapi_table *disp) {
4254 return (_glptr_Map1d) (GET_by_offset(disp, _gloffset_Map1d));
4255 }
4256
4257 static inline void SET_Map1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
4258 SET_by_offset(disp, _gloffset_Map1d, fn);
4259 }
4260
4261 typedef void (GLAPIENTRYP _glptr_Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
4262 #define CALL_Map1f(disp, parameters) \
4263 (* GET_Map1f(disp)) parameters
4264 static inline _glptr_Map1f GET_Map1f(struct _glapi_table *disp) {
4265 return (_glptr_Map1f) (GET_by_offset(disp, _gloffset_Map1f));
4266 }
4267
4268 static inline void SET_Map1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
4269 SET_by_offset(disp, _gloffset_Map1f, fn);
4270 }
4271
4272 typedef void (GLAPIENTRYP _glptr_Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
4273 #define CALL_Map2d(disp, parameters) \
4274 (* GET_Map2d(disp)) parameters
4275 static inline _glptr_Map2d GET_Map2d(struct _glapi_table *disp) {
4276 return (_glptr_Map2d) (GET_by_offset(disp, _gloffset_Map2d));
4277 }
4278
4279 static inline void SET_Map2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
4280 SET_by_offset(disp, _gloffset_Map2d, fn);
4281 }
4282
4283 typedef void (GLAPIENTRYP _glptr_Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
4284 #define CALL_Map2f(disp, parameters) \
4285 (* GET_Map2f(disp)) parameters
4286 static inline _glptr_Map2f GET_Map2f(struct _glapi_table *disp) {
4287 return (_glptr_Map2f) (GET_by_offset(disp, _gloffset_Map2f));
4288 }
4289
4290 static inline void SET_Map2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
4291 SET_by_offset(disp, _gloffset_Map2f, fn);
4292 }
4293
4294 typedef void (GLAPIENTRYP _glptr_MapGrid1d)(GLint, GLdouble, GLdouble);
4295 #define CALL_MapGrid1d(disp, parameters) \
4296 (* GET_MapGrid1d(disp)) parameters
4297 static inline _glptr_MapGrid1d GET_MapGrid1d(struct _glapi_table *disp) {
4298 return (_glptr_MapGrid1d) (GET_by_offset(disp, _gloffset_MapGrid1d));
4299 }
4300
4301 static inline void SET_MapGrid1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) {
4302 SET_by_offset(disp, _gloffset_MapGrid1d, fn);
4303 }
4304
4305 typedef void (GLAPIENTRYP _glptr_MapGrid1f)(GLint, GLfloat, GLfloat);
4306 #define CALL_MapGrid1f(disp, parameters) \
4307 (* GET_MapGrid1f(disp)) parameters
4308 static inline _glptr_MapGrid1f GET_MapGrid1f(struct _glapi_table *disp) {
4309 return (_glptr_MapGrid1f) (GET_by_offset(disp, _gloffset_MapGrid1f));
4310 }
4311
4312 static inline void SET_MapGrid1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
4313 SET_by_offset(disp, _gloffset_MapGrid1f, fn);
4314 }
4315
4316 typedef void (GLAPIENTRYP _glptr_MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
4317 #define CALL_MapGrid2d(disp, parameters) \
4318 (* GET_MapGrid2d(disp)) parameters
4319 static inline _glptr_MapGrid2d GET_MapGrid2d(struct _glapi_table *disp) {
4320 return (_glptr_MapGrid2d) (GET_by_offset(disp, _gloffset_MapGrid2d));
4321 }
4322
4323 static inline void SET_MapGrid2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble)) {
4324 SET_by_offset(disp, _gloffset_MapGrid2d, fn);
4325 }
4326
4327 typedef void (GLAPIENTRYP _glptr_MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
4328 #define CALL_MapGrid2f(disp, parameters) \
4329 (* GET_MapGrid2f(disp)) parameters
4330 static inline _glptr_MapGrid2f GET_MapGrid2f(struct _glapi_table *disp) {
4331 return (_glptr_MapGrid2f) (GET_by_offset(disp, _gloffset_MapGrid2f));
4332 }
4333
4334 static inline void SET_MapGrid2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat)) {
4335 SET_by_offset(disp, _gloffset_MapGrid2f, fn);
4336 }
4337
4338 typedef void (GLAPIENTRYP _glptr_EvalCoord1d)(GLdouble);
4339 #define CALL_EvalCoord1d(disp, parameters) \
4340 (* GET_EvalCoord1d(disp)) parameters
4341 static inline _glptr_EvalCoord1d GET_EvalCoord1d(struct _glapi_table *disp) {
4342 return (_glptr_EvalCoord1d) (GET_by_offset(disp, _gloffset_EvalCoord1d));
4343 }
4344
4345 static inline void SET_EvalCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
4346 SET_by_offset(disp, _gloffset_EvalCoord1d, fn);
4347 }
4348
4349 typedef void (GLAPIENTRYP _glptr_EvalCoord1dv)(const GLdouble *);
4350 #define CALL_EvalCoord1dv(disp, parameters) \
4351 (* GET_EvalCoord1dv(disp)) parameters
4352 static inline _glptr_EvalCoord1dv GET_EvalCoord1dv(struct _glapi_table *disp) {
4353 return (_glptr_EvalCoord1dv) (GET_by_offset(disp, _gloffset_EvalCoord1dv));
4354 }
4355
4356 static inline void SET_EvalCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
4357 SET_by_offset(disp, _gloffset_EvalCoord1dv, fn);
4358 }
4359
4360 typedef void (GLAPIENTRYP _glptr_EvalCoord1f)(GLfloat);
4361 #define CALL_EvalCoord1f(disp, parameters) \
4362 (* GET_EvalCoord1f(disp)) parameters
4363 static inline _glptr_EvalCoord1f GET_EvalCoord1f(struct _glapi_table *disp) {
4364 return (_glptr_EvalCoord1f) (GET_by_offset(disp, _gloffset_EvalCoord1f));
4365 }
4366
4367 static inline void SET_EvalCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4368 SET_by_offset(disp, _gloffset_EvalCoord1f, fn);
4369 }
4370
4371 typedef void (GLAPIENTRYP _glptr_EvalCoord1fv)(const GLfloat *);
4372 #define CALL_EvalCoord1fv(disp, parameters) \
4373 (* GET_EvalCoord1fv(disp)) parameters
4374 static inline _glptr_EvalCoord1fv GET_EvalCoord1fv(struct _glapi_table *disp) {
4375 return (_glptr_EvalCoord1fv) (GET_by_offset(disp, _gloffset_EvalCoord1fv));
4376 }
4377
4378 static inline void SET_EvalCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
4379 SET_by_offset(disp, _gloffset_EvalCoord1fv, fn);
4380 }
4381
4382 typedef void (GLAPIENTRYP _glptr_EvalCoord2d)(GLdouble, GLdouble);
4383 #define CALL_EvalCoord2d(disp, parameters) \
4384 (* GET_EvalCoord2d(disp)) parameters
4385 static inline _glptr_EvalCoord2d GET_EvalCoord2d(struct _glapi_table *disp) {
4386 return (_glptr_EvalCoord2d) (GET_by_offset(disp, _gloffset_EvalCoord2d));
4387 }
4388
4389 static inline void SET_EvalCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
4390 SET_by_offset(disp, _gloffset_EvalCoord2d, fn);
4391 }
4392
4393 typedef void (GLAPIENTRYP _glptr_EvalCoord2dv)(const GLdouble *);
4394 #define CALL_EvalCoord2dv(disp, parameters) \
4395 (* GET_EvalCoord2dv(disp)) parameters
4396 static inline _glptr_EvalCoord2dv GET_EvalCoord2dv(struct _glapi_table *disp) {
4397 return (_glptr_EvalCoord2dv) (GET_by_offset(disp, _gloffset_EvalCoord2dv));
4398 }
4399
4400 static inline void SET_EvalCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
4401 SET_by_offset(disp, _gloffset_EvalCoord2dv, fn);
4402 }
4403
4404 typedef void (GLAPIENTRYP _glptr_EvalCoord2f)(GLfloat, GLfloat);
4405 #define CALL_EvalCoord2f(disp, parameters) \
4406 (* GET_EvalCoord2f(disp)) parameters
4407 static inline _glptr_EvalCoord2f GET_EvalCoord2f(struct _glapi_table *disp) {
4408 return (_glptr_EvalCoord2f) (GET_by_offset(disp, _gloffset_EvalCoord2f));
4409 }
4410
4411 static inline void SET_EvalCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
4412 SET_by_offset(disp, _gloffset_EvalCoord2f, fn);
4413 }
4414
4415 typedef void (GLAPIENTRYP _glptr_EvalCoord2fv)(const GLfloat *);
4416 #define CALL_EvalCoord2fv(disp, parameters) \
4417 (* GET_EvalCoord2fv(disp)) parameters
4418 static inline _glptr_EvalCoord2fv GET_EvalCoord2fv(struct _glapi_table *disp) {
4419 return (_glptr_EvalCoord2fv) (GET_by_offset(disp, _gloffset_EvalCoord2fv));
4420 }
4421
4422 static inline void SET_EvalCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
4423 SET_by_offset(disp, _gloffset_EvalCoord2fv, fn);
4424 }
4425
4426 typedef void (GLAPIENTRYP _glptr_EvalMesh1)(GLenum, GLint, GLint);
4427 #define CALL_EvalMesh1(disp, parameters) \
4428 (* GET_EvalMesh1(disp)) parameters
4429 static inline _glptr_EvalMesh1 GET_EvalMesh1(struct _glapi_table *disp) {
4430 return (_glptr_EvalMesh1) (GET_by_offset(disp, _gloffset_EvalMesh1));
4431 }
4432
4433 static inline void SET_EvalMesh1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
4434 SET_by_offset(disp, _gloffset_EvalMesh1, fn);
4435 }
4436
4437 typedef void (GLAPIENTRYP _glptr_EvalPoint1)(GLint);
4438 #define CALL_EvalPoint1(disp, parameters) \
4439 (* GET_EvalPoint1(disp)) parameters
4440 static inline _glptr_EvalPoint1 GET_EvalPoint1(struct _glapi_table *disp) {
4441 return (_glptr_EvalPoint1) (GET_by_offset(disp, _gloffset_EvalPoint1));
4442 }
4443
4444 static inline void SET_EvalPoint1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
4445 SET_by_offset(disp, _gloffset_EvalPoint1, fn);
4446 }
4447
4448 typedef void (GLAPIENTRYP _glptr_EvalMesh2)(GLenum, GLint, GLint, GLint, GLint);
4449 #define CALL_EvalMesh2(disp, parameters) \
4450 (* GET_EvalMesh2(disp)) parameters
4451 static inline _glptr_EvalMesh2 GET_EvalMesh2(struct _glapi_table *disp) {
4452 return (_glptr_EvalMesh2) (GET_by_offset(disp, _gloffset_EvalMesh2));
4453 }
4454
4455 static inline void SET_EvalMesh2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
4456 SET_by_offset(disp, _gloffset_EvalMesh2, fn);
4457 }
4458
4459 typedef void (GLAPIENTRYP _glptr_EvalPoint2)(GLint, GLint);
4460 #define CALL_EvalPoint2(disp, parameters) \
4461 (* GET_EvalPoint2(disp)) parameters
4462 static inline _glptr_EvalPoint2 GET_EvalPoint2(struct _glapi_table *disp) {
4463 return (_glptr_EvalPoint2) (GET_by_offset(disp, _gloffset_EvalPoint2));
4464 }
4465
4466 static inline void SET_EvalPoint2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
4467 SET_by_offset(disp, _gloffset_EvalPoint2, fn);
4468 }
4469
4470 typedef void (GLAPIENTRYP _glptr_AlphaFunc)(GLenum, GLclampf);
4471 #define CALL_AlphaFunc(disp, parameters) \
4472 (* GET_AlphaFunc(disp)) parameters
4473 static inline _glptr_AlphaFunc GET_AlphaFunc(struct _glapi_table *disp) {
4474 return (_glptr_AlphaFunc) (GET_by_offset(disp, _gloffset_AlphaFunc));
4475 }
4476
4477 static inline void SET_AlphaFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampf)) {
4478 SET_by_offset(disp, _gloffset_AlphaFunc, fn);
4479 }
4480
4481 typedef void (GLAPIENTRYP _glptr_BlendFunc)(GLenum, GLenum);
4482 #define CALL_BlendFunc(disp, parameters) \
4483 (* GET_BlendFunc(disp)) parameters
4484 static inline _glptr_BlendFunc GET_BlendFunc(struct _glapi_table *disp) {
4485 return (_glptr_BlendFunc) (GET_by_offset(disp, _gloffset_BlendFunc));
4486 }
4487
4488 static inline void SET_BlendFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
4489 SET_by_offset(disp, _gloffset_BlendFunc, fn);
4490 }
4491
4492 typedef void (GLAPIENTRYP _glptr_LogicOp)(GLenum);
4493 #define CALL_LogicOp(disp, parameters) \
4494 (* GET_LogicOp(disp)) parameters
4495 static inline _glptr_LogicOp GET_LogicOp(struct _glapi_table *disp) {
4496 return (_glptr_LogicOp) (GET_by_offset(disp, _gloffset_LogicOp));
4497 }
4498
4499 static inline void SET_LogicOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4500 SET_by_offset(disp, _gloffset_LogicOp, fn);
4501 }
4502
4503 typedef void (GLAPIENTRYP _glptr_StencilFunc)(GLenum, GLint, GLuint);
4504 #define CALL_StencilFunc(disp, parameters) \
4505 (* GET_StencilFunc(disp)) parameters
4506 static inline _glptr_StencilFunc GET_StencilFunc(struct _glapi_table *disp) {
4507 return (_glptr_StencilFunc) (GET_by_offset(disp, _gloffset_StencilFunc));
4508 }
4509
4510 static inline void SET_StencilFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint)) {
4511 SET_by_offset(disp, _gloffset_StencilFunc, fn);
4512 }
4513
4514 typedef void (GLAPIENTRYP _glptr_StencilOp)(GLenum, GLenum, GLenum);
4515 #define CALL_StencilOp(disp, parameters) \
4516 (* GET_StencilOp(disp)) parameters
4517 static inline _glptr_StencilOp GET_StencilOp(struct _glapi_table *disp) {
4518 return (_glptr_StencilOp) (GET_by_offset(disp, _gloffset_StencilOp));
4519 }
4520
4521 static inline void SET_StencilOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum)) {
4522 SET_by_offset(disp, _gloffset_StencilOp, fn);
4523 }
4524
4525 typedef void (GLAPIENTRYP _glptr_DepthFunc)(GLenum);
4526 #define CALL_DepthFunc(disp, parameters) \
4527 (* GET_DepthFunc(disp)) parameters
4528 static inline _glptr_DepthFunc GET_DepthFunc(struct _glapi_table *disp) {
4529 return (_glptr_DepthFunc) (GET_by_offset(disp, _gloffset_DepthFunc));
4530 }
4531
4532 static inline void SET_DepthFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4533 SET_by_offset(disp, _gloffset_DepthFunc, fn);
4534 }
4535
4536 typedef void (GLAPIENTRYP _glptr_PixelZoom)(GLfloat, GLfloat);
4537 #define CALL_PixelZoom(disp, parameters) \
4538 (* GET_PixelZoom(disp)) parameters
4539 static inline _glptr_PixelZoom GET_PixelZoom(struct _glapi_table *disp) {
4540 return (_glptr_PixelZoom) (GET_by_offset(disp, _gloffset_PixelZoom));
4541 }
4542
4543 static inline void SET_PixelZoom(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
4544 SET_by_offset(disp, _gloffset_PixelZoom, fn);
4545 }
4546
4547 typedef void (GLAPIENTRYP _glptr_PixelTransferf)(GLenum, GLfloat);
4548 #define CALL_PixelTransferf(disp, parameters) \
4549 (* GET_PixelTransferf(disp)) parameters
4550 static inline _glptr_PixelTransferf GET_PixelTransferf(struct _glapi_table *disp) {
4551 return (_glptr_PixelTransferf) (GET_by_offset(disp, _gloffset_PixelTransferf));
4552 }
4553
4554 static inline void SET_PixelTransferf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
4555 SET_by_offset(disp, _gloffset_PixelTransferf, fn);
4556 }
4557
4558 typedef void (GLAPIENTRYP _glptr_PixelTransferi)(GLenum, GLint);
4559 #define CALL_PixelTransferi(disp, parameters) \
4560 (* GET_PixelTransferi(disp)) parameters
4561 static inline _glptr_PixelTransferi GET_PixelTransferi(struct _glapi_table *disp) {
4562 return (_glptr_PixelTransferi) (GET_by_offset(disp, _gloffset_PixelTransferi));
4563 }
4564
4565 static inline void SET_PixelTransferi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
4566 SET_by_offset(disp, _gloffset_PixelTransferi, fn);
4567 }
4568
4569 typedef void (GLAPIENTRYP _glptr_PixelStoref)(GLenum, GLfloat);
4570 #define CALL_PixelStoref(disp, parameters) \
4571 (* GET_PixelStoref(disp)) parameters
4572 static inline _glptr_PixelStoref GET_PixelStoref(struct _glapi_table *disp) {
4573 return (_glptr_PixelStoref) (GET_by_offset(disp, _gloffset_PixelStoref));
4574 }
4575
4576 static inline void SET_PixelStoref(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
4577 SET_by_offset(disp, _gloffset_PixelStoref, fn);
4578 }
4579
4580 typedef void (GLAPIENTRYP _glptr_PixelStorei)(GLenum, GLint);
4581 #define CALL_PixelStorei(disp, parameters) \
4582 (* GET_PixelStorei(disp)) parameters
4583 static inline _glptr_PixelStorei GET_PixelStorei(struct _glapi_table *disp) {
4584 return (_glptr_PixelStorei) (GET_by_offset(disp, _gloffset_PixelStorei));
4585 }
4586
4587 static inline void SET_PixelStorei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
4588 SET_by_offset(disp, _gloffset_PixelStorei, fn);
4589 }
4590
4591 typedef void (GLAPIENTRYP _glptr_PixelMapfv)(GLenum, GLsizei, const GLfloat *);
4592 #define CALL_PixelMapfv(disp, parameters) \
4593 (* GET_PixelMapfv(disp)) parameters
4594 static inline _glptr_PixelMapfv GET_PixelMapfv(struct _glapi_table *disp) {
4595 return (_glptr_PixelMapfv) (GET_by_offset(disp, _gloffset_PixelMapfv));
4596 }
4597
4598 static inline void SET_PixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLfloat *)) {
4599 SET_by_offset(disp, _gloffset_PixelMapfv, fn);
4600 }
4601
4602 typedef void (GLAPIENTRYP _glptr_PixelMapuiv)(GLenum, GLsizei, const GLuint *);
4603 #define CALL_PixelMapuiv(disp, parameters) \
4604 (* GET_PixelMapuiv(disp)) parameters
4605 static inline _glptr_PixelMapuiv GET_PixelMapuiv(struct _glapi_table *disp) {
4606 return (_glptr_PixelMapuiv) (GET_by_offset(disp, _gloffset_PixelMapuiv));
4607 }
4608
4609 static inline void SET_PixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) {
4610 SET_by_offset(disp, _gloffset_PixelMapuiv, fn);
4611 }
4612
4613 typedef void (GLAPIENTRYP _glptr_PixelMapusv)(GLenum, GLsizei, const GLushort *);
4614 #define CALL_PixelMapusv(disp, parameters) \
4615 (* GET_PixelMapusv(disp)) parameters
4616 static inline _glptr_PixelMapusv GET_PixelMapusv(struct _glapi_table *disp) {
4617 return (_glptr_PixelMapusv) (GET_by_offset(disp, _gloffset_PixelMapusv));
4618 }
4619
4620 static inline void SET_PixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLushort *)) {
4621 SET_by_offset(disp, _gloffset_PixelMapusv, fn);
4622 }
4623
4624 typedef void (GLAPIENTRYP _glptr_ReadBuffer)(GLenum);
4625 #define CALL_ReadBuffer(disp, parameters) \
4626 (* GET_ReadBuffer(disp)) parameters
4627 static inline _glptr_ReadBuffer GET_ReadBuffer(struct _glapi_table *disp) {
4628 return (_glptr_ReadBuffer) (GET_by_offset(disp, _gloffset_ReadBuffer));
4629 }
4630
4631 static inline void SET_ReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4632 SET_by_offset(disp, _gloffset_ReadBuffer, fn);
4633 }
4634
4635 typedef void (GLAPIENTRYP _glptr_CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum);
4636 #define CALL_CopyPixels(disp, parameters) \
4637 (* GET_CopyPixels(disp)) parameters
4638 static inline _glptr_CopyPixels GET_CopyPixels(struct _glapi_table *disp) {
4639 return (_glptr_CopyPixels) (GET_by_offset(disp, _gloffset_CopyPixels));
4640 }
4641
4642 static inline void SET_CopyPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum)) {
4643 SET_by_offset(disp, _gloffset_CopyPixels, fn);
4644 }
4645
4646 typedef void (GLAPIENTRYP _glptr_ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
4647 #define CALL_ReadPixels(disp, parameters) \
4648 (* GET_ReadPixels(disp)) parameters
4649 static inline _glptr_ReadPixels GET_ReadPixels(struct _glapi_table *disp) {
4650 return (_glptr_ReadPixels) (GET_by_offset(disp, _gloffset_ReadPixels));
4651 }
4652
4653 static inline void SET_ReadPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *)) {
4654 SET_by_offset(disp, _gloffset_ReadPixels, fn);
4655 }
4656
4657 typedef void (GLAPIENTRYP _glptr_DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
4658 #define CALL_DrawPixels(disp, parameters) \
4659 (* GET_DrawPixels(disp)) parameters
4660 static inline _glptr_DrawPixels GET_DrawPixels(struct _glapi_table *disp) {
4661 return (_glptr_DrawPixels) (GET_by_offset(disp, _gloffset_DrawPixels));
4662 }
4663
4664 static inline void SET_DrawPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
4665 SET_by_offset(disp, _gloffset_DrawPixels, fn);
4666 }
4667
4668 typedef void (GLAPIENTRYP _glptr_GetBooleanv)(GLenum, GLboolean *);
4669 #define CALL_GetBooleanv(disp, parameters) \
4670 (* GET_GetBooleanv(disp)) parameters
4671 static inline _glptr_GetBooleanv GET_GetBooleanv(struct _glapi_table *disp) {
4672 return (_glptr_GetBooleanv) (GET_by_offset(disp, _gloffset_GetBooleanv));
4673 }
4674
4675 static inline void SET_GetBooleanv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean *)) {
4676 SET_by_offset(disp, _gloffset_GetBooleanv, fn);
4677 }
4678
4679 typedef void (GLAPIENTRYP _glptr_GetClipPlane)(GLenum, GLdouble *);
4680 #define CALL_GetClipPlane(disp, parameters) \
4681 (* GET_GetClipPlane(disp)) parameters
4682 static inline _glptr_GetClipPlane GET_GetClipPlane(struct _glapi_table *disp) {
4683 return (_glptr_GetClipPlane) (GET_by_offset(disp, _gloffset_GetClipPlane));
4684 }
4685
4686 static inline void SET_GetClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
4687 SET_by_offset(disp, _gloffset_GetClipPlane, fn);
4688 }
4689
4690 typedef void (GLAPIENTRYP _glptr_GetDoublev)(GLenum, GLdouble *);
4691 #define CALL_GetDoublev(disp, parameters) \
4692 (* GET_GetDoublev(disp)) parameters
4693 static inline _glptr_GetDoublev GET_GetDoublev(struct _glapi_table *disp) {
4694 return (_glptr_GetDoublev) (GET_by_offset(disp, _gloffset_GetDoublev));
4695 }
4696
4697 static inline void SET_GetDoublev(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
4698 SET_by_offset(disp, _gloffset_GetDoublev, fn);
4699 }
4700
4701 typedef GLenum (GLAPIENTRYP _glptr_GetError)(void);
4702 #define CALL_GetError(disp, parameters) \
4703 (* GET_GetError(disp)) parameters
4704 static inline _glptr_GetError GET_GetError(struct _glapi_table *disp) {
4705 return (_glptr_GetError) (GET_by_offset(disp, _gloffset_GetError));
4706 }
4707
4708 static inline void SET_GetError(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
4709 SET_by_offset(disp, _gloffset_GetError, fn);
4710 }
4711
4712 typedef void (GLAPIENTRYP _glptr_GetFloatv)(GLenum, GLfloat *);
4713 #define CALL_GetFloatv(disp, parameters) \
4714 (* GET_GetFloatv(disp)) parameters
4715 static inline _glptr_GetFloatv GET_GetFloatv(struct _glapi_table *disp) {
4716 return (_glptr_GetFloatv) (GET_by_offset(disp, _gloffset_GetFloatv));
4717 }
4718
4719 static inline void SET_GetFloatv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
4720 SET_by_offset(disp, _gloffset_GetFloatv, fn);
4721 }
4722
4723 typedef void (GLAPIENTRYP _glptr_GetIntegerv)(GLenum, GLint *);
4724 #define CALL_GetIntegerv(disp, parameters) \
4725 (* GET_GetIntegerv(disp)) parameters
4726 static inline _glptr_GetIntegerv GET_GetIntegerv(struct _glapi_table *disp) {
4727 return (_glptr_GetIntegerv) (GET_by_offset(disp, _gloffset_GetIntegerv));
4728 }
4729
4730 static inline void SET_GetIntegerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
4731 SET_by_offset(disp, _gloffset_GetIntegerv, fn);
4732 }
4733
4734 typedef void (GLAPIENTRYP _glptr_GetLightfv)(GLenum, GLenum, GLfloat *);
4735 #define CALL_GetLightfv(disp, parameters) \
4736 (* GET_GetLightfv(disp)) parameters
4737 static inline _glptr_GetLightfv GET_GetLightfv(struct _glapi_table *disp) {
4738 return (_glptr_GetLightfv) (GET_by_offset(disp, _gloffset_GetLightfv));
4739 }
4740
4741 static inline void SET_GetLightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4742 SET_by_offset(disp, _gloffset_GetLightfv, fn);
4743 }
4744
4745 typedef void (GLAPIENTRYP _glptr_GetLightiv)(GLenum, GLenum, GLint *);
4746 #define CALL_GetLightiv(disp, parameters) \
4747 (* GET_GetLightiv(disp)) parameters
4748 static inline _glptr_GetLightiv GET_GetLightiv(struct _glapi_table *disp) {
4749 return (_glptr_GetLightiv) (GET_by_offset(disp, _gloffset_GetLightiv));
4750 }
4751
4752 static inline void SET_GetLightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4753 SET_by_offset(disp, _gloffset_GetLightiv, fn);
4754 }
4755
4756 typedef void (GLAPIENTRYP _glptr_GetMapdv)(GLenum, GLenum, GLdouble *);
4757 #define CALL_GetMapdv(disp, parameters) \
4758 (* GET_GetMapdv(disp)) parameters
4759 static inline _glptr_GetMapdv GET_GetMapdv(struct _glapi_table *disp) {
4760 return (_glptr_GetMapdv) (GET_by_offset(disp, _gloffset_GetMapdv));
4761 }
4762
4763 static inline void SET_GetMapdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
4764 SET_by_offset(disp, _gloffset_GetMapdv, fn);
4765 }
4766
4767 typedef void (GLAPIENTRYP _glptr_GetMapfv)(GLenum, GLenum, GLfloat *);
4768 #define CALL_GetMapfv(disp, parameters) \
4769 (* GET_GetMapfv(disp)) parameters
4770 static inline _glptr_GetMapfv GET_GetMapfv(struct _glapi_table *disp) {
4771 return (_glptr_GetMapfv) (GET_by_offset(disp, _gloffset_GetMapfv));
4772 }
4773
4774 static inline void SET_GetMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4775 SET_by_offset(disp, _gloffset_GetMapfv, fn);
4776 }
4777
4778 typedef void (GLAPIENTRYP _glptr_GetMapiv)(GLenum, GLenum, GLint *);
4779 #define CALL_GetMapiv(disp, parameters) \
4780 (* GET_GetMapiv(disp)) parameters
4781 static inline _glptr_GetMapiv GET_GetMapiv(struct _glapi_table *disp) {
4782 return (_glptr_GetMapiv) (GET_by_offset(disp, _gloffset_GetMapiv));
4783 }
4784
4785 static inline void SET_GetMapiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4786 SET_by_offset(disp, _gloffset_GetMapiv, fn);
4787 }
4788
4789 typedef void (GLAPIENTRYP _glptr_GetMaterialfv)(GLenum, GLenum, GLfloat *);
4790 #define CALL_GetMaterialfv(disp, parameters) \
4791 (* GET_GetMaterialfv(disp)) parameters
4792 static inline _glptr_GetMaterialfv GET_GetMaterialfv(struct _glapi_table *disp) {
4793 return (_glptr_GetMaterialfv) (GET_by_offset(disp, _gloffset_GetMaterialfv));
4794 }
4795
4796 static inline void SET_GetMaterialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4797 SET_by_offset(disp, _gloffset_GetMaterialfv, fn);
4798 }
4799
4800 typedef void (GLAPIENTRYP _glptr_GetMaterialiv)(GLenum, GLenum, GLint *);
4801 #define CALL_GetMaterialiv(disp, parameters) \
4802 (* GET_GetMaterialiv(disp)) parameters
4803 static inline _glptr_GetMaterialiv GET_GetMaterialiv(struct _glapi_table *disp) {
4804 return (_glptr_GetMaterialiv) (GET_by_offset(disp, _gloffset_GetMaterialiv));
4805 }
4806
4807 static inline void SET_GetMaterialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4808 SET_by_offset(disp, _gloffset_GetMaterialiv, fn);
4809 }
4810
4811 typedef void (GLAPIENTRYP _glptr_GetPixelMapfv)(GLenum, GLfloat *);
4812 #define CALL_GetPixelMapfv(disp, parameters) \
4813 (* GET_GetPixelMapfv(disp)) parameters
4814 static inline _glptr_GetPixelMapfv GET_GetPixelMapfv(struct _glapi_table *disp) {
4815 return (_glptr_GetPixelMapfv) (GET_by_offset(disp, _gloffset_GetPixelMapfv));
4816 }
4817
4818 static inline void SET_GetPixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
4819 SET_by_offset(disp, _gloffset_GetPixelMapfv, fn);
4820 }
4821
4822 typedef void (GLAPIENTRYP _glptr_GetPixelMapuiv)(GLenum, GLuint *);
4823 #define CALL_GetPixelMapuiv(disp, parameters) \
4824 (* GET_GetPixelMapuiv(disp)) parameters
4825 static inline _glptr_GetPixelMapuiv GET_GetPixelMapuiv(struct _glapi_table *disp) {
4826 return (_glptr_GetPixelMapuiv) (GET_by_offset(disp, _gloffset_GetPixelMapuiv));
4827 }
4828
4829 static inline void SET_GetPixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint *)) {
4830 SET_by_offset(disp, _gloffset_GetPixelMapuiv, fn);
4831 }
4832
4833 typedef void (GLAPIENTRYP _glptr_GetPixelMapusv)(GLenum, GLushort *);
4834 #define CALL_GetPixelMapusv(disp, parameters) \
4835 (* GET_GetPixelMapusv(disp)) parameters
4836 static inline _glptr_GetPixelMapusv GET_GetPixelMapusv(struct _glapi_table *disp) {
4837 return (_glptr_GetPixelMapusv) (GET_by_offset(disp, _gloffset_GetPixelMapusv));
4838 }
4839
4840 static inline void SET_GetPixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLushort *)) {
4841 SET_by_offset(disp, _gloffset_GetPixelMapusv, fn);
4842 }
4843
4844 typedef void (GLAPIENTRYP _glptr_GetPolygonStipple)(GLubyte *);
4845 #define CALL_GetPolygonStipple(disp, parameters) \
4846 (* GET_GetPolygonStipple(disp)) parameters
4847 static inline _glptr_GetPolygonStipple GET_GetPolygonStipple(struct _glapi_table *disp) {
4848 return (_glptr_GetPolygonStipple) (GET_by_offset(disp, _gloffset_GetPolygonStipple));
4849 }
4850
4851 static inline void SET_GetPolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte *)) {
4852 SET_by_offset(disp, _gloffset_GetPolygonStipple, fn);
4853 }
4854
4855 typedef const GLubyte * (GLAPIENTRYP _glptr_GetString)(GLenum);
4856 #define CALL_GetString(disp, parameters) \
4857 (* GET_GetString(disp)) parameters
4858 static inline _glptr_GetString GET_GetString(struct _glapi_table *disp) {
4859 return (_glptr_GetString) (GET_by_offset(disp, _gloffset_GetString));
4860 }
4861
4862 static inline void SET_GetString(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum)) {
4863 SET_by_offset(disp, _gloffset_GetString, fn);
4864 }
4865
4866 typedef void (GLAPIENTRYP _glptr_GetTexEnvfv)(GLenum, GLenum, GLfloat *);
4867 #define CALL_GetTexEnvfv(disp, parameters) \
4868 (* GET_GetTexEnvfv(disp)) parameters
4869 static inline _glptr_GetTexEnvfv GET_GetTexEnvfv(struct _glapi_table *disp) {
4870 return (_glptr_GetTexEnvfv) (GET_by_offset(disp, _gloffset_GetTexEnvfv));
4871 }
4872
4873 static inline void SET_GetTexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4874 SET_by_offset(disp, _gloffset_GetTexEnvfv, fn);
4875 }
4876
4877 typedef void (GLAPIENTRYP _glptr_GetTexEnviv)(GLenum, GLenum, GLint *);
4878 #define CALL_GetTexEnviv(disp, parameters) \
4879 (* GET_GetTexEnviv(disp)) parameters
4880 static inline _glptr_GetTexEnviv GET_GetTexEnviv(struct _glapi_table *disp) {
4881 return (_glptr_GetTexEnviv) (GET_by_offset(disp, _gloffset_GetTexEnviv));
4882 }
4883
4884 static inline void SET_GetTexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4885 SET_by_offset(disp, _gloffset_GetTexEnviv, fn);
4886 }
4887
4888 typedef void (GLAPIENTRYP _glptr_GetTexGendv)(GLenum, GLenum, GLdouble *);
4889 #define CALL_GetTexGendv(disp, parameters) \
4890 (* GET_GetTexGendv(disp)) parameters
4891 static inline _glptr_GetTexGendv GET_GetTexGendv(struct _glapi_table *disp) {
4892 return (_glptr_GetTexGendv) (GET_by_offset(disp, _gloffset_GetTexGendv));
4893 }
4894
4895 static inline void SET_GetTexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
4896 SET_by_offset(disp, _gloffset_GetTexGendv, fn);
4897 }
4898
4899 typedef void (GLAPIENTRYP _glptr_GetTexGenfv)(GLenum, GLenum, GLfloat *);
4900 #define CALL_GetTexGenfv(disp, parameters) \
4901 (* GET_GetTexGenfv(disp)) parameters
4902 static inline _glptr_GetTexGenfv GET_GetTexGenfv(struct _glapi_table *disp) {
4903 return (_glptr_GetTexGenfv) (GET_by_offset(disp, _gloffset_GetTexGenfv));
4904 }
4905
4906 static inline void SET_GetTexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4907 SET_by_offset(disp, _gloffset_GetTexGenfv, fn);
4908 }
4909
4910 typedef void (GLAPIENTRYP _glptr_GetTexGeniv)(GLenum, GLenum, GLint *);
4911 #define CALL_GetTexGeniv(disp, parameters) \
4912 (* GET_GetTexGeniv(disp)) parameters
4913 static inline _glptr_GetTexGeniv GET_GetTexGeniv(struct _glapi_table *disp) {
4914 return (_glptr_GetTexGeniv) (GET_by_offset(disp, _gloffset_GetTexGeniv));
4915 }
4916
4917 static inline void SET_GetTexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4918 SET_by_offset(disp, _gloffset_GetTexGeniv, fn);
4919 }
4920
4921 typedef void (GLAPIENTRYP _glptr_GetTexImage)(GLenum, GLint, GLenum, GLenum, GLvoid *);
4922 #define CALL_GetTexImage(disp, parameters) \
4923 (* GET_GetTexImage(disp)) parameters
4924 static inline _glptr_GetTexImage GET_GetTexImage(struct _glapi_table *disp) {
4925 return (_glptr_GetTexImage) (GET_by_offset(disp, _gloffset_GetTexImage));
4926 }
4927
4928 static inline void SET_GetTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLvoid *)) {
4929 SET_by_offset(disp, _gloffset_GetTexImage, fn);
4930 }
4931
4932 typedef void (GLAPIENTRYP _glptr_GetTexParameterfv)(GLenum, GLenum, GLfloat *);
4933 #define CALL_GetTexParameterfv(disp, parameters) \
4934 (* GET_GetTexParameterfv(disp)) parameters
4935 static inline _glptr_GetTexParameterfv GET_GetTexParameterfv(struct _glapi_table *disp) {
4936 return (_glptr_GetTexParameterfv) (GET_by_offset(disp, _gloffset_GetTexParameterfv));
4937 }
4938
4939 static inline void SET_GetTexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4940 SET_by_offset(disp, _gloffset_GetTexParameterfv, fn);
4941 }
4942
4943 typedef void (GLAPIENTRYP _glptr_GetTexParameteriv)(GLenum, GLenum, GLint *);
4944 #define CALL_GetTexParameteriv(disp, parameters) \
4945 (* GET_GetTexParameteriv(disp)) parameters
4946 static inline _glptr_GetTexParameteriv GET_GetTexParameteriv(struct _glapi_table *disp) {
4947 return (_glptr_GetTexParameteriv) (GET_by_offset(disp, _gloffset_GetTexParameteriv));
4948 }
4949
4950 static inline void SET_GetTexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4951 SET_by_offset(disp, _gloffset_GetTexParameteriv, fn);
4952 }
4953
4954 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *);
4955 #define CALL_GetTexLevelParameterfv(disp, parameters) \
4956 (* GET_GetTexLevelParameterfv(disp)) parameters
4957 static inline _glptr_GetTexLevelParameterfv GET_GetTexLevelParameterfv(struct _glapi_table *disp) {
4958 return (_glptr_GetTexLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTexLevelParameterfv));
4959 }
4960
4961 static inline void SET_GetTexLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLfloat *)) {
4962 SET_by_offset(disp, _gloffset_GetTexLevelParameterfv, fn);
4963 }
4964
4965 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *);
4966 #define CALL_GetTexLevelParameteriv(disp, parameters) \
4967 (* GET_GetTexLevelParameteriv(disp)) parameters
4968 static inline _glptr_GetTexLevelParameteriv GET_GetTexLevelParameteriv(struct _glapi_table *disp) {
4969 return (_glptr_GetTexLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTexLevelParameteriv));
4970 }
4971
4972 static inline void SET_GetTexLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint *)) {
4973 SET_by_offset(disp, _gloffset_GetTexLevelParameteriv, fn);
4974 }
4975
4976 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabled)(GLenum);
4977 #define CALL_IsEnabled(disp, parameters) \
4978 (* GET_IsEnabled(disp)) parameters
4979 static inline _glptr_IsEnabled GET_IsEnabled(struct _glapi_table *disp) {
4980 return (_glptr_IsEnabled) (GET_by_offset(disp, _gloffset_IsEnabled));
4981 }
4982
4983 static inline void SET_IsEnabled(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
4984 SET_by_offset(disp, _gloffset_IsEnabled, fn);
4985 }
4986
4987 typedef GLboolean (GLAPIENTRYP _glptr_IsList)(GLuint);
4988 #define CALL_IsList(disp, parameters) \
4989 (* GET_IsList(disp)) parameters
4990 static inline _glptr_IsList GET_IsList(struct _glapi_table *disp) {
4991 return (_glptr_IsList) (GET_by_offset(disp, _gloffset_IsList));
4992 }
4993
4994 static inline void SET_IsList(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
4995 SET_by_offset(disp, _gloffset_IsList, fn);
4996 }
4997
4998 typedef void (GLAPIENTRYP _glptr_DepthRange)(GLclampd, GLclampd);
4999 #define CALL_DepthRange(disp, parameters) \
5000 (* GET_DepthRange(disp)) parameters
5001 static inline _glptr_DepthRange GET_DepthRange(struct _glapi_table *disp) {
5002 return (_glptr_DepthRange) (GET_by_offset(disp, _gloffset_DepthRange));
5003 }
5004
5005 static inline void SET_DepthRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
5006 SET_by_offset(disp, _gloffset_DepthRange, fn);
5007 }
5008
5009 typedef void (GLAPIENTRYP _glptr_Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
5010 #define CALL_Frustum(disp, parameters) \
5011 (* GET_Frustum(disp)) parameters
5012 static inline _glptr_Frustum GET_Frustum(struct _glapi_table *disp) {
5013 return (_glptr_Frustum) (GET_by_offset(disp, _gloffset_Frustum));
5014 }
5015
5016 static inline void SET_Frustum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
5017 SET_by_offset(disp, _gloffset_Frustum, fn);
5018 }
5019
5020 typedef void (GLAPIENTRYP _glptr_LoadIdentity)(void);
5021 #define CALL_LoadIdentity(disp, parameters) \
5022 (* GET_LoadIdentity(disp)) parameters
5023 static inline _glptr_LoadIdentity GET_LoadIdentity(struct _glapi_table *disp) {
5024 return (_glptr_LoadIdentity) (GET_by_offset(disp, _gloffset_LoadIdentity));
5025 }
5026
5027 static inline void SET_LoadIdentity(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5028 SET_by_offset(disp, _gloffset_LoadIdentity, fn);
5029 }
5030
5031 typedef void (GLAPIENTRYP _glptr_LoadMatrixf)(const GLfloat *);
5032 #define CALL_LoadMatrixf(disp, parameters) \
5033 (* GET_LoadMatrixf(disp)) parameters
5034 static inline _glptr_LoadMatrixf GET_LoadMatrixf(struct _glapi_table *disp) {
5035 return (_glptr_LoadMatrixf) (GET_by_offset(disp, _gloffset_LoadMatrixf));
5036 }
5037
5038 static inline void SET_LoadMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5039 SET_by_offset(disp, _gloffset_LoadMatrixf, fn);
5040 }
5041
5042 typedef void (GLAPIENTRYP _glptr_LoadMatrixd)(const GLdouble *);
5043 #define CALL_LoadMatrixd(disp, parameters) \
5044 (* GET_LoadMatrixd(disp)) parameters
5045 static inline _glptr_LoadMatrixd GET_LoadMatrixd(struct _glapi_table *disp) {
5046 return (_glptr_LoadMatrixd) (GET_by_offset(disp, _gloffset_LoadMatrixd));
5047 }
5048
5049 static inline void SET_LoadMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5050 SET_by_offset(disp, _gloffset_LoadMatrixd, fn);
5051 }
5052
5053 typedef void (GLAPIENTRYP _glptr_MatrixMode)(GLenum);
5054 #define CALL_MatrixMode(disp, parameters) \
5055 (* GET_MatrixMode(disp)) parameters
5056 static inline _glptr_MatrixMode GET_MatrixMode(struct _glapi_table *disp) {
5057 return (_glptr_MatrixMode) (GET_by_offset(disp, _gloffset_MatrixMode));
5058 }
5059
5060 static inline void SET_MatrixMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5061 SET_by_offset(disp, _gloffset_MatrixMode, fn);
5062 }
5063
5064 typedef void (GLAPIENTRYP _glptr_MultMatrixf)(const GLfloat *);
5065 #define CALL_MultMatrixf(disp, parameters) \
5066 (* GET_MultMatrixf(disp)) parameters
5067 static inline _glptr_MultMatrixf GET_MultMatrixf(struct _glapi_table *disp) {
5068 return (_glptr_MultMatrixf) (GET_by_offset(disp, _gloffset_MultMatrixf));
5069 }
5070
5071 static inline void SET_MultMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5072 SET_by_offset(disp, _gloffset_MultMatrixf, fn);
5073 }
5074
5075 typedef void (GLAPIENTRYP _glptr_MultMatrixd)(const GLdouble *);
5076 #define CALL_MultMatrixd(disp, parameters) \
5077 (* GET_MultMatrixd(disp)) parameters
5078 static inline _glptr_MultMatrixd GET_MultMatrixd(struct _glapi_table *disp) {
5079 return (_glptr_MultMatrixd) (GET_by_offset(disp, _gloffset_MultMatrixd));
5080 }
5081
5082 static inline void SET_MultMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5083 SET_by_offset(disp, _gloffset_MultMatrixd, fn);
5084 }
5085
5086 typedef void (GLAPIENTRYP _glptr_Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
5087 #define CALL_Ortho(disp, parameters) \
5088 (* GET_Ortho(disp)) parameters
5089 static inline _glptr_Ortho GET_Ortho(struct _glapi_table *disp) {
5090 return (_glptr_Ortho) (GET_by_offset(disp, _gloffset_Ortho));
5091 }
5092
5093 static inline void SET_Ortho(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
5094 SET_by_offset(disp, _gloffset_Ortho, fn);
5095 }
5096
5097 typedef void (GLAPIENTRYP _glptr_PopMatrix)(void);
5098 #define CALL_PopMatrix(disp, parameters) \
5099 (* GET_PopMatrix(disp)) parameters
5100 static inline _glptr_PopMatrix GET_PopMatrix(struct _glapi_table *disp) {
5101 return (_glptr_PopMatrix) (GET_by_offset(disp, _gloffset_PopMatrix));
5102 }
5103
5104 static inline void SET_PopMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5105 SET_by_offset(disp, _gloffset_PopMatrix, fn);
5106 }
5107
5108 typedef void (GLAPIENTRYP _glptr_PushMatrix)(void);
5109 #define CALL_PushMatrix(disp, parameters) \
5110 (* GET_PushMatrix(disp)) parameters
5111 static inline _glptr_PushMatrix GET_PushMatrix(struct _glapi_table *disp) {
5112 return (_glptr_PushMatrix) (GET_by_offset(disp, _gloffset_PushMatrix));
5113 }
5114
5115 static inline void SET_PushMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5116 SET_by_offset(disp, _gloffset_PushMatrix, fn);
5117 }
5118
5119 typedef void (GLAPIENTRYP _glptr_Rotated)(GLdouble, GLdouble, GLdouble, GLdouble);
5120 #define CALL_Rotated(disp, parameters) \
5121 (* GET_Rotated(disp)) parameters
5122 static inline _glptr_Rotated GET_Rotated(struct _glapi_table *disp) {
5123 return (_glptr_Rotated) (GET_by_offset(disp, _gloffset_Rotated));
5124 }
5125
5126 static inline void SET_Rotated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
5127 SET_by_offset(disp, _gloffset_Rotated, fn);
5128 }
5129
5130 typedef void (GLAPIENTRYP _glptr_Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat);
5131 #define CALL_Rotatef(disp, parameters) \
5132 (* GET_Rotatef(disp)) parameters
5133 static inline _glptr_Rotatef GET_Rotatef(struct _glapi_table *disp) {
5134 return (_glptr_Rotatef) (GET_by_offset(disp, _gloffset_Rotatef));
5135 }
5136
5137 static inline void SET_Rotatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
5138 SET_by_offset(disp, _gloffset_Rotatef, fn);
5139 }
5140
5141 typedef void (GLAPIENTRYP _glptr_Scaled)(GLdouble, GLdouble, GLdouble);
5142 #define CALL_Scaled(disp, parameters) \
5143 (* GET_Scaled(disp)) parameters
5144 static inline _glptr_Scaled GET_Scaled(struct _glapi_table *disp) {
5145 return (_glptr_Scaled) (GET_by_offset(disp, _gloffset_Scaled));
5146 }
5147
5148 static inline void SET_Scaled(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
5149 SET_by_offset(disp, _gloffset_Scaled, fn);
5150 }
5151
5152 typedef void (GLAPIENTRYP _glptr_Scalef)(GLfloat, GLfloat, GLfloat);
5153 #define CALL_Scalef(disp, parameters) \
5154 (* GET_Scalef(disp)) parameters
5155 static inline _glptr_Scalef GET_Scalef(struct _glapi_table *disp) {
5156 return (_glptr_Scalef) (GET_by_offset(disp, _gloffset_Scalef));
5157 }
5158
5159 static inline void SET_Scalef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
5160 SET_by_offset(disp, _gloffset_Scalef, fn);
5161 }
5162
5163 typedef void (GLAPIENTRYP _glptr_Translated)(GLdouble, GLdouble, GLdouble);
5164 #define CALL_Translated(disp, parameters) \
5165 (* GET_Translated(disp)) parameters
5166 static inline _glptr_Translated GET_Translated(struct _glapi_table *disp) {
5167 return (_glptr_Translated) (GET_by_offset(disp, _gloffset_Translated));
5168 }
5169
5170 static inline void SET_Translated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
5171 SET_by_offset(disp, _gloffset_Translated, fn);
5172 }
5173
5174 typedef void (GLAPIENTRYP _glptr_Translatef)(GLfloat, GLfloat, GLfloat);
5175 #define CALL_Translatef(disp, parameters) \
5176 (* GET_Translatef(disp)) parameters
5177 static inline _glptr_Translatef GET_Translatef(struct _glapi_table *disp) {
5178 return (_glptr_Translatef) (GET_by_offset(disp, _gloffset_Translatef));
5179 }
5180
5181 static inline void SET_Translatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
5182 SET_by_offset(disp, _gloffset_Translatef, fn);
5183 }
5184
5185 typedef void (GLAPIENTRYP _glptr_Viewport)(GLint, GLint, GLsizei, GLsizei);
5186 #define CALL_Viewport(disp, parameters) \
5187 (* GET_Viewport(disp)) parameters
5188 static inline _glptr_Viewport GET_Viewport(struct _glapi_table *disp) {
5189 return (_glptr_Viewport) (GET_by_offset(disp, _gloffset_Viewport));
5190 }
5191
5192 static inline void SET_Viewport(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
5193 SET_by_offset(disp, _gloffset_Viewport, fn);
5194 }
5195
5196 typedef void (GLAPIENTRYP _glptr_ArrayElement)(GLint);
5197 #define CALL_ArrayElement(disp, parameters) \
5198 (* GET_ArrayElement(disp)) parameters
5199 static inline _glptr_ArrayElement GET_ArrayElement(struct _glapi_table *disp) {
5200 return (_glptr_ArrayElement) (GET_by_offset(disp, _gloffset_ArrayElement));
5201 }
5202
5203 static inline void SET_ArrayElement(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
5204 SET_by_offset(disp, _gloffset_ArrayElement, fn);
5205 }
5206
5207 typedef void (GLAPIENTRYP _glptr_BindTexture)(GLenum, GLuint);
5208 #define CALL_BindTexture(disp, parameters) \
5209 (* GET_BindTexture(disp)) parameters
5210 static inline _glptr_BindTexture GET_BindTexture(struct _glapi_table *disp) {
5211 return (_glptr_BindTexture) (GET_by_offset(disp, _gloffset_BindTexture));
5212 }
5213
5214 static inline void SET_BindTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
5215 SET_by_offset(disp, _gloffset_BindTexture, fn);
5216 }
5217
5218 typedef void (GLAPIENTRYP _glptr_ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
5219 #define CALL_ColorPointer(disp, parameters) \
5220 (* GET_ColorPointer(disp)) parameters
5221 static inline _glptr_ColorPointer GET_ColorPointer(struct _glapi_table *disp) {
5222 return (_glptr_ColorPointer) (GET_by_offset(disp, _gloffset_ColorPointer));
5223 }
5224
5225 static inline void SET_ColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
5226 SET_by_offset(disp, _gloffset_ColorPointer, fn);
5227 }
5228
5229 typedef void (GLAPIENTRYP _glptr_DisableClientState)(GLenum);
5230 #define CALL_DisableClientState(disp, parameters) \
5231 (* GET_DisableClientState(disp)) parameters
5232 static inline _glptr_DisableClientState GET_DisableClientState(struct _glapi_table *disp) {
5233 return (_glptr_DisableClientState) (GET_by_offset(disp, _gloffset_DisableClientState));
5234 }
5235
5236 static inline void SET_DisableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5237 SET_by_offset(disp, _gloffset_DisableClientState, fn);
5238 }
5239
5240 typedef void (GLAPIENTRYP _glptr_DrawArrays)(GLenum, GLint, GLsizei);
5241 #define CALL_DrawArrays(disp, parameters) \
5242 (* GET_DrawArrays(disp)) parameters
5243 static inline _glptr_DrawArrays GET_DrawArrays(struct _glapi_table *disp) {
5244 return (_glptr_DrawArrays) (GET_by_offset(disp, _gloffset_DrawArrays));
5245 }
5246
5247 static inline void SET_DrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei)) {
5248 SET_by_offset(disp, _gloffset_DrawArrays, fn);
5249 }
5250
5251 typedef void (GLAPIENTRYP _glptr_DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *);
5252 #define CALL_DrawElements(disp, parameters) \
5253 (* GET_DrawElements(disp)) parameters
5254 static inline _glptr_DrawElements GET_DrawElements(struct _glapi_table *disp) {
5255 return (_glptr_DrawElements) (GET_by_offset(disp, _gloffset_DrawElements));
5256 }
5257
5258 static inline void SET_DrawElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *)) {
5259 SET_by_offset(disp, _gloffset_DrawElements, fn);
5260 }
5261
5262 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointer)(GLsizei, const GLvoid *);
5263 #define CALL_EdgeFlagPointer(disp, parameters) \
5264 (* GET_EdgeFlagPointer(disp)) parameters
5265 static inline _glptr_EdgeFlagPointer GET_EdgeFlagPointer(struct _glapi_table *disp) {
5266 return (_glptr_EdgeFlagPointer) (GET_by_offset(disp, _gloffset_EdgeFlagPointer));
5267 }
5268
5269 static inline void SET_EdgeFlagPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
5270 SET_by_offset(disp, _gloffset_EdgeFlagPointer, fn);
5271 }
5272
5273 typedef void (GLAPIENTRYP _glptr_EnableClientState)(GLenum);
5274 #define CALL_EnableClientState(disp, parameters) \
5275 (* GET_EnableClientState(disp)) parameters
5276 static inline _glptr_EnableClientState GET_EnableClientState(struct _glapi_table *disp) {
5277 return (_glptr_EnableClientState) (GET_by_offset(disp, _gloffset_EnableClientState));
5278 }
5279
5280 static inline void SET_EnableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5281 SET_by_offset(disp, _gloffset_EnableClientState, fn);
5282 }
5283
5284 typedef void (GLAPIENTRYP _glptr_IndexPointer)(GLenum, GLsizei, const GLvoid *);
5285 #define CALL_IndexPointer(disp, parameters) \
5286 (* GET_IndexPointer(disp)) parameters
5287 static inline _glptr_IndexPointer GET_IndexPointer(struct _glapi_table *disp) {
5288 return (_glptr_IndexPointer) (GET_by_offset(disp, _gloffset_IndexPointer));
5289 }
5290
5291 static inline void SET_IndexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
5292 SET_by_offset(disp, _gloffset_IndexPointer, fn);
5293 }
5294
5295 typedef void (GLAPIENTRYP _glptr_Indexub)(GLubyte);
5296 #define CALL_Indexub(disp, parameters) \
5297 (* GET_Indexub(disp)) parameters
5298 static inline _glptr_Indexub GET_Indexub(struct _glapi_table *disp) {
5299 return (_glptr_Indexub) (GET_by_offset(disp, _gloffset_Indexub));
5300 }
5301
5302 static inline void SET_Indexub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte)) {
5303 SET_by_offset(disp, _gloffset_Indexub, fn);
5304 }
5305
5306 typedef void (GLAPIENTRYP _glptr_Indexubv)(const GLubyte *);
5307 #define CALL_Indexubv(disp, parameters) \
5308 (* GET_Indexubv(disp)) parameters
5309 static inline _glptr_Indexubv GET_Indexubv(struct _glapi_table *disp) {
5310 return (_glptr_Indexubv) (GET_by_offset(disp, _gloffset_Indexubv));
5311 }
5312
5313 static inline void SET_Indexubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
5314 SET_by_offset(disp, _gloffset_Indexubv, fn);
5315 }
5316
5317 typedef void (GLAPIENTRYP _glptr_InterleavedArrays)(GLenum, GLsizei, const GLvoid *);
5318 #define CALL_InterleavedArrays(disp, parameters) \
5319 (* GET_InterleavedArrays(disp)) parameters
5320 static inline _glptr_InterleavedArrays GET_InterleavedArrays(struct _glapi_table *disp) {
5321 return (_glptr_InterleavedArrays) (GET_by_offset(disp, _gloffset_InterleavedArrays));
5322 }
5323
5324 static inline void SET_InterleavedArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
5325 SET_by_offset(disp, _gloffset_InterleavedArrays, fn);
5326 }
5327
5328 typedef void (GLAPIENTRYP _glptr_NormalPointer)(GLenum, GLsizei, const GLvoid *);
5329 #define CALL_NormalPointer(disp, parameters) \
5330 (* GET_NormalPointer(disp)) parameters
5331 static inline _glptr_NormalPointer GET_NormalPointer(struct _glapi_table *disp) {
5332 return (_glptr_NormalPointer) (GET_by_offset(disp, _gloffset_NormalPointer));
5333 }
5334
5335 static inline void SET_NormalPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
5336 SET_by_offset(disp, _gloffset_NormalPointer, fn);
5337 }
5338
5339 typedef void (GLAPIENTRYP _glptr_PolygonOffset)(GLfloat, GLfloat);
5340 #define CALL_PolygonOffset(disp, parameters) \
5341 (* GET_PolygonOffset(disp)) parameters
5342 static inline _glptr_PolygonOffset GET_PolygonOffset(struct _glapi_table *disp) {
5343 return (_glptr_PolygonOffset) (GET_by_offset(disp, _gloffset_PolygonOffset));
5344 }
5345
5346 static inline void SET_PolygonOffset(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
5347 SET_by_offset(disp, _gloffset_PolygonOffset, fn);
5348 }
5349
5350 typedef void (GLAPIENTRYP _glptr_TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *);
5351 #define CALL_TexCoordPointer(disp, parameters) \
5352 (* GET_TexCoordPointer(disp)) parameters
5353 static inline _glptr_TexCoordPointer GET_TexCoordPointer(struct _glapi_table *disp) {
5354 return (_glptr_TexCoordPointer) (GET_by_offset(disp, _gloffset_TexCoordPointer));
5355 }
5356
5357 static inline void SET_TexCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
5358 SET_by_offset(disp, _gloffset_TexCoordPointer, fn);
5359 }
5360
5361 typedef void (GLAPIENTRYP _glptr_VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *);
5362 #define CALL_VertexPointer(disp, parameters) \
5363 (* GET_VertexPointer(disp)) parameters
5364 static inline _glptr_VertexPointer GET_VertexPointer(struct _glapi_table *disp) {
5365 return (_glptr_VertexPointer) (GET_by_offset(disp, _gloffset_VertexPointer));
5366 }
5367
5368 static inline void SET_VertexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
5369 SET_by_offset(disp, _gloffset_VertexPointer, fn);
5370 }
5371
5372 typedef GLboolean (GLAPIENTRYP _glptr_AreTexturesResident)(GLsizei, const GLuint *, GLboolean *);
5373 #define CALL_AreTexturesResident(disp, parameters) \
5374 (* GET_AreTexturesResident(disp)) parameters
5375 static inline _glptr_AreTexturesResident GET_AreTexturesResident(struct _glapi_table *disp) {
5376 return (_glptr_AreTexturesResident) (GET_by_offset(disp, _gloffset_AreTexturesResident));
5377 }
5378
5379 static inline void SET_AreTexturesResident(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
5380 SET_by_offset(disp, _gloffset_AreTexturesResident, fn);
5381 }
5382
5383 typedef void (GLAPIENTRYP _glptr_CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
5384 #define CALL_CopyTexImage1D(disp, parameters) \
5385 (* GET_CopyTexImage1D(disp)) parameters
5386 static inline _glptr_CopyTexImage1D GET_CopyTexImage1D(struct _glapi_table *disp) {
5387 return (_glptr_CopyTexImage1D) (GET_by_offset(disp, _gloffset_CopyTexImage1D));
5388 }
5389
5390 static inline void SET_CopyTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint)) {
5391 SET_by_offset(disp, _gloffset_CopyTexImage1D, fn);
5392 }
5393
5394 typedef void (GLAPIENTRYP _glptr_CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
5395 #define CALL_CopyTexImage2D(disp, parameters) \
5396 (* GET_CopyTexImage2D(disp)) parameters
5397 static inline _glptr_CopyTexImage2D GET_CopyTexImage2D(struct _glapi_table *disp) {
5398 return (_glptr_CopyTexImage2D) (GET_by_offset(disp, _gloffset_CopyTexImage2D));
5399 }
5400
5401 static inline void SET_CopyTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint)) {
5402 SET_by_offset(disp, _gloffset_CopyTexImage2D, fn);
5403 }
5404
5405 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
5406 #define CALL_CopyTexSubImage1D(disp, parameters) \
5407 (* GET_CopyTexSubImage1D(disp)) parameters
5408 static inline _glptr_CopyTexSubImage1D GET_CopyTexSubImage1D(struct _glapi_table *disp) {
5409 return (_glptr_CopyTexSubImage1D) (GET_by_offset(disp, _gloffset_CopyTexSubImage1D));
5410 }
5411
5412 static inline void SET_CopyTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei)) {
5413 SET_by_offset(disp, _gloffset_CopyTexSubImage1D, fn);
5414 }
5415
5416 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
5417 #define CALL_CopyTexSubImage2D(disp, parameters) \
5418 (* GET_CopyTexSubImage2D(disp)) parameters
5419 static inline _glptr_CopyTexSubImage2D GET_CopyTexSubImage2D(struct _glapi_table *disp) {
5420 return (_glptr_CopyTexSubImage2D) (GET_by_offset(disp, _gloffset_CopyTexSubImage2D));
5421 }
5422
5423 static inline void SET_CopyTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
5424 SET_by_offset(disp, _gloffset_CopyTexSubImage2D, fn);
5425 }
5426
5427 typedef void (GLAPIENTRYP _glptr_DeleteTextures)(GLsizei, const GLuint *);
5428 #define CALL_DeleteTextures(disp, parameters) \
5429 (* GET_DeleteTextures(disp)) parameters
5430 static inline _glptr_DeleteTextures GET_DeleteTextures(struct _glapi_table *disp) {
5431 return (_glptr_DeleteTextures) (GET_by_offset(disp, _gloffset_DeleteTextures));
5432 }
5433
5434 static inline void SET_DeleteTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
5435 SET_by_offset(disp, _gloffset_DeleteTextures, fn);
5436 }
5437
5438 typedef void (GLAPIENTRYP _glptr_GenTextures)(GLsizei, GLuint *);
5439 #define CALL_GenTextures(disp, parameters) \
5440 (* GET_GenTextures(disp)) parameters
5441 static inline _glptr_GenTextures GET_GenTextures(struct _glapi_table *disp) {
5442 return (_glptr_GenTextures) (GET_by_offset(disp, _gloffset_GenTextures));
5443 }
5444
5445 static inline void SET_GenTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
5446 SET_by_offset(disp, _gloffset_GenTextures, fn);
5447 }
5448
5449 typedef void (GLAPIENTRYP _glptr_GetPointerv)(GLenum, GLvoid **);
5450 #define CALL_GetPointerv(disp, parameters) \
5451 (* GET_GetPointerv(disp)) parameters
5452 static inline _glptr_GetPointerv GET_GetPointerv(struct _glapi_table *disp) {
5453 return (_glptr_GetPointerv) (GET_by_offset(disp, _gloffset_GetPointerv));
5454 }
5455
5456 static inline void SET_GetPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid **)) {
5457 SET_by_offset(disp, _gloffset_GetPointerv, fn);
5458 }
5459
5460 typedef GLboolean (GLAPIENTRYP _glptr_IsTexture)(GLuint);
5461 #define CALL_IsTexture(disp, parameters) \
5462 (* GET_IsTexture(disp)) parameters
5463 static inline _glptr_IsTexture GET_IsTexture(struct _glapi_table *disp) {
5464 return (_glptr_IsTexture) (GET_by_offset(disp, _gloffset_IsTexture));
5465 }
5466
5467 static inline void SET_IsTexture(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
5468 SET_by_offset(disp, _gloffset_IsTexture, fn);
5469 }
5470
5471 typedef void (GLAPIENTRYP _glptr_PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *);
5472 #define CALL_PrioritizeTextures(disp, parameters) \
5473 (* GET_PrioritizeTextures(disp)) parameters
5474 static inline _glptr_PrioritizeTextures GET_PrioritizeTextures(struct _glapi_table *disp) {
5475 return (_glptr_PrioritizeTextures) (GET_by_offset(disp, _gloffset_PrioritizeTextures));
5476 }
5477
5478 static inline void SET_PrioritizeTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, const GLclampf *)) {
5479 SET_by_offset(disp, _gloffset_PrioritizeTextures, fn);
5480 }
5481
5482 typedef void (GLAPIENTRYP _glptr_TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
5483 #define CALL_TexSubImage1D(disp, parameters) \
5484 (* GET_TexSubImage1D(disp)) parameters
5485 static inline _glptr_TexSubImage1D GET_TexSubImage1D(struct _glapi_table *disp) {
5486 return (_glptr_TexSubImage1D) (GET_by_offset(disp, _gloffset_TexSubImage1D));
5487 }
5488
5489 static inline void SET_TexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) {
5490 SET_by_offset(disp, _gloffset_TexSubImage1D, fn);
5491 }
5492
5493 typedef void (GLAPIENTRYP _glptr_TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5494 #define CALL_TexSubImage2D(disp, parameters) \
5495 (* GET_TexSubImage2D(disp)) parameters
5496 static inline _glptr_TexSubImage2D GET_TexSubImage2D(struct _glapi_table *disp) {
5497 return (_glptr_TexSubImage2D) (GET_by_offset(disp, _gloffset_TexSubImage2D));
5498 }
5499
5500 static inline void SET_TexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5501 SET_by_offset(disp, _gloffset_TexSubImage2D, fn);
5502 }
5503
5504 typedef void (GLAPIENTRYP _glptr_PopClientAttrib)(void);
5505 #define CALL_PopClientAttrib(disp, parameters) \
5506 (* GET_PopClientAttrib(disp)) parameters
5507 static inline _glptr_PopClientAttrib GET_PopClientAttrib(struct _glapi_table *disp) {
5508 return (_glptr_PopClientAttrib) (GET_by_offset(disp, _gloffset_PopClientAttrib));
5509 }
5510
5511 static inline void SET_PopClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5512 SET_by_offset(disp, _gloffset_PopClientAttrib, fn);
5513 }
5514
5515 typedef void (GLAPIENTRYP _glptr_PushClientAttrib)(GLbitfield);
5516 #define CALL_PushClientAttrib(disp, parameters) \
5517 (* GET_PushClientAttrib(disp)) parameters
5518 static inline _glptr_PushClientAttrib GET_PushClientAttrib(struct _glapi_table *disp) {
5519 return (_glptr_PushClientAttrib) (GET_by_offset(disp, _gloffset_PushClientAttrib));
5520 }
5521
5522 static inline void SET_PushClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
5523 SET_by_offset(disp, _gloffset_PushClientAttrib, fn);
5524 }
5525
5526 typedef void (GLAPIENTRYP _glptr_BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf);
5527 #define CALL_BlendColor(disp, parameters) \
5528 (* GET_BlendColor(disp)) parameters
5529 static inline _glptr_BlendColor GET_BlendColor(struct _glapi_table *disp) {
5530 return (_glptr_BlendColor) (GET_by_offset(disp, _gloffset_BlendColor));
5531 }
5532
5533 static inline void SET_BlendColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
5534 SET_by_offset(disp, _gloffset_BlendColor, fn);
5535 }
5536
5537 typedef void (GLAPIENTRYP _glptr_BlendEquation)(GLenum);
5538 #define CALL_BlendEquation(disp, parameters) \
5539 (* GET_BlendEquation(disp)) parameters
5540 static inline _glptr_BlendEquation GET_BlendEquation(struct _glapi_table *disp) {
5541 return (_glptr_BlendEquation) (GET_by_offset(disp, _gloffset_BlendEquation));
5542 }
5543
5544 static inline void SET_BlendEquation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5545 SET_by_offset(disp, _gloffset_BlendEquation, fn);
5546 }
5547
5548 typedef void (GLAPIENTRYP _glptr_DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
5549 #define CALL_DrawRangeElements(disp, parameters) \
5550 (* GET_DrawRangeElements(disp)) parameters
5551 static inline _glptr_DrawRangeElements GET_DrawRangeElements(struct _glapi_table *disp) {
5552 return (_glptr_DrawRangeElements) (GET_by_offset(disp, _gloffset_DrawRangeElements));
5553 }
5554
5555 static inline void SET_DrawRangeElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *)) {
5556 SET_by_offset(disp, _gloffset_DrawRangeElements, fn);
5557 }
5558
5559 typedef void (GLAPIENTRYP _glptr_ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
5560 #define CALL_ColorTable(disp, parameters) \
5561 (* GET_ColorTable(disp)) parameters
5562 static inline _glptr_ColorTable GET_ColorTable(struct _glapi_table *disp) {
5563 return (_glptr_ColorTable) (GET_by_offset(disp, _gloffset_ColorTable));
5564 }
5565
5566 static inline void SET_ColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
5567 SET_by_offset(disp, _gloffset_ColorTable, fn);
5568 }
5569
5570 typedef void (GLAPIENTRYP _glptr_ColorTableParameterfv)(GLenum, GLenum, const GLfloat *);
5571 #define CALL_ColorTableParameterfv(disp, parameters) \
5572 (* GET_ColorTableParameterfv(disp)) parameters
5573 static inline _glptr_ColorTableParameterfv GET_ColorTableParameterfv(struct _glapi_table *disp) {
5574 return (_glptr_ColorTableParameterfv) (GET_by_offset(disp, _gloffset_ColorTableParameterfv));
5575 }
5576
5577 static inline void SET_ColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
5578 SET_by_offset(disp, _gloffset_ColorTableParameterfv, fn);
5579 }
5580
5581 typedef void (GLAPIENTRYP _glptr_ColorTableParameteriv)(GLenum, GLenum, const GLint *);
5582 #define CALL_ColorTableParameteriv(disp, parameters) \
5583 (* GET_ColorTableParameteriv(disp)) parameters
5584 static inline _glptr_ColorTableParameteriv GET_ColorTableParameteriv(struct _glapi_table *disp) {
5585 return (_glptr_ColorTableParameteriv) (GET_by_offset(disp, _gloffset_ColorTableParameteriv));
5586 }
5587
5588 static inline void SET_ColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
5589 SET_by_offset(disp, _gloffset_ColorTableParameteriv, fn);
5590 }
5591
5592 typedef void (GLAPIENTRYP _glptr_CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei);
5593 #define CALL_CopyColorTable(disp, parameters) \
5594 (* GET_CopyColorTable(disp)) parameters
5595 static inline _glptr_CopyColorTable GET_CopyColorTable(struct _glapi_table *disp) {
5596 return (_glptr_CopyColorTable) (GET_by_offset(disp, _gloffset_CopyColorTable));
5597 }
5598
5599 static inline void SET_CopyColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
5600 SET_by_offset(disp, _gloffset_CopyColorTable, fn);
5601 }
5602
5603 typedef void (GLAPIENTRYP _glptr_GetColorTable)(GLenum, GLenum, GLenum, GLvoid *);
5604 #define CALL_GetColorTable(disp, parameters) \
5605 (* GET_GetColorTable(disp)) parameters
5606 static inline _glptr_GetColorTable GET_GetColorTable(struct _glapi_table *disp) {
5607 return (_glptr_GetColorTable) (GET_by_offset(disp, _gloffset_GetColorTable));
5608 }
5609
5610 static inline void SET_GetColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
5611 SET_by_offset(disp, _gloffset_GetColorTable, fn);
5612 }
5613
5614 typedef void (GLAPIENTRYP _glptr_GetColorTableParameterfv)(GLenum, GLenum, GLfloat *);
5615 #define CALL_GetColorTableParameterfv(disp, parameters) \
5616 (* GET_GetColorTableParameterfv(disp)) parameters
5617 static inline _glptr_GetColorTableParameterfv GET_GetColorTableParameterfv(struct _glapi_table *disp) {
5618 return (_glptr_GetColorTableParameterfv) (GET_by_offset(disp, _gloffset_GetColorTableParameterfv));
5619 }
5620
5621 static inline void SET_GetColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5622 SET_by_offset(disp, _gloffset_GetColorTableParameterfv, fn);
5623 }
5624
5625 typedef void (GLAPIENTRYP _glptr_GetColorTableParameteriv)(GLenum, GLenum, GLint *);
5626 #define CALL_GetColorTableParameteriv(disp, parameters) \
5627 (* GET_GetColorTableParameteriv(disp)) parameters
5628 static inline _glptr_GetColorTableParameteriv GET_GetColorTableParameteriv(struct _glapi_table *disp) {
5629 return (_glptr_GetColorTableParameteriv) (GET_by_offset(disp, _gloffset_GetColorTableParameteriv));
5630 }
5631
5632 static inline void SET_GetColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5633 SET_by_offset(disp, _gloffset_GetColorTableParameteriv, fn);
5634 }
5635
5636 typedef void (GLAPIENTRYP _glptr_ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5637 #define CALL_ColorSubTable(disp, parameters) \
5638 (* GET_ColorSubTable(disp)) parameters
5639 static inline _glptr_ColorSubTable GET_ColorSubTable(struct _glapi_table *disp) {
5640 return (_glptr_ColorSubTable) (GET_by_offset(disp, _gloffset_ColorSubTable));
5641 }
5642
5643 static inline void SET_ColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5644 SET_by_offset(disp, _gloffset_ColorSubTable, fn);
5645 }
5646
5647 typedef void (GLAPIENTRYP _glptr_CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei);
5648 #define CALL_CopyColorSubTable(disp, parameters) \
5649 (* GET_CopyColorSubTable(disp)) parameters
5650 static inline _glptr_CopyColorSubTable GET_CopyColorSubTable(struct _glapi_table *disp) {
5651 return (_glptr_CopyColorSubTable) (GET_by_offset(disp, _gloffset_CopyColorSubTable));
5652 }
5653
5654 static inline void SET_CopyColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLint, GLint, GLsizei)) {
5655 SET_by_offset(disp, _gloffset_CopyColorSubTable, fn);
5656 }
5657
5658 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
5659 #define CALL_ConvolutionFilter1D(disp, parameters) \
5660 (* GET_ConvolutionFilter1D(disp)) parameters
5661 static inline _glptr_ConvolutionFilter1D GET_ConvolutionFilter1D(struct _glapi_table *disp) {
5662 return (_glptr_ConvolutionFilter1D) (GET_by_offset(disp, _gloffset_ConvolutionFilter1D));
5663 }
5664
5665 static inline void SET_ConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
5666 SET_by_offset(disp, _gloffset_ConvolutionFilter1D, fn);
5667 }
5668
5669 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5670 #define CALL_ConvolutionFilter2D(disp, parameters) \
5671 (* GET_ConvolutionFilter2D(disp)) parameters
5672 static inline _glptr_ConvolutionFilter2D GET_ConvolutionFilter2D(struct _glapi_table *disp) {
5673 return (_glptr_ConvolutionFilter2D) (GET_by_offset(disp, _gloffset_ConvolutionFilter2D));
5674 }
5675
5676 static inline void SET_ConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5677 SET_by_offset(disp, _gloffset_ConvolutionFilter2D, fn);
5678 }
5679
5680 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterf)(GLenum, GLenum, GLfloat);
5681 #define CALL_ConvolutionParameterf(disp, parameters) \
5682 (* GET_ConvolutionParameterf(disp)) parameters
5683 static inline _glptr_ConvolutionParameterf GET_ConvolutionParameterf(struct _glapi_table *disp) {
5684 return (_glptr_ConvolutionParameterf) (GET_by_offset(disp, _gloffset_ConvolutionParameterf));
5685 }
5686
5687 static inline void SET_ConvolutionParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
5688 SET_by_offset(disp, _gloffset_ConvolutionParameterf, fn);
5689 }
5690
5691 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *);
5692 #define CALL_ConvolutionParameterfv(disp, parameters) \
5693 (* GET_ConvolutionParameterfv(disp)) parameters
5694 static inline _glptr_ConvolutionParameterfv GET_ConvolutionParameterfv(struct _glapi_table *disp) {
5695 return (_glptr_ConvolutionParameterfv) (GET_by_offset(disp, _gloffset_ConvolutionParameterfv));
5696 }
5697
5698 static inline void SET_ConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
5699 SET_by_offset(disp, _gloffset_ConvolutionParameterfv, fn);
5700 }
5701
5702 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteri)(GLenum, GLenum, GLint);
5703 #define CALL_ConvolutionParameteri(disp, parameters) \
5704 (* GET_ConvolutionParameteri(disp)) parameters
5705 static inline _glptr_ConvolutionParameteri GET_ConvolutionParameteri(struct _glapi_table *disp) {
5706 return (_glptr_ConvolutionParameteri) (GET_by_offset(disp, _gloffset_ConvolutionParameteri));
5707 }
5708
5709 static inline void SET_ConvolutionParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
5710 SET_by_offset(disp, _gloffset_ConvolutionParameteri, fn);
5711 }
5712
5713 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteriv)(GLenum, GLenum, const GLint *);
5714 #define CALL_ConvolutionParameteriv(disp, parameters) \
5715 (* GET_ConvolutionParameteriv(disp)) parameters
5716 static inline _glptr_ConvolutionParameteriv GET_ConvolutionParameteriv(struct _glapi_table *disp) {
5717 return (_glptr_ConvolutionParameteriv) (GET_by_offset(disp, _gloffset_ConvolutionParameteriv));
5718 }
5719
5720 static inline void SET_ConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
5721 SET_by_offset(disp, _gloffset_ConvolutionParameteriv, fn);
5722 }
5723
5724 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter1D)(GLenum, GLenum, GLint, GLint, GLsizei);
5725 #define CALL_CopyConvolutionFilter1D(disp, parameters) \
5726 (* GET_CopyConvolutionFilter1D(disp)) parameters
5727 static inline _glptr_CopyConvolutionFilter1D GET_CopyConvolutionFilter1D(struct _glapi_table *disp) {
5728 return (_glptr_CopyConvolutionFilter1D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter1D));
5729 }
5730
5731 static inline void SET_CopyConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
5732 SET_by_offset(disp, _gloffset_CopyConvolutionFilter1D, fn);
5733 }
5734
5735 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter2D)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
5736 #define CALL_CopyConvolutionFilter2D(disp, parameters) \
5737 (* GET_CopyConvolutionFilter2D(disp)) parameters
5738 static inline _glptr_CopyConvolutionFilter2D GET_CopyConvolutionFilter2D(struct _glapi_table *disp) {
5739 return (_glptr_CopyConvolutionFilter2D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter2D));
5740 }
5741
5742 static inline void SET_CopyConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei)) {
5743 SET_by_offset(disp, _gloffset_CopyConvolutionFilter2D, fn);
5744 }
5745
5746 typedef void (GLAPIENTRYP _glptr_GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *);
5747 #define CALL_GetConvolutionFilter(disp, parameters) \
5748 (* GET_GetConvolutionFilter(disp)) parameters
5749 static inline _glptr_GetConvolutionFilter GET_GetConvolutionFilter(struct _glapi_table *disp) {
5750 return (_glptr_GetConvolutionFilter) (GET_by_offset(disp, _gloffset_GetConvolutionFilter));
5751 }
5752
5753 static inline void SET_GetConvolutionFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
5754 SET_by_offset(disp, _gloffset_GetConvolutionFilter, fn);
5755 }
5756
5757 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *);
5758 #define CALL_GetConvolutionParameterfv(disp, parameters) \
5759 (* GET_GetConvolutionParameterfv(disp)) parameters
5760 static inline _glptr_GetConvolutionParameterfv GET_GetConvolutionParameterfv(struct _glapi_table *disp) {
5761 return (_glptr_GetConvolutionParameterfv) (GET_by_offset(disp, _gloffset_GetConvolutionParameterfv));
5762 }
5763
5764 static inline void SET_GetConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5765 SET_by_offset(disp, _gloffset_GetConvolutionParameterfv, fn);
5766 }
5767
5768 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameteriv)(GLenum, GLenum, GLint *);
5769 #define CALL_GetConvolutionParameteriv(disp, parameters) \
5770 (* GET_GetConvolutionParameteriv(disp)) parameters
5771 static inline _glptr_GetConvolutionParameteriv GET_GetConvolutionParameteriv(struct _glapi_table *disp) {
5772 return (_glptr_GetConvolutionParameteriv) (GET_by_offset(disp, _gloffset_GetConvolutionParameteriv));
5773 }
5774
5775 static inline void SET_GetConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5776 SET_by_offset(disp, _gloffset_GetConvolutionParameteriv, fn);
5777 }
5778
5779 typedef void (GLAPIENTRYP _glptr_GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
5780 #define CALL_GetSeparableFilter(disp, parameters) \
5781 (* GET_GetSeparableFilter(disp)) parameters
5782 static inline _glptr_GetSeparableFilter GET_GetSeparableFilter(struct _glapi_table *disp) {
5783 return (_glptr_GetSeparableFilter) (GET_by_offset(disp, _gloffset_GetSeparableFilter));
5784 }
5785
5786 static inline void SET_GetSeparableFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *)) {
5787 SET_by_offset(disp, _gloffset_GetSeparableFilter, fn);
5788 }
5789
5790 typedef void (GLAPIENTRYP _glptr_SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
5791 #define CALL_SeparableFilter2D(disp, parameters) \
5792 (* GET_SeparableFilter2D(disp)) parameters
5793 static inline _glptr_SeparableFilter2D GET_SeparableFilter2D(struct _glapi_table *disp) {
5794 return (_glptr_SeparableFilter2D) (GET_by_offset(disp, _gloffset_SeparableFilter2D));
5795 }
5796
5797 static inline void SET_SeparableFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *)) {
5798 SET_by_offset(disp, _gloffset_SeparableFilter2D, fn);
5799 }
5800
5801 typedef void (GLAPIENTRYP _glptr_GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
5802 #define CALL_GetHistogram(disp, parameters) \
5803 (* GET_GetHistogram(disp)) parameters
5804 static inline _glptr_GetHistogram GET_GetHistogram(struct _glapi_table *disp) {
5805 return (_glptr_GetHistogram) (GET_by_offset(disp, _gloffset_GetHistogram));
5806 }
5807
5808 static inline void SET_GetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
5809 SET_by_offset(disp, _gloffset_GetHistogram, fn);
5810 }
5811
5812 typedef void (GLAPIENTRYP _glptr_GetHistogramParameterfv)(GLenum, GLenum, GLfloat *);
5813 #define CALL_GetHistogramParameterfv(disp, parameters) \
5814 (* GET_GetHistogramParameterfv(disp)) parameters
5815 static inline _glptr_GetHistogramParameterfv GET_GetHistogramParameterfv(struct _glapi_table *disp) {
5816 return (_glptr_GetHistogramParameterfv) (GET_by_offset(disp, _gloffset_GetHistogramParameterfv));
5817 }
5818
5819 static inline void SET_GetHistogramParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5820 SET_by_offset(disp, _gloffset_GetHistogramParameterfv, fn);
5821 }
5822
5823 typedef void (GLAPIENTRYP _glptr_GetHistogramParameteriv)(GLenum, GLenum, GLint *);
5824 #define CALL_GetHistogramParameteriv(disp, parameters) \
5825 (* GET_GetHistogramParameteriv(disp)) parameters
5826 static inline _glptr_GetHistogramParameteriv GET_GetHistogramParameteriv(struct _glapi_table *disp) {
5827 return (_glptr_GetHistogramParameteriv) (GET_by_offset(disp, _gloffset_GetHistogramParameteriv));
5828 }
5829
5830 static inline void SET_GetHistogramParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5831 SET_by_offset(disp, _gloffset_GetHistogramParameteriv, fn);
5832 }
5833
5834 typedef void (GLAPIENTRYP _glptr_GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
5835 #define CALL_GetMinmax(disp, parameters) \
5836 (* GET_GetMinmax(disp)) parameters
5837 static inline _glptr_GetMinmax GET_GetMinmax(struct _glapi_table *disp) {
5838 return (_glptr_GetMinmax) (GET_by_offset(disp, _gloffset_GetMinmax));
5839 }
5840
5841 static inline void SET_GetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
5842 SET_by_offset(disp, _gloffset_GetMinmax, fn);
5843 }
5844
5845 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *);
5846 #define CALL_GetMinmaxParameterfv(disp, parameters) \
5847 (* GET_GetMinmaxParameterfv(disp)) parameters
5848 static inline _glptr_GetMinmaxParameterfv GET_GetMinmaxParameterfv(struct _glapi_table *disp) {
5849 return (_glptr_GetMinmaxParameterfv) (GET_by_offset(disp, _gloffset_GetMinmaxParameterfv));
5850 }
5851
5852 static inline void SET_GetMinmaxParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5853 SET_by_offset(disp, _gloffset_GetMinmaxParameterfv, fn);
5854 }
5855
5856 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameteriv)(GLenum, GLenum, GLint *);
5857 #define CALL_GetMinmaxParameteriv(disp, parameters) \
5858 (* GET_GetMinmaxParameteriv(disp)) parameters
5859 static inline _glptr_GetMinmaxParameteriv GET_GetMinmaxParameteriv(struct _glapi_table *disp) {
5860 return (_glptr_GetMinmaxParameteriv) (GET_by_offset(disp, _gloffset_GetMinmaxParameteriv));
5861 }
5862
5863 static inline void SET_GetMinmaxParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5864 SET_by_offset(disp, _gloffset_GetMinmaxParameteriv, fn);
5865 }
5866
5867 typedef void (GLAPIENTRYP _glptr_Histogram)(GLenum, GLsizei, GLenum, GLboolean);
5868 #define CALL_Histogram(disp, parameters) \
5869 (* GET_Histogram(disp)) parameters
5870 static inline _glptr_Histogram GET_Histogram(struct _glapi_table *disp) {
5871 return (_glptr_Histogram) (GET_by_offset(disp, _gloffset_Histogram));
5872 }
5873
5874 static inline void SET_Histogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLboolean)) {
5875 SET_by_offset(disp, _gloffset_Histogram, fn);
5876 }
5877
5878 typedef void (GLAPIENTRYP _glptr_Minmax)(GLenum, GLenum, GLboolean);
5879 #define CALL_Minmax(disp, parameters) \
5880 (* GET_Minmax(disp)) parameters
5881 static inline _glptr_Minmax GET_Minmax(struct _glapi_table *disp) {
5882 return (_glptr_Minmax) (GET_by_offset(disp, _gloffset_Minmax));
5883 }
5884
5885 static inline void SET_Minmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLboolean)) {
5886 SET_by_offset(disp, _gloffset_Minmax, fn);
5887 }
5888
5889 typedef void (GLAPIENTRYP _glptr_ResetHistogram)(GLenum);
5890 #define CALL_ResetHistogram(disp, parameters) \
5891 (* GET_ResetHistogram(disp)) parameters
5892 static inline _glptr_ResetHistogram GET_ResetHistogram(struct _glapi_table *disp) {
5893 return (_glptr_ResetHistogram) (GET_by_offset(disp, _gloffset_ResetHistogram));
5894 }
5895
5896 static inline void SET_ResetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5897 SET_by_offset(disp, _gloffset_ResetHistogram, fn);
5898 }
5899
5900 typedef void (GLAPIENTRYP _glptr_ResetMinmax)(GLenum);
5901 #define CALL_ResetMinmax(disp, parameters) \
5902 (* GET_ResetMinmax(disp)) parameters
5903 static inline _glptr_ResetMinmax GET_ResetMinmax(struct _glapi_table *disp) {
5904 return (_glptr_ResetMinmax) (GET_by_offset(disp, _gloffset_ResetMinmax));
5905 }
5906
5907 static inline void SET_ResetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5908 SET_by_offset(disp, _gloffset_ResetMinmax, fn);
5909 }
5910
5911 typedef void (GLAPIENTRYP _glptr_TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
5912 #define CALL_TexImage3D(disp, parameters) \
5913 (* GET_TexImage3D(disp)) parameters
5914 static inline _glptr_TexImage3D GET_TexImage3D(struct _glapi_table *disp) {
5915 return (_glptr_TexImage3D) (GET_by_offset(disp, _gloffset_TexImage3D));
5916 }
5917
5918 static inline void SET_TexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
5919 SET_by_offset(disp, _gloffset_TexImage3D, fn);
5920 }
5921
5922 typedef void (GLAPIENTRYP _glptr_TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5923 #define CALL_TexSubImage3D(disp, parameters) \
5924 (* GET_TexSubImage3D(disp)) parameters
5925 static inline _glptr_TexSubImage3D GET_TexSubImage3D(struct _glapi_table *disp) {
5926 return (_glptr_TexSubImage3D) (GET_by_offset(disp, _gloffset_TexSubImage3D));
5927 }
5928
5929 static inline void SET_TexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5930 SET_by_offset(disp, _gloffset_TexSubImage3D, fn);
5931 }
5932
5933 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
5934 #define CALL_CopyTexSubImage3D(disp, parameters) \
5935 (* GET_CopyTexSubImage3D(disp)) parameters
5936 static inline _glptr_CopyTexSubImage3D GET_CopyTexSubImage3D(struct _glapi_table *disp) {
5937 return (_glptr_CopyTexSubImage3D) (GET_by_offset(disp, _gloffset_CopyTexSubImage3D));
5938 }
5939
5940 static inline void SET_CopyTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
5941 SET_by_offset(disp, _gloffset_CopyTexSubImage3D, fn);
5942 }
5943
5944 typedef void (GLAPIENTRYP _glptr_ActiveTextureARB)(GLenum);
5945 #define CALL_ActiveTextureARB(disp, parameters) \
5946 (* GET_ActiveTextureARB(disp)) parameters
5947 static inline _glptr_ActiveTextureARB GET_ActiveTextureARB(struct _glapi_table *disp) {
5948 return (_glptr_ActiveTextureARB) (GET_by_offset(disp, _gloffset_ActiveTextureARB));
5949 }
5950
5951 static inline void SET_ActiveTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5952 SET_by_offset(disp, _gloffset_ActiveTextureARB, fn);
5953 }
5954
5955 typedef void (GLAPIENTRYP _glptr_ClientActiveTextureARB)(GLenum);
5956 #define CALL_ClientActiveTextureARB(disp, parameters) \
5957 (* GET_ClientActiveTextureARB(disp)) parameters
5958 static inline _glptr_ClientActiveTextureARB GET_ClientActiveTextureARB(struct _glapi_table *disp) {
5959 return (_glptr_ClientActiveTextureARB) (GET_by_offset(disp, _gloffset_ClientActiveTextureARB));
5960 }
5961
5962 static inline void SET_ClientActiveTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5963 SET_by_offset(disp, _gloffset_ClientActiveTextureARB, fn);
5964 }
5965
5966 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dARB)(GLenum, GLdouble);
5967 #define CALL_MultiTexCoord1dARB(disp, parameters) \
5968 (* GET_MultiTexCoord1dARB(disp)) parameters
5969 static inline _glptr_MultiTexCoord1dARB GET_MultiTexCoord1dARB(struct _glapi_table *disp) {
5970 return (_glptr_MultiTexCoord1dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1dARB));
5971 }
5972
5973 static inline void SET_MultiTexCoord1dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble)) {
5974 SET_by_offset(disp, _gloffset_MultiTexCoord1dARB, fn);
5975 }
5976
5977 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dvARB)(GLenum, const GLdouble *);
5978 #define CALL_MultiTexCoord1dvARB(disp, parameters) \
5979 (* GET_MultiTexCoord1dvARB(disp)) parameters
5980 static inline _glptr_MultiTexCoord1dvARB GET_MultiTexCoord1dvARB(struct _glapi_table *disp) {
5981 return (_glptr_MultiTexCoord1dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1dvARB));
5982 }
5983
5984 static inline void SET_MultiTexCoord1dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
5985 SET_by_offset(disp, _gloffset_MultiTexCoord1dvARB, fn);
5986 }
5987
5988 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fARB)(GLenum, GLfloat);
5989 #define CALL_MultiTexCoord1fARB(disp, parameters) \
5990 (* GET_MultiTexCoord1fARB(disp)) parameters
5991 static inline _glptr_MultiTexCoord1fARB GET_MultiTexCoord1fARB(struct _glapi_table *disp) {
5992 return (_glptr_MultiTexCoord1fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fARB));
5993 }
5994
5995 static inline void SET_MultiTexCoord1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
5996 SET_by_offset(disp, _gloffset_MultiTexCoord1fARB, fn);
5997 }
5998
5999 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fvARB)(GLenum, const GLfloat *);
6000 #define CALL_MultiTexCoord1fvARB(disp, parameters) \
6001 (* GET_MultiTexCoord1fvARB(disp)) parameters
6002 static inline _glptr_MultiTexCoord1fvARB GET_MultiTexCoord1fvARB(struct _glapi_table *disp) {
6003 return (_glptr_MultiTexCoord1fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fvARB));
6004 }
6005
6006 static inline void SET_MultiTexCoord1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6007 SET_by_offset(disp, _gloffset_MultiTexCoord1fvARB, fn);
6008 }
6009
6010 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1iARB)(GLenum, GLint);
6011 #define CALL_MultiTexCoord1iARB(disp, parameters) \
6012 (* GET_MultiTexCoord1iARB(disp)) parameters
6013 static inline _glptr_MultiTexCoord1iARB GET_MultiTexCoord1iARB(struct _glapi_table *disp) {
6014 return (_glptr_MultiTexCoord1iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1iARB));
6015 }
6016
6017 static inline void SET_MultiTexCoord1iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
6018 SET_by_offset(disp, _gloffset_MultiTexCoord1iARB, fn);
6019 }
6020
6021 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1ivARB)(GLenum, const GLint *);
6022 #define CALL_MultiTexCoord1ivARB(disp, parameters) \
6023 (* GET_MultiTexCoord1ivARB(disp)) parameters
6024 static inline _glptr_MultiTexCoord1ivARB GET_MultiTexCoord1ivARB(struct _glapi_table *disp) {
6025 return (_glptr_MultiTexCoord1ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1ivARB));
6026 }
6027
6028 static inline void SET_MultiTexCoord1ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6029 SET_by_offset(disp, _gloffset_MultiTexCoord1ivARB, fn);
6030 }
6031
6032 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1sARB)(GLenum, GLshort);
6033 #define CALL_MultiTexCoord1sARB(disp, parameters) \
6034 (* GET_MultiTexCoord1sARB(disp)) parameters
6035 static inline _glptr_MultiTexCoord1sARB GET_MultiTexCoord1sARB(struct _glapi_table *disp) {
6036 return (_glptr_MultiTexCoord1sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1sARB));
6037 }
6038
6039 static inline void SET_MultiTexCoord1sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort)) {
6040 SET_by_offset(disp, _gloffset_MultiTexCoord1sARB, fn);
6041 }
6042
6043 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1svARB)(GLenum, const GLshort *);
6044 #define CALL_MultiTexCoord1svARB(disp, parameters) \
6045 (* GET_MultiTexCoord1svARB(disp)) parameters
6046 static inline _glptr_MultiTexCoord1svARB GET_MultiTexCoord1svARB(struct _glapi_table *disp) {
6047 return (_glptr_MultiTexCoord1svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1svARB));
6048 }
6049
6050 static inline void SET_MultiTexCoord1svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6051 SET_by_offset(disp, _gloffset_MultiTexCoord1svARB, fn);
6052 }
6053
6054 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dARB)(GLenum, GLdouble, GLdouble);
6055 #define CALL_MultiTexCoord2dARB(disp, parameters) \
6056 (* GET_MultiTexCoord2dARB(disp)) parameters
6057 static inline _glptr_MultiTexCoord2dARB GET_MultiTexCoord2dARB(struct _glapi_table *disp) {
6058 return (_glptr_MultiTexCoord2dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2dARB));
6059 }
6060
6061 static inline void SET_MultiTexCoord2dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble)) {
6062 SET_by_offset(disp, _gloffset_MultiTexCoord2dARB, fn);
6063 }
6064
6065 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dvARB)(GLenum, const GLdouble *);
6066 #define CALL_MultiTexCoord2dvARB(disp, parameters) \
6067 (* GET_MultiTexCoord2dvARB(disp)) parameters
6068 static inline _glptr_MultiTexCoord2dvARB GET_MultiTexCoord2dvARB(struct _glapi_table *disp) {
6069 return (_glptr_MultiTexCoord2dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2dvARB));
6070 }
6071
6072 static inline void SET_MultiTexCoord2dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6073 SET_by_offset(disp, _gloffset_MultiTexCoord2dvARB, fn);
6074 }
6075
6076 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fARB)(GLenum, GLfloat, GLfloat);
6077 #define CALL_MultiTexCoord2fARB(disp, parameters) \
6078 (* GET_MultiTexCoord2fARB(disp)) parameters
6079 static inline _glptr_MultiTexCoord2fARB GET_MultiTexCoord2fARB(struct _glapi_table *disp) {
6080 return (_glptr_MultiTexCoord2fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fARB));
6081 }
6082
6083 static inline void SET_MultiTexCoord2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat)) {
6084 SET_by_offset(disp, _gloffset_MultiTexCoord2fARB, fn);
6085 }
6086
6087 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fvARB)(GLenum, const GLfloat *);
6088 #define CALL_MultiTexCoord2fvARB(disp, parameters) \
6089 (* GET_MultiTexCoord2fvARB(disp)) parameters
6090 static inline _glptr_MultiTexCoord2fvARB GET_MultiTexCoord2fvARB(struct _glapi_table *disp) {
6091 return (_glptr_MultiTexCoord2fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fvARB));
6092 }
6093
6094 static inline void SET_MultiTexCoord2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6095 SET_by_offset(disp, _gloffset_MultiTexCoord2fvARB, fn);
6096 }
6097
6098 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2iARB)(GLenum, GLint, GLint);
6099 #define CALL_MultiTexCoord2iARB(disp, parameters) \
6100 (* GET_MultiTexCoord2iARB(disp)) parameters
6101 static inline _glptr_MultiTexCoord2iARB GET_MultiTexCoord2iARB(struct _glapi_table *disp) {
6102 return (_glptr_MultiTexCoord2iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2iARB));
6103 }
6104
6105 static inline void SET_MultiTexCoord2iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
6106 SET_by_offset(disp, _gloffset_MultiTexCoord2iARB, fn);
6107 }
6108
6109 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2ivARB)(GLenum, const GLint *);
6110 #define CALL_MultiTexCoord2ivARB(disp, parameters) \
6111 (* GET_MultiTexCoord2ivARB(disp)) parameters
6112 static inline _glptr_MultiTexCoord2ivARB GET_MultiTexCoord2ivARB(struct _glapi_table *disp) {
6113 return (_glptr_MultiTexCoord2ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2ivARB));
6114 }
6115
6116 static inline void SET_MultiTexCoord2ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6117 SET_by_offset(disp, _gloffset_MultiTexCoord2ivARB, fn);
6118 }
6119
6120 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2sARB)(GLenum, GLshort, GLshort);
6121 #define CALL_MultiTexCoord2sARB(disp, parameters) \
6122 (* GET_MultiTexCoord2sARB(disp)) parameters
6123 static inline _glptr_MultiTexCoord2sARB GET_MultiTexCoord2sARB(struct _glapi_table *disp) {
6124 return (_glptr_MultiTexCoord2sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2sARB));
6125 }
6126
6127 static inline void SET_MultiTexCoord2sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort)) {
6128 SET_by_offset(disp, _gloffset_MultiTexCoord2sARB, fn);
6129 }
6130
6131 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2svARB)(GLenum, const GLshort *);
6132 #define CALL_MultiTexCoord2svARB(disp, parameters) \
6133 (* GET_MultiTexCoord2svARB(disp)) parameters
6134 static inline _glptr_MultiTexCoord2svARB GET_MultiTexCoord2svARB(struct _glapi_table *disp) {
6135 return (_glptr_MultiTexCoord2svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2svARB));
6136 }
6137
6138 static inline void SET_MultiTexCoord2svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6139 SET_by_offset(disp, _gloffset_MultiTexCoord2svARB, fn);
6140 }
6141
6142 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dARB)(GLenum, GLdouble, GLdouble, GLdouble);
6143 #define CALL_MultiTexCoord3dARB(disp, parameters) \
6144 (* GET_MultiTexCoord3dARB(disp)) parameters
6145 static inline _glptr_MultiTexCoord3dARB GET_MultiTexCoord3dARB(struct _glapi_table *disp) {
6146 return (_glptr_MultiTexCoord3dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3dARB));
6147 }
6148
6149 static inline void SET_MultiTexCoord3dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble)) {
6150 SET_by_offset(disp, _gloffset_MultiTexCoord3dARB, fn);
6151 }
6152
6153 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dvARB)(GLenum, const GLdouble *);
6154 #define CALL_MultiTexCoord3dvARB(disp, parameters) \
6155 (* GET_MultiTexCoord3dvARB(disp)) parameters
6156 static inline _glptr_MultiTexCoord3dvARB GET_MultiTexCoord3dvARB(struct _glapi_table *disp) {
6157 return (_glptr_MultiTexCoord3dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3dvARB));
6158 }
6159
6160 static inline void SET_MultiTexCoord3dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6161 SET_by_offset(disp, _gloffset_MultiTexCoord3dvARB, fn);
6162 }
6163
6164 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fARB)(GLenum, GLfloat, GLfloat, GLfloat);
6165 #define CALL_MultiTexCoord3fARB(disp, parameters) \
6166 (* GET_MultiTexCoord3fARB(disp)) parameters
6167 static inline _glptr_MultiTexCoord3fARB GET_MultiTexCoord3fARB(struct _glapi_table *disp) {
6168 return (_glptr_MultiTexCoord3fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fARB));
6169 }
6170
6171 static inline void SET_MultiTexCoord3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat)) {
6172 SET_by_offset(disp, _gloffset_MultiTexCoord3fARB, fn);
6173 }
6174
6175 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fvARB)(GLenum, const GLfloat *);
6176 #define CALL_MultiTexCoord3fvARB(disp, parameters) \
6177 (* GET_MultiTexCoord3fvARB(disp)) parameters
6178 static inline _glptr_MultiTexCoord3fvARB GET_MultiTexCoord3fvARB(struct _glapi_table *disp) {
6179 return (_glptr_MultiTexCoord3fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fvARB));
6180 }
6181
6182 static inline void SET_MultiTexCoord3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6183 SET_by_offset(disp, _gloffset_MultiTexCoord3fvARB, fn);
6184 }
6185
6186 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3iARB)(GLenum, GLint, GLint, GLint);
6187 #define CALL_MultiTexCoord3iARB(disp, parameters) \
6188 (* GET_MultiTexCoord3iARB(disp)) parameters
6189 static inline _glptr_MultiTexCoord3iARB GET_MultiTexCoord3iARB(struct _glapi_table *disp) {
6190 return (_glptr_MultiTexCoord3iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3iARB));
6191 }
6192
6193 static inline void SET_MultiTexCoord3iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint)) {
6194 SET_by_offset(disp, _gloffset_MultiTexCoord3iARB, fn);
6195 }
6196
6197 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3ivARB)(GLenum, const GLint *);
6198 #define CALL_MultiTexCoord3ivARB(disp, parameters) \
6199 (* GET_MultiTexCoord3ivARB(disp)) parameters
6200 static inline _glptr_MultiTexCoord3ivARB GET_MultiTexCoord3ivARB(struct _glapi_table *disp) {
6201 return (_glptr_MultiTexCoord3ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3ivARB));
6202 }
6203
6204 static inline void SET_MultiTexCoord3ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6205 SET_by_offset(disp, _gloffset_MultiTexCoord3ivARB, fn);
6206 }
6207
6208 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3sARB)(GLenum, GLshort, GLshort, GLshort);
6209 #define CALL_MultiTexCoord3sARB(disp, parameters) \
6210 (* GET_MultiTexCoord3sARB(disp)) parameters
6211 static inline _glptr_MultiTexCoord3sARB GET_MultiTexCoord3sARB(struct _glapi_table *disp) {
6212 return (_glptr_MultiTexCoord3sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3sARB));
6213 }
6214
6215 static inline void SET_MultiTexCoord3sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort)) {
6216 SET_by_offset(disp, _gloffset_MultiTexCoord3sARB, fn);
6217 }
6218
6219 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3svARB)(GLenum, const GLshort *);
6220 #define CALL_MultiTexCoord3svARB(disp, parameters) \
6221 (* GET_MultiTexCoord3svARB(disp)) parameters
6222 static inline _glptr_MultiTexCoord3svARB GET_MultiTexCoord3svARB(struct _glapi_table *disp) {
6223 return (_glptr_MultiTexCoord3svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3svARB));
6224 }
6225
6226 static inline void SET_MultiTexCoord3svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6227 SET_by_offset(disp, _gloffset_MultiTexCoord3svARB, fn);
6228 }
6229
6230 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dARB)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
6231 #define CALL_MultiTexCoord4dARB(disp, parameters) \
6232 (* GET_MultiTexCoord4dARB(disp)) parameters
6233 static inline _glptr_MultiTexCoord4dARB GET_MultiTexCoord4dARB(struct _glapi_table *disp) {
6234 return (_glptr_MultiTexCoord4dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4dARB));
6235 }
6236
6237 static inline void SET_MultiTexCoord4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble)) {
6238 SET_by_offset(disp, _gloffset_MultiTexCoord4dARB, fn);
6239 }
6240
6241 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dvARB)(GLenum, const GLdouble *);
6242 #define CALL_MultiTexCoord4dvARB(disp, parameters) \
6243 (* GET_MultiTexCoord4dvARB(disp)) parameters
6244 static inline _glptr_MultiTexCoord4dvARB GET_MultiTexCoord4dvARB(struct _glapi_table *disp) {
6245 return (_glptr_MultiTexCoord4dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4dvARB));
6246 }
6247
6248 static inline void SET_MultiTexCoord4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6249 SET_by_offset(disp, _gloffset_MultiTexCoord4dvARB, fn);
6250 }
6251
6252 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fARB)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
6253 #define CALL_MultiTexCoord4fARB(disp, parameters) \
6254 (* GET_MultiTexCoord4fARB(disp)) parameters
6255 static inline _glptr_MultiTexCoord4fARB GET_MultiTexCoord4fARB(struct _glapi_table *disp) {
6256 return (_glptr_MultiTexCoord4fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fARB));
6257 }
6258
6259 static inline void SET_MultiTexCoord4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat)) {
6260 SET_by_offset(disp, _gloffset_MultiTexCoord4fARB, fn);
6261 }
6262
6263 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fvARB)(GLenum, const GLfloat *);
6264 #define CALL_MultiTexCoord4fvARB(disp, parameters) \
6265 (* GET_MultiTexCoord4fvARB(disp)) parameters
6266 static inline _glptr_MultiTexCoord4fvARB GET_MultiTexCoord4fvARB(struct _glapi_table *disp) {
6267 return (_glptr_MultiTexCoord4fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fvARB));
6268 }
6269
6270 static inline void SET_MultiTexCoord4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6271 SET_by_offset(disp, _gloffset_MultiTexCoord4fvARB, fn);
6272 }
6273
6274 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4iARB)(GLenum, GLint, GLint, GLint, GLint);
6275 #define CALL_MultiTexCoord4iARB(disp, parameters) \
6276 (* GET_MultiTexCoord4iARB(disp)) parameters
6277 static inline _glptr_MultiTexCoord4iARB GET_MultiTexCoord4iARB(struct _glapi_table *disp) {
6278 return (_glptr_MultiTexCoord4iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4iARB));
6279 }
6280
6281 static inline void SET_MultiTexCoord4iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
6282 SET_by_offset(disp, _gloffset_MultiTexCoord4iARB, fn);
6283 }
6284
6285 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4ivARB)(GLenum, const GLint *);
6286 #define CALL_MultiTexCoord4ivARB(disp, parameters) \
6287 (* GET_MultiTexCoord4ivARB(disp)) parameters
6288 static inline _glptr_MultiTexCoord4ivARB GET_MultiTexCoord4ivARB(struct _glapi_table *disp) {
6289 return (_glptr_MultiTexCoord4ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4ivARB));
6290 }
6291
6292 static inline void SET_MultiTexCoord4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6293 SET_by_offset(disp, _gloffset_MultiTexCoord4ivARB, fn);
6294 }
6295
6296 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4sARB)(GLenum, GLshort, GLshort, GLshort, GLshort);
6297 #define CALL_MultiTexCoord4sARB(disp, parameters) \
6298 (* GET_MultiTexCoord4sARB(disp)) parameters
6299 static inline _glptr_MultiTexCoord4sARB GET_MultiTexCoord4sARB(struct _glapi_table *disp) {
6300 return (_glptr_MultiTexCoord4sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4sARB));
6301 }
6302
6303 static inline void SET_MultiTexCoord4sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort, GLshort)) {
6304 SET_by_offset(disp, _gloffset_MultiTexCoord4sARB, fn);
6305 }
6306
6307 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4svARB)(GLenum, const GLshort *);
6308 #define CALL_MultiTexCoord4svARB(disp, parameters) \
6309 (* GET_MultiTexCoord4svARB(disp)) parameters
6310 static inline _glptr_MultiTexCoord4svARB GET_MultiTexCoord4svARB(struct _glapi_table *disp) {
6311 return (_glptr_MultiTexCoord4svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4svARB));
6312 }
6313
6314 static inline void SET_MultiTexCoord4svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6315 SET_by_offset(disp, _gloffset_MultiTexCoord4svARB, fn);
6316 }
6317
6318 typedef void (GLAPIENTRYP _glptr_AttachShader)(GLuint, GLuint);
6319 #define CALL_AttachShader(disp, parameters) \
6320 (* GET_AttachShader(disp)) parameters
6321 static inline _glptr_AttachShader GET_AttachShader(struct _glapi_table *disp) {
6322 return (_glptr_AttachShader) (GET_by_offset(disp, _gloffset_AttachShader));
6323 }
6324
6325 static inline void SET_AttachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
6326 SET_by_offset(disp, _gloffset_AttachShader, fn);
6327 }
6328
6329 typedef GLuint (GLAPIENTRYP _glptr_CreateProgram)(void);
6330 #define CALL_CreateProgram(disp, parameters) \
6331 (* GET_CreateProgram(disp)) parameters
6332 static inline _glptr_CreateProgram GET_CreateProgram(struct _glapi_table *disp) {
6333 return (_glptr_CreateProgram) (GET_by_offset(disp, _gloffset_CreateProgram));
6334 }
6335
6336 static inline void SET_CreateProgram(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(void)) {
6337 SET_by_offset(disp, _gloffset_CreateProgram, fn);
6338 }
6339
6340 typedef GLuint (GLAPIENTRYP _glptr_CreateShader)(GLenum);
6341 #define CALL_CreateShader(disp, parameters) \
6342 (* GET_CreateShader(disp)) parameters
6343 static inline _glptr_CreateShader GET_CreateShader(struct _glapi_table *disp) {
6344 return (_glptr_CreateShader) (GET_by_offset(disp, _gloffset_CreateShader));
6345 }
6346
6347 static inline void SET_CreateShader(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum)) {
6348 SET_by_offset(disp, _gloffset_CreateShader, fn);
6349 }
6350
6351 typedef void (GLAPIENTRYP _glptr_DeleteProgram)(GLuint);
6352 #define CALL_DeleteProgram(disp, parameters) \
6353 (* GET_DeleteProgram(disp)) parameters
6354 static inline _glptr_DeleteProgram GET_DeleteProgram(struct _glapi_table *disp) {
6355 return (_glptr_DeleteProgram) (GET_by_offset(disp, _gloffset_DeleteProgram));
6356 }
6357
6358 static inline void SET_DeleteProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6359 SET_by_offset(disp, _gloffset_DeleteProgram, fn);
6360 }
6361
6362 typedef void (GLAPIENTRYP _glptr_DeleteShader)(GLuint);
6363 #define CALL_DeleteShader(disp, parameters) \
6364 (* GET_DeleteShader(disp)) parameters
6365 static inline _glptr_DeleteShader GET_DeleteShader(struct _glapi_table *disp) {
6366 return (_glptr_DeleteShader) (GET_by_offset(disp, _gloffset_DeleteShader));
6367 }
6368
6369 static inline void SET_DeleteShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6370 SET_by_offset(disp, _gloffset_DeleteShader, fn);
6371 }
6372
6373 typedef void (GLAPIENTRYP _glptr_DetachShader)(GLuint, GLuint);
6374 #define CALL_DetachShader(disp, parameters) \
6375 (* GET_DetachShader(disp)) parameters
6376 static inline _glptr_DetachShader GET_DetachShader(struct _glapi_table *disp) {
6377 return (_glptr_DetachShader) (GET_by_offset(disp, _gloffset_DetachShader));
6378 }
6379
6380 static inline void SET_DetachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
6381 SET_by_offset(disp, _gloffset_DetachShader, fn);
6382 }
6383
6384 typedef void (GLAPIENTRYP _glptr_GetAttachedShaders)(GLuint, GLsizei, GLsizei *, GLuint *);
6385 #define CALL_GetAttachedShaders(disp, parameters) \
6386 (* GET_GetAttachedShaders(disp)) parameters
6387 static inline _glptr_GetAttachedShaders GET_GetAttachedShaders(struct _glapi_table *disp) {
6388 return (_glptr_GetAttachedShaders) (GET_by_offset(disp, _gloffset_GetAttachedShaders));
6389 }
6390
6391 static inline void SET_GetAttachedShaders(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLuint *)) {
6392 SET_by_offset(disp, _gloffset_GetAttachedShaders, fn);
6393 }
6394
6395 typedef void (GLAPIENTRYP _glptr_GetProgramInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
6396 #define CALL_GetProgramInfoLog(disp, parameters) \
6397 (* GET_GetProgramInfoLog(disp)) parameters
6398 static inline _glptr_GetProgramInfoLog GET_GetProgramInfoLog(struct _glapi_table *disp) {
6399 return (_glptr_GetProgramInfoLog) (GET_by_offset(disp, _gloffset_GetProgramInfoLog));
6400 }
6401
6402 static inline void SET_GetProgramInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
6403 SET_by_offset(disp, _gloffset_GetProgramInfoLog, fn);
6404 }
6405
6406 typedef void (GLAPIENTRYP _glptr_GetProgramiv)(GLuint, GLenum, GLint *);
6407 #define CALL_GetProgramiv(disp, parameters) \
6408 (* GET_GetProgramiv(disp)) parameters
6409 static inline _glptr_GetProgramiv GET_GetProgramiv(struct _glapi_table *disp) {
6410 return (_glptr_GetProgramiv) (GET_by_offset(disp, _gloffset_GetProgramiv));
6411 }
6412
6413 static inline void SET_GetProgramiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
6414 SET_by_offset(disp, _gloffset_GetProgramiv, fn);
6415 }
6416
6417 typedef void (GLAPIENTRYP _glptr_GetShaderInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
6418 #define CALL_GetShaderInfoLog(disp, parameters) \
6419 (* GET_GetShaderInfoLog(disp)) parameters
6420 static inline _glptr_GetShaderInfoLog GET_GetShaderInfoLog(struct _glapi_table *disp) {
6421 return (_glptr_GetShaderInfoLog) (GET_by_offset(disp, _gloffset_GetShaderInfoLog));
6422 }
6423
6424 static inline void SET_GetShaderInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
6425 SET_by_offset(disp, _gloffset_GetShaderInfoLog, fn);
6426 }
6427
6428 typedef void (GLAPIENTRYP _glptr_GetShaderiv)(GLuint, GLenum, GLint *);
6429 #define CALL_GetShaderiv(disp, parameters) \
6430 (* GET_GetShaderiv(disp)) parameters
6431 static inline _glptr_GetShaderiv GET_GetShaderiv(struct _glapi_table *disp) {
6432 return (_glptr_GetShaderiv) (GET_by_offset(disp, _gloffset_GetShaderiv));
6433 }
6434
6435 static inline void SET_GetShaderiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
6436 SET_by_offset(disp, _gloffset_GetShaderiv, fn);
6437 }
6438
6439 typedef GLboolean (GLAPIENTRYP _glptr_IsProgram)(GLuint);
6440 #define CALL_IsProgram(disp, parameters) \
6441 (* GET_IsProgram(disp)) parameters
6442 static inline _glptr_IsProgram GET_IsProgram(struct _glapi_table *disp) {
6443 return (_glptr_IsProgram) (GET_by_offset(disp, _gloffset_IsProgram));
6444 }
6445
6446 static inline void SET_IsProgram(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
6447 SET_by_offset(disp, _gloffset_IsProgram, fn);
6448 }
6449
6450 typedef GLboolean (GLAPIENTRYP _glptr_IsShader)(GLuint);
6451 #define CALL_IsShader(disp, parameters) \
6452 (* GET_IsShader(disp)) parameters
6453 static inline _glptr_IsShader GET_IsShader(struct _glapi_table *disp) {
6454 return (_glptr_IsShader) (GET_by_offset(disp, _gloffset_IsShader));
6455 }
6456
6457 static inline void SET_IsShader(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
6458 SET_by_offset(disp, _gloffset_IsShader, fn);
6459 }
6460
6461 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparate)(GLenum, GLenum, GLint, GLuint);
6462 #define CALL_StencilFuncSeparate(disp, parameters) \
6463 (* GET_StencilFuncSeparate(disp)) parameters
6464 static inline _glptr_StencilFuncSeparate GET_StencilFuncSeparate(struct _glapi_table *disp) {
6465 return (_glptr_StencilFuncSeparate) (GET_by_offset(disp, _gloffset_StencilFuncSeparate));
6466 }
6467
6468 static inline void SET_StencilFuncSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) {
6469 SET_by_offset(disp, _gloffset_StencilFuncSeparate, fn);
6470 }
6471
6472 typedef void (GLAPIENTRYP _glptr_StencilMaskSeparate)(GLenum, GLuint);
6473 #define CALL_StencilMaskSeparate(disp, parameters) \
6474 (* GET_StencilMaskSeparate(disp)) parameters
6475 static inline _glptr_StencilMaskSeparate GET_StencilMaskSeparate(struct _glapi_table *disp) {
6476 return (_glptr_StencilMaskSeparate) (GET_by_offset(disp, _gloffset_StencilMaskSeparate));
6477 }
6478
6479 static inline void SET_StencilMaskSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
6480 SET_by_offset(disp, _gloffset_StencilMaskSeparate, fn);
6481 }
6482
6483 typedef void (GLAPIENTRYP _glptr_StencilOpSeparate)(GLenum, GLenum, GLenum, GLenum);
6484 #define CALL_StencilOpSeparate(disp, parameters) \
6485 (* GET_StencilOpSeparate(disp)) parameters
6486 static inline _glptr_StencilOpSeparate GET_StencilOpSeparate(struct _glapi_table *disp) {
6487 return (_glptr_StencilOpSeparate) (GET_by_offset(disp, _gloffset_StencilOpSeparate));
6488 }
6489
6490 static inline void SET_StencilOpSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
6491 SET_by_offset(disp, _gloffset_StencilOpSeparate, fn);
6492 }
6493
6494 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6495 #define CALL_UniformMatrix2x3fv(disp, parameters) \
6496 (* GET_UniformMatrix2x3fv(disp)) parameters
6497 static inline _glptr_UniformMatrix2x3fv GET_UniformMatrix2x3fv(struct _glapi_table *disp) {
6498 return (_glptr_UniformMatrix2x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x3fv));
6499 }
6500
6501 static inline void SET_UniformMatrix2x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6502 SET_by_offset(disp, _gloffset_UniformMatrix2x3fv, fn);
6503 }
6504
6505 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6506 #define CALL_UniformMatrix2x4fv(disp, parameters) \
6507 (* GET_UniformMatrix2x4fv(disp)) parameters
6508 static inline _glptr_UniformMatrix2x4fv GET_UniformMatrix2x4fv(struct _glapi_table *disp) {
6509 return (_glptr_UniformMatrix2x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x4fv));
6510 }
6511
6512 static inline void SET_UniformMatrix2x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6513 SET_by_offset(disp, _gloffset_UniformMatrix2x4fv, fn);
6514 }
6515
6516 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6517 #define CALL_UniformMatrix3x2fv(disp, parameters) \
6518 (* GET_UniformMatrix3x2fv(disp)) parameters
6519 static inline _glptr_UniformMatrix3x2fv GET_UniformMatrix3x2fv(struct _glapi_table *disp) {
6520 return (_glptr_UniformMatrix3x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x2fv));
6521 }
6522
6523 static inline void SET_UniformMatrix3x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6524 SET_by_offset(disp, _gloffset_UniformMatrix3x2fv, fn);
6525 }
6526
6527 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6528 #define CALL_UniformMatrix3x4fv(disp, parameters) \
6529 (* GET_UniformMatrix3x4fv(disp)) parameters
6530 static inline _glptr_UniformMatrix3x4fv GET_UniformMatrix3x4fv(struct _glapi_table *disp) {
6531 return (_glptr_UniformMatrix3x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x4fv));
6532 }
6533
6534 static inline void SET_UniformMatrix3x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6535 SET_by_offset(disp, _gloffset_UniformMatrix3x4fv, fn);
6536 }
6537
6538 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6539 #define CALL_UniformMatrix4x2fv(disp, parameters) \
6540 (* GET_UniformMatrix4x2fv(disp)) parameters
6541 static inline _glptr_UniformMatrix4x2fv GET_UniformMatrix4x2fv(struct _glapi_table *disp) {
6542 return (_glptr_UniformMatrix4x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x2fv));
6543 }
6544
6545 static inline void SET_UniformMatrix4x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6546 SET_by_offset(disp, _gloffset_UniformMatrix4x2fv, fn);
6547 }
6548
6549 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6550 #define CALL_UniformMatrix4x3fv(disp, parameters) \
6551 (* GET_UniformMatrix4x3fv(disp)) parameters
6552 static inline _glptr_UniformMatrix4x3fv GET_UniformMatrix4x3fv(struct _glapi_table *disp) {
6553 return (_glptr_UniformMatrix4x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x3fv));
6554 }
6555
6556 static inline void SET_UniformMatrix4x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6557 SET_by_offset(disp, _gloffset_UniformMatrix4x3fv, fn);
6558 }
6559
6560 typedef void (GLAPIENTRYP _glptr_ClampColor)(GLenum, GLenum);
6561 #define CALL_ClampColor(disp, parameters) \
6562 (* GET_ClampColor(disp)) parameters
6563 static inline _glptr_ClampColor GET_ClampColor(struct _glapi_table *disp) {
6564 return (_glptr_ClampColor) (GET_by_offset(disp, _gloffset_ClampColor));
6565 }
6566
6567 static inline void SET_ClampColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
6568 SET_by_offset(disp, _gloffset_ClampColor, fn);
6569 }
6570
6571 typedef void (GLAPIENTRYP _glptr_ClearBufferfi)(GLenum, GLint, GLfloat, GLint);
6572 #define CALL_ClearBufferfi(disp, parameters) \
6573 (* GET_ClearBufferfi(disp)) parameters
6574 static inline _glptr_ClearBufferfi GET_ClearBufferfi(struct _glapi_table *disp) {
6575 return (_glptr_ClearBufferfi) (GET_by_offset(disp, _gloffset_ClearBufferfi));
6576 }
6577
6578 static inline void SET_ClearBufferfi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLfloat, GLint)) {
6579 SET_by_offset(disp, _gloffset_ClearBufferfi, fn);
6580 }
6581
6582 typedef void (GLAPIENTRYP _glptr_ClearBufferfv)(GLenum, GLint, const GLfloat *);
6583 #define CALL_ClearBufferfv(disp, parameters) \
6584 (* GET_ClearBufferfv(disp)) parameters
6585 static inline _glptr_ClearBufferfv GET_ClearBufferfv(struct _glapi_table *disp) {
6586 return (_glptr_ClearBufferfv) (GET_by_offset(disp, _gloffset_ClearBufferfv));
6587 }
6588
6589 static inline void SET_ClearBufferfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLfloat *)) {
6590 SET_by_offset(disp, _gloffset_ClearBufferfv, fn);
6591 }
6592
6593 typedef void (GLAPIENTRYP _glptr_ClearBufferiv)(GLenum, GLint, const GLint *);
6594 #define CALL_ClearBufferiv(disp, parameters) \
6595 (* GET_ClearBufferiv(disp)) parameters
6596 static inline _glptr_ClearBufferiv GET_ClearBufferiv(struct _glapi_table *disp) {
6597 return (_glptr_ClearBufferiv) (GET_by_offset(disp, _gloffset_ClearBufferiv));
6598 }
6599
6600 static inline void SET_ClearBufferiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLint *)) {
6601 SET_by_offset(disp, _gloffset_ClearBufferiv, fn);
6602 }
6603
6604 typedef void (GLAPIENTRYP _glptr_ClearBufferuiv)(GLenum, GLint, const GLuint *);
6605 #define CALL_ClearBufferuiv(disp, parameters) \
6606 (* GET_ClearBufferuiv(disp)) parameters
6607 static inline _glptr_ClearBufferuiv GET_ClearBufferuiv(struct _glapi_table *disp) {
6608 return (_glptr_ClearBufferuiv) (GET_by_offset(disp, _gloffset_ClearBufferuiv));
6609 }
6610
6611 static inline void SET_ClearBufferuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLuint *)) {
6612 SET_by_offset(disp, _gloffset_ClearBufferuiv, fn);
6613 }
6614
6615 typedef const GLubyte * (GLAPIENTRYP _glptr_GetStringi)(GLenum, GLuint);
6616 #define CALL_GetStringi(disp, parameters) \
6617 (* GET_GetStringi(disp)) parameters
6618 static inline _glptr_GetStringi GET_GetStringi(struct _glapi_table *disp) {
6619 return (_glptr_GetStringi) (GET_by_offset(disp, _gloffset_GetStringi));
6620 }
6621
6622 static inline void SET_GetStringi(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum, GLuint)) {
6623 SET_by_offset(disp, _gloffset_GetStringi, fn);
6624 }
6625
6626 typedef void (GLAPIENTRYP _glptr_TexBuffer)(GLenum, GLenum, GLuint);
6627 #define CALL_TexBuffer(disp, parameters) \
6628 (* GET_TexBuffer(disp)) parameters
6629 static inline _glptr_TexBuffer GET_TexBuffer(struct _glapi_table *disp) {
6630 return (_glptr_TexBuffer) (GET_by_offset(disp, _gloffset_TexBuffer));
6631 }
6632
6633 static inline void SET_TexBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
6634 SET_by_offset(disp, _gloffset_TexBuffer, fn);
6635 }
6636
6637 typedef void (GLAPIENTRYP _glptr_GetBufferParameteri64v)(GLenum, GLenum, GLint64 *);
6638 #define CALL_GetBufferParameteri64v(disp, parameters) \
6639 (* GET_GetBufferParameteri64v(disp)) parameters
6640 static inline _glptr_GetBufferParameteri64v GET_GetBufferParameteri64v(struct _glapi_table *disp) {
6641 return (_glptr_GetBufferParameteri64v) (GET_by_offset(disp, _gloffset_GetBufferParameteri64v));
6642 }
6643
6644 static inline void SET_GetBufferParameteri64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint64 *)) {
6645 SET_by_offset(disp, _gloffset_GetBufferParameteri64v, fn);
6646 }
6647
6648 typedef void (GLAPIENTRYP _glptr_GetInteger64i_v)(GLenum, GLuint, GLint64 *);
6649 #define CALL_GetInteger64i_v(disp, parameters) \
6650 (* GET_GetInteger64i_v(disp)) parameters
6651 static inline _glptr_GetInteger64i_v GET_GetInteger64i_v(struct _glapi_table *disp) {
6652 return (_glptr_GetInteger64i_v) (GET_by_offset(disp, _gloffset_GetInteger64i_v));
6653 }
6654
6655 static inline void SET_GetInteger64i_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint64 *)) {
6656 SET_by_offset(disp, _gloffset_GetInteger64i_v, fn);
6657 }
6658
6659 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixdARB)(const GLdouble *);
6660 #define CALL_LoadTransposeMatrixdARB(disp, parameters) \
6661 (* GET_LoadTransposeMatrixdARB(disp)) parameters
6662 static inline _glptr_LoadTransposeMatrixdARB GET_LoadTransposeMatrixdARB(struct _glapi_table *disp) {
6663 return (_glptr_LoadTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB));
6664 }
6665
6666 static inline void SET_LoadTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
6667 SET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB, fn);
6668 }
6669
6670 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixfARB)(const GLfloat *);
6671 #define CALL_LoadTransposeMatrixfARB(disp, parameters) \
6672 (* GET_LoadTransposeMatrixfARB(disp)) parameters
6673 static inline _glptr_LoadTransposeMatrixfARB GET_LoadTransposeMatrixfARB(struct _glapi_table *disp) {
6674 return (_glptr_LoadTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB));
6675 }
6676
6677 static inline void SET_LoadTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
6678 SET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB, fn);
6679 }
6680
6681 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixdARB)(const GLdouble *);
6682 #define CALL_MultTransposeMatrixdARB(disp, parameters) \
6683 (* GET_MultTransposeMatrixdARB(disp)) parameters
6684 static inline _glptr_MultTransposeMatrixdARB GET_MultTransposeMatrixdARB(struct _glapi_table *disp) {
6685 return (_glptr_MultTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixdARB));
6686 }
6687
6688 static inline void SET_MultTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
6689 SET_by_offset(disp, _gloffset_MultTransposeMatrixdARB, fn);
6690 }
6691
6692 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixfARB)(const GLfloat *);
6693 #define CALL_MultTransposeMatrixfARB(disp, parameters) \
6694 (* GET_MultTransposeMatrixfARB(disp)) parameters
6695 static inline _glptr_MultTransposeMatrixfARB GET_MultTransposeMatrixfARB(struct _glapi_table *disp) {
6696 return (_glptr_MultTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixfARB));
6697 }
6698
6699 static inline void SET_MultTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
6700 SET_by_offset(disp, _gloffset_MultTransposeMatrixfARB, fn);
6701 }
6702
6703 typedef void (GLAPIENTRYP _glptr_SampleCoverageARB)(GLclampf, GLboolean);
6704 #define CALL_SampleCoverageARB(disp, parameters) \
6705 (* GET_SampleCoverageARB(disp)) parameters
6706 static inline _glptr_SampleCoverageARB GET_SampleCoverageARB(struct _glapi_table *disp) {
6707 return (_glptr_SampleCoverageARB) (GET_by_offset(disp, _gloffset_SampleCoverageARB));
6708 }
6709
6710 static inline void SET_SampleCoverageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
6711 SET_by_offset(disp, _gloffset_SampleCoverageARB, fn);
6712 }
6713
6714 typedef void (GLAPIENTRYP _glptr_CompressedTexImage1DARB)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
6715 #define CALL_CompressedTexImage1DARB(disp, parameters) \
6716 (* GET_CompressedTexImage1DARB(disp)) parameters
6717 static inline _glptr_CompressedTexImage1DARB GET_CompressedTexImage1DARB(struct _glapi_table *disp) {
6718 return (_glptr_CompressedTexImage1DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage1DARB));
6719 }
6720
6721 static inline void SET_CompressedTexImage1DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *)) {
6722 SET_by_offset(disp, _gloffset_CompressedTexImage1DARB, fn);
6723 }
6724
6725 typedef void (GLAPIENTRYP _glptr_CompressedTexImage2DARB)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
6726 #define CALL_CompressedTexImage2DARB(disp, parameters) \
6727 (* GET_CompressedTexImage2DARB(disp)) parameters
6728 static inline _glptr_CompressedTexImage2DARB GET_CompressedTexImage2DARB(struct _glapi_table *disp) {
6729 return (_glptr_CompressedTexImage2DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage2DARB));
6730 }
6731
6732 static inline void SET_CompressedTexImage2DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) {
6733 SET_by_offset(disp, _gloffset_CompressedTexImage2DARB, fn);
6734 }
6735
6736 typedef void (GLAPIENTRYP _glptr_CompressedTexImage3DARB)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
6737 #define CALL_CompressedTexImage3DARB(disp, parameters) \
6738 (* GET_CompressedTexImage3DARB(disp)) parameters
6739 static inline _glptr_CompressedTexImage3DARB GET_CompressedTexImage3DARB(struct _glapi_table *disp) {
6740 return (_glptr_CompressedTexImage3DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage3DARB));
6741 }
6742
6743 static inline void SET_CompressedTexImage3DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) {
6744 SET_by_offset(disp, _gloffset_CompressedTexImage3DARB, fn);
6745 }
6746
6747 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage1DARB)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
6748 #define CALL_CompressedTexSubImage1DARB(disp, parameters) \
6749 (* GET_CompressedTexSubImage1DARB(disp)) parameters
6750 static inline _glptr_CompressedTexSubImage1DARB GET_CompressedTexSubImage1DARB(struct _glapi_table *disp) {
6751 return (_glptr_CompressedTexSubImage1DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage1DARB));
6752 }
6753
6754 static inline void SET_CompressedTexSubImage1DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *)) {
6755 SET_by_offset(disp, _gloffset_CompressedTexSubImage1DARB, fn);
6756 }
6757
6758 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage2DARB)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
6759 #define CALL_CompressedTexSubImage2DARB(disp, parameters) \
6760 (* GET_CompressedTexSubImage2DARB(disp)) parameters
6761 static inline _glptr_CompressedTexSubImage2DARB GET_CompressedTexSubImage2DARB(struct _glapi_table *disp) {
6762 return (_glptr_CompressedTexSubImage2DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage2DARB));
6763 }
6764
6765 static inline void SET_CompressedTexSubImage2DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
6766 SET_by_offset(disp, _gloffset_CompressedTexSubImage2DARB, fn);
6767 }
6768
6769 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage3DARB)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
6770 #define CALL_CompressedTexSubImage3DARB(disp, parameters) \
6771 (* GET_CompressedTexSubImage3DARB(disp)) parameters
6772 static inline _glptr_CompressedTexSubImage3DARB GET_CompressedTexSubImage3DARB(struct _glapi_table *disp) {
6773 return (_glptr_CompressedTexSubImage3DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage3DARB));
6774 }
6775
6776 static inline void SET_CompressedTexSubImage3DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
6777 SET_by_offset(disp, _gloffset_CompressedTexSubImage3DARB, fn);
6778 }
6779
6780 typedef void (GLAPIENTRYP _glptr_GetCompressedTexImageARB)(GLenum, GLint, GLvoid *);
6781 #define CALL_GetCompressedTexImageARB(disp, parameters) \
6782 (* GET_GetCompressedTexImageARB(disp)) parameters
6783 static inline _glptr_GetCompressedTexImageARB GET_GetCompressedTexImageARB(struct _glapi_table *disp) {
6784 return (_glptr_GetCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetCompressedTexImageARB));
6785 }
6786
6787 static inline void SET_GetCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLvoid *)) {
6788 SET_by_offset(disp, _gloffset_GetCompressedTexImageARB, fn);
6789 }
6790
6791 typedef void (GLAPIENTRYP _glptr_DisableVertexAttribArrayARB)(GLuint);
6792 #define CALL_DisableVertexAttribArrayARB(disp, parameters) \
6793 (* GET_DisableVertexAttribArrayARB(disp)) parameters
6794 static inline _glptr_DisableVertexAttribArrayARB GET_DisableVertexAttribArrayARB(struct _glapi_table *disp) {
6795 return (_glptr_DisableVertexAttribArrayARB) (GET_by_offset(disp, _gloffset_DisableVertexAttribArrayARB));
6796 }
6797
6798 static inline void SET_DisableVertexAttribArrayARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6799 SET_by_offset(disp, _gloffset_DisableVertexAttribArrayARB, fn);
6800 }
6801
6802 typedef void (GLAPIENTRYP _glptr_EnableVertexAttribArrayARB)(GLuint);
6803 #define CALL_EnableVertexAttribArrayARB(disp, parameters) \
6804 (* GET_EnableVertexAttribArrayARB(disp)) parameters
6805 static inline _glptr_EnableVertexAttribArrayARB GET_EnableVertexAttribArrayARB(struct _glapi_table *disp) {
6806 return (_glptr_EnableVertexAttribArrayARB) (GET_by_offset(disp, _gloffset_EnableVertexAttribArrayARB));
6807 }
6808
6809 static inline void SET_EnableVertexAttribArrayARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6810 SET_by_offset(disp, _gloffset_EnableVertexAttribArrayARB, fn);
6811 }
6812
6813 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterdvARB)(GLenum, GLuint, GLdouble *);
6814 #define CALL_GetProgramEnvParameterdvARB(disp, parameters) \
6815 (* GET_GetProgramEnvParameterdvARB(disp)) parameters
6816 static inline _glptr_GetProgramEnvParameterdvARB GET_GetProgramEnvParameterdvARB(struct _glapi_table *disp) {
6817 return (_glptr_GetProgramEnvParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB));
6818 }
6819
6820 static inline void SET_GetProgramEnvParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
6821 SET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB, fn);
6822 }
6823
6824 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterfvARB)(GLenum, GLuint, GLfloat *);
6825 #define CALL_GetProgramEnvParameterfvARB(disp, parameters) \
6826 (* GET_GetProgramEnvParameterfvARB(disp)) parameters
6827 static inline _glptr_GetProgramEnvParameterfvARB GET_GetProgramEnvParameterfvARB(struct _glapi_table *disp) {
6828 return (_glptr_GetProgramEnvParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB));
6829 }
6830
6831 static inline void SET_GetProgramEnvParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
6832 SET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB, fn);
6833 }
6834
6835 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterdvARB)(GLenum, GLuint, GLdouble *);
6836 #define CALL_GetProgramLocalParameterdvARB(disp, parameters) \
6837 (* GET_GetProgramLocalParameterdvARB(disp)) parameters
6838 static inline _glptr_GetProgramLocalParameterdvARB GET_GetProgramLocalParameterdvARB(struct _glapi_table *disp) {
6839 return (_glptr_GetProgramLocalParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB));
6840 }
6841
6842 static inline void SET_GetProgramLocalParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
6843 SET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB, fn);
6844 }
6845
6846 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterfvARB)(GLenum, GLuint, GLfloat *);
6847 #define CALL_GetProgramLocalParameterfvARB(disp, parameters) \
6848 (* GET_GetProgramLocalParameterfvARB(disp)) parameters
6849 static inline _glptr_GetProgramLocalParameterfvARB GET_GetProgramLocalParameterfvARB(struct _glapi_table *disp) {
6850 return (_glptr_GetProgramLocalParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB));
6851 }
6852
6853 static inline void SET_GetProgramLocalParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
6854 SET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB, fn);
6855 }
6856
6857 typedef void (GLAPIENTRYP _glptr_GetProgramStringARB)(GLenum, GLenum, GLvoid *);
6858 #define CALL_GetProgramStringARB(disp, parameters) \
6859 (* GET_GetProgramStringARB(disp)) parameters
6860 static inline _glptr_GetProgramStringARB GET_GetProgramStringARB(struct _glapi_table *disp) {
6861 return (_glptr_GetProgramStringARB) (GET_by_offset(disp, _gloffset_GetProgramStringARB));
6862 }
6863
6864 static inline void SET_GetProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid *)) {
6865 SET_by_offset(disp, _gloffset_GetProgramStringARB, fn);
6866 }
6867
6868 typedef void (GLAPIENTRYP _glptr_GetProgramivARB)(GLenum, GLenum, GLint *);
6869 #define CALL_GetProgramivARB(disp, parameters) \
6870 (* GET_GetProgramivARB(disp)) parameters
6871 static inline _glptr_GetProgramivARB GET_GetProgramivARB(struct _glapi_table *disp) {
6872 return (_glptr_GetProgramivARB) (GET_by_offset(disp, _gloffset_GetProgramivARB));
6873 }
6874
6875 static inline void SET_GetProgramivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
6876 SET_by_offset(disp, _gloffset_GetProgramivARB, fn);
6877 }
6878
6879 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvARB)(GLuint, GLenum, GLdouble *);
6880 #define CALL_GetVertexAttribdvARB(disp, parameters) \
6881 (* GET_GetVertexAttribdvARB(disp)) parameters
6882 static inline _glptr_GetVertexAttribdvARB GET_GetVertexAttribdvARB(struct _glapi_table *disp) {
6883 return (_glptr_GetVertexAttribdvARB) (GET_by_offset(disp, _gloffset_GetVertexAttribdvARB));
6884 }
6885
6886 static inline void SET_GetVertexAttribdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
6887 SET_by_offset(disp, _gloffset_GetVertexAttribdvARB, fn);
6888 }
6889
6890 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvARB)(GLuint, GLenum, GLfloat *);
6891 #define CALL_GetVertexAttribfvARB(disp, parameters) \
6892 (* GET_GetVertexAttribfvARB(disp)) parameters
6893 static inline _glptr_GetVertexAttribfvARB GET_GetVertexAttribfvARB(struct _glapi_table *disp) {
6894 return (_glptr_GetVertexAttribfvARB) (GET_by_offset(disp, _gloffset_GetVertexAttribfvARB));
6895 }
6896
6897 static inline void SET_GetVertexAttribfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
6898 SET_by_offset(disp, _gloffset_GetVertexAttribfvARB, fn);
6899 }
6900
6901 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivARB)(GLuint, GLenum, GLint *);
6902 #define CALL_GetVertexAttribivARB(disp, parameters) \
6903 (* GET_GetVertexAttribivARB(disp)) parameters
6904 static inline _glptr_GetVertexAttribivARB GET_GetVertexAttribivARB(struct _glapi_table *disp) {
6905 return (_glptr_GetVertexAttribivARB) (GET_by_offset(disp, _gloffset_GetVertexAttribivARB));
6906 }
6907
6908 static inline void SET_GetVertexAttribivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
6909 SET_by_offset(disp, _gloffset_GetVertexAttribivARB, fn);
6910 }
6911
6912 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
6913 #define CALL_ProgramEnvParameter4dARB(disp, parameters) \
6914 (* GET_ProgramEnvParameter4dARB(disp)) parameters
6915 static inline _glptr_ProgramEnvParameter4dARB GET_ProgramEnvParameter4dARB(struct _glapi_table *disp) {
6916 return (_glptr_ProgramEnvParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB));
6917 }
6918
6919 static inline void SET_ProgramEnvParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
6920 SET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB, fn);
6921 }
6922
6923 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dvARB)(GLenum, GLuint, const GLdouble *);
6924 #define CALL_ProgramEnvParameter4dvARB(disp, parameters) \
6925 (* GET_ProgramEnvParameter4dvARB(disp)) parameters
6926 static inline _glptr_ProgramEnvParameter4dvARB GET_ProgramEnvParameter4dvARB(struct _glapi_table *disp) {
6927 return (_glptr_ProgramEnvParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB));
6928 }
6929
6930 static inline void SET_ProgramEnvParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) {
6931 SET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB, fn);
6932 }
6933
6934 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
6935 #define CALL_ProgramEnvParameter4fARB(disp, parameters) \
6936 (* GET_ProgramEnvParameter4fARB(disp)) parameters
6937 static inline _glptr_ProgramEnvParameter4fARB GET_ProgramEnvParameter4fARB(struct _glapi_table *disp) {
6938 return (_glptr_ProgramEnvParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB));
6939 }
6940
6941 static inline void SET_ProgramEnvParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
6942 SET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB, fn);
6943 }
6944
6945 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fvARB)(GLenum, GLuint, const GLfloat *);
6946 #define CALL_ProgramEnvParameter4fvARB(disp, parameters) \
6947 (* GET_ProgramEnvParameter4fvARB(disp)) parameters
6948 static inline _glptr_ProgramEnvParameter4fvARB GET_ProgramEnvParameter4fvARB(struct _glapi_table *disp) {
6949 return (_glptr_ProgramEnvParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB));
6950 }
6951
6952 static inline void SET_ProgramEnvParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
6953 SET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB, fn);
6954 }
6955
6956 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
6957 #define CALL_ProgramLocalParameter4dARB(disp, parameters) \
6958 (* GET_ProgramLocalParameter4dARB(disp)) parameters
6959 static inline _glptr_ProgramLocalParameter4dARB GET_ProgramLocalParameter4dARB(struct _glapi_table *disp) {
6960 return (_glptr_ProgramLocalParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB));
6961 }
6962
6963 static inline void SET_ProgramLocalParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
6964 SET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB, fn);
6965 }
6966
6967 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dvARB)(GLenum, GLuint, const GLdouble *);
6968 #define CALL_ProgramLocalParameter4dvARB(disp, parameters) \
6969 (* GET_ProgramLocalParameter4dvARB(disp)) parameters
6970 static inline _glptr_ProgramLocalParameter4dvARB GET_ProgramLocalParameter4dvARB(struct _glapi_table *disp) {
6971 return (_glptr_ProgramLocalParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB));
6972 }
6973
6974 static inline void SET_ProgramLocalParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) {
6975 SET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB, fn);
6976 }
6977
6978 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
6979 #define CALL_ProgramLocalParameter4fARB(disp, parameters) \
6980 (* GET_ProgramLocalParameter4fARB(disp)) parameters
6981 static inline _glptr_ProgramLocalParameter4fARB GET_ProgramLocalParameter4fARB(struct _glapi_table *disp) {
6982 return (_glptr_ProgramLocalParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB));
6983 }
6984
6985 static inline void SET_ProgramLocalParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
6986 SET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB, fn);
6987 }
6988
6989 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fvARB)(GLenum, GLuint, const GLfloat *);
6990 #define CALL_ProgramLocalParameter4fvARB(disp, parameters) \
6991 (* GET_ProgramLocalParameter4fvARB(disp)) parameters
6992 static inline _glptr_ProgramLocalParameter4fvARB GET_ProgramLocalParameter4fvARB(struct _glapi_table *disp) {
6993 return (_glptr_ProgramLocalParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB));
6994 }
6995
6996 static inline void SET_ProgramLocalParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
6997 SET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB, fn);
6998 }
6999
7000 typedef void (GLAPIENTRYP _glptr_ProgramStringARB)(GLenum, GLenum, GLsizei, const GLvoid *);
7001 #define CALL_ProgramStringARB(disp, parameters) \
7002 (* GET_ProgramStringARB(disp)) parameters
7003 static inline _glptr_ProgramStringARB GET_ProgramStringARB(struct _glapi_table *disp) {
7004 return (_glptr_ProgramStringARB) (GET_by_offset(disp, _gloffset_ProgramStringARB));
7005 }
7006
7007 static inline void SET_ProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, const GLvoid *)) {
7008 SET_by_offset(disp, _gloffset_ProgramStringARB, fn);
7009 }
7010
7011 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dARB)(GLuint, GLdouble);
7012 #define CALL_VertexAttrib1dARB(disp, parameters) \
7013 (* GET_VertexAttrib1dARB(disp)) parameters
7014 static inline _glptr_VertexAttrib1dARB GET_VertexAttrib1dARB(struct _glapi_table *disp) {
7015 return (_glptr_VertexAttrib1dARB) (GET_by_offset(disp, _gloffset_VertexAttrib1dARB));
7016 }
7017
7018 static inline void SET_VertexAttrib1dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
7019 SET_by_offset(disp, _gloffset_VertexAttrib1dARB, fn);
7020 }
7021
7022 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvARB)(GLuint, const GLdouble *);
7023 #define CALL_VertexAttrib1dvARB(disp, parameters) \
7024 (* GET_VertexAttrib1dvARB(disp)) parameters
7025 static inline _glptr_VertexAttrib1dvARB GET_VertexAttrib1dvARB(struct _glapi_table *disp) {
7026 return (_glptr_VertexAttrib1dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1dvARB));
7027 }
7028
7029 static inline void SET_VertexAttrib1dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7030 SET_by_offset(disp, _gloffset_VertexAttrib1dvARB, fn);
7031 }
7032
7033 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fARB)(GLuint, GLfloat);
7034 #define CALL_VertexAttrib1fARB(disp, parameters) \
7035 (* GET_VertexAttrib1fARB(disp)) parameters
7036 static inline _glptr_VertexAttrib1fARB GET_VertexAttrib1fARB(struct _glapi_table *disp) {
7037 return (_glptr_VertexAttrib1fARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fARB));
7038 }
7039
7040 static inline void SET_VertexAttrib1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
7041 SET_by_offset(disp, _gloffset_VertexAttrib1fARB, fn);
7042 }
7043
7044 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvARB)(GLuint, const GLfloat *);
7045 #define CALL_VertexAttrib1fvARB(disp, parameters) \
7046 (* GET_VertexAttrib1fvARB(disp)) parameters
7047 static inline _glptr_VertexAttrib1fvARB GET_VertexAttrib1fvARB(struct _glapi_table *disp) {
7048 return (_glptr_VertexAttrib1fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fvARB));
7049 }
7050
7051 static inline void SET_VertexAttrib1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7052 SET_by_offset(disp, _gloffset_VertexAttrib1fvARB, fn);
7053 }
7054
7055 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sARB)(GLuint, GLshort);
7056 #define CALL_VertexAttrib1sARB(disp, parameters) \
7057 (* GET_VertexAttrib1sARB(disp)) parameters
7058 static inline _glptr_VertexAttrib1sARB GET_VertexAttrib1sARB(struct _glapi_table *disp) {
7059 return (_glptr_VertexAttrib1sARB) (GET_by_offset(disp, _gloffset_VertexAttrib1sARB));
7060 }
7061
7062 static inline void SET_VertexAttrib1sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
7063 SET_by_offset(disp, _gloffset_VertexAttrib1sARB, fn);
7064 }
7065
7066 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svARB)(GLuint, const GLshort *);
7067 #define CALL_VertexAttrib1svARB(disp, parameters) \
7068 (* GET_VertexAttrib1svARB(disp)) parameters
7069 static inline _glptr_VertexAttrib1svARB GET_VertexAttrib1svARB(struct _glapi_table *disp) {
7070 return (_glptr_VertexAttrib1svARB) (GET_by_offset(disp, _gloffset_VertexAttrib1svARB));
7071 }
7072
7073 static inline void SET_VertexAttrib1svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7074 SET_by_offset(disp, _gloffset_VertexAttrib1svARB, fn);
7075 }
7076
7077 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dARB)(GLuint, GLdouble, GLdouble);
7078 #define CALL_VertexAttrib2dARB(disp, parameters) \
7079 (* GET_VertexAttrib2dARB(disp)) parameters
7080 static inline _glptr_VertexAttrib2dARB GET_VertexAttrib2dARB(struct _glapi_table *disp) {
7081 return (_glptr_VertexAttrib2dARB) (GET_by_offset(disp, _gloffset_VertexAttrib2dARB));
7082 }
7083
7084 static inline void SET_VertexAttrib2dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
7085 SET_by_offset(disp, _gloffset_VertexAttrib2dARB, fn);
7086 }
7087
7088 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvARB)(GLuint, const GLdouble *);
7089 #define CALL_VertexAttrib2dvARB(disp, parameters) \
7090 (* GET_VertexAttrib2dvARB(disp)) parameters
7091 static inline _glptr_VertexAttrib2dvARB GET_VertexAttrib2dvARB(struct _glapi_table *disp) {
7092 return (_glptr_VertexAttrib2dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2dvARB));
7093 }
7094
7095 static inline void SET_VertexAttrib2dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7096 SET_by_offset(disp, _gloffset_VertexAttrib2dvARB, fn);
7097 }
7098
7099 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fARB)(GLuint, GLfloat, GLfloat);
7100 #define CALL_VertexAttrib2fARB(disp, parameters) \
7101 (* GET_VertexAttrib2fARB(disp)) parameters
7102 static inline _glptr_VertexAttrib2fARB GET_VertexAttrib2fARB(struct _glapi_table *disp) {
7103 return (_glptr_VertexAttrib2fARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fARB));
7104 }
7105
7106 static inline void SET_VertexAttrib2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
7107 SET_by_offset(disp, _gloffset_VertexAttrib2fARB, fn);
7108 }
7109
7110 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvARB)(GLuint, const GLfloat *);
7111 #define CALL_VertexAttrib2fvARB(disp, parameters) \
7112 (* GET_VertexAttrib2fvARB(disp)) parameters
7113 static inline _glptr_VertexAttrib2fvARB GET_VertexAttrib2fvARB(struct _glapi_table *disp) {
7114 return (_glptr_VertexAttrib2fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fvARB));
7115 }
7116
7117 static inline void SET_VertexAttrib2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7118 SET_by_offset(disp, _gloffset_VertexAttrib2fvARB, fn);
7119 }
7120
7121 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sARB)(GLuint, GLshort, GLshort);
7122 #define CALL_VertexAttrib2sARB(disp, parameters) \
7123 (* GET_VertexAttrib2sARB(disp)) parameters
7124 static inline _glptr_VertexAttrib2sARB GET_VertexAttrib2sARB(struct _glapi_table *disp) {
7125 return (_glptr_VertexAttrib2sARB) (GET_by_offset(disp, _gloffset_VertexAttrib2sARB));
7126 }
7127
7128 static inline void SET_VertexAttrib2sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
7129 SET_by_offset(disp, _gloffset_VertexAttrib2sARB, fn);
7130 }
7131
7132 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svARB)(GLuint, const GLshort *);
7133 #define CALL_VertexAttrib2svARB(disp, parameters) \
7134 (* GET_VertexAttrib2svARB(disp)) parameters
7135 static inline _glptr_VertexAttrib2svARB GET_VertexAttrib2svARB(struct _glapi_table *disp) {
7136 return (_glptr_VertexAttrib2svARB) (GET_by_offset(disp, _gloffset_VertexAttrib2svARB));
7137 }
7138
7139 static inline void SET_VertexAttrib2svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7140 SET_by_offset(disp, _gloffset_VertexAttrib2svARB, fn);
7141 }
7142
7143 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dARB)(GLuint, GLdouble, GLdouble, GLdouble);
7144 #define CALL_VertexAttrib3dARB(disp, parameters) \
7145 (* GET_VertexAttrib3dARB(disp)) parameters
7146 static inline _glptr_VertexAttrib3dARB GET_VertexAttrib3dARB(struct _glapi_table *disp) {
7147 return (_glptr_VertexAttrib3dARB) (GET_by_offset(disp, _gloffset_VertexAttrib3dARB));
7148 }
7149
7150 static inline void SET_VertexAttrib3dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
7151 SET_by_offset(disp, _gloffset_VertexAttrib3dARB, fn);
7152 }
7153
7154 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvARB)(GLuint, const GLdouble *);
7155 #define CALL_VertexAttrib3dvARB(disp, parameters) \
7156 (* GET_VertexAttrib3dvARB(disp)) parameters
7157 static inline _glptr_VertexAttrib3dvARB GET_VertexAttrib3dvARB(struct _glapi_table *disp) {
7158 return (_glptr_VertexAttrib3dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3dvARB));
7159 }
7160
7161 static inline void SET_VertexAttrib3dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7162 SET_by_offset(disp, _gloffset_VertexAttrib3dvARB, fn);
7163 }
7164
7165 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fARB)(GLuint, GLfloat, GLfloat, GLfloat);
7166 #define CALL_VertexAttrib3fARB(disp, parameters) \
7167 (* GET_VertexAttrib3fARB(disp)) parameters
7168 static inline _glptr_VertexAttrib3fARB GET_VertexAttrib3fARB(struct _glapi_table *disp) {
7169 return (_glptr_VertexAttrib3fARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fARB));
7170 }
7171
7172 static inline void SET_VertexAttrib3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
7173 SET_by_offset(disp, _gloffset_VertexAttrib3fARB, fn);
7174 }
7175
7176 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvARB)(GLuint, const GLfloat *);
7177 #define CALL_VertexAttrib3fvARB(disp, parameters) \
7178 (* GET_VertexAttrib3fvARB(disp)) parameters
7179 static inline _glptr_VertexAttrib3fvARB GET_VertexAttrib3fvARB(struct _glapi_table *disp) {
7180 return (_glptr_VertexAttrib3fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fvARB));
7181 }
7182
7183 static inline void SET_VertexAttrib3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7184 SET_by_offset(disp, _gloffset_VertexAttrib3fvARB, fn);
7185 }
7186
7187 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sARB)(GLuint, GLshort, GLshort, GLshort);
7188 #define CALL_VertexAttrib3sARB(disp, parameters) \
7189 (* GET_VertexAttrib3sARB(disp)) parameters
7190 static inline _glptr_VertexAttrib3sARB GET_VertexAttrib3sARB(struct _glapi_table *disp) {
7191 return (_glptr_VertexAttrib3sARB) (GET_by_offset(disp, _gloffset_VertexAttrib3sARB));
7192 }
7193
7194 static inline void SET_VertexAttrib3sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
7195 SET_by_offset(disp, _gloffset_VertexAttrib3sARB, fn);
7196 }
7197
7198 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svARB)(GLuint, const GLshort *);
7199 #define CALL_VertexAttrib3svARB(disp, parameters) \
7200 (* GET_VertexAttrib3svARB(disp)) parameters
7201 static inline _glptr_VertexAttrib3svARB GET_VertexAttrib3svARB(struct _glapi_table *disp) {
7202 return (_glptr_VertexAttrib3svARB) (GET_by_offset(disp, _gloffset_VertexAttrib3svARB));
7203 }
7204
7205 static inline void SET_VertexAttrib3svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7206 SET_by_offset(disp, _gloffset_VertexAttrib3svARB, fn);
7207 }
7208
7209 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NbvARB)(GLuint, const GLbyte *);
7210 #define CALL_VertexAttrib4NbvARB(disp, parameters) \
7211 (* GET_VertexAttrib4NbvARB(disp)) parameters
7212 static inline _glptr_VertexAttrib4NbvARB GET_VertexAttrib4NbvARB(struct _glapi_table *disp) {
7213 return (_glptr_VertexAttrib4NbvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NbvARB));
7214 }
7215
7216 static inline void SET_VertexAttrib4NbvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
7217 SET_by_offset(disp, _gloffset_VertexAttrib4NbvARB, fn);
7218 }
7219
7220 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NivARB)(GLuint, const GLint *);
7221 #define CALL_VertexAttrib4NivARB(disp, parameters) \
7222 (* GET_VertexAttrib4NivARB(disp)) parameters
7223 static inline _glptr_VertexAttrib4NivARB GET_VertexAttrib4NivARB(struct _glapi_table *disp) {
7224 return (_glptr_VertexAttrib4NivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NivARB));
7225 }
7226
7227 static inline void SET_VertexAttrib4NivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
7228 SET_by_offset(disp, _gloffset_VertexAttrib4NivARB, fn);
7229 }
7230
7231 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NsvARB)(GLuint, const GLshort *);
7232 #define CALL_VertexAttrib4NsvARB(disp, parameters) \
7233 (* GET_VertexAttrib4NsvARB(disp)) parameters
7234 static inline _glptr_VertexAttrib4NsvARB GET_VertexAttrib4NsvARB(struct _glapi_table *disp) {
7235 return (_glptr_VertexAttrib4NsvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NsvARB));
7236 }
7237
7238 static inline void SET_VertexAttrib4NsvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7239 SET_by_offset(disp, _gloffset_VertexAttrib4NsvARB, fn);
7240 }
7241
7242 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NubARB)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
7243 #define CALL_VertexAttrib4NubARB(disp, parameters) \
7244 (* GET_VertexAttrib4NubARB(disp)) parameters
7245 static inline _glptr_VertexAttrib4NubARB GET_VertexAttrib4NubARB(struct _glapi_table *disp) {
7246 return (_glptr_VertexAttrib4NubARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NubARB));
7247 }
7248
7249 static inline void SET_VertexAttrib4NubARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
7250 SET_by_offset(disp, _gloffset_VertexAttrib4NubARB, fn);
7251 }
7252
7253 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NubvARB)(GLuint, const GLubyte *);
7254 #define CALL_VertexAttrib4NubvARB(disp, parameters) \
7255 (* GET_VertexAttrib4NubvARB(disp)) parameters
7256 static inline _glptr_VertexAttrib4NubvARB GET_VertexAttrib4NubvARB(struct _glapi_table *disp) {
7257 return (_glptr_VertexAttrib4NubvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NubvARB));
7258 }
7259
7260 static inline void SET_VertexAttrib4NubvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
7261 SET_by_offset(disp, _gloffset_VertexAttrib4NubvARB, fn);
7262 }
7263
7264 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NuivARB)(GLuint, const GLuint *);
7265 #define CALL_VertexAttrib4NuivARB(disp, parameters) \
7266 (* GET_VertexAttrib4NuivARB(disp)) parameters
7267 static inline _glptr_VertexAttrib4NuivARB GET_VertexAttrib4NuivARB(struct _glapi_table *disp) {
7268 return (_glptr_VertexAttrib4NuivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NuivARB));
7269 }
7270
7271 static inline void SET_VertexAttrib4NuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
7272 SET_by_offset(disp, _gloffset_VertexAttrib4NuivARB, fn);
7273 }
7274
7275 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NusvARB)(GLuint, const GLushort *);
7276 #define CALL_VertexAttrib4NusvARB(disp, parameters) \
7277 (* GET_VertexAttrib4NusvARB(disp)) parameters
7278 static inline _glptr_VertexAttrib4NusvARB GET_VertexAttrib4NusvARB(struct _glapi_table *disp) {
7279 return (_glptr_VertexAttrib4NusvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NusvARB));
7280 }
7281
7282 static inline void SET_VertexAttrib4NusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
7283 SET_by_offset(disp, _gloffset_VertexAttrib4NusvARB, fn);
7284 }
7285
7286 typedef void (GLAPIENTRYP _glptr_VertexAttrib4bvARB)(GLuint, const GLbyte *);
7287 #define CALL_VertexAttrib4bvARB(disp, parameters) \
7288 (* GET_VertexAttrib4bvARB(disp)) parameters
7289 static inline _glptr_VertexAttrib4bvARB GET_VertexAttrib4bvARB(struct _glapi_table *disp) {
7290 return (_glptr_VertexAttrib4bvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4bvARB));
7291 }
7292
7293 static inline void SET_VertexAttrib4bvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
7294 SET_by_offset(disp, _gloffset_VertexAttrib4bvARB, fn);
7295 }
7296
7297 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dARB)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
7298 #define CALL_VertexAttrib4dARB(disp, parameters) \
7299 (* GET_VertexAttrib4dARB(disp)) parameters
7300 static inline _glptr_VertexAttrib4dARB GET_VertexAttrib4dARB(struct _glapi_table *disp) {
7301 return (_glptr_VertexAttrib4dARB) (GET_by_offset(disp, _gloffset_VertexAttrib4dARB));
7302 }
7303
7304 static inline void SET_VertexAttrib4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
7305 SET_by_offset(disp, _gloffset_VertexAttrib4dARB, fn);
7306 }
7307
7308 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvARB)(GLuint, const GLdouble *);
7309 #define CALL_VertexAttrib4dvARB(disp, parameters) \
7310 (* GET_VertexAttrib4dvARB(disp)) parameters
7311 static inline _glptr_VertexAttrib4dvARB GET_VertexAttrib4dvARB(struct _glapi_table *disp) {
7312 return (_glptr_VertexAttrib4dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4dvARB));
7313 }
7314
7315 static inline void SET_VertexAttrib4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7316 SET_by_offset(disp, _gloffset_VertexAttrib4dvARB, fn);
7317 }
7318
7319 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fARB)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
7320 #define CALL_VertexAttrib4fARB(disp, parameters) \
7321 (* GET_VertexAttrib4fARB(disp)) parameters
7322 static inline _glptr_VertexAttrib4fARB GET_VertexAttrib4fARB(struct _glapi_table *disp) {
7323 return (_glptr_VertexAttrib4fARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fARB));
7324 }
7325
7326 static inline void SET_VertexAttrib4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
7327 SET_by_offset(disp, _gloffset_VertexAttrib4fARB, fn);
7328 }
7329
7330 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvARB)(GLuint, const GLfloat *);
7331 #define CALL_VertexAttrib4fvARB(disp, parameters) \
7332 (* GET_VertexAttrib4fvARB(disp)) parameters
7333 static inline _glptr_VertexAttrib4fvARB GET_VertexAttrib4fvARB(struct _glapi_table *disp) {
7334 return (_glptr_VertexAttrib4fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fvARB));
7335 }
7336
7337 static inline void SET_VertexAttrib4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7338 SET_by_offset(disp, _gloffset_VertexAttrib4fvARB, fn);
7339 }
7340
7341 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ivARB)(GLuint, const GLint *);
7342 #define CALL_VertexAttrib4ivARB(disp, parameters) \
7343 (* GET_VertexAttrib4ivARB(disp)) parameters
7344 static inline _glptr_VertexAttrib4ivARB GET_VertexAttrib4ivARB(struct _glapi_table *disp) {
7345 return (_glptr_VertexAttrib4ivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4ivARB));
7346 }
7347
7348 static inline void SET_VertexAttrib4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
7349 SET_by_offset(disp, _gloffset_VertexAttrib4ivARB, fn);
7350 }
7351
7352 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sARB)(GLuint, GLshort, GLshort, GLshort, GLshort);
7353 #define CALL_VertexAttrib4sARB(disp, parameters) \
7354 (* GET_VertexAttrib4sARB(disp)) parameters
7355 static inline _glptr_VertexAttrib4sARB GET_VertexAttrib4sARB(struct _glapi_table *disp) {
7356 return (_glptr_VertexAttrib4sARB) (GET_by_offset(disp, _gloffset_VertexAttrib4sARB));
7357 }
7358
7359 static inline void SET_VertexAttrib4sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
7360 SET_by_offset(disp, _gloffset_VertexAttrib4sARB, fn);
7361 }
7362
7363 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svARB)(GLuint, const GLshort *);
7364 #define CALL_VertexAttrib4svARB(disp, parameters) \
7365 (* GET_VertexAttrib4svARB(disp)) parameters
7366 static inline _glptr_VertexAttrib4svARB GET_VertexAttrib4svARB(struct _glapi_table *disp) {
7367 return (_glptr_VertexAttrib4svARB) (GET_by_offset(disp, _gloffset_VertexAttrib4svARB));
7368 }
7369
7370 static inline void SET_VertexAttrib4svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7371 SET_by_offset(disp, _gloffset_VertexAttrib4svARB, fn);
7372 }
7373
7374 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvARB)(GLuint, const GLubyte *);
7375 #define CALL_VertexAttrib4ubvARB(disp, parameters) \
7376 (* GET_VertexAttrib4ubvARB(disp)) parameters
7377 static inline _glptr_VertexAttrib4ubvARB GET_VertexAttrib4ubvARB(struct _glapi_table *disp) {
7378 return (_glptr_VertexAttrib4ubvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvARB));
7379 }
7380
7381 static inline void SET_VertexAttrib4ubvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
7382 SET_by_offset(disp, _gloffset_VertexAttrib4ubvARB, fn);
7383 }
7384
7385 typedef void (GLAPIENTRYP _glptr_VertexAttrib4uivARB)(GLuint, const GLuint *);
7386 #define CALL_VertexAttrib4uivARB(disp, parameters) \
7387 (* GET_VertexAttrib4uivARB(disp)) parameters
7388 static inline _glptr_VertexAttrib4uivARB GET_VertexAttrib4uivARB(struct _glapi_table *disp) {
7389 return (_glptr_VertexAttrib4uivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4uivARB));
7390 }
7391
7392 static inline void SET_VertexAttrib4uivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
7393 SET_by_offset(disp, _gloffset_VertexAttrib4uivARB, fn);
7394 }
7395
7396 typedef void (GLAPIENTRYP _glptr_VertexAttrib4usvARB)(GLuint, const GLushort *);
7397 #define CALL_VertexAttrib4usvARB(disp, parameters) \
7398 (* GET_VertexAttrib4usvARB(disp)) parameters
7399 static inline _glptr_VertexAttrib4usvARB GET_VertexAttrib4usvARB(struct _glapi_table *disp) {
7400 return (_glptr_VertexAttrib4usvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4usvARB));
7401 }
7402
7403 static inline void SET_VertexAttrib4usvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
7404 SET_by_offset(disp, _gloffset_VertexAttrib4usvARB, fn);
7405 }
7406
7407 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerARB)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *);
7408 #define CALL_VertexAttribPointerARB(disp, parameters) \
7409 (* GET_VertexAttribPointerARB(disp)) parameters
7410 static inline _glptr_VertexAttribPointerARB GET_VertexAttribPointerARB(struct _glapi_table *disp) {
7411 return (_glptr_VertexAttribPointerARB) (GET_by_offset(disp, _gloffset_VertexAttribPointerARB));
7412 }
7413
7414 static inline void SET_VertexAttribPointerARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *)) {
7415 SET_by_offset(disp, _gloffset_VertexAttribPointerARB, fn);
7416 }
7417
7418 typedef void (GLAPIENTRYP _glptr_BindBufferARB)(GLenum, GLuint);
7419 #define CALL_BindBufferARB(disp, parameters) \
7420 (* GET_BindBufferARB(disp)) parameters
7421 static inline _glptr_BindBufferARB GET_BindBufferARB(struct _glapi_table *disp) {
7422 return (_glptr_BindBufferARB) (GET_by_offset(disp, _gloffset_BindBufferARB));
7423 }
7424
7425 static inline void SET_BindBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
7426 SET_by_offset(disp, _gloffset_BindBufferARB, fn);
7427 }
7428
7429 typedef void (GLAPIENTRYP _glptr_BufferDataARB)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum);
7430 #define CALL_BufferDataARB(disp, parameters) \
7431 (* GET_BufferDataARB(disp)) parameters
7432 static inline _glptr_BufferDataARB GET_BufferDataARB(struct _glapi_table *disp) {
7433 return (_glptr_BufferDataARB) (GET_by_offset(disp, _gloffset_BufferDataARB));
7434 }
7435
7436 static inline void SET_BufferDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum)) {
7437 SET_by_offset(disp, _gloffset_BufferDataARB, fn);
7438 }
7439
7440 typedef void (GLAPIENTRYP _glptr_BufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *);
7441 #define CALL_BufferSubDataARB(disp, parameters) \
7442 (* GET_BufferSubDataARB(disp)) parameters
7443 static inline _glptr_BufferSubDataARB GET_BufferSubDataARB(struct _glapi_table *disp) {
7444 return (_glptr_BufferSubDataARB) (GET_by_offset(disp, _gloffset_BufferSubDataARB));
7445 }
7446
7447 static inline void SET_BufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *)) {
7448 SET_by_offset(disp, _gloffset_BufferSubDataARB, fn);
7449 }
7450
7451 typedef void (GLAPIENTRYP _glptr_DeleteBuffersARB)(GLsizei, const GLuint *);
7452 #define CALL_DeleteBuffersARB(disp, parameters) \
7453 (* GET_DeleteBuffersARB(disp)) parameters
7454 static inline _glptr_DeleteBuffersARB GET_DeleteBuffersARB(struct _glapi_table *disp) {
7455 return (_glptr_DeleteBuffersARB) (GET_by_offset(disp, _gloffset_DeleteBuffersARB));
7456 }
7457
7458 static inline void SET_DeleteBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
7459 SET_by_offset(disp, _gloffset_DeleteBuffersARB, fn);
7460 }
7461
7462 typedef void (GLAPIENTRYP _glptr_GenBuffersARB)(GLsizei, GLuint *);
7463 #define CALL_GenBuffersARB(disp, parameters) \
7464 (* GET_GenBuffersARB(disp)) parameters
7465 static inline _glptr_GenBuffersARB GET_GenBuffersARB(struct _glapi_table *disp) {
7466 return (_glptr_GenBuffersARB) (GET_by_offset(disp, _gloffset_GenBuffersARB));
7467 }
7468
7469 static inline void SET_GenBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
7470 SET_by_offset(disp, _gloffset_GenBuffersARB, fn);
7471 }
7472
7473 typedef void (GLAPIENTRYP _glptr_GetBufferParameterivARB)(GLenum, GLenum, GLint *);
7474 #define CALL_GetBufferParameterivARB(disp, parameters) \
7475 (* GET_GetBufferParameterivARB(disp)) parameters
7476 static inline _glptr_GetBufferParameterivARB GET_GetBufferParameterivARB(struct _glapi_table *disp) {
7477 return (_glptr_GetBufferParameterivARB) (GET_by_offset(disp, _gloffset_GetBufferParameterivARB));
7478 }
7479
7480 static inline void SET_GetBufferParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
7481 SET_by_offset(disp, _gloffset_GetBufferParameterivARB, fn);
7482 }
7483
7484 typedef void (GLAPIENTRYP _glptr_GetBufferPointervARB)(GLenum, GLenum, GLvoid **);
7485 #define CALL_GetBufferPointervARB(disp, parameters) \
7486 (* GET_GetBufferPointervARB(disp)) parameters
7487 static inline _glptr_GetBufferPointervARB GET_GetBufferPointervARB(struct _glapi_table *disp) {
7488 return (_glptr_GetBufferPointervARB) (GET_by_offset(disp, _gloffset_GetBufferPointervARB));
7489 }
7490
7491 static inline void SET_GetBufferPointervARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
7492 SET_by_offset(disp, _gloffset_GetBufferPointervARB, fn);
7493 }
7494
7495 typedef void (GLAPIENTRYP _glptr_GetBufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *);
7496 #define CALL_GetBufferSubDataARB(disp, parameters) \
7497 (* GET_GetBufferSubDataARB(disp)) parameters
7498 static inline _glptr_GetBufferSubDataARB GET_GetBufferSubDataARB(struct _glapi_table *disp) {
7499 return (_glptr_GetBufferSubDataARB) (GET_by_offset(disp, _gloffset_GetBufferSubDataARB));
7500 }
7501
7502 static inline void SET_GetBufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *)) {
7503 SET_by_offset(disp, _gloffset_GetBufferSubDataARB, fn);
7504 }
7505
7506 typedef GLboolean (GLAPIENTRYP _glptr_IsBufferARB)(GLuint);
7507 #define CALL_IsBufferARB(disp, parameters) \
7508 (* GET_IsBufferARB(disp)) parameters
7509 static inline _glptr_IsBufferARB GET_IsBufferARB(struct _glapi_table *disp) {
7510 return (_glptr_IsBufferARB) (GET_by_offset(disp, _gloffset_IsBufferARB));
7511 }
7512
7513 static inline void SET_IsBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
7514 SET_by_offset(disp, _gloffset_IsBufferARB, fn);
7515 }
7516
7517 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferARB)(GLenum, GLenum);
7518 #define CALL_MapBufferARB(disp, parameters) \
7519 (* GET_MapBufferARB(disp)) parameters
7520 static inline _glptr_MapBufferARB GET_MapBufferARB(struct _glapi_table *disp) {
7521 return (_glptr_MapBufferARB) (GET_by_offset(disp, _gloffset_MapBufferARB));
7522 }
7523
7524 static inline void SET_MapBufferARB(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLenum)) {
7525 SET_by_offset(disp, _gloffset_MapBufferARB, fn);
7526 }
7527
7528 typedef GLboolean (GLAPIENTRYP _glptr_UnmapBufferARB)(GLenum);
7529 #define CALL_UnmapBufferARB(disp, parameters) \
7530 (* GET_UnmapBufferARB(disp)) parameters
7531 static inline _glptr_UnmapBufferARB GET_UnmapBufferARB(struct _glapi_table *disp) {
7532 return (_glptr_UnmapBufferARB) (GET_by_offset(disp, _gloffset_UnmapBufferARB));
7533 }
7534
7535 static inline void SET_UnmapBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
7536 SET_by_offset(disp, _gloffset_UnmapBufferARB, fn);
7537 }
7538
7539 typedef void (GLAPIENTRYP _glptr_AttachObjectARB)(GLhandleARB, GLhandleARB);
7540 #define CALL_AttachObjectARB(disp, parameters) \
7541 (* GET_AttachObjectARB(disp)) parameters
7542 static inline _glptr_AttachObjectARB GET_AttachObjectARB(struct _glapi_table *disp) {
7543 return (_glptr_AttachObjectARB) (GET_by_offset(disp, _gloffset_AttachObjectARB));
7544 }
7545
7546 static inline void SET_AttachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
7547 SET_by_offset(disp, _gloffset_AttachObjectARB, fn);
7548 }
7549
7550 typedef void (GLAPIENTRYP _glptr_CompileShaderARB)(GLhandleARB);
7551 #define CALL_CompileShaderARB(disp, parameters) \
7552 (* GET_CompileShaderARB(disp)) parameters
7553 static inline _glptr_CompileShaderARB GET_CompileShaderARB(struct _glapi_table *disp) {
7554 return (_glptr_CompileShaderARB) (GET_by_offset(disp, _gloffset_CompileShaderARB));
7555 }
7556
7557 static inline void SET_CompileShaderARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
7558 SET_by_offset(disp, _gloffset_CompileShaderARB, fn);
7559 }
7560
7561 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateProgramObjectARB)(void);
7562 #define CALL_CreateProgramObjectARB(disp, parameters) \
7563 (* GET_CreateProgramObjectARB(disp)) parameters
7564 static inline _glptr_CreateProgramObjectARB GET_CreateProgramObjectARB(struct _glapi_table *disp) {
7565 return (_glptr_CreateProgramObjectARB) (GET_by_offset(disp, _gloffset_CreateProgramObjectARB));
7566 }
7567
7568 static inline void SET_CreateProgramObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(void)) {
7569 SET_by_offset(disp, _gloffset_CreateProgramObjectARB, fn);
7570 }
7571
7572 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateShaderObjectARB)(GLenum);
7573 #define CALL_CreateShaderObjectARB(disp, parameters) \
7574 (* GET_CreateShaderObjectARB(disp)) parameters
7575 static inline _glptr_CreateShaderObjectARB GET_CreateShaderObjectARB(struct _glapi_table *disp) {
7576 return (_glptr_CreateShaderObjectARB) (GET_by_offset(disp, _gloffset_CreateShaderObjectARB));
7577 }
7578
7579 static inline void SET_CreateShaderObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
7580 SET_by_offset(disp, _gloffset_CreateShaderObjectARB, fn);
7581 }
7582
7583 typedef void (GLAPIENTRYP _glptr_DeleteObjectARB)(GLhandleARB);
7584 #define CALL_DeleteObjectARB(disp, parameters) \
7585 (* GET_DeleteObjectARB(disp)) parameters
7586 static inline _glptr_DeleteObjectARB GET_DeleteObjectARB(struct _glapi_table *disp) {
7587 return (_glptr_DeleteObjectARB) (GET_by_offset(disp, _gloffset_DeleteObjectARB));
7588 }
7589
7590 static inline void SET_DeleteObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
7591 SET_by_offset(disp, _gloffset_DeleteObjectARB, fn);
7592 }
7593
7594 typedef void (GLAPIENTRYP _glptr_DetachObjectARB)(GLhandleARB, GLhandleARB);
7595 #define CALL_DetachObjectARB(disp, parameters) \
7596 (* GET_DetachObjectARB(disp)) parameters
7597 static inline _glptr_DetachObjectARB GET_DetachObjectARB(struct _glapi_table *disp) {
7598 return (_glptr_DetachObjectARB) (GET_by_offset(disp, _gloffset_DetachObjectARB));
7599 }
7600
7601 static inline void SET_DetachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
7602 SET_by_offset(disp, _gloffset_DetachObjectARB, fn);
7603 }
7604
7605 typedef void (GLAPIENTRYP _glptr_GetActiveUniformARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *);
7606 #define CALL_GetActiveUniformARB(disp, parameters) \
7607 (* GET_GetActiveUniformARB(disp)) parameters
7608 static inline _glptr_GetActiveUniformARB GET_GetActiveUniformARB(struct _glapi_table *disp) {
7609 return (_glptr_GetActiveUniformARB) (GET_by_offset(disp, _gloffset_GetActiveUniformARB));
7610 }
7611
7612 static inline void SET_GetActiveUniformARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) {
7613 SET_by_offset(disp, _gloffset_GetActiveUniformARB, fn);
7614 }
7615
7616 typedef void (GLAPIENTRYP _glptr_GetAttachedObjectsARB)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *);
7617 #define CALL_GetAttachedObjectsARB(disp, parameters) \
7618 (* GET_GetAttachedObjectsARB(disp)) parameters
7619 static inline _glptr_GetAttachedObjectsARB GET_GetAttachedObjectsARB(struct _glapi_table *disp) {
7620 return (_glptr_GetAttachedObjectsARB) (GET_by_offset(disp, _gloffset_GetAttachedObjectsARB));
7621 }
7622
7623 static inline void SET_GetAttachedObjectsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *)) {
7624 SET_by_offset(disp, _gloffset_GetAttachedObjectsARB, fn);
7625 }
7626
7627 typedef GLhandleARB (GLAPIENTRYP _glptr_GetHandleARB)(GLenum);
7628 #define CALL_GetHandleARB(disp, parameters) \
7629 (* GET_GetHandleARB(disp)) parameters
7630 static inline _glptr_GetHandleARB GET_GetHandleARB(struct _glapi_table *disp) {
7631 return (_glptr_GetHandleARB) (GET_by_offset(disp, _gloffset_GetHandleARB));
7632 }
7633
7634 static inline void SET_GetHandleARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
7635 SET_by_offset(disp, _gloffset_GetHandleARB, fn);
7636 }
7637
7638 typedef void (GLAPIENTRYP _glptr_GetInfoLogARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
7639 #define CALL_GetInfoLogARB(disp, parameters) \
7640 (* GET_GetInfoLogARB(disp)) parameters
7641 static inline _glptr_GetInfoLogARB GET_GetInfoLogARB(struct _glapi_table *disp) {
7642 return (_glptr_GetInfoLogARB) (GET_by_offset(disp, _gloffset_GetInfoLogARB));
7643 }
7644
7645 static inline void SET_GetInfoLogARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
7646 SET_by_offset(disp, _gloffset_GetInfoLogARB, fn);
7647 }
7648
7649 typedef void (GLAPIENTRYP _glptr_GetObjectParameterfvARB)(GLhandleARB, GLenum, GLfloat *);
7650 #define CALL_GetObjectParameterfvARB(disp, parameters) \
7651 (* GET_GetObjectParameterfvARB(disp)) parameters
7652 static inline _glptr_GetObjectParameterfvARB GET_GetObjectParameterfvARB(struct _glapi_table *disp) {
7653 return (_glptr_GetObjectParameterfvARB) (GET_by_offset(disp, _gloffset_GetObjectParameterfvARB));
7654 }
7655
7656 static inline void SET_GetObjectParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLfloat *)) {
7657 SET_by_offset(disp, _gloffset_GetObjectParameterfvARB, fn);
7658 }
7659
7660 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivARB)(GLhandleARB, GLenum, GLint *);
7661 #define CALL_GetObjectParameterivARB(disp, parameters) \
7662 (* GET_GetObjectParameterivARB(disp)) parameters
7663 static inline _glptr_GetObjectParameterivARB GET_GetObjectParameterivARB(struct _glapi_table *disp) {
7664 return (_glptr_GetObjectParameterivARB) (GET_by_offset(disp, _gloffset_GetObjectParameterivARB));
7665 }
7666
7667 static inline void SET_GetObjectParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLint *)) {
7668 SET_by_offset(disp, _gloffset_GetObjectParameterivARB, fn);
7669 }
7670
7671 typedef void (GLAPIENTRYP _glptr_GetShaderSourceARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
7672 #define CALL_GetShaderSourceARB(disp, parameters) \
7673 (* GET_GetShaderSourceARB(disp)) parameters
7674 static inline _glptr_GetShaderSourceARB GET_GetShaderSourceARB(struct _glapi_table *disp) {
7675 return (_glptr_GetShaderSourceARB) (GET_by_offset(disp, _gloffset_GetShaderSourceARB));
7676 }
7677
7678 static inline void SET_GetShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
7679 SET_by_offset(disp, _gloffset_GetShaderSourceARB, fn);
7680 }
7681
7682 typedef GLint (GLAPIENTRYP _glptr_GetUniformLocationARB)(GLhandleARB, const GLcharARB *);
7683 #define CALL_GetUniformLocationARB(disp, parameters) \
7684 (* GET_GetUniformLocationARB(disp)) parameters
7685 static inline _glptr_GetUniformLocationARB GET_GetUniformLocationARB(struct _glapi_table *disp) {
7686 return (_glptr_GetUniformLocationARB) (GET_by_offset(disp, _gloffset_GetUniformLocationARB));
7687 }
7688
7689 static inline void SET_GetUniformLocationARB(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLhandleARB, const GLcharARB *)) {
7690 SET_by_offset(disp, _gloffset_GetUniformLocationARB, fn);
7691 }
7692
7693 typedef void (GLAPIENTRYP _glptr_GetUniformfvARB)(GLhandleARB, GLint, GLfloat *);
7694 #define CALL_GetUniformfvARB(disp, parameters) \
7695 (* GET_GetUniformfvARB(disp)) parameters
7696 static inline _glptr_GetUniformfvARB GET_GetUniformfvARB(struct _glapi_table *disp) {
7697 return (_glptr_GetUniformfvARB) (GET_by_offset(disp, _gloffset_GetUniformfvARB));
7698 }
7699
7700 static inline void SET_GetUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLfloat *)) {
7701 SET_by_offset(disp, _gloffset_GetUniformfvARB, fn);
7702 }
7703
7704 typedef void (GLAPIENTRYP _glptr_GetUniformivARB)(GLhandleARB, GLint, GLint *);
7705 #define CALL_GetUniformivARB(disp, parameters) \
7706 (* GET_GetUniformivARB(disp)) parameters
7707 static inline _glptr_GetUniformivARB GET_GetUniformivARB(struct _glapi_table *disp) {
7708 return (_glptr_GetUniformivARB) (GET_by_offset(disp, _gloffset_GetUniformivARB));
7709 }
7710
7711 static inline void SET_GetUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLint *)) {
7712 SET_by_offset(disp, _gloffset_GetUniformivARB, fn);
7713 }
7714
7715 typedef void (GLAPIENTRYP _glptr_LinkProgramARB)(GLhandleARB);
7716 #define CALL_LinkProgramARB(disp, parameters) \
7717 (* GET_LinkProgramARB(disp)) parameters
7718 static inline _glptr_LinkProgramARB GET_LinkProgramARB(struct _glapi_table *disp) {
7719 return (_glptr_LinkProgramARB) (GET_by_offset(disp, _gloffset_LinkProgramARB));
7720 }
7721
7722 static inline void SET_LinkProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
7723 SET_by_offset(disp, _gloffset_LinkProgramARB, fn);
7724 }
7725
7726 typedef void (GLAPIENTRYP _glptr_ShaderSourceARB)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *);
7727 #define CALL_ShaderSourceARB(disp, parameters) \
7728 (* GET_ShaderSourceARB(disp)) parameters
7729 static inline _glptr_ShaderSourceARB GET_ShaderSourceARB(struct _glapi_table *disp) {
7730 return (_glptr_ShaderSourceARB) (GET_by_offset(disp, _gloffset_ShaderSourceARB));
7731 }
7732
7733 static inline void SET_ShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *)) {
7734 SET_by_offset(disp, _gloffset_ShaderSourceARB, fn);
7735 }
7736
7737 typedef void (GLAPIENTRYP _glptr_Uniform1fARB)(GLint, GLfloat);
7738 #define CALL_Uniform1fARB(disp, parameters) \
7739 (* GET_Uniform1fARB(disp)) parameters
7740 static inline _glptr_Uniform1fARB GET_Uniform1fARB(struct _glapi_table *disp) {
7741 return (_glptr_Uniform1fARB) (GET_by_offset(disp, _gloffset_Uniform1fARB));
7742 }
7743
7744 static inline void SET_Uniform1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat)) {
7745 SET_by_offset(disp, _gloffset_Uniform1fARB, fn);
7746 }
7747
7748 typedef void (GLAPIENTRYP _glptr_Uniform1fvARB)(GLint, GLsizei, const GLfloat *);
7749 #define CALL_Uniform1fvARB(disp, parameters) \
7750 (* GET_Uniform1fvARB(disp)) parameters
7751 static inline _glptr_Uniform1fvARB GET_Uniform1fvARB(struct _glapi_table *disp) {
7752 return (_glptr_Uniform1fvARB) (GET_by_offset(disp, _gloffset_Uniform1fvARB));
7753 }
7754
7755 static inline void SET_Uniform1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
7756 SET_by_offset(disp, _gloffset_Uniform1fvARB, fn);
7757 }
7758
7759 typedef void (GLAPIENTRYP _glptr_Uniform1iARB)(GLint, GLint);
7760 #define CALL_Uniform1iARB(disp, parameters) \
7761 (* GET_Uniform1iARB(disp)) parameters
7762 static inline _glptr_Uniform1iARB GET_Uniform1iARB(struct _glapi_table *disp) {
7763 return (_glptr_Uniform1iARB) (GET_by_offset(disp, _gloffset_Uniform1iARB));
7764 }
7765
7766 static inline void SET_Uniform1iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
7767 SET_by_offset(disp, _gloffset_Uniform1iARB, fn);
7768 }
7769
7770 typedef void (GLAPIENTRYP _glptr_Uniform1ivARB)(GLint, GLsizei, const GLint *);
7771 #define CALL_Uniform1ivARB(disp, parameters) \
7772 (* GET_Uniform1ivARB(disp)) parameters
7773 static inline _glptr_Uniform1ivARB GET_Uniform1ivARB(struct _glapi_table *disp) {
7774 return (_glptr_Uniform1ivARB) (GET_by_offset(disp, _gloffset_Uniform1ivARB));
7775 }
7776
7777 static inline void SET_Uniform1ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
7778 SET_by_offset(disp, _gloffset_Uniform1ivARB, fn);
7779 }
7780
7781 typedef void (GLAPIENTRYP _glptr_Uniform2fARB)(GLint, GLfloat, GLfloat);
7782 #define CALL_Uniform2fARB(disp, parameters) \
7783 (* GET_Uniform2fARB(disp)) parameters
7784 static inline _glptr_Uniform2fARB GET_Uniform2fARB(struct _glapi_table *disp) {
7785 return (_glptr_Uniform2fARB) (GET_by_offset(disp, _gloffset_Uniform2fARB));
7786 }
7787
7788 static inline void SET_Uniform2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
7789 SET_by_offset(disp, _gloffset_Uniform2fARB, fn);
7790 }
7791
7792 typedef void (GLAPIENTRYP _glptr_Uniform2fvARB)(GLint, GLsizei, const GLfloat *);
7793 #define CALL_Uniform2fvARB(disp, parameters) \
7794 (* GET_Uniform2fvARB(disp)) parameters
7795 static inline _glptr_Uniform2fvARB GET_Uniform2fvARB(struct _glapi_table *disp) {
7796 return (_glptr_Uniform2fvARB) (GET_by_offset(disp, _gloffset_Uniform2fvARB));
7797 }
7798
7799 static inline void SET_Uniform2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
7800 SET_by_offset(disp, _gloffset_Uniform2fvARB, fn);
7801 }
7802
7803 typedef void (GLAPIENTRYP _glptr_Uniform2iARB)(GLint, GLint, GLint);
7804 #define CALL_Uniform2iARB(disp, parameters) \
7805 (* GET_Uniform2iARB(disp)) parameters
7806 static inline _glptr_Uniform2iARB GET_Uniform2iARB(struct _glapi_table *disp) {
7807 return (_glptr_Uniform2iARB) (GET_by_offset(disp, _gloffset_Uniform2iARB));
7808 }
7809
7810 static inline void SET_Uniform2iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
7811 SET_by_offset(disp, _gloffset_Uniform2iARB, fn);
7812 }
7813
7814 typedef void (GLAPIENTRYP _glptr_Uniform2ivARB)(GLint, GLsizei, const GLint *);
7815 #define CALL_Uniform2ivARB(disp, parameters) \
7816 (* GET_Uniform2ivARB(disp)) parameters
7817 static inline _glptr_Uniform2ivARB GET_Uniform2ivARB(struct _glapi_table *disp) {
7818 return (_glptr_Uniform2ivARB) (GET_by_offset(disp, _gloffset_Uniform2ivARB));
7819 }
7820
7821 static inline void SET_Uniform2ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
7822 SET_by_offset(disp, _gloffset_Uniform2ivARB, fn);
7823 }
7824
7825 typedef void (GLAPIENTRYP _glptr_Uniform3fARB)(GLint, GLfloat, GLfloat, GLfloat);
7826 #define CALL_Uniform3fARB(disp, parameters) \
7827 (* GET_Uniform3fARB(disp)) parameters
7828 static inline _glptr_Uniform3fARB GET_Uniform3fARB(struct _glapi_table *disp) {
7829 return (_glptr_Uniform3fARB) (GET_by_offset(disp, _gloffset_Uniform3fARB));
7830 }
7831
7832 static inline void SET_Uniform3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat)) {
7833 SET_by_offset(disp, _gloffset_Uniform3fARB, fn);
7834 }
7835
7836 typedef void (GLAPIENTRYP _glptr_Uniform3fvARB)(GLint, GLsizei, const GLfloat *);
7837 #define CALL_Uniform3fvARB(disp, parameters) \
7838 (* GET_Uniform3fvARB(disp)) parameters
7839 static inline _glptr_Uniform3fvARB GET_Uniform3fvARB(struct _glapi_table *disp) {
7840 return (_glptr_Uniform3fvARB) (GET_by_offset(disp, _gloffset_Uniform3fvARB));
7841 }
7842
7843 static inline void SET_Uniform3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
7844 SET_by_offset(disp, _gloffset_Uniform3fvARB, fn);
7845 }
7846
7847 typedef void (GLAPIENTRYP _glptr_Uniform3iARB)(GLint, GLint, GLint, GLint);
7848 #define CALL_Uniform3iARB(disp, parameters) \
7849 (* GET_Uniform3iARB(disp)) parameters
7850 static inline _glptr_Uniform3iARB GET_Uniform3iARB(struct _glapi_table *disp) {
7851 return (_glptr_Uniform3iARB) (GET_by_offset(disp, _gloffset_Uniform3iARB));
7852 }
7853
7854 static inline void SET_Uniform3iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
7855 SET_by_offset(disp, _gloffset_Uniform3iARB, fn);
7856 }
7857
7858 typedef void (GLAPIENTRYP _glptr_Uniform3ivARB)(GLint, GLsizei, const GLint *);
7859 #define CALL_Uniform3ivARB(disp, parameters) \
7860 (* GET_Uniform3ivARB(disp)) parameters
7861 static inline _glptr_Uniform3ivARB GET_Uniform3ivARB(struct _glapi_table *disp) {
7862 return (_glptr_Uniform3ivARB) (GET_by_offset(disp, _gloffset_Uniform3ivARB));
7863 }
7864
7865 static inline void SET_Uniform3ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
7866 SET_by_offset(disp, _gloffset_Uniform3ivARB, fn);
7867 }
7868
7869 typedef void (GLAPIENTRYP _glptr_Uniform4fARB)(GLint, GLfloat, GLfloat, GLfloat, GLfloat);
7870 #define CALL_Uniform4fARB(disp, parameters) \
7871 (* GET_Uniform4fARB(disp)) parameters
7872 static inline _glptr_Uniform4fARB GET_Uniform4fARB(struct _glapi_table *disp) {
7873 return (_glptr_Uniform4fARB) (GET_by_offset(disp, _gloffset_Uniform4fARB));
7874 }
7875
7876 static inline void SET_Uniform4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat, GLfloat)) {
7877 SET_by_offset(disp, _gloffset_Uniform4fARB, fn);
7878 }
7879
7880 typedef void (GLAPIENTRYP _glptr_Uniform4fvARB)(GLint, GLsizei, const GLfloat *);
7881 #define CALL_Uniform4fvARB(disp, parameters) \
7882 (* GET_Uniform4fvARB(disp)) parameters
7883 static inline _glptr_Uniform4fvARB GET_Uniform4fvARB(struct _glapi_table *disp) {
7884 return (_glptr_Uniform4fvARB) (GET_by_offset(disp, _gloffset_Uniform4fvARB));
7885 }
7886
7887 static inline void SET_Uniform4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
7888 SET_by_offset(disp, _gloffset_Uniform4fvARB, fn);
7889 }
7890
7891 typedef void (GLAPIENTRYP _glptr_Uniform4iARB)(GLint, GLint, GLint, GLint, GLint);
7892 #define CALL_Uniform4iARB(disp, parameters) \
7893 (* GET_Uniform4iARB(disp)) parameters
7894 static inline _glptr_Uniform4iARB GET_Uniform4iARB(struct _glapi_table *disp) {
7895 return (_glptr_Uniform4iARB) (GET_by_offset(disp, _gloffset_Uniform4iARB));
7896 }
7897
7898 static inline void SET_Uniform4iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint)) {
7899 SET_by_offset(disp, _gloffset_Uniform4iARB, fn);
7900 }
7901
7902 typedef void (GLAPIENTRYP _glptr_Uniform4ivARB)(GLint, GLsizei, const GLint *);
7903 #define CALL_Uniform4ivARB(disp, parameters) \
7904 (* GET_Uniform4ivARB(disp)) parameters
7905 static inline _glptr_Uniform4ivARB GET_Uniform4ivARB(struct _glapi_table *disp) {
7906 return (_glptr_Uniform4ivARB) (GET_by_offset(disp, _gloffset_Uniform4ivARB));
7907 }
7908
7909 static inline void SET_Uniform4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
7910 SET_by_offset(disp, _gloffset_Uniform4ivARB, fn);
7911 }
7912
7913 typedef void (GLAPIENTRYP _glptr_UniformMatrix2fvARB)(GLint, GLsizei, GLboolean, const GLfloat *);
7914 #define CALL_UniformMatrix2fvARB(disp, parameters) \
7915 (* GET_UniformMatrix2fvARB(disp)) parameters
7916 static inline _glptr_UniformMatrix2fvARB GET_UniformMatrix2fvARB(struct _glapi_table *disp) {
7917 return (_glptr_UniformMatrix2fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix2fvARB));
7918 }
7919
7920 static inline void SET_UniformMatrix2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
7921 SET_by_offset(disp, _gloffset_UniformMatrix2fvARB, fn);
7922 }
7923
7924 typedef void (GLAPIENTRYP _glptr_UniformMatrix3fvARB)(GLint, GLsizei, GLboolean, const GLfloat *);
7925 #define CALL_UniformMatrix3fvARB(disp, parameters) \
7926 (* GET_UniformMatrix3fvARB(disp)) parameters
7927 static inline _glptr_UniformMatrix3fvARB GET_UniformMatrix3fvARB(struct _glapi_table *disp) {
7928 return (_glptr_UniformMatrix3fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix3fvARB));
7929 }
7930
7931 static inline void SET_UniformMatrix3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
7932 SET_by_offset(disp, _gloffset_UniformMatrix3fvARB, fn);
7933 }
7934
7935 typedef void (GLAPIENTRYP _glptr_UniformMatrix4fvARB)(GLint, GLsizei, GLboolean, const GLfloat *);
7936 #define CALL_UniformMatrix4fvARB(disp, parameters) \
7937 (* GET_UniformMatrix4fvARB(disp)) parameters
7938 static inline _glptr_UniformMatrix4fvARB GET_UniformMatrix4fvARB(struct _glapi_table *disp) {
7939 return (_glptr_UniformMatrix4fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix4fvARB));
7940 }
7941
7942 static inline void SET_UniformMatrix4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
7943 SET_by_offset(disp, _gloffset_UniformMatrix4fvARB, fn);
7944 }
7945
7946 typedef void (GLAPIENTRYP _glptr_UseProgramObjectARB)(GLhandleARB);
7947 #define CALL_UseProgramObjectARB(disp, parameters) \
7948 (* GET_UseProgramObjectARB(disp)) parameters
7949 static inline _glptr_UseProgramObjectARB GET_UseProgramObjectARB(struct _glapi_table *disp) {
7950 return (_glptr_UseProgramObjectARB) (GET_by_offset(disp, _gloffset_UseProgramObjectARB));
7951 }
7952
7953 static inline void SET_UseProgramObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
7954 SET_by_offset(disp, _gloffset_UseProgramObjectARB, fn);
7955 }
7956
7957 typedef void (GLAPIENTRYP _glptr_ValidateProgramARB)(GLhandleARB);
7958 #define CALL_ValidateProgramARB(disp, parameters) \
7959 (* GET_ValidateProgramARB(disp)) parameters
7960 static inline _glptr_ValidateProgramARB GET_ValidateProgramARB(struct _glapi_table *disp) {
7961 return (_glptr_ValidateProgramARB) (GET_by_offset(disp, _gloffset_ValidateProgramARB));
7962 }
7963
7964 static inline void SET_ValidateProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
7965 SET_by_offset(disp, _gloffset_ValidateProgramARB, fn);
7966 }
7967
7968 typedef void (GLAPIENTRYP _glptr_BindAttribLocationARB)(GLhandleARB, GLuint, const GLcharARB *);
7969 #define CALL_BindAttribLocationARB(disp, parameters) \
7970 (* GET_BindAttribLocationARB(disp)) parameters
7971 static inline _glptr_BindAttribLocationARB GET_BindAttribLocationARB(struct _glapi_table *disp) {
7972 return (_glptr_BindAttribLocationARB) (GET_by_offset(disp, _gloffset_BindAttribLocationARB));
7973 }
7974
7975 static inline void SET_BindAttribLocationARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, const GLcharARB *)) {
7976 SET_by_offset(disp, _gloffset_BindAttribLocationARB, fn);
7977 }
7978
7979 typedef void (GLAPIENTRYP _glptr_GetActiveAttribARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *);
7980 #define CALL_GetActiveAttribARB(disp, parameters) \
7981 (* GET_GetActiveAttribARB(disp)) parameters
7982 static inline _glptr_GetActiveAttribARB GET_GetActiveAttribARB(struct _glapi_table *disp) {
7983 return (_glptr_GetActiveAttribARB) (GET_by_offset(disp, _gloffset_GetActiveAttribARB));
7984 }
7985
7986 static inline void SET_GetActiveAttribARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) {
7987 SET_by_offset(disp, _gloffset_GetActiveAttribARB, fn);
7988 }
7989
7990 typedef GLint (GLAPIENTRYP _glptr_GetAttribLocationARB)(GLhandleARB, const GLcharARB *);
7991 #define CALL_GetAttribLocationARB(disp, parameters) \
7992 (* GET_GetAttribLocationARB(disp)) parameters
7993 static inline _glptr_GetAttribLocationARB GET_GetAttribLocationARB(struct _glapi_table *disp) {
7994 return (_glptr_GetAttribLocationARB) (GET_by_offset(disp, _gloffset_GetAttribLocationARB));
7995 }
7996
7997 static inline void SET_GetAttribLocationARB(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLhandleARB, const GLcharARB *)) {
7998 SET_by_offset(disp, _gloffset_GetAttribLocationARB, fn);
7999 }
8000
8001 typedef void (GLAPIENTRYP _glptr_DrawBuffersARB)(GLsizei, const GLenum *);
8002 #define CALL_DrawBuffersARB(disp, parameters) \
8003 (* GET_DrawBuffersARB(disp)) parameters
8004 static inline _glptr_DrawBuffersARB GET_DrawBuffersARB(struct _glapi_table *disp) {
8005 return (_glptr_DrawBuffersARB) (GET_by_offset(disp, _gloffset_DrawBuffersARB));
8006 }
8007
8008 static inline void SET_DrawBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLenum *)) {
8009 SET_by_offset(disp, _gloffset_DrawBuffersARB, fn);
8010 }
8011
8012 typedef void (GLAPIENTRYP _glptr_ClampColorARB)(GLenum, GLenum);
8013 #define CALL_ClampColorARB(disp, parameters) \
8014 (* GET_ClampColorARB(disp)) parameters
8015 static inline _glptr_ClampColorARB GET_ClampColorARB(struct _glapi_table *disp) {
8016 return (_glptr_ClampColorARB) (GET_by_offset(disp, _gloffset_ClampColorARB));
8017 }
8018
8019 static inline void SET_ClampColorARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
8020 SET_by_offset(disp, _gloffset_ClampColorARB, fn);
8021 }
8022
8023 typedef void (GLAPIENTRYP _glptr_DrawArraysInstancedARB)(GLenum, GLint, GLsizei, GLsizei);
8024 #define CALL_DrawArraysInstancedARB(disp, parameters) \
8025 (* GET_DrawArraysInstancedARB(disp)) parameters
8026 static inline _glptr_DrawArraysInstancedARB GET_DrawArraysInstancedARB(struct _glapi_table *disp) {
8027 return (_glptr_DrawArraysInstancedARB) (GET_by_offset(disp, _gloffset_DrawArraysInstancedARB));
8028 }
8029
8030 static inline void SET_DrawArraysInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLsizei)) {
8031 SET_by_offset(disp, _gloffset_DrawArraysInstancedARB, fn);
8032 }
8033
8034 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedARB)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei);
8035 #define CALL_DrawElementsInstancedARB(disp, parameters) \
8036 (* GET_DrawElementsInstancedARB(disp)) parameters
8037 static inline _glptr_DrawElementsInstancedARB GET_DrawElementsInstancedARB(struct _glapi_table *disp) {
8038 return (_glptr_DrawElementsInstancedARB) (GET_by_offset(disp, _gloffset_DrawElementsInstancedARB));
8039 }
8040
8041 static inline void SET_DrawElementsInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei)) {
8042 SET_by_offset(disp, _gloffset_DrawElementsInstancedARB, fn);
8043 }
8044
8045 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei);
8046 #define CALL_RenderbufferStorageMultisample(disp, parameters) \
8047 (* GET_RenderbufferStorageMultisample(disp)) parameters
8048 static inline _glptr_RenderbufferStorageMultisample GET_RenderbufferStorageMultisample(struct _glapi_table *disp) {
8049 return (_glptr_RenderbufferStorageMultisample) (GET_by_offset(disp, _gloffset_RenderbufferStorageMultisample));
8050 }
8051
8052 static inline void SET_RenderbufferStorageMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
8053 SET_by_offset(disp, _gloffset_RenderbufferStorageMultisample, fn);
8054 }
8055
8056 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRange)(GLenum, GLintptr, GLsizeiptr);
8057 #define CALL_FlushMappedBufferRange(disp, parameters) \
8058 (* GET_FlushMappedBufferRange(disp)) parameters
8059 static inline _glptr_FlushMappedBufferRange GET_FlushMappedBufferRange(struct _glapi_table *disp) {
8060 return (_glptr_FlushMappedBufferRange) (GET_by_offset(disp, _gloffset_FlushMappedBufferRange));
8061 }
8062
8063 static inline void SET_FlushMappedBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
8064 SET_by_offset(disp, _gloffset_FlushMappedBufferRange, fn);
8065 }
8066
8067 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferRange)(GLenum, GLintptr, GLsizeiptr, GLbitfield);
8068 #define CALL_MapBufferRange(disp, parameters) \
8069 (* GET_MapBufferRange(disp)) parameters
8070 static inline _glptr_MapBufferRange GET_MapBufferRange(struct _glapi_table *disp) {
8071 return (_glptr_MapBufferRange) (GET_by_offset(disp, _gloffset_MapBufferRange));
8072 }
8073
8074 static inline void SET_MapBufferRange(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLbitfield)) {
8075 SET_by_offset(disp, _gloffset_MapBufferRange, fn);
8076 }
8077
8078 typedef void (GLAPIENTRYP _glptr_TexBufferARB)(GLenum, GLenum, GLuint);
8079 #define CALL_TexBufferARB(disp, parameters) \
8080 (* GET_TexBufferARB(disp)) parameters
8081 static inline _glptr_TexBufferARB GET_TexBufferARB(struct _glapi_table *disp) {
8082 return (_glptr_TexBufferARB) (GET_by_offset(disp, _gloffset_TexBufferARB));
8083 }
8084
8085 static inline void SET_TexBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
8086 SET_by_offset(disp, _gloffset_TexBufferARB, fn);
8087 }
8088
8089 typedef void (GLAPIENTRYP _glptr_BindVertexArray)(GLuint);
8090 #define CALL_BindVertexArray(disp, parameters) \
8091 (* GET_BindVertexArray(disp)) parameters
8092 static inline _glptr_BindVertexArray GET_BindVertexArray(struct _glapi_table *disp) {
8093 return (_glptr_BindVertexArray) (GET_by_offset(disp, _gloffset_BindVertexArray));
8094 }
8095
8096 static inline void SET_BindVertexArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
8097 SET_by_offset(disp, _gloffset_BindVertexArray, fn);
8098 }
8099
8100 typedef void (GLAPIENTRYP _glptr_GenVertexArrays)(GLsizei, GLuint *);
8101 #define CALL_GenVertexArrays(disp, parameters) \
8102 (* GET_GenVertexArrays(disp)) parameters
8103 static inline _glptr_GenVertexArrays GET_GenVertexArrays(struct _glapi_table *disp) {
8104 return (_glptr_GenVertexArrays) (GET_by_offset(disp, _gloffset_GenVertexArrays));
8105 }
8106
8107 static inline void SET_GenVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
8108 SET_by_offset(disp, _gloffset_GenVertexArrays, fn);
8109 }
8110
8111 typedef void (GLAPIENTRYP _glptr_CopyBufferSubData)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr);
8112 #define CALL_CopyBufferSubData(disp, parameters) \
8113 (* GET_CopyBufferSubData(disp)) parameters
8114 static inline _glptr_CopyBufferSubData GET_CopyBufferSubData(struct _glapi_table *disp) {
8115 return (_glptr_CopyBufferSubData) (GET_by_offset(disp, _gloffset_CopyBufferSubData));
8116 }
8117
8118 static inline void SET_CopyBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr)) {
8119 SET_by_offset(disp, _gloffset_CopyBufferSubData, fn);
8120 }
8121
8122 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateiARB)(GLuint, GLenum, GLenum);
8123 #define CALL_BlendEquationSeparateiARB(disp, parameters) \
8124 (* GET_BlendEquationSeparateiARB(disp)) parameters
8125 static inline _glptr_BlendEquationSeparateiARB GET_BlendEquationSeparateiARB(struct _glapi_table *disp) {
8126 return (_glptr_BlendEquationSeparateiARB) (GET_by_offset(disp, _gloffset_BlendEquationSeparateiARB));
8127 }
8128
8129 static inline void SET_BlendEquationSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) {
8130 SET_by_offset(disp, _gloffset_BlendEquationSeparateiARB, fn);
8131 }
8132
8133 typedef void (GLAPIENTRYP _glptr_BlendEquationiARB)(GLuint, GLenum);
8134 #define CALL_BlendEquationiARB(disp, parameters) \
8135 (* GET_BlendEquationiARB(disp)) parameters
8136 static inline _glptr_BlendEquationiARB GET_BlendEquationiARB(struct _glapi_table *disp) {
8137 return (_glptr_BlendEquationiARB) (GET_by_offset(disp, _gloffset_BlendEquationiARB));
8138 }
8139
8140 static inline void SET_BlendEquationiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
8141 SET_by_offset(disp, _gloffset_BlendEquationiARB, fn);
8142 }
8143
8144 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateiARB)(GLuint, GLenum, GLenum, GLenum, GLenum);
8145 #define CALL_BlendFuncSeparateiARB(disp, parameters) \
8146 (* GET_BlendFuncSeparateiARB(disp)) parameters
8147 static inline _glptr_BlendFuncSeparateiARB GET_BlendFuncSeparateiARB(struct _glapi_table *disp) {
8148 return (_glptr_BlendFuncSeparateiARB) (GET_by_offset(disp, _gloffset_BlendFuncSeparateiARB));
8149 }
8150
8151 static inline void SET_BlendFuncSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLenum, GLenum)) {
8152 SET_by_offset(disp, _gloffset_BlendFuncSeparateiARB, fn);
8153 }
8154
8155 typedef void (GLAPIENTRYP _glptr_BlendFunciARB)(GLuint, GLenum, GLenum);
8156 #define CALL_BlendFunciARB(disp, parameters) \
8157 (* GET_BlendFunciARB(disp)) parameters
8158 static inline _glptr_BlendFunciARB GET_BlendFunciARB(struct _glapi_table *disp) {
8159 return (_glptr_BlendFunciARB) (GET_by_offset(disp, _gloffset_BlendFunciARB));
8160 }
8161
8162 static inline void SET_BlendFunciARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) {
8163 SET_by_offset(disp, _gloffset_BlendFunciARB, fn);
8164 }
8165
8166 typedef void (GLAPIENTRYP _glptr_ClearDepthf)(GLclampf);
8167 #define CALL_ClearDepthf(disp, parameters) \
8168 (* GET_ClearDepthf(disp)) parameters
8169 static inline _glptr_ClearDepthf GET_ClearDepthf(struct _glapi_table *disp) {
8170 return (_glptr_ClearDepthf) (GET_by_offset(disp, _gloffset_ClearDepthf));
8171 }
8172
8173 static inline void SET_ClearDepthf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf)) {
8174 SET_by_offset(disp, _gloffset_ClearDepthf, fn);
8175 }
8176
8177 typedef void (GLAPIENTRYP _glptr_DepthRangef)(GLclampf, GLclampf);
8178 #define CALL_DepthRangef(disp, parameters) \
8179 (* GET_DepthRangef(disp)) parameters
8180 static inline _glptr_DepthRangef GET_DepthRangef(struct _glapi_table *disp) {
8181 return (_glptr_DepthRangef) (GET_by_offset(disp, _gloffset_DepthRangef));
8182 }
8183
8184 static inline void SET_DepthRangef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf)) {
8185 SET_by_offset(disp, _gloffset_DepthRangef, fn);
8186 }
8187
8188 typedef void (GLAPIENTRYP _glptr_GetShaderPrecisionFormat)(GLenum, GLenum, GLint *, GLint *);
8189 #define CALL_GetShaderPrecisionFormat(disp, parameters) \
8190 (* GET_GetShaderPrecisionFormat(disp)) parameters
8191 static inline _glptr_GetShaderPrecisionFormat GET_GetShaderPrecisionFormat(struct _glapi_table *disp) {
8192 return (_glptr_GetShaderPrecisionFormat) (GET_by_offset(disp, _gloffset_GetShaderPrecisionFormat));
8193 }
8194
8195 static inline void SET_GetShaderPrecisionFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *, GLint *)) {
8196 SET_by_offset(disp, _gloffset_GetShaderPrecisionFormat, fn);
8197 }
8198
8199 typedef void (GLAPIENTRYP _glptr_ReleaseShaderCompiler)(void);
8200 #define CALL_ReleaseShaderCompiler(disp, parameters) \
8201 (* GET_ReleaseShaderCompiler(disp)) parameters
8202 static inline _glptr_ReleaseShaderCompiler GET_ReleaseShaderCompiler(struct _glapi_table *disp) {
8203 return (_glptr_ReleaseShaderCompiler) (GET_by_offset(disp, _gloffset_ReleaseShaderCompiler));
8204 }
8205
8206 static inline void SET_ReleaseShaderCompiler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
8207 SET_by_offset(disp, _gloffset_ReleaseShaderCompiler, fn);
8208 }
8209
8210 typedef void (GLAPIENTRYP _glptr_ShaderBinary)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei);
8211 #define CALL_ShaderBinary(disp, parameters) \
8212 (* GET_ShaderBinary(disp)) parameters
8213 static inline _glptr_ShaderBinary GET_ShaderBinary(struct _glapi_table *disp) {
8214 return (_glptr_ShaderBinary) (GET_by_offset(disp, _gloffset_ShaderBinary));
8215 }
8216
8217 static inline void SET_ShaderBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei)) {
8218 SET_by_offset(disp, _gloffset_ShaderBinary, fn);
8219 }
8220
8221 typedef GLenum (GLAPIENTRYP _glptr_GetGraphicsResetStatusARB)(void);
8222 #define CALL_GetGraphicsResetStatusARB(disp, parameters) \
8223 (* GET_GetGraphicsResetStatusARB(disp)) parameters
8224 static inline _glptr_GetGraphicsResetStatusARB GET_GetGraphicsResetStatusARB(struct _glapi_table *disp) {
8225 return (_glptr_GetGraphicsResetStatusARB) (GET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB));
8226 }
8227
8228 static inline void SET_GetGraphicsResetStatusARB(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
8229 SET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB, fn);
8230 }
8231
8232 typedef void (GLAPIENTRYP _glptr_GetnColorTableARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *);
8233 #define CALL_GetnColorTableARB(disp, parameters) \
8234 (* GET_GetnColorTableARB(disp)) parameters
8235 static inline _glptr_GetnColorTableARB GET_GetnColorTableARB(struct _glapi_table *disp) {
8236 return (_glptr_GetnColorTableARB) (GET_by_offset(disp, _gloffset_GetnColorTableARB));
8237 }
8238
8239 static inline void SET_GetnColorTableARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) {
8240 SET_by_offset(disp, _gloffset_GetnColorTableARB, fn);
8241 }
8242
8243 typedef void (GLAPIENTRYP _glptr_GetnCompressedTexImageARB)(GLenum, GLint, GLsizei, GLvoid *);
8244 #define CALL_GetnCompressedTexImageARB(disp, parameters) \
8245 (* GET_GetnCompressedTexImageARB(disp)) parameters
8246 static inline _glptr_GetnCompressedTexImageARB GET_GetnCompressedTexImageARB(struct _glapi_table *disp) {
8247 return (_glptr_GetnCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetnCompressedTexImageARB));
8248 }
8249
8250 static inline void SET_GetnCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLvoid *)) {
8251 SET_by_offset(disp, _gloffset_GetnCompressedTexImageARB, fn);
8252 }
8253
8254 typedef void (GLAPIENTRYP _glptr_GetnConvolutionFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *);
8255 #define CALL_GetnConvolutionFilterARB(disp, parameters) \
8256 (* GET_GetnConvolutionFilterARB(disp)) parameters
8257 static inline _glptr_GetnConvolutionFilterARB GET_GetnConvolutionFilterARB(struct _glapi_table *disp) {
8258 return (_glptr_GetnConvolutionFilterARB) (GET_by_offset(disp, _gloffset_GetnConvolutionFilterARB));
8259 }
8260
8261 static inline void SET_GetnConvolutionFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) {
8262 SET_by_offset(disp, _gloffset_GetnConvolutionFilterARB, fn);
8263 }
8264
8265 typedef void (GLAPIENTRYP _glptr_GetnHistogramARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *);
8266 #define CALL_GetnHistogramARB(disp, parameters) \
8267 (* GET_GetnHistogramARB(disp)) parameters
8268 static inline _glptr_GetnHistogramARB GET_GetnHistogramARB(struct _glapi_table *disp) {
8269 return (_glptr_GetnHistogramARB) (GET_by_offset(disp, _gloffset_GetnHistogramARB));
8270 }
8271
8272 static inline void SET_GetnHistogramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) {
8273 SET_by_offset(disp, _gloffset_GetnHistogramARB, fn);
8274 }
8275
8276 typedef void (GLAPIENTRYP _glptr_GetnMapdvARB)(GLenum, GLenum, GLsizei, GLdouble *);
8277 #define CALL_GetnMapdvARB(disp, parameters) \
8278 (* GET_GetnMapdvARB(disp)) parameters
8279 static inline _glptr_GetnMapdvARB GET_GetnMapdvARB(struct _glapi_table *disp) {
8280 return (_glptr_GetnMapdvARB) (GET_by_offset(disp, _gloffset_GetnMapdvARB));
8281 }
8282
8283 static inline void SET_GetnMapdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLdouble *)) {
8284 SET_by_offset(disp, _gloffset_GetnMapdvARB, fn);
8285 }
8286
8287 typedef void (GLAPIENTRYP _glptr_GetnMapfvARB)(GLenum, GLenum, GLsizei, GLfloat *);
8288 #define CALL_GetnMapfvARB(disp, parameters) \
8289 (* GET_GetnMapfvARB(disp)) parameters
8290 static inline _glptr_GetnMapfvARB GET_GetnMapfvARB(struct _glapi_table *disp) {
8291 return (_glptr_GetnMapfvARB) (GET_by_offset(disp, _gloffset_GetnMapfvARB));
8292 }
8293
8294 static inline void SET_GetnMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLfloat *)) {
8295 SET_by_offset(disp, _gloffset_GetnMapfvARB, fn);
8296 }
8297
8298 typedef void (GLAPIENTRYP _glptr_GetnMapivARB)(GLenum, GLenum, GLsizei, GLint *);
8299 #define CALL_GetnMapivARB(disp, parameters) \
8300 (* GET_GetnMapivARB(disp)) parameters
8301 static inline _glptr_GetnMapivARB GET_GetnMapivARB(struct _glapi_table *disp) {
8302 return (_glptr_GetnMapivARB) (GET_by_offset(disp, _gloffset_GetnMapivARB));
8303 }
8304
8305 static inline void SET_GetnMapivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLint *)) {
8306 SET_by_offset(disp, _gloffset_GetnMapivARB, fn);
8307 }
8308
8309 typedef void (GLAPIENTRYP _glptr_GetnMinmaxARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *);
8310 #define CALL_GetnMinmaxARB(disp, parameters) \
8311 (* GET_GetnMinmaxARB(disp)) parameters
8312 static inline _glptr_GetnMinmaxARB GET_GetnMinmaxARB(struct _glapi_table *disp) {
8313 return (_glptr_GetnMinmaxARB) (GET_by_offset(disp, _gloffset_GetnMinmaxARB));
8314 }
8315
8316 static inline void SET_GetnMinmaxARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) {
8317 SET_by_offset(disp, _gloffset_GetnMinmaxARB, fn);
8318 }
8319
8320 typedef void (GLAPIENTRYP _glptr_GetnPixelMapfvARB)(GLenum, GLsizei, GLfloat *);
8321 #define CALL_GetnPixelMapfvARB(disp, parameters) \
8322 (* GET_GetnPixelMapfvARB(disp)) parameters
8323 static inline _glptr_GetnPixelMapfvARB GET_GetnPixelMapfvARB(struct _glapi_table *disp) {
8324 return (_glptr_GetnPixelMapfvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapfvARB));
8325 }
8326
8327 static inline void SET_GetnPixelMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLfloat *)) {
8328 SET_by_offset(disp, _gloffset_GetnPixelMapfvARB, fn);
8329 }
8330
8331 typedef void (GLAPIENTRYP _glptr_GetnPixelMapuivARB)(GLenum, GLsizei, GLuint *);
8332 #define CALL_GetnPixelMapuivARB(disp, parameters) \
8333 (* GET_GetnPixelMapuivARB(disp)) parameters
8334 static inline _glptr_GetnPixelMapuivARB GET_GetnPixelMapuivARB(struct _glapi_table *disp) {
8335 return (_glptr_GetnPixelMapuivARB) (GET_by_offset(disp, _gloffset_GetnPixelMapuivARB));
8336 }
8337
8338 static inline void SET_GetnPixelMapuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLuint *)) {
8339 SET_by_offset(disp, _gloffset_GetnPixelMapuivARB, fn);
8340 }
8341
8342 typedef void (GLAPIENTRYP _glptr_GetnPixelMapusvARB)(GLenum, GLsizei, GLushort *);
8343 #define CALL_GetnPixelMapusvARB(disp, parameters) \
8344 (* GET_GetnPixelMapusvARB(disp)) parameters
8345 static inline _glptr_GetnPixelMapusvARB GET_GetnPixelMapusvARB(struct _glapi_table *disp) {
8346 return (_glptr_GetnPixelMapusvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapusvARB));
8347 }
8348
8349 static inline void SET_GetnPixelMapusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLushort *)) {
8350 SET_by_offset(disp, _gloffset_GetnPixelMapusvARB, fn);
8351 }
8352
8353 typedef void (GLAPIENTRYP _glptr_GetnPolygonStippleARB)(GLsizei, GLubyte *);
8354 #define CALL_GetnPolygonStippleARB(disp, parameters) \
8355 (* GET_GetnPolygonStippleARB(disp)) parameters
8356 static inline _glptr_GetnPolygonStippleARB GET_GetnPolygonStippleARB(struct _glapi_table *disp) {
8357 return (_glptr_GetnPolygonStippleARB) (GET_by_offset(disp, _gloffset_GetnPolygonStippleARB));
8358 }
8359
8360 static inline void SET_GetnPolygonStippleARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLubyte *)) {
8361 SET_by_offset(disp, _gloffset_GetnPolygonStippleARB, fn);
8362 }
8363
8364 typedef void (GLAPIENTRYP _glptr_GetnSeparableFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *);
8365 #define CALL_GetnSeparableFilterARB(disp, parameters) \
8366 (* GET_GetnSeparableFilterARB(disp)) parameters
8367 static inline _glptr_GetnSeparableFilterARB GET_GetnSeparableFilterARB(struct _glapi_table *disp) {
8368 return (_glptr_GetnSeparableFilterARB) (GET_by_offset(disp, _gloffset_GetnSeparableFilterARB));
8369 }
8370
8371 static inline void SET_GetnSeparableFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *)) {
8372 SET_by_offset(disp, _gloffset_GetnSeparableFilterARB, fn);
8373 }
8374
8375 typedef void (GLAPIENTRYP _glptr_GetnTexImageARB)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *);
8376 #define CALL_GetnTexImageARB(disp, parameters) \
8377 (* GET_GetnTexImageARB(disp)) parameters
8378 static inline _glptr_GetnTexImageARB GET_GetnTexImageARB(struct _glapi_table *disp) {
8379 return (_glptr_GetnTexImageARB) (GET_by_offset(disp, _gloffset_GetnTexImageARB));
8380 }
8381
8382 static inline void SET_GetnTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *)) {
8383 SET_by_offset(disp, _gloffset_GetnTexImageARB, fn);
8384 }
8385
8386 typedef void (GLAPIENTRYP _glptr_GetnUniformdvARB)(GLhandleARB, GLint, GLsizei, GLdouble *);
8387 #define CALL_GetnUniformdvARB(disp, parameters) \
8388 (* GET_GetnUniformdvARB(disp)) parameters
8389 static inline _glptr_GetnUniformdvARB GET_GetnUniformdvARB(struct _glapi_table *disp) {
8390 return (_glptr_GetnUniformdvARB) (GET_by_offset(disp, _gloffset_GetnUniformdvARB));
8391 }
8392
8393 static inline void SET_GetnUniformdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLdouble *)) {
8394 SET_by_offset(disp, _gloffset_GetnUniformdvARB, fn);
8395 }
8396
8397 typedef void (GLAPIENTRYP _glptr_GetnUniformfvARB)(GLhandleARB, GLint, GLsizei, GLfloat *);
8398 #define CALL_GetnUniformfvARB(disp, parameters) \
8399 (* GET_GetnUniformfvARB(disp)) parameters
8400 static inline _glptr_GetnUniformfvARB GET_GetnUniformfvARB(struct _glapi_table *disp) {
8401 return (_glptr_GetnUniformfvARB) (GET_by_offset(disp, _gloffset_GetnUniformfvARB));
8402 }
8403
8404 static inline void SET_GetnUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLfloat *)) {
8405 SET_by_offset(disp, _gloffset_GetnUniformfvARB, fn);
8406 }
8407
8408 typedef void (GLAPIENTRYP _glptr_GetnUniformivARB)(GLhandleARB, GLint, GLsizei, GLint *);
8409 #define CALL_GetnUniformivARB(disp, parameters) \
8410 (* GET_GetnUniformivARB(disp)) parameters
8411 static inline _glptr_GetnUniformivARB GET_GetnUniformivARB(struct _glapi_table *disp) {
8412 return (_glptr_GetnUniformivARB) (GET_by_offset(disp, _gloffset_GetnUniformivARB));
8413 }
8414
8415 static inline void SET_GetnUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLint *)) {
8416 SET_by_offset(disp, _gloffset_GetnUniformivARB, fn);
8417 }
8418
8419 typedef void (GLAPIENTRYP _glptr_GetnUniformuivARB)(GLhandleARB, GLint, GLsizei, GLuint *);
8420 #define CALL_GetnUniformuivARB(disp, parameters) \
8421 (* GET_GetnUniformuivARB(disp)) parameters
8422 static inline _glptr_GetnUniformuivARB GET_GetnUniformuivARB(struct _glapi_table *disp) {
8423 return (_glptr_GetnUniformuivARB) (GET_by_offset(disp, _gloffset_GetnUniformuivARB));
8424 }
8425
8426 static inline void SET_GetnUniformuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLuint *)) {
8427 SET_by_offset(disp, _gloffset_GetnUniformuivARB, fn);
8428 }
8429
8430 typedef void (GLAPIENTRYP _glptr_ReadnPixelsARB)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *);
8431 #define CALL_ReadnPixelsARB(disp, parameters) \
8432 (* GET_ReadnPixelsARB(disp)) parameters
8433 static inline _glptr_ReadnPixelsARB GET_ReadnPixelsARB(struct _glapi_table *disp) {
8434 return (_glptr_ReadnPixelsARB) (GET_by_offset(disp, _gloffset_ReadnPixelsARB));
8435 }
8436
8437 static inline void SET_ReadnPixelsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *)) {
8438 SET_by_offset(disp, _gloffset_ReadnPixelsARB, fn);
8439 }
8440
8441 typedef void (GLAPIENTRYP _glptr_TexStorage1D)(GLenum, GLsizei, GLenum, GLsizei);
8442 #define CALL_TexStorage1D(disp, parameters) \
8443 (* GET_TexStorage1D(disp)) parameters
8444 static inline _glptr_TexStorage1D GET_TexStorage1D(struct _glapi_table *disp) {
8445 return (_glptr_TexStorage1D) (GET_by_offset(disp, _gloffset_TexStorage1D));
8446 }
8447
8448 static inline void SET_TexStorage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei)) {
8449 SET_by_offset(disp, _gloffset_TexStorage1D, fn);
8450 }
8451
8452 typedef void (GLAPIENTRYP _glptr_TexStorage2D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei);
8453 #define CALL_TexStorage2D(disp, parameters) \
8454 (* GET_TexStorage2D(disp)) parameters
8455 static inline _glptr_TexStorage2D GET_TexStorage2D(struct _glapi_table *disp) {
8456 return (_glptr_TexStorage2D) (GET_by_offset(disp, _gloffset_TexStorage2D));
8457 }
8458
8459 static inline void SET_TexStorage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
8460 SET_by_offset(disp, _gloffset_TexStorage2D, fn);
8461 }
8462
8463 typedef void (GLAPIENTRYP _glptr_TexStorage3D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
8464 #define CALL_TexStorage3D(disp, parameters) \
8465 (* GET_TexStorage3D(disp)) parameters
8466 static inline _glptr_TexStorage3D GET_TexStorage3D(struct _glapi_table *disp) {
8467 return (_glptr_TexStorage3D) (GET_by_offset(disp, _gloffset_TexStorage3D));
8468 }
8469
8470 static inline void SET_TexStorage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
8471 SET_by_offset(disp, _gloffset_TexStorage3D, fn);
8472 }
8473
8474 typedef void (GLAPIENTRYP _glptr_TextureStorage1DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei);
8475 #define CALL_TextureStorage1DEXT(disp, parameters) \
8476 (* GET_TextureStorage1DEXT(disp)) parameters
8477 static inline _glptr_TextureStorage1DEXT GET_TextureStorage1DEXT(struct _glapi_table *disp) {
8478 return (_glptr_TextureStorage1DEXT) (GET_by_offset(disp, _gloffset_TextureStorage1DEXT));
8479 }
8480
8481 static inline void SET_TextureStorage1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei)) {
8482 SET_by_offset(disp, _gloffset_TextureStorage1DEXT, fn);
8483 }
8484
8485 typedef void (GLAPIENTRYP _glptr_TextureStorage2DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei);
8486 #define CALL_TextureStorage2DEXT(disp, parameters) \
8487 (* GET_TextureStorage2DEXT(disp)) parameters
8488 static inline _glptr_TextureStorage2DEXT GET_TextureStorage2DEXT(struct _glapi_table *disp) {
8489 return (_glptr_TextureStorage2DEXT) (GET_by_offset(disp, _gloffset_TextureStorage2DEXT));
8490 }
8491
8492 static inline void SET_TextureStorage2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
8493 SET_by_offset(disp, _gloffset_TextureStorage2DEXT, fn);
8494 }
8495
8496 typedef void (GLAPIENTRYP _glptr_TextureStorage3DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
8497 #define CALL_TextureStorage3DEXT(disp, parameters) \
8498 (* GET_TextureStorage3DEXT(disp)) parameters
8499 static inline _glptr_TextureStorage3DEXT GET_TextureStorage3DEXT(struct _glapi_table *disp) {
8500 return (_glptr_TextureStorage3DEXT) (GET_by_offset(disp, _gloffset_TextureStorage3DEXT));
8501 }
8502
8503 static inline void SET_TextureStorage3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
8504 SET_by_offset(disp, _gloffset_TextureStorage3DEXT, fn);
8505 }
8506
8507 typedef void (GLAPIENTRYP _glptr_PolygonOffsetEXT)(GLfloat, GLfloat);
8508 #define CALL_PolygonOffsetEXT(disp, parameters) \
8509 (* GET_PolygonOffsetEXT(disp)) parameters
8510 static inline _glptr_PolygonOffsetEXT GET_PolygonOffsetEXT(struct _glapi_table *disp) {
8511 return (_glptr_PolygonOffsetEXT) (GET_by_offset(disp, _gloffset_PolygonOffsetEXT));
8512 }
8513
8514 static inline void SET_PolygonOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
8515 SET_by_offset(disp, _gloffset_PolygonOffsetEXT, fn);
8516 }
8517
8518 typedef void (GLAPIENTRYP _glptr_GetPixelTexGenParameterfvSGIS)(GLenum, GLfloat *);
8519 #define CALL_GetPixelTexGenParameterfvSGIS(disp, parameters) \
8520 (* GET_GetPixelTexGenParameterfvSGIS(disp)) parameters
8521 static inline _glptr_GetPixelTexGenParameterfvSGIS GET_GetPixelTexGenParameterfvSGIS(struct _glapi_table *disp) {
8522 return (_glptr_GetPixelTexGenParameterfvSGIS) (GET_by_offset(disp, _gloffset_GetPixelTexGenParameterfvSGIS));
8523 }
8524
8525 static inline void SET_GetPixelTexGenParameterfvSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
8526 SET_by_offset(disp, _gloffset_GetPixelTexGenParameterfvSGIS, fn);
8527 }
8528
8529 typedef void (GLAPIENTRYP _glptr_GetPixelTexGenParameterivSGIS)(GLenum, GLint *);
8530 #define CALL_GetPixelTexGenParameterivSGIS(disp, parameters) \
8531 (* GET_GetPixelTexGenParameterivSGIS(disp)) parameters
8532 static inline _glptr_GetPixelTexGenParameterivSGIS GET_GetPixelTexGenParameterivSGIS(struct _glapi_table *disp) {
8533 return (_glptr_GetPixelTexGenParameterivSGIS) (GET_by_offset(disp, _gloffset_GetPixelTexGenParameterivSGIS));
8534 }
8535
8536 static inline void SET_GetPixelTexGenParameterivSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
8537 SET_by_offset(disp, _gloffset_GetPixelTexGenParameterivSGIS, fn);
8538 }
8539
8540 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameterfSGIS)(GLenum, GLfloat);
8541 #define CALL_PixelTexGenParameterfSGIS(disp, parameters) \
8542 (* GET_PixelTexGenParameterfSGIS(disp)) parameters
8543 static inline _glptr_PixelTexGenParameterfSGIS GET_PixelTexGenParameterfSGIS(struct _glapi_table *disp) {
8544 return (_glptr_PixelTexGenParameterfSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameterfSGIS));
8545 }
8546
8547 static inline void SET_PixelTexGenParameterfSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
8548 SET_by_offset(disp, _gloffset_PixelTexGenParameterfSGIS, fn);
8549 }
8550
8551 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameterfvSGIS)(GLenum, const GLfloat *);
8552 #define CALL_PixelTexGenParameterfvSGIS(disp, parameters) \
8553 (* GET_PixelTexGenParameterfvSGIS(disp)) parameters
8554 static inline _glptr_PixelTexGenParameterfvSGIS GET_PixelTexGenParameterfvSGIS(struct _glapi_table *disp) {
8555 return (_glptr_PixelTexGenParameterfvSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameterfvSGIS));
8556 }
8557
8558 static inline void SET_PixelTexGenParameterfvSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
8559 SET_by_offset(disp, _gloffset_PixelTexGenParameterfvSGIS, fn);
8560 }
8561
8562 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameteriSGIS)(GLenum, GLint);
8563 #define CALL_PixelTexGenParameteriSGIS(disp, parameters) \
8564 (* GET_PixelTexGenParameteriSGIS(disp)) parameters
8565 static inline _glptr_PixelTexGenParameteriSGIS GET_PixelTexGenParameteriSGIS(struct _glapi_table *disp) {
8566 return (_glptr_PixelTexGenParameteriSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameteriSGIS));
8567 }
8568
8569 static inline void SET_PixelTexGenParameteriSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
8570 SET_by_offset(disp, _gloffset_PixelTexGenParameteriSGIS, fn);
8571 }
8572
8573 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameterivSGIS)(GLenum, const GLint *);
8574 #define CALL_PixelTexGenParameterivSGIS(disp, parameters) \
8575 (* GET_PixelTexGenParameterivSGIS(disp)) parameters
8576 static inline _glptr_PixelTexGenParameterivSGIS GET_PixelTexGenParameterivSGIS(struct _glapi_table *disp) {
8577 return (_glptr_PixelTexGenParameterivSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameterivSGIS));
8578 }
8579
8580 static inline void SET_PixelTexGenParameterivSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
8581 SET_by_offset(disp, _gloffset_PixelTexGenParameterivSGIS, fn);
8582 }
8583
8584 typedef void (GLAPIENTRYP _glptr_SampleMaskSGIS)(GLclampf, GLboolean);
8585 #define CALL_SampleMaskSGIS(disp, parameters) \
8586 (* GET_SampleMaskSGIS(disp)) parameters
8587 static inline _glptr_SampleMaskSGIS GET_SampleMaskSGIS(struct _glapi_table *disp) {
8588 return (_glptr_SampleMaskSGIS) (GET_by_offset(disp, _gloffset_SampleMaskSGIS));
8589 }
8590
8591 static inline void SET_SampleMaskSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
8592 SET_by_offset(disp, _gloffset_SampleMaskSGIS, fn);
8593 }
8594
8595 typedef void (GLAPIENTRYP _glptr_SamplePatternSGIS)(GLenum);
8596 #define CALL_SamplePatternSGIS(disp, parameters) \
8597 (* GET_SamplePatternSGIS(disp)) parameters
8598 static inline _glptr_SamplePatternSGIS GET_SamplePatternSGIS(struct _glapi_table *disp) {
8599 return (_glptr_SamplePatternSGIS) (GET_by_offset(disp, _gloffset_SamplePatternSGIS));
8600 }
8601
8602 static inline void SET_SamplePatternSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
8603 SET_by_offset(disp, _gloffset_SamplePatternSGIS, fn);
8604 }
8605
8606 typedef void (GLAPIENTRYP _glptr_ColorPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
8607 #define CALL_ColorPointerEXT(disp, parameters) \
8608 (* GET_ColorPointerEXT(disp)) parameters
8609 static inline _glptr_ColorPointerEXT GET_ColorPointerEXT(struct _glapi_table *disp) {
8610 return (_glptr_ColorPointerEXT) (GET_by_offset(disp, _gloffset_ColorPointerEXT));
8611 }
8612
8613 static inline void SET_ColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
8614 SET_by_offset(disp, _gloffset_ColorPointerEXT, fn);
8615 }
8616
8617 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointerEXT)(GLsizei, GLsizei, const GLboolean *);
8618 #define CALL_EdgeFlagPointerEXT(disp, parameters) \
8619 (* GET_EdgeFlagPointerEXT(disp)) parameters
8620 static inline _glptr_EdgeFlagPointerEXT GET_EdgeFlagPointerEXT(struct _glapi_table *disp) {
8621 return (_glptr_EdgeFlagPointerEXT) (GET_by_offset(disp, _gloffset_EdgeFlagPointerEXT));
8622 }
8623
8624 static inline void SET_EdgeFlagPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, const GLboolean *)) {
8625 SET_by_offset(disp, _gloffset_EdgeFlagPointerEXT, fn);
8626 }
8627
8628 typedef void (GLAPIENTRYP _glptr_IndexPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
8629 #define CALL_IndexPointerEXT(disp, parameters) \
8630 (* GET_IndexPointerEXT(disp)) parameters
8631 static inline _glptr_IndexPointerEXT GET_IndexPointerEXT(struct _glapi_table *disp) {
8632 return (_glptr_IndexPointerEXT) (GET_by_offset(disp, _gloffset_IndexPointerEXT));
8633 }
8634
8635 static inline void SET_IndexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
8636 SET_by_offset(disp, _gloffset_IndexPointerEXT, fn);
8637 }
8638
8639 typedef void (GLAPIENTRYP _glptr_NormalPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
8640 #define CALL_NormalPointerEXT(disp, parameters) \
8641 (* GET_NormalPointerEXT(disp)) parameters
8642 static inline _glptr_NormalPointerEXT GET_NormalPointerEXT(struct _glapi_table *disp) {
8643 return (_glptr_NormalPointerEXT) (GET_by_offset(disp, _gloffset_NormalPointerEXT));
8644 }
8645
8646 static inline void SET_NormalPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
8647 SET_by_offset(disp, _gloffset_NormalPointerEXT, fn);
8648 }
8649
8650 typedef void (GLAPIENTRYP _glptr_TexCoordPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
8651 #define CALL_TexCoordPointerEXT(disp, parameters) \
8652 (* GET_TexCoordPointerEXT(disp)) parameters
8653 static inline _glptr_TexCoordPointerEXT GET_TexCoordPointerEXT(struct _glapi_table *disp) {
8654 return (_glptr_TexCoordPointerEXT) (GET_by_offset(disp, _gloffset_TexCoordPointerEXT));
8655 }
8656
8657 static inline void SET_TexCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
8658 SET_by_offset(disp, _gloffset_TexCoordPointerEXT, fn);
8659 }
8660
8661 typedef void (GLAPIENTRYP _glptr_VertexPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
8662 #define CALL_VertexPointerEXT(disp, parameters) \
8663 (* GET_VertexPointerEXT(disp)) parameters
8664 static inline _glptr_VertexPointerEXT GET_VertexPointerEXT(struct _glapi_table *disp) {
8665 return (_glptr_VertexPointerEXT) (GET_by_offset(disp, _gloffset_VertexPointerEXT));
8666 }
8667
8668 static inline void SET_VertexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
8669 SET_by_offset(disp, _gloffset_VertexPointerEXT, fn);
8670 }
8671
8672 typedef void (GLAPIENTRYP _glptr_PointParameterfEXT)(GLenum, GLfloat);
8673 #define CALL_PointParameterfEXT(disp, parameters) \
8674 (* GET_PointParameterfEXT(disp)) parameters
8675 static inline _glptr_PointParameterfEXT GET_PointParameterfEXT(struct _glapi_table *disp) {
8676 return (_glptr_PointParameterfEXT) (GET_by_offset(disp, _gloffset_PointParameterfEXT));
8677 }
8678
8679 static inline void SET_PointParameterfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
8680 SET_by_offset(disp, _gloffset_PointParameterfEXT, fn);
8681 }
8682
8683 typedef void (GLAPIENTRYP _glptr_PointParameterfvEXT)(GLenum, const GLfloat *);
8684 #define CALL_PointParameterfvEXT(disp, parameters) \
8685 (* GET_PointParameterfvEXT(disp)) parameters
8686 static inline _glptr_PointParameterfvEXT GET_PointParameterfvEXT(struct _glapi_table *disp) {
8687 return (_glptr_PointParameterfvEXT) (GET_by_offset(disp, _gloffset_PointParameterfvEXT));
8688 }
8689
8690 static inline void SET_PointParameterfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
8691 SET_by_offset(disp, _gloffset_PointParameterfvEXT, fn);
8692 }
8693
8694 typedef void (GLAPIENTRYP _glptr_LockArraysEXT)(GLint, GLsizei);
8695 #define CALL_LockArraysEXT(disp, parameters) \
8696 (* GET_LockArraysEXT(disp)) parameters
8697 static inline _glptr_LockArraysEXT GET_LockArraysEXT(struct _glapi_table *disp) {
8698 return (_glptr_LockArraysEXT) (GET_by_offset(disp, _gloffset_LockArraysEXT));
8699 }
8700
8701 static inline void SET_LockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei)) {
8702 SET_by_offset(disp, _gloffset_LockArraysEXT, fn);
8703 }
8704
8705 typedef void (GLAPIENTRYP _glptr_UnlockArraysEXT)(void);
8706 #define CALL_UnlockArraysEXT(disp, parameters) \
8707 (* GET_UnlockArraysEXT(disp)) parameters
8708 static inline _glptr_UnlockArraysEXT GET_UnlockArraysEXT(struct _glapi_table *disp) {
8709 return (_glptr_UnlockArraysEXT) (GET_by_offset(disp, _gloffset_UnlockArraysEXT));
8710 }
8711
8712 static inline void SET_UnlockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
8713 SET_by_offset(disp, _gloffset_UnlockArraysEXT, fn);
8714 }
8715
8716 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bEXT)(GLbyte, GLbyte, GLbyte);
8717 #define CALL_SecondaryColor3bEXT(disp, parameters) \
8718 (* GET_SecondaryColor3bEXT(disp)) parameters
8719 static inline _glptr_SecondaryColor3bEXT GET_SecondaryColor3bEXT(struct _glapi_table *disp) {
8720 return (_glptr_SecondaryColor3bEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bEXT));
8721 }
8722
8723 static inline void SET_SecondaryColor3bEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
8724 SET_by_offset(disp, _gloffset_SecondaryColor3bEXT, fn);
8725 }
8726
8727 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bvEXT)(const GLbyte *);
8728 #define CALL_SecondaryColor3bvEXT(disp, parameters) \
8729 (* GET_SecondaryColor3bvEXT(disp)) parameters
8730 static inline _glptr_SecondaryColor3bvEXT GET_SecondaryColor3bvEXT(struct _glapi_table *disp) {
8731 return (_glptr_SecondaryColor3bvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bvEXT));
8732 }
8733
8734 static inline void SET_SecondaryColor3bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
8735 SET_by_offset(disp, _gloffset_SecondaryColor3bvEXT, fn);
8736 }
8737
8738 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dEXT)(GLdouble, GLdouble, GLdouble);
8739 #define CALL_SecondaryColor3dEXT(disp, parameters) \
8740 (* GET_SecondaryColor3dEXT(disp)) parameters
8741 static inline _glptr_SecondaryColor3dEXT GET_SecondaryColor3dEXT(struct _glapi_table *disp) {
8742 return (_glptr_SecondaryColor3dEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dEXT));
8743 }
8744
8745 static inline void SET_SecondaryColor3dEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
8746 SET_by_offset(disp, _gloffset_SecondaryColor3dEXT, fn);
8747 }
8748
8749 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dvEXT)(const GLdouble *);
8750 #define CALL_SecondaryColor3dvEXT(disp, parameters) \
8751 (* GET_SecondaryColor3dvEXT(disp)) parameters
8752 static inline _glptr_SecondaryColor3dvEXT GET_SecondaryColor3dvEXT(struct _glapi_table *disp) {
8753 return (_glptr_SecondaryColor3dvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dvEXT));
8754 }
8755
8756 static inline void SET_SecondaryColor3dvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
8757 SET_by_offset(disp, _gloffset_SecondaryColor3dvEXT, fn);
8758 }
8759
8760 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fEXT)(GLfloat, GLfloat, GLfloat);
8761 #define CALL_SecondaryColor3fEXT(disp, parameters) \
8762 (* GET_SecondaryColor3fEXT(disp)) parameters
8763 static inline _glptr_SecondaryColor3fEXT GET_SecondaryColor3fEXT(struct _glapi_table *disp) {
8764 return (_glptr_SecondaryColor3fEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fEXT));
8765 }
8766
8767 static inline void SET_SecondaryColor3fEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
8768 SET_by_offset(disp, _gloffset_SecondaryColor3fEXT, fn);
8769 }
8770
8771 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fvEXT)(const GLfloat *);
8772 #define CALL_SecondaryColor3fvEXT(disp, parameters) \
8773 (* GET_SecondaryColor3fvEXT(disp)) parameters
8774 static inline _glptr_SecondaryColor3fvEXT GET_SecondaryColor3fvEXT(struct _glapi_table *disp) {
8775 return (_glptr_SecondaryColor3fvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fvEXT));
8776 }
8777
8778 static inline void SET_SecondaryColor3fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
8779 SET_by_offset(disp, _gloffset_SecondaryColor3fvEXT, fn);
8780 }
8781
8782 typedef void (GLAPIENTRYP _glptr_SecondaryColor3iEXT)(GLint, GLint, GLint);
8783 #define CALL_SecondaryColor3iEXT(disp, parameters) \
8784 (* GET_SecondaryColor3iEXT(disp)) parameters
8785 static inline _glptr_SecondaryColor3iEXT GET_SecondaryColor3iEXT(struct _glapi_table *disp) {
8786 return (_glptr_SecondaryColor3iEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3iEXT));
8787 }
8788
8789 static inline void SET_SecondaryColor3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
8790 SET_by_offset(disp, _gloffset_SecondaryColor3iEXT, fn);
8791 }
8792
8793 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ivEXT)(const GLint *);
8794 #define CALL_SecondaryColor3ivEXT(disp, parameters) \
8795 (* GET_SecondaryColor3ivEXT(disp)) parameters
8796 static inline _glptr_SecondaryColor3ivEXT GET_SecondaryColor3ivEXT(struct _glapi_table *disp) {
8797 return (_glptr_SecondaryColor3ivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ivEXT));
8798 }
8799
8800 static inline void SET_SecondaryColor3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
8801 SET_by_offset(disp, _gloffset_SecondaryColor3ivEXT, fn);
8802 }
8803
8804 typedef void (GLAPIENTRYP _glptr_SecondaryColor3sEXT)(GLshort, GLshort, GLshort);
8805 #define CALL_SecondaryColor3sEXT(disp, parameters) \
8806 (* GET_SecondaryColor3sEXT(disp)) parameters
8807 static inline _glptr_SecondaryColor3sEXT GET_SecondaryColor3sEXT(struct _glapi_table *disp) {
8808 return (_glptr_SecondaryColor3sEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3sEXT));
8809 }
8810
8811 static inline void SET_SecondaryColor3sEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
8812 SET_by_offset(disp, _gloffset_SecondaryColor3sEXT, fn);
8813 }
8814
8815 typedef void (GLAPIENTRYP _glptr_SecondaryColor3svEXT)(const GLshort *);
8816 #define CALL_SecondaryColor3svEXT(disp, parameters) \
8817 (* GET_SecondaryColor3svEXT(disp)) parameters
8818 static inline _glptr_SecondaryColor3svEXT GET_SecondaryColor3svEXT(struct _glapi_table *disp) {
8819 return (_glptr_SecondaryColor3svEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3svEXT));
8820 }
8821
8822 static inline void SET_SecondaryColor3svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
8823 SET_by_offset(disp, _gloffset_SecondaryColor3svEXT, fn);
8824 }
8825
8826 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubEXT)(GLubyte, GLubyte, GLubyte);
8827 #define CALL_SecondaryColor3ubEXT(disp, parameters) \
8828 (* GET_SecondaryColor3ubEXT(disp)) parameters
8829 static inline _glptr_SecondaryColor3ubEXT GET_SecondaryColor3ubEXT(struct _glapi_table *disp) {
8830 return (_glptr_SecondaryColor3ubEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubEXT));
8831 }
8832
8833 static inline void SET_SecondaryColor3ubEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
8834 SET_by_offset(disp, _gloffset_SecondaryColor3ubEXT, fn);
8835 }
8836
8837 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubvEXT)(const GLubyte *);
8838 #define CALL_SecondaryColor3ubvEXT(disp, parameters) \
8839 (* GET_SecondaryColor3ubvEXT(disp)) parameters
8840 static inline _glptr_SecondaryColor3ubvEXT GET_SecondaryColor3ubvEXT(struct _glapi_table *disp) {
8841 return (_glptr_SecondaryColor3ubvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT));
8842 }
8843
8844 static inline void SET_SecondaryColor3ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
8845 SET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT, fn);
8846 }
8847
8848 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uiEXT)(GLuint, GLuint, GLuint);
8849 #define CALL_SecondaryColor3uiEXT(disp, parameters) \
8850 (* GET_SecondaryColor3uiEXT(disp)) parameters
8851 static inline _glptr_SecondaryColor3uiEXT GET_SecondaryColor3uiEXT(struct _glapi_table *disp) {
8852 return (_glptr_SecondaryColor3uiEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uiEXT));
8853 }
8854
8855 static inline void SET_SecondaryColor3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
8856 SET_by_offset(disp, _gloffset_SecondaryColor3uiEXT, fn);
8857 }
8858
8859 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uivEXT)(const GLuint *);
8860 #define CALL_SecondaryColor3uivEXT(disp, parameters) \
8861 (* GET_SecondaryColor3uivEXT(disp)) parameters
8862 static inline _glptr_SecondaryColor3uivEXT GET_SecondaryColor3uivEXT(struct _glapi_table *disp) {
8863 return (_glptr_SecondaryColor3uivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uivEXT));
8864 }
8865
8866 static inline void SET_SecondaryColor3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
8867 SET_by_offset(disp, _gloffset_SecondaryColor3uivEXT, fn);
8868 }
8869
8870 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usEXT)(GLushort, GLushort, GLushort);
8871 #define CALL_SecondaryColor3usEXT(disp, parameters) \
8872 (* GET_SecondaryColor3usEXT(disp)) parameters
8873 static inline _glptr_SecondaryColor3usEXT GET_SecondaryColor3usEXT(struct _glapi_table *disp) {
8874 return (_glptr_SecondaryColor3usEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usEXT));
8875 }
8876
8877 static inline void SET_SecondaryColor3usEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
8878 SET_by_offset(disp, _gloffset_SecondaryColor3usEXT, fn);
8879 }
8880
8881 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usvEXT)(const GLushort *);
8882 #define CALL_SecondaryColor3usvEXT(disp, parameters) \
8883 (* GET_SecondaryColor3usvEXT(disp)) parameters
8884 static inline _glptr_SecondaryColor3usvEXT GET_SecondaryColor3usvEXT(struct _glapi_table *disp) {
8885 return (_glptr_SecondaryColor3usvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usvEXT));
8886 }
8887
8888 static inline void SET_SecondaryColor3usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
8889 SET_by_offset(disp, _gloffset_SecondaryColor3usvEXT, fn);
8890 }
8891
8892 typedef void (GLAPIENTRYP _glptr_SecondaryColorPointerEXT)(GLint, GLenum, GLsizei, const GLvoid *);
8893 #define CALL_SecondaryColorPointerEXT(disp, parameters) \
8894 (* GET_SecondaryColorPointerEXT(disp)) parameters
8895 static inline _glptr_SecondaryColorPointerEXT GET_SecondaryColorPointerEXT(struct _glapi_table *disp) {
8896 return (_glptr_SecondaryColorPointerEXT) (GET_by_offset(disp, _gloffset_SecondaryColorPointerEXT));
8897 }
8898
8899 static inline void SET_SecondaryColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
8900 SET_by_offset(disp, _gloffset_SecondaryColorPointerEXT, fn);
8901 }
8902
8903 typedef void (GLAPIENTRYP _glptr_MultiDrawArraysEXT)(GLenum, const GLint *, const GLsizei *, GLsizei);
8904 #define CALL_MultiDrawArraysEXT(disp, parameters) \
8905 (* GET_MultiDrawArraysEXT(disp)) parameters
8906 static inline _glptr_MultiDrawArraysEXT GET_MultiDrawArraysEXT(struct _glapi_table *disp) {
8907 return (_glptr_MultiDrawArraysEXT) (GET_by_offset(disp, _gloffset_MultiDrawArraysEXT));
8908 }
8909
8910 static inline void SET_MultiDrawArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *, const GLsizei *, GLsizei)) {
8911 SET_by_offset(disp, _gloffset_MultiDrawArraysEXT, fn);
8912 }
8913
8914 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsEXT)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei);
8915 #define CALL_MultiDrawElementsEXT(disp, parameters) \
8916 (* GET_MultiDrawElementsEXT(disp)) parameters
8917 static inline _glptr_MultiDrawElementsEXT GET_MultiDrawElementsEXT(struct _glapi_table *disp) {
8918 return (_glptr_MultiDrawElementsEXT) (GET_by_offset(disp, _gloffset_MultiDrawElementsEXT));
8919 }
8920
8921 static inline void SET_MultiDrawElementsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei)) {
8922 SET_by_offset(disp, _gloffset_MultiDrawElementsEXT, fn);
8923 }
8924
8925 typedef void (GLAPIENTRYP _glptr_FogCoordPointerEXT)(GLenum, GLsizei, const GLvoid *);
8926 #define CALL_FogCoordPointerEXT(disp, parameters) \
8927 (* GET_FogCoordPointerEXT(disp)) parameters
8928 static inline _glptr_FogCoordPointerEXT GET_FogCoordPointerEXT(struct _glapi_table *disp) {
8929 return (_glptr_FogCoordPointerEXT) (GET_by_offset(disp, _gloffset_FogCoordPointerEXT));
8930 }
8931
8932 static inline void SET_FogCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
8933 SET_by_offset(disp, _gloffset_FogCoordPointerEXT, fn);
8934 }
8935
8936 typedef void (GLAPIENTRYP _glptr_FogCoorddEXT)(GLdouble);
8937 #define CALL_FogCoorddEXT(disp, parameters) \
8938 (* GET_FogCoorddEXT(disp)) parameters
8939 static inline _glptr_FogCoorddEXT GET_FogCoorddEXT(struct _glapi_table *disp) {
8940 return (_glptr_FogCoorddEXT) (GET_by_offset(disp, _gloffset_FogCoorddEXT));
8941 }
8942
8943 static inline void SET_FogCoorddEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
8944 SET_by_offset(disp, _gloffset_FogCoorddEXT, fn);
8945 }
8946
8947 typedef void (GLAPIENTRYP _glptr_FogCoorddvEXT)(const GLdouble *);
8948 #define CALL_FogCoorddvEXT(disp, parameters) \
8949 (* GET_FogCoorddvEXT(disp)) parameters
8950 static inline _glptr_FogCoorddvEXT GET_FogCoorddvEXT(struct _glapi_table *disp) {
8951 return (_glptr_FogCoorddvEXT) (GET_by_offset(disp, _gloffset_FogCoorddvEXT));
8952 }
8953
8954 static inline void SET_FogCoorddvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
8955 SET_by_offset(disp, _gloffset_FogCoorddvEXT, fn);
8956 }
8957
8958 typedef void (GLAPIENTRYP _glptr_FogCoordfEXT)(GLfloat);
8959 #define CALL_FogCoordfEXT(disp, parameters) \
8960 (* GET_FogCoordfEXT(disp)) parameters
8961 static inline _glptr_FogCoordfEXT GET_FogCoordfEXT(struct _glapi_table *disp) {
8962 return (_glptr_FogCoordfEXT) (GET_by_offset(disp, _gloffset_FogCoordfEXT));
8963 }
8964
8965 static inline void SET_FogCoordfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
8966 SET_by_offset(disp, _gloffset_FogCoordfEXT, fn);
8967 }
8968
8969 typedef void (GLAPIENTRYP _glptr_FogCoordfvEXT)(const GLfloat *);
8970 #define CALL_FogCoordfvEXT(disp, parameters) \
8971 (* GET_FogCoordfvEXT(disp)) parameters
8972 static inline _glptr_FogCoordfvEXT GET_FogCoordfvEXT(struct _glapi_table *disp) {
8973 return (_glptr_FogCoordfvEXT) (GET_by_offset(disp, _gloffset_FogCoordfvEXT));
8974 }
8975
8976 static inline void SET_FogCoordfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
8977 SET_by_offset(disp, _gloffset_FogCoordfvEXT, fn);
8978 }
8979
8980 typedef void (GLAPIENTRYP _glptr_PixelTexGenSGIX)(GLenum);
8981 #define CALL_PixelTexGenSGIX(disp, parameters) \
8982 (* GET_PixelTexGenSGIX(disp)) parameters
8983 static inline _glptr_PixelTexGenSGIX GET_PixelTexGenSGIX(struct _glapi_table *disp) {
8984 return (_glptr_PixelTexGenSGIX) (GET_by_offset(disp, _gloffset_PixelTexGenSGIX));
8985 }
8986
8987 static inline void SET_PixelTexGenSGIX(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
8988 SET_by_offset(disp, _gloffset_PixelTexGenSGIX, fn);
8989 }
8990
8991 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateEXT)(GLenum, GLenum, GLenum, GLenum);
8992 #define CALL_BlendFuncSeparateEXT(disp, parameters) \
8993 (* GET_BlendFuncSeparateEXT(disp)) parameters
8994 static inline _glptr_BlendFuncSeparateEXT GET_BlendFuncSeparateEXT(struct _glapi_table *disp) {
8995 return (_glptr_BlendFuncSeparateEXT) (GET_by_offset(disp, _gloffset_BlendFuncSeparateEXT));
8996 }
8997
8998 static inline void SET_BlendFuncSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
8999 SET_by_offset(disp, _gloffset_BlendFuncSeparateEXT, fn);
9000 }
9001
9002 typedef void (GLAPIENTRYP _glptr_FlushVertexArrayRangeNV)(void);
9003 #define CALL_FlushVertexArrayRangeNV(disp, parameters) \
9004 (* GET_FlushVertexArrayRangeNV(disp)) parameters
9005 static inline _glptr_FlushVertexArrayRangeNV GET_FlushVertexArrayRangeNV(struct _glapi_table *disp) {
9006 return (_glptr_FlushVertexArrayRangeNV) (GET_by_offset(disp, _gloffset_FlushVertexArrayRangeNV));
9007 }
9008
9009 static inline void SET_FlushVertexArrayRangeNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
9010 SET_by_offset(disp, _gloffset_FlushVertexArrayRangeNV, fn);
9011 }
9012
9013 typedef void (GLAPIENTRYP _glptr_VertexArrayRangeNV)(GLsizei, const GLvoid *);
9014 #define CALL_VertexArrayRangeNV(disp, parameters) \
9015 (* GET_VertexArrayRangeNV(disp)) parameters
9016 static inline _glptr_VertexArrayRangeNV GET_VertexArrayRangeNV(struct _glapi_table *disp) {
9017 return (_glptr_VertexArrayRangeNV) (GET_by_offset(disp, _gloffset_VertexArrayRangeNV));
9018 }
9019
9020 static inline void SET_VertexArrayRangeNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
9021 SET_by_offset(disp, _gloffset_VertexArrayRangeNV, fn);
9022 }
9023
9024 typedef void (GLAPIENTRYP _glptr_CombinerInputNV)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum);
9025 #define CALL_CombinerInputNV(disp, parameters) \
9026 (* GET_CombinerInputNV(disp)) parameters
9027 static inline _glptr_CombinerInputNV GET_CombinerInputNV(struct _glapi_table *disp) {
9028 return (_glptr_CombinerInputNV) (GET_by_offset(disp, _gloffset_CombinerInputNV));
9029 }
9030
9031 static inline void SET_CombinerInputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum)) {
9032 SET_by_offset(disp, _gloffset_CombinerInputNV, fn);
9033 }
9034
9035 typedef void (GLAPIENTRYP _glptr_CombinerOutputNV)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean);
9036 #define CALL_CombinerOutputNV(disp, parameters) \
9037 (* GET_CombinerOutputNV(disp)) parameters
9038 static inline _glptr_CombinerOutputNV GET_CombinerOutputNV(struct _glapi_table *disp) {
9039 return (_glptr_CombinerOutputNV) (GET_by_offset(disp, _gloffset_CombinerOutputNV));
9040 }
9041
9042 static inline void SET_CombinerOutputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean)) {
9043 SET_by_offset(disp, _gloffset_CombinerOutputNV, fn);
9044 }
9045
9046 typedef void (GLAPIENTRYP _glptr_CombinerParameterfNV)(GLenum, GLfloat);
9047 #define CALL_CombinerParameterfNV(disp, parameters) \
9048 (* GET_CombinerParameterfNV(disp)) parameters
9049 static inline _glptr_CombinerParameterfNV GET_CombinerParameterfNV(struct _glapi_table *disp) {
9050 return (_glptr_CombinerParameterfNV) (GET_by_offset(disp, _gloffset_CombinerParameterfNV));
9051 }
9052
9053 static inline void SET_CombinerParameterfNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
9054 SET_by_offset(disp, _gloffset_CombinerParameterfNV, fn);
9055 }
9056
9057 typedef void (GLAPIENTRYP _glptr_CombinerParameterfvNV)(GLenum, const GLfloat *);
9058 #define CALL_CombinerParameterfvNV(disp, parameters) \
9059 (* GET_CombinerParameterfvNV(disp)) parameters
9060 static inline _glptr_CombinerParameterfvNV GET_CombinerParameterfvNV(struct _glapi_table *disp) {
9061 return (_glptr_CombinerParameterfvNV) (GET_by_offset(disp, _gloffset_CombinerParameterfvNV));
9062 }
9063
9064 static inline void SET_CombinerParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
9065 SET_by_offset(disp, _gloffset_CombinerParameterfvNV, fn);
9066 }
9067
9068 typedef void (GLAPIENTRYP _glptr_CombinerParameteriNV)(GLenum, GLint);
9069 #define CALL_CombinerParameteriNV(disp, parameters) \
9070 (* GET_CombinerParameteriNV(disp)) parameters
9071 static inline _glptr_CombinerParameteriNV GET_CombinerParameteriNV(struct _glapi_table *disp) {
9072 return (_glptr_CombinerParameteriNV) (GET_by_offset(disp, _gloffset_CombinerParameteriNV));
9073 }
9074
9075 static inline void SET_CombinerParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
9076 SET_by_offset(disp, _gloffset_CombinerParameteriNV, fn);
9077 }
9078
9079 typedef void (GLAPIENTRYP _glptr_CombinerParameterivNV)(GLenum, const GLint *);
9080 #define CALL_CombinerParameterivNV(disp, parameters) \
9081 (* GET_CombinerParameterivNV(disp)) parameters
9082 static inline _glptr_CombinerParameterivNV GET_CombinerParameterivNV(struct _glapi_table *disp) {
9083 return (_glptr_CombinerParameterivNV) (GET_by_offset(disp, _gloffset_CombinerParameterivNV));
9084 }
9085
9086 static inline void SET_CombinerParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
9087 SET_by_offset(disp, _gloffset_CombinerParameterivNV, fn);
9088 }
9089
9090 typedef void (GLAPIENTRYP _glptr_FinalCombinerInputNV)(GLenum, GLenum, GLenum, GLenum);
9091 #define CALL_FinalCombinerInputNV(disp, parameters) \
9092 (* GET_FinalCombinerInputNV(disp)) parameters
9093 static inline _glptr_FinalCombinerInputNV GET_FinalCombinerInputNV(struct _glapi_table *disp) {
9094 return (_glptr_FinalCombinerInputNV) (GET_by_offset(disp, _gloffset_FinalCombinerInputNV));
9095 }
9096
9097 static inline void SET_FinalCombinerInputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
9098 SET_by_offset(disp, _gloffset_FinalCombinerInputNV, fn);
9099 }
9100
9101 typedef void (GLAPIENTRYP _glptr_GetCombinerInputParameterfvNV)(GLenum, GLenum, GLenum, GLenum, GLfloat *);
9102 #define CALL_GetCombinerInputParameterfvNV(disp, parameters) \
9103 (* GET_GetCombinerInputParameterfvNV(disp)) parameters
9104 static inline _glptr_GetCombinerInputParameterfvNV GET_GetCombinerInputParameterfvNV(struct _glapi_table *disp) {
9105 return (_glptr_GetCombinerInputParameterfvNV) (GET_by_offset(disp, _gloffset_GetCombinerInputParameterfvNV));
9106 }
9107
9108 static inline void SET_GetCombinerInputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLfloat *)) {
9109 SET_by_offset(disp, _gloffset_GetCombinerInputParameterfvNV, fn);
9110 }
9111
9112 typedef void (GLAPIENTRYP _glptr_GetCombinerInputParameterivNV)(GLenum, GLenum, GLenum, GLenum, GLint *);
9113 #define CALL_GetCombinerInputParameterivNV(disp, parameters) \
9114 (* GET_GetCombinerInputParameterivNV(disp)) parameters
9115 static inline _glptr_GetCombinerInputParameterivNV GET_GetCombinerInputParameterivNV(struct _glapi_table *disp) {
9116 return (_glptr_GetCombinerInputParameterivNV) (GET_by_offset(disp, _gloffset_GetCombinerInputParameterivNV));
9117 }
9118
9119 static inline void SET_GetCombinerInputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLint *)) {
9120 SET_by_offset(disp, _gloffset_GetCombinerInputParameterivNV, fn);
9121 }
9122
9123 typedef void (GLAPIENTRYP _glptr_GetCombinerOutputParameterfvNV)(GLenum, GLenum, GLenum, GLfloat *);
9124 #define CALL_GetCombinerOutputParameterfvNV(disp, parameters) \
9125 (* GET_GetCombinerOutputParameterfvNV(disp)) parameters
9126 static inline _glptr_GetCombinerOutputParameterfvNV GET_GetCombinerOutputParameterfvNV(struct _glapi_table *disp) {
9127 return (_glptr_GetCombinerOutputParameterfvNV) (GET_by_offset(disp, _gloffset_GetCombinerOutputParameterfvNV));
9128 }
9129
9130 static inline void SET_GetCombinerOutputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLfloat *)) {
9131 SET_by_offset(disp, _gloffset_GetCombinerOutputParameterfvNV, fn);
9132 }
9133
9134 typedef void (GLAPIENTRYP _glptr_GetCombinerOutputParameterivNV)(GLenum, GLenum, GLenum, GLint *);
9135 #define CALL_GetCombinerOutputParameterivNV(disp, parameters) \
9136 (* GET_GetCombinerOutputParameterivNV(disp)) parameters
9137 static inline _glptr_GetCombinerOutputParameterivNV GET_GetCombinerOutputParameterivNV(struct _glapi_table *disp) {
9138 return (_glptr_GetCombinerOutputParameterivNV) (GET_by_offset(disp, _gloffset_GetCombinerOutputParameterivNV));
9139 }
9140
9141 static inline void SET_GetCombinerOutputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) {
9142 SET_by_offset(disp, _gloffset_GetCombinerOutputParameterivNV, fn);
9143 }
9144
9145 typedef void (GLAPIENTRYP _glptr_GetFinalCombinerInputParameterfvNV)(GLenum, GLenum, GLfloat *);
9146 #define CALL_GetFinalCombinerInputParameterfvNV(disp, parameters) \
9147 (* GET_GetFinalCombinerInputParameterfvNV(disp)) parameters
9148 static inline _glptr_GetFinalCombinerInputParameterfvNV GET_GetFinalCombinerInputParameterfvNV(struct _glapi_table *disp) {
9149 return (_glptr_GetFinalCombinerInputParameterfvNV) (GET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterfvNV));
9150 }
9151
9152 static inline void SET_GetFinalCombinerInputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
9153 SET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterfvNV, fn);
9154 }
9155
9156 typedef void (GLAPIENTRYP _glptr_GetFinalCombinerInputParameterivNV)(GLenum, GLenum, GLint *);
9157 #define CALL_GetFinalCombinerInputParameterivNV(disp, parameters) \
9158 (* GET_GetFinalCombinerInputParameterivNV(disp)) parameters
9159 static inline _glptr_GetFinalCombinerInputParameterivNV GET_GetFinalCombinerInputParameterivNV(struct _glapi_table *disp) {
9160 return (_glptr_GetFinalCombinerInputParameterivNV) (GET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterivNV));
9161 }
9162
9163 static inline void SET_GetFinalCombinerInputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
9164 SET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterivNV, fn);
9165 }
9166
9167 typedef void (GLAPIENTRYP _glptr_ResizeBuffersMESA)(void);
9168 #define CALL_ResizeBuffersMESA(disp, parameters) \
9169 (* GET_ResizeBuffersMESA(disp)) parameters
9170 static inline _glptr_ResizeBuffersMESA GET_ResizeBuffersMESA(struct _glapi_table *disp) {
9171 return (_glptr_ResizeBuffersMESA) (GET_by_offset(disp, _gloffset_ResizeBuffersMESA));
9172 }
9173
9174 static inline void SET_ResizeBuffersMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
9175 SET_by_offset(disp, _gloffset_ResizeBuffersMESA, fn);
9176 }
9177
9178 typedef void (GLAPIENTRYP _glptr_WindowPos2dMESA)(GLdouble, GLdouble);
9179 #define CALL_WindowPos2dMESA(disp, parameters) \
9180 (* GET_WindowPos2dMESA(disp)) parameters
9181 static inline _glptr_WindowPos2dMESA GET_WindowPos2dMESA(struct _glapi_table *disp) {
9182 return (_glptr_WindowPos2dMESA) (GET_by_offset(disp, _gloffset_WindowPos2dMESA));
9183 }
9184
9185 static inline void SET_WindowPos2dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
9186 SET_by_offset(disp, _gloffset_WindowPos2dMESA, fn);
9187 }
9188
9189 typedef void (GLAPIENTRYP _glptr_WindowPos2dvMESA)(const GLdouble *);
9190 #define CALL_WindowPos2dvMESA(disp, parameters) \
9191 (* GET_WindowPos2dvMESA(disp)) parameters
9192 static inline _glptr_WindowPos2dvMESA GET_WindowPos2dvMESA(struct _glapi_table *disp) {
9193 return (_glptr_WindowPos2dvMESA) (GET_by_offset(disp, _gloffset_WindowPos2dvMESA));
9194 }
9195
9196 static inline void SET_WindowPos2dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
9197 SET_by_offset(disp, _gloffset_WindowPos2dvMESA, fn);
9198 }
9199
9200 typedef void (GLAPIENTRYP _glptr_WindowPos2fMESA)(GLfloat, GLfloat);
9201 #define CALL_WindowPos2fMESA(disp, parameters) \
9202 (* GET_WindowPos2fMESA(disp)) parameters
9203 static inline _glptr_WindowPos2fMESA GET_WindowPos2fMESA(struct _glapi_table *disp) {
9204 return (_glptr_WindowPos2fMESA) (GET_by_offset(disp, _gloffset_WindowPos2fMESA));
9205 }
9206
9207 static inline void SET_WindowPos2fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
9208 SET_by_offset(disp, _gloffset_WindowPos2fMESA, fn);
9209 }
9210
9211 typedef void (GLAPIENTRYP _glptr_WindowPos2fvMESA)(const GLfloat *);
9212 #define CALL_WindowPos2fvMESA(disp, parameters) \
9213 (* GET_WindowPos2fvMESA(disp)) parameters
9214 static inline _glptr_WindowPos2fvMESA GET_WindowPos2fvMESA(struct _glapi_table *disp) {
9215 return (_glptr_WindowPos2fvMESA) (GET_by_offset(disp, _gloffset_WindowPos2fvMESA));
9216 }
9217
9218 static inline void SET_WindowPos2fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
9219 SET_by_offset(disp, _gloffset_WindowPos2fvMESA, fn);
9220 }
9221
9222 typedef void (GLAPIENTRYP _glptr_WindowPos2iMESA)(GLint, GLint);
9223 #define CALL_WindowPos2iMESA(disp, parameters) \
9224 (* GET_WindowPos2iMESA(disp)) parameters
9225 static inline _glptr_WindowPos2iMESA GET_WindowPos2iMESA(struct _glapi_table *disp) {
9226 return (_glptr_WindowPos2iMESA) (GET_by_offset(disp, _gloffset_WindowPos2iMESA));
9227 }
9228
9229 static inline void SET_WindowPos2iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
9230 SET_by_offset(disp, _gloffset_WindowPos2iMESA, fn);
9231 }
9232
9233 typedef void (GLAPIENTRYP _glptr_WindowPos2ivMESA)(const GLint *);
9234 #define CALL_WindowPos2ivMESA(disp, parameters) \
9235 (* GET_WindowPos2ivMESA(disp)) parameters
9236 static inline _glptr_WindowPos2ivMESA GET_WindowPos2ivMESA(struct _glapi_table *disp) {
9237 return (_glptr_WindowPos2ivMESA) (GET_by_offset(disp, _gloffset_WindowPos2ivMESA));
9238 }
9239
9240 static inline void SET_WindowPos2ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
9241 SET_by_offset(disp, _gloffset_WindowPos2ivMESA, fn);
9242 }
9243
9244 typedef void (GLAPIENTRYP _glptr_WindowPos2sMESA)(GLshort, GLshort);
9245 #define CALL_WindowPos2sMESA(disp, parameters) \
9246 (* GET_WindowPos2sMESA(disp)) parameters
9247 static inline _glptr_WindowPos2sMESA GET_WindowPos2sMESA(struct _glapi_table *disp) {
9248 return (_glptr_WindowPos2sMESA) (GET_by_offset(disp, _gloffset_WindowPos2sMESA));
9249 }
9250
9251 static inline void SET_WindowPos2sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
9252 SET_by_offset(disp, _gloffset_WindowPos2sMESA, fn);
9253 }
9254
9255 typedef void (GLAPIENTRYP _glptr_WindowPos2svMESA)(const GLshort *);
9256 #define CALL_WindowPos2svMESA(disp, parameters) \
9257 (* GET_WindowPos2svMESA(disp)) parameters
9258 static inline _glptr_WindowPos2svMESA GET_WindowPos2svMESA(struct _glapi_table *disp) {
9259 return (_glptr_WindowPos2svMESA) (GET_by_offset(disp, _gloffset_WindowPos2svMESA));
9260 }
9261
9262 static inline void SET_WindowPos2svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
9263 SET_by_offset(disp, _gloffset_WindowPos2svMESA, fn);
9264 }
9265
9266 typedef void (GLAPIENTRYP _glptr_WindowPos3dMESA)(GLdouble, GLdouble, GLdouble);
9267 #define CALL_WindowPos3dMESA(disp, parameters) \
9268 (* GET_WindowPos3dMESA(disp)) parameters
9269 static inline _glptr_WindowPos3dMESA GET_WindowPos3dMESA(struct _glapi_table *disp) {
9270 return (_glptr_WindowPos3dMESA) (GET_by_offset(disp, _gloffset_WindowPos3dMESA));
9271 }
9272
9273 static inline void SET_WindowPos3dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
9274 SET_by_offset(disp, _gloffset_WindowPos3dMESA, fn);
9275 }
9276
9277 typedef void (GLAPIENTRYP _glptr_WindowPos3dvMESA)(const GLdouble *);
9278 #define CALL_WindowPos3dvMESA(disp, parameters) \
9279 (* GET_WindowPos3dvMESA(disp)) parameters
9280 static inline _glptr_WindowPos3dvMESA GET_WindowPos3dvMESA(struct _glapi_table *disp) {
9281 return (_glptr_WindowPos3dvMESA) (GET_by_offset(disp, _gloffset_WindowPos3dvMESA));
9282 }
9283
9284 static inline void SET_WindowPos3dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
9285 SET_by_offset(disp, _gloffset_WindowPos3dvMESA, fn);
9286 }
9287
9288 typedef void (GLAPIENTRYP _glptr_WindowPos3fMESA)(GLfloat, GLfloat, GLfloat);
9289 #define CALL_WindowPos3fMESA(disp, parameters) \
9290 (* GET_WindowPos3fMESA(disp)) parameters
9291 static inline _glptr_WindowPos3fMESA GET_WindowPos3fMESA(struct _glapi_table *disp) {
9292 return (_glptr_WindowPos3fMESA) (GET_by_offset(disp, _gloffset_WindowPos3fMESA));
9293 }
9294
9295 static inline void SET_WindowPos3fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
9296 SET_by_offset(disp, _gloffset_WindowPos3fMESA, fn);
9297 }
9298
9299 typedef void (GLAPIENTRYP _glptr_WindowPos3fvMESA)(const GLfloat *);
9300 #define CALL_WindowPos3fvMESA(disp, parameters) \
9301 (* GET_WindowPos3fvMESA(disp)) parameters
9302 static inline _glptr_WindowPos3fvMESA GET_WindowPos3fvMESA(struct _glapi_table *disp) {
9303 return (_glptr_WindowPos3fvMESA) (GET_by_offset(disp, _gloffset_WindowPos3fvMESA));
9304 }
9305
9306 static inline void SET_WindowPos3fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
9307 SET_by_offset(disp, _gloffset_WindowPos3fvMESA, fn);
9308 }
9309
9310 typedef void (GLAPIENTRYP _glptr_WindowPos3iMESA)(GLint, GLint, GLint);
9311 #define CALL_WindowPos3iMESA(disp, parameters) \
9312 (* GET_WindowPos3iMESA(disp)) parameters
9313 static inline _glptr_WindowPos3iMESA GET_WindowPos3iMESA(struct _glapi_table *disp) {
9314 return (_glptr_WindowPos3iMESA) (GET_by_offset(disp, _gloffset_WindowPos3iMESA));
9315 }
9316
9317 static inline void SET_WindowPos3iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
9318 SET_by_offset(disp, _gloffset_WindowPos3iMESA, fn);
9319 }
9320
9321 typedef void (GLAPIENTRYP _glptr_WindowPos3ivMESA)(const GLint *);
9322 #define CALL_WindowPos3ivMESA(disp, parameters) \
9323 (* GET_WindowPos3ivMESA(disp)) parameters
9324 static inline _glptr_WindowPos3ivMESA GET_WindowPos3ivMESA(struct _glapi_table *disp) {
9325 return (_glptr_WindowPos3ivMESA) (GET_by_offset(disp, _gloffset_WindowPos3ivMESA));
9326 }
9327
9328 static inline void SET_WindowPos3ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
9329 SET_by_offset(disp, _gloffset_WindowPos3ivMESA, fn);
9330 }
9331
9332 typedef void (GLAPIENTRYP _glptr_WindowPos3sMESA)(GLshort, GLshort, GLshort);
9333 #define CALL_WindowPos3sMESA(disp, parameters) \
9334 (* GET_WindowPos3sMESA(disp)) parameters
9335 static inline _glptr_WindowPos3sMESA GET_WindowPos3sMESA(struct _glapi_table *disp) {
9336 return (_glptr_WindowPos3sMESA) (GET_by_offset(disp, _gloffset_WindowPos3sMESA));
9337 }
9338
9339 static inline void SET_WindowPos3sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
9340 SET_by_offset(disp, _gloffset_WindowPos3sMESA, fn);
9341 }
9342
9343 typedef void (GLAPIENTRYP _glptr_WindowPos3svMESA)(const GLshort *);
9344 #define CALL_WindowPos3svMESA(disp, parameters) \
9345 (* GET_WindowPos3svMESA(disp)) parameters
9346 static inline _glptr_WindowPos3svMESA GET_WindowPos3svMESA(struct _glapi_table *disp) {
9347 return (_glptr_WindowPos3svMESA) (GET_by_offset(disp, _gloffset_WindowPos3svMESA));
9348 }
9349
9350 static inline void SET_WindowPos3svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
9351 SET_by_offset(disp, _gloffset_WindowPos3svMESA, fn);
9352 }
9353
9354 typedef void (GLAPIENTRYP _glptr_WindowPos4dMESA)(GLdouble, GLdouble, GLdouble, GLdouble);
9355 #define CALL_WindowPos4dMESA(disp, parameters) \
9356 (* GET_WindowPos4dMESA(disp)) parameters
9357 static inline _glptr_WindowPos4dMESA GET_WindowPos4dMESA(struct _glapi_table *disp) {
9358 return (_glptr_WindowPos4dMESA) (GET_by_offset(disp, _gloffset_WindowPos4dMESA));
9359 }
9360
9361 static inline void SET_WindowPos4dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
9362 SET_by_offset(disp, _gloffset_WindowPos4dMESA, fn);
9363 }
9364
9365 typedef void (GLAPIENTRYP _glptr_WindowPos4dvMESA)(const GLdouble *);
9366 #define CALL_WindowPos4dvMESA(disp, parameters) \
9367 (* GET_WindowPos4dvMESA(disp)) parameters
9368 static inline _glptr_WindowPos4dvMESA GET_WindowPos4dvMESA(struct _glapi_table *disp) {
9369 return (_glptr_WindowPos4dvMESA) (GET_by_offset(disp, _gloffset_WindowPos4dvMESA));
9370 }
9371
9372 static inline void SET_WindowPos4dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
9373 SET_by_offset(disp, _gloffset_WindowPos4dvMESA, fn);
9374 }
9375
9376 typedef void (GLAPIENTRYP _glptr_WindowPos4fMESA)(GLfloat, GLfloat, GLfloat, GLfloat);
9377 #define CALL_WindowPos4fMESA(disp, parameters) \
9378 (* GET_WindowPos4fMESA(disp)) parameters
9379 static inline _glptr_WindowPos4fMESA GET_WindowPos4fMESA(struct _glapi_table *disp) {
9380 return (_glptr_WindowPos4fMESA) (GET_by_offset(disp, _gloffset_WindowPos4fMESA));
9381 }
9382
9383 static inline void SET_WindowPos4fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
9384 SET_by_offset(disp, _gloffset_WindowPos4fMESA, fn);
9385 }
9386
9387 typedef void (GLAPIENTRYP _glptr_WindowPos4fvMESA)(const GLfloat *);
9388 #define CALL_WindowPos4fvMESA(disp, parameters) \
9389 (* GET_WindowPos4fvMESA(disp)) parameters
9390 static inline _glptr_WindowPos4fvMESA GET_WindowPos4fvMESA(struct _glapi_table *disp) {
9391 return (_glptr_WindowPos4fvMESA) (GET_by_offset(disp, _gloffset_WindowPos4fvMESA));
9392 }
9393
9394 static inline void SET_WindowPos4fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
9395 SET_by_offset(disp, _gloffset_WindowPos4fvMESA, fn);
9396 }
9397
9398 typedef void (GLAPIENTRYP _glptr_WindowPos4iMESA)(GLint, GLint, GLint, GLint);
9399 #define CALL_WindowPos4iMESA(disp, parameters) \
9400 (* GET_WindowPos4iMESA(disp)) parameters
9401 static inline _glptr_WindowPos4iMESA GET_WindowPos4iMESA(struct _glapi_table *disp) {
9402 return (_glptr_WindowPos4iMESA) (GET_by_offset(disp, _gloffset_WindowPos4iMESA));
9403 }
9404
9405 static inline void SET_WindowPos4iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
9406 SET_by_offset(disp, _gloffset_WindowPos4iMESA, fn);
9407 }
9408
9409 typedef void (GLAPIENTRYP _glptr_WindowPos4ivMESA)(const GLint *);
9410 #define CALL_WindowPos4ivMESA(disp, parameters) \
9411 (* GET_WindowPos4ivMESA(disp)) parameters
9412 static inline _glptr_WindowPos4ivMESA GET_WindowPos4ivMESA(struct _glapi_table *disp) {
9413 return (_glptr_WindowPos4ivMESA) (GET_by_offset(disp, _gloffset_WindowPos4ivMESA));
9414 }
9415
9416 static inline void SET_WindowPos4ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
9417 SET_by_offset(disp, _gloffset_WindowPos4ivMESA, fn);
9418 }
9419
9420 typedef void (GLAPIENTRYP _glptr_WindowPos4sMESA)(GLshort, GLshort, GLshort, GLshort);
9421 #define CALL_WindowPos4sMESA(disp, parameters) \
9422 (* GET_WindowPos4sMESA(disp)) parameters
9423 static inline _glptr_WindowPos4sMESA GET_WindowPos4sMESA(struct _glapi_table *disp) {
9424 return (_glptr_WindowPos4sMESA) (GET_by_offset(disp, _gloffset_WindowPos4sMESA));
9425 }
9426
9427 static inline void SET_WindowPos4sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
9428 SET_by_offset(disp, _gloffset_WindowPos4sMESA, fn);
9429 }
9430
9431 typedef void (GLAPIENTRYP _glptr_WindowPos4svMESA)(const GLshort *);
9432 #define CALL_WindowPos4svMESA(disp, parameters) \
9433 (* GET_WindowPos4svMESA(disp)) parameters
9434 static inline _glptr_WindowPos4svMESA GET_WindowPos4svMESA(struct _glapi_table *disp) {
9435 return (_glptr_WindowPos4svMESA) (GET_by_offset(disp, _gloffset_WindowPos4svMESA));
9436 }
9437
9438 static inline void SET_WindowPos4svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
9439 SET_by_offset(disp, _gloffset_WindowPos4svMESA, fn);
9440 }
9441
9442 typedef void (GLAPIENTRYP _glptr_MultiModeDrawArraysIBM)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint);
9443 #define CALL_MultiModeDrawArraysIBM(disp, parameters) \
9444 (* GET_MultiModeDrawArraysIBM(disp)) parameters
9445 static inline _glptr_MultiModeDrawArraysIBM GET_MultiModeDrawArraysIBM(struct _glapi_table *disp) {
9446 return (_glptr_MultiModeDrawArraysIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM));
9447 }
9448
9449 static inline void SET_MultiModeDrawArraysIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint)) {
9450 SET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM, fn);
9451 }
9452
9453 typedef void (GLAPIENTRYP _glptr_MultiModeDrawElementsIBM)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint);
9454 #define CALL_MultiModeDrawElementsIBM(disp, parameters) \
9455 (* GET_MultiModeDrawElementsIBM(disp)) parameters
9456 static inline _glptr_MultiModeDrawElementsIBM GET_MultiModeDrawElementsIBM(struct _glapi_table *disp) {
9457 return (_glptr_MultiModeDrawElementsIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM));
9458 }
9459
9460 static inline void SET_MultiModeDrawElementsIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint)) {
9461 SET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM, fn);
9462 }
9463
9464 typedef void (GLAPIENTRYP _glptr_DeleteFencesNV)(GLsizei, const GLuint *);
9465 #define CALL_DeleteFencesNV(disp, parameters) \
9466 (* GET_DeleteFencesNV(disp)) parameters
9467 static inline _glptr_DeleteFencesNV GET_DeleteFencesNV(struct _glapi_table *disp) {
9468 return (_glptr_DeleteFencesNV) (GET_by_offset(disp, _gloffset_DeleteFencesNV));
9469 }
9470
9471 static inline void SET_DeleteFencesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
9472 SET_by_offset(disp, _gloffset_DeleteFencesNV, fn);
9473 }
9474
9475 typedef void (GLAPIENTRYP _glptr_FinishFenceNV)(GLuint);
9476 #define CALL_FinishFenceNV(disp, parameters) \
9477 (* GET_FinishFenceNV(disp)) parameters
9478 static inline _glptr_FinishFenceNV GET_FinishFenceNV(struct _glapi_table *disp) {
9479 return (_glptr_FinishFenceNV) (GET_by_offset(disp, _gloffset_FinishFenceNV));
9480 }
9481
9482 static inline void SET_FinishFenceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
9483 SET_by_offset(disp, _gloffset_FinishFenceNV, fn);
9484 }
9485
9486 typedef void (GLAPIENTRYP _glptr_GenFencesNV)(GLsizei, GLuint *);
9487 #define CALL_GenFencesNV(disp, parameters) \
9488 (* GET_GenFencesNV(disp)) parameters
9489 static inline _glptr_GenFencesNV GET_GenFencesNV(struct _glapi_table *disp) {
9490 return (_glptr_GenFencesNV) (GET_by_offset(disp, _gloffset_GenFencesNV));
9491 }
9492
9493 static inline void SET_GenFencesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
9494 SET_by_offset(disp, _gloffset_GenFencesNV, fn);
9495 }
9496
9497 typedef void (GLAPIENTRYP _glptr_GetFenceivNV)(GLuint, GLenum, GLint *);
9498 #define CALL_GetFenceivNV(disp, parameters) \
9499 (* GET_GetFenceivNV(disp)) parameters
9500 static inline _glptr_GetFenceivNV GET_GetFenceivNV(struct _glapi_table *disp) {
9501 return (_glptr_GetFenceivNV) (GET_by_offset(disp, _gloffset_GetFenceivNV));
9502 }
9503
9504 static inline void SET_GetFenceivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
9505 SET_by_offset(disp, _gloffset_GetFenceivNV, fn);
9506 }
9507
9508 typedef GLboolean (GLAPIENTRYP _glptr_IsFenceNV)(GLuint);
9509 #define CALL_IsFenceNV(disp, parameters) \
9510 (* GET_IsFenceNV(disp)) parameters
9511 static inline _glptr_IsFenceNV GET_IsFenceNV(struct _glapi_table *disp) {
9512 return (_glptr_IsFenceNV) (GET_by_offset(disp, _gloffset_IsFenceNV));
9513 }
9514
9515 static inline void SET_IsFenceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
9516 SET_by_offset(disp, _gloffset_IsFenceNV, fn);
9517 }
9518
9519 typedef void (GLAPIENTRYP _glptr_SetFenceNV)(GLuint, GLenum);
9520 #define CALL_SetFenceNV(disp, parameters) \
9521 (* GET_SetFenceNV(disp)) parameters
9522 static inline _glptr_SetFenceNV GET_SetFenceNV(struct _glapi_table *disp) {
9523 return (_glptr_SetFenceNV) (GET_by_offset(disp, _gloffset_SetFenceNV));
9524 }
9525
9526 static inline void SET_SetFenceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
9527 SET_by_offset(disp, _gloffset_SetFenceNV, fn);
9528 }
9529
9530 typedef GLboolean (GLAPIENTRYP _glptr_TestFenceNV)(GLuint);
9531 #define CALL_TestFenceNV(disp, parameters) \
9532 (* GET_TestFenceNV(disp)) parameters
9533 static inline _glptr_TestFenceNV GET_TestFenceNV(struct _glapi_table *disp) {
9534 return (_glptr_TestFenceNV) (GET_by_offset(disp, _gloffset_TestFenceNV));
9535 }
9536
9537 static inline void SET_TestFenceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
9538 SET_by_offset(disp, _gloffset_TestFenceNV, fn);
9539 }
9540
9541 typedef GLboolean (GLAPIENTRYP _glptr_AreProgramsResidentNV)(GLsizei, const GLuint *, GLboolean *);
9542 #define CALL_AreProgramsResidentNV(disp, parameters) \
9543 (* GET_AreProgramsResidentNV(disp)) parameters
9544 static inline _glptr_AreProgramsResidentNV GET_AreProgramsResidentNV(struct _glapi_table *disp) {
9545 return (_glptr_AreProgramsResidentNV) (GET_by_offset(disp, _gloffset_AreProgramsResidentNV));
9546 }
9547
9548 static inline void SET_AreProgramsResidentNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
9549 SET_by_offset(disp, _gloffset_AreProgramsResidentNV, fn);
9550 }
9551
9552 typedef void (GLAPIENTRYP _glptr_BindProgramNV)(GLenum, GLuint);
9553 #define CALL_BindProgramNV(disp, parameters) \
9554 (* GET_BindProgramNV(disp)) parameters
9555 static inline _glptr_BindProgramNV GET_BindProgramNV(struct _glapi_table *disp) {
9556 return (_glptr_BindProgramNV) (GET_by_offset(disp, _gloffset_BindProgramNV));
9557 }
9558
9559 static inline void SET_BindProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9560 SET_by_offset(disp, _gloffset_BindProgramNV, fn);
9561 }
9562
9563 typedef void (GLAPIENTRYP _glptr_DeleteProgramsNV)(GLsizei, const GLuint *);
9564 #define CALL_DeleteProgramsNV(disp, parameters) \
9565 (* GET_DeleteProgramsNV(disp)) parameters
9566 static inline _glptr_DeleteProgramsNV GET_DeleteProgramsNV(struct _glapi_table *disp) {
9567 return (_glptr_DeleteProgramsNV) (GET_by_offset(disp, _gloffset_DeleteProgramsNV));
9568 }
9569
9570 static inline void SET_DeleteProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
9571 SET_by_offset(disp, _gloffset_DeleteProgramsNV, fn);
9572 }
9573
9574 typedef void (GLAPIENTRYP _glptr_ExecuteProgramNV)(GLenum, GLuint, const GLfloat *);
9575 #define CALL_ExecuteProgramNV(disp, parameters) \
9576 (* GET_ExecuteProgramNV(disp)) parameters
9577 static inline _glptr_ExecuteProgramNV GET_ExecuteProgramNV(struct _glapi_table *disp) {
9578 return (_glptr_ExecuteProgramNV) (GET_by_offset(disp, _gloffset_ExecuteProgramNV));
9579 }
9580
9581 static inline void SET_ExecuteProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
9582 SET_by_offset(disp, _gloffset_ExecuteProgramNV, fn);
9583 }
9584
9585 typedef void (GLAPIENTRYP _glptr_GenProgramsNV)(GLsizei, GLuint *);
9586 #define CALL_GenProgramsNV(disp, parameters) \
9587 (* GET_GenProgramsNV(disp)) parameters
9588 static inline _glptr_GenProgramsNV GET_GenProgramsNV(struct _glapi_table *disp) {
9589 return (_glptr_GenProgramsNV) (GET_by_offset(disp, _gloffset_GenProgramsNV));
9590 }
9591
9592 static inline void SET_GenProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
9593 SET_by_offset(disp, _gloffset_GenProgramsNV, fn);
9594 }
9595
9596 typedef void (GLAPIENTRYP _glptr_GetProgramParameterdvNV)(GLenum, GLuint, GLenum, GLdouble *);
9597 #define CALL_GetProgramParameterdvNV(disp, parameters) \
9598 (* GET_GetProgramParameterdvNV(disp)) parameters
9599 static inline _glptr_GetProgramParameterdvNV GET_GetProgramParameterdvNV(struct _glapi_table *disp) {
9600 return (_glptr_GetProgramParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterdvNV));
9601 }
9602
9603 static inline void SET_GetProgramParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLdouble *)) {
9604 SET_by_offset(disp, _gloffset_GetProgramParameterdvNV, fn);
9605 }
9606
9607 typedef void (GLAPIENTRYP _glptr_GetProgramParameterfvNV)(GLenum, GLuint, GLenum, GLfloat *);
9608 #define CALL_GetProgramParameterfvNV(disp, parameters) \
9609 (* GET_GetProgramParameterfvNV(disp)) parameters
9610 static inline _glptr_GetProgramParameterfvNV GET_GetProgramParameterfvNV(struct _glapi_table *disp) {
9611 return (_glptr_GetProgramParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterfvNV));
9612 }
9613
9614 static inline void SET_GetProgramParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLfloat *)) {
9615 SET_by_offset(disp, _gloffset_GetProgramParameterfvNV, fn);
9616 }
9617
9618 typedef void (GLAPIENTRYP _glptr_GetProgramStringNV)(GLuint, GLenum, GLubyte *);
9619 #define CALL_GetProgramStringNV(disp, parameters) \
9620 (* GET_GetProgramStringNV(disp)) parameters
9621 static inline _glptr_GetProgramStringNV GET_GetProgramStringNV(struct _glapi_table *disp) {
9622 return (_glptr_GetProgramStringNV) (GET_by_offset(disp, _gloffset_GetProgramStringNV));
9623 }
9624
9625 static inline void SET_GetProgramStringNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLubyte *)) {
9626 SET_by_offset(disp, _gloffset_GetProgramStringNV, fn);
9627 }
9628
9629 typedef void (GLAPIENTRYP _glptr_GetProgramivNV)(GLuint, GLenum, GLint *);
9630 #define CALL_GetProgramivNV(disp, parameters) \
9631 (* GET_GetProgramivNV(disp)) parameters
9632 static inline _glptr_GetProgramivNV GET_GetProgramivNV(struct _glapi_table *disp) {
9633 return (_glptr_GetProgramivNV) (GET_by_offset(disp, _gloffset_GetProgramivNV));
9634 }
9635
9636 static inline void SET_GetProgramivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
9637 SET_by_offset(disp, _gloffset_GetProgramivNV, fn);
9638 }
9639
9640 typedef void (GLAPIENTRYP _glptr_GetTrackMatrixivNV)(GLenum, GLuint, GLenum, GLint *);
9641 #define CALL_GetTrackMatrixivNV(disp, parameters) \
9642 (* GET_GetTrackMatrixivNV(disp)) parameters
9643 static inline _glptr_GetTrackMatrixivNV GET_GetTrackMatrixivNV(struct _glapi_table *disp) {
9644 return (_glptr_GetTrackMatrixivNV) (GET_by_offset(disp, _gloffset_GetTrackMatrixivNV));
9645 }
9646
9647 static inline void SET_GetTrackMatrixivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
9648 SET_by_offset(disp, _gloffset_GetTrackMatrixivNV, fn);
9649 }
9650
9651 typedef void (GLAPIENTRYP _glptr_GetVertexAttribPointervNV)(GLuint, GLenum, GLvoid **);
9652 #define CALL_GetVertexAttribPointervNV(disp, parameters) \
9653 (* GET_GetVertexAttribPointervNV(disp)) parameters
9654 static inline _glptr_GetVertexAttribPointervNV GET_GetVertexAttribPointervNV(struct _glapi_table *disp) {
9655 return (_glptr_GetVertexAttribPointervNV) (GET_by_offset(disp, _gloffset_GetVertexAttribPointervNV));
9656 }
9657
9658 static inline void SET_GetVertexAttribPointervNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLvoid **)) {
9659 SET_by_offset(disp, _gloffset_GetVertexAttribPointervNV, fn);
9660 }
9661
9662 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvNV)(GLuint, GLenum, GLdouble *);
9663 #define CALL_GetVertexAttribdvNV(disp, parameters) \
9664 (* GET_GetVertexAttribdvNV(disp)) parameters
9665 static inline _glptr_GetVertexAttribdvNV GET_GetVertexAttribdvNV(struct _glapi_table *disp) {
9666 return (_glptr_GetVertexAttribdvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribdvNV));
9667 }
9668
9669 static inline void SET_GetVertexAttribdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
9670 SET_by_offset(disp, _gloffset_GetVertexAttribdvNV, fn);
9671 }
9672
9673 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvNV)(GLuint, GLenum, GLfloat *);
9674 #define CALL_GetVertexAttribfvNV(disp, parameters) \
9675 (* GET_GetVertexAttribfvNV(disp)) parameters
9676 static inline _glptr_GetVertexAttribfvNV GET_GetVertexAttribfvNV(struct _glapi_table *disp) {
9677 return (_glptr_GetVertexAttribfvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribfvNV));
9678 }
9679
9680 static inline void SET_GetVertexAttribfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
9681 SET_by_offset(disp, _gloffset_GetVertexAttribfvNV, fn);
9682 }
9683
9684 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivNV)(GLuint, GLenum, GLint *);
9685 #define CALL_GetVertexAttribivNV(disp, parameters) \
9686 (* GET_GetVertexAttribivNV(disp)) parameters
9687 static inline _glptr_GetVertexAttribivNV GET_GetVertexAttribivNV(struct _glapi_table *disp) {
9688 return (_glptr_GetVertexAttribivNV) (GET_by_offset(disp, _gloffset_GetVertexAttribivNV));
9689 }
9690
9691 static inline void SET_GetVertexAttribivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
9692 SET_by_offset(disp, _gloffset_GetVertexAttribivNV, fn);
9693 }
9694
9695 typedef GLboolean (GLAPIENTRYP _glptr_IsProgramNV)(GLuint);
9696 #define CALL_IsProgramNV(disp, parameters) \
9697 (* GET_IsProgramNV(disp)) parameters
9698 static inline _glptr_IsProgramNV GET_IsProgramNV(struct _glapi_table *disp) {
9699 return (_glptr_IsProgramNV) (GET_by_offset(disp, _gloffset_IsProgramNV));
9700 }
9701
9702 static inline void SET_IsProgramNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
9703 SET_by_offset(disp, _gloffset_IsProgramNV, fn);
9704 }
9705
9706 typedef void (GLAPIENTRYP _glptr_LoadProgramNV)(GLenum, GLuint, GLsizei, const GLubyte *);
9707 #define CALL_LoadProgramNV(disp, parameters) \
9708 (* GET_LoadProgramNV(disp)) parameters
9709 static inline _glptr_LoadProgramNV GET_LoadProgramNV(struct _glapi_table *disp) {
9710 return (_glptr_LoadProgramNV) (GET_by_offset(disp, _gloffset_LoadProgramNV));
9711 }
9712
9713 static inline void SET_LoadProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLubyte *)) {
9714 SET_by_offset(disp, _gloffset_LoadProgramNV, fn);
9715 }
9716
9717 typedef void (GLAPIENTRYP _glptr_ProgramParameters4dvNV)(GLenum, GLuint, GLsizei, const GLdouble *);
9718 #define CALL_ProgramParameters4dvNV(disp, parameters) \
9719 (* GET_ProgramParameters4dvNV(disp)) parameters
9720 static inline _glptr_ProgramParameters4dvNV GET_ProgramParameters4dvNV(struct _glapi_table *disp) {
9721 return (_glptr_ProgramParameters4dvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4dvNV));
9722 }
9723
9724 static inline void SET_ProgramParameters4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLdouble *)) {
9725 SET_by_offset(disp, _gloffset_ProgramParameters4dvNV, fn);
9726 }
9727
9728 typedef void (GLAPIENTRYP _glptr_ProgramParameters4fvNV)(GLenum, GLuint, GLsizei, const GLfloat *);
9729 #define CALL_ProgramParameters4fvNV(disp, parameters) \
9730 (* GET_ProgramParameters4fvNV(disp)) parameters
9731 static inline _glptr_ProgramParameters4fvNV GET_ProgramParameters4fvNV(struct _glapi_table *disp) {
9732 return (_glptr_ProgramParameters4fvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4fvNV));
9733 }
9734
9735 static inline void SET_ProgramParameters4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
9736 SET_by_offset(disp, _gloffset_ProgramParameters4fvNV, fn);
9737 }
9738
9739 typedef void (GLAPIENTRYP _glptr_RequestResidentProgramsNV)(GLsizei, const GLuint *);
9740 #define CALL_RequestResidentProgramsNV(disp, parameters) \
9741 (* GET_RequestResidentProgramsNV(disp)) parameters
9742 static inline _glptr_RequestResidentProgramsNV GET_RequestResidentProgramsNV(struct _glapi_table *disp) {
9743 return (_glptr_RequestResidentProgramsNV) (GET_by_offset(disp, _gloffset_RequestResidentProgramsNV));
9744 }
9745
9746 static inline void SET_RequestResidentProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
9747 SET_by_offset(disp, _gloffset_RequestResidentProgramsNV, fn);
9748 }
9749
9750 typedef void (GLAPIENTRYP _glptr_TrackMatrixNV)(GLenum, GLuint, GLenum, GLenum);
9751 #define CALL_TrackMatrixNV(disp, parameters) \
9752 (* GET_TrackMatrixNV(disp)) parameters
9753 static inline _glptr_TrackMatrixNV GET_TrackMatrixNV(struct _glapi_table *disp) {
9754 return (_glptr_TrackMatrixNV) (GET_by_offset(disp, _gloffset_TrackMatrixNV));
9755 }
9756
9757 static inline void SET_TrackMatrixNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLenum)) {
9758 SET_by_offset(disp, _gloffset_TrackMatrixNV, fn);
9759 }
9760
9761 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dNV)(GLuint, GLdouble);
9762 #define CALL_VertexAttrib1dNV(disp, parameters) \
9763 (* GET_VertexAttrib1dNV(disp)) parameters
9764 static inline _glptr_VertexAttrib1dNV GET_VertexAttrib1dNV(struct _glapi_table *disp) {
9765 return (_glptr_VertexAttrib1dNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dNV));
9766 }
9767
9768 static inline void SET_VertexAttrib1dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
9769 SET_by_offset(disp, _gloffset_VertexAttrib1dNV, fn);
9770 }
9771
9772 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvNV)(GLuint, const GLdouble *);
9773 #define CALL_VertexAttrib1dvNV(disp, parameters) \
9774 (* GET_VertexAttrib1dvNV(disp)) parameters
9775 static inline _glptr_VertexAttrib1dvNV GET_VertexAttrib1dvNV(struct _glapi_table *disp) {
9776 return (_glptr_VertexAttrib1dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dvNV));
9777 }
9778
9779 static inline void SET_VertexAttrib1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
9780 SET_by_offset(disp, _gloffset_VertexAttrib1dvNV, fn);
9781 }
9782
9783 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fNV)(GLuint, GLfloat);
9784 #define CALL_VertexAttrib1fNV(disp, parameters) \
9785 (* GET_VertexAttrib1fNV(disp)) parameters
9786 static inline _glptr_VertexAttrib1fNV GET_VertexAttrib1fNV(struct _glapi_table *disp) {
9787 return (_glptr_VertexAttrib1fNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fNV));
9788 }
9789
9790 static inline void SET_VertexAttrib1fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
9791 SET_by_offset(disp, _gloffset_VertexAttrib1fNV, fn);
9792 }
9793
9794 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvNV)(GLuint, const GLfloat *);
9795 #define CALL_VertexAttrib1fvNV(disp, parameters) \
9796 (* GET_VertexAttrib1fvNV(disp)) parameters
9797 static inline _glptr_VertexAttrib1fvNV GET_VertexAttrib1fvNV(struct _glapi_table *disp) {
9798 return (_glptr_VertexAttrib1fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fvNV));
9799 }
9800
9801 static inline void SET_VertexAttrib1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
9802 SET_by_offset(disp, _gloffset_VertexAttrib1fvNV, fn);
9803 }
9804
9805 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sNV)(GLuint, GLshort);
9806 #define CALL_VertexAttrib1sNV(disp, parameters) \
9807 (* GET_VertexAttrib1sNV(disp)) parameters
9808 static inline _glptr_VertexAttrib1sNV GET_VertexAttrib1sNV(struct _glapi_table *disp) {
9809 return (_glptr_VertexAttrib1sNV) (GET_by_offset(disp, _gloffset_VertexAttrib1sNV));
9810 }
9811
9812 static inline void SET_VertexAttrib1sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
9813 SET_by_offset(disp, _gloffset_VertexAttrib1sNV, fn);
9814 }
9815
9816 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svNV)(GLuint, const GLshort *);
9817 #define CALL_VertexAttrib1svNV(disp, parameters) \
9818 (* GET_VertexAttrib1svNV(disp)) parameters
9819 static inline _glptr_VertexAttrib1svNV GET_VertexAttrib1svNV(struct _glapi_table *disp) {
9820 return (_glptr_VertexAttrib1svNV) (GET_by_offset(disp, _gloffset_VertexAttrib1svNV));
9821 }
9822
9823 static inline void SET_VertexAttrib1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
9824 SET_by_offset(disp, _gloffset_VertexAttrib1svNV, fn);
9825 }
9826
9827 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dNV)(GLuint, GLdouble, GLdouble);
9828 #define CALL_VertexAttrib2dNV(disp, parameters) \
9829 (* GET_VertexAttrib2dNV(disp)) parameters
9830 static inline _glptr_VertexAttrib2dNV GET_VertexAttrib2dNV(struct _glapi_table *disp) {
9831 return (_glptr_VertexAttrib2dNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dNV));
9832 }
9833
9834 static inline void SET_VertexAttrib2dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
9835 SET_by_offset(disp, _gloffset_VertexAttrib2dNV, fn);
9836 }
9837
9838 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvNV)(GLuint, const GLdouble *);
9839 #define CALL_VertexAttrib2dvNV(disp, parameters) \
9840 (* GET_VertexAttrib2dvNV(disp)) parameters
9841 static inline _glptr_VertexAttrib2dvNV GET_VertexAttrib2dvNV(struct _glapi_table *disp) {
9842 return (_glptr_VertexAttrib2dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dvNV));
9843 }
9844
9845 static inline void SET_VertexAttrib2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
9846 SET_by_offset(disp, _gloffset_VertexAttrib2dvNV, fn);
9847 }
9848
9849 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fNV)(GLuint, GLfloat, GLfloat);
9850 #define CALL_VertexAttrib2fNV(disp, parameters) \
9851 (* GET_VertexAttrib2fNV(disp)) parameters
9852 static inline _glptr_VertexAttrib2fNV GET_VertexAttrib2fNV(struct _glapi_table *disp) {
9853 return (_glptr_VertexAttrib2fNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fNV));
9854 }
9855
9856 static inline void SET_VertexAttrib2fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
9857 SET_by_offset(disp, _gloffset_VertexAttrib2fNV, fn);
9858 }
9859
9860 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvNV)(GLuint, const GLfloat *);
9861 #define CALL_VertexAttrib2fvNV(disp, parameters) \
9862 (* GET_VertexAttrib2fvNV(disp)) parameters
9863 static inline _glptr_VertexAttrib2fvNV GET_VertexAttrib2fvNV(struct _glapi_table *disp) {
9864 return (_glptr_VertexAttrib2fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fvNV));
9865 }
9866
9867 static inline void SET_VertexAttrib2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
9868 SET_by_offset(disp, _gloffset_VertexAttrib2fvNV, fn);
9869 }
9870
9871 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sNV)(GLuint, GLshort, GLshort);
9872 #define CALL_VertexAttrib2sNV(disp, parameters) \
9873 (* GET_VertexAttrib2sNV(disp)) parameters
9874 static inline _glptr_VertexAttrib2sNV GET_VertexAttrib2sNV(struct _glapi_table *disp) {
9875 return (_glptr_VertexAttrib2sNV) (GET_by_offset(disp, _gloffset_VertexAttrib2sNV));
9876 }
9877
9878 static inline void SET_VertexAttrib2sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
9879 SET_by_offset(disp, _gloffset_VertexAttrib2sNV, fn);
9880 }
9881
9882 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svNV)(GLuint, const GLshort *);
9883 #define CALL_VertexAttrib2svNV(disp, parameters) \
9884 (* GET_VertexAttrib2svNV(disp)) parameters
9885 static inline _glptr_VertexAttrib2svNV GET_VertexAttrib2svNV(struct _glapi_table *disp) {
9886 return (_glptr_VertexAttrib2svNV) (GET_by_offset(disp, _gloffset_VertexAttrib2svNV));
9887 }
9888
9889 static inline void SET_VertexAttrib2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
9890 SET_by_offset(disp, _gloffset_VertexAttrib2svNV, fn);
9891 }
9892
9893 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dNV)(GLuint, GLdouble, GLdouble, GLdouble);
9894 #define CALL_VertexAttrib3dNV(disp, parameters) \
9895 (* GET_VertexAttrib3dNV(disp)) parameters
9896 static inline _glptr_VertexAttrib3dNV GET_VertexAttrib3dNV(struct _glapi_table *disp) {
9897 return (_glptr_VertexAttrib3dNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dNV));
9898 }
9899
9900 static inline void SET_VertexAttrib3dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
9901 SET_by_offset(disp, _gloffset_VertexAttrib3dNV, fn);
9902 }
9903
9904 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvNV)(GLuint, const GLdouble *);
9905 #define CALL_VertexAttrib3dvNV(disp, parameters) \
9906 (* GET_VertexAttrib3dvNV(disp)) parameters
9907 static inline _glptr_VertexAttrib3dvNV GET_VertexAttrib3dvNV(struct _glapi_table *disp) {
9908 return (_glptr_VertexAttrib3dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dvNV));
9909 }
9910
9911 static inline void SET_VertexAttrib3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
9912 SET_by_offset(disp, _gloffset_VertexAttrib3dvNV, fn);
9913 }
9914
9915 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fNV)(GLuint, GLfloat, GLfloat, GLfloat);
9916 #define CALL_VertexAttrib3fNV(disp, parameters) \
9917 (* GET_VertexAttrib3fNV(disp)) parameters
9918 static inline _glptr_VertexAttrib3fNV GET_VertexAttrib3fNV(struct _glapi_table *disp) {
9919 return (_glptr_VertexAttrib3fNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fNV));
9920 }
9921
9922 static inline void SET_VertexAttrib3fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
9923 SET_by_offset(disp, _gloffset_VertexAttrib3fNV, fn);
9924 }
9925
9926 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvNV)(GLuint, const GLfloat *);
9927 #define CALL_VertexAttrib3fvNV(disp, parameters) \
9928 (* GET_VertexAttrib3fvNV(disp)) parameters
9929 static inline _glptr_VertexAttrib3fvNV GET_VertexAttrib3fvNV(struct _glapi_table *disp) {
9930 return (_glptr_VertexAttrib3fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fvNV));
9931 }
9932
9933 static inline void SET_VertexAttrib3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
9934 SET_by_offset(disp, _gloffset_VertexAttrib3fvNV, fn);
9935 }
9936
9937 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sNV)(GLuint, GLshort, GLshort, GLshort);
9938 #define CALL_VertexAttrib3sNV(disp, parameters) \
9939 (* GET_VertexAttrib3sNV(disp)) parameters
9940 static inline _glptr_VertexAttrib3sNV GET_VertexAttrib3sNV(struct _glapi_table *disp) {
9941 return (_glptr_VertexAttrib3sNV) (GET_by_offset(disp, _gloffset_VertexAttrib3sNV));
9942 }
9943
9944 static inline void SET_VertexAttrib3sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
9945 SET_by_offset(disp, _gloffset_VertexAttrib3sNV, fn);
9946 }
9947
9948 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svNV)(GLuint, const GLshort *);
9949 #define CALL_VertexAttrib3svNV(disp, parameters) \
9950 (* GET_VertexAttrib3svNV(disp)) parameters
9951 static inline _glptr_VertexAttrib3svNV GET_VertexAttrib3svNV(struct _glapi_table *disp) {
9952 return (_glptr_VertexAttrib3svNV) (GET_by_offset(disp, _gloffset_VertexAttrib3svNV));
9953 }
9954
9955 static inline void SET_VertexAttrib3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
9956 SET_by_offset(disp, _gloffset_VertexAttrib3svNV, fn);
9957 }
9958
9959 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dNV)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
9960 #define CALL_VertexAttrib4dNV(disp, parameters) \
9961 (* GET_VertexAttrib4dNV(disp)) parameters
9962 static inline _glptr_VertexAttrib4dNV GET_VertexAttrib4dNV(struct _glapi_table *disp) {
9963 return (_glptr_VertexAttrib4dNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dNV));
9964 }
9965
9966 static inline void SET_VertexAttrib4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
9967 SET_by_offset(disp, _gloffset_VertexAttrib4dNV, fn);
9968 }
9969
9970 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvNV)(GLuint, const GLdouble *);
9971 #define CALL_VertexAttrib4dvNV(disp, parameters) \
9972 (* GET_VertexAttrib4dvNV(disp)) parameters
9973 static inline _glptr_VertexAttrib4dvNV GET_VertexAttrib4dvNV(struct _glapi_table *disp) {
9974 return (_glptr_VertexAttrib4dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dvNV));
9975 }
9976
9977 static inline void SET_VertexAttrib4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
9978 SET_by_offset(disp, _gloffset_VertexAttrib4dvNV, fn);
9979 }
9980
9981 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fNV)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
9982 #define CALL_VertexAttrib4fNV(disp, parameters) \
9983 (* GET_VertexAttrib4fNV(disp)) parameters
9984 static inline _glptr_VertexAttrib4fNV GET_VertexAttrib4fNV(struct _glapi_table *disp) {
9985 return (_glptr_VertexAttrib4fNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fNV));
9986 }
9987
9988 static inline void SET_VertexAttrib4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
9989 SET_by_offset(disp, _gloffset_VertexAttrib4fNV, fn);
9990 }
9991
9992 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvNV)(GLuint, const GLfloat *);
9993 #define CALL_VertexAttrib4fvNV(disp, parameters) \
9994 (* GET_VertexAttrib4fvNV(disp)) parameters
9995 static inline _glptr_VertexAttrib4fvNV GET_VertexAttrib4fvNV(struct _glapi_table *disp) {
9996 return (_glptr_VertexAttrib4fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fvNV));
9997 }
9998
9999 static inline void SET_VertexAttrib4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
10000 SET_by_offset(disp, _gloffset_VertexAttrib4fvNV, fn);
10001 }
10002
10003 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sNV)(GLuint, GLshort, GLshort, GLshort, GLshort);
10004 #define CALL_VertexAttrib4sNV(disp, parameters) \
10005 (* GET_VertexAttrib4sNV(disp)) parameters
10006 static inline _glptr_VertexAttrib4sNV GET_VertexAttrib4sNV(struct _glapi_table *disp) {
10007 return (_glptr_VertexAttrib4sNV) (GET_by_offset(disp, _gloffset_VertexAttrib4sNV));
10008 }
10009
10010 static inline void SET_VertexAttrib4sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
10011 SET_by_offset(disp, _gloffset_VertexAttrib4sNV, fn);
10012 }
10013
10014 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svNV)(GLuint, const GLshort *);
10015 #define CALL_VertexAttrib4svNV(disp, parameters) \
10016 (* GET_VertexAttrib4svNV(disp)) parameters
10017 static inline _glptr_VertexAttrib4svNV GET_VertexAttrib4svNV(struct _glapi_table *disp) {
10018 return (_glptr_VertexAttrib4svNV) (GET_by_offset(disp, _gloffset_VertexAttrib4svNV));
10019 }
10020
10021 static inline void SET_VertexAttrib4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
10022 SET_by_offset(disp, _gloffset_VertexAttrib4svNV, fn);
10023 }
10024
10025 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubNV)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
10026 #define CALL_VertexAttrib4ubNV(disp, parameters) \
10027 (* GET_VertexAttrib4ubNV(disp)) parameters
10028 static inline _glptr_VertexAttrib4ubNV GET_VertexAttrib4ubNV(struct _glapi_table *disp) {
10029 return (_glptr_VertexAttrib4ubNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubNV));
10030 }
10031
10032 static inline void SET_VertexAttrib4ubNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
10033 SET_by_offset(disp, _gloffset_VertexAttrib4ubNV, fn);
10034 }
10035
10036 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvNV)(GLuint, const GLubyte *);
10037 #define CALL_VertexAttrib4ubvNV(disp, parameters) \
10038 (* GET_VertexAttrib4ubvNV(disp)) parameters
10039 static inline _glptr_VertexAttrib4ubvNV GET_VertexAttrib4ubvNV(struct _glapi_table *disp) {
10040 return (_glptr_VertexAttrib4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvNV));
10041 }
10042
10043 static inline void SET_VertexAttrib4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
10044 SET_by_offset(disp, _gloffset_VertexAttrib4ubvNV, fn);
10045 }
10046
10047 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerNV)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
10048 #define CALL_VertexAttribPointerNV(disp, parameters) \
10049 (* GET_VertexAttribPointerNV(disp)) parameters
10050 static inline _glptr_VertexAttribPointerNV GET_VertexAttribPointerNV(struct _glapi_table *disp) {
10051 return (_glptr_VertexAttribPointerNV) (GET_by_offset(disp, _gloffset_VertexAttribPointerNV));
10052 }
10053
10054 static inline void SET_VertexAttribPointerNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
10055 SET_by_offset(disp, _gloffset_VertexAttribPointerNV, fn);
10056 }
10057
10058 typedef void (GLAPIENTRYP _glptr_VertexAttribs1dvNV)(GLuint, GLsizei, const GLdouble *);
10059 #define CALL_VertexAttribs1dvNV(disp, parameters) \
10060 (* GET_VertexAttribs1dvNV(disp)) parameters
10061 static inline _glptr_VertexAttribs1dvNV GET_VertexAttribs1dvNV(struct _glapi_table *disp) {
10062 return (_glptr_VertexAttribs1dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1dvNV));
10063 }
10064
10065 static inline void SET_VertexAttribs1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
10066 SET_by_offset(disp, _gloffset_VertexAttribs1dvNV, fn);
10067 }
10068
10069 typedef void (GLAPIENTRYP _glptr_VertexAttribs1fvNV)(GLuint, GLsizei, const GLfloat *);
10070 #define CALL_VertexAttribs1fvNV(disp, parameters) \
10071 (* GET_VertexAttribs1fvNV(disp)) parameters
10072 static inline _glptr_VertexAttribs1fvNV GET_VertexAttribs1fvNV(struct _glapi_table *disp) {
10073 return (_glptr_VertexAttribs1fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1fvNV));
10074 }
10075
10076 static inline void SET_VertexAttribs1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
10077 SET_by_offset(disp, _gloffset_VertexAttribs1fvNV, fn);
10078 }
10079
10080 typedef void (GLAPIENTRYP _glptr_VertexAttribs1svNV)(GLuint, GLsizei, const GLshort *);
10081 #define CALL_VertexAttribs1svNV(disp, parameters) \
10082 (* GET_VertexAttribs1svNV(disp)) parameters
10083 static inline _glptr_VertexAttribs1svNV GET_VertexAttribs1svNV(struct _glapi_table *disp) {
10084 return (_glptr_VertexAttribs1svNV) (GET_by_offset(disp, _gloffset_VertexAttribs1svNV));
10085 }
10086
10087 static inline void SET_VertexAttribs1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
10088 SET_by_offset(disp, _gloffset_VertexAttribs1svNV, fn);
10089 }
10090
10091 typedef void (GLAPIENTRYP _glptr_VertexAttribs2dvNV)(GLuint, GLsizei, const GLdouble *);
10092 #define CALL_VertexAttribs2dvNV(disp, parameters) \
10093 (* GET_VertexAttribs2dvNV(disp)) parameters
10094 static inline _glptr_VertexAttribs2dvNV GET_VertexAttribs2dvNV(struct _glapi_table *disp) {
10095 return (_glptr_VertexAttribs2dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2dvNV));
10096 }
10097
10098 static inline void SET_VertexAttribs2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
10099 SET_by_offset(disp, _gloffset_VertexAttribs2dvNV, fn);
10100 }
10101
10102 typedef void (GLAPIENTRYP _glptr_VertexAttribs2fvNV)(GLuint, GLsizei, const GLfloat *);
10103 #define CALL_VertexAttribs2fvNV(disp, parameters) \
10104 (* GET_VertexAttribs2fvNV(disp)) parameters
10105 static inline _glptr_VertexAttribs2fvNV GET_VertexAttribs2fvNV(struct _glapi_table *disp) {
10106 return (_glptr_VertexAttribs2fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2fvNV));
10107 }
10108
10109 static inline void SET_VertexAttribs2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
10110 SET_by_offset(disp, _gloffset_VertexAttribs2fvNV, fn);
10111 }
10112
10113 typedef void (GLAPIENTRYP _glptr_VertexAttribs2svNV)(GLuint, GLsizei, const GLshort *);
10114 #define CALL_VertexAttribs2svNV(disp, parameters) \
10115 (* GET_VertexAttribs2svNV(disp)) parameters
10116 static inline _glptr_VertexAttribs2svNV GET_VertexAttribs2svNV(struct _glapi_table *disp) {
10117 return (_glptr_VertexAttribs2svNV) (GET_by_offset(disp, _gloffset_VertexAttribs2svNV));
10118 }
10119
10120 static inline void SET_VertexAttribs2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
10121 SET_by_offset(disp, _gloffset_VertexAttribs2svNV, fn);
10122 }
10123
10124 typedef void (GLAPIENTRYP _glptr_VertexAttribs3dvNV)(GLuint, GLsizei, const GLdouble *);
10125 #define CALL_VertexAttribs3dvNV(disp, parameters) \
10126 (* GET_VertexAttribs3dvNV(disp)) parameters
10127 static inline _glptr_VertexAttribs3dvNV GET_VertexAttribs3dvNV(struct _glapi_table *disp) {
10128 return (_glptr_VertexAttribs3dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3dvNV));
10129 }
10130
10131 static inline void SET_VertexAttribs3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
10132 SET_by_offset(disp, _gloffset_VertexAttribs3dvNV, fn);
10133 }
10134
10135 typedef void (GLAPIENTRYP _glptr_VertexAttribs3fvNV)(GLuint, GLsizei, const GLfloat *);
10136 #define CALL_VertexAttribs3fvNV(disp, parameters) \
10137 (* GET_VertexAttribs3fvNV(disp)) parameters
10138 static inline _glptr_VertexAttribs3fvNV GET_VertexAttribs3fvNV(struct _glapi_table *disp) {
10139 return (_glptr_VertexAttribs3fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3fvNV));
10140 }
10141
10142 static inline void SET_VertexAttribs3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
10143 SET_by_offset(disp, _gloffset_VertexAttribs3fvNV, fn);
10144 }
10145
10146 typedef void (GLAPIENTRYP _glptr_VertexAttribs3svNV)(GLuint, GLsizei, const GLshort *);
10147 #define CALL_VertexAttribs3svNV(disp, parameters) \
10148 (* GET_VertexAttribs3svNV(disp)) parameters
10149 static inline _glptr_VertexAttribs3svNV GET_VertexAttribs3svNV(struct _glapi_table *disp) {
10150 return (_glptr_VertexAttribs3svNV) (GET_by_offset(disp, _gloffset_VertexAttribs3svNV));
10151 }
10152
10153 static inline void SET_VertexAttribs3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
10154 SET_by_offset(disp, _gloffset_VertexAttribs3svNV, fn);
10155 }
10156
10157 typedef void (GLAPIENTRYP _glptr_VertexAttribs4dvNV)(GLuint, GLsizei, const GLdouble *);
10158 #define CALL_VertexAttribs4dvNV(disp, parameters) \
10159 (* GET_VertexAttribs4dvNV(disp)) parameters
10160 static inline _glptr_VertexAttribs4dvNV GET_VertexAttribs4dvNV(struct _glapi_table *disp) {
10161 return (_glptr_VertexAttribs4dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4dvNV));
10162 }
10163
10164 static inline void SET_VertexAttribs4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
10165 SET_by_offset(disp, _gloffset_VertexAttribs4dvNV, fn);
10166 }
10167
10168 typedef void (GLAPIENTRYP _glptr_VertexAttribs4fvNV)(GLuint, GLsizei, const GLfloat *);
10169 #define CALL_VertexAttribs4fvNV(disp, parameters) \
10170 (* GET_VertexAttribs4fvNV(disp)) parameters
10171 static inline _glptr_VertexAttribs4fvNV GET_VertexAttribs4fvNV(struct _glapi_table *disp) {
10172 return (_glptr_VertexAttribs4fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4fvNV));
10173 }
10174
10175 static inline void SET_VertexAttribs4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
10176 SET_by_offset(disp, _gloffset_VertexAttribs4fvNV, fn);
10177 }
10178
10179 typedef void (GLAPIENTRYP _glptr_VertexAttribs4svNV)(GLuint, GLsizei, const GLshort *);
10180 #define CALL_VertexAttribs4svNV(disp, parameters) \
10181 (* GET_VertexAttribs4svNV(disp)) parameters
10182 static inline _glptr_VertexAttribs4svNV GET_VertexAttribs4svNV(struct _glapi_table *disp) {
10183 return (_glptr_VertexAttribs4svNV) (GET_by_offset(disp, _gloffset_VertexAttribs4svNV));
10184 }
10185
10186 static inline void SET_VertexAttribs4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
10187 SET_by_offset(disp, _gloffset_VertexAttribs4svNV, fn);
10188 }
10189
10190 typedef void (GLAPIENTRYP _glptr_VertexAttribs4ubvNV)(GLuint, GLsizei, const GLubyte *);
10191 #define CALL_VertexAttribs4ubvNV(disp, parameters) \
10192 (* GET_VertexAttribs4ubvNV(disp)) parameters
10193 static inline _glptr_VertexAttribs4ubvNV GET_VertexAttribs4ubvNV(struct _glapi_table *disp) {
10194 return (_glptr_VertexAttribs4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4ubvNV));
10195 }
10196
10197 static inline void SET_VertexAttribs4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *)) {
10198 SET_by_offset(disp, _gloffset_VertexAttribs4ubvNV, fn);
10199 }
10200
10201 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterfvATI)(GLenum, GLfloat *);
10202 #define CALL_GetTexBumpParameterfvATI(disp, parameters) \
10203 (* GET_GetTexBumpParameterfvATI(disp)) parameters
10204 static inline _glptr_GetTexBumpParameterfvATI GET_GetTexBumpParameterfvATI(struct _glapi_table *disp) {
10205 return (_glptr_GetTexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI));
10206 }
10207
10208 static inline void SET_GetTexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
10209 SET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI, fn);
10210 }
10211
10212 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterivATI)(GLenum, GLint *);
10213 #define CALL_GetTexBumpParameterivATI(disp, parameters) \
10214 (* GET_GetTexBumpParameterivATI(disp)) parameters
10215 static inline _glptr_GetTexBumpParameterivATI GET_GetTexBumpParameterivATI(struct _glapi_table *disp) {
10216 return (_glptr_GetTexBumpParameterivATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterivATI));
10217 }
10218
10219 static inline void SET_GetTexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
10220 SET_by_offset(disp, _gloffset_GetTexBumpParameterivATI, fn);
10221 }
10222
10223 typedef void (GLAPIENTRYP _glptr_TexBumpParameterfvATI)(GLenum, const GLfloat *);
10224 #define CALL_TexBumpParameterfvATI(disp, parameters) \
10225 (* GET_TexBumpParameterfvATI(disp)) parameters
10226 static inline _glptr_TexBumpParameterfvATI GET_TexBumpParameterfvATI(struct _glapi_table *disp) {
10227 return (_glptr_TexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_TexBumpParameterfvATI));
10228 }
10229
10230 static inline void SET_TexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
10231 SET_by_offset(disp, _gloffset_TexBumpParameterfvATI, fn);
10232 }
10233
10234 typedef void (GLAPIENTRYP _glptr_TexBumpParameterivATI)(GLenum, const GLint *);
10235 #define CALL_TexBumpParameterivATI(disp, parameters) \
10236 (* GET_TexBumpParameterivATI(disp)) parameters
10237 static inline _glptr_TexBumpParameterivATI GET_TexBumpParameterivATI(struct _glapi_table *disp) {
10238 return (_glptr_TexBumpParameterivATI) (GET_by_offset(disp, _gloffset_TexBumpParameterivATI));
10239 }
10240
10241 static inline void SET_TexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
10242 SET_by_offset(disp, _gloffset_TexBumpParameterivATI, fn);
10243 }
10244
10245 typedef void (GLAPIENTRYP _glptr_PointParameteriNV)(GLenum, GLint);
10246 #define CALL_PointParameteriNV(disp, parameters) \
10247 (* GET_PointParameteriNV(disp)) parameters
10248 static inline _glptr_PointParameteriNV GET_PointParameteriNV(struct _glapi_table *disp) {
10249 return (_glptr_PointParameteriNV) (GET_by_offset(disp, _gloffset_PointParameteriNV));
10250 }
10251
10252 static inline void SET_PointParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
10253 SET_by_offset(disp, _gloffset_PointParameteriNV, fn);
10254 }
10255
10256 typedef void (GLAPIENTRYP _glptr_PointParameterivNV)(GLenum, const GLint *);
10257 #define CALL_PointParameterivNV(disp, parameters) \
10258 (* GET_PointParameterivNV(disp)) parameters
10259 static inline _glptr_PointParameterivNV GET_PointParameterivNV(struct _glapi_table *disp) {
10260 return (_glptr_PointParameterivNV) (GET_by_offset(disp, _gloffset_PointParameterivNV));
10261 }
10262
10263 static inline void SET_PointParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
10264 SET_by_offset(disp, _gloffset_PointParameterivNV, fn);
10265 }
10266
10267 typedef void (GLAPIENTRYP _glptr_ActiveStencilFaceEXT)(GLenum);
10268 #define CALL_ActiveStencilFaceEXT(disp, parameters) \
10269 (* GET_ActiveStencilFaceEXT(disp)) parameters
10270 static inline _glptr_ActiveStencilFaceEXT GET_ActiveStencilFaceEXT(struct _glapi_table *disp) {
10271 return (_glptr_ActiveStencilFaceEXT) (GET_by_offset(disp, _gloffset_ActiveStencilFaceEXT));
10272 }
10273
10274 static inline void SET_ActiveStencilFaceEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
10275 SET_by_offset(disp, _gloffset_ActiveStencilFaceEXT, fn);
10276 }
10277
10278 typedef void (GLAPIENTRYP _glptr_BindVertexArrayAPPLE)(GLuint);
10279 #define CALL_BindVertexArrayAPPLE(disp, parameters) \
10280 (* GET_BindVertexArrayAPPLE(disp)) parameters
10281 static inline _glptr_BindVertexArrayAPPLE GET_BindVertexArrayAPPLE(struct _glapi_table *disp) {
10282 return (_glptr_BindVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_BindVertexArrayAPPLE));
10283 }
10284
10285 static inline void SET_BindVertexArrayAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
10286 SET_by_offset(disp, _gloffset_BindVertexArrayAPPLE, fn);
10287 }
10288
10289 typedef void (GLAPIENTRYP _glptr_DeleteVertexArraysAPPLE)(GLsizei, const GLuint *);
10290 #define CALL_DeleteVertexArraysAPPLE(disp, parameters) \
10291 (* GET_DeleteVertexArraysAPPLE(disp)) parameters
10292 static inline _glptr_DeleteVertexArraysAPPLE GET_DeleteVertexArraysAPPLE(struct _glapi_table *disp) {
10293 return (_glptr_DeleteVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE));
10294 }
10295
10296 static inline void SET_DeleteVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
10297 SET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE, fn);
10298 }
10299
10300 typedef void (GLAPIENTRYP _glptr_GenVertexArraysAPPLE)(GLsizei, GLuint *);
10301 #define CALL_GenVertexArraysAPPLE(disp, parameters) \
10302 (* GET_GenVertexArraysAPPLE(disp)) parameters
10303 static inline _glptr_GenVertexArraysAPPLE GET_GenVertexArraysAPPLE(struct _glapi_table *disp) {
10304 return (_glptr_GenVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_GenVertexArraysAPPLE));
10305 }
10306
10307 static inline void SET_GenVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
10308 SET_by_offset(disp, _gloffset_GenVertexArraysAPPLE, fn);
10309 }
10310
10311 typedef GLboolean (GLAPIENTRYP _glptr_IsVertexArrayAPPLE)(GLuint);
10312 #define CALL_IsVertexArrayAPPLE(disp, parameters) \
10313 (* GET_IsVertexArrayAPPLE(disp)) parameters
10314 static inline _glptr_IsVertexArrayAPPLE GET_IsVertexArrayAPPLE(struct _glapi_table *disp) {
10315 return (_glptr_IsVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_IsVertexArrayAPPLE));
10316 }
10317
10318 static inline void SET_IsVertexArrayAPPLE(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
10319 SET_by_offset(disp, _gloffset_IsVertexArrayAPPLE, fn);
10320 }
10321
10322 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterdvNV)(GLuint, GLsizei, const GLubyte *, GLdouble *);
10323 #define CALL_GetProgramNamedParameterdvNV(disp, parameters) \
10324 (* GET_GetProgramNamedParameterdvNV(disp)) parameters
10325 static inline _glptr_GetProgramNamedParameterdvNV GET_GetProgramNamedParameterdvNV(struct _glapi_table *disp) {
10326 return (_glptr_GetProgramNamedParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV));
10327 }
10328
10329 static inline void SET_GetProgramNamedParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble *)) {
10330 SET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV, fn);
10331 }
10332
10333 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterfvNV)(GLuint, GLsizei, const GLubyte *, GLfloat *);
10334 #define CALL_GetProgramNamedParameterfvNV(disp, parameters) \
10335 (* GET_GetProgramNamedParameterfvNV(disp)) parameters
10336 static inline _glptr_GetProgramNamedParameterfvNV GET_GetProgramNamedParameterfvNV(struct _glapi_table *disp) {
10337 return (_glptr_GetProgramNamedParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV));
10338 }
10339
10340 static inline void SET_GetProgramNamedParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat *)) {
10341 SET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV, fn);
10342 }
10343
10344 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dNV)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble);
10345 #define CALL_ProgramNamedParameter4dNV(disp, parameters) \
10346 (* GET_ProgramNamedParameter4dNV(disp)) parameters
10347 static inline _glptr_ProgramNamedParameter4dNV GET_ProgramNamedParameter4dNV(struct _glapi_table *disp) {
10348 return (_glptr_ProgramNamedParameter4dNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV));
10349 }
10350
10351 static inline void SET_ProgramNamedParameter4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble)) {
10352 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV, fn);
10353 }
10354
10355 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dvNV)(GLuint, GLsizei, const GLubyte *, const GLdouble *);
10356 #define CALL_ProgramNamedParameter4dvNV(disp, parameters) \
10357 (* GET_ProgramNamedParameter4dvNV(disp)) parameters
10358 static inline _glptr_ProgramNamedParameter4dvNV GET_ProgramNamedParameter4dvNV(struct _glapi_table *disp) {
10359 return (_glptr_ProgramNamedParameter4dvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV));
10360 }
10361
10362 static inline void SET_ProgramNamedParameter4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLdouble *)) {
10363 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV, fn);
10364 }
10365
10366 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fNV)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat);
10367 #define CALL_ProgramNamedParameter4fNV(disp, parameters) \
10368 (* GET_ProgramNamedParameter4fNV(disp)) parameters
10369 static inline _glptr_ProgramNamedParameter4fNV GET_ProgramNamedParameter4fNV(struct _glapi_table *disp) {
10370 return (_glptr_ProgramNamedParameter4fNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV));
10371 }
10372
10373 static inline void SET_ProgramNamedParameter4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat)) {
10374 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV, fn);
10375 }
10376
10377 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fvNV)(GLuint, GLsizei, const GLubyte *, const GLfloat *);
10378 #define CALL_ProgramNamedParameter4fvNV(disp, parameters) \
10379 (* GET_ProgramNamedParameter4fvNV(disp)) parameters
10380 static inline _glptr_ProgramNamedParameter4fvNV GET_ProgramNamedParameter4fvNV(struct _glapi_table *disp) {
10381 return (_glptr_ProgramNamedParameter4fvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV));
10382 }
10383
10384 static inline void SET_ProgramNamedParameter4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLfloat *)) {
10385 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV, fn);
10386 }
10387
10388 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartIndexNV)(GLuint);
10389 #define CALL_PrimitiveRestartIndexNV(disp, parameters) \
10390 (* GET_PrimitiveRestartIndexNV(disp)) parameters
10391 static inline _glptr_PrimitiveRestartIndexNV GET_PrimitiveRestartIndexNV(struct _glapi_table *disp) {
10392 return (_glptr_PrimitiveRestartIndexNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartIndexNV));
10393 }
10394
10395 static inline void SET_PrimitiveRestartIndexNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
10396 SET_by_offset(disp, _gloffset_PrimitiveRestartIndexNV, fn);
10397 }
10398
10399 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartNV)(void);
10400 #define CALL_PrimitiveRestartNV(disp, parameters) \
10401 (* GET_PrimitiveRestartNV(disp)) parameters
10402 static inline _glptr_PrimitiveRestartNV GET_PrimitiveRestartNV(struct _glapi_table *disp) {
10403 return (_glptr_PrimitiveRestartNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartNV));
10404 }
10405
10406 static inline void SET_PrimitiveRestartNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
10407 SET_by_offset(disp, _gloffset_PrimitiveRestartNV, fn);
10408 }
10409
10410 typedef void (GLAPIENTRYP _glptr_DepthBoundsEXT)(GLclampd, GLclampd);
10411 #define CALL_DepthBoundsEXT(disp, parameters) \
10412 (* GET_DepthBoundsEXT(disp)) parameters
10413 static inline _glptr_DepthBoundsEXT GET_DepthBoundsEXT(struct _glapi_table *disp) {
10414 return (_glptr_DepthBoundsEXT) (GET_by_offset(disp, _gloffset_DepthBoundsEXT));
10415 }
10416
10417 static inline void SET_DepthBoundsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
10418 SET_by_offset(disp, _gloffset_DepthBoundsEXT, fn);
10419 }
10420
10421 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateEXT)(GLenum, GLenum);
10422 #define CALL_BlendEquationSeparateEXT(disp, parameters) \
10423 (* GET_BlendEquationSeparateEXT(disp)) parameters
10424 static inline _glptr_BlendEquationSeparateEXT GET_BlendEquationSeparateEXT(struct _glapi_table *disp) {
10425 return (_glptr_BlendEquationSeparateEXT) (GET_by_offset(disp, _gloffset_BlendEquationSeparateEXT));
10426 }
10427
10428 static inline void SET_BlendEquationSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
10429 SET_by_offset(disp, _gloffset_BlendEquationSeparateEXT, fn);
10430 }
10431
10432 typedef void (GLAPIENTRYP _glptr_BindFramebufferEXT)(GLenum, GLuint);
10433 #define CALL_BindFramebufferEXT(disp, parameters) \
10434 (* GET_BindFramebufferEXT(disp)) parameters
10435 static inline _glptr_BindFramebufferEXT GET_BindFramebufferEXT(struct _glapi_table *disp) {
10436 return (_glptr_BindFramebufferEXT) (GET_by_offset(disp, _gloffset_BindFramebufferEXT));
10437 }
10438
10439 static inline void SET_BindFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
10440 SET_by_offset(disp, _gloffset_BindFramebufferEXT, fn);
10441 }
10442
10443 typedef void (GLAPIENTRYP _glptr_BindRenderbufferEXT)(GLenum, GLuint);
10444 #define CALL_BindRenderbufferEXT(disp, parameters) \
10445 (* GET_BindRenderbufferEXT(disp)) parameters
10446 static inline _glptr_BindRenderbufferEXT GET_BindRenderbufferEXT(struct _glapi_table *disp) {
10447 return (_glptr_BindRenderbufferEXT) (GET_by_offset(disp, _gloffset_BindRenderbufferEXT));
10448 }
10449
10450 static inline void SET_BindRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
10451 SET_by_offset(disp, _gloffset_BindRenderbufferEXT, fn);
10452 }
10453
10454 typedef GLenum (GLAPIENTRYP _glptr_CheckFramebufferStatusEXT)(GLenum);
10455 #define CALL_CheckFramebufferStatusEXT(disp, parameters) \
10456 (* GET_CheckFramebufferStatusEXT(disp)) parameters
10457 static inline _glptr_CheckFramebufferStatusEXT GET_CheckFramebufferStatusEXT(struct _glapi_table *disp) {
10458 return (_glptr_CheckFramebufferStatusEXT) (GET_by_offset(disp, _gloffset_CheckFramebufferStatusEXT));
10459 }
10460
10461 static inline void SET_CheckFramebufferStatusEXT(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum)) {
10462 SET_by_offset(disp, _gloffset_CheckFramebufferStatusEXT, fn);
10463 }
10464
10465 typedef void (GLAPIENTRYP _glptr_DeleteFramebuffersEXT)(GLsizei, const GLuint *);
10466 #define CALL_DeleteFramebuffersEXT(disp, parameters) \
10467 (* GET_DeleteFramebuffersEXT(disp)) parameters
10468 static inline _glptr_DeleteFramebuffersEXT GET_DeleteFramebuffersEXT(struct _glapi_table *disp) {
10469 return (_glptr_DeleteFramebuffersEXT) (GET_by_offset(disp, _gloffset_DeleteFramebuffersEXT));
10470 }
10471
10472 static inline void SET_DeleteFramebuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
10473 SET_by_offset(disp, _gloffset_DeleteFramebuffersEXT, fn);
10474 }
10475
10476 typedef void (GLAPIENTRYP _glptr_DeleteRenderbuffersEXT)(GLsizei, const GLuint *);
10477 #define CALL_DeleteRenderbuffersEXT(disp, parameters) \
10478 (* GET_DeleteRenderbuffersEXT(disp)) parameters
10479 static inline _glptr_DeleteRenderbuffersEXT GET_DeleteRenderbuffersEXT(struct _glapi_table *disp) {
10480 return (_glptr_DeleteRenderbuffersEXT) (GET_by_offset(disp, _gloffset_DeleteRenderbuffersEXT));
10481 }
10482
10483 static inline void SET_DeleteRenderbuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
10484 SET_by_offset(disp, _gloffset_DeleteRenderbuffersEXT, fn);
10485 }
10486
10487 typedef void (GLAPIENTRYP _glptr_FramebufferRenderbufferEXT)(GLenum, GLenum, GLenum, GLuint);
10488 #define CALL_FramebufferRenderbufferEXT(disp, parameters) \
10489 (* GET_FramebufferRenderbufferEXT(disp)) parameters
10490 static inline _glptr_FramebufferRenderbufferEXT GET_FramebufferRenderbufferEXT(struct _glapi_table *disp) {
10491 return (_glptr_FramebufferRenderbufferEXT) (GET_by_offset(disp, _gloffset_FramebufferRenderbufferEXT));
10492 }
10493
10494 static inline void SET_FramebufferRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint)) {
10495 SET_by_offset(disp, _gloffset_FramebufferRenderbufferEXT, fn);
10496 }
10497
10498 typedef void (GLAPIENTRYP _glptr_FramebufferTexture1DEXT)(GLenum, GLenum, GLenum, GLuint, GLint);
10499 #define CALL_FramebufferTexture1DEXT(disp, parameters) \
10500 (* GET_FramebufferTexture1DEXT(disp)) parameters
10501 static inline _glptr_FramebufferTexture1DEXT GET_FramebufferTexture1DEXT(struct _glapi_table *disp) {
10502 return (_glptr_FramebufferTexture1DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture1DEXT));
10503 }
10504
10505 static inline void SET_FramebufferTexture1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) {
10506 SET_by_offset(disp, _gloffset_FramebufferTexture1DEXT, fn);
10507 }
10508
10509 typedef void (GLAPIENTRYP _glptr_FramebufferTexture2DEXT)(GLenum, GLenum, GLenum, GLuint, GLint);
10510 #define CALL_FramebufferTexture2DEXT(disp, parameters) \
10511 (* GET_FramebufferTexture2DEXT(disp)) parameters
10512 static inline _glptr_FramebufferTexture2DEXT GET_FramebufferTexture2DEXT(struct _glapi_table *disp) {
10513 return (_glptr_FramebufferTexture2DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture2DEXT));
10514 }
10515
10516 static inline void SET_FramebufferTexture2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) {
10517 SET_by_offset(disp, _gloffset_FramebufferTexture2DEXT, fn);
10518 }
10519
10520 typedef void (GLAPIENTRYP _glptr_FramebufferTexture3DEXT)(GLenum, GLenum, GLenum, GLuint, GLint, GLint);
10521 #define CALL_FramebufferTexture3DEXT(disp, parameters) \
10522 (* GET_FramebufferTexture3DEXT(disp)) parameters
10523 static inline _glptr_FramebufferTexture3DEXT GET_FramebufferTexture3DEXT(struct _glapi_table *disp) {
10524 return (_glptr_FramebufferTexture3DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture3DEXT));
10525 }
10526
10527 static inline void SET_FramebufferTexture3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint, GLint)) {
10528 SET_by_offset(disp, _gloffset_FramebufferTexture3DEXT, fn);
10529 }
10530
10531 typedef void (GLAPIENTRYP _glptr_GenFramebuffersEXT)(GLsizei, GLuint *);
10532 #define CALL_GenFramebuffersEXT(disp, parameters) \
10533 (* GET_GenFramebuffersEXT(disp)) parameters
10534 static inline _glptr_GenFramebuffersEXT GET_GenFramebuffersEXT(struct _glapi_table *disp) {
10535 return (_glptr_GenFramebuffersEXT) (GET_by_offset(disp, _gloffset_GenFramebuffersEXT));
10536 }
10537
10538 static inline void SET_GenFramebuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
10539 SET_by_offset(disp, _gloffset_GenFramebuffersEXT, fn);
10540 }
10541
10542 typedef void (GLAPIENTRYP _glptr_GenRenderbuffersEXT)(GLsizei, GLuint *);
10543 #define CALL_GenRenderbuffersEXT(disp, parameters) \
10544 (* GET_GenRenderbuffersEXT(disp)) parameters
10545 static inline _glptr_GenRenderbuffersEXT GET_GenRenderbuffersEXT(struct _glapi_table *disp) {
10546 return (_glptr_GenRenderbuffersEXT) (GET_by_offset(disp, _gloffset_GenRenderbuffersEXT));
10547 }
10548
10549 static inline void SET_GenRenderbuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
10550 SET_by_offset(disp, _gloffset_GenRenderbuffersEXT, fn);
10551 }
10552
10553 typedef void (GLAPIENTRYP _glptr_GenerateMipmapEXT)(GLenum);
10554 #define CALL_GenerateMipmapEXT(disp, parameters) \
10555 (* GET_GenerateMipmapEXT(disp)) parameters
10556 static inline _glptr_GenerateMipmapEXT GET_GenerateMipmapEXT(struct _glapi_table *disp) {
10557 return (_glptr_GenerateMipmapEXT) (GET_by_offset(disp, _gloffset_GenerateMipmapEXT));
10558 }
10559
10560 static inline void SET_GenerateMipmapEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
10561 SET_by_offset(disp, _gloffset_GenerateMipmapEXT, fn);
10562 }
10563
10564 typedef void (GLAPIENTRYP _glptr_GetFramebufferAttachmentParameterivEXT)(GLenum, GLenum, GLenum, GLint *);
10565 #define CALL_GetFramebufferAttachmentParameterivEXT(disp, parameters) \
10566 (* GET_GetFramebufferAttachmentParameterivEXT(disp)) parameters
10567 static inline _glptr_GetFramebufferAttachmentParameterivEXT GET_GetFramebufferAttachmentParameterivEXT(struct _glapi_table *disp) {
10568 return (_glptr_GetFramebufferAttachmentParameterivEXT) (GET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameterivEXT));
10569 }
10570
10571 static inline void SET_GetFramebufferAttachmentParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) {
10572 SET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameterivEXT, fn);
10573 }
10574
10575 typedef void (GLAPIENTRYP _glptr_GetRenderbufferParameterivEXT)(GLenum, GLenum, GLint *);
10576 #define CALL_GetRenderbufferParameterivEXT(disp, parameters) \
10577 (* GET_GetRenderbufferParameterivEXT(disp)) parameters
10578 static inline _glptr_GetRenderbufferParameterivEXT GET_GetRenderbufferParameterivEXT(struct _glapi_table *disp) {
10579 return (_glptr_GetRenderbufferParameterivEXT) (GET_by_offset(disp, _gloffset_GetRenderbufferParameterivEXT));
10580 }
10581
10582 static inline void SET_GetRenderbufferParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
10583 SET_by_offset(disp, _gloffset_GetRenderbufferParameterivEXT, fn);
10584 }
10585
10586 typedef GLboolean (GLAPIENTRYP _glptr_IsFramebufferEXT)(GLuint);
10587 #define CALL_IsFramebufferEXT(disp, parameters) \
10588 (* GET_IsFramebufferEXT(disp)) parameters
10589 static inline _glptr_IsFramebufferEXT GET_IsFramebufferEXT(struct _glapi_table *disp) {
10590 return (_glptr_IsFramebufferEXT) (GET_by_offset(disp, _gloffset_IsFramebufferEXT));
10591 }
10592
10593 static inline void SET_IsFramebufferEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
10594 SET_by_offset(disp, _gloffset_IsFramebufferEXT, fn);
10595 }
10596
10597 typedef GLboolean (GLAPIENTRYP _glptr_IsRenderbufferEXT)(GLuint);
10598 #define CALL_IsRenderbufferEXT(disp, parameters) \
10599 (* GET_IsRenderbufferEXT(disp)) parameters
10600 static inline _glptr_IsRenderbufferEXT GET_IsRenderbufferEXT(struct _glapi_table *disp) {
10601 return (_glptr_IsRenderbufferEXT) (GET_by_offset(disp, _gloffset_IsRenderbufferEXT));
10602 }
10603
10604 static inline void SET_IsRenderbufferEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
10605 SET_by_offset(disp, _gloffset_IsRenderbufferEXT, fn);
10606 }
10607
10608 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageEXT)(GLenum, GLenum, GLsizei, GLsizei);
10609 #define CALL_RenderbufferStorageEXT(disp, parameters) \
10610 (* GET_RenderbufferStorageEXT(disp)) parameters
10611 static inline _glptr_RenderbufferStorageEXT GET_RenderbufferStorageEXT(struct _glapi_table *disp) {
10612 return (_glptr_RenderbufferStorageEXT) (GET_by_offset(disp, _gloffset_RenderbufferStorageEXT));
10613 }
10614
10615 static inline void SET_RenderbufferStorageEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei)) {
10616 SET_by_offset(disp, _gloffset_RenderbufferStorageEXT, fn);
10617 }
10618
10619 typedef void (GLAPIENTRYP _glptr_BlitFramebufferEXT)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum);
10620 #define CALL_BlitFramebufferEXT(disp, parameters) \
10621 (* GET_BlitFramebufferEXT(disp)) parameters
10622 static inline _glptr_BlitFramebufferEXT GET_BlitFramebufferEXT(struct _glapi_table *disp) {
10623 return (_glptr_BlitFramebufferEXT) (GET_by_offset(disp, _gloffset_BlitFramebufferEXT));
10624 }
10625
10626 static inline void SET_BlitFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum)) {
10627 SET_by_offset(disp, _gloffset_BlitFramebufferEXT, fn);
10628 }
10629
10630 typedef void (GLAPIENTRYP _glptr_BufferParameteriAPPLE)(GLenum, GLenum, GLint);
10631 #define CALL_BufferParameteriAPPLE(disp, parameters) \
10632 (* GET_BufferParameteriAPPLE(disp)) parameters
10633 static inline _glptr_BufferParameteriAPPLE GET_BufferParameteriAPPLE(struct _glapi_table *disp) {
10634 return (_glptr_BufferParameteriAPPLE) (GET_by_offset(disp, _gloffset_BufferParameteriAPPLE));
10635 }
10636
10637 static inline void SET_BufferParameteriAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
10638 SET_by_offset(disp, _gloffset_BufferParameteriAPPLE, fn);
10639 }
10640
10641 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRangeAPPLE)(GLenum, GLintptr, GLsizeiptr);
10642 #define CALL_FlushMappedBufferRangeAPPLE(disp, parameters) \
10643 (* GET_FlushMappedBufferRangeAPPLE(disp)) parameters
10644 static inline _glptr_FlushMappedBufferRangeAPPLE GET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp) {
10645 return (_glptr_FlushMappedBufferRangeAPPLE) (GET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE));
10646 }
10647
10648 static inline void SET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
10649 SET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE, fn);
10650 }
10651
10652 typedef void (GLAPIENTRYP _glptr_BindFragDataLocationEXT)(GLuint, GLuint, const GLchar *);
10653 #define CALL_BindFragDataLocationEXT(disp, parameters) \
10654 (* GET_BindFragDataLocationEXT(disp)) parameters
10655 static inline _glptr_BindFragDataLocationEXT GET_BindFragDataLocationEXT(struct _glapi_table *disp) {
10656 return (_glptr_BindFragDataLocationEXT) (GET_by_offset(disp, _gloffset_BindFragDataLocationEXT));
10657 }
10658
10659 static inline void SET_BindFragDataLocationEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLchar *)) {
10660 SET_by_offset(disp, _gloffset_BindFragDataLocationEXT, fn);
10661 }
10662
10663 typedef GLint (GLAPIENTRYP _glptr_GetFragDataLocationEXT)(GLuint, const GLchar *);
10664 #define CALL_GetFragDataLocationEXT(disp, parameters) \
10665 (* GET_GetFragDataLocationEXT(disp)) parameters
10666 static inline _glptr_GetFragDataLocationEXT GET_GetFragDataLocationEXT(struct _glapi_table *disp) {
10667 return (_glptr_GetFragDataLocationEXT) (GET_by_offset(disp, _gloffset_GetFragDataLocationEXT));
10668 }
10669
10670 static inline void SET_GetFragDataLocationEXT(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
10671 SET_by_offset(disp, _gloffset_GetFragDataLocationEXT, fn);
10672 }
10673
10674 typedef void (GLAPIENTRYP _glptr_GetUniformuivEXT)(GLuint, GLint, GLuint *);
10675 #define CALL_GetUniformuivEXT(disp, parameters) \
10676 (* GET_GetUniformuivEXT(disp)) parameters
10677 static inline _glptr_GetUniformuivEXT GET_GetUniformuivEXT(struct _glapi_table *disp) {
10678 return (_glptr_GetUniformuivEXT) (GET_by_offset(disp, _gloffset_GetUniformuivEXT));
10679 }
10680
10681 static inline void SET_GetUniformuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint *)) {
10682 SET_by_offset(disp, _gloffset_GetUniformuivEXT, fn);
10683 }
10684
10685 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIivEXT)(GLuint, GLenum, GLint *);
10686 #define CALL_GetVertexAttribIivEXT(disp, parameters) \
10687 (* GET_GetVertexAttribIivEXT(disp)) parameters
10688 static inline _glptr_GetVertexAttribIivEXT GET_GetVertexAttribIivEXT(struct _glapi_table *disp) {
10689 return (_glptr_GetVertexAttribIivEXT) (GET_by_offset(disp, _gloffset_GetVertexAttribIivEXT));
10690 }
10691
10692 static inline void SET_GetVertexAttribIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
10693 SET_by_offset(disp, _gloffset_GetVertexAttribIivEXT, fn);
10694 }
10695
10696 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIuivEXT)(GLuint, GLenum, GLuint *);
10697 #define CALL_GetVertexAttribIuivEXT(disp, parameters) \
10698 (* GET_GetVertexAttribIuivEXT(disp)) parameters
10699 static inline _glptr_GetVertexAttribIuivEXT GET_GetVertexAttribIuivEXT(struct _glapi_table *disp) {
10700 return (_glptr_GetVertexAttribIuivEXT) (GET_by_offset(disp, _gloffset_GetVertexAttribIuivEXT));
10701 }
10702
10703 static inline void SET_GetVertexAttribIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
10704 SET_by_offset(disp, _gloffset_GetVertexAttribIuivEXT, fn);
10705 }
10706
10707 typedef void (GLAPIENTRYP _glptr_Uniform1uiEXT)(GLint, GLuint);
10708 #define CALL_Uniform1uiEXT(disp, parameters) \
10709 (* GET_Uniform1uiEXT(disp)) parameters
10710 static inline _glptr_Uniform1uiEXT GET_Uniform1uiEXT(struct _glapi_table *disp) {
10711 return (_glptr_Uniform1uiEXT) (GET_by_offset(disp, _gloffset_Uniform1uiEXT));
10712 }
10713
10714 static inline void SET_Uniform1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint)) {
10715 SET_by_offset(disp, _gloffset_Uniform1uiEXT, fn);
10716 }
10717
10718 typedef void (GLAPIENTRYP _glptr_Uniform1uivEXT)(GLint, GLsizei, const GLuint *);
10719 #define CALL_Uniform1uivEXT(disp, parameters) \
10720 (* GET_Uniform1uivEXT(disp)) parameters
10721 static inline _glptr_Uniform1uivEXT GET_Uniform1uivEXT(struct _glapi_table *disp) {
10722 return (_glptr_Uniform1uivEXT) (GET_by_offset(disp, _gloffset_Uniform1uivEXT));
10723 }
10724
10725 static inline void SET_Uniform1uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
10726 SET_by_offset(disp, _gloffset_Uniform1uivEXT, fn);
10727 }
10728
10729 typedef void (GLAPIENTRYP _glptr_Uniform2uiEXT)(GLint, GLuint, GLuint);
10730 #define CALL_Uniform2uiEXT(disp, parameters) \
10731 (* GET_Uniform2uiEXT(disp)) parameters
10732 static inline _glptr_Uniform2uiEXT GET_Uniform2uiEXT(struct _glapi_table *disp) {
10733 return (_glptr_Uniform2uiEXT) (GET_by_offset(disp, _gloffset_Uniform2uiEXT));
10734 }
10735
10736 static inline void SET_Uniform2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint)) {
10737 SET_by_offset(disp, _gloffset_Uniform2uiEXT, fn);
10738 }
10739
10740 typedef void (GLAPIENTRYP _glptr_Uniform2uivEXT)(GLint, GLsizei, const GLuint *);
10741 #define CALL_Uniform2uivEXT(disp, parameters) \
10742 (* GET_Uniform2uivEXT(disp)) parameters
10743 static inline _glptr_Uniform2uivEXT GET_Uniform2uivEXT(struct _glapi_table *disp) {
10744 return (_glptr_Uniform2uivEXT) (GET_by_offset(disp, _gloffset_Uniform2uivEXT));
10745 }
10746
10747 static inline void SET_Uniform2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
10748 SET_by_offset(disp, _gloffset_Uniform2uivEXT, fn);
10749 }
10750
10751 typedef void (GLAPIENTRYP _glptr_Uniform3uiEXT)(GLint, GLuint, GLuint, GLuint);
10752 #define CALL_Uniform3uiEXT(disp, parameters) \
10753 (* GET_Uniform3uiEXT(disp)) parameters
10754 static inline _glptr_Uniform3uiEXT GET_Uniform3uiEXT(struct _glapi_table *disp) {
10755 return (_glptr_Uniform3uiEXT) (GET_by_offset(disp, _gloffset_Uniform3uiEXT));
10756 }
10757
10758 static inline void SET_Uniform3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint)) {
10759 SET_by_offset(disp, _gloffset_Uniform3uiEXT, fn);
10760 }
10761
10762 typedef void (GLAPIENTRYP _glptr_Uniform3uivEXT)(GLint, GLsizei, const GLuint *);
10763 #define CALL_Uniform3uivEXT(disp, parameters) \
10764 (* GET_Uniform3uivEXT(disp)) parameters
10765 static inline _glptr_Uniform3uivEXT GET_Uniform3uivEXT(struct _glapi_table *disp) {
10766 return (_glptr_Uniform3uivEXT) (GET_by_offset(disp, _gloffset_Uniform3uivEXT));
10767 }
10768
10769 static inline void SET_Uniform3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
10770 SET_by_offset(disp, _gloffset_Uniform3uivEXT, fn);
10771 }
10772
10773 typedef void (GLAPIENTRYP _glptr_Uniform4uiEXT)(GLint, GLuint, GLuint, GLuint, GLuint);
10774 #define CALL_Uniform4uiEXT(disp, parameters) \
10775 (* GET_Uniform4uiEXT(disp)) parameters
10776 static inline _glptr_Uniform4uiEXT GET_Uniform4uiEXT(struct _glapi_table *disp) {
10777 return (_glptr_Uniform4uiEXT) (GET_by_offset(disp, _gloffset_Uniform4uiEXT));
10778 }
10779
10780 static inline void SET_Uniform4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint, GLuint)) {
10781 SET_by_offset(disp, _gloffset_Uniform4uiEXT, fn);
10782 }
10783
10784 typedef void (GLAPIENTRYP _glptr_Uniform4uivEXT)(GLint, GLsizei, const GLuint *);
10785 #define CALL_Uniform4uivEXT(disp, parameters) \
10786 (* GET_Uniform4uivEXT(disp)) parameters
10787 static inline _glptr_Uniform4uivEXT GET_Uniform4uivEXT(struct _glapi_table *disp) {
10788 return (_glptr_Uniform4uivEXT) (GET_by_offset(disp, _gloffset_Uniform4uivEXT));
10789 }
10790
10791 static inline void SET_Uniform4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
10792 SET_by_offset(disp, _gloffset_Uniform4uivEXT, fn);
10793 }
10794
10795 typedef void (GLAPIENTRYP _glptr_VertexAttribI1iEXT)(GLuint, GLint);
10796 #define CALL_VertexAttribI1iEXT(disp, parameters) \
10797 (* GET_VertexAttribI1iEXT(disp)) parameters
10798 static inline _glptr_VertexAttribI1iEXT GET_VertexAttribI1iEXT(struct _glapi_table *disp) {
10799 return (_glptr_VertexAttribI1iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1iEXT));
10800 }
10801
10802 static inline void SET_VertexAttribI1iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint)) {
10803 SET_by_offset(disp, _gloffset_VertexAttribI1iEXT, fn);
10804 }
10805
10806 typedef void (GLAPIENTRYP _glptr_VertexAttribI1ivEXT)(GLuint, const GLint *);
10807 #define CALL_VertexAttribI1ivEXT(disp, parameters) \
10808 (* GET_VertexAttribI1ivEXT(disp)) parameters
10809 static inline _glptr_VertexAttribI1ivEXT GET_VertexAttribI1ivEXT(struct _glapi_table *disp) {
10810 return (_glptr_VertexAttribI1ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1ivEXT));
10811 }
10812
10813 static inline void SET_VertexAttribI1ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
10814 SET_by_offset(disp, _gloffset_VertexAttribI1ivEXT, fn);
10815 }
10816
10817 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uiEXT)(GLuint, GLuint);
10818 #define CALL_VertexAttribI1uiEXT(disp, parameters) \
10819 (* GET_VertexAttribI1uiEXT(disp)) parameters
10820 static inline _glptr_VertexAttribI1uiEXT GET_VertexAttribI1uiEXT(struct _glapi_table *disp) {
10821 return (_glptr_VertexAttribI1uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uiEXT));
10822 }
10823
10824 static inline void SET_VertexAttribI1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
10825 SET_by_offset(disp, _gloffset_VertexAttribI1uiEXT, fn);
10826 }
10827
10828 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uivEXT)(GLuint, const GLuint *);
10829 #define CALL_VertexAttribI1uivEXT(disp, parameters) \
10830 (* GET_VertexAttribI1uivEXT(disp)) parameters
10831 static inline _glptr_VertexAttribI1uivEXT GET_VertexAttribI1uivEXT(struct _glapi_table *disp) {
10832 return (_glptr_VertexAttribI1uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uivEXT));
10833 }
10834
10835 static inline void SET_VertexAttribI1uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
10836 SET_by_offset(disp, _gloffset_VertexAttribI1uivEXT, fn);
10837 }
10838
10839 typedef void (GLAPIENTRYP _glptr_VertexAttribI2iEXT)(GLuint, GLint, GLint);
10840 #define CALL_VertexAttribI2iEXT(disp, parameters) \
10841 (* GET_VertexAttribI2iEXT(disp)) parameters
10842 static inline _glptr_VertexAttribI2iEXT GET_VertexAttribI2iEXT(struct _glapi_table *disp) {
10843 return (_glptr_VertexAttribI2iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2iEXT));
10844 }
10845
10846 static inline void SET_VertexAttribI2iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint)) {
10847 SET_by_offset(disp, _gloffset_VertexAttribI2iEXT, fn);
10848 }
10849
10850 typedef void (GLAPIENTRYP _glptr_VertexAttribI2ivEXT)(GLuint, const GLint *);
10851 #define CALL_VertexAttribI2ivEXT(disp, parameters) \
10852 (* GET_VertexAttribI2ivEXT(disp)) parameters
10853 static inline _glptr_VertexAttribI2ivEXT GET_VertexAttribI2ivEXT(struct _glapi_table *disp) {
10854 return (_glptr_VertexAttribI2ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2ivEXT));
10855 }
10856
10857 static inline void SET_VertexAttribI2ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
10858 SET_by_offset(disp, _gloffset_VertexAttribI2ivEXT, fn);
10859 }
10860
10861 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uiEXT)(GLuint, GLuint, GLuint);
10862 #define CALL_VertexAttribI2uiEXT(disp, parameters) \
10863 (* GET_VertexAttribI2uiEXT(disp)) parameters
10864 static inline _glptr_VertexAttribI2uiEXT GET_VertexAttribI2uiEXT(struct _glapi_table *disp) {
10865 return (_glptr_VertexAttribI2uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uiEXT));
10866 }
10867
10868 static inline void SET_VertexAttribI2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
10869 SET_by_offset(disp, _gloffset_VertexAttribI2uiEXT, fn);
10870 }
10871
10872 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uivEXT)(GLuint, const GLuint *);
10873 #define CALL_VertexAttribI2uivEXT(disp, parameters) \
10874 (* GET_VertexAttribI2uivEXT(disp)) parameters
10875 static inline _glptr_VertexAttribI2uivEXT GET_VertexAttribI2uivEXT(struct _glapi_table *disp) {
10876 return (_glptr_VertexAttribI2uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uivEXT));
10877 }
10878
10879 static inline void SET_VertexAttribI2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
10880 SET_by_offset(disp, _gloffset_VertexAttribI2uivEXT, fn);
10881 }
10882
10883 typedef void (GLAPIENTRYP _glptr_VertexAttribI3iEXT)(GLuint, GLint, GLint, GLint);
10884 #define CALL_VertexAttribI3iEXT(disp, parameters) \
10885 (* GET_VertexAttribI3iEXT(disp)) parameters
10886 static inline _glptr_VertexAttribI3iEXT GET_VertexAttribI3iEXT(struct _glapi_table *disp) {
10887 return (_glptr_VertexAttribI3iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3iEXT));
10888 }
10889
10890 static inline void SET_VertexAttribI3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint)) {
10891 SET_by_offset(disp, _gloffset_VertexAttribI3iEXT, fn);
10892 }
10893
10894 typedef void (GLAPIENTRYP _glptr_VertexAttribI3ivEXT)(GLuint, const GLint *);
10895 #define CALL_VertexAttribI3ivEXT(disp, parameters) \
10896 (* GET_VertexAttribI3ivEXT(disp)) parameters
10897 static inline _glptr_VertexAttribI3ivEXT GET_VertexAttribI3ivEXT(struct _glapi_table *disp) {
10898 return (_glptr_VertexAttribI3ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3ivEXT));
10899 }
10900
10901 static inline void SET_VertexAttribI3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
10902 SET_by_offset(disp, _gloffset_VertexAttribI3ivEXT, fn);
10903 }
10904
10905 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uiEXT)(GLuint, GLuint, GLuint, GLuint);
10906 #define CALL_VertexAttribI3uiEXT(disp, parameters) \
10907 (* GET_VertexAttribI3uiEXT(disp)) parameters
10908 static inline _glptr_VertexAttribI3uiEXT GET_VertexAttribI3uiEXT(struct _glapi_table *disp) {
10909 return (_glptr_VertexAttribI3uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uiEXT));
10910 }
10911
10912 static inline void SET_VertexAttribI3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
10913 SET_by_offset(disp, _gloffset_VertexAttribI3uiEXT, fn);
10914 }
10915
10916 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uivEXT)(GLuint, const GLuint *);
10917 #define CALL_VertexAttribI3uivEXT(disp, parameters) \
10918 (* GET_VertexAttribI3uivEXT(disp)) parameters
10919 static inline _glptr_VertexAttribI3uivEXT GET_VertexAttribI3uivEXT(struct _glapi_table *disp) {
10920 return (_glptr_VertexAttribI3uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uivEXT));
10921 }
10922
10923 static inline void SET_VertexAttribI3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
10924 SET_by_offset(disp, _gloffset_VertexAttribI3uivEXT, fn);
10925 }
10926
10927 typedef void (GLAPIENTRYP _glptr_VertexAttribI4bvEXT)(GLuint, const GLbyte *);
10928 #define CALL_VertexAttribI4bvEXT(disp, parameters) \
10929 (* GET_VertexAttribI4bvEXT(disp)) parameters
10930 static inline _glptr_VertexAttribI4bvEXT GET_VertexAttribI4bvEXT(struct _glapi_table *disp) {
10931 return (_glptr_VertexAttribI4bvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4bvEXT));
10932 }
10933
10934 static inline void SET_VertexAttribI4bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
10935 SET_by_offset(disp, _gloffset_VertexAttribI4bvEXT, fn);
10936 }
10937
10938 typedef void (GLAPIENTRYP _glptr_VertexAttribI4iEXT)(GLuint, GLint, GLint, GLint, GLint);
10939 #define CALL_VertexAttribI4iEXT(disp, parameters) \
10940 (* GET_VertexAttribI4iEXT(disp)) parameters
10941 static inline _glptr_VertexAttribI4iEXT GET_VertexAttribI4iEXT(struct _glapi_table *disp) {
10942 return (_glptr_VertexAttribI4iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4iEXT));
10943 }
10944
10945 static inline void SET_VertexAttribI4iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint)) {
10946 SET_by_offset(disp, _gloffset_VertexAttribI4iEXT, fn);
10947 }
10948
10949 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ivEXT)(GLuint, const GLint *);
10950 #define CALL_VertexAttribI4ivEXT(disp, parameters) \
10951 (* GET_VertexAttribI4ivEXT(disp)) parameters
10952 static inline _glptr_VertexAttribI4ivEXT GET_VertexAttribI4ivEXT(struct _glapi_table *disp) {
10953 return (_glptr_VertexAttribI4ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ivEXT));
10954 }
10955
10956 static inline void SET_VertexAttribI4ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
10957 SET_by_offset(disp, _gloffset_VertexAttribI4ivEXT, fn);
10958 }
10959
10960 typedef void (GLAPIENTRYP _glptr_VertexAttribI4svEXT)(GLuint, const GLshort *);
10961 #define CALL_VertexAttribI4svEXT(disp, parameters) \
10962 (* GET_VertexAttribI4svEXT(disp)) parameters
10963 static inline _glptr_VertexAttribI4svEXT GET_VertexAttribI4svEXT(struct _glapi_table *disp) {
10964 return (_glptr_VertexAttribI4svEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4svEXT));
10965 }
10966
10967 static inline void SET_VertexAttribI4svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
10968 SET_by_offset(disp, _gloffset_VertexAttribI4svEXT, fn);
10969 }
10970
10971 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ubvEXT)(GLuint, const GLubyte *);
10972 #define CALL_VertexAttribI4ubvEXT(disp, parameters) \
10973 (* GET_VertexAttribI4ubvEXT(disp)) parameters
10974 static inline _glptr_VertexAttribI4ubvEXT GET_VertexAttribI4ubvEXT(struct _glapi_table *disp) {
10975 return (_glptr_VertexAttribI4ubvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ubvEXT));
10976 }
10977
10978 static inline void SET_VertexAttribI4ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
10979 SET_by_offset(disp, _gloffset_VertexAttribI4ubvEXT, fn);
10980 }
10981
10982 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uiEXT)(GLuint, GLuint, GLuint, GLuint, GLuint);
10983 #define CALL_VertexAttribI4uiEXT(disp, parameters) \
10984 (* GET_VertexAttribI4uiEXT(disp)) parameters
10985 static inline _glptr_VertexAttribI4uiEXT GET_VertexAttribI4uiEXT(struct _glapi_table *disp) {
10986 return (_glptr_VertexAttribI4uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uiEXT));
10987 }
10988
10989 static inline void SET_VertexAttribI4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint, GLuint)) {
10990 SET_by_offset(disp, _gloffset_VertexAttribI4uiEXT, fn);
10991 }
10992
10993 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uivEXT)(GLuint, const GLuint *);
10994 #define CALL_VertexAttribI4uivEXT(disp, parameters) \
10995 (* GET_VertexAttribI4uivEXT(disp)) parameters
10996 static inline _glptr_VertexAttribI4uivEXT GET_VertexAttribI4uivEXT(struct _glapi_table *disp) {
10997 return (_glptr_VertexAttribI4uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uivEXT));
10998 }
10999
11000 static inline void SET_VertexAttribI4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
11001 SET_by_offset(disp, _gloffset_VertexAttribI4uivEXT, fn);
11002 }
11003
11004 typedef void (GLAPIENTRYP _glptr_VertexAttribI4usvEXT)(GLuint, const GLushort *);
11005 #define CALL_VertexAttribI4usvEXT(disp, parameters) \
11006 (* GET_VertexAttribI4usvEXT(disp)) parameters
11007 static inline _glptr_VertexAttribI4usvEXT GET_VertexAttribI4usvEXT(struct _glapi_table *disp) {
11008 return (_glptr_VertexAttribI4usvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4usvEXT));
11009 }
11010
11011 static inline void SET_VertexAttribI4usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
11012 SET_by_offset(disp, _gloffset_VertexAttribI4usvEXT, fn);
11013 }
11014
11015 typedef void (GLAPIENTRYP _glptr_VertexAttribIPointerEXT)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
11016 #define CALL_VertexAttribIPointerEXT(disp, parameters) \
11017 (* GET_VertexAttribIPointerEXT(disp)) parameters
11018 static inline _glptr_VertexAttribIPointerEXT GET_VertexAttribIPointerEXT(struct _glapi_table *disp) {
11019 return (_glptr_VertexAttribIPointerEXT) (GET_by_offset(disp, _gloffset_VertexAttribIPointerEXT));
11020 }
11021
11022 static inline void SET_VertexAttribIPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
11023 SET_by_offset(disp, _gloffset_VertexAttribIPointerEXT, fn);
11024 }
11025
11026 typedef void (GLAPIENTRYP _glptr_ClearColorIiEXT)(GLint, GLint, GLint, GLint);
11027 #define CALL_ClearColorIiEXT(disp, parameters) \
11028 (* GET_ClearColorIiEXT(disp)) parameters
11029 static inline _glptr_ClearColorIiEXT GET_ClearColorIiEXT(struct _glapi_table *disp) {
11030 return (_glptr_ClearColorIiEXT) (GET_by_offset(disp, _gloffset_ClearColorIiEXT));
11031 }
11032
11033 static inline void SET_ClearColorIiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
11034 SET_by_offset(disp, _gloffset_ClearColorIiEXT, fn);
11035 }
11036
11037 typedef void (GLAPIENTRYP _glptr_ClearColorIuiEXT)(GLuint, GLuint, GLuint, GLuint);
11038 #define CALL_ClearColorIuiEXT(disp, parameters) \
11039 (* GET_ClearColorIuiEXT(disp)) parameters
11040 static inline _glptr_ClearColorIuiEXT GET_ClearColorIuiEXT(struct _glapi_table *disp) {
11041 return (_glptr_ClearColorIuiEXT) (GET_by_offset(disp, _gloffset_ClearColorIuiEXT));
11042 }
11043
11044 static inline void SET_ClearColorIuiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
11045 SET_by_offset(disp, _gloffset_ClearColorIuiEXT, fn);
11046 }
11047
11048 typedef void (GLAPIENTRYP _glptr_GetTexParameterIivEXT)(GLenum, GLenum, GLint *);
11049 #define CALL_GetTexParameterIivEXT(disp, parameters) \
11050 (* GET_GetTexParameterIivEXT(disp)) parameters
11051 static inline _glptr_GetTexParameterIivEXT GET_GetTexParameterIivEXT(struct _glapi_table *disp) {
11052 return (_glptr_GetTexParameterIivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIivEXT));
11053 }
11054
11055 static inline void SET_GetTexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
11056 SET_by_offset(disp, _gloffset_GetTexParameterIivEXT, fn);
11057 }
11058
11059 typedef void (GLAPIENTRYP _glptr_GetTexParameterIuivEXT)(GLenum, GLenum, GLuint *);
11060 #define CALL_GetTexParameterIuivEXT(disp, parameters) \
11061 (* GET_GetTexParameterIuivEXT(disp)) parameters
11062 static inline _glptr_GetTexParameterIuivEXT GET_GetTexParameterIuivEXT(struct _glapi_table *disp) {
11063 return (_glptr_GetTexParameterIuivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIuivEXT));
11064 }
11065
11066 static inline void SET_GetTexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint *)) {
11067 SET_by_offset(disp, _gloffset_GetTexParameterIuivEXT, fn);
11068 }
11069
11070 typedef void (GLAPIENTRYP _glptr_TexParameterIivEXT)(GLenum, GLenum, const GLint *);
11071 #define CALL_TexParameterIivEXT(disp, parameters) \
11072 (* GET_TexParameterIivEXT(disp)) parameters
11073 static inline _glptr_TexParameterIivEXT GET_TexParameterIivEXT(struct _glapi_table *disp) {
11074 return (_glptr_TexParameterIivEXT) (GET_by_offset(disp, _gloffset_TexParameterIivEXT));
11075 }
11076
11077 static inline void SET_TexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
11078 SET_by_offset(disp, _gloffset_TexParameterIivEXT, fn);
11079 }
11080
11081 typedef void (GLAPIENTRYP _glptr_TexParameterIuivEXT)(GLenum, GLenum, const GLuint *);
11082 #define CALL_TexParameterIuivEXT(disp, parameters) \
11083 (* GET_TexParameterIuivEXT(disp)) parameters
11084 static inline _glptr_TexParameterIuivEXT GET_TexParameterIuivEXT(struct _glapi_table *disp) {
11085 return (_glptr_TexParameterIuivEXT) (GET_by_offset(disp, _gloffset_TexParameterIuivEXT));
11086 }
11087
11088 static inline void SET_TexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
11089 SET_by_offset(disp, _gloffset_TexParameterIuivEXT, fn);
11090 }
11091
11092 typedef void (GLAPIENTRYP _glptr_GetTexParameterPointervAPPLE)(GLenum, GLenum, GLvoid **);
11093 #define CALL_GetTexParameterPointervAPPLE(disp, parameters) \
11094 (* GET_GetTexParameterPointervAPPLE(disp)) parameters
11095 static inline _glptr_GetTexParameterPointervAPPLE GET_GetTexParameterPointervAPPLE(struct _glapi_table *disp) {
11096 return (_glptr_GetTexParameterPointervAPPLE) (GET_by_offset(disp, _gloffset_GetTexParameterPointervAPPLE));
11097 }
11098
11099 static inline void SET_GetTexParameterPointervAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
11100 SET_by_offset(disp, _gloffset_GetTexParameterPointervAPPLE, fn);
11101 }
11102
11103 typedef void (GLAPIENTRYP _glptr_TextureRangeAPPLE)(GLenum, GLsizei, GLvoid *);
11104 #define CALL_TextureRangeAPPLE(disp, parameters) \
11105 (* GET_TextureRangeAPPLE(disp)) parameters
11106 static inline _glptr_TextureRangeAPPLE GET_TextureRangeAPPLE(struct _glapi_table *disp) {
11107 return (_glptr_TextureRangeAPPLE) (GET_by_offset(disp, _gloffset_TextureRangeAPPLE));
11108 }
11109
11110 static inline void SET_TextureRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLvoid *)) {
11111 SET_by_offset(disp, _gloffset_TextureRangeAPPLE, fn);
11112 }
11113
11114 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivAPPLE)(GLenum, GLuint, GLenum, GLint *);
11115 #define CALL_GetObjectParameterivAPPLE(disp, parameters) \
11116 (* GET_GetObjectParameterivAPPLE(disp)) parameters
11117 static inline _glptr_GetObjectParameterivAPPLE GET_GetObjectParameterivAPPLE(struct _glapi_table *disp) {
11118 return (_glptr_GetObjectParameterivAPPLE) (GET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE));
11119 }
11120
11121 static inline void SET_GetObjectParameterivAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
11122 SET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE, fn);
11123 }
11124
11125 typedef GLenum (GLAPIENTRYP _glptr_ObjectPurgeableAPPLE)(GLenum, GLuint, GLenum);
11126 #define CALL_ObjectPurgeableAPPLE(disp, parameters) \
11127 (* GET_ObjectPurgeableAPPLE(disp)) parameters
11128 static inline _glptr_ObjectPurgeableAPPLE GET_ObjectPurgeableAPPLE(struct _glapi_table *disp) {
11129 return (_glptr_ObjectPurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE));
11130 }
11131
11132 static inline void SET_ObjectPurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
11133 SET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE, fn);
11134 }
11135
11136 typedef GLenum (GLAPIENTRYP _glptr_ObjectUnpurgeableAPPLE)(GLenum, GLuint, GLenum);
11137 #define CALL_ObjectUnpurgeableAPPLE(disp, parameters) \
11138 (* GET_ObjectUnpurgeableAPPLE(disp)) parameters
11139 static inline _glptr_ObjectUnpurgeableAPPLE GET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp) {
11140 return (_glptr_ObjectUnpurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE));
11141 }
11142
11143 static inline void SET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
11144 SET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE, fn);
11145 }
11146
11147 typedef void (GLAPIENTRYP _glptr_ActiveProgramEXT)(GLuint);
11148 #define CALL_ActiveProgramEXT(disp, parameters) \
11149 (* GET_ActiveProgramEXT(disp)) parameters
11150 static inline _glptr_ActiveProgramEXT GET_ActiveProgramEXT(struct _glapi_table *disp) {
11151 return (_glptr_ActiveProgramEXT) (GET_by_offset(disp, _gloffset_ActiveProgramEXT));
11152 }
11153
11154 static inline void SET_ActiveProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
11155 SET_by_offset(disp, _gloffset_ActiveProgramEXT, fn);
11156 }
11157
11158 typedef GLuint (GLAPIENTRYP _glptr_CreateShaderProgramEXT)(GLenum, const GLchar *);
11159 #define CALL_CreateShaderProgramEXT(disp, parameters) \
11160 (* GET_CreateShaderProgramEXT(disp)) parameters
11161 static inline _glptr_CreateShaderProgramEXT GET_CreateShaderProgramEXT(struct _glapi_table *disp) {
11162 return (_glptr_CreateShaderProgramEXT) (GET_by_offset(disp, _gloffset_CreateShaderProgramEXT));
11163 }
11164
11165 static inline void SET_CreateShaderProgramEXT(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum, const GLchar *)) {
11166 SET_by_offset(disp, _gloffset_CreateShaderProgramEXT, fn);
11167 }
11168
11169 typedef void (GLAPIENTRYP _glptr_UseShaderProgramEXT)(GLenum, GLuint);
11170 #define CALL_UseShaderProgramEXT(disp, parameters) \
11171 (* GET_UseShaderProgramEXT(disp)) parameters
11172 static inline _glptr_UseShaderProgramEXT GET_UseShaderProgramEXT(struct _glapi_table *disp) {
11173 return (_glptr_UseShaderProgramEXT) (GET_by_offset(disp, _gloffset_UseShaderProgramEXT));
11174 }
11175
11176 static inline void SET_UseShaderProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
11177 SET_by_offset(disp, _gloffset_UseShaderProgramEXT, fn);
11178 }
11179
11180 typedef void (GLAPIENTRYP _glptr_TextureBarrierNV)(void);
11181 #define CALL_TextureBarrierNV(disp, parameters) \
11182 (* GET_TextureBarrierNV(disp)) parameters
11183 static inline _glptr_TextureBarrierNV GET_TextureBarrierNV(struct _glapi_table *disp) {
11184 return (_glptr_TextureBarrierNV) (GET_by_offset(disp, _gloffset_TextureBarrierNV));
11185 }
11186
11187 static inline void SET_TextureBarrierNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
11188 SET_by_offset(disp, _gloffset_TextureBarrierNV, fn);
11189 }
11190
11191 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparateATI)(GLenum, GLenum, GLint, GLuint);
11192 #define CALL_StencilFuncSeparateATI(disp, parameters) \
11193 (* GET_StencilFuncSeparateATI(disp)) parameters
11194 static inline _glptr_StencilFuncSeparateATI GET_StencilFuncSeparateATI(struct _glapi_table *disp) {
11195 return (_glptr_StencilFuncSeparateATI) (GET_by_offset(disp, _gloffset_StencilFuncSeparateATI));
11196 }
11197
11198 static inline void SET_StencilFuncSeparateATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) {
11199 SET_by_offset(disp, _gloffset_StencilFuncSeparateATI, fn);
11200 }
11201
11202 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *);
11203 #define CALL_ProgramEnvParameters4fvEXT(disp, parameters) \
11204 (* GET_ProgramEnvParameters4fvEXT(disp)) parameters
11205 static inline _glptr_ProgramEnvParameters4fvEXT GET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp) {
11206 return (_glptr_ProgramEnvParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT));
11207 }
11208
11209 static inline void SET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
11210 SET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT, fn);
11211 }
11212
11213 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *);
11214 #define CALL_ProgramLocalParameters4fvEXT(disp, parameters) \
11215 (* GET_ProgramLocalParameters4fvEXT(disp)) parameters
11216 static inline _glptr_ProgramLocalParameters4fvEXT GET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp) {
11217 return (_glptr_ProgramLocalParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT));
11218 }
11219
11220 static inline void SET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
11221 SET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT, fn);
11222 }
11223
11224
11225 #endif /* !defined( _DISPATCH_H_ ) */