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