mesa: remove unused UNCLAMPED_FLOAT_TO_RGB_CHAN() macro
[mesa.git] / 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 #include "main/mfeatures.h"
44
45 #define CALL_by_offset(disp, cast, offset, parameters) \
46 (*(cast (GET_by_offset(disp, offset)))) parameters
47 #define GET_by_offset(disp, offset) \
48 (offset >= 0) ? (((_glapi_proc *)(disp))[offset]) : NULL
49 #define SET_by_offset(disp, offset, fn) \
50 do { \
51 if ( (offset) < 0 ) { \
52 /* fprintf( stderr, "[%s:%u] SET_by_offset(%p, %d, %s)!\n", */ \
53 /* __func__, __LINE__, disp, offset, # fn); */ \
54 /* abort(); */ \
55 } \
56 else { \
57 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
58 } \
59 } while(0)
60
61 /* total number of offsets below */
62 #define _gloffset_COUNT 967
63
64 #define _gloffset_NewList 0
65 #define _gloffset_EndList 1
66 #define _gloffset_CallList 2
67 #define _gloffset_CallLists 3
68 #define _gloffset_DeleteLists 4
69 #define _gloffset_GenLists 5
70 #define _gloffset_ListBase 6
71 #define _gloffset_Begin 7
72 #define _gloffset_Bitmap 8
73 #define _gloffset_Color3b 9
74 #define _gloffset_Color3bv 10
75 #define _gloffset_Color3d 11
76 #define _gloffset_Color3dv 12
77 #define _gloffset_Color3f 13
78 #define _gloffset_Color3fv 14
79 #define _gloffset_Color3i 15
80 #define _gloffset_Color3iv 16
81 #define _gloffset_Color3s 17
82 #define _gloffset_Color3sv 18
83 #define _gloffset_Color3ub 19
84 #define _gloffset_Color3ubv 20
85 #define _gloffset_Color3ui 21
86 #define _gloffset_Color3uiv 22
87 #define _gloffset_Color3us 23
88 #define _gloffset_Color3usv 24
89 #define _gloffset_Color4b 25
90 #define _gloffset_Color4bv 26
91 #define _gloffset_Color4d 27
92 #define _gloffset_Color4dv 28
93 #define _gloffset_Color4f 29
94 #define _gloffset_Color4fv 30
95 #define _gloffset_Color4i 31
96 #define _gloffset_Color4iv 32
97 #define _gloffset_Color4s 33
98 #define _gloffset_Color4sv 34
99 #define _gloffset_Color4ub 35
100 #define _gloffset_Color4ubv 36
101 #define _gloffset_Color4ui 37
102 #define _gloffset_Color4uiv 38
103 #define _gloffset_Color4us 39
104 #define _gloffset_Color4usv 40
105 #define _gloffset_EdgeFlag 41
106 #define _gloffset_EdgeFlagv 42
107 #define _gloffset_End 43
108 #define _gloffset_Indexd 44
109 #define _gloffset_Indexdv 45
110 #define _gloffset_Indexf 46
111 #define _gloffset_Indexfv 47
112 #define _gloffset_Indexi 48
113 #define _gloffset_Indexiv 49
114 #define _gloffset_Indexs 50
115 #define _gloffset_Indexsv 51
116 #define _gloffset_Normal3b 52
117 #define _gloffset_Normal3bv 53
118 #define _gloffset_Normal3d 54
119 #define _gloffset_Normal3dv 55
120 #define _gloffset_Normal3f 56
121 #define _gloffset_Normal3fv 57
122 #define _gloffset_Normal3i 58
123 #define _gloffset_Normal3iv 59
124 #define _gloffset_Normal3s 60
125 #define _gloffset_Normal3sv 61
126 #define _gloffset_RasterPos2d 62
127 #define _gloffset_RasterPos2dv 63
128 #define _gloffset_RasterPos2f 64
129 #define _gloffset_RasterPos2fv 65
130 #define _gloffset_RasterPos2i 66
131 #define _gloffset_RasterPos2iv 67
132 #define _gloffset_RasterPos2s 68
133 #define _gloffset_RasterPos2sv 69
134 #define _gloffset_RasterPos3d 70
135 #define _gloffset_RasterPos3dv 71
136 #define _gloffset_RasterPos3f 72
137 #define _gloffset_RasterPos3fv 73
138 #define _gloffset_RasterPos3i 74
139 #define _gloffset_RasterPos3iv 75
140 #define _gloffset_RasterPos3s 76
141 #define _gloffset_RasterPos3sv 77
142 #define _gloffset_RasterPos4d 78
143 #define _gloffset_RasterPos4dv 79
144 #define _gloffset_RasterPos4f 80
145 #define _gloffset_RasterPos4fv 81
146 #define _gloffset_RasterPos4i 82
147 #define _gloffset_RasterPos4iv 83
148 #define _gloffset_RasterPos4s 84
149 #define _gloffset_RasterPos4sv 85
150 #define _gloffset_Rectd 86
151 #define _gloffset_Rectdv 87
152 #define _gloffset_Rectf 88
153 #define _gloffset_Rectfv 89
154 #define _gloffset_Recti 90
155 #define _gloffset_Rectiv 91
156 #define _gloffset_Rects 92
157 #define _gloffset_Rectsv 93
158 #define _gloffset_TexCoord1d 94
159 #define _gloffset_TexCoord1dv 95
160 #define _gloffset_TexCoord1f 96
161 #define _gloffset_TexCoord1fv 97
162 #define _gloffset_TexCoord1i 98
163 #define _gloffset_TexCoord1iv 99
164 #define _gloffset_TexCoord1s 100
165 #define _gloffset_TexCoord1sv 101
166 #define _gloffset_TexCoord2d 102
167 #define _gloffset_TexCoord2dv 103
168 #define _gloffset_TexCoord2f 104
169 #define _gloffset_TexCoord2fv 105
170 #define _gloffset_TexCoord2i 106
171 #define _gloffset_TexCoord2iv 107
172 #define _gloffset_TexCoord2s 108
173 #define _gloffset_TexCoord2sv 109
174 #define _gloffset_TexCoord3d 110
175 #define _gloffset_TexCoord3dv 111
176 #define _gloffset_TexCoord3f 112
177 #define _gloffset_TexCoord3fv 113
178 #define _gloffset_TexCoord3i 114
179 #define _gloffset_TexCoord3iv 115
180 #define _gloffset_TexCoord3s 116
181 #define _gloffset_TexCoord3sv 117
182 #define _gloffset_TexCoord4d 118
183 #define _gloffset_TexCoord4dv 119
184 #define _gloffset_TexCoord4f 120
185 #define _gloffset_TexCoord4fv 121
186 #define _gloffset_TexCoord4i 122
187 #define _gloffset_TexCoord4iv 123
188 #define _gloffset_TexCoord4s 124
189 #define _gloffset_TexCoord4sv 125
190 #define _gloffset_Vertex2d 126
191 #define _gloffset_Vertex2dv 127
192 #define _gloffset_Vertex2f 128
193 #define _gloffset_Vertex2fv 129
194 #define _gloffset_Vertex2i 130
195 #define _gloffset_Vertex2iv 131
196 #define _gloffset_Vertex2s 132
197 #define _gloffset_Vertex2sv 133
198 #define _gloffset_Vertex3d 134
199 #define _gloffset_Vertex3dv 135
200 #define _gloffset_Vertex3f 136
201 #define _gloffset_Vertex3fv 137
202 #define _gloffset_Vertex3i 138
203 #define _gloffset_Vertex3iv 139
204 #define _gloffset_Vertex3s 140
205 #define _gloffset_Vertex3sv 141
206 #define _gloffset_Vertex4d 142
207 #define _gloffset_Vertex4dv 143
208 #define _gloffset_Vertex4f 144
209 #define _gloffset_Vertex4fv 145
210 #define _gloffset_Vertex4i 146
211 #define _gloffset_Vertex4iv 147
212 #define _gloffset_Vertex4s 148
213 #define _gloffset_Vertex4sv 149
214 #define _gloffset_ClipPlane 150
215 #define _gloffset_ColorMaterial 151
216 #define _gloffset_CullFace 152
217 #define _gloffset_Fogf 153
218 #define _gloffset_Fogfv 154
219 #define _gloffset_Fogi 155
220 #define _gloffset_Fogiv 156
221 #define _gloffset_FrontFace 157
222 #define _gloffset_Hint 158
223 #define _gloffset_Lightf 159
224 #define _gloffset_Lightfv 160
225 #define _gloffset_Lighti 161
226 #define _gloffset_Lightiv 162
227 #define _gloffset_LightModelf 163
228 #define _gloffset_LightModelfv 164
229 #define _gloffset_LightModeli 165
230 #define _gloffset_LightModeliv 166
231 #define _gloffset_LineStipple 167
232 #define _gloffset_LineWidth 168
233 #define _gloffset_Materialf 169
234 #define _gloffset_Materialfv 170
235 #define _gloffset_Materiali 171
236 #define _gloffset_Materialiv 172
237 #define _gloffset_PointSize 173
238 #define _gloffset_PolygonMode 174
239 #define _gloffset_PolygonStipple 175
240 #define _gloffset_Scissor 176
241 #define _gloffset_ShadeModel 177
242 #define _gloffset_TexParameterf 178
243 #define _gloffset_TexParameterfv 179
244 #define _gloffset_TexParameteri 180
245 #define _gloffset_TexParameteriv 181
246 #define _gloffset_TexImage1D 182
247 #define _gloffset_TexImage2D 183
248 #define _gloffset_TexEnvf 184
249 #define _gloffset_TexEnvfv 185
250 #define _gloffset_TexEnvi 186
251 #define _gloffset_TexEnviv 187
252 #define _gloffset_TexGend 188
253 #define _gloffset_TexGendv 189
254 #define _gloffset_TexGenf 190
255 #define _gloffset_TexGenfv 191
256 #define _gloffset_TexGeni 192
257 #define _gloffset_TexGeniv 193
258 #define _gloffset_FeedbackBuffer 194
259 #define _gloffset_SelectBuffer 195
260 #define _gloffset_RenderMode 196
261 #define _gloffset_InitNames 197
262 #define _gloffset_LoadName 198
263 #define _gloffset_PassThrough 199
264 #define _gloffset_PopName 200
265 #define _gloffset_PushName 201
266 #define _gloffset_DrawBuffer 202
267 #define _gloffset_Clear 203
268 #define _gloffset_ClearAccum 204
269 #define _gloffset_ClearIndex 205
270 #define _gloffset_ClearColor 206
271 #define _gloffset_ClearStencil 207
272 #define _gloffset_ClearDepth 208
273 #define _gloffset_StencilMask 209
274 #define _gloffset_ColorMask 210
275 #define _gloffset_DepthMask 211
276 #define _gloffset_IndexMask 212
277 #define _gloffset_Accum 213
278 #define _gloffset_Disable 214
279 #define _gloffset_Enable 215
280 #define _gloffset_Finish 216
281 #define _gloffset_Flush 217
282 #define _gloffset_PopAttrib 218
283 #define _gloffset_PushAttrib 219
284 #define _gloffset_Map1d 220
285 #define _gloffset_Map1f 221
286 #define _gloffset_Map2d 222
287 #define _gloffset_Map2f 223
288 #define _gloffset_MapGrid1d 224
289 #define _gloffset_MapGrid1f 225
290 #define _gloffset_MapGrid2d 226
291 #define _gloffset_MapGrid2f 227
292 #define _gloffset_EvalCoord1d 228
293 #define _gloffset_EvalCoord1dv 229
294 #define _gloffset_EvalCoord1f 230
295 #define _gloffset_EvalCoord1fv 231
296 #define _gloffset_EvalCoord2d 232
297 #define _gloffset_EvalCoord2dv 233
298 #define _gloffset_EvalCoord2f 234
299 #define _gloffset_EvalCoord2fv 235
300 #define _gloffset_EvalMesh1 236
301 #define _gloffset_EvalPoint1 237
302 #define _gloffset_EvalMesh2 238
303 #define _gloffset_EvalPoint2 239
304 #define _gloffset_AlphaFunc 240
305 #define _gloffset_BlendFunc 241
306 #define _gloffset_LogicOp 242
307 #define _gloffset_StencilFunc 243
308 #define _gloffset_StencilOp 244
309 #define _gloffset_DepthFunc 245
310 #define _gloffset_PixelZoom 246
311 #define _gloffset_PixelTransferf 247
312 #define _gloffset_PixelTransferi 248
313 #define _gloffset_PixelStoref 249
314 #define _gloffset_PixelStorei 250
315 #define _gloffset_PixelMapfv 251
316 #define _gloffset_PixelMapuiv 252
317 #define _gloffset_PixelMapusv 253
318 #define _gloffset_ReadBuffer 254
319 #define _gloffset_CopyPixels 255
320 #define _gloffset_ReadPixels 256
321 #define _gloffset_DrawPixels 257
322 #define _gloffset_GetBooleanv 258
323 #define _gloffset_GetClipPlane 259
324 #define _gloffset_GetDoublev 260
325 #define _gloffset_GetError 261
326 #define _gloffset_GetFloatv 262
327 #define _gloffset_GetIntegerv 263
328 #define _gloffset_GetLightfv 264
329 #define _gloffset_GetLightiv 265
330 #define _gloffset_GetMapdv 266
331 #define _gloffset_GetMapfv 267
332 #define _gloffset_GetMapiv 268
333 #define _gloffset_GetMaterialfv 269
334 #define _gloffset_GetMaterialiv 270
335 #define _gloffset_GetPixelMapfv 271
336 #define _gloffset_GetPixelMapuiv 272
337 #define _gloffset_GetPixelMapusv 273
338 #define _gloffset_GetPolygonStipple 274
339 #define _gloffset_GetString 275
340 #define _gloffset_GetTexEnvfv 276
341 #define _gloffset_GetTexEnviv 277
342 #define _gloffset_GetTexGendv 278
343 #define _gloffset_GetTexGenfv 279
344 #define _gloffset_GetTexGeniv 280
345 #define _gloffset_GetTexImage 281
346 #define _gloffset_GetTexParameterfv 282
347 #define _gloffset_GetTexParameteriv 283
348 #define _gloffset_GetTexLevelParameterfv 284
349 #define _gloffset_GetTexLevelParameteriv 285
350 #define _gloffset_IsEnabled 286
351 #define _gloffset_IsList 287
352 #define _gloffset_DepthRange 288
353 #define _gloffset_Frustum 289
354 #define _gloffset_LoadIdentity 290
355 #define _gloffset_LoadMatrixf 291
356 #define _gloffset_LoadMatrixd 292
357 #define _gloffset_MatrixMode 293
358 #define _gloffset_MultMatrixf 294
359 #define _gloffset_MultMatrixd 295
360 #define _gloffset_Ortho 296
361 #define _gloffset_PopMatrix 297
362 #define _gloffset_PushMatrix 298
363 #define _gloffset_Rotated 299
364 #define _gloffset_Rotatef 300
365 #define _gloffset_Scaled 301
366 #define _gloffset_Scalef 302
367 #define _gloffset_Translated 303
368 #define _gloffset_Translatef 304
369 #define _gloffset_Viewport 305
370 #define _gloffset_ArrayElement 306
371 #define _gloffset_BindTexture 307
372 #define _gloffset_ColorPointer 308
373 #define _gloffset_DisableClientState 309
374 #define _gloffset_DrawArrays 310
375 #define _gloffset_DrawElements 311
376 #define _gloffset_EdgeFlagPointer 312
377 #define _gloffset_EnableClientState 313
378 #define _gloffset_IndexPointer 314
379 #define _gloffset_Indexub 315
380 #define _gloffset_Indexubv 316
381 #define _gloffset_InterleavedArrays 317
382 #define _gloffset_NormalPointer 318
383 #define _gloffset_PolygonOffset 319
384 #define _gloffset_TexCoordPointer 320
385 #define _gloffset_VertexPointer 321
386 #define _gloffset_AreTexturesResident 322
387 #define _gloffset_CopyTexImage1D 323
388 #define _gloffset_CopyTexImage2D 324
389 #define _gloffset_CopyTexSubImage1D 325
390 #define _gloffset_CopyTexSubImage2D 326
391 #define _gloffset_DeleteTextures 327
392 #define _gloffset_GenTextures 328
393 #define _gloffset_GetPointerv 329
394 #define _gloffset_IsTexture 330
395 #define _gloffset_PrioritizeTextures 331
396 #define _gloffset_TexSubImage1D 332
397 #define _gloffset_TexSubImage2D 333
398 #define _gloffset_PopClientAttrib 334
399 #define _gloffset_PushClientAttrib 335
400 #define _gloffset_BlendColor 336
401 #define _gloffset_BlendEquation 337
402 #define _gloffset_DrawRangeElements 338
403 #define _gloffset_ColorTable 339
404 #define _gloffset_ColorTableParameterfv 340
405 #define _gloffset_ColorTableParameteriv 341
406 #define _gloffset_CopyColorTable 342
407 #define _gloffset_GetColorTable 343
408 #define _gloffset_GetColorTableParameterfv 344
409 #define _gloffset_GetColorTableParameteriv 345
410 #define _gloffset_ColorSubTable 346
411 #define _gloffset_CopyColorSubTable 347
412 #define _gloffset_ConvolutionFilter1D 348
413 #define _gloffset_ConvolutionFilter2D 349
414 #define _gloffset_ConvolutionParameterf 350
415 #define _gloffset_ConvolutionParameterfv 351
416 #define _gloffset_ConvolutionParameteri 352
417 #define _gloffset_ConvolutionParameteriv 353
418 #define _gloffset_CopyConvolutionFilter1D 354
419 #define _gloffset_CopyConvolutionFilter2D 355
420 #define _gloffset_GetConvolutionFilter 356
421 #define _gloffset_GetConvolutionParameterfv 357
422 #define _gloffset_GetConvolutionParameteriv 358
423 #define _gloffset_GetSeparableFilter 359
424 #define _gloffset_SeparableFilter2D 360
425 #define _gloffset_GetHistogram 361
426 #define _gloffset_GetHistogramParameterfv 362
427 #define _gloffset_GetHistogramParameteriv 363
428 #define _gloffset_GetMinmax 364
429 #define _gloffset_GetMinmaxParameterfv 365
430 #define _gloffset_GetMinmaxParameteriv 366
431 #define _gloffset_Histogram 367
432 #define _gloffset_Minmax 368
433 #define _gloffset_ResetHistogram 369
434 #define _gloffset_ResetMinmax 370
435 #define _gloffset_TexImage3D 371
436 #define _gloffset_TexSubImage3D 372
437 #define _gloffset_CopyTexSubImage3D 373
438 #define _gloffset_ActiveTextureARB 374
439 #define _gloffset_ClientActiveTextureARB 375
440 #define _gloffset_MultiTexCoord1dARB 376
441 #define _gloffset_MultiTexCoord1dvARB 377
442 #define _gloffset_MultiTexCoord1fARB 378
443 #define _gloffset_MultiTexCoord1fvARB 379
444 #define _gloffset_MultiTexCoord1iARB 380
445 #define _gloffset_MultiTexCoord1ivARB 381
446 #define _gloffset_MultiTexCoord1sARB 382
447 #define _gloffset_MultiTexCoord1svARB 383
448 #define _gloffset_MultiTexCoord2dARB 384
449 #define _gloffset_MultiTexCoord2dvARB 385
450 #define _gloffset_MultiTexCoord2fARB 386
451 #define _gloffset_MultiTexCoord2fvARB 387
452 #define _gloffset_MultiTexCoord2iARB 388
453 #define _gloffset_MultiTexCoord2ivARB 389
454 #define _gloffset_MultiTexCoord2sARB 390
455 #define _gloffset_MultiTexCoord2svARB 391
456 #define _gloffset_MultiTexCoord3dARB 392
457 #define _gloffset_MultiTexCoord3dvARB 393
458 #define _gloffset_MultiTexCoord3fARB 394
459 #define _gloffset_MultiTexCoord3fvARB 395
460 #define _gloffset_MultiTexCoord3iARB 396
461 #define _gloffset_MultiTexCoord3ivARB 397
462 #define _gloffset_MultiTexCoord3sARB 398
463 #define _gloffset_MultiTexCoord3svARB 399
464 #define _gloffset_MultiTexCoord4dARB 400
465 #define _gloffset_MultiTexCoord4dvARB 401
466 #define _gloffset_MultiTexCoord4fARB 402
467 #define _gloffset_MultiTexCoord4fvARB 403
468 #define _gloffset_MultiTexCoord4iARB 404
469 #define _gloffset_MultiTexCoord4ivARB 405
470 #define _gloffset_MultiTexCoord4sARB 406
471 #define _gloffset_MultiTexCoord4svARB 407
472
473 #if !FEATURE_remap_table
474
475 #define _gloffset_AttachShader 408
476 #define _gloffset_CreateProgram 409
477 #define _gloffset_CreateShader 410
478 #define _gloffset_DeleteProgram 411
479 #define _gloffset_DeleteShader 412
480 #define _gloffset_DetachShader 413
481 #define _gloffset_GetAttachedShaders 414
482 #define _gloffset_GetProgramInfoLog 415
483 #define _gloffset_GetProgramiv 416
484 #define _gloffset_GetShaderInfoLog 417
485 #define _gloffset_GetShaderiv 418
486 #define _gloffset_IsProgram 419
487 #define _gloffset_IsShader 420
488 #define _gloffset_StencilFuncSeparate 421
489 #define _gloffset_StencilMaskSeparate 422
490 #define _gloffset_StencilOpSeparate 423
491 #define _gloffset_UniformMatrix2x3fv 424
492 #define _gloffset_UniformMatrix2x4fv 425
493 #define _gloffset_UniformMatrix3x2fv 426
494 #define _gloffset_UniformMatrix3x4fv 427
495 #define _gloffset_UniformMatrix4x2fv 428
496 #define _gloffset_UniformMatrix4x3fv 429
497 #define _gloffset_ClampColor 430
498 #define _gloffset_ClearBufferfi 431
499 #define _gloffset_ClearBufferfv 432
500 #define _gloffset_ClearBufferiv 433
501 #define _gloffset_ClearBufferuiv 434
502 #define _gloffset_GetStringi 435
503 #define _gloffset_TexBuffer 436
504 #define _gloffset_FramebufferTexture 437
505 #define _gloffset_GetBufferParameteri64v 438
506 #define _gloffset_GetInteger64i_v 439
507 #define _gloffset_VertexAttribDivisor 440
508 #define _gloffset_LoadTransposeMatrixdARB 441
509 #define _gloffset_LoadTransposeMatrixfARB 442
510 #define _gloffset_MultTransposeMatrixdARB 443
511 #define _gloffset_MultTransposeMatrixfARB 444
512 #define _gloffset_SampleCoverageARB 445
513 #define _gloffset_CompressedTexImage1DARB 446
514 #define _gloffset_CompressedTexImage2DARB 447
515 #define _gloffset_CompressedTexImage3DARB 448
516 #define _gloffset_CompressedTexSubImage1DARB 449
517 #define _gloffset_CompressedTexSubImage2DARB 450
518 #define _gloffset_CompressedTexSubImage3DARB 451
519 #define _gloffset_GetCompressedTexImageARB 452
520 #define _gloffset_DisableVertexAttribArrayARB 453
521 #define _gloffset_EnableVertexAttribArrayARB 454
522 #define _gloffset_GetProgramEnvParameterdvARB 455
523 #define _gloffset_GetProgramEnvParameterfvARB 456
524 #define _gloffset_GetProgramLocalParameterdvARB 457
525 #define _gloffset_GetProgramLocalParameterfvARB 458
526 #define _gloffset_GetProgramStringARB 459
527 #define _gloffset_GetProgramivARB 460
528 #define _gloffset_GetVertexAttribdvARB 461
529 #define _gloffset_GetVertexAttribfvARB 462
530 #define _gloffset_GetVertexAttribivARB 463
531 #define _gloffset_ProgramEnvParameter4dARB 464
532 #define _gloffset_ProgramEnvParameter4dvARB 465
533 #define _gloffset_ProgramEnvParameter4fARB 466
534 #define _gloffset_ProgramEnvParameter4fvARB 467
535 #define _gloffset_ProgramLocalParameter4dARB 468
536 #define _gloffset_ProgramLocalParameter4dvARB 469
537 #define _gloffset_ProgramLocalParameter4fARB 470
538 #define _gloffset_ProgramLocalParameter4fvARB 471
539 #define _gloffset_ProgramStringARB 472
540 #define _gloffset_VertexAttrib1dARB 473
541 #define _gloffset_VertexAttrib1dvARB 474
542 #define _gloffset_VertexAttrib1fARB 475
543 #define _gloffset_VertexAttrib1fvARB 476
544 #define _gloffset_VertexAttrib1sARB 477
545 #define _gloffset_VertexAttrib1svARB 478
546 #define _gloffset_VertexAttrib2dARB 479
547 #define _gloffset_VertexAttrib2dvARB 480
548 #define _gloffset_VertexAttrib2fARB 481
549 #define _gloffset_VertexAttrib2fvARB 482
550 #define _gloffset_VertexAttrib2sARB 483
551 #define _gloffset_VertexAttrib2svARB 484
552 #define _gloffset_VertexAttrib3dARB 485
553 #define _gloffset_VertexAttrib3dvARB 486
554 #define _gloffset_VertexAttrib3fARB 487
555 #define _gloffset_VertexAttrib3fvARB 488
556 #define _gloffset_VertexAttrib3sARB 489
557 #define _gloffset_VertexAttrib3svARB 490
558 #define _gloffset_VertexAttrib4NbvARB 491
559 #define _gloffset_VertexAttrib4NivARB 492
560 #define _gloffset_VertexAttrib4NsvARB 493
561 #define _gloffset_VertexAttrib4NubARB 494
562 #define _gloffset_VertexAttrib4NubvARB 495
563 #define _gloffset_VertexAttrib4NuivARB 496
564 #define _gloffset_VertexAttrib4NusvARB 497
565 #define _gloffset_VertexAttrib4bvARB 498
566 #define _gloffset_VertexAttrib4dARB 499
567 #define _gloffset_VertexAttrib4dvARB 500
568 #define _gloffset_VertexAttrib4fARB 501
569 #define _gloffset_VertexAttrib4fvARB 502
570 #define _gloffset_VertexAttrib4ivARB 503
571 #define _gloffset_VertexAttrib4sARB 504
572 #define _gloffset_VertexAttrib4svARB 505
573 #define _gloffset_VertexAttrib4ubvARB 506
574 #define _gloffset_VertexAttrib4uivARB 507
575 #define _gloffset_VertexAttrib4usvARB 508
576 #define _gloffset_VertexAttribPointerARB 509
577 #define _gloffset_BindBufferARB 510
578 #define _gloffset_BufferDataARB 511
579 #define _gloffset_BufferSubDataARB 512
580 #define _gloffset_DeleteBuffersARB 513
581 #define _gloffset_GenBuffersARB 514
582 #define _gloffset_GetBufferParameterivARB 515
583 #define _gloffset_GetBufferPointervARB 516
584 #define _gloffset_GetBufferSubDataARB 517
585 #define _gloffset_IsBufferARB 518
586 #define _gloffset_MapBufferARB 519
587 #define _gloffset_UnmapBufferARB 520
588 #define _gloffset_BeginQueryARB 521
589 #define _gloffset_DeleteQueriesARB 522
590 #define _gloffset_EndQueryARB 523
591 #define _gloffset_GenQueriesARB 524
592 #define _gloffset_GetQueryObjectivARB 525
593 #define _gloffset_GetQueryObjectuivARB 526
594 #define _gloffset_GetQueryivARB 527
595 #define _gloffset_IsQueryARB 528
596 #define _gloffset_AttachObjectARB 529
597 #define _gloffset_CompileShaderARB 530
598 #define _gloffset_CreateProgramObjectARB 531
599 #define _gloffset_CreateShaderObjectARB 532
600 #define _gloffset_DeleteObjectARB 533
601 #define _gloffset_DetachObjectARB 534
602 #define _gloffset_GetActiveUniformARB 535
603 #define _gloffset_GetAttachedObjectsARB 536
604 #define _gloffset_GetHandleARB 537
605 #define _gloffset_GetInfoLogARB 538
606 #define _gloffset_GetObjectParameterfvARB 539
607 #define _gloffset_GetObjectParameterivARB 540
608 #define _gloffset_GetShaderSourceARB 541
609 #define _gloffset_GetUniformLocationARB 542
610 #define _gloffset_GetUniformfvARB 543
611 #define _gloffset_GetUniformivARB 544
612 #define _gloffset_LinkProgramARB 545
613 #define _gloffset_ShaderSourceARB 546
614 #define _gloffset_Uniform1fARB 547
615 #define _gloffset_Uniform1fvARB 548
616 #define _gloffset_Uniform1iARB 549
617 #define _gloffset_Uniform1ivARB 550
618 #define _gloffset_Uniform2fARB 551
619 #define _gloffset_Uniform2fvARB 552
620 #define _gloffset_Uniform2iARB 553
621 #define _gloffset_Uniform2ivARB 554
622 #define _gloffset_Uniform3fARB 555
623 #define _gloffset_Uniform3fvARB 556
624 #define _gloffset_Uniform3iARB 557
625 #define _gloffset_Uniform3ivARB 558
626 #define _gloffset_Uniform4fARB 559
627 #define _gloffset_Uniform4fvARB 560
628 #define _gloffset_Uniform4iARB 561
629 #define _gloffset_Uniform4ivARB 562
630 #define _gloffset_UniformMatrix2fvARB 563
631 #define _gloffset_UniformMatrix3fvARB 564
632 #define _gloffset_UniformMatrix4fvARB 565
633 #define _gloffset_UseProgramObjectARB 566
634 #define _gloffset_ValidateProgramARB 567
635 #define _gloffset_BindAttribLocationARB 568
636 #define _gloffset_GetActiveAttribARB 569
637 #define _gloffset_GetAttribLocationARB 570
638 #define _gloffset_DrawBuffersARB 571
639 #define _gloffset_ClampColorARB 572
640 #define _gloffset_DrawArraysInstancedARB 573
641 #define _gloffset_DrawElementsInstancedARB 574
642 #define _gloffset_RenderbufferStorageMultisample 575
643 #define _gloffset_FramebufferTextureARB 576
644 #define _gloffset_FramebufferTextureFaceARB 577
645 #define _gloffset_ProgramParameteriARB 578
646 #define _gloffset_VertexAttribDivisorARB 579
647 #define _gloffset_FlushMappedBufferRange 580
648 #define _gloffset_MapBufferRange 581
649 #define _gloffset_TexBufferARB 582
650 #define _gloffset_BindVertexArray 583
651 #define _gloffset_GenVertexArrays 584
652 #define _gloffset_CopyBufferSubData 585
653 #define _gloffset_ClientWaitSync 586
654 #define _gloffset_DeleteSync 587
655 #define _gloffset_FenceSync 588
656 #define _gloffset_GetInteger64v 589
657 #define _gloffset_GetSynciv 590
658 #define _gloffset_IsSync 591
659 #define _gloffset_WaitSync 592
660 #define _gloffset_DrawElementsBaseVertex 593
661 #define _gloffset_DrawElementsInstancedBaseVertex 594
662 #define _gloffset_DrawRangeElementsBaseVertex 595
663 #define _gloffset_MultiDrawElementsBaseVertex 596
664 #define _gloffset_BlendEquationSeparateiARB 597
665 #define _gloffset_BlendEquationiARB 598
666 #define _gloffset_BlendFuncSeparateiARB 599
667 #define _gloffset_BlendFunciARB 600
668 #define _gloffset_BindSampler 601
669 #define _gloffset_DeleteSamplers 602
670 #define _gloffset_GenSamplers 603
671 #define _gloffset_GetSamplerParameterIiv 604
672 #define _gloffset_GetSamplerParameterIuiv 605
673 #define _gloffset_GetSamplerParameterfv 606
674 #define _gloffset_GetSamplerParameteriv 607
675 #define _gloffset_IsSampler 608
676 #define _gloffset_SamplerParameterIiv 609
677 #define _gloffset_SamplerParameterIuiv 610
678 #define _gloffset_SamplerParameterf 611
679 #define _gloffset_SamplerParameterfv 612
680 #define _gloffset_SamplerParameteri 613
681 #define _gloffset_SamplerParameteriv 614
682 #define _gloffset_ColorP3ui 615
683 #define _gloffset_ColorP3uiv 616
684 #define _gloffset_ColorP4ui 617
685 #define _gloffset_ColorP4uiv 618
686 #define _gloffset_MultiTexCoordP1ui 619
687 #define _gloffset_MultiTexCoordP1uiv 620
688 #define _gloffset_MultiTexCoordP2ui 621
689 #define _gloffset_MultiTexCoordP2uiv 622
690 #define _gloffset_MultiTexCoordP3ui 623
691 #define _gloffset_MultiTexCoordP3uiv 624
692 #define _gloffset_MultiTexCoordP4ui 625
693 #define _gloffset_MultiTexCoordP4uiv 626
694 #define _gloffset_NormalP3ui 627
695 #define _gloffset_NormalP3uiv 628
696 #define _gloffset_SecondaryColorP3ui 629
697 #define _gloffset_SecondaryColorP3uiv 630
698 #define _gloffset_TexCoordP1ui 631
699 #define _gloffset_TexCoordP1uiv 632
700 #define _gloffset_TexCoordP2ui 633
701 #define _gloffset_TexCoordP2uiv 634
702 #define _gloffset_TexCoordP3ui 635
703 #define _gloffset_TexCoordP3uiv 636
704 #define _gloffset_TexCoordP4ui 637
705 #define _gloffset_TexCoordP4uiv 638
706 #define _gloffset_VertexAttribP1ui 639
707 #define _gloffset_VertexAttribP1uiv 640
708 #define _gloffset_VertexAttribP2ui 641
709 #define _gloffset_VertexAttribP2uiv 642
710 #define _gloffset_VertexAttribP3ui 643
711 #define _gloffset_VertexAttribP3uiv 644
712 #define _gloffset_VertexAttribP4ui 645
713 #define _gloffset_VertexAttribP4uiv 646
714 #define _gloffset_VertexP2ui 647
715 #define _gloffset_VertexP2uiv 648
716 #define _gloffset_VertexP3ui 649
717 #define _gloffset_VertexP3uiv 650
718 #define _gloffset_VertexP4ui 651
719 #define _gloffset_VertexP4uiv 652
720 #define _gloffset_BindTransformFeedback 653
721 #define _gloffset_DeleteTransformFeedbacks 654
722 #define _gloffset_DrawTransformFeedback 655
723 #define _gloffset_GenTransformFeedbacks 656
724 #define _gloffset_IsTransformFeedback 657
725 #define _gloffset_PauseTransformFeedback 658
726 #define _gloffset_ResumeTransformFeedback 659
727 #define _gloffset_ClearDepthf 660
728 #define _gloffset_DepthRangef 661
729 #define _gloffset_GetShaderPrecisionFormat 662
730 #define _gloffset_ReleaseShaderCompiler 663
731 #define _gloffset_ShaderBinary 664
732 #define _gloffset_GetGraphicsResetStatusARB 665
733 #define _gloffset_GetnColorTableARB 666
734 #define _gloffset_GetnCompressedTexImageARB 667
735 #define _gloffset_GetnConvolutionFilterARB 668
736 #define _gloffset_GetnHistogramARB 669
737 #define _gloffset_GetnMapdvARB 670
738 #define _gloffset_GetnMapfvARB 671
739 #define _gloffset_GetnMapivARB 672
740 #define _gloffset_GetnMinmaxARB 673
741 #define _gloffset_GetnPixelMapfvARB 674
742 #define _gloffset_GetnPixelMapuivARB 675
743 #define _gloffset_GetnPixelMapusvARB 676
744 #define _gloffset_GetnPolygonStippleARB 677
745 #define _gloffset_GetnSeparableFilterARB 678
746 #define _gloffset_GetnTexImageARB 679
747 #define _gloffset_GetnUniformdvARB 680
748 #define _gloffset_GetnUniformfvARB 681
749 #define _gloffset_GetnUniformivARB 682
750 #define _gloffset_GetnUniformuivARB 683
751 #define _gloffset_ReadnPixelsARB 684
752 #define _gloffset_PolygonOffsetEXT 685
753 #define _gloffset_GetPixelTexGenParameterfvSGIS 686
754 #define _gloffset_GetPixelTexGenParameterivSGIS 687
755 #define _gloffset_PixelTexGenParameterfSGIS 688
756 #define _gloffset_PixelTexGenParameterfvSGIS 689
757 #define _gloffset_PixelTexGenParameteriSGIS 690
758 #define _gloffset_PixelTexGenParameterivSGIS 691
759 #define _gloffset_SampleMaskSGIS 692
760 #define _gloffset_SamplePatternSGIS 693
761 #define _gloffset_ColorPointerEXT 694
762 #define _gloffset_EdgeFlagPointerEXT 695
763 #define _gloffset_IndexPointerEXT 696
764 #define _gloffset_NormalPointerEXT 697
765 #define _gloffset_TexCoordPointerEXT 698
766 #define _gloffset_VertexPointerEXT 699
767 #define _gloffset_PointParameterfEXT 700
768 #define _gloffset_PointParameterfvEXT 701
769 #define _gloffset_LockArraysEXT 702
770 #define _gloffset_UnlockArraysEXT 703
771 #define _gloffset_SecondaryColor3bEXT 704
772 #define _gloffset_SecondaryColor3bvEXT 705
773 #define _gloffset_SecondaryColor3dEXT 706
774 #define _gloffset_SecondaryColor3dvEXT 707
775 #define _gloffset_SecondaryColor3fEXT 708
776 #define _gloffset_SecondaryColor3fvEXT 709
777 #define _gloffset_SecondaryColor3iEXT 710
778 #define _gloffset_SecondaryColor3ivEXT 711
779 #define _gloffset_SecondaryColor3sEXT 712
780 #define _gloffset_SecondaryColor3svEXT 713
781 #define _gloffset_SecondaryColor3ubEXT 714
782 #define _gloffset_SecondaryColor3ubvEXT 715
783 #define _gloffset_SecondaryColor3uiEXT 716
784 #define _gloffset_SecondaryColor3uivEXT 717
785 #define _gloffset_SecondaryColor3usEXT 718
786 #define _gloffset_SecondaryColor3usvEXT 719
787 #define _gloffset_SecondaryColorPointerEXT 720
788 #define _gloffset_MultiDrawArraysEXT 721
789 #define _gloffset_MultiDrawElementsEXT 722
790 #define _gloffset_FogCoordPointerEXT 723
791 #define _gloffset_FogCoorddEXT 724
792 #define _gloffset_FogCoorddvEXT 725
793 #define _gloffset_FogCoordfEXT 726
794 #define _gloffset_FogCoordfvEXT 727
795 #define _gloffset_PixelTexGenSGIX 728
796 #define _gloffset_BlendFuncSeparateEXT 729
797 #define _gloffset_FlushVertexArrayRangeNV 730
798 #define _gloffset_VertexArrayRangeNV 731
799 #define _gloffset_CombinerInputNV 732
800 #define _gloffset_CombinerOutputNV 733
801 #define _gloffset_CombinerParameterfNV 734
802 #define _gloffset_CombinerParameterfvNV 735
803 #define _gloffset_CombinerParameteriNV 736
804 #define _gloffset_CombinerParameterivNV 737
805 #define _gloffset_FinalCombinerInputNV 738
806 #define _gloffset_GetCombinerInputParameterfvNV 739
807 #define _gloffset_GetCombinerInputParameterivNV 740
808 #define _gloffset_GetCombinerOutputParameterfvNV 741
809 #define _gloffset_GetCombinerOutputParameterivNV 742
810 #define _gloffset_GetFinalCombinerInputParameterfvNV 743
811 #define _gloffset_GetFinalCombinerInputParameterivNV 744
812 #define _gloffset_ResizeBuffersMESA 745
813 #define _gloffset_WindowPos2dMESA 746
814 #define _gloffset_WindowPos2dvMESA 747
815 #define _gloffset_WindowPos2fMESA 748
816 #define _gloffset_WindowPos2fvMESA 749
817 #define _gloffset_WindowPos2iMESA 750
818 #define _gloffset_WindowPos2ivMESA 751
819 #define _gloffset_WindowPos2sMESA 752
820 #define _gloffset_WindowPos2svMESA 753
821 #define _gloffset_WindowPos3dMESA 754
822 #define _gloffset_WindowPos3dvMESA 755
823 #define _gloffset_WindowPos3fMESA 756
824 #define _gloffset_WindowPos3fvMESA 757
825 #define _gloffset_WindowPos3iMESA 758
826 #define _gloffset_WindowPos3ivMESA 759
827 #define _gloffset_WindowPos3sMESA 760
828 #define _gloffset_WindowPos3svMESA 761
829 #define _gloffset_WindowPos4dMESA 762
830 #define _gloffset_WindowPos4dvMESA 763
831 #define _gloffset_WindowPos4fMESA 764
832 #define _gloffset_WindowPos4fvMESA 765
833 #define _gloffset_WindowPos4iMESA 766
834 #define _gloffset_WindowPos4ivMESA 767
835 #define _gloffset_WindowPos4sMESA 768
836 #define _gloffset_WindowPos4svMESA 769
837 #define _gloffset_MultiModeDrawArraysIBM 770
838 #define _gloffset_MultiModeDrawElementsIBM 771
839 #define _gloffset_DeleteFencesNV 772
840 #define _gloffset_FinishFenceNV 773
841 #define _gloffset_GenFencesNV 774
842 #define _gloffset_GetFenceivNV 775
843 #define _gloffset_IsFenceNV 776
844 #define _gloffset_SetFenceNV 777
845 #define _gloffset_TestFenceNV 778
846 #define _gloffset_AreProgramsResidentNV 779
847 #define _gloffset_BindProgramNV 780
848 #define _gloffset_DeleteProgramsNV 781
849 #define _gloffset_ExecuteProgramNV 782
850 #define _gloffset_GenProgramsNV 783
851 #define _gloffset_GetProgramParameterdvNV 784
852 #define _gloffset_GetProgramParameterfvNV 785
853 #define _gloffset_GetProgramStringNV 786
854 #define _gloffset_GetProgramivNV 787
855 #define _gloffset_GetTrackMatrixivNV 788
856 #define _gloffset_GetVertexAttribPointervNV 789
857 #define _gloffset_GetVertexAttribdvNV 790
858 #define _gloffset_GetVertexAttribfvNV 791
859 #define _gloffset_GetVertexAttribivNV 792
860 #define _gloffset_IsProgramNV 793
861 #define _gloffset_LoadProgramNV 794
862 #define _gloffset_ProgramParameters4dvNV 795
863 #define _gloffset_ProgramParameters4fvNV 796
864 #define _gloffset_RequestResidentProgramsNV 797
865 #define _gloffset_TrackMatrixNV 798
866 #define _gloffset_VertexAttrib1dNV 799
867 #define _gloffset_VertexAttrib1dvNV 800
868 #define _gloffset_VertexAttrib1fNV 801
869 #define _gloffset_VertexAttrib1fvNV 802
870 #define _gloffset_VertexAttrib1sNV 803
871 #define _gloffset_VertexAttrib1svNV 804
872 #define _gloffset_VertexAttrib2dNV 805
873 #define _gloffset_VertexAttrib2dvNV 806
874 #define _gloffset_VertexAttrib2fNV 807
875 #define _gloffset_VertexAttrib2fvNV 808
876 #define _gloffset_VertexAttrib2sNV 809
877 #define _gloffset_VertexAttrib2svNV 810
878 #define _gloffset_VertexAttrib3dNV 811
879 #define _gloffset_VertexAttrib3dvNV 812
880 #define _gloffset_VertexAttrib3fNV 813
881 #define _gloffset_VertexAttrib3fvNV 814
882 #define _gloffset_VertexAttrib3sNV 815
883 #define _gloffset_VertexAttrib3svNV 816
884 #define _gloffset_VertexAttrib4dNV 817
885 #define _gloffset_VertexAttrib4dvNV 818
886 #define _gloffset_VertexAttrib4fNV 819
887 #define _gloffset_VertexAttrib4fvNV 820
888 #define _gloffset_VertexAttrib4sNV 821
889 #define _gloffset_VertexAttrib4svNV 822
890 #define _gloffset_VertexAttrib4ubNV 823
891 #define _gloffset_VertexAttrib4ubvNV 824
892 #define _gloffset_VertexAttribPointerNV 825
893 #define _gloffset_VertexAttribs1dvNV 826
894 #define _gloffset_VertexAttribs1fvNV 827
895 #define _gloffset_VertexAttribs1svNV 828
896 #define _gloffset_VertexAttribs2dvNV 829
897 #define _gloffset_VertexAttribs2fvNV 830
898 #define _gloffset_VertexAttribs2svNV 831
899 #define _gloffset_VertexAttribs3dvNV 832
900 #define _gloffset_VertexAttribs3fvNV 833
901 #define _gloffset_VertexAttribs3svNV 834
902 #define _gloffset_VertexAttribs4dvNV 835
903 #define _gloffset_VertexAttribs4fvNV 836
904 #define _gloffset_VertexAttribs4svNV 837
905 #define _gloffset_VertexAttribs4ubvNV 838
906 #define _gloffset_GetTexBumpParameterfvATI 839
907 #define _gloffset_GetTexBumpParameterivATI 840
908 #define _gloffset_TexBumpParameterfvATI 841
909 #define _gloffset_TexBumpParameterivATI 842
910 #define _gloffset_AlphaFragmentOp1ATI 843
911 #define _gloffset_AlphaFragmentOp2ATI 844
912 #define _gloffset_AlphaFragmentOp3ATI 845
913 #define _gloffset_BeginFragmentShaderATI 846
914 #define _gloffset_BindFragmentShaderATI 847
915 #define _gloffset_ColorFragmentOp1ATI 848
916 #define _gloffset_ColorFragmentOp2ATI 849
917 #define _gloffset_ColorFragmentOp3ATI 850
918 #define _gloffset_DeleteFragmentShaderATI 851
919 #define _gloffset_EndFragmentShaderATI 852
920 #define _gloffset_GenFragmentShadersATI 853
921 #define _gloffset_PassTexCoordATI 854
922 #define _gloffset_SampleMapATI 855
923 #define _gloffset_SetFragmentShaderConstantATI 856
924 #define _gloffset_PointParameteriNV 857
925 #define _gloffset_PointParameterivNV 858
926 #define _gloffset_ActiveStencilFaceEXT 859
927 #define _gloffset_BindVertexArrayAPPLE 860
928 #define _gloffset_DeleteVertexArraysAPPLE 861
929 #define _gloffset_GenVertexArraysAPPLE 862
930 #define _gloffset_IsVertexArrayAPPLE 863
931 #define _gloffset_GetProgramNamedParameterdvNV 864
932 #define _gloffset_GetProgramNamedParameterfvNV 865
933 #define _gloffset_ProgramNamedParameter4dNV 866
934 #define _gloffset_ProgramNamedParameter4dvNV 867
935 #define _gloffset_ProgramNamedParameter4fNV 868
936 #define _gloffset_ProgramNamedParameter4fvNV 869
937 #define _gloffset_PrimitiveRestartIndexNV 870
938 #define _gloffset_PrimitiveRestartNV 871
939 #define _gloffset_DepthBoundsEXT 872
940 #define _gloffset_BlendEquationSeparateEXT 873
941 #define _gloffset_BindFramebufferEXT 874
942 #define _gloffset_BindRenderbufferEXT 875
943 #define _gloffset_CheckFramebufferStatusEXT 876
944 #define _gloffset_DeleteFramebuffersEXT 877
945 #define _gloffset_DeleteRenderbuffersEXT 878
946 #define _gloffset_FramebufferRenderbufferEXT 879
947 #define _gloffset_FramebufferTexture1DEXT 880
948 #define _gloffset_FramebufferTexture2DEXT 881
949 #define _gloffset_FramebufferTexture3DEXT 882
950 #define _gloffset_GenFramebuffersEXT 883
951 #define _gloffset_GenRenderbuffersEXT 884
952 #define _gloffset_GenerateMipmapEXT 885
953 #define _gloffset_GetFramebufferAttachmentParameterivEXT 886
954 #define _gloffset_GetRenderbufferParameterivEXT 887
955 #define _gloffset_IsFramebufferEXT 888
956 #define _gloffset_IsRenderbufferEXT 889
957 #define _gloffset_RenderbufferStorageEXT 890
958 #define _gloffset_BlitFramebufferEXT 891
959 #define _gloffset_BufferParameteriAPPLE 892
960 #define _gloffset_FlushMappedBufferRangeAPPLE 893
961 #define _gloffset_BindFragDataLocationEXT 894
962 #define _gloffset_GetFragDataLocationEXT 895
963 #define _gloffset_GetUniformuivEXT 896
964 #define _gloffset_GetVertexAttribIivEXT 897
965 #define _gloffset_GetVertexAttribIuivEXT 898
966 #define _gloffset_Uniform1uiEXT 899
967 #define _gloffset_Uniform1uivEXT 900
968 #define _gloffset_Uniform2uiEXT 901
969 #define _gloffset_Uniform2uivEXT 902
970 #define _gloffset_Uniform3uiEXT 903
971 #define _gloffset_Uniform3uivEXT 904
972 #define _gloffset_Uniform4uiEXT 905
973 #define _gloffset_Uniform4uivEXT 906
974 #define _gloffset_VertexAttribI1iEXT 907
975 #define _gloffset_VertexAttribI1ivEXT 908
976 #define _gloffset_VertexAttribI1uiEXT 909
977 #define _gloffset_VertexAttribI1uivEXT 910
978 #define _gloffset_VertexAttribI2iEXT 911
979 #define _gloffset_VertexAttribI2ivEXT 912
980 #define _gloffset_VertexAttribI2uiEXT 913
981 #define _gloffset_VertexAttribI2uivEXT 914
982 #define _gloffset_VertexAttribI3iEXT 915
983 #define _gloffset_VertexAttribI3ivEXT 916
984 #define _gloffset_VertexAttribI3uiEXT 917
985 #define _gloffset_VertexAttribI3uivEXT 918
986 #define _gloffset_VertexAttribI4bvEXT 919
987 #define _gloffset_VertexAttribI4iEXT 920
988 #define _gloffset_VertexAttribI4ivEXT 921
989 #define _gloffset_VertexAttribI4svEXT 922
990 #define _gloffset_VertexAttribI4ubvEXT 923
991 #define _gloffset_VertexAttribI4uiEXT 924
992 #define _gloffset_VertexAttribI4uivEXT 925
993 #define _gloffset_VertexAttribI4usvEXT 926
994 #define _gloffset_VertexAttribIPointerEXT 927
995 #define _gloffset_FramebufferTextureLayerEXT 928
996 #define _gloffset_ColorMaskIndexedEXT 929
997 #define _gloffset_DisableIndexedEXT 930
998 #define _gloffset_EnableIndexedEXT 931
999 #define _gloffset_GetBooleanIndexedvEXT 932
1000 #define _gloffset_GetIntegerIndexedvEXT 933
1001 #define _gloffset_IsEnabledIndexedEXT 934
1002 #define _gloffset_ClearColorIiEXT 935
1003 #define _gloffset_ClearColorIuiEXT 936
1004 #define _gloffset_GetTexParameterIivEXT 937
1005 #define _gloffset_GetTexParameterIuivEXT 938
1006 #define _gloffset_TexParameterIivEXT 939
1007 #define _gloffset_TexParameterIuivEXT 940
1008 #define _gloffset_BeginConditionalRenderNV 941
1009 #define _gloffset_EndConditionalRenderNV 942
1010 #define _gloffset_BeginTransformFeedbackEXT 943
1011 #define _gloffset_BindBufferBaseEXT 944
1012 #define _gloffset_BindBufferOffsetEXT 945
1013 #define _gloffset_BindBufferRangeEXT 946
1014 #define _gloffset_EndTransformFeedbackEXT 947
1015 #define _gloffset_GetTransformFeedbackVaryingEXT 948
1016 #define _gloffset_TransformFeedbackVaryingsEXT 949
1017 #define _gloffset_ProvokingVertexEXT 950
1018 #define _gloffset_GetTexParameterPointervAPPLE 951
1019 #define _gloffset_TextureRangeAPPLE 952
1020 #define _gloffset_GetObjectParameterivAPPLE 953
1021 #define _gloffset_ObjectPurgeableAPPLE 954
1022 #define _gloffset_ObjectUnpurgeableAPPLE 955
1023 #define _gloffset_ActiveProgramEXT 956
1024 #define _gloffset_CreateShaderProgramEXT 957
1025 #define _gloffset_UseShaderProgramEXT 958
1026 #define _gloffset_TextureBarrierNV 959
1027 #define _gloffset_StencilFuncSeparateATI 960
1028 #define _gloffset_ProgramEnvParameters4fvEXT 961
1029 #define _gloffset_ProgramLocalParameters4fvEXT 962
1030 #define _gloffset_GetQueryObjecti64vEXT 963
1031 #define _gloffset_GetQueryObjectui64vEXT 964
1032 #define _gloffset_EGLImageTargetRenderbufferStorageOES 965
1033 #define _gloffset_EGLImageTargetTexture2DOES 966
1034
1035 #else /* !FEATURE_remap_table */
1036
1037 #define driDispatchRemapTable_size 559
1038 extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
1039
1040 #define AttachShader_remap_index 0
1041 #define CreateProgram_remap_index 1
1042 #define CreateShader_remap_index 2
1043 #define DeleteProgram_remap_index 3
1044 #define DeleteShader_remap_index 4
1045 #define DetachShader_remap_index 5
1046 #define GetAttachedShaders_remap_index 6
1047 #define GetProgramInfoLog_remap_index 7
1048 #define GetProgramiv_remap_index 8
1049 #define GetShaderInfoLog_remap_index 9
1050 #define GetShaderiv_remap_index 10
1051 #define IsProgram_remap_index 11
1052 #define IsShader_remap_index 12
1053 #define StencilFuncSeparate_remap_index 13
1054 #define StencilMaskSeparate_remap_index 14
1055 #define StencilOpSeparate_remap_index 15
1056 #define UniformMatrix2x3fv_remap_index 16
1057 #define UniformMatrix2x4fv_remap_index 17
1058 #define UniformMatrix3x2fv_remap_index 18
1059 #define UniformMatrix3x4fv_remap_index 19
1060 #define UniformMatrix4x2fv_remap_index 20
1061 #define UniformMatrix4x3fv_remap_index 21
1062 #define ClampColor_remap_index 22
1063 #define ClearBufferfi_remap_index 23
1064 #define ClearBufferfv_remap_index 24
1065 #define ClearBufferiv_remap_index 25
1066 #define ClearBufferuiv_remap_index 26
1067 #define GetStringi_remap_index 27
1068 #define TexBuffer_remap_index 28
1069 #define FramebufferTexture_remap_index 29
1070 #define GetBufferParameteri64v_remap_index 30
1071 #define GetInteger64i_v_remap_index 31
1072 #define VertexAttribDivisor_remap_index 32
1073 #define LoadTransposeMatrixdARB_remap_index 33
1074 #define LoadTransposeMatrixfARB_remap_index 34
1075 #define MultTransposeMatrixdARB_remap_index 35
1076 #define MultTransposeMatrixfARB_remap_index 36
1077 #define SampleCoverageARB_remap_index 37
1078 #define CompressedTexImage1DARB_remap_index 38
1079 #define CompressedTexImage2DARB_remap_index 39
1080 #define CompressedTexImage3DARB_remap_index 40
1081 #define CompressedTexSubImage1DARB_remap_index 41
1082 #define CompressedTexSubImage2DARB_remap_index 42
1083 #define CompressedTexSubImage3DARB_remap_index 43
1084 #define GetCompressedTexImageARB_remap_index 44
1085 #define DisableVertexAttribArrayARB_remap_index 45
1086 #define EnableVertexAttribArrayARB_remap_index 46
1087 #define GetProgramEnvParameterdvARB_remap_index 47
1088 #define GetProgramEnvParameterfvARB_remap_index 48
1089 #define GetProgramLocalParameterdvARB_remap_index 49
1090 #define GetProgramLocalParameterfvARB_remap_index 50
1091 #define GetProgramStringARB_remap_index 51
1092 #define GetProgramivARB_remap_index 52
1093 #define GetVertexAttribdvARB_remap_index 53
1094 #define GetVertexAttribfvARB_remap_index 54
1095 #define GetVertexAttribivARB_remap_index 55
1096 #define ProgramEnvParameter4dARB_remap_index 56
1097 #define ProgramEnvParameter4dvARB_remap_index 57
1098 #define ProgramEnvParameter4fARB_remap_index 58
1099 #define ProgramEnvParameter4fvARB_remap_index 59
1100 #define ProgramLocalParameter4dARB_remap_index 60
1101 #define ProgramLocalParameter4dvARB_remap_index 61
1102 #define ProgramLocalParameter4fARB_remap_index 62
1103 #define ProgramLocalParameter4fvARB_remap_index 63
1104 #define ProgramStringARB_remap_index 64
1105 #define VertexAttrib1dARB_remap_index 65
1106 #define VertexAttrib1dvARB_remap_index 66
1107 #define VertexAttrib1fARB_remap_index 67
1108 #define VertexAttrib1fvARB_remap_index 68
1109 #define VertexAttrib1sARB_remap_index 69
1110 #define VertexAttrib1svARB_remap_index 70
1111 #define VertexAttrib2dARB_remap_index 71
1112 #define VertexAttrib2dvARB_remap_index 72
1113 #define VertexAttrib2fARB_remap_index 73
1114 #define VertexAttrib2fvARB_remap_index 74
1115 #define VertexAttrib2sARB_remap_index 75
1116 #define VertexAttrib2svARB_remap_index 76
1117 #define VertexAttrib3dARB_remap_index 77
1118 #define VertexAttrib3dvARB_remap_index 78
1119 #define VertexAttrib3fARB_remap_index 79
1120 #define VertexAttrib3fvARB_remap_index 80
1121 #define VertexAttrib3sARB_remap_index 81
1122 #define VertexAttrib3svARB_remap_index 82
1123 #define VertexAttrib4NbvARB_remap_index 83
1124 #define VertexAttrib4NivARB_remap_index 84
1125 #define VertexAttrib4NsvARB_remap_index 85
1126 #define VertexAttrib4NubARB_remap_index 86
1127 #define VertexAttrib4NubvARB_remap_index 87
1128 #define VertexAttrib4NuivARB_remap_index 88
1129 #define VertexAttrib4NusvARB_remap_index 89
1130 #define VertexAttrib4bvARB_remap_index 90
1131 #define VertexAttrib4dARB_remap_index 91
1132 #define VertexAttrib4dvARB_remap_index 92
1133 #define VertexAttrib4fARB_remap_index 93
1134 #define VertexAttrib4fvARB_remap_index 94
1135 #define VertexAttrib4ivARB_remap_index 95
1136 #define VertexAttrib4sARB_remap_index 96
1137 #define VertexAttrib4svARB_remap_index 97
1138 #define VertexAttrib4ubvARB_remap_index 98
1139 #define VertexAttrib4uivARB_remap_index 99
1140 #define VertexAttrib4usvARB_remap_index 100
1141 #define VertexAttribPointerARB_remap_index 101
1142 #define BindBufferARB_remap_index 102
1143 #define BufferDataARB_remap_index 103
1144 #define BufferSubDataARB_remap_index 104
1145 #define DeleteBuffersARB_remap_index 105
1146 #define GenBuffersARB_remap_index 106
1147 #define GetBufferParameterivARB_remap_index 107
1148 #define GetBufferPointervARB_remap_index 108
1149 #define GetBufferSubDataARB_remap_index 109
1150 #define IsBufferARB_remap_index 110
1151 #define MapBufferARB_remap_index 111
1152 #define UnmapBufferARB_remap_index 112
1153 #define BeginQueryARB_remap_index 113
1154 #define DeleteQueriesARB_remap_index 114
1155 #define EndQueryARB_remap_index 115
1156 #define GenQueriesARB_remap_index 116
1157 #define GetQueryObjectivARB_remap_index 117
1158 #define GetQueryObjectuivARB_remap_index 118
1159 #define GetQueryivARB_remap_index 119
1160 #define IsQueryARB_remap_index 120
1161 #define AttachObjectARB_remap_index 121
1162 #define CompileShaderARB_remap_index 122
1163 #define CreateProgramObjectARB_remap_index 123
1164 #define CreateShaderObjectARB_remap_index 124
1165 #define DeleteObjectARB_remap_index 125
1166 #define DetachObjectARB_remap_index 126
1167 #define GetActiveUniformARB_remap_index 127
1168 #define GetAttachedObjectsARB_remap_index 128
1169 #define GetHandleARB_remap_index 129
1170 #define GetInfoLogARB_remap_index 130
1171 #define GetObjectParameterfvARB_remap_index 131
1172 #define GetObjectParameterivARB_remap_index 132
1173 #define GetShaderSourceARB_remap_index 133
1174 #define GetUniformLocationARB_remap_index 134
1175 #define GetUniformfvARB_remap_index 135
1176 #define GetUniformivARB_remap_index 136
1177 #define LinkProgramARB_remap_index 137
1178 #define ShaderSourceARB_remap_index 138
1179 #define Uniform1fARB_remap_index 139
1180 #define Uniform1fvARB_remap_index 140
1181 #define Uniform1iARB_remap_index 141
1182 #define Uniform1ivARB_remap_index 142
1183 #define Uniform2fARB_remap_index 143
1184 #define Uniform2fvARB_remap_index 144
1185 #define Uniform2iARB_remap_index 145
1186 #define Uniform2ivARB_remap_index 146
1187 #define Uniform3fARB_remap_index 147
1188 #define Uniform3fvARB_remap_index 148
1189 #define Uniform3iARB_remap_index 149
1190 #define Uniform3ivARB_remap_index 150
1191 #define Uniform4fARB_remap_index 151
1192 #define Uniform4fvARB_remap_index 152
1193 #define Uniform4iARB_remap_index 153
1194 #define Uniform4ivARB_remap_index 154
1195 #define UniformMatrix2fvARB_remap_index 155
1196 #define UniformMatrix3fvARB_remap_index 156
1197 #define UniformMatrix4fvARB_remap_index 157
1198 #define UseProgramObjectARB_remap_index 158
1199 #define ValidateProgramARB_remap_index 159
1200 #define BindAttribLocationARB_remap_index 160
1201 #define GetActiveAttribARB_remap_index 161
1202 #define GetAttribLocationARB_remap_index 162
1203 #define DrawBuffersARB_remap_index 163
1204 #define ClampColorARB_remap_index 164
1205 #define DrawArraysInstancedARB_remap_index 165
1206 #define DrawElementsInstancedARB_remap_index 166
1207 #define RenderbufferStorageMultisample_remap_index 167
1208 #define FramebufferTextureARB_remap_index 168
1209 #define FramebufferTextureFaceARB_remap_index 169
1210 #define ProgramParameteriARB_remap_index 170
1211 #define VertexAttribDivisorARB_remap_index 171
1212 #define FlushMappedBufferRange_remap_index 172
1213 #define MapBufferRange_remap_index 173
1214 #define TexBufferARB_remap_index 174
1215 #define BindVertexArray_remap_index 175
1216 #define GenVertexArrays_remap_index 176
1217 #define CopyBufferSubData_remap_index 177
1218 #define ClientWaitSync_remap_index 178
1219 #define DeleteSync_remap_index 179
1220 #define FenceSync_remap_index 180
1221 #define GetInteger64v_remap_index 181
1222 #define GetSynciv_remap_index 182
1223 #define IsSync_remap_index 183
1224 #define WaitSync_remap_index 184
1225 #define DrawElementsBaseVertex_remap_index 185
1226 #define DrawElementsInstancedBaseVertex_remap_index 186
1227 #define DrawRangeElementsBaseVertex_remap_index 187
1228 #define MultiDrawElementsBaseVertex_remap_index 188
1229 #define BlendEquationSeparateiARB_remap_index 189
1230 #define BlendEquationiARB_remap_index 190
1231 #define BlendFuncSeparateiARB_remap_index 191
1232 #define BlendFunciARB_remap_index 192
1233 #define BindSampler_remap_index 193
1234 #define DeleteSamplers_remap_index 194
1235 #define GenSamplers_remap_index 195
1236 #define GetSamplerParameterIiv_remap_index 196
1237 #define GetSamplerParameterIuiv_remap_index 197
1238 #define GetSamplerParameterfv_remap_index 198
1239 #define GetSamplerParameteriv_remap_index 199
1240 #define IsSampler_remap_index 200
1241 #define SamplerParameterIiv_remap_index 201
1242 #define SamplerParameterIuiv_remap_index 202
1243 #define SamplerParameterf_remap_index 203
1244 #define SamplerParameterfv_remap_index 204
1245 #define SamplerParameteri_remap_index 205
1246 #define SamplerParameteriv_remap_index 206
1247 #define ColorP3ui_remap_index 207
1248 #define ColorP3uiv_remap_index 208
1249 #define ColorP4ui_remap_index 209
1250 #define ColorP4uiv_remap_index 210
1251 #define MultiTexCoordP1ui_remap_index 211
1252 #define MultiTexCoordP1uiv_remap_index 212
1253 #define MultiTexCoordP2ui_remap_index 213
1254 #define MultiTexCoordP2uiv_remap_index 214
1255 #define MultiTexCoordP3ui_remap_index 215
1256 #define MultiTexCoordP3uiv_remap_index 216
1257 #define MultiTexCoordP4ui_remap_index 217
1258 #define MultiTexCoordP4uiv_remap_index 218
1259 #define NormalP3ui_remap_index 219
1260 #define NormalP3uiv_remap_index 220
1261 #define SecondaryColorP3ui_remap_index 221
1262 #define SecondaryColorP3uiv_remap_index 222
1263 #define TexCoordP1ui_remap_index 223
1264 #define TexCoordP1uiv_remap_index 224
1265 #define TexCoordP2ui_remap_index 225
1266 #define TexCoordP2uiv_remap_index 226
1267 #define TexCoordP3ui_remap_index 227
1268 #define TexCoordP3uiv_remap_index 228
1269 #define TexCoordP4ui_remap_index 229
1270 #define TexCoordP4uiv_remap_index 230
1271 #define VertexAttribP1ui_remap_index 231
1272 #define VertexAttribP1uiv_remap_index 232
1273 #define VertexAttribP2ui_remap_index 233
1274 #define VertexAttribP2uiv_remap_index 234
1275 #define VertexAttribP3ui_remap_index 235
1276 #define VertexAttribP3uiv_remap_index 236
1277 #define VertexAttribP4ui_remap_index 237
1278 #define VertexAttribP4uiv_remap_index 238
1279 #define VertexP2ui_remap_index 239
1280 #define VertexP2uiv_remap_index 240
1281 #define VertexP3ui_remap_index 241
1282 #define VertexP3uiv_remap_index 242
1283 #define VertexP4ui_remap_index 243
1284 #define VertexP4uiv_remap_index 244
1285 #define BindTransformFeedback_remap_index 245
1286 #define DeleteTransformFeedbacks_remap_index 246
1287 #define DrawTransformFeedback_remap_index 247
1288 #define GenTransformFeedbacks_remap_index 248
1289 #define IsTransformFeedback_remap_index 249
1290 #define PauseTransformFeedback_remap_index 250
1291 #define ResumeTransformFeedback_remap_index 251
1292 #define ClearDepthf_remap_index 252
1293 #define DepthRangef_remap_index 253
1294 #define GetShaderPrecisionFormat_remap_index 254
1295 #define ReleaseShaderCompiler_remap_index 255
1296 #define ShaderBinary_remap_index 256
1297 #define GetGraphicsResetStatusARB_remap_index 257
1298 #define GetnColorTableARB_remap_index 258
1299 #define GetnCompressedTexImageARB_remap_index 259
1300 #define GetnConvolutionFilterARB_remap_index 260
1301 #define GetnHistogramARB_remap_index 261
1302 #define GetnMapdvARB_remap_index 262
1303 #define GetnMapfvARB_remap_index 263
1304 #define GetnMapivARB_remap_index 264
1305 #define GetnMinmaxARB_remap_index 265
1306 #define GetnPixelMapfvARB_remap_index 266
1307 #define GetnPixelMapuivARB_remap_index 267
1308 #define GetnPixelMapusvARB_remap_index 268
1309 #define GetnPolygonStippleARB_remap_index 269
1310 #define GetnSeparableFilterARB_remap_index 270
1311 #define GetnTexImageARB_remap_index 271
1312 #define GetnUniformdvARB_remap_index 272
1313 #define GetnUniformfvARB_remap_index 273
1314 #define GetnUniformivARB_remap_index 274
1315 #define GetnUniformuivARB_remap_index 275
1316 #define ReadnPixelsARB_remap_index 276
1317 #define PolygonOffsetEXT_remap_index 277
1318 #define GetPixelTexGenParameterfvSGIS_remap_index 278
1319 #define GetPixelTexGenParameterivSGIS_remap_index 279
1320 #define PixelTexGenParameterfSGIS_remap_index 280
1321 #define PixelTexGenParameterfvSGIS_remap_index 281
1322 #define PixelTexGenParameteriSGIS_remap_index 282
1323 #define PixelTexGenParameterivSGIS_remap_index 283
1324 #define SampleMaskSGIS_remap_index 284
1325 #define SamplePatternSGIS_remap_index 285
1326 #define ColorPointerEXT_remap_index 286
1327 #define EdgeFlagPointerEXT_remap_index 287
1328 #define IndexPointerEXT_remap_index 288
1329 #define NormalPointerEXT_remap_index 289
1330 #define TexCoordPointerEXT_remap_index 290
1331 #define VertexPointerEXT_remap_index 291
1332 #define PointParameterfEXT_remap_index 292
1333 #define PointParameterfvEXT_remap_index 293
1334 #define LockArraysEXT_remap_index 294
1335 #define UnlockArraysEXT_remap_index 295
1336 #define SecondaryColor3bEXT_remap_index 296
1337 #define SecondaryColor3bvEXT_remap_index 297
1338 #define SecondaryColor3dEXT_remap_index 298
1339 #define SecondaryColor3dvEXT_remap_index 299
1340 #define SecondaryColor3fEXT_remap_index 300
1341 #define SecondaryColor3fvEXT_remap_index 301
1342 #define SecondaryColor3iEXT_remap_index 302
1343 #define SecondaryColor3ivEXT_remap_index 303
1344 #define SecondaryColor3sEXT_remap_index 304
1345 #define SecondaryColor3svEXT_remap_index 305
1346 #define SecondaryColor3ubEXT_remap_index 306
1347 #define SecondaryColor3ubvEXT_remap_index 307
1348 #define SecondaryColor3uiEXT_remap_index 308
1349 #define SecondaryColor3uivEXT_remap_index 309
1350 #define SecondaryColor3usEXT_remap_index 310
1351 #define SecondaryColor3usvEXT_remap_index 311
1352 #define SecondaryColorPointerEXT_remap_index 312
1353 #define MultiDrawArraysEXT_remap_index 313
1354 #define MultiDrawElementsEXT_remap_index 314
1355 #define FogCoordPointerEXT_remap_index 315
1356 #define FogCoorddEXT_remap_index 316
1357 #define FogCoorddvEXT_remap_index 317
1358 #define FogCoordfEXT_remap_index 318
1359 #define FogCoordfvEXT_remap_index 319
1360 #define PixelTexGenSGIX_remap_index 320
1361 #define BlendFuncSeparateEXT_remap_index 321
1362 #define FlushVertexArrayRangeNV_remap_index 322
1363 #define VertexArrayRangeNV_remap_index 323
1364 #define CombinerInputNV_remap_index 324
1365 #define CombinerOutputNV_remap_index 325
1366 #define CombinerParameterfNV_remap_index 326
1367 #define CombinerParameterfvNV_remap_index 327
1368 #define CombinerParameteriNV_remap_index 328
1369 #define CombinerParameterivNV_remap_index 329
1370 #define FinalCombinerInputNV_remap_index 330
1371 #define GetCombinerInputParameterfvNV_remap_index 331
1372 #define GetCombinerInputParameterivNV_remap_index 332
1373 #define GetCombinerOutputParameterfvNV_remap_index 333
1374 #define GetCombinerOutputParameterivNV_remap_index 334
1375 #define GetFinalCombinerInputParameterfvNV_remap_index 335
1376 #define GetFinalCombinerInputParameterivNV_remap_index 336
1377 #define ResizeBuffersMESA_remap_index 337
1378 #define WindowPos2dMESA_remap_index 338
1379 #define WindowPos2dvMESA_remap_index 339
1380 #define WindowPos2fMESA_remap_index 340
1381 #define WindowPos2fvMESA_remap_index 341
1382 #define WindowPos2iMESA_remap_index 342
1383 #define WindowPos2ivMESA_remap_index 343
1384 #define WindowPos2sMESA_remap_index 344
1385 #define WindowPos2svMESA_remap_index 345
1386 #define WindowPos3dMESA_remap_index 346
1387 #define WindowPos3dvMESA_remap_index 347
1388 #define WindowPos3fMESA_remap_index 348
1389 #define WindowPos3fvMESA_remap_index 349
1390 #define WindowPos3iMESA_remap_index 350
1391 #define WindowPos3ivMESA_remap_index 351
1392 #define WindowPos3sMESA_remap_index 352
1393 #define WindowPos3svMESA_remap_index 353
1394 #define WindowPos4dMESA_remap_index 354
1395 #define WindowPos4dvMESA_remap_index 355
1396 #define WindowPos4fMESA_remap_index 356
1397 #define WindowPos4fvMESA_remap_index 357
1398 #define WindowPos4iMESA_remap_index 358
1399 #define WindowPos4ivMESA_remap_index 359
1400 #define WindowPos4sMESA_remap_index 360
1401 #define WindowPos4svMESA_remap_index 361
1402 #define MultiModeDrawArraysIBM_remap_index 362
1403 #define MultiModeDrawElementsIBM_remap_index 363
1404 #define DeleteFencesNV_remap_index 364
1405 #define FinishFenceNV_remap_index 365
1406 #define GenFencesNV_remap_index 366
1407 #define GetFenceivNV_remap_index 367
1408 #define IsFenceNV_remap_index 368
1409 #define SetFenceNV_remap_index 369
1410 #define TestFenceNV_remap_index 370
1411 #define AreProgramsResidentNV_remap_index 371
1412 #define BindProgramNV_remap_index 372
1413 #define DeleteProgramsNV_remap_index 373
1414 #define ExecuteProgramNV_remap_index 374
1415 #define GenProgramsNV_remap_index 375
1416 #define GetProgramParameterdvNV_remap_index 376
1417 #define GetProgramParameterfvNV_remap_index 377
1418 #define GetProgramStringNV_remap_index 378
1419 #define GetProgramivNV_remap_index 379
1420 #define GetTrackMatrixivNV_remap_index 380
1421 #define GetVertexAttribPointervNV_remap_index 381
1422 #define GetVertexAttribdvNV_remap_index 382
1423 #define GetVertexAttribfvNV_remap_index 383
1424 #define GetVertexAttribivNV_remap_index 384
1425 #define IsProgramNV_remap_index 385
1426 #define LoadProgramNV_remap_index 386
1427 #define ProgramParameters4dvNV_remap_index 387
1428 #define ProgramParameters4fvNV_remap_index 388
1429 #define RequestResidentProgramsNV_remap_index 389
1430 #define TrackMatrixNV_remap_index 390
1431 #define VertexAttrib1dNV_remap_index 391
1432 #define VertexAttrib1dvNV_remap_index 392
1433 #define VertexAttrib1fNV_remap_index 393
1434 #define VertexAttrib1fvNV_remap_index 394
1435 #define VertexAttrib1sNV_remap_index 395
1436 #define VertexAttrib1svNV_remap_index 396
1437 #define VertexAttrib2dNV_remap_index 397
1438 #define VertexAttrib2dvNV_remap_index 398
1439 #define VertexAttrib2fNV_remap_index 399
1440 #define VertexAttrib2fvNV_remap_index 400
1441 #define VertexAttrib2sNV_remap_index 401
1442 #define VertexAttrib2svNV_remap_index 402
1443 #define VertexAttrib3dNV_remap_index 403
1444 #define VertexAttrib3dvNV_remap_index 404
1445 #define VertexAttrib3fNV_remap_index 405
1446 #define VertexAttrib3fvNV_remap_index 406
1447 #define VertexAttrib3sNV_remap_index 407
1448 #define VertexAttrib3svNV_remap_index 408
1449 #define VertexAttrib4dNV_remap_index 409
1450 #define VertexAttrib4dvNV_remap_index 410
1451 #define VertexAttrib4fNV_remap_index 411
1452 #define VertexAttrib4fvNV_remap_index 412
1453 #define VertexAttrib4sNV_remap_index 413
1454 #define VertexAttrib4svNV_remap_index 414
1455 #define VertexAttrib4ubNV_remap_index 415
1456 #define VertexAttrib4ubvNV_remap_index 416
1457 #define VertexAttribPointerNV_remap_index 417
1458 #define VertexAttribs1dvNV_remap_index 418
1459 #define VertexAttribs1fvNV_remap_index 419
1460 #define VertexAttribs1svNV_remap_index 420
1461 #define VertexAttribs2dvNV_remap_index 421
1462 #define VertexAttribs2fvNV_remap_index 422
1463 #define VertexAttribs2svNV_remap_index 423
1464 #define VertexAttribs3dvNV_remap_index 424
1465 #define VertexAttribs3fvNV_remap_index 425
1466 #define VertexAttribs3svNV_remap_index 426
1467 #define VertexAttribs4dvNV_remap_index 427
1468 #define VertexAttribs4fvNV_remap_index 428
1469 #define VertexAttribs4svNV_remap_index 429
1470 #define VertexAttribs4ubvNV_remap_index 430
1471 #define GetTexBumpParameterfvATI_remap_index 431
1472 #define GetTexBumpParameterivATI_remap_index 432
1473 #define TexBumpParameterfvATI_remap_index 433
1474 #define TexBumpParameterivATI_remap_index 434
1475 #define AlphaFragmentOp1ATI_remap_index 435
1476 #define AlphaFragmentOp2ATI_remap_index 436
1477 #define AlphaFragmentOp3ATI_remap_index 437
1478 #define BeginFragmentShaderATI_remap_index 438
1479 #define BindFragmentShaderATI_remap_index 439
1480 #define ColorFragmentOp1ATI_remap_index 440
1481 #define ColorFragmentOp2ATI_remap_index 441
1482 #define ColorFragmentOp3ATI_remap_index 442
1483 #define DeleteFragmentShaderATI_remap_index 443
1484 #define EndFragmentShaderATI_remap_index 444
1485 #define GenFragmentShadersATI_remap_index 445
1486 #define PassTexCoordATI_remap_index 446
1487 #define SampleMapATI_remap_index 447
1488 #define SetFragmentShaderConstantATI_remap_index 448
1489 #define PointParameteriNV_remap_index 449
1490 #define PointParameterivNV_remap_index 450
1491 #define ActiveStencilFaceEXT_remap_index 451
1492 #define BindVertexArrayAPPLE_remap_index 452
1493 #define DeleteVertexArraysAPPLE_remap_index 453
1494 #define GenVertexArraysAPPLE_remap_index 454
1495 #define IsVertexArrayAPPLE_remap_index 455
1496 #define GetProgramNamedParameterdvNV_remap_index 456
1497 #define GetProgramNamedParameterfvNV_remap_index 457
1498 #define ProgramNamedParameter4dNV_remap_index 458
1499 #define ProgramNamedParameter4dvNV_remap_index 459
1500 #define ProgramNamedParameter4fNV_remap_index 460
1501 #define ProgramNamedParameter4fvNV_remap_index 461
1502 #define PrimitiveRestartIndexNV_remap_index 462
1503 #define PrimitiveRestartNV_remap_index 463
1504 #define DepthBoundsEXT_remap_index 464
1505 #define BlendEquationSeparateEXT_remap_index 465
1506 #define BindFramebufferEXT_remap_index 466
1507 #define BindRenderbufferEXT_remap_index 467
1508 #define CheckFramebufferStatusEXT_remap_index 468
1509 #define DeleteFramebuffersEXT_remap_index 469
1510 #define DeleteRenderbuffersEXT_remap_index 470
1511 #define FramebufferRenderbufferEXT_remap_index 471
1512 #define FramebufferTexture1DEXT_remap_index 472
1513 #define FramebufferTexture2DEXT_remap_index 473
1514 #define FramebufferTexture3DEXT_remap_index 474
1515 #define GenFramebuffersEXT_remap_index 475
1516 #define GenRenderbuffersEXT_remap_index 476
1517 #define GenerateMipmapEXT_remap_index 477
1518 #define GetFramebufferAttachmentParameterivEXT_remap_index 478
1519 #define GetRenderbufferParameterivEXT_remap_index 479
1520 #define IsFramebufferEXT_remap_index 480
1521 #define IsRenderbufferEXT_remap_index 481
1522 #define RenderbufferStorageEXT_remap_index 482
1523 #define BlitFramebufferEXT_remap_index 483
1524 #define BufferParameteriAPPLE_remap_index 484
1525 #define FlushMappedBufferRangeAPPLE_remap_index 485
1526 #define BindFragDataLocationEXT_remap_index 486
1527 #define GetFragDataLocationEXT_remap_index 487
1528 #define GetUniformuivEXT_remap_index 488
1529 #define GetVertexAttribIivEXT_remap_index 489
1530 #define GetVertexAttribIuivEXT_remap_index 490
1531 #define Uniform1uiEXT_remap_index 491
1532 #define Uniform1uivEXT_remap_index 492
1533 #define Uniform2uiEXT_remap_index 493
1534 #define Uniform2uivEXT_remap_index 494
1535 #define Uniform3uiEXT_remap_index 495
1536 #define Uniform3uivEXT_remap_index 496
1537 #define Uniform4uiEXT_remap_index 497
1538 #define Uniform4uivEXT_remap_index 498
1539 #define VertexAttribI1iEXT_remap_index 499
1540 #define VertexAttribI1ivEXT_remap_index 500
1541 #define VertexAttribI1uiEXT_remap_index 501
1542 #define VertexAttribI1uivEXT_remap_index 502
1543 #define VertexAttribI2iEXT_remap_index 503
1544 #define VertexAttribI2ivEXT_remap_index 504
1545 #define VertexAttribI2uiEXT_remap_index 505
1546 #define VertexAttribI2uivEXT_remap_index 506
1547 #define VertexAttribI3iEXT_remap_index 507
1548 #define VertexAttribI3ivEXT_remap_index 508
1549 #define VertexAttribI3uiEXT_remap_index 509
1550 #define VertexAttribI3uivEXT_remap_index 510
1551 #define VertexAttribI4bvEXT_remap_index 511
1552 #define VertexAttribI4iEXT_remap_index 512
1553 #define VertexAttribI4ivEXT_remap_index 513
1554 #define VertexAttribI4svEXT_remap_index 514
1555 #define VertexAttribI4ubvEXT_remap_index 515
1556 #define VertexAttribI4uiEXT_remap_index 516
1557 #define VertexAttribI4uivEXT_remap_index 517
1558 #define VertexAttribI4usvEXT_remap_index 518
1559 #define VertexAttribIPointerEXT_remap_index 519
1560 #define FramebufferTextureLayerEXT_remap_index 520
1561 #define ColorMaskIndexedEXT_remap_index 521
1562 #define DisableIndexedEXT_remap_index 522
1563 #define EnableIndexedEXT_remap_index 523
1564 #define GetBooleanIndexedvEXT_remap_index 524
1565 #define GetIntegerIndexedvEXT_remap_index 525
1566 #define IsEnabledIndexedEXT_remap_index 526
1567 #define ClearColorIiEXT_remap_index 527
1568 #define ClearColorIuiEXT_remap_index 528
1569 #define GetTexParameterIivEXT_remap_index 529
1570 #define GetTexParameterIuivEXT_remap_index 530
1571 #define TexParameterIivEXT_remap_index 531
1572 #define TexParameterIuivEXT_remap_index 532
1573 #define BeginConditionalRenderNV_remap_index 533
1574 #define EndConditionalRenderNV_remap_index 534
1575 #define BeginTransformFeedbackEXT_remap_index 535
1576 #define BindBufferBaseEXT_remap_index 536
1577 #define BindBufferOffsetEXT_remap_index 537
1578 #define BindBufferRangeEXT_remap_index 538
1579 #define EndTransformFeedbackEXT_remap_index 539
1580 #define GetTransformFeedbackVaryingEXT_remap_index 540
1581 #define TransformFeedbackVaryingsEXT_remap_index 541
1582 #define ProvokingVertexEXT_remap_index 542
1583 #define GetTexParameterPointervAPPLE_remap_index 543
1584 #define TextureRangeAPPLE_remap_index 544
1585 #define GetObjectParameterivAPPLE_remap_index 545
1586 #define ObjectPurgeableAPPLE_remap_index 546
1587 #define ObjectUnpurgeableAPPLE_remap_index 547
1588 #define ActiveProgramEXT_remap_index 548
1589 #define CreateShaderProgramEXT_remap_index 549
1590 #define UseShaderProgramEXT_remap_index 550
1591 #define TextureBarrierNV_remap_index 551
1592 #define StencilFuncSeparateATI_remap_index 552
1593 #define ProgramEnvParameters4fvEXT_remap_index 553
1594 #define ProgramLocalParameters4fvEXT_remap_index 554
1595 #define GetQueryObjecti64vEXT_remap_index 555
1596 #define GetQueryObjectui64vEXT_remap_index 556
1597 #define EGLImageTargetRenderbufferStorageOES_remap_index 557
1598 #define EGLImageTargetTexture2DOES_remap_index 558
1599
1600 #define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index]
1601 #define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index]
1602 #define _gloffset_CreateShader driDispatchRemapTable[CreateShader_remap_index]
1603 #define _gloffset_DeleteProgram driDispatchRemapTable[DeleteProgram_remap_index]
1604 #define _gloffset_DeleteShader driDispatchRemapTable[DeleteShader_remap_index]
1605 #define _gloffset_DetachShader driDispatchRemapTable[DetachShader_remap_index]
1606 #define _gloffset_GetAttachedShaders driDispatchRemapTable[GetAttachedShaders_remap_index]
1607 #define _gloffset_GetProgramInfoLog driDispatchRemapTable[GetProgramInfoLog_remap_index]
1608 #define _gloffset_GetProgramiv driDispatchRemapTable[GetProgramiv_remap_index]
1609 #define _gloffset_GetShaderInfoLog driDispatchRemapTable[GetShaderInfoLog_remap_index]
1610 #define _gloffset_GetShaderiv driDispatchRemapTable[GetShaderiv_remap_index]
1611 #define _gloffset_IsProgram driDispatchRemapTable[IsProgram_remap_index]
1612 #define _gloffset_IsShader driDispatchRemapTable[IsShader_remap_index]
1613 #define _gloffset_StencilFuncSeparate driDispatchRemapTable[StencilFuncSeparate_remap_index]
1614 #define _gloffset_StencilMaskSeparate driDispatchRemapTable[StencilMaskSeparate_remap_index]
1615 #define _gloffset_StencilOpSeparate driDispatchRemapTable[StencilOpSeparate_remap_index]
1616 #define _gloffset_UniformMatrix2x3fv driDispatchRemapTable[UniformMatrix2x3fv_remap_index]
1617 #define _gloffset_UniformMatrix2x4fv driDispatchRemapTable[UniformMatrix2x4fv_remap_index]
1618 #define _gloffset_UniformMatrix3x2fv driDispatchRemapTable[UniformMatrix3x2fv_remap_index]
1619 #define _gloffset_UniformMatrix3x4fv driDispatchRemapTable[UniformMatrix3x4fv_remap_index]
1620 #define _gloffset_UniformMatrix4x2fv driDispatchRemapTable[UniformMatrix4x2fv_remap_index]
1621 #define _gloffset_UniformMatrix4x3fv driDispatchRemapTable[UniformMatrix4x3fv_remap_index]
1622 #define _gloffset_ClampColor driDispatchRemapTable[ClampColor_remap_index]
1623 #define _gloffset_ClearBufferfi driDispatchRemapTable[ClearBufferfi_remap_index]
1624 #define _gloffset_ClearBufferfv driDispatchRemapTable[ClearBufferfv_remap_index]
1625 #define _gloffset_ClearBufferiv driDispatchRemapTable[ClearBufferiv_remap_index]
1626 #define _gloffset_ClearBufferuiv driDispatchRemapTable[ClearBufferuiv_remap_index]
1627 #define _gloffset_GetStringi driDispatchRemapTable[GetStringi_remap_index]
1628 #define _gloffset_TexBuffer driDispatchRemapTable[TexBuffer_remap_index]
1629 #define _gloffset_FramebufferTexture driDispatchRemapTable[FramebufferTexture_remap_index]
1630 #define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index]
1631 #define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index]
1632 #define _gloffset_VertexAttribDivisor driDispatchRemapTable[VertexAttribDivisor_remap_index]
1633 #define _gloffset_LoadTransposeMatrixdARB driDispatchRemapTable[LoadTransposeMatrixdARB_remap_index]
1634 #define _gloffset_LoadTransposeMatrixfARB driDispatchRemapTable[LoadTransposeMatrixfARB_remap_index]
1635 #define _gloffset_MultTransposeMatrixdARB driDispatchRemapTable[MultTransposeMatrixdARB_remap_index]
1636 #define _gloffset_MultTransposeMatrixfARB driDispatchRemapTable[MultTransposeMatrixfARB_remap_index]
1637 #define _gloffset_SampleCoverageARB driDispatchRemapTable[SampleCoverageARB_remap_index]
1638 #define _gloffset_CompressedTexImage1DARB driDispatchRemapTable[CompressedTexImage1DARB_remap_index]
1639 #define _gloffset_CompressedTexImage2DARB driDispatchRemapTable[CompressedTexImage2DARB_remap_index]
1640 #define _gloffset_CompressedTexImage3DARB driDispatchRemapTable[CompressedTexImage3DARB_remap_index]
1641 #define _gloffset_CompressedTexSubImage1DARB driDispatchRemapTable[CompressedTexSubImage1DARB_remap_index]
1642 #define _gloffset_CompressedTexSubImage2DARB driDispatchRemapTable[CompressedTexSubImage2DARB_remap_index]
1643 #define _gloffset_CompressedTexSubImage3DARB driDispatchRemapTable[CompressedTexSubImage3DARB_remap_index]
1644 #define _gloffset_GetCompressedTexImageARB driDispatchRemapTable[GetCompressedTexImageARB_remap_index]
1645 #define _gloffset_DisableVertexAttribArrayARB driDispatchRemapTable[DisableVertexAttribArrayARB_remap_index]
1646 #define _gloffset_EnableVertexAttribArrayARB driDispatchRemapTable[EnableVertexAttribArrayARB_remap_index]
1647 #define _gloffset_GetProgramEnvParameterdvARB driDispatchRemapTable[GetProgramEnvParameterdvARB_remap_index]
1648 #define _gloffset_GetProgramEnvParameterfvARB driDispatchRemapTable[GetProgramEnvParameterfvARB_remap_index]
1649 #define _gloffset_GetProgramLocalParameterdvARB driDispatchRemapTable[GetProgramLocalParameterdvARB_remap_index]
1650 #define _gloffset_GetProgramLocalParameterfvARB driDispatchRemapTable[GetProgramLocalParameterfvARB_remap_index]
1651 #define _gloffset_GetProgramStringARB driDispatchRemapTable[GetProgramStringARB_remap_index]
1652 #define _gloffset_GetProgramivARB driDispatchRemapTable[GetProgramivARB_remap_index]
1653 #define _gloffset_GetVertexAttribdvARB driDispatchRemapTable[GetVertexAttribdvARB_remap_index]
1654 #define _gloffset_GetVertexAttribfvARB driDispatchRemapTable[GetVertexAttribfvARB_remap_index]
1655 #define _gloffset_GetVertexAttribivARB driDispatchRemapTable[GetVertexAttribivARB_remap_index]
1656 #define _gloffset_ProgramEnvParameter4dARB driDispatchRemapTable[ProgramEnvParameter4dARB_remap_index]
1657 #define _gloffset_ProgramEnvParameter4dvARB driDispatchRemapTable[ProgramEnvParameter4dvARB_remap_index]
1658 #define _gloffset_ProgramEnvParameter4fARB driDispatchRemapTable[ProgramEnvParameter4fARB_remap_index]
1659 #define _gloffset_ProgramEnvParameter4fvARB driDispatchRemapTable[ProgramEnvParameter4fvARB_remap_index]
1660 #define _gloffset_ProgramLocalParameter4dARB driDispatchRemapTable[ProgramLocalParameter4dARB_remap_index]
1661 #define _gloffset_ProgramLocalParameter4dvARB driDispatchRemapTable[ProgramLocalParameter4dvARB_remap_index]
1662 #define _gloffset_ProgramLocalParameter4fARB driDispatchRemapTable[ProgramLocalParameter4fARB_remap_index]
1663 #define _gloffset_ProgramLocalParameter4fvARB driDispatchRemapTable[ProgramLocalParameter4fvARB_remap_index]
1664 #define _gloffset_ProgramStringARB driDispatchRemapTable[ProgramStringARB_remap_index]
1665 #define _gloffset_VertexAttrib1dARB driDispatchRemapTable[VertexAttrib1dARB_remap_index]
1666 #define _gloffset_VertexAttrib1dvARB driDispatchRemapTable[VertexAttrib1dvARB_remap_index]
1667 #define _gloffset_VertexAttrib1fARB driDispatchRemapTable[VertexAttrib1fARB_remap_index]
1668 #define _gloffset_VertexAttrib1fvARB driDispatchRemapTable[VertexAttrib1fvARB_remap_index]
1669 #define _gloffset_VertexAttrib1sARB driDispatchRemapTable[VertexAttrib1sARB_remap_index]
1670 #define _gloffset_VertexAttrib1svARB driDispatchRemapTable[VertexAttrib1svARB_remap_index]
1671 #define _gloffset_VertexAttrib2dARB driDispatchRemapTable[VertexAttrib2dARB_remap_index]
1672 #define _gloffset_VertexAttrib2dvARB driDispatchRemapTable[VertexAttrib2dvARB_remap_index]
1673 #define _gloffset_VertexAttrib2fARB driDispatchRemapTable[VertexAttrib2fARB_remap_index]
1674 #define _gloffset_VertexAttrib2fvARB driDispatchRemapTable[VertexAttrib2fvARB_remap_index]
1675 #define _gloffset_VertexAttrib2sARB driDispatchRemapTable[VertexAttrib2sARB_remap_index]
1676 #define _gloffset_VertexAttrib2svARB driDispatchRemapTable[VertexAttrib2svARB_remap_index]
1677 #define _gloffset_VertexAttrib3dARB driDispatchRemapTable[VertexAttrib3dARB_remap_index]
1678 #define _gloffset_VertexAttrib3dvARB driDispatchRemapTable[VertexAttrib3dvARB_remap_index]
1679 #define _gloffset_VertexAttrib3fARB driDispatchRemapTable[VertexAttrib3fARB_remap_index]
1680 #define _gloffset_VertexAttrib3fvARB driDispatchRemapTable[VertexAttrib3fvARB_remap_index]
1681 #define _gloffset_VertexAttrib3sARB driDispatchRemapTable[VertexAttrib3sARB_remap_index]
1682 #define _gloffset_VertexAttrib3svARB driDispatchRemapTable[VertexAttrib3svARB_remap_index]
1683 #define _gloffset_VertexAttrib4NbvARB driDispatchRemapTable[VertexAttrib4NbvARB_remap_index]
1684 #define _gloffset_VertexAttrib4NivARB driDispatchRemapTable[VertexAttrib4NivARB_remap_index]
1685 #define _gloffset_VertexAttrib4NsvARB driDispatchRemapTable[VertexAttrib4NsvARB_remap_index]
1686 #define _gloffset_VertexAttrib4NubARB driDispatchRemapTable[VertexAttrib4NubARB_remap_index]
1687 #define _gloffset_VertexAttrib4NubvARB driDispatchRemapTable[VertexAttrib4NubvARB_remap_index]
1688 #define _gloffset_VertexAttrib4NuivARB driDispatchRemapTable[VertexAttrib4NuivARB_remap_index]
1689 #define _gloffset_VertexAttrib4NusvARB driDispatchRemapTable[VertexAttrib4NusvARB_remap_index]
1690 #define _gloffset_VertexAttrib4bvARB driDispatchRemapTable[VertexAttrib4bvARB_remap_index]
1691 #define _gloffset_VertexAttrib4dARB driDispatchRemapTable[VertexAttrib4dARB_remap_index]
1692 #define _gloffset_VertexAttrib4dvARB driDispatchRemapTable[VertexAttrib4dvARB_remap_index]
1693 #define _gloffset_VertexAttrib4fARB driDispatchRemapTable[VertexAttrib4fARB_remap_index]
1694 #define _gloffset_VertexAttrib4fvARB driDispatchRemapTable[VertexAttrib4fvARB_remap_index]
1695 #define _gloffset_VertexAttrib4ivARB driDispatchRemapTable[VertexAttrib4ivARB_remap_index]
1696 #define _gloffset_VertexAttrib4sARB driDispatchRemapTable[VertexAttrib4sARB_remap_index]
1697 #define _gloffset_VertexAttrib4svARB driDispatchRemapTable[VertexAttrib4svARB_remap_index]
1698 #define _gloffset_VertexAttrib4ubvARB driDispatchRemapTable[VertexAttrib4ubvARB_remap_index]
1699 #define _gloffset_VertexAttrib4uivARB driDispatchRemapTable[VertexAttrib4uivARB_remap_index]
1700 #define _gloffset_VertexAttrib4usvARB driDispatchRemapTable[VertexAttrib4usvARB_remap_index]
1701 #define _gloffset_VertexAttribPointerARB driDispatchRemapTable[VertexAttribPointerARB_remap_index]
1702 #define _gloffset_BindBufferARB driDispatchRemapTable[BindBufferARB_remap_index]
1703 #define _gloffset_BufferDataARB driDispatchRemapTable[BufferDataARB_remap_index]
1704 #define _gloffset_BufferSubDataARB driDispatchRemapTable[BufferSubDataARB_remap_index]
1705 #define _gloffset_DeleteBuffersARB driDispatchRemapTable[DeleteBuffersARB_remap_index]
1706 #define _gloffset_GenBuffersARB driDispatchRemapTable[GenBuffersARB_remap_index]
1707 #define _gloffset_GetBufferParameterivARB driDispatchRemapTable[GetBufferParameterivARB_remap_index]
1708 #define _gloffset_GetBufferPointervARB driDispatchRemapTable[GetBufferPointervARB_remap_index]
1709 #define _gloffset_GetBufferSubDataARB driDispatchRemapTable[GetBufferSubDataARB_remap_index]
1710 #define _gloffset_IsBufferARB driDispatchRemapTable[IsBufferARB_remap_index]
1711 #define _gloffset_MapBufferARB driDispatchRemapTable[MapBufferARB_remap_index]
1712 #define _gloffset_UnmapBufferARB driDispatchRemapTable[UnmapBufferARB_remap_index]
1713 #define _gloffset_BeginQueryARB driDispatchRemapTable[BeginQueryARB_remap_index]
1714 #define _gloffset_DeleteQueriesARB driDispatchRemapTable[DeleteQueriesARB_remap_index]
1715 #define _gloffset_EndQueryARB driDispatchRemapTable[EndQueryARB_remap_index]
1716 #define _gloffset_GenQueriesARB driDispatchRemapTable[GenQueriesARB_remap_index]
1717 #define _gloffset_GetQueryObjectivARB driDispatchRemapTable[GetQueryObjectivARB_remap_index]
1718 #define _gloffset_GetQueryObjectuivARB driDispatchRemapTable[GetQueryObjectuivARB_remap_index]
1719 #define _gloffset_GetQueryivARB driDispatchRemapTable[GetQueryivARB_remap_index]
1720 #define _gloffset_IsQueryARB driDispatchRemapTable[IsQueryARB_remap_index]
1721 #define _gloffset_AttachObjectARB driDispatchRemapTable[AttachObjectARB_remap_index]
1722 #define _gloffset_CompileShaderARB driDispatchRemapTable[CompileShaderARB_remap_index]
1723 #define _gloffset_CreateProgramObjectARB driDispatchRemapTable[CreateProgramObjectARB_remap_index]
1724 #define _gloffset_CreateShaderObjectARB driDispatchRemapTable[CreateShaderObjectARB_remap_index]
1725 #define _gloffset_DeleteObjectARB driDispatchRemapTable[DeleteObjectARB_remap_index]
1726 #define _gloffset_DetachObjectARB driDispatchRemapTable[DetachObjectARB_remap_index]
1727 #define _gloffset_GetActiveUniformARB driDispatchRemapTable[GetActiveUniformARB_remap_index]
1728 #define _gloffset_GetAttachedObjectsARB driDispatchRemapTable[GetAttachedObjectsARB_remap_index]
1729 #define _gloffset_GetHandleARB driDispatchRemapTable[GetHandleARB_remap_index]
1730 #define _gloffset_GetInfoLogARB driDispatchRemapTable[GetInfoLogARB_remap_index]
1731 #define _gloffset_GetObjectParameterfvARB driDispatchRemapTable[GetObjectParameterfvARB_remap_index]
1732 #define _gloffset_GetObjectParameterivARB driDispatchRemapTable[GetObjectParameterivARB_remap_index]
1733 #define _gloffset_GetShaderSourceARB driDispatchRemapTable[GetShaderSourceARB_remap_index]
1734 #define _gloffset_GetUniformLocationARB driDispatchRemapTable[GetUniformLocationARB_remap_index]
1735 #define _gloffset_GetUniformfvARB driDispatchRemapTable[GetUniformfvARB_remap_index]
1736 #define _gloffset_GetUniformivARB driDispatchRemapTable[GetUniformivARB_remap_index]
1737 #define _gloffset_LinkProgramARB driDispatchRemapTable[LinkProgramARB_remap_index]
1738 #define _gloffset_ShaderSourceARB driDispatchRemapTable[ShaderSourceARB_remap_index]
1739 #define _gloffset_Uniform1fARB driDispatchRemapTable[Uniform1fARB_remap_index]
1740 #define _gloffset_Uniform1fvARB driDispatchRemapTable[Uniform1fvARB_remap_index]
1741 #define _gloffset_Uniform1iARB driDispatchRemapTable[Uniform1iARB_remap_index]
1742 #define _gloffset_Uniform1ivARB driDispatchRemapTable[Uniform1ivARB_remap_index]
1743 #define _gloffset_Uniform2fARB driDispatchRemapTable[Uniform2fARB_remap_index]
1744 #define _gloffset_Uniform2fvARB driDispatchRemapTable[Uniform2fvARB_remap_index]
1745 #define _gloffset_Uniform2iARB driDispatchRemapTable[Uniform2iARB_remap_index]
1746 #define _gloffset_Uniform2ivARB driDispatchRemapTable[Uniform2ivARB_remap_index]
1747 #define _gloffset_Uniform3fARB driDispatchRemapTable[Uniform3fARB_remap_index]
1748 #define _gloffset_Uniform3fvARB driDispatchRemapTable[Uniform3fvARB_remap_index]
1749 #define _gloffset_Uniform3iARB driDispatchRemapTable[Uniform3iARB_remap_index]
1750 #define _gloffset_Uniform3ivARB driDispatchRemapTable[Uniform3ivARB_remap_index]
1751 #define _gloffset_Uniform4fARB driDispatchRemapTable[Uniform4fARB_remap_index]
1752 #define _gloffset_Uniform4fvARB driDispatchRemapTable[Uniform4fvARB_remap_index]
1753 #define _gloffset_Uniform4iARB driDispatchRemapTable[Uniform4iARB_remap_index]
1754 #define _gloffset_Uniform4ivARB driDispatchRemapTable[Uniform4ivARB_remap_index]
1755 #define _gloffset_UniformMatrix2fvARB driDispatchRemapTable[UniformMatrix2fvARB_remap_index]
1756 #define _gloffset_UniformMatrix3fvARB driDispatchRemapTable[UniformMatrix3fvARB_remap_index]
1757 #define _gloffset_UniformMatrix4fvARB driDispatchRemapTable[UniformMatrix4fvARB_remap_index]
1758 #define _gloffset_UseProgramObjectARB driDispatchRemapTable[UseProgramObjectARB_remap_index]
1759 #define _gloffset_ValidateProgramARB driDispatchRemapTable[ValidateProgramARB_remap_index]
1760 #define _gloffset_BindAttribLocationARB driDispatchRemapTable[BindAttribLocationARB_remap_index]
1761 #define _gloffset_GetActiveAttribARB driDispatchRemapTable[GetActiveAttribARB_remap_index]
1762 #define _gloffset_GetAttribLocationARB driDispatchRemapTable[GetAttribLocationARB_remap_index]
1763 #define _gloffset_DrawBuffersARB driDispatchRemapTable[DrawBuffersARB_remap_index]
1764 #define _gloffset_ClampColorARB driDispatchRemapTable[ClampColorARB_remap_index]
1765 #define _gloffset_DrawArraysInstancedARB driDispatchRemapTable[DrawArraysInstancedARB_remap_index]
1766 #define _gloffset_DrawElementsInstancedARB driDispatchRemapTable[DrawElementsInstancedARB_remap_index]
1767 #define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index]
1768 #define _gloffset_FramebufferTextureARB driDispatchRemapTable[FramebufferTextureARB_remap_index]
1769 #define _gloffset_FramebufferTextureFaceARB driDispatchRemapTable[FramebufferTextureFaceARB_remap_index]
1770 #define _gloffset_ProgramParameteriARB driDispatchRemapTable[ProgramParameteriARB_remap_index]
1771 #define _gloffset_VertexAttribDivisorARB driDispatchRemapTable[VertexAttribDivisorARB_remap_index]
1772 #define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
1773 #define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
1774 #define _gloffset_TexBufferARB driDispatchRemapTable[TexBufferARB_remap_index]
1775 #define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index]
1776 #define _gloffset_GenVertexArrays driDispatchRemapTable[GenVertexArrays_remap_index]
1777 #define _gloffset_CopyBufferSubData driDispatchRemapTable[CopyBufferSubData_remap_index]
1778 #define _gloffset_ClientWaitSync driDispatchRemapTable[ClientWaitSync_remap_index]
1779 #define _gloffset_DeleteSync driDispatchRemapTable[DeleteSync_remap_index]
1780 #define _gloffset_FenceSync driDispatchRemapTable[FenceSync_remap_index]
1781 #define _gloffset_GetInteger64v driDispatchRemapTable[GetInteger64v_remap_index]
1782 #define _gloffset_GetSynciv driDispatchRemapTable[GetSynciv_remap_index]
1783 #define _gloffset_IsSync driDispatchRemapTable[IsSync_remap_index]
1784 #define _gloffset_WaitSync driDispatchRemapTable[WaitSync_remap_index]
1785 #define _gloffset_DrawElementsBaseVertex driDispatchRemapTable[DrawElementsBaseVertex_remap_index]
1786 #define _gloffset_DrawElementsInstancedBaseVertex driDispatchRemapTable[DrawElementsInstancedBaseVertex_remap_index]
1787 #define _gloffset_DrawRangeElementsBaseVertex driDispatchRemapTable[DrawRangeElementsBaseVertex_remap_index]
1788 #define _gloffset_MultiDrawElementsBaseVertex driDispatchRemapTable[MultiDrawElementsBaseVertex_remap_index]
1789 #define _gloffset_BlendEquationSeparateiARB driDispatchRemapTable[BlendEquationSeparateiARB_remap_index]
1790 #define _gloffset_BlendEquationiARB driDispatchRemapTable[BlendEquationiARB_remap_index]
1791 #define _gloffset_BlendFuncSeparateiARB driDispatchRemapTable[BlendFuncSeparateiARB_remap_index]
1792 #define _gloffset_BlendFunciARB driDispatchRemapTable[BlendFunciARB_remap_index]
1793 #define _gloffset_BindSampler driDispatchRemapTable[BindSampler_remap_index]
1794 #define _gloffset_DeleteSamplers driDispatchRemapTable[DeleteSamplers_remap_index]
1795 #define _gloffset_GenSamplers driDispatchRemapTable[GenSamplers_remap_index]
1796 #define _gloffset_GetSamplerParameterIiv driDispatchRemapTable[GetSamplerParameterIiv_remap_index]
1797 #define _gloffset_GetSamplerParameterIuiv driDispatchRemapTable[GetSamplerParameterIuiv_remap_index]
1798 #define _gloffset_GetSamplerParameterfv driDispatchRemapTable[GetSamplerParameterfv_remap_index]
1799 #define _gloffset_GetSamplerParameteriv driDispatchRemapTable[GetSamplerParameteriv_remap_index]
1800 #define _gloffset_IsSampler driDispatchRemapTable[IsSampler_remap_index]
1801 #define _gloffset_SamplerParameterIiv driDispatchRemapTable[SamplerParameterIiv_remap_index]
1802 #define _gloffset_SamplerParameterIuiv driDispatchRemapTable[SamplerParameterIuiv_remap_index]
1803 #define _gloffset_SamplerParameterf driDispatchRemapTable[SamplerParameterf_remap_index]
1804 #define _gloffset_SamplerParameterfv driDispatchRemapTable[SamplerParameterfv_remap_index]
1805 #define _gloffset_SamplerParameteri driDispatchRemapTable[SamplerParameteri_remap_index]
1806 #define _gloffset_SamplerParameteriv driDispatchRemapTable[SamplerParameteriv_remap_index]
1807 #define _gloffset_ColorP3ui driDispatchRemapTable[ColorP3ui_remap_index]
1808 #define _gloffset_ColorP3uiv driDispatchRemapTable[ColorP3uiv_remap_index]
1809 #define _gloffset_ColorP4ui driDispatchRemapTable[ColorP4ui_remap_index]
1810 #define _gloffset_ColorP4uiv driDispatchRemapTable[ColorP4uiv_remap_index]
1811 #define _gloffset_MultiTexCoordP1ui driDispatchRemapTable[MultiTexCoordP1ui_remap_index]
1812 #define _gloffset_MultiTexCoordP1uiv driDispatchRemapTable[MultiTexCoordP1uiv_remap_index]
1813 #define _gloffset_MultiTexCoordP2ui driDispatchRemapTable[MultiTexCoordP2ui_remap_index]
1814 #define _gloffset_MultiTexCoordP2uiv driDispatchRemapTable[MultiTexCoordP2uiv_remap_index]
1815 #define _gloffset_MultiTexCoordP3ui driDispatchRemapTable[MultiTexCoordP3ui_remap_index]
1816 #define _gloffset_MultiTexCoordP3uiv driDispatchRemapTable[MultiTexCoordP3uiv_remap_index]
1817 #define _gloffset_MultiTexCoordP4ui driDispatchRemapTable[MultiTexCoordP4ui_remap_index]
1818 #define _gloffset_MultiTexCoordP4uiv driDispatchRemapTable[MultiTexCoordP4uiv_remap_index]
1819 #define _gloffset_NormalP3ui driDispatchRemapTable[NormalP3ui_remap_index]
1820 #define _gloffset_NormalP3uiv driDispatchRemapTable[NormalP3uiv_remap_index]
1821 #define _gloffset_SecondaryColorP3ui driDispatchRemapTable[SecondaryColorP3ui_remap_index]
1822 #define _gloffset_SecondaryColorP3uiv driDispatchRemapTable[SecondaryColorP3uiv_remap_index]
1823 #define _gloffset_TexCoordP1ui driDispatchRemapTable[TexCoordP1ui_remap_index]
1824 #define _gloffset_TexCoordP1uiv driDispatchRemapTable[TexCoordP1uiv_remap_index]
1825 #define _gloffset_TexCoordP2ui driDispatchRemapTable[TexCoordP2ui_remap_index]
1826 #define _gloffset_TexCoordP2uiv driDispatchRemapTable[TexCoordP2uiv_remap_index]
1827 #define _gloffset_TexCoordP3ui driDispatchRemapTable[TexCoordP3ui_remap_index]
1828 #define _gloffset_TexCoordP3uiv driDispatchRemapTable[TexCoordP3uiv_remap_index]
1829 #define _gloffset_TexCoordP4ui driDispatchRemapTable[TexCoordP4ui_remap_index]
1830 #define _gloffset_TexCoordP4uiv driDispatchRemapTable[TexCoordP4uiv_remap_index]
1831 #define _gloffset_VertexAttribP1ui driDispatchRemapTable[VertexAttribP1ui_remap_index]
1832 #define _gloffset_VertexAttribP1uiv driDispatchRemapTable[VertexAttribP1uiv_remap_index]
1833 #define _gloffset_VertexAttribP2ui driDispatchRemapTable[VertexAttribP2ui_remap_index]
1834 #define _gloffset_VertexAttribP2uiv driDispatchRemapTable[VertexAttribP2uiv_remap_index]
1835 #define _gloffset_VertexAttribP3ui driDispatchRemapTable[VertexAttribP3ui_remap_index]
1836 #define _gloffset_VertexAttribP3uiv driDispatchRemapTable[VertexAttribP3uiv_remap_index]
1837 #define _gloffset_VertexAttribP4ui driDispatchRemapTable[VertexAttribP4ui_remap_index]
1838 #define _gloffset_VertexAttribP4uiv driDispatchRemapTable[VertexAttribP4uiv_remap_index]
1839 #define _gloffset_VertexP2ui driDispatchRemapTable[VertexP2ui_remap_index]
1840 #define _gloffset_VertexP2uiv driDispatchRemapTable[VertexP2uiv_remap_index]
1841 #define _gloffset_VertexP3ui driDispatchRemapTable[VertexP3ui_remap_index]
1842 #define _gloffset_VertexP3uiv driDispatchRemapTable[VertexP3uiv_remap_index]
1843 #define _gloffset_VertexP4ui driDispatchRemapTable[VertexP4ui_remap_index]
1844 #define _gloffset_VertexP4uiv driDispatchRemapTable[VertexP4uiv_remap_index]
1845 #define _gloffset_BindTransformFeedback driDispatchRemapTable[BindTransformFeedback_remap_index]
1846 #define _gloffset_DeleteTransformFeedbacks driDispatchRemapTable[DeleteTransformFeedbacks_remap_index]
1847 #define _gloffset_DrawTransformFeedback driDispatchRemapTable[DrawTransformFeedback_remap_index]
1848 #define _gloffset_GenTransformFeedbacks driDispatchRemapTable[GenTransformFeedbacks_remap_index]
1849 #define _gloffset_IsTransformFeedback driDispatchRemapTable[IsTransformFeedback_remap_index]
1850 #define _gloffset_PauseTransformFeedback driDispatchRemapTable[PauseTransformFeedback_remap_index]
1851 #define _gloffset_ResumeTransformFeedback driDispatchRemapTable[ResumeTransformFeedback_remap_index]
1852 #define _gloffset_ClearDepthf driDispatchRemapTable[ClearDepthf_remap_index]
1853 #define _gloffset_DepthRangef driDispatchRemapTable[DepthRangef_remap_index]
1854 #define _gloffset_GetShaderPrecisionFormat driDispatchRemapTable[GetShaderPrecisionFormat_remap_index]
1855 #define _gloffset_ReleaseShaderCompiler driDispatchRemapTable[ReleaseShaderCompiler_remap_index]
1856 #define _gloffset_ShaderBinary driDispatchRemapTable[ShaderBinary_remap_index]
1857 #define _gloffset_GetGraphicsResetStatusARB driDispatchRemapTable[GetGraphicsResetStatusARB_remap_index]
1858 #define _gloffset_GetnColorTableARB driDispatchRemapTable[GetnColorTableARB_remap_index]
1859 #define _gloffset_GetnCompressedTexImageARB driDispatchRemapTable[GetnCompressedTexImageARB_remap_index]
1860 #define _gloffset_GetnConvolutionFilterARB driDispatchRemapTable[GetnConvolutionFilterARB_remap_index]
1861 #define _gloffset_GetnHistogramARB driDispatchRemapTable[GetnHistogramARB_remap_index]
1862 #define _gloffset_GetnMapdvARB driDispatchRemapTable[GetnMapdvARB_remap_index]
1863 #define _gloffset_GetnMapfvARB driDispatchRemapTable[GetnMapfvARB_remap_index]
1864 #define _gloffset_GetnMapivARB driDispatchRemapTable[GetnMapivARB_remap_index]
1865 #define _gloffset_GetnMinmaxARB driDispatchRemapTable[GetnMinmaxARB_remap_index]
1866 #define _gloffset_GetnPixelMapfvARB driDispatchRemapTable[GetnPixelMapfvARB_remap_index]
1867 #define _gloffset_GetnPixelMapuivARB driDispatchRemapTable[GetnPixelMapuivARB_remap_index]
1868 #define _gloffset_GetnPixelMapusvARB driDispatchRemapTable[GetnPixelMapusvARB_remap_index]
1869 #define _gloffset_GetnPolygonStippleARB driDispatchRemapTable[GetnPolygonStippleARB_remap_index]
1870 #define _gloffset_GetnSeparableFilterARB driDispatchRemapTable[GetnSeparableFilterARB_remap_index]
1871 #define _gloffset_GetnTexImageARB driDispatchRemapTable[GetnTexImageARB_remap_index]
1872 #define _gloffset_GetnUniformdvARB driDispatchRemapTable[GetnUniformdvARB_remap_index]
1873 #define _gloffset_GetnUniformfvARB driDispatchRemapTable[GetnUniformfvARB_remap_index]
1874 #define _gloffset_GetnUniformivARB driDispatchRemapTable[GetnUniformivARB_remap_index]
1875 #define _gloffset_GetnUniformuivARB driDispatchRemapTable[GetnUniformuivARB_remap_index]
1876 #define _gloffset_ReadnPixelsARB driDispatchRemapTable[ReadnPixelsARB_remap_index]
1877 #define _gloffset_PolygonOffsetEXT driDispatchRemapTable[PolygonOffsetEXT_remap_index]
1878 #define _gloffset_GetPixelTexGenParameterfvSGIS driDispatchRemapTable[GetPixelTexGenParameterfvSGIS_remap_index]
1879 #define _gloffset_GetPixelTexGenParameterivSGIS driDispatchRemapTable[GetPixelTexGenParameterivSGIS_remap_index]
1880 #define _gloffset_PixelTexGenParameterfSGIS driDispatchRemapTable[PixelTexGenParameterfSGIS_remap_index]
1881 #define _gloffset_PixelTexGenParameterfvSGIS driDispatchRemapTable[PixelTexGenParameterfvSGIS_remap_index]
1882 #define _gloffset_PixelTexGenParameteriSGIS driDispatchRemapTable[PixelTexGenParameteriSGIS_remap_index]
1883 #define _gloffset_PixelTexGenParameterivSGIS driDispatchRemapTable[PixelTexGenParameterivSGIS_remap_index]
1884 #define _gloffset_SampleMaskSGIS driDispatchRemapTable[SampleMaskSGIS_remap_index]
1885 #define _gloffset_SamplePatternSGIS driDispatchRemapTable[SamplePatternSGIS_remap_index]
1886 #define _gloffset_ColorPointerEXT driDispatchRemapTable[ColorPointerEXT_remap_index]
1887 #define _gloffset_EdgeFlagPointerEXT driDispatchRemapTable[EdgeFlagPointerEXT_remap_index]
1888 #define _gloffset_IndexPointerEXT driDispatchRemapTable[IndexPointerEXT_remap_index]
1889 #define _gloffset_NormalPointerEXT driDispatchRemapTable[NormalPointerEXT_remap_index]
1890 #define _gloffset_TexCoordPointerEXT driDispatchRemapTable[TexCoordPointerEXT_remap_index]
1891 #define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index]
1892 #define _gloffset_PointParameterfEXT driDispatchRemapTable[PointParameterfEXT_remap_index]
1893 #define _gloffset_PointParameterfvEXT driDispatchRemapTable[PointParameterfvEXT_remap_index]
1894 #define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index]
1895 #define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index]
1896 #define _gloffset_SecondaryColor3bEXT driDispatchRemapTable[SecondaryColor3bEXT_remap_index]
1897 #define _gloffset_SecondaryColor3bvEXT driDispatchRemapTable[SecondaryColor3bvEXT_remap_index]
1898 #define _gloffset_SecondaryColor3dEXT driDispatchRemapTable[SecondaryColor3dEXT_remap_index]
1899 #define _gloffset_SecondaryColor3dvEXT driDispatchRemapTable[SecondaryColor3dvEXT_remap_index]
1900 #define _gloffset_SecondaryColor3fEXT driDispatchRemapTable[SecondaryColor3fEXT_remap_index]
1901 #define _gloffset_SecondaryColor3fvEXT driDispatchRemapTable[SecondaryColor3fvEXT_remap_index]
1902 #define _gloffset_SecondaryColor3iEXT driDispatchRemapTable[SecondaryColor3iEXT_remap_index]
1903 #define _gloffset_SecondaryColor3ivEXT driDispatchRemapTable[SecondaryColor3ivEXT_remap_index]
1904 #define _gloffset_SecondaryColor3sEXT driDispatchRemapTable[SecondaryColor3sEXT_remap_index]
1905 #define _gloffset_SecondaryColor3svEXT driDispatchRemapTable[SecondaryColor3svEXT_remap_index]
1906 #define _gloffset_SecondaryColor3ubEXT driDispatchRemapTable[SecondaryColor3ubEXT_remap_index]
1907 #define _gloffset_SecondaryColor3ubvEXT driDispatchRemapTable[SecondaryColor3ubvEXT_remap_index]
1908 #define _gloffset_SecondaryColor3uiEXT driDispatchRemapTable[SecondaryColor3uiEXT_remap_index]
1909 #define _gloffset_SecondaryColor3uivEXT driDispatchRemapTable[SecondaryColor3uivEXT_remap_index]
1910 #define _gloffset_SecondaryColor3usEXT driDispatchRemapTable[SecondaryColor3usEXT_remap_index]
1911 #define _gloffset_SecondaryColor3usvEXT driDispatchRemapTable[SecondaryColor3usvEXT_remap_index]
1912 #define _gloffset_SecondaryColorPointerEXT driDispatchRemapTable[SecondaryColorPointerEXT_remap_index]
1913 #define _gloffset_MultiDrawArraysEXT driDispatchRemapTable[MultiDrawArraysEXT_remap_index]
1914 #define _gloffset_MultiDrawElementsEXT driDispatchRemapTable[MultiDrawElementsEXT_remap_index]
1915 #define _gloffset_FogCoordPointerEXT driDispatchRemapTable[FogCoordPointerEXT_remap_index]
1916 #define _gloffset_FogCoorddEXT driDispatchRemapTable[FogCoorddEXT_remap_index]
1917 #define _gloffset_FogCoorddvEXT driDispatchRemapTable[FogCoorddvEXT_remap_index]
1918 #define _gloffset_FogCoordfEXT driDispatchRemapTable[FogCoordfEXT_remap_index]
1919 #define _gloffset_FogCoordfvEXT driDispatchRemapTable[FogCoordfvEXT_remap_index]
1920 #define _gloffset_PixelTexGenSGIX driDispatchRemapTable[PixelTexGenSGIX_remap_index]
1921 #define _gloffset_BlendFuncSeparateEXT driDispatchRemapTable[BlendFuncSeparateEXT_remap_index]
1922 #define _gloffset_FlushVertexArrayRangeNV driDispatchRemapTable[FlushVertexArrayRangeNV_remap_index]
1923 #define _gloffset_VertexArrayRangeNV driDispatchRemapTable[VertexArrayRangeNV_remap_index]
1924 #define _gloffset_CombinerInputNV driDispatchRemapTable[CombinerInputNV_remap_index]
1925 #define _gloffset_CombinerOutputNV driDispatchRemapTable[CombinerOutputNV_remap_index]
1926 #define _gloffset_CombinerParameterfNV driDispatchRemapTable[CombinerParameterfNV_remap_index]
1927 #define _gloffset_CombinerParameterfvNV driDispatchRemapTable[CombinerParameterfvNV_remap_index]
1928 #define _gloffset_CombinerParameteriNV driDispatchRemapTable[CombinerParameteriNV_remap_index]
1929 #define _gloffset_CombinerParameterivNV driDispatchRemapTable[CombinerParameterivNV_remap_index]
1930 #define _gloffset_FinalCombinerInputNV driDispatchRemapTable[FinalCombinerInputNV_remap_index]
1931 #define _gloffset_GetCombinerInputParameterfvNV driDispatchRemapTable[GetCombinerInputParameterfvNV_remap_index]
1932 #define _gloffset_GetCombinerInputParameterivNV driDispatchRemapTable[GetCombinerInputParameterivNV_remap_index]
1933 #define _gloffset_GetCombinerOutputParameterfvNV driDispatchRemapTable[GetCombinerOutputParameterfvNV_remap_index]
1934 #define _gloffset_GetCombinerOutputParameterivNV driDispatchRemapTable[GetCombinerOutputParameterivNV_remap_index]
1935 #define _gloffset_GetFinalCombinerInputParameterfvNV driDispatchRemapTable[GetFinalCombinerInputParameterfvNV_remap_index]
1936 #define _gloffset_GetFinalCombinerInputParameterivNV driDispatchRemapTable[GetFinalCombinerInputParameterivNV_remap_index]
1937 #define _gloffset_ResizeBuffersMESA driDispatchRemapTable[ResizeBuffersMESA_remap_index]
1938 #define _gloffset_WindowPos2dMESA driDispatchRemapTable[WindowPos2dMESA_remap_index]
1939 #define _gloffset_WindowPos2dvMESA driDispatchRemapTable[WindowPos2dvMESA_remap_index]
1940 #define _gloffset_WindowPos2fMESA driDispatchRemapTable[WindowPos2fMESA_remap_index]
1941 #define _gloffset_WindowPos2fvMESA driDispatchRemapTable[WindowPos2fvMESA_remap_index]
1942 #define _gloffset_WindowPos2iMESA driDispatchRemapTable[WindowPos2iMESA_remap_index]
1943 #define _gloffset_WindowPos2ivMESA driDispatchRemapTable[WindowPos2ivMESA_remap_index]
1944 #define _gloffset_WindowPos2sMESA driDispatchRemapTable[WindowPos2sMESA_remap_index]
1945 #define _gloffset_WindowPos2svMESA driDispatchRemapTable[WindowPos2svMESA_remap_index]
1946 #define _gloffset_WindowPos3dMESA driDispatchRemapTable[WindowPos3dMESA_remap_index]
1947 #define _gloffset_WindowPos3dvMESA driDispatchRemapTable[WindowPos3dvMESA_remap_index]
1948 #define _gloffset_WindowPos3fMESA driDispatchRemapTable[WindowPos3fMESA_remap_index]
1949 #define _gloffset_WindowPos3fvMESA driDispatchRemapTable[WindowPos3fvMESA_remap_index]
1950 #define _gloffset_WindowPos3iMESA driDispatchRemapTable[WindowPos3iMESA_remap_index]
1951 #define _gloffset_WindowPos3ivMESA driDispatchRemapTable[WindowPos3ivMESA_remap_index]
1952 #define _gloffset_WindowPos3sMESA driDispatchRemapTable[WindowPos3sMESA_remap_index]
1953 #define _gloffset_WindowPos3svMESA driDispatchRemapTable[WindowPos3svMESA_remap_index]
1954 #define _gloffset_WindowPos4dMESA driDispatchRemapTable[WindowPos4dMESA_remap_index]
1955 #define _gloffset_WindowPos4dvMESA driDispatchRemapTable[WindowPos4dvMESA_remap_index]
1956 #define _gloffset_WindowPos4fMESA driDispatchRemapTable[WindowPos4fMESA_remap_index]
1957 #define _gloffset_WindowPos4fvMESA driDispatchRemapTable[WindowPos4fvMESA_remap_index]
1958 #define _gloffset_WindowPos4iMESA driDispatchRemapTable[WindowPos4iMESA_remap_index]
1959 #define _gloffset_WindowPos4ivMESA driDispatchRemapTable[WindowPos4ivMESA_remap_index]
1960 #define _gloffset_WindowPos4sMESA driDispatchRemapTable[WindowPos4sMESA_remap_index]
1961 #define _gloffset_WindowPos4svMESA driDispatchRemapTable[WindowPos4svMESA_remap_index]
1962 #define _gloffset_MultiModeDrawArraysIBM driDispatchRemapTable[MultiModeDrawArraysIBM_remap_index]
1963 #define _gloffset_MultiModeDrawElementsIBM driDispatchRemapTable[MultiModeDrawElementsIBM_remap_index]
1964 #define _gloffset_DeleteFencesNV driDispatchRemapTable[DeleteFencesNV_remap_index]
1965 #define _gloffset_FinishFenceNV driDispatchRemapTable[FinishFenceNV_remap_index]
1966 #define _gloffset_GenFencesNV driDispatchRemapTable[GenFencesNV_remap_index]
1967 #define _gloffset_GetFenceivNV driDispatchRemapTable[GetFenceivNV_remap_index]
1968 #define _gloffset_IsFenceNV driDispatchRemapTable[IsFenceNV_remap_index]
1969 #define _gloffset_SetFenceNV driDispatchRemapTable[SetFenceNV_remap_index]
1970 #define _gloffset_TestFenceNV driDispatchRemapTable[TestFenceNV_remap_index]
1971 #define _gloffset_AreProgramsResidentNV driDispatchRemapTable[AreProgramsResidentNV_remap_index]
1972 #define _gloffset_BindProgramNV driDispatchRemapTable[BindProgramNV_remap_index]
1973 #define _gloffset_DeleteProgramsNV driDispatchRemapTable[DeleteProgramsNV_remap_index]
1974 #define _gloffset_ExecuteProgramNV driDispatchRemapTable[ExecuteProgramNV_remap_index]
1975 #define _gloffset_GenProgramsNV driDispatchRemapTable[GenProgramsNV_remap_index]
1976 #define _gloffset_GetProgramParameterdvNV driDispatchRemapTable[GetProgramParameterdvNV_remap_index]
1977 #define _gloffset_GetProgramParameterfvNV driDispatchRemapTable[GetProgramParameterfvNV_remap_index]
1978 #define _gloffset_GetProgramStringNV driDispatchRemapTable[GetProgramStringNV_remap_index]
1979 #define _gloffset_GetProgramivNV driDispatchRemapTable[GetProgramivNV_remap_index]
1980 #define _gloffset_GetTrackMatrixivNV driDispatchRemapTable[GetTrackMatrixivNV_remap_index]
1981 #define _gloffset_GetVertexAttribPointervNV driDispatchRemapTable[GetVertexAttribPointervNV_remap_index]
1982 #define _gloffset_GetVertexAttribdvNV driDispatchRemapTable[GetVertexAttribdvNV_remap_index]
1983 #define _gloffset_GetVertexAttribfvNV driDispatchRemapTable[GetVertexAttribfvNV_remap_index]
1984 #define _gloffset_GetVertexAttribivNV driDispatchRemapTable[GetVertexAttribivNV_remap_index]
1985 #define _gloffset_IsProgramNV driDispatchRemapTable[IsProgramNV_remap_index]
1986 #define _gloffset_LoadProgramNV driDispatchRemapTable[LoadProgramNV_remap_index]
1987 #define _gloffset_ProgramParameters4dvNV driDispatchRemapTable[ProgramParameters4dvNV_remap_index]
1988 #define _gloffset_ProgramParameters4fvNV driDispatchRemapTable[ProgramParameters4fvNV_remap_index]
1989 #define _gloffset_RequestResidentProgramsNV driDispatchRemapTable[RequestResidentProgramsNV_remap_index]
1990 #define _gloffset_TrackMatrixNV driDispatchRemapTable[TrackMatrixNV_remap_index]
1991 #define _gloffset_VertexAttrib1dNV driDispatchRemapTable[VertexAttrib1dNV_remap_index]
1992 #define _gloffset_VertexAttrib1dvNV driDispatchRemapTable[VertexAttrib1dvNV_remap_index]
1993 #define _gloffset_VertexAttrib1fNV driDispatchRemapTable[VertexAttrib1fNV_remap_index]
1994 #define _gloffset_VertexAttrib1fvNV driDispatchRemapTable[VertexAttrib1fvNV_remap_index]
1995 #define _gloffset_VertexAttrib1sNV driDispatchRemapTable[VertexAttrib1sNV_remap_index]
1996 #define _gloffset_VertexAttrib1svNV driDispatchRemapTable[VertexAttrib1svNV_remap_index]
1997 #define _gloffset_VertexAttrib2dNV driDispatchRemapTable[VertexAttrib2dNV_remap_index]
1998 #define _gloffset_VertexAttrib2dvNV driDispatchRemapTable[VertexAttrib2dvNV_remap_index]
1999 #define _gloffset_VertexAttrib2fNV driDispatchRemapTable[VertexAttrib2fNV_remap_index]
2000 #define _gloffset_VertexAttrib2fvNV driDispatchRemapTable[VertexAttrib2fvNV_remap_index]
2001 #define _gloffset_VertexAttrib2sNV driDispatchRemapTable[VertexAttrib2sNV_remap_index]
2002 #define _gloffset_VertexAttrib2svNV driDispatchRemapTable[VertexAttrib2svNV_remap_index]
2003 #define _gloffset_VertexAttrib3dNV driDispatchRemapTable[VertexAttrib3dNV_remap_index]
2004 #define _gloffset_VertexAttrib3dvNV driDispatchRemapTable[VertexAttrib3dvNV_remap_index]
2005 #define _gloffset_VertexAttrib3fNV driDispatchRemapTable[VertexAttrib3fNV_remap_index]
2006 #define _gloffset_VertexAttrib3fvNV driDispatchRemapTable[VertexAttrib3fvNV_remap_index]
2007 #define _gloffset_VertexAttrib3sNV driDispatchRemapTable[VertexAttrib3sNV_remap_index]
2008 #define _gloffset_VertexAttrib3svNV driDispatchRemapTable[VertexAttrib3svNV_remap_index]
2009 #define _gloffset_VertexAttrib4dNV driDispatchRemapTable[VertexAttrib4dNV_remap_index]
2010 #define _gloffset_VertexAttrib4dvNV driDispatchRemapTable[VertexAttrib4dvNV_remap_index]
2011 #define _gloffset_VertexAttrib4fNV driDispatchRemapTable[VertexAttrib4fNV_remap_index]
2012 #define _gloffset_VertexAttrib4fvNV driDispatchRemapTable[VertexAttrib4fvNV_remap_index]
2013 #define _gloffset_VertexAttrib4sNV driDispatchRemapTable[VertexAttrib4sNV_remap_index]
2014 #define _gloffset_VertexAttrib4svNV driDispatchRemapTable[VertexAttrib4svNV_remap_index]
2015 #define _gloffset_VertexAttrib4ubNV driDispatchRemapTable[VertexAttrib4ubNV_remap_index]
2016 #define _gloffset_VertexAttrib4ubvNV driDispatchRemapTable[VertexAttrib4ubvNV_remap_index]
2017 #define _gloffset_VertexAttribPointerNV driDispatchRemapTable[VertexAttribPointerNV_remap_index]
2018 #define _gloffset_VertexAttribs1dvNV driDispatchRemapTable[VertexAttribs1dvNV_remap_index]
2019 #define _gloffset_VertexAttribs1fvNV driDispatchRemapTable[VertexAttribs1fvNV_remap_index]
2020 #define _gloffset_VertexAttribs1svNV driDispatchRemapTable[VertexAttribs1svNV_remap_index]
2021 #define _gloffset_VertexAttribs2dvNV driDispatchRemapTable[VertexAttribs2dvNV_remap_index]
2022 #define _gloffset_VertexAttribs2fvNV driDispatchRemapTable[VertexAttribs2fvNV_remap_index]
2023 #define _gloffset_VertexAttribs2svNV driDispatchRemapTable[VertexAttribs2svNV_remap_index]
2024 #define _gloffset_VertexAttribs3dvNV driDispatchRemapTable[VertexAttribs3dvNV_remap_index]
2025 #define _gloffset_VertexAttribs3fvNV driDispatchRemapTable[VertexAttribs3fvNV_remap_index]
2026 #define _gloffset_VertexAttribs3svNV driDispatchRemapTable[VertexAttribs3svNV_remap_index]
2027 #define _gloffset_VertexAttribs4dvNV driDispatchRemapTable[VertexAttribs4dvNV_remap_index]
2028 #define _gloffset_VertexAttribs4fvNV driDispatchRemapTable[VertexAttribs4fvNV_remap_index]
2029 #define _gloffset_VertexAttribs4svNV driDispatchRemapTable[VertexAttribs4svNV_remap_index]
2030 #define _gloffset_VertexAttribs4ubvNV driDispatchRemapTable[VertexAttribs4ubvNV_remap_index]
2031 #define _gloffset_GetTexBumpParameterfvATI driDispatchRemapTable[GetTexBumpParameterfvATI_remap_index]
2032 #define _gloffset_GetTexBumpParameterivATI driDispatchRemapTable[GetTexBumpParameterivATI_remap_index]
2033 #define _gloffset_TexBumpParameterfvATI driDispatchRemapTable[TexBumpParameterfvATI_remap_index]
2034 #define _gloffset_TexBumpParameterivATI driDispatchRemapTable[TexBumpParameterivATI_remap_index]
2035 #define _gloffset_AlphaFragmentOp1ATI driDispatchRemapTable[AlphaFragmentOp1ATI_remap_index]
2036 #define _gloffset_AlphaFragmentOp2ATI driDispatchRemapTable[AlphaFragmentOp2ATI_remap_index]
2037 #define _gloffset_AlphaFragmentOp3ATI driDispatchRemapTable[AlphaFragmentOp3ATI_remap_index]
2038 #define _gloffset_BeginFragmentShaderATI driDispatchRemapTable[BeginFragmentShaderATI_remap_index]
2039 #define _gloffset_BindFragmentShaderATI driDispatchRemapTable[BindFragmentShaderATI_remap_index]
2040 #define _gloffset_ColorFragmentOp1ATI driDispatchRemapTable[ColorFragmentOp1ATI_remap_index]
2041 #define _gloffset_ColorFragmentOp2ATI driDispatchRemapTable[ColorFragmentOp2ATI_remap_index]
2042 #define _gloffset_ColorFragmentOp3ATI driDispatchRemapTable[ColorFragmentOp3ATI_remap_index]
2043 #define _gloffset_DeleteFragmentShaderATI driDispatchRemapTable[DeleteFragmentShaderATI_remap_index]
2044 #define _gloffset_EndFragmentShaderATI driDispatchRemapTable[EndFragmentShaderATI_remap_index]
2045 #define _gloffset_GenFragmentShadersATI driDispatchRemapTable[GenFragmentShadersATI_remap_index]
2046 #define _gloffset_PassTexCoordATI driDispatchRemapTable[PassTexCoordATI_remap_index]
2047 #define _gloffset_SampleMapATI driDispatchRemapTable[SampleMapATI_remap_index]
2048 #define _gloffset_SetFragmentShaderConstantATI driDispatchRemapTable[SetFragmentShaderConstantATI_remap_index]
2049 #define _gloffset_PointParameteriNV driDispatchRemapTable[PointParameteriNV_remap_index]
2050 #define _gloffset_PointParameterivNV driDispatchRemapTable[PointParameterivNV_remap_index]
2051 #define _gloffset_ActiveStencilFaceEXT driDispatchRemapTable[ActiveStencilFaceEXT_remap_index]
2052 #define _gloffset_BindVertexArrayAPPLE driDispatchRemapTable[BindVertexArrayAPPLE_remap_index]
2053 #define _gloffset_DeleteVertexArraysAPPLE driDispatchRemapTable[DeleteVertexArraysAPPLE_remap_index]
2054 #define _gloffset_GenVertexArraysAPPLE driDispatchRemapTable[GenVertexArraysAPPLE_remap_index]
2055 #define _gloffset_IsVertexArrayAPPLE driDispatchRemapTable[IsVertexArrayAPPLE_remap_index]
2056 #define _gloffset_GetProgramNamedParameterdvNV driDispatchRemapTable[GetProgramNamedParameterdvNV_remap_index]
2057 #define _gloffset_GetProgramNamedParameterfvNV driDispatchRemapTable[GetProgramNamedParameterfvNV_remap_index]
2058 #define _gloffset_ProgramNamedParameter4dNV driDispatchRemapTable[ProgramNamedParameter4dNV_remap_index]
2059 #define _gloffset_ProgramNamedParameter4dvNV driDispatchRemapTable[ProgramNamedParameter4dvNV_remap_index]
2060 #define _gloffset_ProgramNamedParameter4fNV driDispatchRemapTable[ProgramNamedParameter4fNV_remap_index]
2061 #define _gloffset_ProgramNamedParameter4fvNV driDispatchRemapTable[ProgramNamedParameter4fvNV_remap_index]
2062 #define _gloffset_PrimitiveRestartIndexNV driDispatchRemapTable[PrimitiveRestartIndexNV_remap_index]
2063 #define _gloffset_PrimitiveRestartNV driDispatchRemapTable[PrimitiveRestartNV_remap_index]
2064 #define _gloffset_DepthBoundsEXT driDispatchRemapTable[DepthBoundsEXT_remap_index]
2065 #define _gloffset_BlendEquationSeparateEXT driDispatchRemapTable[BlendEquationSeparateEXT_remap_index]
2066 #define _gloffset_BindFramebufferEXT driDispatchRemapTable[BindFramebufferEXT_remap_index]
2067 #define _gloffset_BindRenderbufferEXT driDispatchRemapTable[BindRenderbufferEXT_remap_index]
2068 #define _gloffset_CheckFramebufferStatusEXT driDispatchRemapTable[CheckFramebufferStatusEXT_remap_index]
2069 #define _gloffset_DeleteFramebuffersEXT driDispatchRemapTable[DeleteFramebuffersEXT_remap_index]
2070 #define _gloffset_DeleteRenderbuffersEXT driDispatchRemapTable[DeleteRenderbuffersEXT_remap_index]
2071 #define _gloffset_FramebufferRenderbufferEXT driDispatchRemapTable[FramebufferRenderbufferEXT_remap_index]
2072 #define _gloffset_FramebufferTexture1DEXT driDispatchRemapTable[FramebufferTexture1DEXT_remap_index]
2073 #define _gloffset_FramebufferTexture2DEXT driDispatchRemapTable[FramebufferTexture2DEXT_remap_index]
2074 #define _gloffset_FramebufferTexture3DEXT driDispatchRemapTable[FramebufferTexture3DEXT_remap_index]
2075 #define _gloffset_GenFramebuffersEXT driDispatchRemapTable[GenFramebuffersEXT_remap_index]
2076 #define _gloffset_GenRenderbuffersEXT driDispatchRemapTable[GenRenderbuffersEXT_remap_index]
2077 #define _gloffset_GenerateMipmapEXT driDispatchRemapTable[GenerateMipmapEXT_remap_index]
2078 #define _gloffset_GetFramebufferAttachmentParameterivEXT driDispatchRemapTable[GetFramebufferAttachmentParameterivEXT_remap_index]
2079 #define _gloffset_GetRenderbufferParameterivEXT driDispatchRemapTable[GetRenderbufferParameterivEXT_remap_index]
2080 #define _gloffset_IsFramebufferEXT driDispatchRemapTable[IsFramebufferEXT_remap_index]
2081 #define _gloffset_IsRenderbufferEXT driDispatchRemapTable[IsRenderbufferEXT_remap_index]
2082 #define _gloffset_RenderbufferStorageEXT driDispatchRemapTable[RenderbufferStorageEXT_remap_index]
2083 #define _gloffset_BlitFramebufferEXT driDispatchRemapTable[BlitFramebufferEXT_remap_index]
2084 #define _gloffset_BufferParameteriAPPLE driDispatchRemapTable[BufferParameteriAPPLE_remap_index]
2085 #define _gloffset_FlushMappedBufferRangeAPPLE driDispatchRemapTable[FlushMappedBufferRangeAPPLE_remap_index]
2086 #define _gloffset_BindFragDataLocationEXT driDispatchRemapTable[BindFragDataLocationEXT_remap_index]
2087 #define _gloffset_GetFragDataLocationEXT driDispatchRemapTable[GetFragDataLocationEXT_remap_index]
2088 #define _gloffset_GetUniformuivEXT driDispatchRemapTable[GetUniformuivEXT_remap_index]
2089 #define _gloffset_GetVertexAttribIivEXT driDispatchRemapTable[GetVertexAttribIivEXT_remap_index]
2090 #define _gloffset_GetVertexAttribIuivEXT driDispatchRemapTable[GetVertexAttribIuivEXT_remap_index]
2091 #define _gloffset_Uniform1uiEXT driDispatchRemapTable[Uniform1uiEXT_remap_index]
2092 #define _gloffset_Uniform1uivEXT driDispatchRemapTable[Uniform1uivEXT_remap_index]
2093 #define _gloffset_Uniform2uiEXT driDispatchRemapTable[Uniform2uiEXT_remap_index]
2094 #define _gloffset_Uniform2uivEXT driDispatchRemapTable[Uniform2uivEXT_remap_index]
2095 #define _gloffset_Uniform3uiEXT driDispatchRemapTable[Uniform3uiEXT_remap_index]
2096 #define _gloffset_Uniform3uivEXT driDispatchRemapTable[Uniform3uivEXT_remap_index]
2097 #define _gloffset_Uniform4uiEXT driDispatchRemapTable[Uniform4uiEXT_remap_index]
2098 #define _gloffset_Uniform4uivEXT driDispatchRemapTable[Uniform4uivEXT_remap_index]
2099 #define _gloffset_VertexAttribI1iEXT driDispatchRemapTable[VertexAttribI1iEXT_remap_index]
2100 #define _gloffset_VertexAttribI1ivEXT driDispatchRemapTable[VertexAttribI1ivEXT_remap_index]
2101 #define _gloffset_VertexAttribI1uiEXT driDispatchRemapTable[VertexAttribI1uiEXT_remap_index]
2102 #define _gloffset_VertexAttribI1uivEXT driDispatchRemapTable[VertexAttribI1uivEXT_remap_index]
2103 #define _gloffset_VertexAttribI2iEXT driDispatchRemapTable[VertexAttribI2iEXT_remap_index]
2104 #define _gloffset_VertexAttribI2ivEXT driDispatchRemapTable[VertexAttribI2ivEXT_remap_index]
2105 #define _gloffset_VertexAttribI2uiEXT driDispatchRemapTable[VertexAttribI2uiEXT_remap_index]
2106 #define _gloffset_VertexAttribI2uivEXT driDispatchRemapTable[VertexAttribI2uivEXT_remap_index]
2107 #define _gloffset_VertexAttribI3iEXT driDispatchRemapTable[VertexAttribI3iEXT_remap_index]
2108 #define _gloffset_VertexAttribI3ivEXT driDispatchRemapTable[VertexAttribI3ivEXT_remap_index]
2109 #define _gloffset_VertexAttribI3uiEXT driDispatchRemapTable[VertexAttribI3uiEXT_remap_index]
2110 #define _gloffset_VertexAttribI3uivEXT driDispatchRemapTable[VertexAttribI3uivEXT_remap_index]
2111 #define _gloffset_VertexAttribI4bvEXT driDispatchRemapTable[VertexAttribI4bvEXT_remap_index]
2112 #define _gloffset_VertexAttribI4iEXT driDispatchRemapTable[VertexAttribI4iEXT_remap_index]
2113 #define _gloffset_VertexAttribI4ivEXT driDispatchRemapTable[VertexAttribI4ivEXT_remap_index]
2114 #define _gloffset_VertexAttribI4svEXT driDispatchRemapTable[VertexAttribI4svEXT_remap_index]
2115 #define _gloffset_VertexAttribI4ubvEXT driDispatchRemapTable[VertexAttribI4ubvEXT_remap_index]
2116 #define _gloffset_VertexAttribI4uiEXT driDispatchRemapTable[VertexAttribI4uiEXT_remap_index]
2117 #define _gloffset_VertexAttribI4uivEXT driDispatchRemapTable[VertexAttribI4uivEXT_remap_index]
2118 #define _gloffset_VertexAttribI4usvEXT driDispatchRemapTable[VertexAttribI4usvEXT_remap_index]
2119 #define _gloffset_VertexAttribIPointerEXT driDispatchRemapTable[VertexAttribIPointerEXT_remap_index]
2120 #define _gloffset_FramebufferTextureLayerEXT driDispatchRemapTable[FramebufferTextureLayerEXT_remap_index]
2121 #define _gloffset_ColorMaskIndexedEXT driDispatchRemapTable[ColorMaskIndexedEXT_remap_index]
2122 #define _gloffset_DisableIndexedEXT driDispatchRemapTable[DisableIndexedEXT_remap_index]
2123 #define _gloffset_EnableIndexedEXT driDispatchRemapTable[EnableIndexedEXT_remap_index]
2124 #define _gloffset_GetBooleanIndexedvEXT driDispatchRemapTable[GetBooleanIndexedvEXT_remap_index]
2125 #define _gloffset_GetIntegerIndexedvEXT driDispatchRemapTable[GetIntegerIndexedvEXT_remap_index]
2126 #define _gloffset_IsEnabledIndexedEXT driDispatchRemapTable[IsEnabledIndexedEXT_remap_index]
2127 #define _gloffset_ClearColorIiEXT driDispatchRemapTable[ClearColorIiEXT_remap_index]
2128 #define _gloffset_ClearColorIuiEXT driDispatchRemapTable[ClearColorIuiEXT_remap_index]
2129 #define _gloffset_GetTexParameterIivEXT driDispatchRemapTable[GetTexParameterIivEXT_remap_index]
2130 #define _gloffset_GetTexParameterIuivEXT driDispatchRemapTable[GetTexParameterIuivEXT_remap_index]
2131 #define _gloffset_TexParameterIivEXT driDispatchRemapTable[TexParameterIivEXT_remap_index]
2132 #define _gloffset_TexParameterIuivEXT driDispatchRemapTable[TexParameterIuivEXT_remap_index]
2133 #define _gloffset_BeginConditionalRenderNV driDispatchRemapTable[BeginConditionalRenderNV_remap_index]
2134 #define _gloffset_EndConditionalRenderNV driDispatchRemapTable[EndConditionalRenderNV_remap_index]
2135 #define _gloffset_BeginTransformFeedbackEXT driDispatchRemapTable[BeginTransformFeedbackEXT_remap_index]
2136 #define _gloffset_BindBufferBaseEXT driDispatchRemapTable[BindBufferBaseEXT_remap_index]
2137 #define _gloffset_BindBufferOffsetEXT driDispatchRemapTable[BindBufferOffsetEXT_remap_index]
2138 #define _gloffset_BindBufferRangeEXT driDispatchRemapTable[BindBufferRangeEXT_remap_index]
2139 #define _gloffset_EndTransformFeedbackEXT driDispatchRemapTable[EndTransformFeedbackEXT_remap_index]
2140 #define _gloffset_GetTransformFeedbackVaryingEXT driDispatchRemapTable[GetTransformFeedbackVaryingEXT_remap_index]
2141 #define _gloffset_TransformFeedbackVaryingsEXT driDispatchRemapTable[TransformFeedbackVaryingsEXT_remap_index]
2142 #define _gloffset_ProvokingVertexEXT driDispatchRemapTable[ProvokingVertexEXT_remap_index]
2143 #define _gloffset_GetTexParameterPointervAPPLE driDispatchRemapTable[GetTexParameterPointervAPPLE_remap_index]
2144 #define _gloffset_TextureRangeAPPLE driDispatchRemapTable[TextureRangeAPPLE_remap_index]
2145 #define _gloffset_GetObjectParameterivAPPLE driDispatchRemapTable[GetObjectParameterivAPPLE_remap_index]
2146 #define _gloffset_ObjectPurgeableAPPLE driDispatchRemapTable[ObjectPurgeableAPPLE_remap_index]
2147 #define _gloffset_ObjectUnpurgeableAPPLE driDispatchRemapTable[ObjectUnpurgeableAPPLE_remap_index]
2148 #define _gloffset_ActiveProgramEXT driDispatchRemapTable[ActiveProgramEXT_remap_index]
2149 #define _gloffset_CreateShaderProgramEXT driDispatchRemapTable[CreateShaderProgramEXT_remap_index]
2150 #define _gloffset_UseShaderProgramEXT driDispatchRemapTable[UseShaderProgramEXT_remap_index]
2151 #define _gloffset_TextureBarrierNV driDispatchRemapTable[TextureBarrierNV_remap_index]
2152 #define _gloffset_StencilFuncSeparateATI driDispatchRemapTable[StencilFuncSeparateATI_remap_index]
2153 #define _gloffset_ProgramEnvParameters4fvEXT driDispatchRemapTable[ProgramEnvParameters4fvEXT_remap_index]
2154 #define _gloffset_ProgramLocalParameters4fvEXT driDispatchRemapTable[ProgramLocalParameters4fvEXT_remap_index]
2155 #define _gloffset_GetQueryObjecti64vEXT driDispatchRemapTable[GetQueryObjecti64vEXT_remap_index]
2156 #define _gloffset_GetQueryObjectui64vEXT driDispatchRemapTable[GetQueryObjectui64vEXT_remap_index]
2157 #define _gloffset_EGLImageTargetRenderbufferStorageOES driDispatchRemapTable[EGLImageTargetRenderbufferStorageOES_remap_index]
2158 #define _gloffset_EGLImageTargetTexture2DOES driDispatchRemapTable[EGLImageTargetTexture2DOES_remap_index]
2159
2160 #endif /* !FEATURE_remap_table */
2161
2162 typedef void (GLAPIENTRYP _glptr_NewList)(GLuint, GLenum);
2163 #define CALL_NewList(disp, parameters) \
2164 (* GET_NewList(disp)) parameters
2165 static INLINE _glptr_NewList GET_NewList(struct _glapi_table *disp) {
2166 return (_glptr_NewList) (GET_by_offset(disp, _gloffset_NewList));
2167 }
2168
2169 static INLINE void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
2170 SET_by_offset(disp, _gloffset_NewList, fn);
2171 }
2172
2173 typedef void (GLAPIENTRYP _glptr_EndList)(void);
2174 #define CALL_EndList(disp, parameters) \
2175 (* GET_EndList(disp)) parameters
2176 static INLINE _glptr_EndList GET_EndList(struct _glapi_table *disp) {
2177 return (_glptr_EndList) (GET_by_offset(disp, _gloffset_EndList));
2178 }
2179
2180 static INLINE void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2181 SET_by_offset(disp, _gloffset_EndList, fn);
2182 }
2183
2184 typedef void (GLAPIENTRYP _glptr_CallList)(GLuint);
2185 #define CALL_CallList(disp, parameters) \
2186 (* GET_CallList(disp)) parameters
2187 static INLINE _glptr_CallList GET_CallList(struct _glapi_table *disp) {
2188 return (_glptr_CallList) (GET_by_offset(disp, _gloffset_CallList));
2189 }
2190
2191 static INLINE void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
2192 SET_by_offset(disp, _gloffset_CallList, fn);
2193 }
2194
2195 typedef void (GLAPIENTRYP _glptr_CallLists)(GLsizei, GLenum, const GLvoid *);
2196 #define CALL_CallLists(disp, parameters) \
2197 (* GET_CallLists(disp)) parameters
2198 static INLINE _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
2199 return (_glptr_CallLists) (GET_by_offset(disp, _gloffset_CallLists));
2200 }
2201
2202 static INLINE void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
2203 SET_by_offset(disp, _gloffset_CallLists, fn);
2204 }
2205
2206 typedef void (GLAPIENTRYP _glptr_DeleteLists)(GLuint, GLsizei);
2207 #define CALL_DeleteLists(disp, parameters) \
2208 (* GET_DeleteLists(disp)) parameters
2209 static INLINE _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
2210 return (_glptr_DeleteLists) (GET_by_offset(disp, _gloffset_DeleteLists));
2211 }
2212
2213 static INLINE void SET_DeleteLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei)) {
2214 SET_by_offset(disp, _gloffset_DeleteLists, fn);
2215 }
2216
2217 typedef GLuint (GLAPIENTRYP _glptr_GenLists)(GLsizei);
2218 #define CALL_GenLists(disp, parameters) \
2219 (* GET_GenLists(disp)) parameters
2220 static INLINE _glptr_GenLists GET_GenLists(struct _glapi_table *disp) {
2221 return (_glptr_GenLists) (GET_by_offset(disp, _gloffset_GenLists));
2222 }
2223
2224 static INLINE void SET_GenLists(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLsizei)) {
2225 SET_by_offset(disp, _gloffset_GenLists, fn);
2226 }
2227
2228 typedef void (GLAPIENTRYP _glptr_ListBase)(GLuint);
2229 #define CALL_ListBase(disp, parameters) \
2230 (* GET_ListBase(disp)) parameters
2231 static INLINE _glptr_ListBase GET_ListBase(struct _glapi_table *disp) {
2232 return (_glptr_ListBase) (GET_by_offset(disp, _gloffset_ListBase));
2233 }
2234
2235 static INLINE void SET_ListBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
2236 SET_by_offset(disp, _gloffset_ListBase, fn);
2237 }
2238
2239 typedef void (GLAPIENTRYP _glptr_Begin)(GLenum);
2240 #define CALL_Begin(disp, parameters) \
2241 (* GET_Begin(disp)) parameters
2242 static INLINE _glptr_Begin GET_Begin(struct _glapi_table *disp) {
2243 return (_glptr_Begin) (GET_by_offset(disp, _gloffset_Begin));
2244 }
2245
2246 static INLINE void SET_Begin(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
2247 SET_by_offset(disp, _gloffset_Begin, fn);
2248 }
2249
2250 typedef void (GLAPIENTRYP _glptr_Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
2251 #define CALL_Bitmap(disp, parameters) \
2252 (* GET_Bitmap(disp)) parameters
2253 static INLINE _glptr_Bitmap GET_Bitmap(struct _glapi_table *disp) {
2254 return (_glptr_Bitmap) (GET_by_offset(disp, _gloffset_Bitmap));
2255 }
2256
2257 static INLINE void SET_Bitmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *)) {
2258 SET_by_offset(disp, _gloffset_Bitmap, fn);
2259 }
2260
2261 typedef void (GLAPIENTRYP _glptr_Color3b)(GLbyte, GLbyte, GLbyte);
2262 #define CALL_Color3b(disp, parameters) \
2263 (* GET_Color3b(disp)) parameters
2264 static INLINE _glptr_Color3b GET_Color3b(struct _glapi_table *disp) {
2265 return (_glptr_Color3b) (GET_by_offset(disp, _gloffset_Color3b));
2266 }
2267
2268 static INLINE void SET_Color3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
2269 SET_by_offset(disp, _gloffset_Color3b, fn);
2270 }
2271
2272 typedef void (GLAPIENTRYP _glptr_Color3bv)(const GLbyte *);
2273 #define CALL_Color3bv(disp, parameters) \
2274 (* GET_Color3bv(disp)) parameters
2275 static INLINE _glptr_Color3bv GET_Color3bv(struct _glapi_table *disp) {
2276 return (_glptr_Color3bv) (GET_by_offset(disp, _gloffset_Color3bv));
2277 }
2278
2279 static INLINE void SET_Color3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
2280 SET_by_offset(disp, _gloffset_Color3bv, fn);
2281 }
2282
2283 typedef void (GLAPIENTRYP _glptr_Color3d)(GLdouble, GLdouble, GLdouble);
2284 #define CALL_Color3d(disp, parameters) \
2285 (* GET_Color3d(disp)) parameters
2286 static INLINE _glptr_Color3d GET_Color3d(struct _glapi_table *disp) {
2287 return (_glptr_Color3d) (GET_by_offset(disp, _gloffset_Color3d));
2288 }
2289
2290 static INLINE void SET_Color3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2291 SET_by_offset(disp, _gloffset_Color3d, fn);
2292 }
2293
2294 typedef void (GLAPIENTRYP _glptr_Color3dv)(const GLdouble *);
2295 #define CALL_Color3dv(disp, parameters) \
2296 (* GET_Color3dv(disp)) parameters
2297 static INLINE _glptr_Color3dv GET_Color3dv(struct _glapi_table *disp) {
2298 return (_glptr_Color3dv) (GET_by_offset(disp, _gloffset_Color3dv));
2299 }
2300
2301 static INLINE void SET_Color3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2302 SET_by_offset(disp, _gloffset_Color3dv, fn);
2303 }
2304
2305 typedef void (GLAPIENTRYP _glptr_Color3f)(GLfloat, GLfloat, GLfloat);
2306 #define CALL_Color3f(disp, parameters) \
2307 (* GET_Color3f(disp)) parameters
2308 static INLINE _glptr_Color3f GET_Color3f(struct _glapi_table *disp) {
2309 return (_glptr_Color3f) (GET_by_offset(disp, _gloffset_Color3f));
2310 }
2311
2312 static INLINE void SET_Color3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2313 SET_by_offset(disp, _gloffset_Color3f, fn);
2314 }
2315
2316 typedef void (GLAPIENTRYP _glptr_Color3fv)(const GLfloat *);
2317 #define CALL_Color3fv(disp, parameters) \
2318 (* GET_Color3fv(disp)) parameters
2319 static INLINE _glptr_Color3fv GET_Color3fv(struct _glapi_table *disp) {
2320 return (_glptr_Color3fv) (GET_by_offset(disp, _gloffset_Color3fv));
2321 }
2322
2323 static INLINE void SET_Color3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2324 SET_by_offset(disp, _gloffset_Color3fv, fn);
2325 }
2326
2327 typedef void (GLAPIENTRYP _glptr_Color3i)(GLint, GLint, GLint);
2328 #define CALL_Color3i(disp, parameters) \
2329 (* GET_Color3i(disp)) parameters
2330 static INLINE _glptr_Color3i GET_Color3i(struct _glapi_table *disp) {
2331 return (_glptr_Color3i) (GET_by_offset(disp, _gloffset_Color3i));
2332 }
2333
2334 static INLINE void SET_Color3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2335 SET_by_offset(disp, _gloffset_Color3i, fn);
2336 }
2337
2338 typedef void (GLAPIENTRYP _glptr_Color3iv)(const GLint *);
2339 #define CALL_Color3iv(disp, parameters) \
2340 (* GET_Color3iv(disp)) parameters
2341 static INLINE _glptr_Color3iv GET_Color3iv(struct _glapi_table *disp) {
2342 return (_glptr_Color3iv) (GET_by_offset(disp, _gloffset_Color3iv));
2343 }
2344
2345 static INLINE void SET_Color3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2346 SET_by_offset(disp, _gloffset_Color3iv, fn);
2347 }
2348
2349 typedef void (GLAPIENTRYP _glptr_Color3s)(GLshort, GLshort, GLshort);
2350 #define CALL_Color3s(disp, parameters) \
2351 (* GET_Color3s(disp)) parameters
2352 static INLINE _glptr_Color3s GET_Color3s(struct _glapi_table *disp) {
2353 return (_glptr_Color3s) (GET_by_offset(disp, _gloffset_Color3s));
2354 }
2355
2356 static INLINE void SET_Color3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2357 SET_by_offset(disp, _gloffset_Color3s, fn);
2358 }
2359
2360 typedef void (GLAPIENTRYP _glptr_Color3sv)(const GLshort *);
2361 #define CALL_Color3sv(disp, parameters) \
2362 (* GET_Color3sv(disp)) parameters
2363 static INLINE _glptr_Color3sv GET_Color3sv(struct _glapi_table *disp) {
2364 return (_glptr_Color3sv) (GET_by_offset(disp, _gloffset_Color3sv));
2365 }
2366
2367 static INLINE void SET_Color3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2368 SET_by_offset(disp, _gloffset_Color3sv, fn);
2369 }
2370
2371 typedef void (GLAPIENTRYP _glptr_Color3ub)(GLubyte, GLubyte, GLubyte);
2372 #define CALL_Color3ub(disp, parameters) \
2373 (* GET_Color3ub(disp)) parameters
2374 static INLINE _glptr_Color3ub GET_Color3ub(struct _glapi_table *disp) {
2375 return (_glptr_Color3ub) (GET_by_offset(disp, _gloffset_Color3ub));
2376 }
2377
2378 static INLINE void SET_Color3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
2379 SET_by_offset(disp, _gloffset_Color3ub, fn);
2380 }
2381
2382 typedef void (GLAPIENTRYP _glptr_Color3ubv)(const GLubyte *);
2383 #define CALL_Color3ubv(disp, parameters) \
2384 (* GET_Color3ubv(disp)) parameters
2385 static INLINE _glptr_Color3ubv GET_Color3ubv(struct _glapi_table *disp) {
2386 return (_glptr_Color3ubv) (GET_by_offset(disp, _gloffset_Color3ubv));
2387 }
2388
2389 static INLINE void SET_Color3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
2390 SET_by_offset(disp, _gloffset_Color3ubv, fn);
2391 }
2392
2393 typedef void (GLAPIENTRYP _glptr_Color3ui)(GLuint, GLuint, GLuint);
2394 #define CALL_Color3ui(disp, parameters) \
2395 (* GET_Color3ui(disp)) parameters
2396 static INLINE _glptr_Color3ui GET_Color3ui(struct _glapi_table *disp) {
2397 return (_glptr_Color3ui) (GET_by_offset(disp, _gloffset_Color3ui));
2398 }
2399
2400 static INLINE void SET_Color3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
2401 SET_by_offset(disp, _gloffset_Color3ui, fn);
2402 }
2403
2404 typedef void (GLAPIENTRYP _glptr_Color3uiv)(const GLuint *);
2405 #define CALL_Color3uiv(disp, parameters) \
2406 (* GET_Color3uiv(disp)) parameters
2407 static INLINE _glptr_Color3uiv GET_Color3uiv(struct _glapi_table *disp) {
2408 return (_glptr_Color3uiv) (GET_by_offset(disp, _gloffset_Color3uiv));
2409 }
2410
2411 static INLINE void SET_Color3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
2412 SET_by_offset(disp, _gloffset_Color3uiv, fn);
2413 }
2414
2415 typedef void (GLAPIENTRYP _glptr_Color3us)(GLushort, GLushort, GLushort);
2416 #define CALL_Color3us(disp, parameters) \
2417 (* GET_Color3us(disp)) parameters
2418 static INLINE _glptr_Color3us GET_Color3us(struct _glapi_table *disp) {
2419 return (_glptr_Color3us) (GET_by_offset(disp, _gloffset_Color3us));
2420 }
2421
2422 static INLINE void SET_Color3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
2423 SET_by_offset(disp, _gloffset_Color3us, fn);
2424 }
2425
2426 typedef void (GLAPIENTRYP _glptr_Color3usv)(const GLushort *);
2427 #define CALL_Color3usv(disp, parameters) \
2428 (* GET_Color3usv(disp)) parameters
2429 static INLINE _glptr_Color3usv GET_Color3usv(struct _glapi_table *disp) {
2430 return (_glptr_Color3usv) (GET_by_offset(disp, _gloffset_Color3usv));
2431 }
2432
2433 static INLINE void SET_Color3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
2434 SET_by_offset(disp, _gloffset_Color3usv, fn);
2435 }
2436
2437 typedef void (GLAPIENTRYP _glptr_Color4b)(GLbyte, GLbyte, GLbyte, GLbyte);
2438 #define CALL_Color4b(disp, parameters) \
2439 (* GET_Color4b(disp)) parameters
2440 static INLINE _glptr_Color4b GET_Color4b(struct _glapi_table *disp) {
2441 return (_glptr_Color4b) (GET_by_offset(disp, _gloffset_Color4b));
2442 }
2443
2444 static INLINE void SET_Color4b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte, GLbyte)) {
2445 SET_by_offset(disp, _gloffset_Color4b, fn);
2446 }
2447
2448 typedef void (GLAPIENTRYP _glptr_Color4bv)(const GLbyte *);
2449 #define CALL_Color4bv(disp, parameters) \
2450 (* GET_Color4bv(disp)) parameters
2451 static INLINE _glptr_Color4bv GET_Color4bv(struct _glapi_table *disp) {
2452 return (_glptr_Color4bv) (GET_by_offset(disp, _gloffset_Color4bv));
2453 }
2454
2455 static INLINE void SET_Color4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
2456 SET_by_offset(disp, _gloffset_Color4bv, fn);
2457 }
2458
2459 typedef void (GLAPIENTRYP _glptr_Color4d)(GLdouble, GLdouble, GLdouble, GLdouble);
2460 #define CALL_Color4d(disp, parameters) \
2461 (* GET_Color4d(disp)) parameters
2462 static INLINE _glptr_Color4d GET_Color4d(struct _glapi_table *disp) {
2463 return (_glptr_Color4d) (GET_by_offset(disp, _gloffset_Color4d));
2464 }
2465
2466 static INLINE void SET_Color4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2467 SET_by_offset(disp, _gloffset_Color4d, fn);
2468 }
2469
2470 typedef void (GLAPIENTRYP _glptr_Color4dv)(const GLdouble *);
2471 #define CALL_Color4dv(disp, parameters) \
2472 (* GET_Color4dv(disp)) parameters
2473 static INLINE _glptr_Color4dv GET_Color4dv(struct _glapi_table *disp) {
2474 return (_glptr_Color4dv) (GET_by_offset(disp, _gloffset_Color4dv));
2475 }
2476
2477 static INLINE void SET_Color4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2478 SET_by_offset(disp, _gloffset_Color4dv, fn);
2479 }
2480
2481 typedef void (GLAPIENTRYP _glptr_Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
2482 #define CALL_Color4f(disp, parameters) \
2483 (* GET_Color4f(disp)) parameters
2484 static INLINE _glptr_Color4f GET_Color4f(struct _glapi_table *disp) {
2485 return (_glptr_Color4f) (GET_by_offset(disp, _gloffset_Color4f));
2486 }
2487
2488 static INLINE void SET_Color4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2489 SET_by_offset(disp, _gloffset_Color4f, fn);
2490 }
2491
2492 typedef void (GLAPIENTRYP _glptr_Color4fv)(const GLfloat *);
2493 #define CALL_Color4fv(disp, parameters) \
2494 (* GET_Color4fv(disp)) parameters
2495 static INLINE _glptr_Color4fv GET_Color4fv(struct _glapi_table *disp) {
2496 return (_glptr_Color4fv) (GET_by_offset(disp, _gloffset_Color4fv));
2497 }
2498
2499 static INLINE void SET_Color4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2500 SET_by_offset(disp, _gloffset_Color4fv, fn);
2501 }
2502
2503 typedef void (GLAPIENTRYP _glptr_Color4i)(GLint, GLint, GLint, GLint);
2504 #define CALL_Color4i(disp, parameters) \
2505 (* GET_Color4i(disp)) parameters
2506 static INLINE _glptr_Color4i GET_Color4i(struct _glapi_table *disp) {
2507 return (_glptr_Color4i) (GET_by_offset(disp, _gloffset_Color4i));
2508 }
2509
2510 static INLINE void SET_Color4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2511 SET_by_offset(disp, _gloffset_Color4i, fn);
2512 }
2513
2514 typedef void (GLAPIENTRYP _glptr_Color4iv)(const GLint *);
2515 #define CALL_Color4iv(disp, parameters) \
2516 (* GET_Color4iv(disp)) parameters
2517 static INLINE _glptr_Color4iv GET_Color4iv(struct _glapi_table *disp) {
2518 return (_glptr_Color4iv) (GET_by_offset(disp, _gloffset_Color4iv));
2519 }
2520
2521 static INLINE void SET_Color4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2522 SET_by_offset(disp, _gloffset_Color4iv, fn);
2523 }
2524
2525 typedef void (GLAPIENTRYP _glptr_Color4s)(GLshort, GLshort, GLshort, GLshort);
2526 #define CALL_Color4s(disp, parameters) \
2527 (* GET_Color4s(disp)) parameters
2528 static INLINE _glptr_Color4s GET_Color4s(struct _glapi_table *disp) {
2529 return (_glptr_Color4s) (GET_by_offset(disp, _gloffset_Color4s));
2530 }
2531
2532 static INLINE void SET_Color4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2533 SET_by_offset(disp, _gloffset_Color4s, fn);
2534 }
2535
2536 typedef void (GLAPIENTRYP _glptr_Color4sv)(const GLshort *);
2537 #define CALL_Color4sv(disp, parameters) \
2538 (* GET_Color4sv(disp)) parameters
2539 static INLINE _glptr_Color4sv GET_Color4sv(struct _glapi_table *disp) {
2540 return (_glptr_Color4sv) (GET_by_offset(disp, _gloffset_Color4sv));
2541 }
2542
2543 static INLINE void SET_Color4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2544 SET_by_offset(disp, _gloffset_Color4sv, fn);
2545 }
2546
2547 typedef void (GLAPIENTRYP _glptr_Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
2548 #define CALL_Color4ub(disp, parameters) \
2549 (* GET_Color4ub(disp)) parameters
2550 static INLINE _glptr_Color4ub GET_Color4ub(struct _glapi_table *disp) {
2551 return (_glptr_Color4ub) (GET_by_offset(disp, _gloffset_Color4ub));
2552 }
2553
2554 static INLINE void SET_Color4ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte, GLubyte)) {
2555 SET_by_offset(disp, _gloffset_Color4ub, fn);
2556 }
2557
2558 typedef void (GLAPIENTRYP _glptr_Color4ubv)(const GLubyte *);
2559 #define CALL_Color4ubv(disp, parameters) \
2560 (* GET_Color4ubv(disp)) parameters
2561 static INLINE _glptr_Color4ubv GET_Color4ubv(struct _glapi_table *disp) {
2562 return (_glptr_Color4ubv) (GET_by_offset(disp, _gloffset_Color4ubv));
2563 }
2564
2565 static INLINE void SET_Color4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
2566 SET_by_offset(disp, _gloffset_Color4ubv, fn);
2567 }
2568
2569 typedef void (GLAPIENTRYP _glptr_Color4ui)(GLuint, GLuint, GLuint, GLuint);
2570 #define CALL_Color4ui(disp, parameters) \
2571 (* GET_Color4ui(disp)) parameters
2572 static INLINE _glptr_Color4ui GET_Color4ui(struct _glapi_table *disp) {
2573 return (_glptr_Color4ui) (GET_by_offset(disp, _gloffset_Color4ui));
2574 }
2575
2576 static INLINE void SET_Color4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
2577 SET_by_offset(disp, _gloffset_Color4ui, fn);
2578 }
2579
2580 typedef void (GLAPIENTRYP _glptr_Color4uiv)(const GLuint *);
2581 #define CALL_Color4uiv(disp, parameters) \
2582 (* GET_Color4uiv(disp)) parameters
2583 static INLINE _glptr_Color4uiv GET_Color4uiv(struct _glapi_table *disp) {
2584 return (_glptr_Color4uiv) (GET_by_offset(disp, _gloffset_Color4uiv));
2585 }
2586
2587 static INLINE void SET_Color4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
2588 SET_by_offset(disp, _gloffset_Color4uiv, fn);
2589 }
2590
2591 typedef void (GLAPIENTRYP _glptr_Color4us)(GLushort, GLushort, GLushort, GLushort);
2592 #define CALL_Color4us(disp, parameters) \
2593 (* GET_Color4us(disp)) parameters
2594 static INLINE _glptr_Color4us GET_Color4us(struct _glapi_table *disp) {
2595 return (_glptr_Color4us) (GET_by_offset(disp, _gloffset_Color4us));
2596 }
2597
2598 static INLINE void SET_Color4us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort, GLushort)) {
2599 SET_by_offset(disp, _gloffset_Color4us, fn);
2600 }
2601
2602 typedef void (GLAPIENTRYP _glptr_Color4usv)(const GLushort *);
2603 #define CALL_Color4usv(disp, parameters) \
2604 (* GET_Color4usv(disp)) parameters
2605 static INLINE _glptr_Color4usv GET_Color4usv(struct _glapi_table *disp) {
2606 return (_glptr_Color4usv) (GET_by_offset(disp, _gloffset_Color4usv));
2607 }
2608
2609 static INLINE void SET_Color4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
2610 SET_by_offset(disp, _gloffset_Color4usv, fn);
2611 }
2612
2613 typedef void (GLAPIENTRYP _glptr_EdgeFlag)(GLboolean);
2614 #define CALL_EdgeFlag(disp, parameters) \
2615 (* GET_EdgeFlag(disp)) parameters
2616 static INLINE _glptr_EdgeFlag GET_EdgeFlag(struct _glapi_table *disp) {
2617 return (_glptr_EdgeFlag) (GET_by_offset(disp, _gloffset_EdgeFlag));
2618 }
2619
2620 static INLINE void SET_EdgeFlag(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
2621 SET_by_offset(disp, _gloffset_EdgeFlag, fn);
2622 }
2623
2624 typedef void (GLAPIENTRYP _glptr_EdgeFlagv)(const GLboolean *);
2625 #define CALL_EdgeFlagv(disp, parameters) \
2626 (* GET_EdgeFlagv(disp)) parameters
2627 static INLINE _glptr_EdgeFlagv GET_EdgeFlagv(struct _glapi_table *disp) {
2628 return (_glptr_EdgeFlagv) (GET_by_offset(disp, _gloffset_EdgeFlagv));
2629 }
2630
2631 static INLINE void SET_EdgeFlagv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLboolean *)) {
2632 SET_by_offset(disp, _gloffset_EdgeFlagv, fn);
2633 }
2634
2635 typedef void (GLAPIENTRYP _glptr_End)(void);
2636 #define CALL_End(disp, parameters) \
2637 (* GET_End(disp)) parameters
2638 static INLINE _glptr_End GET_End(struct _glapi_table *disp) {
2639 return (_glptr_End) (GET_by_offset(disp, _gloffset_End));
2640 }
2641
2642 static INLINE void SET_End(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2643 SET_by_offset(disp, _gloffset_End, fn);
2644 }
2645
2646 typedef void (GLAPIENTRYP _glptr_Indexd)(GLdouble);
2647 #define CALL_Indexd(disp, parameters) \
2648 (* GET_Indexd(disp)) parameters
2649 static INLINE _glptr_Indexd GET_Indexd(struct _glapi_table *disp) {
2650 return (_glptr_Indexd) (GET_by_offset(disp, _gloffset_Indexd));
2651 }
2652
2653 static INLINE void SET_Indexd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
2654 SET_by_offset(disp, _gloffset_Indexd, fn);
2655 }
2656
2657 typedef void (GLAPIENTRYP _glptr_Indexdv)(const GLdouble *);
2658 #define CALL_Indexdv(disp, parameters) \
2659 (* GET_Indexdv(disp)) parameters
2660 static INLINE _glptr_Indexdv GET_Indexdv(struct _glapi_table *disp) {
2661 return (_glptr_Indexdv) (GET_by_offset(disp, _gloffset_Indexdv));
2662 }
2663
2664 static INLINE void SET_Indexdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2665 SET_by_offset(disp, _gloffset_Indexdv, fn);
2666 }
2667
2668 typedef void (GLAPIENTRYP _glptr_Indexf)(GLfloat);
2669 #define CALL_Indexf(disp, parameters) \
2670 (* GET_Indexf(disp)) parameters
2671 static INLINE _glptr_Indexf GET_Indexf(struct _glapi_table *disp) {
2672 return (_glptr_Indexf) (GET_by_offset(disp, _gloffset_Indexf));
2673 }
2674
2675 static INLINE void SET_Indexf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
2676 SET_by_offset(disp, _gloffset_Indexf, fn);
2677 }
2678
2679 typedef void (GLAPIENTRYP _glptr_Indexfv)(const GLfloat *);
2680 #define CALL_Indexfv(disp, parameters) \
2681 (* GET_Indexfv(disp)) parameters
2682 static INLINE _glptr_Indexfv GET_Indexfv(struct _glapi_table *disp) {
2683 return (_glptr_Indexfv) (GET_by_offset(disp, _gloffset_Indexfv));
2684 }
2685
2686 static INLINE void SET_Indexfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2687 SET_by_offset(disp, _gloffset_Indexfv, fn);
2688 }
2689
2690 typedef void (GLAPIENTRYP _glptr_Indexi)(GLint);
2691 #define CALL_Indexi(disp, parameters) \
2692 (* GET_Indexi(disp)) parameters
2693 static INLINE _glptr_Indexi GET_Indexi(struct _glapi_table *disp) {
2694 return (_glptr_Indexi) (GET_by_offset(disp, _gloffset_Indexi));
2695 }
2696
2697 static INLINE void SET_Indexi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
2698 SET_by_offset(disp, _gloffset_Indexi, fn);
2699 }
2700
2701 typedef void (GLAPIENTRYP _glptr_Indexiv)(const GLint *);
2702 #define CALL_Indexiv(disp, parameters) \
2703 (* GET_Indexiv(disp)) parameters
2704 static INLINE _glptr_Indexiv GET_Indexiv(struct _glapi_table *disp) {
2705 return (_glptr_Indexiv) (GET_by_offset(disp, _gloffset_Indexiv));
2706 }
2707
2708 static INLINE void SET_Indexiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2709 SET_by_offset(disp, _gloffset_Indexiv, fn);
2710 }
2711
2712 typedef void (GLAPIENTRYP _glptr_Indexs)(GLshort);
2713 #define CALL_Indexs(disp, parameters) \
2714 (* GET_Indexs(disp)) parameters
2715 static INLINE _glptr_Indexs GET_Indexs(struct _glapi_table *disp) {
2716 return (_glptr_Indexs) (GET_by_offset(disp, _gloffset_Indexs));
2717 }
2718
2719 static INLINE void SET_Indexs(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
2720 SET_by_offset(disp, _gloffset_Indexs, fn);
2721 }
2722
2723 typedef void (GLAPIENTRYP _glptr_Indexsv)(const GLshort *);
2724 #define CALL_Indexsv(disp, parameters) \
2725 (* GET_Indexsv(disp)) parameters
2726 static INLINE _glptr_Indexsv GET_Indexsv(struct _glapi_table *disp) {
2727 return (_glptr_Indexsv) (GET_by_offset(disp, _gloffset_Indexsv));
2728 }
2729
2730 static INLINE void SET_Indexsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2731 SET_by_offset(disp, _gloffset_Indexsv, fn);
2732 }
2733
2734 typedef void (GLAPIENTRYP _glptr_Normal3b)(GLbyte, GLbyte, GLbyte);
2735 #define CALL_Normal3b(disp, parameters) \
2736 (* GET_Normal3b(disp)) parameters
2737 static INLINE _glptr_Normal3b GET_Normal3b(struct _glapi_table *disp) {
2738 return (_glptr_Normal3b) (GET_by_offset(disp, _gloffset_Normal3b));
2739 }
2740
2741 static INLINE void SET_Normal3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
2742 SET_by_offset(disp, _gloffset_Normal3b, fn);
2743 }
2744
2745 typedef void (GLAPIENTRYP _glptr_Normal3bv)(const GLbyte *);
2746 #define CALL_Normal3bv(disp, parameters) \
2747 (* GET_Normal3bv(disp)) parameters
2748 static INLINE _glptr_Normal3bv GET_Normal3bv(struct _glapi_table *disp) {
2749 return (_glptr_Normal3bv) (GET_by_offset(disp, _gloffset_Normal3bv));
2750 }
2751
2752 static INLINE void SET_Normal3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
2753 SET_by_offset(disp, _gloffset_Normal3bv, fn);
2754 }
2755
2756 typedef void (GLAPIENTRYP _glptr_Normal3d)(GLdouble, GLdouble, GLdouble);
2757 #define CALL_Normal3d(disp, parameters) \
2758 (* GET_Normal3d(disp)) parameters
2759 static INLINE _glptr_Normal3d GET_Normal3d(struct _glapi_table *disp) {
2760 return (_glptr_Normal3d) (GET_by_offset(disp, _gloffset_Normal3d));
2761 }
2762
2763 static INLINE void SET_Normal3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2764 SET_by_offset(disp, _gloffset_Normal3d, fn);
2765 }
2766
2767 typedef void (GLAPIENTRYP _glptr_Normal3dv)(const GLdouble *);
2768 #define CALL_Normal3dv(disp, parameters) \
2769 (* GET_Normal3dv(disp)) parameters
2770 static INLINE _glptr_Normal3dv GET_Normal3dv(struct _glapi_table *disp) {
2771 return (_glptr_Normal3dv) (GET_by_offset(disp, _gloffset_Normal3dv));
2772 }
2773
2774 static INLINE void SET_Normal3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2775 SET_by_offset(disp, _gloffset_Normal3dv, fn);
2776 }
2777
2778 typedef void (GLAPIENTRYP _glptr_Normal3f)(GLfloat, GLfloat, GLfloat);
2779 #define CALL_Normal3f(disp, parameters) \
2780 (* GET_Normal3f(disp)) parameters
2781 static INLINE _glptr_Normal3f GET_Normal3f(struct _glapi_table *disp) {
2782 return (_glptr_Normal3f) (GET_by_offset(disp, _gloffset_Normal3f));
2783 }
2784
2785 static INLINE void SET_Normal3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2786 SET_by_offset(disp, _gloffset_Normal3f, fn);
2787 }
2788
2789 typedef void (GLAPIENTRYP _glptr_Normal3fv)(const GLfloat *);
2790 #define CALL_Normal3fv(disp, parameters) \
2791 (* GET_Normal3fv(disp)) parameters
2792 static INLINE _glptr_Normal3fv GET_Normal3fv(struct _glapi_table *disp) {
2793 return (_glptr_Normal3fv) (GET_by_offset(disp, _gloffset_Normal3fv));
2794 }
2795
2796 static INLINE void SET_Normal3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2797 SET_by_offset(disp, _gloffset_Normal3fv, fn);
2798 }
2799
2800 typedef void (GLAPIENTRYP _glptr_Normal3i)(GLint, GLint, GLint);
2801 #define CALL_Normal3i(disp, parameters) \
2802 (* GET_Normal3i(disp)) parameters
2803 static INLINE _glptr_Normal3i GET_Normal3i(struct _glapi_table *disp) {
2804 return (_glptr_Normal3i) (GET_by_offset(disp, _gloffset_Normal3i));
2805 }
2806
2807 static INLINE void SET_Normal3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2808 SET_by_offset(disp, _gloffset_Normal3i, fn);
2809 }
2810
2811 typedef void (GLAPIENTRYP _glptr_Normal3iv)(const GLint *);
2812 #define CALL_Normal3iv(disp, parameters) \
2813 (* GET_Normal3iv(disp)) parameters
2814 static INLINE _glptr_Normal3iv GET_Normal3iv(struct _glapi_table *disp) {
2815 return (_glptr_Normal3iv) (GET_by_offset(disp, _gloffset_Normal3iv));
2816 }
2817
2818 static INLINE void SET_Normal3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2819 SET_by_offset(disp, _gloffset_Normal3iv, fn);
2820 }
2821
2822 typedef void (GLAPIENTRYP _glptr_Normal3s)(GLshort, GLshort, GLshort);
2823 #define CALL_Normal3s(disp, parameters) \
2824 (* GET_Normal3s(disp)) parameters
2825 static INLINE _glptr_Normal3s GET_Normal3s(struct _glapi_table *disp) {
2826 return (_glptr_Normal3s) (GET_by_offset(disp, _gloffset_Normal3s));
2827 }
2828
2829 static INLINE void SET_Normal3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2830 SET_by_offset(disp, _gloffset_Normal3s, fn);
2831 }
2832
2833 typedef void (GLAPIENTRYP _glptr_Normal3sv)(const GLshort *);
2834 #define CALL_Normal3sv(disp, parameters) \
2835 (* GET_Normal3sv(disp)) parameters
2836 static INLINE _glptr_Normal3sv GET_Normal3sv(struct _glapi_table *disp) {
2837 return (_glptr_Normal3sv) (GET_by_offset(disp, _gloffset_Normal3sv));
2838 }
2839
2840 static INLINE void SET_Normal3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2841 SET_by_offset(disp, _gloffset_Normal3sv, fn);
2842 }
2843
2844 typedef void (GLAPIENTRYP _glptr_RasterPos2d)(GLdouble, GLdouble);
2845 #define CALL_RasterPos2d(disp, parameters) \
2846 (* GET_RasterPos2d(disp)) parameters
2847 static INLINE _glptr_RasterPos2d GET_RasterPos2d(struct _glapi_table *disp) {
2848 return (_glptr_RasterPos2d) (GET_by_offset(disp, _gloffset_RasterPos2d));
2849 }
2850
2851 static INLINE void SET_RasterPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
2852 SET_by_offset(disp, _gloffset_RasterPos2d, fn);
2853 }
2854
2855 typedef void (GLAPIENTRYP _glptr_RasterPos2dv)(const GLdouble *);
2856 #define CALL_RasterPos2dv(disp, parameters) \
2857 (* GET_RasterPos2dv(disp)) parameters
2858 static INLINE _glptr_RasterPos2dv GET_RasterPos2dv(struct _glapi_table *disp) {
2859 return (_glptr_RasterPos2dv) (GET_by_offset(disp, _gloffset_RasterPos2dv));
2860 }
2861
2862 static INLINE void SET_RasterPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2863 SET_by_offset(disp, _gloffset_RasterPos2dv, fn);
2864 }
2865
2866 typedef void (GLAPIENTRYP _glptr_RasterPos2f)(GLfloat, GLfloat);
2867 #define CALL_RasterPos2f(disp, parameters) \
2868 (* GET_RasterPos2f(disp)) parameters
2869 static INLINE _glptr_RasterPos2f GET_RasterPos2f(struct _glapi_table *disp) {
2870 return (_glptr_RasterPos2f) (GET_by_offset(disp, _gloffset_RasterPos2f));
2871 }
2872
2873 static INLINE void SET_RasterPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
2874 SET_by_offset(disp, _gloffset_RasterPos2f, fn);
2875 }
2876
2877 typedef void (GLAPIENTRYP _glptr_RasterPos2fv)(const GLfloat *);
2878 #define CALL_RasterPos2fv(disp, parameters) \
2879 (* GET_RasterPos2fv(disp)) parameters
2880 static INLINE _glptr_RasterPos2fv GET_RasterPos2fv(struct _glapi_table *disp) {
2881 return (_glptr_RasterPos2fv) (GET_by_offset(disp, _gloffset_RasterPos2fv));
2882 }
2883
2884 static INLINE void SET_RasterPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2885 SET_by_offset(disp, _gloffset_RasterPos2fv, fn);
2886 }
2887
2888 typedef void (GLAPIENTRYP _glptr_RasterPos2i)(GLint, GLint);
2889 #define CALL_RasterPos2i(disp, parameters) \
2890 (* GET_RasterPos2i(disp)) parameters
2891 static INLINE _glptr_RasterPos2i GET_RasterPos2i(struct _glapi_table *disp) {
2892 return (_glptr_RasterPos2i) (GET_by_offset(disp, _gloffset_RasterPos2i));
2893 }
2894
2895 static INLINE void SET_RasterPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
2896 SET_by_offset(disp, _gloffset_RasterPos2i, fn);
2897 }
2898
2899 typedef void (GLAPIENTRYP _glptr_RasterPos2iv)(const GLint *);
2900 #define CALL_RasterPos2iv(disp, parameters) \
2901 (* GET_RasterPos2iv(disp)) parameters
2902 static INLINE _glptr_RasterPos2iv GET_RasterPos2iv(struct _glapi_table *disp) {
2903 return (_glptr_RasterPos2iv) (GET_by_offset(disp, _gloffset_RasterPos2iv));
2904 }
2905
2906 static INLINE void SET_RasterPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2907 SET_by_offset(disp, _gloffset_RasterPos2iv, fn);
2908 }
2909
2910 typedef void (GLAPIENTRYP _glptr_RasterPos2s)(GLshort, GLshort);
2911 #define CALL_RasterPos2s(disp, parameters) \
2912 (* GET_RasterPos2s(disp)) parameters
2913 static INLINE _glptr_RasterPos2s GET_RasterPos2s(struct _glapi_table *disp) {
2914 return (_glptr_RasterPos2s) (GET_by_offset(disp, _gloffset_RasterPos2s));
2915 }
2916
2917 static INLINE void SET_RasterPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
2918 SET_by_offset(disp, _gloffset_RasterPos2s, fn);
2919 }
2920
2921 typedef void (GLAPIENTRYP _glptr_RasterPos2sv)(const GLshort *);
2922 #define CALL_RasterPos2sv(disp, parameters) \
2923 (* GET_RasterPos2sv(disp)) parameters
2924 static INLINE _glptr_RasterPos2sv GET_RasterPos2sv(struct _glapi_table *disp) {
2925 return (_glptr_RasterPos2sv) (GET_by_offset(disp, _gloffset_RasterPos2sv));
2926 }
2927
2928 static INLINE void SET_RasterPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2929 SET_by_offset(disp, _gloffset_RasterPos2sv, fn);
2930 }
2931
2932 typedef void (GLAPIENTRYP _glptr_RasterPos3d)(GLdouble, GLdouble, GLdouble);
2933 #define CALL_RasterPos3d(disp, parameters) \
2934 (* GET_RasterPos3d(disp)) parameters
2935 static INLINE _glptr_RasterPos3d GET_RasterPos3d(struct _glapi_table *disp) {
2936 return (_glptr_RasterPos3d) (GET_by_offset(disp, _gloffset_RasterPos3d));
2937 }
2938
2939 static INLINE void SET_RasterPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2940 SET_by_offset(disp, _gloffset_RasterPos3d, fn);
2941 }
2942
2943 typedef void (GLAPIENTRYP _glptr_RasterPos3dv)(const GLdouble *);
2944 #define CALL_RasterPos3dv(disp, parameters) \
2945 (* GET_RasterPos3dv(disp)) parameters
2946 static INLINE _glptr_RasterPos3dv GET_RasterPos3dv(struct _glapi_table *disp) {
2947 return (_glptr_RasterPos3dv) (GET_by_offset(disp, _gloffset_RasterPos3dv));
2948 }
2949
2950 static INLINE void SET_RasterPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2951 SET_by_offset(disp, _gloffset_RasterPos3dv, fn);
2952 }
2953
2954 typedef void (GLAPIENTRYP _glptr_RasterPos3f)(GLfloat, GLfloat, GLfloat);
2955 #define CALL_RasterPos3f(disp, parameters) \
2956 (* GET_RasterPos3f(disp)) parameters
2957 static INLINE _glptr_RasterPos3f GET_RasterPos3f(struct _glapi_table *disp) {
2958 return (_glptr_RasterPos3f) (GET_by_offset(disp, _gloffset_RasterPos3f));
2959 }
2960
2961 static INLINE void SET_RasterPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2962 SET_by_offset(disp, _gloffset_RasterPos3f, fn);
2963 }
2964
2965 typedef void (GLAPIENTRYP _glptr_RasterPos3fv)(const GLfloat *);
2966 #define CALL_RasterPos3fv(disp, parameters) \
2967 (* GET_RasterPos3fv(disp)) parameters
2968 static INLINE _glptr_RasterPos3fv GET_RasterPos3fv(struct _glapi_table *disp) {
2969 return (_glptr_RasterPos3fv) (GET_by_offset(disp, _gloffset_RasterPos3fv));
2970 }
2971
2972 static INLINE void SET_RasterPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2973 SET_by_offset(disp, _gloffset_RasterPos3fv, fn);
2974 }
2975
2976 typedef void (GLAPIENTRYP _glptr_RasterPos3i)(GLint, GLint, GLint);
2977 #define CALL_RasterPos3i(disp, parameters) \
2978 (* GET_RasterPos3i(disp)) parameters
2979 static INLINE _glptr_RasterPos3i GET_RasterPos3i(struct _glapi_table *disp) {
2980 return (_glptr_RasterPos3i) (GET_by_offset(disp, _gloffset_RasterPos3i));
2981 }
2982
2983 static INLINE void SET_RasterPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2984 SET_by_offset(disp, _gloffset_RasterPos3i, fn);
2985 }
2986
2987 typedef void (GLAPIENTRYP _glptr_RasterPos3iv)(const GLint *);
2988 #define CALL_RasterPos3iv(disp, parameters) \
2989 (* GET_RasterPos3iv(disp)) parameters
2990 static INLINE _glptr_RasterPos3iv GET_RasterPos3iv(struct _glapi_table *disp) {
2991 return (_glptr_RasterPos3iv) (GET_by_offset(disp, _gloffset_RasterPos3iv));
2992 }
2993
2994 static INLINE void SET_RasterPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2995 SET_by_offset(disp, _gloffset_RasterPos3iv, fn);
2996 }
2997
2998 typedef void (GLAPIENTRYP _glptr_RasterPos3s)(GLshort, GLshort, GLshort);
2999 #define CALL_RasterPos3s(disp, parameters) \
3000 (* GET_RasterPos3s(disp)) parameters
3001 static INLINE _glptr_RasterPos3s GET_RasterPos3s(struct _glapi_table *disp) {
3002 return (_glptr_RasterPos3s) (GET_by_offset(disp, _gloffset_RasterPos3s));
3003 }
3004
3005 static INLINE void SET_RasterPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
3006 SET_by_offset(disp, _gloffset_RasterPos3s, fn);
3007 }
3008
3009 typedef void (GLAPIENTRYP _glptr_RasterPos3sv)(const GLshort *);
3010 #define CALL_RasterPos3sv(disp, parameters) \
3011 (* GET_RasterPos3sv(disp)) parameters
3012 static INLINE _glptr_RasterPos3sv GET_RasterPos3sv(struct _glapi_table *disp) {
3013 return (_glptr_RasterPos3sv) (GET_by_offset(disp, _gloffset_RasterPos3sv));
3014 }
3015
3016 static INLINE void SET_RasterPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3017 SET_by_offset(disp, _gloffset_RasterPos3sv, fn);
3018 }
3019
3020 typedef void (GLAPIENTRYP _glptr_RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble);
3021 #define CALL_RasterPos4d(disp, parameters) \
3022 (* GET_RasterPos4d(disp)) parameters
3023 static INLINE _glptr_RasterPos4d GET_RasterPos4d(struct _glapi_table *disp) {
3024 return (_glptr_RasterPos4d) (GET_by_offset(disp, _gloffset_RasterPos4d));
3025 }
3026
3027 static INLINE void SET_RasterPos4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
3028 SET_by_offset(disp, _gloffset_RasterPos4d, fn);
3029 }
3030
3031 typedef void (GLAPIENTRYP _glptr_RasterPos4dv)(const GLdouble *);
3032 #define CALL_RasterPos4dv(disp, parameters) \
3033 (* GET_RasterPos4dv(disp)) parameters
3034 static INLINE _glptr_RasterPos4dv GET_RasterPos4dv(struct _glapi_table *disp) {
3035 return (_glptr_RasterPos4dv) (GET_by_offset(disp, _gloffset_RasterPos4dv));
3036 }
3037
3038 static INLINE void SET_RasterPos4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3039 SET_by_offset(disp, _gloffset_RasterPos4dv, fn);
3040 }
3041
3042 typedef void (GLAPIENTRYP _glptr_RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat);
3043 #define CALL_RasterPos4f(disp, parameters) \
3044 (* GET_RasterPos4f(disp)) parameters
3045 static INLINE _glptr_RasterPos4f GET_RasterPos4f(struct _glapi_table *disp) {
3046 return (_glptr_RasterPos4f) (GET_by_offset(disp, _gloffset_RasterPos4f));
3047 }
3048
3049 static INLINE void SET_RasterPos4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3050 SET_by_offset(disp, _gloffset_RasterPos4f, fn);
3051 }
3052
3053 typedef void (GLAPIENTRYP _glptr_RasterPos4fv)(const GLfloat *);
3054 #define CALL_RasterPos4fv(disp, parameters) \
3055 (* GET_RasterPos4fv(disp)) parameters
3056 static INLINE _glptr_RasterPos4fv GET_RasterPos4fv(struct _glapi_table *disp) {
3057 return (_glptr_RasterPos4fv) (GET_by_offset(disp, _gloffset_RasterPos4fv));
3058 }
3059
3060 static INLINE void SET_RasterPos4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3061 SET_by_offset(disp, _gloffset_RasterPos4fv, fn);
3062 }
3063
3064 typedef void (GLAPIENTRYP _glptr_RasterPos4i)(GLint, GLint, GLint, GLint);
3065 #define CALL_RasterPos4i(disp, parameters) \
3066 (* GET_RasterPos4i(disp)) parameters
3067 static INLINE _glptr_RasterPos4i GET_RasterPos4i(struct _glapi_table *disp) {
3068 return (_glptr_RasterPos4i) (GET_by_offset(disp, _gloffset_RasterPos4i));
3069 }
3070
3071 static INLINE void SET_RasterPos4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
3072 SET_by_offset(disp, _gloffset_RasterPos4i, fn);
3073 }
3074
3075 typedef void (GLAPIENTRYP _glptr_RasterPos4iv)(const GLint *);
3076 #define CALL_RasterPos4iv(disp, parameters) \
3077 (* GET_RasterPos4iv(disp)) parameters
3078 static INLINE _glptr_RasterPos4iv GET_RasterPos4iv(struct _glapi_table *disp) {
3079 return (_glptr_RasterPos4iv) (GET_by_offset(disp, _gloffset_RasterPos4iv));
3080 }
3081
3082 static INLINE void SET_RasterPos4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3083 SET_by_offset(disp, _gloffset_RasterPos4iv, fn);
3084 }
3085
3086 typedef void (GLAPIENTRYP _glptr_RasterPos4s)(GLshort, GLshort, GLshort, GLshort);
3087 #define CALL_RasterPos4s(disp, parameters) \
3088 (* GET_RasterPos4s(disp)) parameters
3089 static INLINE _glptr_RasterPos4s GET_RasterPos4s(struct _glapi_table *disp) {
3090 return (_glptr_RasterPos4s) (GET_by_offset(disp, _gloffset_RasterPos4s));
3091 }
3092
3093 static INLINE void SET_RasterPos4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
3094 SET_by_offset(disp, _gloffset_RasterPos4s, fn);
3095 }
3096
3097 typedef void (GLAPIENTRYP _glptr_RasterPos4sv)(const GLshort *);
3098 #define CALL_RasterPos4sv(disp, parameters) \
3099 (* GET_RasterPos4sv(disp)) parameters
3100 static INLINE _glptr_RasterPos4sv GET_RasterPos4sv(struct _glapi_table *disp) {
3101 return (_glptr_RasterPos4sv) (GET_by_offset(disp, _gloffset_RasterPos4sv));
3102 }
3103
3104 static INLINE void SET_RasterPos4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3105 SET_by_offset(disp, _gloffset_RasterPos4sv, fn);
3106 }
3107
3108 typedef void (GLAPIENTRYP _glptr_Rectd)(GLdouble, GLdouble, GLdouble, GLdouble);
3109 #define CALL_Rectd(disp, parameters) \
3110 (* GET_Rectd(disp)) parameters
3111 static INLINE _glptr_Rectd GET_Rectd(struct _glapi_table *disp) {
3112 return (_glptr_Rectd) (GET_by_offset(disp, _gloffset_Rectd));
3113 }
3114
3115 static INLINE void SET_Rectd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
3116 SET_by_offset(disp, _gloffset_Rectd, fn);
3117 }
3118
3119 typedef void (GLAPIENTRYP _glptr_Rectdv)(const GLdouble *, const GLdouble *);
3120 #define CALL_Rectdv(disp, parameters) \
3121 (* GET_Rectdv(disp)) parameters
3122 static INLINE _glptr_Rectdv GET_Rectdv(struct _glapi_table *disp) {
3123 return (_glptr_Rectdv) (GET_by_offset(disp, _gloffset_Rectdv));
3124 }
3125
3126 static INLINE void SET_Rectdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *, const GLdouble *)) {
3127 SET_by_offset(disp, _gloffset_Rectdv, fn);
3128 }
3129
3130 typedef void (GLAPIENTRYP _glptr_Rectf)(GLfloat, GLfloat, GLfloat, GLfloat);
3131 #define CALL_Rectf(disp, parameters) \
3132 (* GET_Rectf(disp)) parameters
3133 static INLINE _glptr_Rectf GET_Rectf(struct _glapi_table *disp) {
3134 return (_glptr_Rectf) (GET_by_offset(disp, _gloffset_Rectf));
3135 }
3136
3137 static INLINE void SET_Rectf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3138 SET_by_offset(disp, _gloffset_Rectf, fn);
3139 }
3140
3141 typedef void (GLAPIENTRYP _glptr_Rectfv)(const GLfloat *, const GLfloat *);
3142 #define CALL_Rectfv(disp, parameters) \
3143 (* GET_Rectfv(disp)) parameters
3144 static INLINE _glptr_Rectfv GET_Rectfv(struct _glapi_table *disp) {
3145 return (_glptr_Rectfv) (GET_by_offset(disp, _gloffset_Rectfv));
3146 }
3147
3148 static INLINE void SET_Rectfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *, const GLfloat *)) {
3149 SET_by_offset(disp, _gloffset_Rectfv, fn);
3150 }
3151
3152 typedef void (GLAPIENTRYP _glptr_Recti)(GLint, GLint, GLint, GLint);
3153 #define CALL_Recti(disp, parameters) \
3154 (* GET_Recti(disp)) parameters
3155 static INLINE _glptr_Recti GET_Recti(struct _glapi_table *disp) {
3156 return (_glptr_Recti) (GET_by_offset(disp, _gloffset_Recti));
3157 }
3158
3159 static INLINE void SET_Recti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
3160 SET_by_offset(disp, _gloffset_Recti, fn);
3161 }
3162
3163 typedef void (GLAPIENTRYP _glptr_Rectiv)(const GLint *, const GLint *);
3164 #define CALL_Rectiv(disp, parameters) \
3165 (* GET_Rectiv(disp)) parameters
3166 static INLINE _glptr_Rectiv GET_Rectiv(struct _glapi_table *disp) {
3167 return (_glptr_Rectiv) (GET_by_offset(disp, _gloffset_Rectiv));
3168 }
3169
3170 static INLINE void SET_Rectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *, const GLint *)) {
3171 SET_by_offset(disp, _gloffset_Rectiv, fn);
3172 }
3173
3174 typedef void (GLAPIENTRYP _glptr_Rects)(GLshort, GLshort, GLshort, GLshort);
3175 #define CALL_Rects(disp, parameters) \
3176 (* GET_Rects(disp)) parameters
3177 static INLINE _glptr_Rects GET_Rects(struct _glapi_table *disp) {
3178 return (_glptr_Rects) (GET_by_offset(disp, _gloffset_Rects));
3179 }
3180
3181 static INLINE void SET_Rects(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
3182 SET_by_offset(disp, _gloffset_Rects, fn);
3183 }
3184
3185 typedef void (GLAPIENTRYP _glptr_Rectsv)(const GLshort *, const GLshort *);
3186 #define CALL_Rectsv(disp, parameters) \
3187 (* GET_Rectsv(disp)) parameters
3188 static INLINE _glptr_Rectsv GET_Rectsv(struct _glapi_table *disp) {
3189 return (_glptr_Rectsv) (GET_by_offset(disp, _gloffset_Rectsv));
3190 }
3191
3192 static INLINE void SET_Rectsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *, const GLshort *)) {
3193 SET_by_offset(disp, _gloffset_Rectsv, fn);
3194 }
3195
3196 typedef void (GLAPIENTRYP _glptr_TexCoord1d)(GLdouble);
3197 #define CALL_TexCoord1d(disp, parameters) \
3198 (* GET_TexCoord1d(disp)) parameters
3199 static INLINE _glptr_TexCoord1d GET_TexCoord1d(struct _glapi_table *disp) {
3200 return (_glptr_TexCoord1d) (GET_by_offset(disp, _gloffset_TexCoord1d));
3201 }
3202
3203 static INLINE void SET_TexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
3204 SET_by_offset(disp, _gloffset_TexCoord1d, fn);
3205 }
3206
3207 typedef void (GLAPIENTRYP _glptr_TexCoord1dv)(const GLdouble *);
3208 #define CALL_TexCoord1dv(disp, parameters) \
3209 (* GET_TexCoord1dv(disp)) parameters
3210 static INLINE _glptr_TexCoord1dv GET_TexCoord1dv(struct _glapi_table *disp) {
3211 return (_glptr_TexCoord1dv) (GET_by_offset(disp, _gloffset_TexCoord1dv));
3212 }
3213
3214 static INLINE void SET_TexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3215 SET_by_offset(disp, _gloffset_TexCoord1dv, fn);
3216 }
3217
3218 typedef void (GLAPIENTRYP _glptr_TexCoord1f)(GLfloat);
3219 #define CALL_TexCoord1f(disp, parameters) \
3220 (* GET_TexCoord1f(disp)) parameters
3221 static INLINE _glptr_TexCoord1f GET_TexCoord1f(struct _glapi_table *disp) {
3222 return (_glptr_TexCoord1f) (GET_by_offset(disp, _gloffset_TexCoord1f));
3223 }
3224
3225 static INLINE void SET_TexCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3226 SET_by_offset(disp, _gloffset_TexCoord1f, fn);
3227 }
3228
3229 typedef void (GLAPIENTRYP _glptr_TexCoord1fv)(const GLfloat *);
3230 #define CALL_TexCoord1fv(disp, parameters) \
3231 (* GET_TexCoord1fv(disp)) parameters
3232 static INLINE _glptr_TexCoord1fv GET_TexCoord1fv(struct _glapi_table *disp) {
3233 return (_glptr_TexCoord1fv) (GET_by_offset(disp, _gloffset_TexCoord1fv));
3234 }
3235
3236 static INLINE void SET_TexCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3237 SET_by_offset(disp, _gloffset_TexCoord1fv, fn);
3238 }
3239
3240 typedef void (GLAPIENTRYP _glptr_TexCoord1i)(GLint);
3241 #define CALL_TexCoord1i(disp, parameters) \
3242 (* GET_TexCoord1i(disp)) parameters
3243 static INLINE _glptr_TexCoord1i GET_TexCoord1i(struct _glapi_table *disp) {
3244 return (_glptr_TexCoord1i) (GET_by_offset(disp, _gloffset_TexCoord1i));
3245 }
3246
3247 static INLINE void SET_TexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
3248 SET_by_offset(disp, _gloffset_TexCoord1i, fn);
3249 }
3250
3251 typedef void (GLAPIENTRYP _glptr_TexCoord1iv)(const GLint *);
3252 #define CALL_TexCoord1iv(disp, parameters) \
3253 (* GET_TexCoord1iv(disp)) parameters
3254 static INLINE _glptr_TexCoord1iv GET_TexCoord1iv(struct _glapi_table *disp) {
3255 return (_glptr_TexCoord1iv) (GET_by_offset(disp, _gloffset_TexCoord1iv));
3256 }
3257
3258 static INLINE void SET_TexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3259 SET_by_offset(disp, _gloffset_TexCoord1iv, fn);
3260 }
3261
3262 typedef void (GLAPIENTRYP _glptr_TexCoord1s)(GLshort);
3263 #define CALL_TexCoord1s(disp, parameters) \
3264 (* GET_TexCoord1s(disp)) parameters
3265 static INLINE _glptr_TexCoord1s GET_TexCoord1s(struct _glapi_table *disp) {
3266 return (_glptr_TexCoord1s) (GET_by_offset(disp, _gloffset_TexCoord1s));
3267 }
3268
3269 static INLINE void SET_TexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
3270 SET_by_offset(disp, _gloffset_TexCoord1s, fn);
3271 }
3272
3273 typedef void (GLAPIENTRYP _glptr_TexCoord1sv)(const GLshort *);
3274 #define CALL_TexCoord1sv(disp, parameters) \
3275 (* GET_TexCoord1sv(disp)) parameters
3276 static INLINE _glptr_TexCoord1sv GET_TexCoord1sv(struct _glapi_table *disp) {
3277 return (_glptr_TexCoord1sv) (GET_by_offset(disp, _gloffset_TexCoord1sv));
3278 }
3279
3280 static INLINE void SET_TexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3281 SET_by_offset(disp, _gloffset_TexCoord1sv, fn);
3282 }
3283
3284 typedef void (GLAPIENTRYP _glptr_TexCoord2d)(GLdouble, GLdouble);
3285 #define CALL_TexCoord2d(disp, parameters) \
3286 (* GET_TexCoord2d(disp)) parameters
3287 static INLINE _glptr_TexCoord2d GET_TexCoord2d(struct _glapi_table *disp) {
3288 return (_glptr_TexCoord2d) (GET_by_offset(disp, _gloffset_TexCoord2d));
3289 }
3290
3291 static INLINE void SET_TexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
3292 SET_by_offset(disp, _gloffset_TexCoord2d, fn);
3293 }
3294
3295 typedef void (GLAPIENTRYP _glptr_TexCoord2dv)(const GLdouble *);
3296 #define CALL_TexCoord2dv(disp, parameters) \
3297 (* GET_TexCoord2dv(disp)) parameters
3298 static INLINE _glptr_TexCoord2dv GET_TexCoord2dv(struct _glapi_table *disp) {
3299 return (_glptr_TexCoord2dv) (GET_by_offset(disp, _gloffset_TexCoord2dv));
3300 }
3301
3302 static INLINE void SET_TexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3303 SET_by_offset(disp, _gloffset_TexCoord2dv, fn);
3304 }
3305
3306 typedef void (GLAPIENTRYP _glptr_TexCoord2f)(GLfloat, GLfloat);
3307 #define CALL_TexCoord2f(disp, parameters) \
3308 (* GET_TexCoord2f(disp)) parameters
3309 static INLINE _glptr_TexCoord2f GET_TexCoord2f(struct _glapi_table *disp) {
3310 return (_glptr_TexCoord2f) (GET_by_offset(disp, _gloffset_TexCoord2f));
3311 }
3312
3313 static INLINE void SET_TexCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
3314 SET_by_offset(disp, _gloffset_TexCoord2f, fn);
3315 }
3316
3317 typedef void (GLAPIENTRYP _glptr_TexCoord2fv)(const GLfloat *);
3318 #define CALL_TexCoord2fv(disp, parameters) \
3319 (* GET_TexCoord2fv(disp)) parameters
3320 static INLINE _glptr_TexCoord2fv GET_TexCoord2fv(struct _glapi_table *disp) {
3321 return (_glptr_TexCoord2fv) (GET_by_offset(disp, _gloffset_TexCoord2fv));
3322 }
3323
3324 static INLINE void SET_TexCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3325 SET_by_offset(disp, _gloffset_TexCoord2fv, fn);
3326 }
3327
3328 typedef void (GLAPIENTRYP _glptr_TexCoord2i)(GLint, GLint);
3329 #define CALL_TexCoord2i(disp, parameters) \
3330 (* GET_TexCoord2i(disp)) parameters
3331 static INLINE _glptr_TexCoord2i GET_TexCoord2i(struct _glapi_table *disp) {
3332 return (_glptr_TexCoord2i) (GET_by_offset(disp, _gloffset_TexCoord2i));
3333 }
3334
3335 static INLINE void SET_TexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
3336 SET_by_offset(disp, _gloffset_TexCoord2i, fn);
3337 }
3338
3339 typedef void (GLAPIENTRYP _glptr_TexCoord2iv)(const GLint *);
3340 #define CALL_TexCoord2iv(disp, parameters) \
3341 (* GET_TexCoord2iv(disp)) parameters
3342 static INLINE _glptr_TexCoord2iv GET_TexCoord2iv(struct _glapi_table *disp) {
3343 return (_glptr_TexCoord2iv) (GET_by_offset(disp, _gloffset_TexCoord2iv));
3344 }
3345
3346 static INLINE void SET_TexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3347 SET_by_offset(disp, _gloffset_TexCoord2iv, fn);
3348 }
3349
3350 typedef void (GLAPIENTRYP _glptr_TexCoord2s)(GLshort, GLshort);
3351 #define CALL_TexCoord2s(disp, parameters) \
3352 (* GET_TexCoord2s(disp)) parameters
3353 static INLINE _glptr_TexCoord2s GET_TexCoord2s(struct _glapi_table *disp) {
3354 return (_glptr_TexCoord2s) (GET_by_offset(disp, _gloffset_TexCoord2s));
3355 }
3356
3357 static INLINE void SET_TexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
3358 SET_by_offset(disp, _gloffset_TexCoord2s, fn);
3359 }
3360
3361 typedef void (GLAPIENTRYP _glptr_TexCoord2sv)(const GLshort *);
3362 #define CALL_TexCoord2sv(disp, parameters) \
3363 (* GET_TexCoord2sv(disp)) parameters
3364 static INLINE _glptr_TexCoord2sv GET_TexCoord2sv(struct _glapi_table *disp) {
3365 return (_glptr_TexCoord2sv) (GET_by_offset(disp, _gloffset_TexCoord2sv));
3366 }
3367
3368 static INLINE void SET_TexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3369 SET_by_offset(disp, _gloffset_TexCoord2sv, fn);
3370 }
3371
3372 typedef void (GLAPIENTRYP _glptr_TexCoord3d)(GLdouble, GLdouble, GLdouble);
3373 #define CALL_TexCoord3d(disp, parameters) \
3374 (* GET_TexCoord3d(disp)) parameters
3375 static INLINE _glptr_TexCoord3d GET_TexCoord3d(struct _glapi_table *disp) {
3376 return (_glptr_TexCoord3d) (GET_by_offset(disp, _gloffset_TexCoord3d));
3377 }
3378
3379 static INLINE void SET_TexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
3380 SET_by_offset(disp, _gloffset_TexCoord3d, fn);
3381 }
3382
3383 typedef void (GLAPIENTRYP _glptr_TexCoord3dv)(const GLdouble *);
3384 #define CALL_TexCoord3dv(disp, parameters) \
3385 (* GET_TexCoord3dv(disp)) parameters
3386 static INLINE _glptr_TexCoord3dv GET_TexCoord3dv(struct _glapi_table *disp) {
3387 return (_glptr_TexCoord3dv) (GET_by_offset(disp, _gloffset_TexCoord3dv));
3388 }
3389
3390 static INLINE void SET_TexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3391 SET_by_offset(disp, _gloffset_TexCoord3dv, fn);
3392 }
3393
3394 typedef void (GLAPIENTRYP _glptr_TexCoord3f)(GLfloat, GLfloat, GLfloat);
3395 #define CALL_TexCoord3f(disp, parameters) \
3396 (* GET_TexCoord3f(disp)) parameters
3397 static INLINE _glptr_TexCoord3f GET_TexCoord3f(struct _glapi_table *disp) {
3398 return (_glptr_TexCoord3f) (GET_by_offset(disp, _gloffset_TexCoord3f));
3399 }
3400
3401 static INLINE void SET_TexCoord3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
3402 SET_by_offset(disp, _gloffset_TexCoord3f, fn);
3403 }
3404
3405 typedef void (GLAPIENTRYP _glptr_TexCoord3fv)(const GLfloat *);
3406 #define CALL_TexCoord3fv(disp, parameters) \
3407 (* GET_TexCoord3fv(disp)) parameters
3408 static INLINE _glptr_TexCoord3fv GET_TexCoord3fv(struct _glapi_table *disp) {
3409 return (_glptr_TexCoord3fv) (GET_by_offset(disp, _gloffset_TexCoord3fv));
3410 }
3411
3412 static INLINE void SET_TexCoord3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3413 SET_by_offset(disp, _gloffset_TexCoord3fv, fn);
3414 }
3415
3416 typedef void (GLAPIENTRYP _glptr_TexCoord3i)(GLint, GLint, GLint);
3417 #define CALL_TexCoord3i(disp, parameters) \
3418 (* GET_TexCoord3i(disp)) parameters
3419 static INLINE _glptr_TexCoord3i GET_TexCoord3i(struct _glapi_table *disp) {
3420 return (_glptr_TexCoord3i) (GET_by_offset(disp, _gloffset_TexCoord3i));
3421 }
3422
3423 static INLINE void SET_TexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
3424 SET_by_offset(disp, _gloffset_TexCoord3i, fn);
3425 }
3426
3427 typedef void (GLAPIENTRYP _glptr_TexCoord3iv)(const GLint *);
3428 #define CALL_TexCoord3iv(disp, parameters) \
3429 (* GET_TexCoord3iv(disp)) parameters
3430 static INLINE _glptr_TexCoord3iv GET_TexCoord3iv(struct _glapi_table *disp) {
3431 return (_glptr_TexCoord3iv) (GET_by_offset(disp, _gloffset_TexCoord3iv));
3432 }
3433
3434 static INLINE void SET_TexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3435 SET_by_offset(disp, _gloffset_TexCoord3iv, fn);
3436 }
3437
3438 typedef void (GLAPIENTRYP _glptr_TexCoord3s)(GLshort, GLshort, GLshort);
3439 #define CALL_TexCoord3s(disp, parameters) \
3440 (* GET_TexCoord3s(disp)) parameters
3441 static INLINE _glptr_TexCoord3s GET_TexCoord3s(struct _glapi_table *disp) {
3442 return (_glptr_TexCoord3s) (GET_by_offset(disp, _gloffset_TexCoord3s));
3443 }
3444
3445 static INLINE void SET_TexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
3446 SET_by_offset(disp, _gloffset_TexCoord3s, fn);
3447 }
3448
3449 typedef void (GLAPIENTRYP _glptr_TexCoord3sv)(const GLshort *);
3450 #define CALL_TexCoord3sv(disp, parameters) \
3451 (* GET_TexCoord3sv(disp)) parameters
3452 static INLINE _glptr_TexCoord3sv GET_TexCoord3sv(struct _glapi_table *disp) {
3453 return (_glptr_TexCoord3sv) (GET_by_offset(disp, _gloffset_TexCoord3sv));
3454 }
3455
3456 static INLINE void SET_TexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3457 SET_by_offset(disp, _gloffset_TexCoord3sv, fn);
3458 }
3459
3460 typedef void (GLAPIENTRYP _glptr_TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble);
3461 #define CALL_TexCoord4d(disp, parameters) \
3462 (* GET_TexCoord4d(disp)) parameters
3463 static INLINE _glptr_TexCoord4d GET_TexCoord4d(struct _glapi_table *disp) {
3464 return (_glptr_TexCoord4d) (GET_by_offset(disp, _gloffset_TexCoord4d));
3465 }
3466
3467 static INLINE void SET_TexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
3468 SET_by_offset(disp, _gloffset_TexCoord4d, fn);
3469 }
3470
3471 typedef void (GLAPIENTRYP _glptr_TexCoord4dv)(const GLdouble *);
3472 #define CALL_TexCoord4dv(disp, parameters) \
3473 (* GET_TexCoord4dv(disp)) parameters
3474 static INLINE _glptr_TexCoord4dv GET_TexCoord4dv(struct _glapi_table *disp) {
3475 return (_glptr_TexCoord4dv) (GET_by_offset(disp, _gloffset_TexCoord4dv));
3476 }
3477
3478 static INLINE void SET_TexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3479 SET_by_offset(disp, _gloffset_TexCoord4dv, fn);
3480 }
3481
3482 typedef void (GLAPIENTRYP _glptr_TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat);
3483 #define CALL_TexCoord4f(disp, parameters) \
3484 (* GET_TexCoord4f(disp)) parameters
3485 static INLINE _glptr_TexCoord4f GET_TexCoord4f(struct _glapi_table *disp) {
3486 return (_glptr_TexCoord4f) (GET_by_offset(disp, _gloffset_TexCoord4f));
3487 }
3488
3489 static INLINE void SET_TexCoord4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3490 SET_by_offset(disp, _gloffset_TexCoord4f, fn);
3491 }
3492
3493 typedef void (GLAPIENTRYP _glptr_TexCoord4fv)(const GLfloat *);
3494 #define CALL_TexCoord4fv(disp, parameters) \
3495 (* GET_TexCoord4fv(disp)) parameters
3496 static INLINE _glptr_TexCoord4fv GET_TexCoord4fv(struct _glapi_table *disp) {
3497 return (_glptr_TexCoord4fv) (GET_by_offset(disp, _gloffset_TexCoord4fv));
3498 }
3499
3500 static INLINE void SET_TexCoord4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3501 SET_by_offset(disp, _gloffset_TexCoord4fv, fn);
3502 }
3503
3504 typedef void (GLAPIENTRYP _glptr_TexCoord4i)(GLint, GLint, GLint, GLint);
3505 #define CALL_TexCoord4i(disp, parameters) \
3506 (* GET_TexCoord4i(disp)) parameters
3507 static INLINE _glptr_TexCoord4i GET_TexCoord4i(struct _glapi_table *disp) {
3508 return (_glptr_TexCoord4i) (GET_by_offset(disp, _gloffset_TexCoord4i));
3509 }
3510
3511 static INLINE void SET_TexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
3512 SET_by_offset(disp, _gloffset_TexCoord4i, fn);
3513 }
3514
3515 typedef void (GLAPIENTRYP _glptr_TexCoord4iv)(const GLint *);
3516 #define CALL_TexCoord4iv(disp, parameters) \
3517 (* GET_TexCoord4iv(disp)) parameters
3518 static INLINE _glptr_TexCoord4iv GET_TexCoord4iv(struct _glapi_table *disp) {
3519 return (_glptr_TexCoord4iv) (GET_by_offset(disp, _gloffset_TexCoord4iv));
3520 }
3521
3522 static INLINE void SET_TexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3523 SET_by_offset(disp, _gloffset_TexCoord4iv, fn);
3524 }
3525
3526 typedef void (GLAPIENTRYP _glptr_TexCoord4s)(GLshort, GLshort, GLshort, GLshort);
3527 #define CALL_TexCoord4s(disp, parameters) \
3528 (* GET_TexCoord4s(disp)) parameters
3529 static INLINE _glptr_TexCoord4s GET_TexCoord4s(struct _glapi_table *disp) {
3530 return (_glptr_TexCoord4s) (GET_by_offset(disp, _gloffset_TexCoord4s));
3531 }
3532
3533 static INLINE void SET_TexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
3534 SET_by_offset(disp, _gloffset_TexCoord4s, fn);
3535 }
3536
3537 typedef void (GLAPIENTRYP _glptr_TexCoord4sv)(const GLshort *);
3538 #define CALL_TexCoord4sv(disp, parameters) \
3539 (* GET_TexCoord4sv(disp)) parameters
3540 static INLINE _glptr_TexCoord4sv GET_TexCoord4sv(struct _glapi_table *disp) {
3541 return (_glptr_TexCoord4sv) (GET_by_offset(disp, _gloffset_TexCoord4sv));
3542 }
3543
3544 static INLINE void SET_TexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3545 SET_by_offset(disp, _gloffset_TexCoord4sv, fn);
3546 }
3547
3548 typedef void (GLAPIENTRYP _glptr_Vertex2d)(GLdouble, GLdouble);
3549 #define CALL_Vertex2d(disp, parameters) \
3550 (* GET_Vertex2d(disp)) parameters
3551 static INLINE _glptr_Vertex2d GET_Vertex2d(struct _glapi_table *disp) {
3552 return (_glptr_Vertex2d) (GET_by_offset(disp, _gloffset_Vertex2d));
3553 }
3554
3555 static INLINE void SET_Vertex2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
3556 SET_by_offset(disp, _gloffset_Vertex2d, fn);
3557 }
3558
3559 typedef void (GLAPIENTRYP _glptr_Vertex2dv)(const GLdouble *);
3560 #define CALL_Vertex2dv(disp, parameters) \
3561 (* GET_Vertex2dv(disp)) parameters
3562 static INLINE _glptr_Vertex2dv GET_Vertex2dv(struct _glapi_table *disp) {
3563 return (_glptr_Vertex2dv) (GET_by_offset(disp, _gloffset_Vertex2dv));
3564 }
3565
3566 static INLINE void SET_Vertex2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3567 SET_by_offset(disp, _gloffset_Vertex2dv, fn);
3568 }
3569
3570 typedef void (GLAPIENTRYP _glptr_Vertex2f)(GLfloat, GLfloat);
3571 #define CALL_Vertex2f(disp, parameters) \
3572 (* GET_Vertex2f(disp)) parameters
3573 static INLINE _glptr_Vertex2f GET_Vertex2f(struct _glapi_table *disp) {
3574 return (_glptr_Vertex2f) (GET_by_offset(disp, _gloffset_Vertex2f));
3575 }
3576
3577 static INLINE void SET_Vertex2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
3578 SET_by_offset(disp, _gloffset_Vertex2f, fn);
3579 }
3580
3581 typedef void (GLAPIENTRYP _glptr_Vertex2fv)(const GLfloat *);
3582 #define CALL_Vertex2fv(disp, parameters) \
3583 (* GET_Vertex2fv(disp)) parameters
3584 static INLINE _glptr_Vertex2fv GET_Vertex2fv(struct _glapi_table *disp) {
3585 return (_glptr_Vertex2fv) (GET_by_offset(disp, _gloffset_Vertex2fv));
3586 }
3587
3588 static INLINE void SET_Vertex2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3589 SET_by_offset(disp, _gloffset_Vertex2fv, fn);
3590 }
3591
3592 typedef void (GLAPIENTRYP _glptr_Vertex2i)(GLint, GLint);
3593 #define CALL_Vertex2i(disp, parameters) \
3594 (* GET_Vertex2i(disp)) parameters
3595 static INLINE _glptr_Vertex2i GET_Vertex2i(struct _glapi_table *disp) {
3596 return (_glptr_Vertex2i) (GET_by_offset(disp, _gloffset_Vertex2i));
3597 }
3598
3599 static INLINE void SET_Vertex2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
3600 SET_by_offset(disp, _gloffset_Vertex2i, fn);
3601 }
3602
3603 typedef void (GLAPIENTRYP _glptr_Vertex2iv)(const GLint *);
3604 #define CALL_Vertex2iv(disp, parameters) \
3605 (* GET_Vertex2iv(disp)) parameters
3606 static INLINE _glptr_Vertex2iv GET_Vertex2iv(struct _glapi_table *disp) {
3607 return (_glptr_Vertex2iv) (GET_by_offset(disp, _gloffset_Vertex2iv));
3608 }
3609
3610 static INLINE void SET_Vertex2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3611 SET_by_offset(disp, _gloffset_Vertex2iv, fn);
3612 }
3613
3614 typedef void (GLAPIENTRYP _glptr_Vertex2s)(GLshort, GLshort);
3615 #define CALL_Vertex2s(disp, parameters) \
3616 (* GET_Vertex2s(disp)) parameters
3617 static INLINE _glptr_Vertex2s GET_Vertex2s(struct _glapi_table *disp) {
3618 return (_glptr_Vertex2s) (GET_by_offset(disp, _gloffset_Vertex2s));
3619 }
3620
3621 static INLINE void SET_Vertex2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
3622 SET_by_offset(disp, _gloffset_Vertex2s, fn);
3623 }
3624
3625 typedef void (GLAPIENTRYP _glptr_Vertex2sv)(const GLshort *);
3626 #define CALL_Vertex2sv(disp, parameters) \
3627 (* GET_Vertex2sv(disp)) parameters
3628 static INLINE _glptr_Vertex2sv GET_Vertex2sv(struct _glapi_table *disp) {
3629 return (_glptr_Vertex2sv) (GET_by_offset(disp, _gloffset_Vertex2sv));
3630 }
3631
3632 static INLINE void SET_Vertex2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3633 SET_by_offset(disp, _gloffset_Vertex2sv, fn);
3634 }
3635
3636 typedef void (GLAPIENTRYP _glptr_Vertex3d)(GLdouble, GLdouble, GLdouble);
3637 #define CALL_Vertex3d(disp, parameters) \
3638 (* GET_Vertex3d(disp)) parameters
3639 static INLINE _glptr_Vertex3d GET_Vertex3d(struct _glapi_table *disp) {
3640 return (_glptr_Vertex3d) (GET_by_offset(disp, _gloffset_Vertex3d));
3641 }
3642
3643 static INLINE void SET_Vertex3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
3644 SET_by_offset(disp, _gloffset_Vertex3d, fn);
3645 }
3646
3647 typedef void (GLAPIENTRYP _glptr_Vertex3dv)(const GLdouble *);
3648 #define CALL_Vertex3dv(disp, parameters) \
3649 (* GET_Vertex3dv(disp)) parameters
3650 static INLINE _glptr_Vertex3dv GET_Vertex3dv(struct _glapi_table *disp) {
3651 return (_glptr_Vertex3dv) (GET_by_offset(disp, _gloffset_Vertex3dv));
3652 }
3653
3654 static INLINE void SET_Vertex3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3655 SET_by_offset(disp, _gloffset_Vertex3dv, fn);
3656 }
3657
3658 typedef void (GLAPIENTRYP _glptr_Vertex3f)(GLfloat, GLfloat, GLfloat);
3659 #define CALL_Vertex3f(disp, parameters) \
3660 (* GET_Vertex3f(disp)) parameters
3661 static INLINE _glptr_Vertex3f GET_Vertex3f(struct _glapi_table *disp) {
3662 return (_glptr_Vertex3f) (GET_by_offset(disp, _gloffset_Vertex3f));
3663 }
3664
3665 static INLINE void SET_Vertex3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
3666 SET_by_offset(disp, _gloffset_Vertex3f, fn);
3667 }
3668
3669 typedef void (GLAPIENTRYP _glptr_Vertex3fv)(const GLfloat *);
3670 #define CALL_Vertex3fv(disp, parameters) \
3671 (* GET_Vertex3fv(disp)) parameters
3672 static INLINE _glptr_Vertex3fv GET_Vertex3fv(struct _glapi_table *disp) {
3673 return (_glptr_Vertex3fv) (GET_by_offset(disp, _gloffset_Vertex3fv));
3674 }
3675
3676 static INLINE void SET_Vertex3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3677 SET_by_offset(disp, _gloffset_Vertex3fv, fn);
3678 }
3679
3680 typedef void (GLAPIENTRYP _glptr_Vertex3i)(GLint, GLint, GLint);
3681 #define CALL_Vertex3i(disp, parameters) \
3682 (* GET_Vertex3i(disp)) parameters
3683 static INLINE _glptr_Vertex3i GET_Vertex3i(struct _glapi_table *disp) {
3684 return (_glptr_Vertex3i) (GET_by_offset(disp, _gloffset_Vertex3i));
3685 }
3686
3687 static INLINE void SET_Vertex3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
3688 SET_by_offset(disp, _gloffset_Vertex3i, fn);
3689 }
3690
3691 typedef void (GLAPIENTRYP _glptr_Vertex3iv)(const GLint *);
3692 #define CALL_Vertex3iv(disp, parameters) \
3693 (* GET_Vertex3iv(disp)) parameters
3694 static INLINE _glptr_Vertex3iv GET_Vertex3iv(struct _glapi_table *disp) {
3695 return (_glptr_Vertex3iv) (GET_by_offset(disp, _gloffset_Vertex3iv));
3696 }
3697
3698 static INLINE void SET_Vertex3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3699 SET_by_offset(disp, _gloffset_Vertex3iv, fn);
3700 }
3701
3702 typedef void (GLAPIENTRYP _glptr_Vertex3s)(GLshort, GLshort, GLshort);
3703 #define CALL_Vertex3s(disp, parameters) \
3704 (* GET_Vertex3s(disp)) parameters
3705 static INLINE _glptr_Vertex3s GET_Vertex3s(struct _glapi_table *disp) {
3706 return (_glptr_Vertex3s) (GET_by_offset(disp, _gloffset_Vertex3s));
3707 }
3708
3709 static INLINE void SET_Vertex3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
3710 SET_by_offset(disp, _gloffset_Vertex3s, fn);
3711 }
3712
3713 typedef void (GLAPIENTRYP _glptr_Vertex3sv)(const GLshort *);
3714 #define CALL_Vertex3sv(disp, parameters) \
3715 (* GET_Vertex3sv(disp)) parameters
3716 static INLINE _glptr_Vertex3sv GET_Vertex3sv(struct _glapi_table *disp) {
3717 return (_glptr_Vertex3sv) (GET_by_offset(disp, _gloffset_Vertex3sv));
3718 }
3719
3720 static INLINE void SET_Vertex3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3721 SET_by_offset(disp, _gloffset_Vertex3sv, fn);
3722 }
3723
3724 typedef void (GLAPIENTRYP _glptr_Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble);
3725 #define CALL_Vertex4d(disp, parameters) \
3726 (* GET_Vertex4d(disp)) parameters
3727 static INLINE _glptr_Vertex4d GET_Vertex4d(struct _glapi_table *disp) {
3728 return (_glptr_Vertex4d) (GET_by_offset(disp, _gloffset_Vertex4d));
3729 }
3730
3731 static INLINE void SET_Vertex4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
3732 SET_by_offset(disp, _gloffset_Vertex4d, fn);
3733 }
3734
3735 typedef void (GLAPIENTRYP _glptr_Vertex4dv)(const GLdouble *);
3736 #define CALL_Vertex4dv(disp, parameters) \
3737 (* GET_Vertex4dv(disp)) parameters
3738 static INLINE _glptr_Vertex4dv GET_Vertex4dv(struct _glapi_table *disp) {
3739 return (_glptr_Vertex4dv) (GET_by_offset(disp, _gloffset_Vertex4dv));
3740 }
3741
3742 static INLINE void SET_Vertex4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3743 SET_by_offset(disp, _gloffset_Vertex4dv, fn);
3744 }
3745
3746 typedef void (GLAPIENTRYP _glptr_Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat);
3747 #define CALL_Vertex4f(disp, parameters) \
3748 (* GET_Vertex4f(disp)) parameters
3749 static INLINE _glptr_Vertex4f GET_Vertex4f(struct _glapi_table *disp) {
3750 return (_glptr_Vertex4f) (GET_by_offset(disp, _gloffset_Vertex4f));
3751 }
3752
3753 static INLINE void SET_Vertex4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3754 SET_by_offset(disp, _gloffset_Vertex4f, fn);
3755 }
3756
3757 typedef void (GLAPIENTRYP _glptr_Vertex4fv)(const GLfloat *);
3758 #define CALL_Vertex4fv(disp, parameters) \
3759 (* GET_Vertex4fv(disp)) parameters
3760 static INLINE _glptr_Vertex4fv GET_Vertex4fv(struct _glapi_table *disp) {
3761 return (_glptr_Vertex4fv) (GET_by_offset(disp, _gloffset_Vertex4fv));
3762 }
3763
3764 static INLINE void SET_Vertex4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3765 SET_by_offset(disp, _gloffset_Vertex4fv, fn);
3766 }
3767
3768 typedef void (GLAPIENTRYP _glptr_Vertex4i)(GLint, GLint, GLint, GLint);
3769 #define CALL_Vertex4i(disp, parameters) \
3770 (* GET_Vertex4i(disp)) parameters
3771 static INLINE _glptr_Vertex4i GET_Vertex4i(struct _glapi_table *disp) {
3772 return (_glptr_Vertex4i) (GET_by_offset(disp, _gloffset_Vertex4i));
3773 }
3774
3775 static INLINE void SET_Vertex4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
3776 SET_by_offset(disp, _gloffset_Vertex4i, fn);
3777 }
3778
3779 typedef void (GLAPIENTRYP _glptr_Vertex4iv)(const GLint *);
3780 #define CALL_Vertex4iv(disp, parameters) \
3781 (* GET_Vertex4iv(disp)) parameters
3782 static INLINE _glptr_Vertex4iv GET_Vertex4iv(struct _glapi_table *disp) {
3783 return (_glptr_Vertex4iv) (GET_by_offset(disp, _gloffset_Vertex4iv));
3784 }
3785
3786 static INLINE void SET_Vertex4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
3787 SET_by_offset(disp, _gloffset_Vertex4iv, fn);
3788 }
3789
3790 typedef void (GLAPIENTRYP _glptr_Vertex4s)(GLshort, GLshort, GLshort, GLshort);
3791 #define CALL_Vertex4s(disp, parameters) \
3792 (* GET_Vertex4s(disp)) parameters
3793 static INLINE _glptr_Vertex4s GET_Vertex4s(struct _glapi_table *disp) {
3794 return (_glptr_Vertex4s) (GET_by_offset(disp, _gloffset_Vertex4s));
3795 }
3796
3797 static INLINE void SET_Vertex4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
3798 SET_by_offset(disp, _gloffset_Vertex4s, fn);
3799 }
3800
3801 typedef void (GLAPIENTRYP _glptr_Vertex4sv)(const GLshort *);
3802 #define CALL_Vertex4sv(disp, parameters) \
3803 (* GET_Vertex4sv(disp)) parameters
3804 static INLINE _glptr_Vertex4sv GET_Vertex4sv(struct _glapi_table *disp) {
3805 return (_glptr_Vertex4sv) (GET_by_offset(disp, _gloffset_Vertex4sv));
3806 }
3807
3808 static INLINE void SET_Vertex4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
3809 SET_by_offset(disp, _gloffset_Vertex4sv, fn);
3810 }
3811
3812 typedef void (GLAPIENTRYP _glptr_ClipPlane)(GLenum, const GLdouble *);
3813 #define CALL_ClipPlane(disp, parameters) \
3814 (* GET_ClipPlane(disp)) parameters
3815 static INLINE _glptr_ClipPlane GET_ClipPlane(struct _glapi_table *disp) {
3816 return (_glptr_ClipPlane) (GET_by_offset(disp, _gloffset_ClipPlane));
3817 }
3818
3819 static INLINE void SET_ClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
3820 SET_by_offset(disp, _gloffset_ClipPlane, fn);
3821 }
3822
3823 typedef void (GLAPIENTRYP _glptr_ColorMaterial)(GLenum, GLenum);
3824 #define CALL_ColorMaterial(disp, parameters) \
3825 (* GET_ColorMaterial(disp)) parameters
3826 static INLINE _glptr_ColorMaterial GET_ColorMaterial(struct _glapi_table *disp) {
3827 return (_glptr_ColorMaterial) (GET_by_offset(disp, _gloffset_ColorMaterial));
3828 }
3829
3830 static INLINE void SET_ColorMaterial(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3831 SET_by_offset(disp, _gloffset_ColorMaterial, fn);
3832 }
3833
3834 typedef void (GLAPIENTRYP _glptr_CullFace)(GLenum);
3835 #define CALL_CullFace(disp, parameters) \
3836 (* GET_CullFace(disp)) parameters
3837 static INLINE _glptr_CullFace GET_CullFace(struct _glapi_table *disp) {
3838 return (_glptr_CullFace) (GET_by_offset(disp, _gloffset_CullFace));
3839 }
3840
3841 static INLINE void SET_CullFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3842 SET_by_offset(disp, _gloffset_CullFace, fn);
3843 }
3844
3845 typedef void (GLAPIENTRYP _glptr_Fogf)(GLenum, GLfloat);
3846 #define CALL_Fogf(disp, parameters) \
3847 (* GET_Fogf(disp)) parameters
3848 static INLINE _glptr_Fogf GET_Fogf(struct _glapi_table *disp) {
3849 return (_glptr_Fogf) (GET_by_offset(disp, _gloffset_Fogf));
3850 }
3851
3852 static INLINE void SET_Fogf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3853 SET_by_offset(disp, _gloffset_Fogf, fn);
3854 }
3855
3856 typedef void (GLAPIENTRYP _glptr_Fogfv)(GLenum, const GLfloat *);
3857 #define CALL_Fogfv(disp, parameters) \
3858 (* GET_Fogfv(disp)) parameters
3859 static INLINE _glptr_Fogfv GET_Fogfv(struct _glapi_table *disp) {
3860 return (_glptr_Fogfv) (GET_by_offset(disp, _gloffset_Fogfv));
3861 }
3862
3863 static INLINE void SET_Fogfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
3864 SET_by_offset(disp, _gloffset_Fogfv, fn);
3865 }
3866
3867 typedef void (GLAPIENTRYP _glptr_Fogi)(GLenum, GLint);
3868 #define CALL_Fogi(disp, parameters) \
3869 (* GET_Fogi(disp)) parameters
3870 static INLINE _glptr_Fogi GET_Fogi(struct _glapi_table *disp) {
3871 return (_glptr_Fogi) (GET_by_offset(disp, _gloffset_Fogi));
3872 }
3873
3874 static INLINE void SET_Fogi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
3875 SET_by_offset(disp, _gloffset_Fogi, fn);
3876 }
3877
3878 typedef void (GLAPIENTRYP _glptr_Fogiv)(GLenum, const GLint *);
3879 #define CALL_Fogiv(disp, parameters) \
3880 (* GET_Fogiv(disp)) parameters
3881 static INLINE _glptr_Fogiv GET_Fogiv(struct _glapi_table *disp) {
3882 return (_glptr_Fogiv) (GET_by_offset(disp, _gloffset_Fogiv));
3883 }
3884
3885 static INLINE void SET_Fogiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
3886 SET_by_offset(disp, _gloffset_Fogiv, fn);
3887 }
3888
3889 typedef void (GLAPIENTRYP _glptr_FrontFace)(GLenum);
3890 #define CALL_FrontFace(disp, parameters) \
3891 (* GET_FrontFace(disp)) parameters
3892 static INLINE _glptr_FrontFace GET_FrontFace(struct _glapi_table *disp) {
3893 return (_glptr_FrontFace) (GET_by_offset(disp, _gloffset_FrontFace));
3894 }
3895
3896 static INLINE void SET_FrontFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3897 SET_by_offset(disp, _gloffset_FrontFace, fn);
3898 }
3899
3900 typedef void (GLAPIENTRYP _glptr_Hint)(GLenum, GLenum);
3901 #define CALL_Hint(disp, parameters) \
3902 (* GET_Hint(disp)) parameters
3903 static INLINE _glptr_Hint GET_Hint(struct _glapi_table *disp) {
3904 return (_glptr_Hint) (GET_by_offset(disp, _gloffset_Hint));
3905 }
3906
3907 static INLINE void SET_Hint(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3908 SET_by_offset(disp, _gloffset_Hint, fn);
3909 }
3910
3911 typedef void (GLAPIENTRYP _glptr_Lightf)(GLenum, GLenum, GLfloat);
3912 #define CALL_Lightf(disp, parameters) \
3913 (* GET_Lightf(disp)) parameters
3914 static INLINE _glptr_Lightf GET_Lightf(struct _glapi_table *disp) {
3915 return (_glptr_Lightf) (GET_by_offset(disp, _gloffset_Lightf));
3916 }
3917
3918 static INLINE void SET_Lightf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3919 SET_by_offset(disp, _gloffset_Lightf, fn);
3920 }
3921
3922 typedef void (GLAPIENTRYP _glptr_Lightfv)(GLenum, GLenum, const GLfloat *);
3923 #define CALL_Lightfv(disp, parameters) \
3924 (* GET_Lightfv(disp)) parameters
3925 static INLINE _glptr_Lightfv GET_Lightfv(struct _glapi_table *disp) {
3926 return (_glptr_Lightfv) (GET_by_offset(disp, _gloffset_Lightfv));
3927 }
3928
3929 static INLINE void SET_Lightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3930 SET_by_offset(disp, _gloffset_Lightfv, fn);
3931 }
3932
3933 typedef void (GLAPIENTRYP _glptr_Lighti)(GLenum, GLenum, GLint);
3934 #define CALL_Lighti(disp, parameters) \
3935 (* GET_Lighti(disp)) parameters
3936 static INLINE _glptr_Lighti GET_Lighti(struct _glapi_table *disp) {
3937 return (_glptr_Lighti) (GET_by_offset(disp, _gloffset_Lighti));
3938 }
3939
3940 static INLINE void SET_Lighti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3941 SET_by_offset(disp, _gloffset_Lighti, fn);
3942 }
3943
3944 typedef void (GLAPIENTRYP _glptr_Lightiv)(GLenum, GLenum, const GLint *);
3945 #define CALL_Lightiv(disp, parameters) \
3946 (* GET_Lightiv(disp)) parameters
3947 static INLINE _glptr_Lightiv GET_Lightiv(struct _glapi_table *disp) {
3948 return (_glptr_Lightiv) (GET_by_offset(disp, _gloffset_Lightiv));
3949 }
3950
3951 static INLINE void SET_Lightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3952 SET_by_offset(disp, _gloffset_Lightiv, fn);
3953 }
3954
3955 typedef void (GLAPIENTRYP _glptr_LightModelf)(GLenum, GLfloat);
3956 #define CALL_LightModelf(disp, parameters) \
3957 (* GET_LightModelf(disp)) parameters
3958 static INLINE _glptr_LightModelf GET_LightModelf(struct _glapi_table *disp) {
3959 return (_glptr_LightModelf) (GET_by_offset(disp, _gloffset_LightModelf));
3960 }
3961
3962 static INLINE void SET_LightModelf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3963 SET_by_offset(disp, _gloffset_LightModelf, fn);
3964 }
3965
3966 typedef void (GLAPIENTRYP _glptr_LightModelfv)(GLenum, const GLfloat *);
3967 #define CALL_LightModelfv(disp, parameters) \
3968 (* GET_LightModelfv(disp)) parameters
3969 static INLINE _glptr_LightModelfv GET_LightModelfv(struct _glapi_table *disp) {
3970 return (_glptr_LightModelfv) (GET_by_offset(disp, _gloffset_LightModelfv));
3971 }
3972
3973 static INLINE void SET_LightModelfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
3974 SET_by_offset(disp, _gloffset_LightModelfv, fn);
3975 }
3976
3977 typedef void (GLAPIENTRYP _glptr_LightModeli)(GLenum, GLint);
3978 #define CALL_LightModeli(disp, parameters) \
3979 (* GET_LightModeli(disp)) parameters
3980 static INLINE _glptr_LightModeli GET_LightModeli(struct _glapi_table *disp) {
3981 return (_glptr_LightModeli) (GET_by_offset(disp, _gloffset_LightModeli));
3982 }
3983
3984 static INLINE void SET_LightModeli(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
3985 SET_by_offset(disp, _gloffset_LightModeli, fn);
3986 }
3987
3988 typedef void (GLAPIENTRYP _glptr_LightModeliv)(GLenum, const GLint *);
3989 #define CALL_LightModeliv(disp, parameters) \
3990 (* GET_LightModeliv(disp)) parameters
3991 static INLINE _glptr_LightModeliv GET_LightModeliv(struct _glapi_table *disp) {
3992 return (_glptr_LightModeliv) (GET_by_offset(disp, _gloffset_LightModeliv));
3993 }
3994
3995 static INLINE void SET_LightModeliv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
3996 SET_by_offset(disp, _gloffset_LightModeliv, fn);
3997 }
3998
3999 typedef void (GLAPIENTRYP _glptr_LineStipple)(GLint, GLushort);
4000 #define CALL_LineStipple(disp, parameters) \
4001 (* GET_LineStipple(disp)) parameters
4002 static INLINE _glptr_LineStipple GET_LineStipple(struct _glapi_table *disp) {
4003 return (_glptr_LineStipple) (GET_by_offset(disp, _gloffset_LineStipple));
4004 }
4005
4006 static INLINE void SET_LineStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLushort)) {
4007 SET_by_offset(disp, _gloffset_LineStipple, fn);
4008 }
4009
4010 typedef void (GLAPIENTRYP _glptr_LineWidth)(GLfloat);
4011 #define CALL_LineWidth(disp, parameters) \
4012 (* GET_LineWidth(disp)) parameters
4013 static INLINE _glptr_LineWidth GET_LineWidth(struct _glapi_table *disp) {
4014 return (_glptr_LineWidth) (GET_by_offset(disp, _gloffset_LineWidth));
4015 }
4016
4017 static INLINE void SET_LineWidth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4018 SET_by_offset(disp, _gloffset_LineWidth, fn);
4019 }
4020
4021 typedef void (GLAPIENTRYP _glptr_Materialf)(GLenum, GLenum, GLfloat);
4022 #define CALL_Materialf(disp, parameters) \
4023 (* GET_Materialf(disp)) parameters
4024 static INLINE _glptr_Materialf GET_Materialf(struct _glapi_table *disp) {
4025 return (_glptr_Materialf) (GET_by_offset(disp, _gloffset_Materialf));
4026 }
4027
4028 static INLINE void SET_Materialf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
4029 SET_by_offset(disp, _gloffset_Materialf, fn);
4030 }
4031
4032 typedef void (GLAPIENTRYP _glptr_Materialfv)(GLenum, GLenum, const GLfloat *);
4033 #define CALL_Materialfv(disp, parameters) \
4034 (* GET_Materialfv(disp)) parameters
4035 static INLINE _glptr_Materialfv GET_Materialfv(struct _glapi_table *disp) {
4036 return (_glptr_Materialfv) (GET_by_offset(disp, _gloffset_Materialfv));
4037 }
4038
4039 static INLINE void SET_Materialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
4040 SET_by_offset(disp, _gloffset_Materialfv, fn);
4041 }
4042
4043 typedef void (GLAPIENTRYP _glptr_Materiali)(GLenum, GLenum, GLint);
4044 #define CALL_Materiali(disp, parameters) \
4045 (* GET_Materiali(disp)) parameters
4046 static INLINE _glptr_Materiali GET_Materiali(struct _glapi_table *disp) {
4047 return (_glptr_Materiali) (GET_by_offset(disp, _gloffset_Materiali));
4048 }
4049
4050 static INLINE void SET_Materiali(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
4051 SET_by_offset(disp, _gloffset_Materiali, fn);
4052 }
4053
4054 typedef void (GLAPIENTRYP _glptr_Materialiv)(GLenum, GLenum, const GLint *);
4055 #define CALL_Materialiv(disp, parameters) \
4056 (* GET_Materialiv(disp)) parameters
4057 static INLINE _glptr_Materialiv GET_Materialiv(struct _glapi_table *disp) {
4058 return (_glptr_Materialiv) (GET_by_offset(disp, _gloffset_Materialiv));
4059 }
4060
4061 static INLINE void SET_Materialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
4062 SET_by_offset(disp, _gloffset_Materialiv, fn);
4063 }
4064
4065 typedef void (GLAPIENTRYP _glptr_PointSize)(GLfloat);
4066 #define CALL_PointSize(disp, parameters) \
4067 (* GET_PointSize(disp)) parameters
4068 static INLINE _glptr_PointSize GET_PointSize(struct _glapi_table *disp) {
4069 return (_glptr_PointSize) (GET_by_offset(disp, _gloffset_PointSize));
4070 }
4071
4072 static INLINE void SET_PointSize(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4073 SET_by_offset(disp, _gloffset_PointSize, fn);
4074 }
4075
4076 typedef void (GLAPIENTRYP _glptr_PolygonMode)(GLenum, GLenum);
4077 #define CALL_PolygonMode(disp, parameters) \
4078 (* GET_PolygonMode(disp)) parameters
4079 static INLINE _glptr_PolygonMode GET_PolygonMode(struct _glapi_table *disp) {
4080 return (_glptr_PolygonMode) (GET_by_offset(disp, _gloffset_PolygonMode));
4081 }
4082
4083 static INLINE void SET_PolygonMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
4084 SET_by_offset(disp, _gloffset_PolygonMode, fn);
4085 }
4086
4087 typedef void (GLAPIENTRYP _glptr_PolygonStipple)(const GLubyte *);
4088 #define CALL_PolygonStipple(disp, parameters) \
4089 (* GET_PolygonStipple(disp)) parameters
4090 static INLINE _glptr_PolygonStipple GET_PolygonStipple(struct _glapi_table *disp) {
4091 return (_glptr_PolygonStipple) (GET_by_offset(disp, _gloffset_PolygonStipple));
4092 }
4093
4094 static INLINE void SET_PolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
4095 SET_by_offset(disp, _gloffset_PolygonStipple, fn);
4096 }
4097
4098 typedef void (GLAPIENTRYP _glptr_Scissor)(GLint, GLint, GLsizei, GLsizei);
4099 #define CALL_Scissor(disp, parameters) \
4100 (* GET_Scissor(disp)) parameters
4101 static INLINE _glptr_Scissor GET_Scissor(struct _glapi_table *disp) {
4102 return (_glptr_Scissor) (GET_by_offset(disp, _gloffset_Scissor));
4103 }
4104
4105 static INLINE void SET_Scissor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
4106 SET_by_offset(disp, _gloffset_Scissor, fn);
4107 }
4108
4109 typedef void (GLAPIENTRYP _glptr_ShadeModel)(GLenum);
4110 #define CALL_ShadeModel(disp, parameters) \
4111 (* GET_ShadeModel(disp)) parameters
4112 static INLINE _glptr_ShadeModel GET_ShadeModel(struct _glapi_table *disp) {
4113 return (_glptr_ShadeModel) (GET_by_offset(disp, _gloffset_ShadeModel));
4114 }
4115
4116 static INLINE void SET_ShadeModel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4117 SET_by_offset(disp, _gloffset_ShadeModel, fn);
4118 }
4119
4120 typedef void (GLAPIENTRYP _glptr_TexParameterf)(GLenum, GLenum, GLfloat);
4121 #define CALL_TexParameterf(disp, parameters) \
4122 (* GET_TexParameterf(disp)) parameters
4123 static INLINE _glptr_TexParameterf GET_TexParameterf(struct _glapi_table *disp) {
4124 return (_glptr_TexParameterf) (GET_by_offset(disp, _gloffset_TexParameterf));
4125 }
4126
4127 static INLINE void SET_TexParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
4128 SET_by_offset(disp, _gloffset_TexParameterf, fn);
4129 }
4130
4131 typedef void (GLAPIENTRYP _glptr_TexParameterfv)(GLenum, GLenum, const GLfloat *);
4132 #define CALL_TexParameterfv(disp, parameters) \
4133 (* GET_TexParameterfv(disp)) parameters
4134 static INLINE _glptr_TexParameterfv GET_TexParameterfv(struct _glapi_table *disp) {
4135 return (_glptr_TexParameterfv) (GET_by_offset(disp, _gloffset_TexParameterfv));
4136 }
4137
4138 static INLINE void SET_TexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
4139 SET_by_offset(disp, _gloffset_TexParameterfv, fn);
4140 }
4141
4142 typedef void (GLAPIENTRYP _glptr_TexParameteri)(GLenum, GLenum, GLint);
4143 #define CALL_TexParameteri(disp, parameters) \
4144 (* GET_TexParameteri(disp)) parameters
4145 static INLINE _glptr_TexParameteri GET_TexParameteri(struct _glapi_table *disp) {
4146 return (_glptr_TexParameteri) (GET_by_offset(disp, _gloffset_TexParameteri));
4147 }
4148
4149 static INLINE void SET_TexParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
4150 SET_by_offset(disp, _gloffset_TexParameteri, fn);
4151 }
4152
4153 typedef void (GLAPIENTRYP _glptr_TexParameteriv)(GLenum, GLenum, const GLint *);
4154 #define CALL_TexParameteriv(disp, parameters) \
4155 (* GET_TexParameteriv(disp)) parameters
4156 static INLINE _glptr_TexParameteriv GET_TexParameteriv(struct _glapi_table *disp) {
4157 return (_glptr_TexParameteriv) (GET_by_offset(disp, _gloffset_TexParameteriv));
4158 }
4159
4160 static INLINE void SET_TexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
4161 SET_by_offset(disp, _gloffset_TexParameteriv, fn);
4162 }
4163
4164 typedef void (GLAPIENTRYP _glptr_TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
4165 #define CALL_TexImage1D(disp, parameters) \
4166 (* GET_TexImage1D(disp)) parameters
4167 static INLINE _glptr_TexImage1D GET_TexImage1D(struct _glapi_table *disp) {
4168 return (_glptr_TexImage1D) (GET_by_offset(disp, _gloffset_TexImage1D));
4169 }
4170
4171 static INLINE void SET_TexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
4172 SET_by_offset(disp, _gloffset_TexImage1D, fn);
4173 }
4174
4175 typedef void (GLAPIENTRYP _glptr_TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
4176 #define CALL_TexImage2D(disp, parameters) \
4177 (* GET_TexImage2D(disp)) parameters
4178 static INLINE _glptr_TexImage2D GET_TexImage2D(struct _glapi_table *disp) {
4179 return (_glptr_TexImage2D) (GET_by_offset(disp, _gloffset_TexImage2D));
4180 }
4181
4182 static INLINE void SET_TexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
4183 SET_by_offset(disp, _gloffset_TexImage2D, fn);
4184 }
4185
4186 typedef void (GLAPIENTRYP _glptr_TexEnvf)(GLenum, GLenum, GLfloat);
4187 #define CALL_TexEnvf(disp, parameters) \
4188 (* GET_TexEnvf(disp)) parameters
4189 static INLINE _glptr_TexEnvf GET_TexEnvf(struct _glapi_table *disp) {
4190 return (_glptr_TexEnvf) (GET_by_offset(disp, _gloffset_TexEnvf));
4191 }
4192
4193 static INLINE void SET_TexEnvf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
4194 SET_by_offset(disp, _gloffset_TexEnvf, fn);
4195 }
4196
4197 typedef void (GLAPIENTRYP _glptr_TexEnvfv)(GLenum, GLenum, const GLfloat *);
4198 #define CALL_TexEnvfv(disp, parameters) \
4199 (* GET_TexEnvfv(disp)) parameters
4200 static INLINE _glptr_TexEnvfv GET_TexEnvfv(struct _glapi_table *disp) {
4201 return (_glptr_TexEnvfv) (GET_by_offset(disp, _gloffset_TexEnvfv));
4202 }
4203
4204 static INLINE void SET_TexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
4205 SET_by_offset(disp, _gloffset_TexEnvfv, fn);
4206 }
4207
4208 typedef void (GLAPIENTRYP _glptr_TexEnvi)(GLenum, GLenum, GLint);
4209 #define CALL_TexEnvi(disp, parameters) \
4210 (* GET_TexEnvi(disp)) parameters
4211 static INLINE _glptr_TexEnvi GET_TexEnvi(struct _glapi_table *disp) {
4212 return (_glptr_TexEnvi) (GET_by_offset(disp, _gloffset_TexEnvi));
4213 }
4214
4215 static INLINE void SET_TexEnvi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
4216 SET_by_offset(disp, _gloffset_TexEnvi, fn);
4217 }
4218
4219 typedef void (GLAPIENTRYP _glptr_TexEnviv)(GLenum, GLenum, const GLint *);
4220 #define CALL_TexEnviv(disp, parameters) \
4221 (* GET_TexEnviv(disp)) parameters
4222 static INLINE _glptr_TexEnviv GET_TexEnviv(struct _glapi_table *disp) {
4223 return (_glptr_TexEnviv) (GET_by_offset(disp, _gloffset_TexEnviv));
4224 }
4225
4226 static INLINE void SET_TexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
4227 SET_by_offset(disp, _gloffset_TexEnviv, fn);
4228 }
4229
4230 typedef void (GLAPIENTRYP _glptr_TexGend)(GLenum, GLenum, GLdouble);
4231 #define CALL_TexGend(disp, parameters) \
4232 (* GET_TexGend(disp)) parameters
4233 static INLINE _glptr_TexGend GET_TexGend(struct _glapi_table *disp) {
4234 return (_glptr_TexGend) (GET_by_offset(disp, _gloffset_TexGend));
4235 }
4236
4237 static INLINE void SET_TexGend(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble)) {
4238 SET_by_offset(disp, _gloffset_TexGend, fn);
4239 }
4240
4241 typedef void (GLAPIENTRYP _glptr_TexGendv)(GLenum, GLenum, const GLdouble *);
4242 #define CALL_TexGendv(disp, parameters) \
4243 (* GET_TexGendv(disp)) parameters
4244 static INLINE _glptr_TexGendv GET_TexGendv(struct _glapi_table *disp) {
4245 return (_glptr_TexGendv) (GET_by_offset(disp, _gloffset_TexGendv));
4246 }
4247
4248 static INLINE void SET_TexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLdouble *)) {
4249 SET_by_offset(disp, _gloffset_TexGendv, fn);
4250 }
4251
4252 typedef void (GLAPIENTRYP _glptr_TexGenf)(GLenum, GLenum, GLfloat);
4253 #define CALL_TexGenf(disp, parameters) \
4254 (* GET_TexGenf(disp)) parameters
4255 static INLINE _glptr_TexGenf GET_TexGenf(struct _glapi_table *disp) {
4256 return (_glptr_TexGenf) (GET_by_offset(disp, _gloffset_TexGenf));
4257 }
4258
4259 static INLINE void SET_TexGenf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
4260 SET_by_offset(disp, _gloffset_TexGenf, fn);
4261 }
4262
4263 typedef void (GLAPIENTRYP _glptr_TexGenfv)(GLenum, GLenum, const GLfloat *);
4264 #define CALL_TexGenfv(disp, parameters) \
4265 (* GET_TexGenfv(disp)) parameters
4266 static INLINE _glptr_TexGenfv GET_TexGenfv(struct _glapi_table *disp) {
4267 return (_glptr_TexGenfv) (GET_by_offset(disp, _gloffset_TexGenfv));
4268 }
4269
4270 static INLINE void SET_TexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
4271 SET_by_offset(disp, _gloffset_TexGenfv, fn);
4272 }
4273
4274 typedef void (GLAPIENTRYP _glptr_TexGeni)(GLenum, GLenum, GLint);
4275 #define CALL_TexGeni(disp, parameters) \
4276 (* GET_TexGeni(disp)) parameters
4277 static INLINE _glptr_TexGeni GET_TexGeni(struct _glapi_table *disp) {
4278 return (_glptr_TexGeni) (GET_by_offset(disp, _gloffset_TexGeni));
4279 }
4280
4281 static INLINE void SET_TexGeni(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
4282 SET_by_offset(disp, _gloffset_TexGeni, fn);
4283 }
4284
4285 typedef void (GLAPIENTRYP _glptr_TexGeniv)(GLenum, GLenum, const GLint *);
4286 #define CALL_TexGeniv(disp, parameters) \
4287 (* GET_TexGeniv(disp)) parameters
4288 static INLINE _glptr_TexGeniv GET_TexGeniv(struct _glapi_table *disp) {
4289 return (_glptr_TexGeniv) (GET_by_offset(disp, _gloffset_TexGeniv));
4290 }
4291
4292 static INLINE void SET_TexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
4293 SET_by_offset(disp, _gloffset_TexGeniv, fn);
4294 }
4295
4296 typedef void (GLAPIENTRYP _glptr_FeedbackBuffer)(GLsizei, GLenum, GLfloat *);
4297 #define CALL_FeedbackBuffer(disp, parameters) \
4298 (* GET_FeedbackBuffer(disp)) parameters
4299 static INLINE _glptr_FeedbackBuffer GET_FeedbackBuffer(struct _glapi_table *disp) {
4300 return (_glptr_FeedbackBuffer) (GET_by_offset(disp, _gloffset_FeedbackBuffer));
4301 }
4302
4303 static INLINE void SET_FeedbackBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, GLfloat *)) {
4304 SET_by_offset(disp, _gloffset_FeedbackBuffer, fn);
4305 }
4306
4307 typedef void (GLAPIENTRYP _glptr_SelectBuffer)(GLsizei, GLuint *);
4308 #define CALL_SelectBuffer(disp, parameters) \
4309 (* GET_SelectBuffer(disp)) parameters
4310 static INLINE _glptr_SelectBuffer GET_SelectBuffer(struct _glapi_table *disp) {
4311 return (_glptr_SelectBuffer) (GET_by_offset(disp, _gloffset_SelectBuffer));
4312 }
4313
4314 static INLINE void SET_SelectBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
4315 SET_by_offset(disp, _gloffset_SelectBuffer, fn);
4316 }
4317
4318 typedef GLint (GLAPIENTRYP _glptr_RenderMode)(GLenum);
4319 #define CALL_RenderMode(disp, parameters) \
4320 (* GET_RenderMode(disp)) parameters
4321 static INLINE _glptr_RenderMode GET_RenderMode(struct _glapi_table *disp) {
4322 return (_glptr_RenderMode) (GET_by_offset(disp, _gloffset_RenderMode));
4323 }
4324
4325 static INLINE void SET_RenderMode(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLenum)) {
4326 SET_by_offset(disp, _gloffset_RenderMode, fn);
4327 }
4328
4329 typedef void (GLAPIENTRYP _glptr_InitNames)(void);
4330 #define CALL_InitNames(disp, parameters) \
4331 (* GET_InitNames(disp)) parameters
4332 static INLINE _glptr_InitNames GET_InitNames(struct _glapi_table *disp) {
4333 return (_glptr_InitNames) (GET_by_offset(disp, _gloffset_InitNames));
4334 }
4335
4336 static INLINE void SET_InitNames(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4337 SET_by_offset(disp, _gloffset_InitNames, fn);
4338 }
4339
4340 typedef void (GLAPIENTRYP _glptr_LoadName)(GLuint);
4341 #define CALL_LoadName(disp, parameters) \
4342 (* GET_LoadName(disp)) parameters
4343 static INLINE _glptr_LoadName GET_LoadName(struct _glapi_table *disp) {
4344 return (_glptr_LoadName) (GET_by_offset(disp, _gloffset_LoadName));
4345 }
4346
4347 static INLINE void SET_LoadName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4348 SET_by_offset(disp, _gloffset_LoadName, fn);
4349 }
4350
4351 typedef void (GLAPIENTRYP _glptr_PassThrough)(GLfloat);
4352 #define CALL_PassThrough(disp, parameters) \
4353 (* GET_PassThrough(disp)) parameters
4354 static INLINE _glptr_PassThrough GET_PassThrough(struct _glapi_table *disp) {
4355 return (_glptr_PassThrough) (GET_by_offset(disp, _gloffset_PassThrough));
4356 }
4357
4358 static INLINE void SET_PassThrough(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4359 SET_by_offset(disp, _gloffset_PassThrough, fn);
4360 }
4361
4362 typedef void (GLAPIENTRYP _glptr_PopName)(void);
4363 #define CALL_PopName(disp, parameters) \
4364 (* GET_PopName(disp)) parameters
4365 static INLINE _glptr_PopName GET_PopName(struct _glapi_table *disp) {
4366 return (_glptr_PopName) (GET_by_offset(disp, _gloffset_PopName));
4367 }
4368
4369 static INLINE void SET_PopName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4370 SET_by_offset(disp, _gloffset_PopName, fn);
4371 }
4372
4373 typedef void (GLAPIENTRYP _glptr_PushName)(GLuint);
4374 #define CALL_PushName(disp, parameters) \
4375 (* GET_PushName(disp)) parameters
4376 static INLINE _glptr_PushName GET_PushName(struct _glapi_table *disp) {
4377 return (_glptr_PushName) (GET_by_offset(disp, _gloffset_PushName));
4378 }
4379
4380 static INLINE void SET_PushName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4381 SET_by_offset(disp, _gloffset_PushName, fn);
4382 }
4383
4384 typedef void (GLAPIENTRYP _glptr_DrawBuffer)(GLenum);
4385 #define CALL_DrawBuffer(disp, parameters) \
4386 (* GET_DrawBuffer(disp)) parameters
4387 static INLINE _glptr_DrawBuffer GET_DrawBuffer(struct _glapi_table *disp) {
4388 return (_glptr_DrawBuffer) (GET_by_offset(disp, _gloffset_DrawBuffer));
4389 }
4390
4391 static INLINE void SET_DrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4392 SET_by_offset(disp, _gloffset_DrawBuffer, fn);
4393 }
4394
4395 typedef void (GLAPIENTRYP _glptr_Clear)(GLbitfield);
4396 #define CALL_Clear(disp, parameters) \
4397 (* GET_Clear(disp)) parameters
4398 static INLINE _glptr_Clear GET_Clear(struct _glapi_table *disp) {
4399 return (_glptr_Clear) (GET_by_offset(disp, _gloffset_Clear));
4400 }
4401
4402 static INLINE void SET_Clear(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
4403 SET_by_offset(disp, _gloffset_Clear, fn);
4404 }
4405
4406 typedef void (GLAPIENTRYP _glptr_ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat);
4407 #define CALL_ClearAccum(disp, parameters) \
4408 (* GET_ClearAccum(disp)) parameters
4409 static INLINE _glptr_ClearAccum GET_ClearAccum(struct _glapi_table *disp) {
4410 return (_glptr_ClearAccum) (GET_by_offset(disp, _gloffset_ClearAccum));
4411 }
4412
4413 static INLINE void SET_ClearAccum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
4414 SET_by_offset(disp, _gloffset_ClearAccum, fn);
4415 }
4416
4417 typedef void (GLAPIENTRYP _glptr_ClearIndex)(GLfloat);
4418 #define CALL_ClearIndex(disp, parameters) \
4419 (* GET_ClearIndex(disp)) parameters
4420 static INLINE _glptr_ClearIndex GET_ClearIndex(struct _glapi_table *disp) {
4421 return (_glptr_ClearIndex) (GET_by_offset(disp, _gloffset_ClearIndex));
4422 }
4423
4424 static INLINE void SET_ClearIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4425 SET_by_offset(disp, _gloffset_ClearIndex, fn);
4426 }
4427
4428 typedef void (GLAPIENTRYP _glptr_ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
4429 #define CALL_ClearColor(disp, parameters) \
4430 (* GET_ClearColor(disp)) parameters
4431 static INLINE _glptr_ClearColor GET_ClearColor(struct _glapi_table *disp) {
4432 return (_glptr_ClearColor) (GET_by_offset(disp, _gloffset_ClearColor));
4433 }
4434
4435 static INLINE void SET_ClearColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
4436 SET_by_offset(disp, _gloffset_ClearColor, fn);
4437 }
4438
4439 typedef void (GLAPIENTRYP _glptr_ClearStencil)(GLint);
4440 #define CALL_ClearStencil(disp, parameters) \
4441 (* GET_ClearStencil(disp)) parameters
4442 static INLINE _glptr_ClearStencil GET_ClearStencil(struct _glapi_table *disp) {
4443 return (_glptr_ClearStencil) (GET_by_offset(disp, _gloffset_ClearStencil));
4444 }
4445
4446 static INLINE void SET_ClearStencil(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
4447 SET_by_offset(disp, _gloffset_ClearStencil, fn);
4448 }
4449
4450 typedef void (GLAPIENTRYP _glptr_ClearDepth)(GLclampd);
4451 #define CALL_ClearDepth(disp, parameters) \
4452 (* GET_ClearDepth(disp)) parameters
4453 static INLINE _glptr_ClearDepth GET_ClearDepth(struct _glapi_table *disp) {
4454 return (_glptr_ClearDepth) (GET_by_offset(disp, _gloffset_ClearDepth));
4455 }
4456
4457 static INLINE void SET_ClearDepth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd)) {
4458 SET_by_offset(disp, _gloffset_ClearDepth, fn);
4459 }
4460
4461 typedef void (GLAPIENTRYP _glptr_StencilMask)(GLuint);
4462 #define CALL_StencilMask(disp, parameters) \
4463 (* GET_StencilMask(disp)) parameters
4464 static INLINE _glptr_StencilMask GET_StencilMask(struct _glapi_table *disp) {
4465 return (_glptr_StencilMask) (GET_by_offset(disp, _gloffset_StencilMask));
4466 }
4467
4468 static INLINE void SET_StencilMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4469 SET_by_offset(disp, _gloffset_StencilMask, fn);
4470 }
4471
4472 typedef void (GLAPIENTRYP _glptr_ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean);
4473 #define CALL_ColorMask(disp, parameters) \
4474 (* GET_ColorMask(disp)) parameters
4475 static INLINE _glptr_ColorMask GET_ColorMask(struct _glapi_table *disp) {
4476 return (_glptr_ColorMask) (GET_by_offset(disp, _gloffset_ColorMask));
4477 }
4478
4479 static INLINE void SET_ColorMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean, GLboolean, GLboolean, GLboolean)) {
4480 SET_by_offset(disp, _gloffset_ColorMask, fn);
4481 }
4482
4483 typedef void (GLAPIENTRYP _glptr_DepthMask)(GLboolean);
4484 #define CALL_DepthMask(disp, parameters) \
4485 (* GET_DepthMask(disp)) parameters
4486 static INLINE _glptr_DepthMask GET_DepthMask(struct _glapi_table *disp) {
4487 return (_glptr_DepthMask) (GET_by_offset(disp, _gloffset_DepthMask));
4488 }
4489
4490 static INLINE void SET_DepthMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
4491 SET_by_offset(disp, _gloffset_DepthMask, fn);
4492 }
4493
4494 typedef void (GLAPIENTRYP _glptr_IndexMask)(GLuint);
4495 #define CALL_IndexMask(disp, parameters) \
4496 (* GET_IndexMask(disp)) parameters
4497 static INLINE _glptr_IndexMask GET_IndexMask(struct _glapi_table *disp) {
4498 return (_glptr_IndexMask) (GET_by_offset(disp, _gloffset_IndexMask));
4499 }
4500
4501 static INLINE void SET_IndexMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
4502 SET_by_offset(disp, _gloffset_IndexMask, fn);
4503 }
4504
4505 typedef void (GLAPIENTRYP _glptr_Accum)(GLenum, GLfloat);
4506 #define CALL_Accum(disp, parameters) \
4507 (* GET_Accum(disp)) parameters
4508 static INLINE _glptr_Accum GET_Accum(struct _glapi_table *disp) {
4509 return (_glptr_Accum) (GET_by_offset(disp, _gloffset_Accum));
4510 }
4511
4512 static INLINE void SET_Accum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
4513 SET_by_offset(disp, _gloffset_Accum, fn);
4514 }
4515
4516 typedef void (GLAPIENTRYP _glptr_Disable)(GLenum);
4517 #define CALL_Disable(disp, parameters) \
4518 (* GET_Disable(disp)) parameters
4519 static INLINE _glptr_Disable GET_Disable(struct _glapi_table *disp) {
4520 return (_glptr_Disable) (GET_by_offset(disp, _gloffset_Disable));
4521 }
4522
4523 static INLINE void SET_Disable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4524 SET_by_offset(disp, _gloffset_Disable, fn);
4525 }
4526
4527 typedef void (GLAPIENTRYP _glptr_Enable)(GLenum);
4528 #define CALL_Enable(disp, parameters) \
4529 (* GET_Enable(disp)) parameters
4530 static INLINE _glptr_Enable GET_Enable(struct _glapi_table *disp) {
4531 return (_glptr_Enable) (GET_by_offset(disp, _gloffset_Enable));
4532 }
4533
4534 static INLINE void SET_Enable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4535 SET_by_offset(disp, _gloffset_Enable, fn);
4536 }
4537
4538 typedef void (GLAPIENTRYP _glptr_Finish)(void);
4539 #define CALL_Finish(disp, parameters) \
4540 (* GET_Finish(disp)) parameters
4541 static INLINE _glptr_Finish GET_Finish(struct _glapi_table *disp) {
4542 return (_glptr_Finish) (GET_by_offset(disp, _gloffset_Finish));
4543 }
4544
4545 static INLINE void SET_Finish(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4546 SET_by_offset(disp, _gloffset_Finish, fn);
4547 }
4548
4549 typedef void (GLAPIENTRYP _glptr_Flush)(void);
4550 #define CALL_Flush(disp, parameters) \
4551 (* GET_Flush(disp)) parameters
4552 static INLINE _glptr_Flush GET_Flush(struct _glapi_table *disp) {
4553 return (_glptr_Flush) (GET_by_offset(disp, _gloffset_Flush));
4554 }
4555
4556 static INLINE void SET_Flush(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4557 SET_by_offset(disp, _gloffset_Flush, fn);
4558 }
4559
4560 typedef void (GLAPIENTRYP _glptr_PopAttrib)(void);
4561 #define CALL_PopAttrib(disp, parameters) \
4562 (* GET_PopAttrib(disp)) parameters
4563 static INLINE _glptr_PopAttrib GET_PopAttrib(struct _glapi_table *disp) {
4564 return (_glptr_PopAttrib) (GET_by_offset(disp, _gloffset_PopAttrib));
4565 }
4566
4567 static INLINE void SET_PopAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4568 SET_by_offset(disp, _gloffset_PopAttrib, fn);
4569 }
4570
4571 typedef void (GLAPIENTRYP _glptr_PushAttrib)(GLbitfield);
4572 #define CALL_PushAttrib(disp, parameters) \
4573 (* GET_PushAttrib(disp)) parameters
4574 static INLINE _glptr_PushAttrib GET_PushAttrib(struct _glapi_table *disp) {
4575 return (_glptr_PushAttrib) (GET_by_offset(disp, _gloffset_PushAttrib));
4576 }
4577
4578 static INLINE void SET_PushAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
4579 SET_by_offset(disp, _gloffset_PushAttrib, fn);
4580 }
4581
4582 typedef void (GLAPIENTRYP _glptr_Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
4583 #define CALL_Map1d(disp, parameters) \
4584 (* GET_Map1d(disp)) parameters
4585 static INLINE _glptr_Map1d GET_Map1d(struct _glapi_table *disp) {
4586 return (_glptr_Map1d) (GET_by_offset(disp, _gloffset_Map1d));
4587 }
4588
4589 static INLINE void SET_Map1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
4590 SET_by_offset(disp, _gloffset_Map1d, fn);
4591 }
4592
4593 typedef void (GLAPIENTRYP _glptr_Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
4594 #define CALL_Map1f(disp, parameters) \
4595 (* GET_Map1f(disp)) parameters
4596 static INLINE _glptr_Map1f GET_Map1f(struct _glapi_table *disp) {
4597 return (_glptr_Map1f) (GET_by_offset(disp, _gloffset_Map1f));
4598 }
4599
4600 static INLINE void SET_Map1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
4601 SET_by_offset(disp, _gloffset_Map1f, fn);
4602 }
4603
4604 typedef void (GLAPIENTRYP _glptr_Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
4605 #define CALL_Map2d(disp, parameters) \
4606 (* GET_Map2d(disp)) parameters
4607 static INLINE _glptr_Map2d GET_Map2d(struct _glapi_table *disp) {
4608 return (_glptr_Map2d) (GET_by_offset(disp, _gloffset_Map2d));
4609 }
4610
4611 static INLINE void SET_Map2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
4612 SET_by_offset(disp, _gloffset_Map2d, fn);
4613 }
4614
4615 typedef void (GLAPIENTRYP _glptr_Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
4616 #define CALL_Map2f(disp, parameters) \
4617 (* GET_Map2f(disp)) parameters
4618 static INLINE _glptr_Map2f GET_Map2f(struct _glapi_table *disp) {
4619 return (_glptr_Map2f) (GET_by_offset(disp, _gloffset_Map2f));
4620 }
4621
4622 static INLINE void SET_Map2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
4623 SET_by_offset(disp, _gloffset_Map2f, fn);
4624 }
4625
4626 typedef void (GLAPIENTRYP _glptr_MapGrid1d)(GLint, GLdouble, GLdouble);
4627 #define CALL_MapGrid1d(disp, parameters) \
4628 (* GET_MapGrid1d(disp)) parameters
4629 static INLINE _glptr_MapGrid1d GET_MapGrid1d(struct _glapi_table *disp) {
4630 return (_glptr_MapGrid1d) (GET_by_offset(disp, _gloffset_MapGrid1d));
4631 }
4632
4633 static INLINE void SET_MapGrid1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) {
4634 SET_by_offset(disp, _gloffset_MapGrid1d, fn);
4635 }
4636
4637 typedef void (GLAPIENTRYP _glptr_MapGrid1f)(GLint, GLfloat, GLfloat);
4638 #define CALL_MapGrid1f(disp, parameters) \
4639 (* GET_MapGrid1f(disp)) parameters
4640 static INLINE _glptr_MapGrid1f GET_MapGrid1f(struct _glapi_table *disp) {
4641 return (_glptr_MapGrid1f) (GET_by_offset(disp, _gloffset_MapGrid1f));
4642 }
4643
4644 static INLINE void SET_MapGrid1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
4645 SET_by_offset(disp, _gloffset_MapGrid1f, fn);
4646 }
4647
4648 typedef void (GLAPIENTRYP _glptr_MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
4649 #define CALL_MapGrid2d(disp, parameters) \
4650 (* GET_MapGrid2d(disp)) parameters
4651 static INLINE _glptr_MapGrid2d GET_MapGrid2d(struct _glapi_table *disp) {
4652 return (_glptr_MapGrid2d) (GET_by_offset(disp, _gloffset_MapGrid2d));
4653 }
4654
4655 static INLINE void SET_MapGrid2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble)) {
4656 SET_by_offset(disp, _gloffset_MapGrid2d, fn);
4657 }
4658
4659 typedef void (GLAPIENTRYP _glptr_MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
4660 #define CALL_MapGrid2f(disp, parameters) \
4661 (* GET_MapGrid2f(disp)) parameters
4662 static INLINE _glptr_MapGrid2f GET_MapGrid2f(struct _glapi_table *disp) {
4663 return (_glptr_MapGrid2f) (GET_by_offset(disp, _gloffset_MapGrid2f));
4664 }
4665
4666 static INLINE void SET_MapGrid2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat)) {
4667 SET_by_offset(disp, _gloffset_MapGrid2f, fn);
4668 }
4669
4670 typedef void (GLAPIENTRYP _glptr_EvalCoord1d)(GLdouble);
4671 #define CALL_EvalCoord1d(disp, parameters) \
4672 (* GET_EvalCoord1d(disp)) parameters
4673 static INLINE _glptr_EvalCoord1d GET_EvalCoord1d(struct _glapi_table *disp) {
4674 return (_glptr_EvalCoord1d) (GET_by_offset(disp, _gloffset_EvalCoord1d));
4675 }
4676
4677 static INLINE void SET_EvalCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
4678 SET_by_offset(disp, _gloffset_EvalCoord1d, fn);
4679 }
4680
4681 typedef void (GLAPIENTRYP _glptr_EvalCoord1dv)(const GLdouble *);
4682 #define CALL_EvalCoord1dv(disp, parameters) \
4683 (* GET_EvalCoord1dv(disp)) parameters
4684 static INLINE _glptr_EvalCoord1dv GET_EvalCoord1dv(struct _glapi_table *disp) {
4685 return (_glptr_EvalCoord1dv) (GET_by_offset(disp, _gloffset_EvalCoord1dv));
4686 }
4687
4688 static INLINE void SET_EvalCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
4689 SET_by_offset(disp, _gloffset_EvalCoord1dv, fn);
4690 }
4691
4692 typedef void (GLAPIENTRYP _glptr_EvalCoord1f)(GLfloat);
4693 #define CALL_EvalCoord1f(disp, parameters) \
4694 (* GET_EvalCoord1f(disp)) parameters
4695 static INLINE _glptr_EvalCoord1f GET_EvalCoord1f(struct _glapi_table *disp) {
4696 return (_glptr_EvalCoord1f) (GET_by_offset(disp, _gloffset_EvalCoord1f));
4697 }
4698
4699 static INLINE void SET_EvalCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
4700 SET_by_offset(disp, _gloffset_EvalCoord1f, fn);
4701 }
4702
4703 typedef void (GLAPIENTRYP _glptr_EvalCoord1fv)(const GLfloat *);
4704 #define CALL_EvalCoord1fv(disp, parameters) \
4705 (* GET_EvalCoord1fv(disp)) parameters
4706 static INLINE _glptr_EvalCoord1fv GET_EvalCoord1fv(struct _glapi_table *disp) {
4707 return (_glptr_EvalCoord1fv) (GET_by_offset(disp, _gloffset_EvalCoord1fv));
4708 }
4709
4710 static INLINE void SET_EvalCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
4711 SET_by_offset(disp, _gloffset_EvalCoord1fv, fn);
4712 }
4713
4714 typedef void (GLAPIENTRYP _glptr_EvalCoord2d)(GLdouble, GLdouble);
4715 #define CALL_EvalCoord2d(disp, parameters) \
4716 (* GET_EvalCoord2d(disp)) parameters
4717 static INLINE _glptr_EvalCoord2d GET_EvalCoord2d(struct _glapi_table *disp) {
4718 return (_glptr_EvalCoord2d) (GET_by_offset(disp, _gloffset_EvalCoord2d));
4719 }
4720
4721 static INLINE void SET_EvalCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
4722 SET_by_offset(disp, _gloffset_EvalCoord2d, fn);
4723 }
4724
4725 typedef void (GLAPIENTRYP _glptr_EvalCoord2dv)(const GLdouble *);
4726 #define CALL_EvalCoord2dv(disp, parameters) \
4727 (* GET_EvalCoord2dv(disp)) parameters
4728 static INLINE _glptr_EvalCoord2dv GET_EvalCoord2dv(struct _glapi_table *disp) {
4729 return (_glptr_EvalCoord2dv) (GET_by_offset(disp, _gloffset_EvalCoord2dv));
4730 }
4731
4732 static INLINE void SET_EvalCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
4733 SET_by_offset(disp, _gloffset_EvalCoord2dv, fn);
4734 }
4735
4736 typedef void (GLAPIENTRYP _glptr_EvalCoord2f)(GLfloat, GLfloat);
4737 #define CALL_EvalCoord2f(disp, parameters) \
4738 (* GET_EvalCoord2f(disp)) parameters
4739 static INLINE _glptr_EvalCoord2f GET_EvalCoord2f(struct _glapi_table *disp) {
4740 return (_glptr_EvalCoord2f) (GET_by_offset(disp, _gloffset_EvalCoord2f));
4741 }
4742
4743 static INLINE void SET_EvalCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
4744 SET_by_offset(disp, _gloffset_EvalCoord2f, fn);
4745 }
4746
4747 typedef void (GLAPIENTRYP _glptr_EvalCoord2fv)(const GLfloat *);
4748 #define CALL_EvalCoord2fv(disp, parameters) \
4749 (* GET_EvalCoord2fv(disp)) parameters
4750 static INLINE _glptr_EvalCoord2fv GET_EvalCoord2fv(struct _glapi_table *disp) {
4751 return (_glptr_EvalCoord2fv) (GET_by_offset(disp, _gloffset_EvalCoord2fv));
4752 }
4753
4754 static INLINE void SET_EvalCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
4755 SET_by_offset(disp, _gloffset_EvalCoord2fv, fn);
4756 }
4757
4758 typedef void (GLAPIENTRYP _glptr_EvalMesh1)(GLenum, GLint, GLint);
4759 #define CALL_EvalMesh1(disp, parameters) \
4760 (* GET_EvalMesh1(disp)) parameters
4761 static INLINE _glptr_EvalMesh1 GET_EvalMesh1(struct _glapi_table *disp) {
4762 return (_glptr_EvalMesh1) (GET_by_offset(disp, _gloffset_EvalMesh1));
4763 }
4764
4765 static INLINE void SET_EvalMesh1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
4766 SET_by_offset(disp, _gloffset_EvalMesh1, fn);
4767 }
4768
4769 typedef void (GLAPIENTRYP _glptr_EvalPoint1)(GLint);
4770 #define CALL_EvalPoint1(disp, parameters) \
4771 (* GET_EvalPoint1(disp)) parameters
4772 static INLINE _glptr_EvalPoint1 GET_EvalPoint1(struct _glapi_table *disp) {
4773 return (_glptr_EvalPoint1) (GET_by_offset(disp, _gloffset_EvalPoint1));
4774 }
4775
4776 static INLINE void SET_EvalPoint1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
4777 SET_by_offset(disp, _gloffset_EvalPoint1, fn);
4778 }
4779
4780 typedef void (GLAPIENTRYP _glptr_EvalMesh2)(GLenum, GLint, GLint, GLint, GLint);
4781 #define CALL_EvalMesh2(disp, parameters) \
4782 (* GET_EvalMesh2(disp)) parameters
4783 static INLINE _glptr_EvalMesh2 GET_EvalMesh2(struct _glapi_table *disp) {
4784 return (_glptr_EvalMesh2) (GET_by_offset(disp, _gloffset_EvalMesh2));
4785 }
4786
4787 static INLINE void SET_EvalMesh2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
4788 SET_by_offset(disp, _gloffset_EvalMesh2, fn);
4789 }
4790
4791 typedef void (GLAPIENTRYP _glptr_EvalPoint2)(GLint, GLint);
4792 #define CALL_EvalPoint2(disp, parameters) \
4793 (* GET_EvalPoint2(disp)) parameters
4794 static INLINE _glptr_EvalPoint2 GET_EvalPoint2(struct _glapi_table *disp) {
4795 return (_glptr_EvalPoint2) (GET_by_offset(disp, _gloffset_EvalPoint2));
4796 }
4797
4798 static INLINE void SET_EvalPoint2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
4799 SET_by_offset(disp, _gloffset_EvalPoint2, fn);
4800 }
4801
4802 typedef void (GLAPIENTRYP _glptr_AlphaFunc)(GLenum, GLclampf);
4803 #define CALL_AlphaFunc(disp, parameters) \
4804 (* GET_AlphaFunc(disp)) parameters
4805 static INLINE _glptr_AlphaFunc GET_AlphaFunc(struct _glapi_table *disp) {
4806 return (_glptr_AlphaFunc) (GET_by_offset(disp, _gloffset_AlphaFunc));
4807 }
4808
4809 static INLINE void SET_AlphaFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampf)) {
4810 SET_by_offset(disp, _gloffset_AlphaFunc, fn);
4811 }
4812
4813 typedef void (GLAPIENTRYP _glptr_BlendFunc)(GLenum, GLenum);
4814 #define CALL_BlendFunc(disp, parameters) \
4815 (* GET_BlendFunc(disp)) parameters
4816 static INLINE _glptr_BlendFunc GET_BlendFunc(struct _glapi_table *disp) {
4817 return (_glptr_BlendFunc) (GET_by_offset(disp, _gloffset_BlendFunc));
4818 }
4819
4820 static INLINE void SET_BlendFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
4821 SET_by_offset(disp, _gloffset_BlendFunc, fn);
4822 }
4823
4824 typedef void (GLAPIENTRYP _glptr_LogicOp)(GLenum);
4825 #define CALL_LogicOp(disp, parameters) \
4826 (* GET_LogicOp(disp)) parameters
4827 static INLINE _glptr_LogicOp GET_LogicOp(struct _glapi_table *disp) {
4828 return (_glptr_LogicOp) (GET_by_offset(disp, _gloffset_LogicOp));
4829 }
4830
4831 static INLINE void SET_LogicOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4832 SET_by_offset(disp, _gloffset_LogicOp, fn);
4833 }
4834
4835 typedef void (GLAPIENTRYP _glptr_StencilFunc)(GLenum, GLint, GLuint);
4836 #define CALL_StencilFunc(disp, parameters) \
4837 (* GET_StencilFunc(disp)) parameters
4838 static INLINE _glptr_StencilFunc GET_StencilFunc(struct _glapi_table *disp) {
4839 return (_glptr_StencilFunc) (GET_by_offset(disp, _gloffset_StencilFunc));
4840 }
4841
4842 static INLINE void SET_StencilFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint)) {
4843 SET_by_offset(disp, _gloffset_StencilFunc, fn);
4844 }
4845
4846 typedef void (GLAPIENTRYP _glptr_StencilOp)(GLenum, GLenum, GLenum);
4847 #define CALL_StencilOp(disp, parameters) \
4848 (* GET_StencilOp(disp)) parameters
4849 static INLINE _glptr_StencilOp GET_StencilOp(struct _glapi_table *disp) {
4850 return (_glptr_StencilOp) (GET_by_offset(disp, _gloffset_StencilOp));
4851 }
4852
4853 static INLINE void SET_StencilOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum)) {
4854 SET_by_offset(disp, _gloffset_StencilOp, fn);
4855 }
4856
4857 typedef void (GLAPIENTRYP _glptr_DepthFunc)(GLenum);
4858 #define CALL_DepthFunc(disp, parameters) \
4859 (* GET_DepthFunc(disp)) parameters
4860 static INLINE _glptr_DepthFunc GET_DepthFunc(struct _glapi_table *disp) {
4861 return (_glptr_DepthFunc) (GET_by_offset(disp, _gloffset_DepthFunc));
4862 }
4863
4864 static INLINE void SET_DepthFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4865 SET_by_offset(disp, _gloffset_DepthFunc, fn);
4866 }
4867
4868 typedef void (GLAPIENTRYP _glptr_PixelZoom)(GLfloat, GLfloat);
4869 #define CALL_PixelZoom(disp, parameters) \
4870 (* GET_PixelZoom(disp)) parameters
4871 static INLINE _glptr_PixelZoom GET_PixelZoom(struct _glapi_table *disp) {
4872 return (_glptr_PixelZoom) (GET_by_offset(disp, _gloffset_PixelZoom));
4873 }
4874
4875 static INLINE void SET_PixelZoom(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
4876 SET_by_offset(disp, _gloffset_PixelZoom, fn);
4877 }
4878
4879 typedef void (GLAPIENTRYP _glptr_PixelTransferf)(GLenum, GLfloat);
4880 #define CALL_PixelTransferf(disp, parameters) \
4881 (* GET_PixelTransferf(disp)) parameters
4882 static INLINE _glptr_PixelTransferf GET_PixelTransferf(struct _glapi_table *disp) {
4883 return (_glptr_PixelTransferf) (GET_by_offset(disp, _gloffset_PixelTransferf));
4884 }
4885
4886 static INLINE void SET_PixelTransferf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
4887 SET_by_offset(disp, _gloffset_PixelTransferf, fn);
4888 }
4889
4890 typedef void (GLAPIENTRYP _glptr_PixelTransferi)(GLenum, GLint);
4891 #define CALL_PixelTransferi(disp, parameters) \
4892 (* GET_PixelTransferi(disp)) parameters
4893 static INLINE _glptr_PixelTransferi GET_PixelTransferi(struct _glapi_table *disp) {
4894 return (_glptr_PixelTransferi) (GET_by_offset(disp, _gloffset_PixelTransferi));
4895 }
4896
4897 static INLINE void SET_PixelTransferi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
4898 SET_by_offset(disp, _gloffset_PixelTransferi, fn);
4899 }
4900
4901 typedef void (GLAPIENTRYP _glptr_PixelStoref)(GLenum, GLfloat);
4902 #define CALL_PixelStoref(disp, parameters) \
4903 (* GET_PixelStoref(disp)) parameters
4904 static INLINE _glptr_PixelStoref GET_PixelStoref(struct _glapi_table *disp) {
4905 return (_glptr_PixelStoref) (GET_by_offset(disp, _gloffset_PixelStoref));
4906 }
4907
4908 static INLINE void SET_PixelStoref(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
4909 SET_by_offset(disp, _gloffset_PixelStoref, fn);
4910 }
4911
4912 typedef void (GLAPIENTRYP _glptr_PixelStorei)(GLenum, GLint);
4913 #define CALL_PixelStorei(disp, parameters) \
4914 (* GET_PixelStorei(disp)) parameters
4915 static INLINE _glptr_PixelStorei GET_PixelStorei(struct _glapi_table *disp) {
4916 return (_glptr_PixelStorei) (GET_by_offset(disp, _gloffset_PixelStorei));
4917 }
4918
4919 static INLINE void SET_PixelStorei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
4920 SET_by_offset(disp, _gloffset_PixelStorei, fn);
4921 }
4922
4923 typedef void (GLAPIENTRYP _glptr_PixelMapfv)(GLenum, GLsizei, const GLfloat *);
4924 #define CALL_PixelMapfv(disp, parameters) \
4925 (* GET_PixelMapfv(disp)) parameters
4926 static INLINE _glptr_PixelMapfv GET_PixelMapfv(struct _glapi_table *disp) {
4927 return (_glptr_PixelMapfv) (GET_by_offset(disp, _gloffset_PixelMapfv));
4928 }
4929
4930 static INLINE void SET_PixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLfloat *)) {
4931 SET_by_offset(disp, _gloffset_PixelMapfv, fn);
4932 }
4933
4934 typedef void (GLAPIENTRYP _glptr_PixelMapuiv)(GLenum, GLsizei, const GLuint *);
4935 #define CALL_PixelMapuiv(disp, parameters) \
4936 (* GET_PixelMapuiv(disp)) parameters
4937 static INLINE _glptr_PixelMapuiv GET_PixelMapuiv(struct _glapi_table *disp) {
4938 return (_glptr_PixelMapuiv) (GET_by_offset(disp, _gloffset_PixelMapuiv));
4939 }
4940
4941 static INLINE void SET_PixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) {
4942 SET_by_offset(disp, _gloffset_PixelMapuiv, fn);
4943 }
4944
4945 typedef void (GLAPIENTRYP _glptr_PixelMapusv)(GLenum, GLsizei, const GLushort *);
4946 #define CALL_PixelMapusv(disp, parameters) \
4947 (* GET_PixelMapusv(disp)) parameters
4948 static INLINE _glptr_PixelMapusv GET_PixelMapusv(struct _glapi_table *disp) {
4949 return (_glptr_PixelMapusv) (GET_by_offset(disp, _gloffset_PixelMapusv));
4950 }
4951
4952 static INLINE void SET_PixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLushort *)) {
4953 SET_by_offset(disp, _gloffset_PixelMapusv, fn);
4954 }
4955
4956 typedef void (GLAPIENTRYP _glptr_ReadBuffer)(GLenum);
4957 #define CALL_ReadBuffer(disp, parameters) \
4958 (* GET_ReadBuffer(disp)) parameters
4959 static INLINE _glptr_ReadBuffer GET_ReadBuffer(struct _glapi_table *disp) {
4960 return (_glptr_ReadBuffer) (GET_by_offset(disp, _gloffset_ReadBuffer));
4961 }
4962
4963 static INLINE void SET_ReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4964 SET_by_offset(disp, _gloffset_ReadBuffer, fn);
4965 }
4966
4967 typedef void (GLAPIENTRYP _glptr_CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum);
4968 #define CALL_CopyPixels(disp, parameters) \
4969 (* GET_CopyPixels(disp)) parameters
4970 static INLINE _glptr_CopyPixels GET_CopyPixels(struct _glapi_table *disp) {
4971 return (_glptr_CopyPixels) (GET_by_offset(disp, _gloffset_CopyPixels));
4972 }
4973
4974 static INLINE void SET_CopyPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum)) {
4975 SET_by_offset(disp, _gloffset_CopyPixels, fn);
4976 }
4977
4978 typedef void (GLAPIENTRYP _glptr_ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
4979 #define CALL_ReadPixels(disp, parameters) \
4980 (* GET_ReadPixels(disp)) parameters
4981 static INLINE _glptr_ReadPixels GET_ReadPixels(struct _glapi_table *disp) {
4982 return (_glptr_ReadPixels) (GET_by_offset(disp, _gloffset_ReadPixels));
4983 }
4984
4985 static INLINE void SET_ReadPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *)) {
4986 SET_by_offset(disp, _gloffset_ReadPixels, fn);
4987 }
4988
4989 typedef void (GLAPIENTRYP _glptr_DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
4990 #define CALL_DrawPixels(disp, parameters) \
4991 (* GET_DrawPixels(disp)) parameters
4992 static INLINE _glptr_DrawPixels GET_DrawPixels(struct _glapi_table *disp) {
4993 return (_glptr_DrawPixels) (GET_by_offset(disp, _gloffset_DrawPixels));
4994 }
4995
4996 static INLINE void SET_DrawPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
4997 SET_by_offset(disp, _gloffset_DrawPixels, fn);
4998 }
4999
5000 typedef void (GLAPIENTRYP _glptr_GetBooleanv)(GLenum, GLboolean *);
5001 #define CALL_GetBooleanv(disp, parameters) \
5002 (* GET_GetBooleanv(disp)) parameters
5003 static INLINE _glptr_GetBooleanv GET_GetBooleanv(struct _glapi_table *disp) {
5004 return (_glptr_GetBooleanv) (GET_by_offset(disp, _gloffset_GetBooleanv));
5005 }
5006
5007 static INLINE void SET_GetBooleanv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean *)) {
5008 SET_by_offset(disp, _gloffset_GetBooleanv, fn);
5009 }
5010
5011 typedef void (GLAPIENTRYP _glptr_GetClipPlane)(GLenum, GLdouble *);
5012 #define CALL_GetClipPlane(disp, parameters) \
5013 (* GET_GetClipPlane(disp)) parameters
5014 static INLINE _glptr_GetClipPlane GET_GetClipPlane(struct _glapi_table *disp) {
5015 return (_glptr_GetClipPlane) (GET_by_offset(disp, _gloffset_GetClipPlane));
5016 }
5017
5018 static INLINE void SET_GetClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
5019 SET_by_offset(disp, _gloffset_GetClipPlane, fn);
5020 }
5021
5022 typedef void (GLAPIENTRYP _glptr_GetDoublev)(GLenum, GLdouble *);
5023 #define CALL_GetDoublev(disp, parameters) \
5024 (* GET_GetDoublev(disp)) parameters
5025 static INLINE _glptr_GetDoublev GET_GetDoublev(struct _glapi_table *disp) {
5026 return (_glptr_GetDoublev) (GET_by_offset(disp, _gloffset_GetDoublev));
5027 }
5028
5029 static INLINE void SET_GetDoublev(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
5030 SET_by_offset(disp, _gloffset_GetDoublev, fn);
5031 }
5032
5033 typedef GLenum (GLAPIENTRYP _glptr_GetError)(void);
5034 #define CALL_GetError(disp, parameters) \
5035 (* GET_GetError(disp)) parameters
5036 static INLINE _glptr_GetError GET_GetError(struct _glapi_table *disp) {
5037 return (_glptr_GetError) (GET_by_offset(disp, _gloffset_GetError));
5038 }
5039
5040 static INLINE void SET_GetError(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
5041 SET_by_offset(disp, _gloffset_GetError, fn);
5042 }
5043
5044 typedef void (GLAPIENTRYP _glptr_GetFloatv)(GLenum, GLfloat *);
5045 #define CALL_GetFloatv(disp, parameters) \
5046 (* GET_GetFloatv(disp)) parameters
5047 static INLINE _glptr_GetFloatv GET_GetFloatv(struct _glapi_table *disp) {
5048 return (_glptr_GetFloatv) (GET_by_offset(disp, _gloffset_GetFloatv));
5049 }
5050
5051 static INLINE void SET_GetFloatv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
5052 SET_by_offset(disp, _gloffset_GetFloatv, fn);
5053 }
5054
5055 typedef void (GLAPIENTRYP _glptr_GetIntegerv)(GLenum, GLint *);
5056 #define CALL_GetIntegerv(disp, parameters) \
5057 (* GET_GetIntegerv(disp)) parameters
5058 static INLINE _glptr_GetIntegerv GET_GetIntegerv(struct _glapi_table *disp) {
5059 return (_glptr_GetIntegerv) (GET_by_offset(disp, _gloffset_GetIntegerv));
5060 }
5061
5062 static INLINE void SET_GetIntegerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
5063 SET_by_offset(disp, _gloffset_GetIntegerv, fn);
5064 }
5065
5066 typedef void (GLAPIENTRYP _glptr_GetLightfv)(GLenum, GLenum, GLfloat *);
5067 #define CALL_GetLightfv(disp, parameters) \
5068 (* GET_GetLightfv(disp)) parameters
5069 static INLINE _glptr_GetLightfv GET_GetLightfv(struct _glapi_table *disp) {
5070 return (_glptr_GetLightfv) (GET_by_offset(disp, _gloffset_GetLightfv));
5071 }
5072
5073 static INLINE void SET_GetLightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5074 SET_by_offset(disp, _gloffset_GetLightfv, fn);
5075 }
5076
5077 typedef void (GLAPIENTRYP _glptr_GetLightiv)(GLenum, GLenum, GLint *);
5078 #define CALL_GetLightiv(disp, parameters) \
5079 (* GET_GetLightiv(disp)) parameters
5080 static INLINE _glptr_GetLightiv GET_GetLightiv(struct _glapi_table *disp) {
5081 return (_glptr_GetLightiv) (GET_by_offset(disp, _gloffset_GetLightiv));
5082 }
5083
5084 static INLINE void SET_GetLightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5085 SET_by_offset(disp, _gloffset_GetLightiv, fn);
5086 }
5087
5088 typedef void (GLAPIENTRYP _glptr_GetMapdv)(GLenum, GLenum, GLdouble *);
5089 #define CALL_GetMapdv(disp, parameters) \
5090 (* GET_GetMapdv(disp)) parameters
5091 static INLINE _glptr_GetMapdv GET_GetMapdv(struct _glapi_table *disp) {
5092 return (_glptr_GetMapdv) (GET_by_offset(disp, _gloffset_GetMapdv));
5093 }
5094
5095 static INLINE void SET_GetMapdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
5096 SET_by_offset(disp, _gloffset_GetMapdv, fn);
5097 }
5098
5099 typedef void (GLAPIENTRYP _glptr_GetMapfv)(GLenum, GLenum, GLfloat *);
5100 #define CALL_GetMapfv(disp, parameters) \
5101 (* GET_GetMapfv(disp)) parameters
5102 static INLINE _glptr_GetMapfv GET_GetMapfv(struct _glapi_table *disp) {
5103 return (_glptr_GetMapfv) (GET_by_offset(disp, _gloffset_GetMapfv));
5104 }
5105
5106 static INLINE void SET_GetMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5107 SET_by_offset(disp, _gloffset_GetMapfv, fn);
5108 }
5109
5110 typedef void (GLAPIENTRYP _glptr_GetMapiv)(GLenum, GLenum, GLint *);
5111 #define CALL_GetMapiv(disp, parameters) \
5112 (* GET_GetMapiv(disp)) parameters
5113 static INLINE _glptr_GetMapiv GET_GetMapiv(struct _glapi_table *disp) {
5114 return (_glptr_GetMapiv) (GET_by_offset(disp, _gloffset_GetMapiv));
5115 }
5116
5117 static INLINE void SET_GetMapiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5118 SET_by_offset(disp, _gloffset_GetMapiv, fn);
5119 }
5120
5121 typedef void (GLAPIENTRYP _glptr_GetMaterialfv)(GLenum, GLenum, GLfloat *);
5122 #define CALL_GetMaterialfv(disp, parameters) \
5123 (* GET_GetMaterialfv(disp)) parameters
5124 static INLINE _glptr_GetMaterialfv GET_GetMaterialfv(struct _glapi_table *disp) {
5125 return (_glptr_GetMaterialfv) (GET_by_offset(disp, _gloffset_GetMaterialfv));
5126 }
5127
5128 static INLINE void SET_GetMaterialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5129 SET_by_offset(disp, _gloffset_GetMaterialfv, fn);
5130 }
5131
5132 typedef void (GLAPIENTRYP _glptr_GetMaterialiv)(GLenum, GLenum, GLint *);
5133 #define CALL_GetMaterialiv(disp, parameters) \
5134 (* GET_GetMaterialiv(disp)) parameters
5135 static INLINE _glptr_GetMaterialiv GET_GetMaterialiv(struct _glapi_table *disp) {
5136 return (_glptr_GetMaterialiv) (GET_by_offset(disp, _gloffset_GetMaterialiv));
5137 }
5138
5139 static INLINE void SET_GetMaterialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5140 SET_by_offset(disp, _gloffset_GetMaterialiv, fn);
5141 }
5142
5143 typedef void (GLAPIENTRYP _glptr_GetPixelMapfv)(GLenum, GLfloat *);
5144 #define CALL_GetPixelMapfv(disp, parameters) \
5145 (* GET_GetPixelMapfv(disp)) parameters
5146 static INLINE _glptr_GetPixelMapfv GET_GetPixelMapfv(struct _glapi_table *disp) {
5147 return (_glptr_GetPixelMapfv) (GET_by_offset(disp, _gloffset_GetPixelMapfv));
5148 }
5149
5150 static INLINE void SET_GetPixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
5151 SET_by_offset(disp, _gloffset_GetPixelMapfv, fn);
5152 }
5153
5154 typedef void (GLAPIENTRYP _glptr_GetPixelMapuiv)(GLenum, GLuint *);
5155 #define CALL_GetPixelMapuiv(disp, parameters) \
5156 (* GET_GetPixelMapuiv(disp)) parameters
5157 static INLINE _glptr_GetPixelMapuiv GET_GetPixelMapuiv(struct _glapi_table *disp) {
5158 return (_glptr_GetPixelMapuiv) (GET_by_offset(disp, _gloffset_GetPixelMapuiv));
5159 }
5160
5161 static INLINE void SET_GetPixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint *)) {
5162 SET_by_offset(disp, _gloffset_GetPixelMapuiv, fn);
5163 }
5164
5165 typedef void (GLAPIENTRYP _glptr_GetPixelMapusv)(GLenum, GLushort *);
5166 #define CALL_GetPixelMapusv(disp, parameters) \
5167 (* GET_GetPixelMapusv(disp)) parameters
5168 static INLINE _glptr_GetPixelMapusv GET_GetPixelMapusv(struct _glapi_table *disp) {
5169 return (_glptr_GetPixelMapusv) (GET_by_offset(disp, _gloffset_GetPixelMapusv));
5170 }
5171
5172 static INLINE void SET_GetPixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLushort *)) {
5173 SET_by_offset(disp, _gloffset_GetPixelMapusv, fn);
5174 }
5175
5176 typedef void (GLAPIENTRYP _glptr_GetPolygonStipple)(GLubyte *);
5177 #define CALL_GetPolygonStipple(disp, parameters) \
5178 (* GET_GetPolygonStipple(disp)) parameters
5179 static INLINE _glptr_GetPolygonStipple GET_GetPolygonStipple(struct _glapi_table *disp) {
5180 return (_glptr_GetPolygonStipple) (GET_by_offset(disp, _gloffset_GetPolygonStipple));
5181 }
5182
5183 static INLINE void SET_GetPolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte *)) {
5184 SET_by_offset(disp, _gloffset_GetPolygonStipple, fn);
5185 }
5186
5187 typedef const GLubyte * (GLAPIENTRYP _glptr_GetString)(GLenum);
5188 #define CALL_GetString(disp, parameters) \
5189 (* GET_GetString(disp)) parameters
5190 static INLINE _glptr_GetString GET_GetString(struct _glapi_table *disp) {
5191 return (_glptr_GetString) (GET_by_offset(disp, _gloffset_GetString));
5192 }
5193
5194 static INLINE void SET_GetString(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum)) {
5195 SET_by_offset(disp, _gloffset_GetString, fn);
5196 }
5197
5198 typedef void (GLAPIENTRYP _glptr_GetTexEnvfv)(GLenum, GLenum, GLfloat *);
5199 #define CALL_GetTexEnvfv(disp, parameters) \
5200 (* GET_GetTexEnvfv(disp)) parameters
5201 static INLINE _glptr_GetTexEnvfv GET_GetTexEnvfv(struct _glapi_table *disp) {
5202 return (_glptr_GetTexEnvfv) (GET_by_offset(disp, _gloffset_GetTexEnvfv));
5203 }
5204
5205 static INLINE void SET_GetTexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5206 SET_by_offset(disp, _gloffset_GetTexEnvfv, fn);
5207 }
5208
5209 typedef void (GLAPIENTRYP _glptr_GetTexEnviv)(GLenum, GLenum, GLint *);
5210 #define CALL_GetTexEnviv(disp, parameters) \
5211 (* GET_GetTexEnviv(disp)) parameters
5212 static INLINE _glptr_GetTexEnviv GET_GetTexEnviv(struct _glapi_table *disp) {
5213 return (_glptr_GetTexEnviv) (GET_by_offset(disp, _gloffset_GetTexEnviv));
5214 }
5215
5216 static INLINE void SET_GetTexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5217 SET_by_offset(disp, _gloffset_GetTexEnviv, fn);
5218 }
5219
5220 typedef void (GLAPIENTRYP _glptr_GetTexGendv)(GLenum, GLenum, GLdouble *);
5221 #define CALL_GetTexGendv(disp, parameters) \
5222 (* GET_GetTexGendv(disp)) parameters
5223 static INLINE _glptr_GetTexGendv GET_GetTexGendv(struct _glapi_table *disp) {
5224 return (_glptr_GetTexGendv) (GET_by_offset(disp, _gloffset_GetTexGendv));
5225 }
5226
5227 static INLINE void SET_GetTexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
5228 SET_by_offset(disp, _gloffset_GetTexGendv, fn);
5229 }
5230
5231 typedef void (GLAPIENTRYP _glptr_GetTexGenfv)(GLenum, GLenum, GLfloat *);
5232 #define CALL_GetTexGenfv(disp, parameters) \
5233 (* GET_GetTexGenfv(disp)) parameters
5234 static INLINE _glptr_GetTexGenfv GET_GetTexGenfv(struct _glapi_table *disp) {
5235 return (_glptr_GetTexGenfv) (GET_by_offset(disp, _gloffset_GetTexGenfv));
5236 }
5237
5238 static INLINE void SET_GetTexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5239 SET_by_offset(disp, _gloffset_GetTexGenfv, fn);
5240 }
5241
5242 typedef void (GLAPIENTRYP _glptr_GetTexGeniv)(GLenum, GLenum, GLint *);
5243 #define CALL_GetTexGeniv(disp, parameters) \
5244 (* GET_GetTexGeniv(disp)) parameters
5245 static INLINE _glptr_GetTexGeniv GET_GetTexGeniv(struct _glapi_table *disp) {
5246 return (_glptr_GetTexGeniv) (GET_by_offset(disp, _gloffset_GetTexGeniv));
5247 }
5248
5249 static INLINE void SET_GetTexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5250 SET_by_offset(disp, _gloffset_GetTexGeniv, fn);
5251 }
5252
5253 typedef void (GLAPIENTRYP _glptr_GetTexImage)(GLenum, GLint, GLenum, GLenum, GLvoid *);
5254 #define CALL_GetTexImage(disp, parameters) \
5255 (* GET_GetTexImage(disp)) parameters
5256 static INLINE _glptr_GetTexImage GET_GetTexImage(struct _glapi_table *disp) {
5257 return (_glptr_GetTexImage) (GET_by_offset(disp, _gloffset_GetTexImage));
5258 }
5259
5260 static INLINE void SET_GetTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLvoid *)) {
5261 SET_by_offset(disp, _gloffset_GetTexImage, fn);
5262 }
5263
5264 typedef void (GLAPIENTRYP _glptr_GetTexParameterfv)(GLenum, GLenum, GLfloat *);
5265 #define CALL_GetTexParameterfv(disp, parameters) \
5266 (* GET_GetTexParameterfv(disp)) parameters
5267 static INLINE _glptr_GetTexParameterfv GET_GetTexParameterfv(struct _glapi_table *disp) {
5268 return (_glptr_GetTexParameterfv) (GET_by_offset(disp, _gloffset_GetTexParameterfv));
5269 }
5270
5271 static INLINE void SET_GetTexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5272 SET_by_offset(disp, _gloffset_GetTexParameterfv, fn);
5273 }
5274
5275 typedef void (GLAPIENTRYP _glptr_GetTexParameteriv)(GLenum, GLenum, GLint *);
5276 #define CALL_GetTexParameteriv(disp, parameters) \
5277 (* GET_GetTexParameteriv(disp)) parameters
5278 static INLINE _glptr_GetTexParameteriv GET_GetTexParameteriv(struct _glapi_table *disp) {
5279 return (_glptr_GetTexParameteriv) (GET_by_offset(disp, _gloffset_GetTexParameteriv));
5280 }
5281
5282 static INLINE void SET_GetTexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5283 SET_by_offset(disp, _gloffset_GetTexParameteriv, fn);
5284 }
5285
5286 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *);
5287 #define CALL_GetTexLevelParameterfv(disp, parameters) \
5288 (* GET_GetTexLevelParameterfv(disp)) parameters
5289 static INLINE _glptr_GetTexLevelParameterfv GET_GetTexLevelParameterfv(struct _glapi_table *disp) {
5290 return (_glptr_GetTexLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTexLevelParameterfv));
5291 }
5292
5293 static INLINE void SET_GetTexLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLfloat *)) {
5294 SET_by_offset(disp, _gloffset_GetTexLevelParameterfv, fn);
5295 }
5296
5297 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *);
5298 #define CALL_GetTexLevelParameteriv(disp, parameters) \
5299 (* GET_GetTexLevelParameteriv(disp)) parameters
5300 static INLINE _glptr_GetTexLevelParameteriv GET_GetTexLevelParameteriv(struct _glapi_table *disp) {
5301 return (_glptr_GetTexLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTexLevelParameteriv));
5302 }
5303
5304 static INLINE void SET_GetTexLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint *)) {
5305 SET_by_offset(disp, _gloffset_GetTexLevelParameteriv, fn);
5306 }
5307
5308 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabled)(GLenum);
5309 #define CALL_IsEnabled(disp, parameters) \
5310 (* GET_IsEnabled(disp)) parameters
5311 static INLINE _glptr_IsEnabled GET_IsEnabled(struct _glapi_table *disp) {
5312 return (_glptr_IsEnabled) (GET_by_offset(disp, _gloffset_IsEnabled));
5313 }
5314
5315 static INLINE void SET_IsEnabled(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
5316 SET_by_offset(disp, _gloffset_IsEnabled, fn);
5317 }
5318
5319 typedef GLboolean (GLAPIENTRYP _glptr_IsList)(GLuint);
5320 #define CALL_IsList(disp, parameters) \
5321 (* GET_IsList(disp)) parameters
5322 static INLINE _glptr_IsList GET_IsList(struct _glapi_table *disp) {
5323 return (_glptr_IsList) (GET_by_offset(disp, _gloffset_IsList));
5324 }
5325
5326 static INLINE void SET_IsList(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
5327 SET_by_offset(disp, _gloffset_IsList, fn);
5328 }
5329
5330 typedef void (GLAPIENTRYP _glptr_DepthRange)(GLclampd, GLclampd);
5331 #define CALL_DepthRange(disp, parameters) \
5332 (* GET_DepthRange(disp)) parameters
5333 static INLINE _glptr_DepthRange GET_DepthRange(struct _glapi_table *disp) {
5334 return (_glptr_DepthRange) (GET_by_offset(disp, _gloffset_DepthRange));
5335 }
5336
5337 static INLINE void SET_DepthRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
5338 SET_by_offset(disp, _gloffset_DepthRange, fn);
5339 }
5340
5341 typedef void (GLAPIENTRYP _glptr_Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
5342 #define CALL_Frustum(disp, parameters) \
5343 (* GET_Frustum(disp)) parameters
5344 static INLINE _glptr_Frustum GET_Frustum(struct _glapi_table *disp) {
5345 return (_glptr_Frustum) (GET_by_offset(disp, _gloffset_Frustum));
5346 }
5347
5348 static INLINE void SET_Frustum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
5349 SET_by_offset(disp, _gloffset_Frustum, fn);
5350 }
5351
5352 typedef void (GLAPIENTRYP _glptr_LoadIdentity)(void);
5353 #define CALL_LoadIdentity(disp, parameters) \
5354 (* GET_LoadIdentity(disp)) parameters
5355 static INLINE _glptr_LoadIdentity GET_LoadIdentity(struct _glapi_table *disp) {
5356 return (_glptr_LoadIdentity) (GET_by_offset(disp, _gloffset_LoadIdentity));
5357 }
5358
5359 static INLINE void SET_LoadIdentity(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5360 SET_by_offset(disp, _gloffset_LoadIdentity, fn);
5361 }
5362
5363 typedef void (GLAPIENTRYP _glptr_LoadMatrixf)(const GLfloat *);
5364 #define CALL_LoadMatrixf(disp, parameters) \
5365 (* GET_LoadMatrixf(disp)) parameters
5366 static INLINE _glptr_LoadMatrixf GET_LoadMatrixf(struct _glapi_table *disp) {
5367 return (_glptr_LoadMatrixf) (GET_by_offset(disp, _gloffset_LoadMatrixf));
5368 }
5369
5370 static INLINE void SET_LoadMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5371 SET_by_offset(disp, _gloffset_LoadMatrixf, fn);
5372 }
5373
5374 typedef void (GLAPIENTRYP _glptr_LoadMatrixd)(const GLdouble *);
5375 #define CALL_LoadMatrixd(disp, parameters) \
5376 (* GET_LoadMatrixd(disp)) parameters
5377 static INLINE _glptr_LoadMatrixd GET_LoadMatrixd(struct _glapi_table *disp) {
5378 return (_glptr_LoadMatrixd) (GET_by_offset(disp, _gloffset_LoadMatrixd));
5379 }
5380
5381 static INLINE void SET_LoadMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5382 SET_by_offset(disp, _gloffset_LoadMatrixd, fn);
5383 }
5384
5385 typedef void (GLAPIENTRYP _glptr_MatrixMode)(GLenum);
5386 #define CALL_MatrixMode(disp, parameters) \
5387 (* GET_MatrixMode(disp)) parameters
5388 static INLINE _glptr_MatrixMode GET_MatrixMode(struct _glapi_table *disp) {
5389 return (_glptr_MatrixMode) (GET_by_offset(disp, _gloffset_MatrixMode));
5390 }
5391
5392 static INLINE void SET_MatrixMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5393 SET_by_offset(disp, _gloffset_MatrixMode, fn);
5394 }
5395
5396 typedef void (GLAPIENTRYP _glptr_MultMatrixf)(const GLfloat *);
5397 #define CALL_MultMatrixf(disp, parameters) \
5398 (* GET_MultMatrixf(disp)) parameters
5399 static INLINE _glptr_MultMatrixf GET_MultMatrixf(struct _glapi_table *disp) {
5400 return (_glptr_MultMatrixf) (GET_by_offset(disp, _gloffset_MultMatrixf));
5401 }
5402
5403 static INLINE void SET_MultMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5404 SET_by_offset(disp, _gloffset_MultMatrixf, fn);
5405 }
5406
5407 typedef void (GLAPIENTRYP _glptr_MultMatrixd)(const GLdouble *);
5408 #define CALL_MultMatrixd(disp, parameters) \
5409 (* GET_MultMatrixd(disp)) parameters
5410 static INLINE _glptr_MultMatrixd GET_MultMatrixd(struct _glapi_table *disp) {
5411 return (_glptr_MultMatrixd) (GET_by_offset(disp, _gloffset_MultMatrixd));
5412 }
5413
5414 static INLINE void SET_MultMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5415 SET_by_offset(disp, _gloffset_MultMatrixd, fn);
5416 }
5417
5418 typedef void (GLAPIENTRYP _glptr_Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
5419 #define CALL_Ortho(disp, parameters) \
5420 (* GET_Ortho(disp)) parameters
5421 static INLINE _glptr_Ortho GET_Ortho(struct _glapi_table *disp) {
5422 return (_glptr_Ortho) (GET_by_offset(disp, _gloffset_Ortho));
5423 }
5424
5425 static INLINE void SET_Ortho(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
5426 SET_by_offset(disp, _gloffset_Ortho, fn);
5427 }
5428
5429 typedef void (GLAPIENTRYP _glptr_PopMatrix)(void);
5430 #define CALL_PopMatrix(disp, parameters) \
5431 (* GET_PopMatrix(disp)) parameters
5432 static INLINE _glptr_PopMatrix GET_PopMatrix(struct _glapi_table *disp) {
5433 return (_glptr_PopMatrix) (GET_by_offset(disp, _gloffset_PopMatrix));
5434 }
5435
5436 static INLINE void SET_PopMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5437 SET_by_offset(disp, _gloffset_PopMatrix, fn);
5438 }
5439
5440 typedef void (GLAPIENTRYP _glptr_PushMatrix)(void);
5441 #define CALL_PushMatrix(disp, parameters) \
5442 (* GET_PushMatrix(disp)) parameters
5443 static INLINE _glptr_PushMatrix GET_PushMatrix(struct _glapi_table *disp) {
5444 return (_glptr_PushMatrix) (GET_by_offset(disp, _gloffset_PushMatrix));
5445 }
5446
5447 static INLINE void SET_PushMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5448 SET_by_offset(disp, _gloffset_PushMatrix, fn);
5449 }
5450
5451 typedef void (GLAPIENTRYP _glptr_Rotated)(GLdouble, GLdouble, GLdouble, GLdouble);
5452 #define CALL_Rotated(disp, parameters) \
5453 (* GET_Rotated(disp)) parameters
5454 static INLINE _glptr_Rotated GET_Rotated(struct _glapi_table *disp) {
5455 return (_glptr_Rotated) (GET_by_offset(disp, _gloffset_Rotated));
5456 }
5457
5458 static INLINE void SET_Rotated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
5459 SET_by_offset(disp, _gloffset_Rotated, fn);
5460 }
5461
5462 typedef void (GLAPIENTRYP _glptr_Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat);
5463 #define CALL_Rotatef(disp, parameters) \
5464 (* GET_Rotatef(disp)) parameters
5465 static INLINE _glptr_Rotatef GET_Rotatef(struct _glapi_table *disp) {
5466 return (_glptr_Rotatef) (GET_by_offset(disp, _gloffset_Rotatef));
5467 }
5468
5469 static INLINE void SET_Rotatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
5470 SET_by_offset(disp, _gloffset_Rotatef, fn);
5471 }
5472
5473 typedef void (GLAPIENTRYP _glptr_Scaled)(GLdouble, GLdouble, GLdouble);
5474 #define CALL_Scaled(disp, parameters) \
5475 (* GET_Scaled(disp)) parameters
5476 static INLINE _glptr_Scaled GET_Scaled(struct _glapi_table *disp) {
5477 return (_glptr_Scaled) (GET_by_offset(disp, _gloffset_Scaled));
5478 }
5479
5480 static INLINE void SET_Scaled(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
5481 SET_by_offset(disp, _gloffset_Scaled, fn);
5482 }
5483
5484 typedef void (GLAPIENTRYP _glptr_Scalef)(GLfloat, GLfloat, GLfloat);
5485 #define CALL_Scalef(disp, parameters) \
5486 (* GET_Scalef(disp)) parameters
5487 static INLINE _glptr_Scalef GET_Scalef(struct _glapi_table *disp) {
5488 return (_glptr_Scalef) (GET_by_offset(disp, _gloffset_Scalef));
5489 }
5490
5491 static INLINE void SET_Scalef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
5492 SET_by_offset(disp, _gloffset_Scalef, fn);
5493 }
5494
5495 typedef void (GLAPIENTRYP _glptr_Translated)(GLdouble, GLdouble, GLdouble);
5496 #define CALL_Translated(disp, parameters) \
5497 (* GET_Translated(disp)) parameters
5498 static INLINE _glptr_Translated GET_Translated(struct _glapi_table *disp) {
5499 return (_glptr_Translated) (GET_by_offset(disp, _gloffset_Translated));
5500 }
5501
5502 static INLINE void SET_Translated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
5503 SET_by_offset(disp, _gloffset_Translated, fn);
5504 }
5505
5506 typedef void (GLAPIENTRYP _glptr_Translatef)(GLfloat, GLfloat, GLfloat);
5507 #define CALL_Translatef(disp, parameters) \
5508 (* GET_Translatef(disp)) parameters
5509 static INLINE _glptr_Translatef GET_Translatef(struct _glapi_table *disp) {
5510 return (_glptr_Translatef) (GET_by_offset(disp, _gloffset_Translatef));
5511 }
5512
5513 static INLINE void SET_Translatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
5514 SET_by_offset(disp, _gloffset_Translatef, fn);
5515 }
5516
5517 typedef void (GLAPIENTRYP _glptr_Viewport)(GLint, GLint, GLsizei, GLsizei);
5518 #define CALL_Viewport(disp, parameters) \
5519 (* GET_Viewport(disp)) parameters
5520 static INLINE _glptr_Viewport GET_Viewport(struct _glapi_table *disp) {
5521 return (_glptr_Viewport) (GET_by_offset(disp, _gloffset_Viewport));
5522 }
5523
5524 static INLINE void SET_Viewport(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
5525 SET_by_offset(disp, _gloffset_Viewport, fn);
5526 }
5527
5528 typedef void (GLAPIENTRYP _glptr_ArrayElement)(GLint);
5529 #define CALL_ArrayElement(disp, parameters) \
5530 (* GET_ArrayElement(disp)) parameters
5531 static INLINE _glptr_ArrayElement GET_ArrayElement(struct _glapi_table *disp) {
5532 return (_glptr_ArrayElement) (GET_by_offset(disp, _gloffset_ArrayElement));
5533 }
5534
5535 static INLINE void SET_ArrayElement(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
5536 SET_by_offset(disp, _gloffset_ArrayElement, fn);
5537 }
5538
5539 typedef void (GLAPIENTRYP _glptr_BindTexture)(GLenum, GLuint);
5540 #define CALL_BindTexture(disp, parameters) \
5541 (* GET_BindTexture(disp)) parameters
5542 static INLINE _glptr_BindTexture GET_BindTexture(struct _glapi_table *disp) {
5543 return (_glptr_BindTexture) (GET_by_offset(disp, _gloffset_BindTexture));
5544 }
5545
5546 static INLINE void SET_BindTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
5547 SET_by_offset(disp, _gloffset_BindTexture, fn);
5548 }
5549
5550 typedef void (GLAPIENTRYP _glptr_ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
5551 #define CALL_ColorPointer(disp, parameters) \
5552 (* GET_ColorPointer(disp)) parameters
5553 static INLINE _glptr_ColorPointer GET_ColorPointer(struct _glapi_table *disp) {
5554 return (_glptr_ColorPointer) (GET_by_offset(disp, _gloffset_ColorPointer));
5555 }
5556
5557 static INLINE void SET_ColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
5558 SET_by_offset(disp, _gloffset_ColorPointer, fn);
5559 }
5560
5561 typedef void (GLAPIENTRYP _glptr_DisableClientState)(GLenum);
5562 #define CALL_DisableClientState(disp, parameters) \
5563 (* GET_DisableClientState(disp)) parameters
5564 static INLINE _glptr_DisableClientState GET_DisableClientState(struct _glapi_table *disp) {
5565 return (_glptr_DisableClientState) (GET_by_offset(disp, _gloffset_DisableClientState));
5566 }
5567
5568 static INLINE void SET_DisableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5569 SET_by_offset(disp, _gloffset_DisableClientState, fn);
5570 }
5571
5572 typedef void (GLAPIENTRYP _glptr_DrawArrays)(GLenum, GLint, GLsizei);
5573 #define CALL_DrawArrays(disp, parameters) \
5574 (* GET_DrawArrays(disp)) parameters
5575 static INLINE _glptr_DrawArrays GET_DrawArrays(struct _glapi_table *disp) {
5576 return (_glptr_DrawArrays) (GET_by_offset(disp, _gloffset_DrawArrays));
5577 }
5578
5579 static INLINE void SET_DrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei)) {
5580 SET_by_offset(disp, _gloffset_DrawArrays, fn);
5581 }
5582
5583 typedef void (GLAPIENTRYP _glptr_DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *);
5584 #define CALL_DrawElements(disp, parameters) \
5585 (* GET_DrawElements(disp)) parameters
5586 static INLINE _glptr_DrawElements GET_DrawElements(struct _glapi_table *disp) {
5587 return (_glptr_DrawElements) (GET_by_offset(disp, _gloffset_DrawElements));
5588 }
5589
5590 static INLINE void SET_DrawElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *)) {
5591 SET_by_offset(disp, _gloffset_DrawElements, fn);
5592 }
5593
5594 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointer)(GLsizei, const GLvoid *);
5595 #define CALL_EdgeFlagPointer(disp, parameters) \
5596 (* GET_EdgeFlagPointer(disp)) parameters
5597 static INLINE _glptr_EdgeFlagPointer GET_EdgeFlagPointer(struct _glapi_table *disp) {
5598 return (_glptr_EdgeFlagPointer) (GET_by_offset(disp, _gloffset_EdgeFlagPointer));
5599 }
5600
5601 static INLINE void SET_EdgeFlagPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
5602 SET_by_offset(disp, _gloffset_EdgeFlagPointer, fn);
5603 }
5604
5605 typedef void (GLAPIENTRYP _glptr_EnableClientState)(GLenum);
5606 #define CALL_EnableClientState(disp, parameters) \
5607 (* GET_EnableClientState(disp)) parameters
5608 static INLINE _glptr_EnableClientState GET_EnableClientState(struct _glapi_table *disp) {
5609 return (_glptr_EnableClientState) (GET_by_offset(disp, _gloffset_EnableClientState));
5610 }
5611
5612 static INLINE void SET_EnableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5613 SET_by_offset(disp, _gloffset_EnableClientState, fn);
5614 }
5615
5616 typedef void (GLAPIENTRYP _glptr_IndexPointer)(GLenum, GLsizei, const GLvoid *);
5617 #define CALL_IndexPointer(disp, parameters) \
5618 (* GET_IndexPointer(disp)) parameters
5619 static INLINE _glptr_IndexPointer GET_IndexPointer(struct _glapi_table *disp) {
5620 return (_glptr_IndexPointer) (GET_by_offset(disp, _gloffset_IndexPointer));
5621 }
5622
5623 static INLINE void SET_IndexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
5624 SET_by_offset(disp, _gloffset_IndexPointer, fn);
5625 }
5626
5627 typedef void (GLAPIENTRYP _glptr_Indexub)(GLubyte);
5628 #define CALL_Indexub(disp, parameters) \
5629 (* GET_Indexub(disp)) parameters
5630 static INLINE _glptr_Indexub GET_Indexub(struct _glapi_table *disp) {
5631 return (_glptr_Indexub) (GET_by_offset(disp, _gloffset_Indexub));
5632 }
5633
5634 static INLINE void SET_Indexub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte)) {
5635 SET_by_offset(disp, _gloffset_Indexub, fn);
5636 }
5637
5638 typedef void (GLAPIENTRYP _glptr_Indexubv)(const GLubyte *);
5639 #define CALL_Indexubv(disp, parameters) \
5640 (* GET_Indexubv(disp)) parameters
5641 static INLINE _glptr_Indexubv GET_Indexubv(struct _glapi_table *disp) {
5642 return (_glptr_Indexubv) (GET_by_offset(disp, _gloffset_Indexubv));
5643 }
5644
5645 static INLINE void SET_Indexubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
5646 SET_by_offset(disp, _gloffset_Indexubv, fn);
5647 }
5648
5649 typedef void (GLAPIENTRYP _glptr_InterleavedArrays)(GLenum, GLsizei, const GLvoid *);
5650 #define CALL_InterleavedArrays(disp, parameters) \
5651 (* GET_InterleavedArrays(disp)) parameters
5652 static INLINE _glptr_InterleavedArrays GET_InterleavedArrays(struct _glapi_table *disp) {
5653 return (_glptr_InterleavedArrays) (GET_by_offset(disp, _gloffset_InterleavedArrays));
5654 }
5655
5656 static INLINE void SET_InterleavedArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
5657 SET_by_offset(disp, _gloffset_InterleavedArrays, fn);
5658 }
5659
5660 typedef void (GLAPIENTRYP _glptr_NormalPointer)(GLenum, GLsizei, const GLvoid *);
5661 #define CALL_NormalPointer(disp, parameters) \
5662 (* GET_NormalPointer(disp)) parameters
5663 static INLINE _glptr_NormalPointer GET_NormalPointer(struct _glapi_table *disp) {
5664 return (_glptr_NormalPointer) (GET_by_offset(disp, _gloffset_NormalPointer));
5665 }
5666
5667 static INLINE void SET_NormalPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
5668 SET_by_offset(disp, _gloffset_NormalPointer, fn);
5669 }
5670
5671 typedef void (GLAPIENTRYP _glptr_PolygonOffset)(GLfloat, GLfloat);
5672 #define CALL_PolygonOffset(disp, parameters) \
5673 (* GET_PolygonOffset(disp)) parameters
5674 static INLINE _glptr_PolygonOffset GET_PolygonOffset(struct _glapi_table *disp) {
5675 return (_glptr_PolygonOffset) (GET_by_offset(disp, _gloffset_PolygonOffset));
5676 }
5677
5678 static INLINE void SET_PolygonOffset(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
5679 SET_by_offset(disp, _gloffset_PolygonOffset, fn);
5680 }
5681
5682 typedef void (GLAPIENTRYP _glptr_TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *);
5683 #define CALL_TexCoordPointer(disp, parameters) \
5684 (* GET_TexCoordPointer(disp)) parameters
5685 static INLINE _glptr_TexCoordPointer GET_TexCoordPointer(struct _glapi_table *disp) {
5686 return (_glptr_TexCoordPointer) (GET_by_offset(disp, _gloffset_TexCoordPointer));
5687 }
5688
5689 static INLINE void SET_TexCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
5690 SET_by_offset(disp, _gloffset_TexCoordPointer, fn);
5691 }
5692
5693 typedef void (GLAPIENTRYP _glptr_VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *);
5694 #define CALL_VertexPointer(disp, parameters) \
5695 (* GET_VertexPointer(disp)) parameters
5696 static INLINE _glptr_VertexPointer GET_VertexPointer(struct _glapi_table *disp) {
5697 return (_glptr_VertexPointer) (GET_by_offset(disp, _gloffset_VertexPointer));
5698 }
5699
5700 static INLINE void SET_VertexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
5701 SET_by_offset(disp, _gloffset_VertexPointer, fn);
5702 }
5703
5704 typedef GLboolean (GLAPIENTRYP _glptr_AreTexturesResident)(GLsizei, const GLuint *, GLboolean *);
5705 #define CALL_AreTexturesResident(disp, parameters) \
5706 (* GET_AreTexturesResident(disp)) parameters
5707 static INLINE _glptr_AreTexturesResident GET_AreTexturesResident(struct _glapi_table *disp) {
5708 return (_glptr_AreTexturesResident) (GET_by_offset(disp, _gloffset_AreTexturesResident));
5709 }
5710
5711 static INLINE void SET_AreTexturesResident(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
5712 SET_by_offset(disp, _gloffset_AreTexturesResident, fn);
5713 }
5714
5715 typedef void (GLAPIENTRYP _glptr_CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
5716 #define CALL_CopyTexImage1D(disp, parameters) \
5717 (* GET_CopyTexImage1D(disp)) parameters
5718 static INLINE _glptr_CopyTexImage1D GET_CopyTexImage1D(struct _glapi_table *disp) {
5719 return (_glptr_CopyTexImage1D) (GET_by_offset(disp, _gloffset_CopyTexImage1D));
5720 }
5721
5722 static INLINE void SET_CopyTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint)) {
5723 SET_by_offset(disp, _gloffset_CopyTexImage1D, fn);
5724 }
5725
5726 typedef void (GLAPIENTRYP _glptr_CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
5727 #define CALL_CopyTexImage2D(disp, parameters) \
5728 (* GET_CopyTexImage2D(disp)) parameters
5729 static INLINE _glptr_CopyTexImage2D GET_CopyTexImage2D(struct _glapi_table *disp) {
5730 return (_glptr_CopyTexImage2D) (GET_by_offset(disp, _gloffset_CopyTexImage2D));
5731 }
5732
5733 static INLINE void SET_CopyTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint)) {
5734 SET_by_offset(disp, _gloffset_CopyTexImage2D, fn);
5735 }
5736
5737 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
5738 #define CALL_CopyTexSubImage1D(disp, parameters) \
5739 (* GET_CopyTexSubImage1D(disp)) parameters
5740 static INLINE _glptr_CopyTexSubImage1D GET_CopyTexSubImage1D(struct _glapi_table *disp) {
5741 return (_glptr_CopyTexSubImage1D) (GET_by_offset(disp, _gloffset_CopyTexSubImage1D));
5742 }
5743
5744 static INLINE void SET_CopyTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei)) {
5745 SET_by_offset(disp, _gloffset_CopyTexSubImage1D, fn);
5746 }
5747
5748 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
5749 #define CALL_CopyTexSubImage2D(disp, parameters) \
5750 (* GET_CopyTexSubImage2D(disp)) parameters
5751 static INLINE _glptr_CopyTexSubImage2D GET_CopyTexSubImage2D(struct _glapi_table *disp) {
5752 return (_glptr_CopyTexSubImage2D) (GET_by_offset(disp, _gloffset_CopyTexSubImage2D));
5753 }
5754
5755 static INLINE void SET_CopyTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
5756 SET_by_offset(disp, _gloffset_CopyTexSubImage2D, fn);
5757 }
5758
5759 typedef void (GLAPIENTRYP _glptr_DeleteTextures)(GLsizei, const GLuint *);
5760 #define CALL_DeleteTextures(disp, parameters) \
5761 (* GET_DeleteTextures(disp)) parameters
5762 static INLINE _glptr_DeleteTextures GET_DeleteTextures(struct _glapi_table *disp) {
5763 return (_glptr_DeleteTextures) (GET_by_offset(disp, _gloffset_DeleteTextures));
5764 }
5765
5766 static INLINE void SET_DeleteTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
5767 SET_by_offset(disp, _gloffset_DeleteTextures, fn);
5768 }
5769
5770 typedef void (GLAPIENTRYP _glptr_GenTextures)(GLsizei, GLuint *);
5771 #define CALL_GenTextures(disp, parameters) \
5772 (* GET_GenTextures(disp)) parameters
5773 static INLINE _glptr_GenTextures GET_GenTextures(struct _glapi_table *disp) {
5774 return (_glptr_GenTextures) (GET_by_offset(disp, _gloffset_GenTextures));
5775 }
5776
5777 static INLINE void SET_GenTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
5778 SET_by_offset(disp, _gloffset_GenTextures, fn);
5779 }
5780
5781 typedef void (GLAPIENTRYP _glptr_GetPointerv)(GLenum, GLvoid **);
5782 #define CALL_GetPointerv(disp, parameters) \
5783 (* GET_GetPointerv(disp)) parameters
5784 static INLINE _glptr_GetPointerv GET_GetPointerv(struct _glapi_table *disp) {
5785 return (_glptr_GetPointerv) (GET_by_offset(disp, _gloffset_GetPointerv));
5786 }
5787
5788 static INLINE void SET_GetPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid **)) {
5789 SET_by_offset(disp, _gloffset_GetPointerv, fn);
5790 }
5791
5792 typedef GLboolean (GLAPIENTRYP _glptr_IsTexture)(GLuint);
5793 #define CALL_IsTexture(disp, parameters) \
5794 (* GET_IsTexture(disp)) parameters
5795 static INLINE _glptr_IsTexture GET_IsTexture(struct _glapi_table *disp) {
5796 return (_glptr_IsTexture) (GET_by_offset(disp, _gloffset_IsTexture));
5797 }
5798
5799 static INLINE void SET_IsTexture(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
5800 SET_by_offset(disp, _gloffset_IsTexture, fn);
5801 }
5802
5803 typedef void (GLAPIENTRYP _glptr_PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *);
5804 #define CALL_PrioritizeTextures(disp, parameters) \
5805 (* GET_PrioritizeTextures(disp)) parameters
5806 static INLINE _glptr_PrioritizeTextures GET_PrioritizeTextures(struct _glapi_table *disp) {
5807 return (_glptr_PrioritizeTextures) (GET_by_offset(disp, _gloffset_PrioritizeTextures));
5808 }
5809
5810 static INLINE void SET_PrioritizeTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, const GLclampf *)) {
5811 SET_by_offset(disp, _gloffset_PrioritizeTextures, fn);
5812 }
5813
5814 typedef void (GLAPIENTRYP _glptr_TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
5815 #define CALL_TexSubImage1D(disp, parameters) \
5816 (* GET_TexSubImage1D(disp)) parameters
5817 static INLINE _glptr_TexSubImage1D GET_TexSubImage1D(struct _glapi_table *disp) {
5818 return (_glptr_TexSubImage1D) (GET_by_offset(disp, _gloffset_TexSubImage1D));
5819 }
5820
5821 static INLINE void SET_TexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) {
5822 SET_by_offset(disp, _gloffset_TexSubImage1D, fn);
5823 }
5824
5825 typedef void (GLAPIENTRYP _glptr_TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5826 #define CALL_TexSubImage2D(disp, parameters) \
5827 (* GET_TexSubImage2D(disp)) parameters
5828 static INLINE _glptr_TexSubImage2D GET_TexSubImage2D(struct _glapi_table *disp) {
5829 return (_glptr_TexSubImage2D) (GET_by_offset(disp, _gloffset_TexSubImage2D));
5830 }
5831
5832 static INLINE void SET_TexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5833 SET_by_offset(disp, _gloffset_TexSubImage2D, fn);
5834 }
5835
5836 typedef void (GLAPIENTRYP _glptr_PopClientAttrib)(void);
5837 #define CALL_PopClientAttrib(disp, parameters) \
5838 (* GET_PopClientAttrib(disp)) parameters
5839 static INLINE _glptr_PopClientAttrib GET_PopClientAttrib(struct _glapi_table *disp) {
5840 return (_glptr_PopClientAttrib) (GET_by_offset(disp, _gloffset_PopClientAttrib));
5841 }
5842
5843 static INLINE void SET_PopClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5844 SET_by_offset(disp, _gloffset_PopClientAttrib, fn);
5845 }
5846
5847 typedef void (GLAPIENTRYP _glptr_PushClientAttrib)(GLbitfield);
5848 #define CALL_PushClientAttrib(disp, parameters) \
5849 (* GET_PushClientAttrib(disp)) parameters
5850 static INLINE _glptr_PushClientAttrib GET_PushClientAttrib(struct _glapi_table *disp) {
5851 return (_glptr_PushClientAttrib) (GET_by_offset(disp, _gloffset_PushClientAttrib));
5852 }
5853
5854 static INLINE void SET_PushClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
5855 SET_by_offset(disp, _gloffset_PushClientAttrib, fn);
5856 }
5857
5858 typedef void (GLAPIENTRYP _glptr_BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf);
5859 #define CALL_BlendColor(disp, parameters) \
5860 (* GET_BlendColor(disp)) parameters
5861 static INLINE _glptr_BlendColor GET_BlendColor(struct _glapi_table *disp) {
5862 return (_glptr_BlendColor) (GET_by_offset(disp, _gloffset_BlendColor));
5863 }
5864
5865 static INLINE void SET_BlendColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
5866 SET_by_offset(disp, _gloffset_BlendColor, fn);
5867 }
5868
5869 typedef void (GLAPIENTRYP _glptr_BlendEquation)(GLenum);
5870 #define CALL_BlendEquation(disp, parameters) \
5871 (* GET_BlendEquation(disp)) parameters
5872 static INLINE _glptr_BlendEquation GET_BlendEquation(struct _glapi_table *disp) {
5873 return (_glptr_BlendEquation) (GET_by_offset(disp, _gloffset_BlendEquation));
5874 }
5875
5876 static INLINE void SET_BlendEquation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5877 SET_by_offset(disp, _gloffset_BlendEquation, fn);
5878 }
5879
5880 typedef void (GLAPIENTRYP _glptr_DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
5881 #define CALL_DrawRangeElements(disp, parameters) \
5882 (* GET_DrawRangeElements(disp)) parameters
5883 static INLINE _glptr_DrawRangeElements GET_DrawRangeElements(struct _glapi_table *disp) {
5884 return (_glptr_DrawRangeElements) (GET_by_offset(disp, _gloffset_DrawRangeElements));
5885 }
5886
5887 static INLINE void SET_DrawRangeElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *)) {
5888 SET_by_offset(disp, _gloffset_DrawRangeElements, fn);
5889 }
5890
5891 typedef void (GLAPIENTRYP _glptr_ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
5892 #define CALL_ColorTable(disp, parameters) \
5893 (* GET_ColorTable(disp)) parameters
5894 static INLINE _glptr_ColorTable GET_ColorTable(struct _glapi_table *disp) {
5895 return (_glptr_ColorTable) (GET_by_offset(disp, _gloffset_ColorTable));
5896 }
5897
5898 static INLINE void SET_ColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
5899 SET_by_offset(disp, _gloffset_ColorTable, fn);
5900 }
5901
5902 typedef void (GLAPIENTRYP _glptr_ColorTableParameterfv)(GLenum, GLenum, const GLfloat *);
5903 #define CALL_ColorTableParameterfv(disp, parameters) \
5904 (* GET_ColorTableParameterfv(disp)) parameters
5905 static INLINE _glptr_ColorTableParameterfv GET_ColorTableParameterfv(struct _glapi_table *disp) {
5906 return (_glptr_ColorTableParameterfv) (GET_by_offset(disp, _gloffset_ColorTableParameterfv));
5907 }
5908
5909 static INLINE void SET_ColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
5910 SET_by_offset(disp, _gloffset_ColorTableParameterfv, fn);
5911 }
5912
5913 typedef void (GLAPIENTRYP _glptr_ColorTableParameteriv)(GLenum, GLenum, const GLint *);
5914 #define CALL_ColorTableParameteriv(disp, parameters) \
5915 (* GET_ColorTableParameteriv(disp)) parameters
5916 static INLINE _glptr_ColorTableParameteriv GET_ColorTableParameteriv(struct _glapi_table *disp) {
5917 return (_glptr_ColorTableParameteriv) (GET_by_offset(disp, _gloffset_ColorTableParameteriv));
5918 }
5919
5920 static INLINE void SET_ColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
5921 SET_by_offset(disp, _gloffset_ColorTableParameteriv, fn);
5922 }
5923
5924 typedef void (GLAPIENTRYP _glptr_CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei);
5925 #define CALL_CopyColorTable(disp, parameters) \
5926 (* GET_CopyColorTable(disp)) parameters
5927 static INLINE _glptr_CopyColorTable GET_CopyColorTable(struct _glapi_table *disp) {
5928 return (_glptr_CopyColorTable) (GET_by_offset(disp, _gloffset_CopyColorTable));
5929 }
5930
5931 static INLINE void SET_CopyColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
5932 SET_by_offset(disp, _gloffset_CopyColorTable, fn);
5933 }
5934
5935 typedef void (GLAPIENTRYP _glptr_GetColorTable)(GLenum, GLenum, GLenum, GLvoid *);
5936 #define CALL_GetColorTable(disp, parameters) \
5937 (* GET_GetColorTable(disp)) parameters
5938 static INLINE _glptr_GetColorTable GET_GetColorTable(struct _glapi_table *disp) {
5939 return (_glptr_GetColorTable) (GET_by_offset(disp, _gloffset_GetColorTable));
5940 }
5941
5942 static INLINE void SET_GetColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
5943 SET_by_offset(disp, _gloffset_GetColorTable, fn);
5944 }
5945
5946 typedef void (GLAPIENTRYP _glptr_GetColorTableParameterfv)(GLenum, GLenum, GLfloat *);
5947 #define CALL_GetColorTableParameterfv(disp, parameters) \
5948 (* GET_GetColorTableParameterfv(disp)) parameters
5949 static INLINE _glptr_GetColorTableParameterfv GET_GetColorTableParameterfv(struct _glapi_table *disp) {
5950 return (_glptr_GetColorTableParameterfv) (GET_by_offset(disp, _gloffset_GetColorTableParameterfv));
5951 }
5952
5953 static INLINE void SET_GetColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5954 SET_by_offset(disp, _gloffset_GetColorTableParameterfv, fn);
5955 }
5956
5957 typedef void (GLAPIENTRYP _glptr_GetColorTableParameteriv)(GLenum, GLenum, GLint *);
5958 #define CALL_GetColorTableParameteriv(disp, parameters) \
5959 (* GET_GetColorTableParameteriv(disp)) parameters
5960 static INLINE _glptr_GetColorTableParameteriv GET_GetColorTableParameteriv(struct _glapi_table *disp) {
5961 return (_glptr_GetColorTableParameteriv) (GET_by_offset(disp, _gloffset_GetColorTableParameteriv));
5962 }
5963
5964 static INLINE void SET_GetColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5965 SET_by_offset(disp, _gloffset_GetColorTableParameteriv, fn);
5966 }
5967
5968 typedef void (GLAPIENTRYP _glptr_ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5969 #define CALL_ColorSubTable(disp, parameters) \
5970 (* GET_ColorSubTable(disp)) parameters
5971 static INLINE _glptr_ColorSubTable GET_ColorSubTable(struct _glapi_table *disp) {
5972 return (_glptr_ColorSubTable) (GET_by_offset(disp, _gloffset_ColorSubTable));
5973 }
5974
5975 static INLINE void SET_ColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5976 SET_by_offset(disp, _gloffset_ColorSubTable, fn);
5977 }
5978
5979 typedef void (GLAPIENTRYP _glptr_CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei);
5980 #define CALL_CopyColorSubTable(disp, parameters) \
5981 (* GET_CopyColorSubTable(disp)) parameters
5982 static INLINE _glptr_CopyColorSubTable GET_CopyColorSubTable(struct _glapi_table *disp) {
5983 return (_glptr_CopyColorSubTable) (GET_by_offset(disp, _gloffset_CopyColorSubTable));
5984 }
5985
5986 static INLINE void SET_CopyColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLint, GLint, GLsizei)) {
5987 SET_by_offset(disp, _gloffset_CopyColorSubTable, fn);
5988 }
5989
5990 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
5991 #define CALL_ConvolutionFilter1D(disp, parameters) \
5992 (* GET_ConvolutionFilter1D(disp)) parameters
5993 static INLINE _glptr_ConvolutionFilter1D GET_ConvolutionFilter1D(struct _glapi_table *disp) {
5994 return (_glptr_ConvolutionFilter1D) (GET_by_offset(disp, _gloffset_ConvolutionFilter1D));
5995 }
5996
5997 static INLINE void SET_ConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
5998 SET_by_offset(disp, _gloffset_ConvolutionFilter1D, fn);
5999 }
6000
6001 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
6002 #define CALL_ConvolutionFilter2D(disp, parameters) \
6003 (* GET_ConvolutionFilter2D(disp)) parameters
6004 static INLINE _glptr_ConvolutionFilter2D GET_ConvolutionFilter2D(struct _glapi_table *disp) {
6005 return (_glptr_ConvolutionFilter2D) (GET_by_offset(disp, _gloffset_ConvolutionFilter2D));
6006 }
6007
6008 static INLINE void SET_ConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
6009 SET_by_offset(disp, _gloffset_ConvolutionFilter2D, fn);
6010 }
6011
6012 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterf)(GLenum, GLenum, GLfloat);
6013 #define CALL_ConvolutionParameterf(disp, parameters) \
6014 (* GET_ConvolutionParameterf(disp)) parameters
6015 static INLINE _glptr_ConvolutionParameterf GET_ConvolutionParameterf(struct _glapi_table *disp) {
6016 return (_glptr_ConvolutionParameterf) (GET_by_offset(disp, _gloffset_ConvolutionParameterf));
6017 }
6018
6019 static INLINE void SET_ConvolutionParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
6020 SET_by_offset(disp, _gloffset_ConvolutionParameterf, fn);
6021 }
6022
6023 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *);
6024 #define CALL_ConvolutionParameterfv(disp, parameters) \
6025 (* GET_ConvolutionParameterfv(disp)) parameters
6026 static INLINE _glptr_ConvolutionParameterfv GET_ConvolutionParameterfv(struct _glapi_table *disp) {
6027 return (_glptr_ConvolutionParameterfv) (GET_by_offset(disp, _gloffset_ConvolutionParameterfv));
6028 }
6029
6030 static INLINE void SET_ConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
6031 SET_by_offset(disp, _gloffset_ConvolutionParameterfv, fn);
6032 }
6033
6034 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteri)(GLenum, GLenum, GLint);
6035 #define CALL_ConvolutionParameteri(disp, parameters) \
6036 (* GET_ConvolutionParameteri(disp)) parameters
6037 static INLINE _glptr_ConvolutionParameteri GET_ConvolutionParameteri(struct _glapi_table *disp) {
6038 return (_glptr_ConvolutionParameteri) (GET_by_offset(disp, _gloffset_ConvolutionParameteri));
6039 }
6040
6041 static INLINE void SET_ConvolutionParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
6042 SET_by_offset(disp, _gloffset_ConvolutionParameteri, fn);
6043 }
6044
6045 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteriv)(GLenum, GLenum, const GLint *);
6046 #define CALL_ConvolutionParameteriv(disp, parameters) \
6047 (* GET_ConvolutionParameteriv(disp)) parameters
6048 static INLINE _glptr_ConvolutionParameteriv GET_ConvolutionParameteriv(struct _glapi_table *disp) {
6049 return (_glptr_ConvolutionParameteriv) (GET_by_offset(disp, _gloffset_ConvolutionParameteriv));
6050 }
6051
6052 static INLINE void SET_ConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
6053 SET_by_offset(disp, _gloffset_ConvolutionParameteriv, fn);
6054 }
6055
6056 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter1D)(GLenum, GLenum, GLint, GLint, GLsizei);
6057 #define CALL_CopyConvolutionFilter1D(disp, parameters) \
6058 (* GET_CopyConvolutionFilter1D(disp)) parameters
6059 static INLINE _glptr_CopyConvolutionFilter1D GET_CopyConvolutionFilter1D(struct _glapi_table *disp) {
6060 return (_glptr_CopyConvolutionFilter1D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter1D));
6061 }
6062
6063 static INLINE void SET_CopyConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
6064 SET_by_offset(disp, _gloffset_CopyConvolutionFilter1D, fn);
6065 }
6066
6067 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter2D)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
6068 #define CALL_CopyConvolutionFilter2D(disp, parameters) \
6069 (* GET_CopyConvolutionFilter2D(disp)) parameters
6070 static INLINE _glptr_CopyConvolutionFilter2D GET_CopyConvolutionFilter2D(struct _glapi_table *disp) {
6071 return (_glptr_CopyConvolutionFilter2D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter2D));
6072 }
6073
6074 static INLINE void SET_CopyConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei)) {
6075 SET_by_offset(disp, _gloffset_CopyConvolutionFilter2D, fn);
6076 }
6077
6078 typedef void (GLAPIENTRYP _glptr_GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *);
6079 #define CALL_GetConvolutionFilter(disp, parameters) \
6080 (* GET_GetConvolutionFilter(disp)) parameters
6081 static INLINE _glptr_GetConvolutionFilter GET_GetConvolutionFilter(struct _glapi_table *disp) {
6082 return (_glptr_GetConvolutionFilter) (GET_by_offset(disp, _gloffset_GetConvolutionFilter));
6083 }
6084
6085 static INLINE void SET_GetConvolutionFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
6086 SET_by_offset(disp, _gloffset_GetConvolutionFilter, fn);
6087 }
6088
6089 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *);
6090 #define CALL_GetConvolutionParameterfv(disp, parameters) \
6091 (* GET_GetConvolutionParameterfv(disp)) parameters
6092 static INLINE _glptr_GetConvolutionParameterfv GET_GetConvolutionParameterfv(struct _glapi_table *disp) {
6093 return (_glptr_GetConvolutionParameterfv) (GET_by_offset(disp, _gloffset_GetConvolutionParameterfv));
6094 }
6095
6096 static INLINE void SET_GetConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
6097 SET_by_offset(disp, _gloffset_GetConvolutionParameterfv, fn);
6098 }
6099
6100 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameteriv)(GLenum, GLenum, GLint *);
6101 #define CALL_GetConvolutionParameteriv(disp, parameters) \
6102 (* GET_GetConvolutionParameteriv(disp)) parameters
6103 static INLINE _glptr_GetConvolutionParameteriv GET_GetConvolutionParameteriv(struct _glapi_table *disp) {
6104 return (_glptr_GetConvolutionParameteriv) (GET_by_offset(disp, _gloffset_GetConvolutionParameteriv));
6105 }
6106
6107 static INLINE void SET_GetConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
6108 SET_by_offset(disp, _gloffset_GetConvolutionParameteriv, fn);
6109 }
6110
6111 typedef void (GLAPIENTRYP _glptr_GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
6112 #define CALL_GetSeparableFilter(disp, parameters) \
6113 (* GET_GetSeparableFilter(disp)) parameters
6114 static INLINE _glptr_GetSeparableFilter GET_GetSeparableFilter(struct _glapi_table *disp) {
6115 return (_glptr_GetSeparableFilter) (GET_by_offset(disp, _gloffset_GetSeparableFilter));
6116 }
6117
6118 static INLINE void SET_GetSeparableFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *)) {
6119 SET_by_offset(disp, _gloffset_GetSeparableFilter, fn);
6120 }
6121
6122 typedef void (GLAPIENTRYP _glptr_SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
6123 #define CALL_SeparableFilter2D(disp, parameters) \
6124 (* GET_SeparableFilter2D(disp)) parameters
6125 static INLINE _glptr_SeparableFilter2D GET_SeparableFilter2D(struct _glapi_table *disp) {
6126 return (_glptr_SeparableFilter2D) (GET_by_offset(disp, _gloffset_SeparableFilter2D));
6127 }
6128
6129 static INLINE void SET_SeparableFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *)) {
6130 SET_by_offset(disp, _gloffset_SeparableFilter2D, fn);
6131 }
6132
6133 typedef void (GLAPIENTRYP _glptr_GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
6134 #define CALL_GetHistogram(disp, parameters) \
6135 (* GET_GetHistogram(disp)) parameters
6136 static INLINE _glptr_GetHistogram GET_GetHistogram(struct _glapi_table *disp) {
6137 return (_glptr_GetHistogram) (GET_by_offset(disp, _gloffset_GetHistogram));
6138 }
6139
6140 static INLINE void SET_GetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
6141 SET_by_offset(disp, _gloffset_GetHistogram, fn);
6142 }
6143
6144 typedef void (GLAPIENTRYP _glptr_GetHistogramParameterfv)(GLenum, GLenum, GLfloat *);
6145 #define CALL_GetHistogramParameterfv(disp, parameters) \
6146 (* GET_GetHistogramParameterfv(disp)) parameters
6147 static INLINE _glptr_GetHistogramParameterfv GET_GetHistogramParameterfv(struct _glapi_table *disp) {
6148 return (_glptr_GetHistogramParameterfv) (GET_by_offset(disp, _gloffset_GetHistogramParameterfv));
6149 }
6150
6151 static INLINE void SET_GetHistogramParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
6152 SET_by_offset(disp, _gloffset_GetHistogramParameterfv, fn);
6153 }
6154
6155 typedef void (GLAPIENTRYP _glptr_GetHistogramParameteriv)(GLenum, GLenum, GLint *);
6156 #define CALL_GetHistogramParameteriv(disp, parameters) \
6157 (* GET_GetHistogramParameteriv(disp)) parameters
6158 static INLINE _glptr_GetHistogramParameteriv GET_GetHistogramParameteriv(struct _glapi_table *disp) {
6159 return (_glptr_GetHistogramParameteriv) (GET_by_offset(disp, _gloffset_GetHistogramParameteriv));
6160 }
6161
6162 static INLINE void SET_GetHistogramParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
6163 SET_by_offset(disp, _gloffset_GetHistogramParameteriv, fn);
6164 }
6165
6166 typedef void (GLAPIENTRYP _glptr_GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
6167 #define CALL_GetMinmax(disp, parameters) \
6168 (* GET_GetMinmax(disp)) parameters
6169 static INLINE _glptr_GetMinmax GET_GetMinmax(struct _glapi_table *disp) {
6170 return (_glptr_GetMinmax) (GET_by_offset(disp, _gloffset_GetMinmax));
6171 }
6172
6173 static INLINE void SET_GetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
6174 SET_by_offset(disp, _gloffset_GetMinmax, fn);
6175 }
6176
6177 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *);
6178 #define CALL_GetMinmaxParameterfv(disp, parameters) \
6179 (* GET_GetMinmaxParameterfv(disp)) parameters
6180 static INLINE _glptr_GetMinmaxParameterfv GET_GetMinmaxParameterfv(struct _glapi_table *disp) {
6181 return (_glptr_GetMinmaxParameterfv) (GET_by_offset(disp, _gloffset_GetMinmaxParameterfv));
6182 }
6183
6184 static INLINE void SET_GetMinmaxParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
6185 SET_by_offset(disp, _gloffset_GetMinmaxParameterfv, fn);
6186 }
6187
6188 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameteriv)(GLenum, GLenum, GLint *);
6189 #define CALL_GetMinmaxParameteriv(disp, parameters) \
6190 (* GET_GetMinmaxParameteriv(disp)) parameters
6191 static INLINE _glptr_GetMinmaxParameteriv GET_GetMinmaxParameteriv(struct _glapi_table *disp) {
6192 return (_glptr_GetMinmaxParameteriv) (GET_by_offset(disp, _gloffset_GetMinmaxParameteriv));
6193 }
6194
6195 static INLINE void SET_GetMinmaxParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
6196 SET_by_offset(disp, _gloffset_GetMinmaxParameteriv, fn);
6197 }
6198
6199 typedef void (GLAPIENTRYP _glptr_Histogram)(GLenum, GLsizei, GLenum, GLboolean);
6200 #define CALL_Histogram(disp, parameters) \
6201 (* GET_Histogram(disp)) parameters
6202 static INLINE _glptr_Histogram GET_Histogram(struct _glapi_table *disp) {
6203 return (_glptr_Histogram) (GET_by_offset(disp, _gloffset_Histogram));
6204 }
6205
6206 static INLINE void SET_Histogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLboolean)) {
6207 SET_by_offset(disp, _gloffset_Histogram, fn);
6208 }
6209
6210 typedef void (GLAPIENTRYP _glptr_Minmax)(GLenum, GLenum, GLboolean);
6211 #define CALL_Minmax(disp, parameters) \
6212 (* GET_Minmax(disp)) parameters
6213 static INLINE _glptr_Minmax GET_Minmax(struct _glapi_table *disp) {
6214 return (_glptr_Minmax) (GET_by_offset(disp, _gloffset_Minmax));
6215 }
6216
6217 static INLINE void SET_Minmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLboolean)) {
6218 SET_by_offset(disp, _gloffset_Minmax, fn);
6219 }
6220
6221 typedef void (GLAPIENTRYP _glptr_ResetHistogram)(GLenum);
6222 #define CALL_ResetHistogram(disp, parameters) \
6223 (* GET_ResetHistogram(disp)) parameters
6224 static INLINE _glptr_ResetHistogram GET_ResetHistogram(struct _glapi_table *disp) {
6225 return (_glptr_ResetHistogram) (GET_by_offset(disp, _gloffset_ResetHistogram));
6226 }
6227
6228 static INLINE void SET_ResetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
6229 SET_by_offset(disp, _gloffset_ResetHistogram, fn);
6230 }
6231
6232 typedef void (GLAPIENTRYP _glptr_ResetMinmax)(GLenum);
6233 #define CALL_ResetMinmax(disp, parameters) \
6234 (* GET_ResetMinmax(disp)) parameters
6235 static INLINE _glptr_ResetMinmax GET_ResetMinmax(struct _glapi_table *disp) {
6236 return (_glptr_ResetMinmax) (GET_by_offset(disp, _gloffset_ResetMinmax));
6237 }
6238
6239 static INLINE void SET_ResetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
6240 SET_by_offset(disp, _gloffset_ResetMinmax, fn);
6241 }
6242
6243 typedef void (GLAPIENTRYP _glptr_TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
6244 #define CALL_TexImage3D(disp, parameters) \
6245 (* GET_TexImage3D(disp)) parameters
6246 static INLINE _glptr_TexImage3D GET_TexImage3D(struct _glapi_table *disp) {
6247 return (_glptr_TexImage3D) (GET_by_offset(disp, _gloffset_TexImage3D));
6248 }
6249
6250 static INLINE void SET_TexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
6251 SET_by_offset(disp, _gloffset_TexImage3D, fn);
6252 }
6253
6254 typedef void (GLAPIENTRYP _glptr_TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
6255 #define CALL_TexSubImage3D(disp, parameters) \
6256 (* GET_TexSubImage3D(disp)) parameters
6257 static INLINE _glptr_TexSubImage3D GET_TexSubImage3D(struct _glapi_table *disp) {
6258 return (_glptr_TexSubImage3D) (GET_by_offset(disp, _gloffset_TexSubImage3D));
6259 }
6260
6261 static INLINE void SET_TexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
6262 SET_by_offset(disp, _gloffset_TexSubImage3D, fn);
6263 }
6264
6265 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
6266 #define CALL_CopyTexSubImage3D(disp, parameters) \
6267 (* GET_CopyTexSubImage3D(disp)) parameters
6268 static INLINE _glptr_CopyTexSubImage3D GET_CopyTexSubImage3D(struct _glapi_table *disp) {
6269 return (_glptr_CopyTexSubImage3D) (GET_by_offset(disp, _gloffset_CopyTexSubImage3D));
6270 }
6271
6272 static INLINE void SET_CopyTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
6273 SET_by_offset(disp, _gloffset_CopyTexSubImage3D, fn);
6274 }
6275
6276 typedef void (GLAPIENTRYP _glptr_ActiveTextureARB)(GLenum);
6277 #define CALL_ActiveTextureARB(disp, parameters) \
6278 (* GET_ActiveTextureARB(disp)) parameters
6279 static INLINE _glptr_ActiveTextureARB GET_ActiveTextureARB(struct _glapi_table *disp) {
6280 return (_glptr_ActiveTextureARB) (GET_by_offset(disp, _gloffset_ActiveTextureARB));
6281 }
6282
6283 static INLINE void SET_ActiveTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
6284 SET_by_offset(disp, _gloffset_ActiveTextureARB, fn);
6285 }
6286
6287 typedef void (GLAPIENTRYP _glptr_ClientActiveTextureARB)(GLenum);
6288 #define CALL_ClientActiveTextureARB(disp, parameters) \
6289 (* GET_ClientActiveTextureARB(disp)) parameters
6290 static INLINE _glptr_ClientActiveTextureARB GET_ClientActiveTextureARB(struct _glapi_table *disp) {
6291 return (_glptr_ClientActiveTextureARB) (GET_by_offset(disp, _gloffset_ClientActiveTextureARB));
6292 }
6293
6294 static INLINE void SET_ClientActiveTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
6295 SET_by_offset(disp, _gloffset_ClientActiveTextureARB, fn);
6296 }
6297
6298 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dARB)(GLenum, GLdouble);
6299 #define CALL_MultiTexCoord1dARB(disp, parameters) \
6300 (* GET_MultiTexCoord1dARB(disp)) parameters
6301 static INLINE _glptr_MultiTexCoord1dARB GET_MultiTexCoord1dARB(struct _glapi_table *disp) {
6302 return (_glptr_MultiTexCoord1dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1dARB));
6303 }
6304
6305 static INLINE void SET_MultiTexCoord1dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble)) {
6306 SET_by_offset(disp, _gloffset_MultiTexCoord1dARB, fn);
6307 }
6308
6309 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dvARB)(GLenum, const GLdouble *);
6310 #define CALL_MultiTexCoord1dvARB(disp, parameters) \
6311 (* GET_MultiTexCoord1dvARB(disp)) parameters
6312 static INLINE _glptr_MultiTexCoord1dvARB GET_MultiTexCoord1dvARB(struct _glapi_table *disp) {
6313 return (_glptr_MultiTexCoord1dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1dvARB));
6314 }
6315
6316 static INLINE void SET_MultiTexCoord1dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6317 SET_by_offset(disp, _gloffset_MultiTexCoord1dvARB, fn);
6318 }
6319
6320 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fARB)(GLenum, GLfloat);
6321 #define CALL_MultiTexCoord1fARB(disp, parameters) \
6322 (* GET_MultiTexCoord1fARB(disp)) parameters
6323 static INLINE _glptr_MultiTexCoord1fARB GET_MultiTexCoord1fARB(struct _glapi_table *disp) {
6324 return (_glptr_MultiTexCoord1fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fARB));
6325 }
6326
6327 static INLINE void SET_MultiTexCoord1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
6328 SET_by_offset(disp, _gloffset_MultiTexCoord1fARB, fn);
6329 }
6330
6331 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fvARB)(GLenum, const GLfloat *);
6332 #define CALL_MultiTexCoord1fvARB(disp, parameters) \
6333 (* GET_MultiTexCoord1fvARB(disp)) parameters
6334 static INLINE _glptr_MultiTexCoord1fvARB GET_MultiTexCoord1fvARB(struct _glapi_table *disp) {
6335 return (_glptr_MultiTexCoord1fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fvARB));
6336 }
6337
6338 static INLINE void SET_MultiTexCoord1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6339 SET_by_offset(disp, _gloffset_MultiTexCoord1fvARB, fn);
6340 }
6341
6342 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1iARB)(GLenum, GLint);
6343 #define CALL_MultiTexCoord1iARB(disp, parameters) \
6344 (* GET_MultiTexCoord1iARB(disp)) parameters
6345 static INLINE _glptr_MultiTexCoord1iARB GET_MultiTexCoord1iARB(struct _glapi_table *disp) {
6346 return (_glptr_MultiTexCoord1iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1iARB));
6347 }
6348
6349 static INLINE void SET_MultiTexCoord1iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
6350 SET_by_offset(disp, _gloffset_MultiTexCoord1iARB, fn);
6351 }
6352
6353 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1ivARB)(GLenum, const GLint *);
6354 #define CALL_MultiTexCoord1ivARB(disp, parameters) \
6355 (* GET_MultiTexCoord1ivARB(disp)) parameters
6356 static INLINE _glptr_MultiTexCoord1ivARB GET_MultiTexCoord1ivARB(struct _glapi_table *disp) {
6357 return (_glptr_MultiTexCoord1ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1ivARB));
6358 }
6359
6360 static INLINE void SET_MultiTexCoord1ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6361 SET_by_offset(disp, _gloffset_MultiTexCoord1ivARB, fn);
6362 }
6363
6364 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1sARB)(GLenum, GLshort);
6365 #define CALL_MultiTexCoord1sARB(disp, parameters) \
6366 (* GET_MultiTexCoord1sARB(disp)) parameters
6367 static INLINE _glptr_MultiTexCoord1sARB GET_MultiTexCoord1sARB(struct _glapi_table *disp) {
6368 return (_glptr_MultiTexCoord1sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1sARB));
6369 }
6370
6371 static INLINE void SET_MultiTexCoord1sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort)) {
6372 SET_by_offset(disp, _gloffset_MultiTexCoord1sARB, fn);
6373 }
6374
6375 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1svARB)(GLenum, const GLshort *);
6376 #define CALL_MultiTexCoord1svARB(disp, parameters) \
6377 (* GET_MultiTexCoord1svARB(disp)) parameters
6378 static INLINE _glptr_MultiTexCoord1svARB GET_MultiTexCoord1svARB(struct _glapi_table *disp) {
6379 return (_glptr_MultiTexCoord1svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1svARB));
6380 }
6381
6382 static INLINE void SET_MultiTexCoord1svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6383 SET_by_offset(disp, _gloffset_MultiTexCoord1svARB, fn);
6384 }
6385
6386 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dARB)(GLenum, GLdouble, GLdouble);
6387 #define CALL_MultiTexCoord2dARB(disp, parameters) \
6388 (* GET_MultiTexCoord2dARB(disp)) parameters
6389 static INLINE _glptr_MultiTexCoord2dARB GET_MultiTexCoord2dARB(struct _glapi_table *disp) {
6390 return (_glptr_MultiTexCoord2dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2dARB));
6391 }
6392
6393 static INLINE void SET_MultiTexCoord2dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble)) {
6394 SET_by_offset(disp, _gloffset_MultiTexCoord2dARB, fn);
6395 }
6396
6397 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dvARB)(GLenum, const GLdouble *);
6398 #define CALL_MultiTexCoord2dvARB(disp, parameters) \
6399 (* GET_MultiTexCoord2dvARB(disp)) parameters
6400 static INLINE _glptr_MultiTexCoord2dvARB GET_MultiTexCoord2dvARB(struct _glapi_table *disp) {
6401 return (_glptr_MultiTexCoord2dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2dvARB));
6402 }
6403
6404 static INLINE void SET_MultiTexCoord2dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6405 SET_by_offset(disp, _gloffset_MultiTexCoord2dvARB, fn);
6406 }
6407
6408 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fARB)(GLenum, GLfloat, GLfloat);
6409 #define CALL_MultiTexCoord2fARB(disp, parameters) \
6410 (* GET_MultiTexCoord2fARB(disp)) parameters
6411 static INLINE _glptr_MultiTexCoord2fARB GET_MultiTexCoord2fARB(struct _glapi_table *disp) {
6412 return (_glptr_MultiTexCoord2fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fARB));
6413 }
6414
6415 static INLINE void SET_MultiTexCoord2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat)) {
6416 SET_by_offset(disp, _gloffset_MultiTexCoord2fARB, fn);
6417 }
6418
6419 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fvARB)(GLenum, const GLfloat *);
6420 #define CALL_MultiTexCoord2fvARB(disp, parameters) \
6421 (* GET_MultiTexCoord2fvARB(disp)) parameters
6422 static INLINE _glptr_MultiTexCoord2fvARB GET_MultiTexCoord2fvARB(struct _glapi_table *disp) {
6423 return (_glptr_MultiTexCoord2fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fvARB));
6424 }
6425
6426 static INLINE void SET_MultiTexCoord2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6427 SET_by_offset(disp, _gloffset_MultiTexCoord2fvARB, fn);
6428 }
6429
6430 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2iARB)(GLenum, GLint, GLint);
6431 #define CALL_MultiTexCoord2iARB(disp, parameters) \
6432 (* GET_MultiTexCoord2iARB(disp)) parameters
6433 static INLINE _glptr_MultiTexCoord2iARB GET_MultiTexCoord2iARB(struct _glapi_table *disp) {
6434 return (_glptr_MultiTexCoord2iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2iARB));
6435 }
6436
6437 static INLINE void SET_MultiTexCoord2iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
6438 SET_by_offset(disp, _gloffset_MultiTexCoord2iARB, fn);
6439 }
6440
6441 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2ivARB)(GLenum, const GLint *);
6442 #define CALL_MultiTexCoord2ivARB(disp, parameters) \
6443 (* GET_MultiTexCoord2ivARB(disp)) parameters
6444 static INLINE _glptr_MultiTexCoord2ivARB GET_MultiTexCoord2ivARB(struct _glapi_table *disp) {
6445 return (_glptr_MultiTexCoord2ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2ivARB));
6446 }
6447
6448 static INLINE void SET_MultiTexCoord2ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6449 SET_by_offset(disp, _gloffset_MultiTexCoord2ivARB, fn);
6450 }
6451
6452 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2sARB)(GLenum, GLshort, GLshort);
6453 #define CALL_MultiTexCoord2sARB(disp, parameters) \
6454 (* GET_MultiTexCoord2sARB(disp)) parameters
6455 static INLINE _glptr_MultiTexCoord2sARB GET_MultiTexCoord2sARB(struct _glapi_table *disp) {
6456 return (_glptr_MultiTexCoord2sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2sARB));
6457 }
6458
6459 static INLINE void SET_MultiTexCoord2sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort)) {
6460 SET_by_offset(disp, _gloffset_MultiTexCoord2sARB, fn);
6461 }
6462
6463 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2svARB)(GLenum, const GLshort *);
6464 #define CALL_MultiTexCoord2svARB(disp, parameters) \
6465 (* GET_MultiTexCoord2svARB(disp)) parameters
6466 static INLINE _glptr_MultiTexCoord2svARB GET_MultiTexCoord2svARB(struct _glapi_table *disp) {
6467 return (_glptr_MultiTexCoord2svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2svARB));
6468 }
6469
6470 static INLINE void SET_MultiTexCoord2svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6471 SET_by_offset(disp, _gloffset_MultiTexCoord2svARB, fn);
6472 }
6473
6474 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dARB)(GLenum, GLdouble, GLdouble, GLdouble);
6475 #define CALL_MultiTexCoord3dARB(disp, parameters) \
6476 (* GET_MultiTexCoord3dARB(disp)) parameters
6477 static INLINE _glptr_MultiTexCoord3dARB GET_MultiTexCoord3dARB(struct _glapi_table *disp) {
6478 return (_glptr_MultiTexCoord3dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3dARB));
6479 }
6480
6481 static INLINE void SET_MultiTexCoord3dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble)) {
6482 SET_by_offset(disp, _gloffset_MultiTexCoord3dARB, fn);
6483 }
6484
6485 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dvARB)(GLenum, const GLdouble *);
6486 #define CALL_MultiTexCoord3dvARB(disp, parameters) \
6487 (* GET_MultiTexCoord3dvARB(disp)) parameters
6488 static INLINE _glptr_MultiTexCoord3dvARB GET_MultiTexCoord3dvARB(struct _glapi_table *disp) {
6489 return (_glptr_MultiTexCoord3dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3dvARB));
6490 }
6491
6492 static INLINE void SET_MultiTexCoord3dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6493 SET_by_offset(disp, _gloffset_MultiTexCoord3dvARB, fn);
6494 }
6495
6496 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fARB)(GLenum, GLfloat, GLfloat, GLfloat);
6497 #define CALL_MultiTexCoord3fARB(disp, parameters) \
6498 (* GET_MultiTexCoord3fARB(disp)) parameters
6499 static INLINE _glptr_MultiTexCoord3fARB GET_MultiTexCoord3fARB(struct _glapi_table *disp) {
6500 return (_glptr_MultiTexCoord3fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fARB));
6501 }
6502
6503 static INLINE void SET_MultiTexCoord3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat)) {
6504 SET_by_offset(disp, _gloffset_MultiTexCoord3fARB, fn);
6505 }
6506
6507 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fvARB)(GLenum, const GLfloat *);
6508 #define CALL_MultiTexCoord3fvARB(disp, parameters) \
6509 (* GET_MultiTexCoord3fvARB(disp)) parameters
6510 static INLINE _glptr_MultiTexCoord3fvARB GET_MultiTexCoord3fvARB(struct _glapi_table *disp) {
6511 return (_glptr_MultiTexCoord3fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fvARB));
6512 }
6513
6514 static INLINE void SET_MultiTexCoord3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6515 SET_by_offset(disp, _gloffset_MultiTexCoord3fvARB, fn);
6516 }
6517
6518 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3iARB)(GLenum, GLint, GLint, GLint);
6519 #define CALL_MultiTexCoord3iARB(disp, parameters) \
6520 (* GET_MultiTexCoord3iARB(disp)) parameters
6521 static INLINE _glptr_MultiTexCoord3iARB GET_MultiTexCoord3iARB(struct _glapi_table *disp) {
6522 return (_glptr_MultiTexCoord3iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3iARB));
6523 }
6524
6525 static INLINE void SET_MultiTexCoord3iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint)) {
6526 SET_by_offset(disp, _gloffset_MultiTexCoord3iARB, fn);
6527 }
6528
6529 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3ivARB)(GLenum, const GLint *);
6530 #define CALL_MultiTexCoord3ivARB(disp, parameters) \
6531 (* GET_MultiTexCoord3ivARB(disp)) parameters
6532 static INLINE _glptr_MultiTexCoord3ivARB GET_MultiTexCoord3ivARB(struct _glapi_table *disp) {
6533 return (_glptr_MultiTexCoord3ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3ivARB));
6534 }
6535
6536 static INLINE void SET_MultiTexCoord3ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6537 SET_by_offset(disp, _gloffset_MultiTexCoord3ivARB, fn);
6538 }
6539
6540 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3sARB)(GLenum, GLshort, GLshort, GLshort);
6541 #define CALL_MultiTexCoord3sARB(disp, parameters) \
6542 (* GET_MultiTexCoord3sARB(disp)) parameters
6543 static INLINE _glptr_MultiTexCoord3sARB GET_MultiTexCoord3sARB(struct _glapi_table *disp) {
6544 return (_glptr_MultiTexCoord3sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3sARB));
6545 }
6546
6547 static INLINE void SET_MultiTexCoord3sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort)) {
6548 SET_by_offset(disp, _gloffset_MultiTexCoord3sARB, fn);
6549 }
6550
6551 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3svARB)(GLenum, const GLshort *);
6552 #define CALL_MultiTexCoord3svARB(disp, parameters) \
6553 (* GET_MultiTexCoord3svARB(disp)) parameters
6554 static INLINE _glptr_MultiTexCoord3svARB GET_MultiTexCoord3svARB(struct _glapi_table *disp) {
6555 return (_glptr_MultiTexCoord3svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3svARB));
6556 }
6557
6558 static INLINE void SET_MultiTexCoord3svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6559 SET_by_offset(disp, _gloffset_MultiTexCoord3svARB, fn);
6560 }
6561
6562 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dARB)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
6563 #define CALL_MultiTexCoord4dARB(disp, parameters) \
6564 (* GET_MultiTexCoord4dARB(disp)) parameters
6565 static INLINE _glptr_MultiTexCoord4dARB GET_MultiTexCoord4dARB(struct _glapi_table *disp) {
6566 return (_glptr_MultiTexCoord4dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4dARB));
6567 }
6568
6569 static INLINE void SET_MultiTexCoord4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble)) {
6570 SET_by_offset(disp, _gloffset_MultiTexCoord4dARB, fn);
6571 }
6572
6573 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dvARB)(GLenum, const GLdouble *);
6574 #define CALL_MultiTexCoord4dvARB(disp, parameters) \
6575 (* GET_MultiTexCoord4dvARB(disp)) parameters
6576 static INLINE _glptr_MultiTexCoord4dvARB GET_MultiTexCoord4dvARB(struct _glapi_table *disp) {
6577 return (_glptr_MultiTexCoord4dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4dvARB));
6578 }
6579
6580 static INLINE void SET_MultiTexCoord4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
6581 SET_by_offset(disp, _gloffset_MultiTexCoord4dvARB, fn);
6582 }
6583
6584 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fARB)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
6585 #define CALL_MultiTexCoord4fARB(disp, parameters) \
6586 (* GET_MultiTexCoord4fARB(disp)) parameters
6587 static INLINE _glptr_MultiTexCoord4fARB GET_MultiTexCoord4fARB(struct _glapi_table *disp) {
6588 return (_glptr_MultiTexCoord4fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fARB));
6589 }
6590
6591 static INLINE void SET_MultiTexCoord4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat)) {
6592 SET_by_offset(disp, _gloffset_MultiTexCoord4fARB, fn);
6593 }
6594
6595 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fvARB)(GLenum, const GLfloat *);
6596 #define CALL_MultiTexCoord4fvARB(disp, parameters) \
6597 (* GET_MultiTexCoord4fvARB(disp)) parameters
6598 static INLINE _glptr_MultiTexCoord4fvARB GET_MultiTexCoord4fvARB(struct _glapi_table *disp) {
6599 return (_glptr_MultiTexCoord4fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fvARB));
6600 }
6601
6602 static INLINE void SET_MultiTexCoord4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6603 SET_by_offset(disp, _gloffset_MultiTexCoord4fvARB, fn);
6604 }
6605
6606 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4iARB)(GLenum, GLint, GLint, GLint, GLint);
6607 #define CALL_MultiTexCoord4iARB(disp, parameters) \
6608 (* GET_MultiTexCoord4iARB(disp)) parameters
6609 static INLINE _glptr_MultiTexCoord4iARB GET_MultiTexCoord4iARB(struct _glapi_table *disp) {
6610 return (_glptr_MultiTexCoord4iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4iARB));
6611 }
6612
6613 static INLINE void SET_MultiTexCoord4iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
6614 SET_by_offset(disp, _gloffset_MultiTexCoord4iARB, fn);
6615 }
6616
6617 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4ivARB)(GLenum, const GLint *);
6618 #define CALL_MultiTexCoord4ivARB(disp, parameters) \
6619 (* GET_MultiTexCoord4ivARB(disp)) parameters
6620 static INLINE _glptr_MultiTexCoord4ivARB GET_MultiTexCoord4ivARB(struct _glapi_table *disp) {
6621 return (_glptr_MultiTexCoord4ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4ivARB));
6622 }
6623
6624 static INLINE void SET_MultiTexCoord4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6625 SET_by_offset(disp, _gloffset_MultiTexCoord4ivARB, fn);
6626 }
6627
6628 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4sARB)(GLenum, GLshort, GLshort, GLshort, GLshort);
6629 #define CALL_MultiTexCoord4sARB(disp, parameters) \
6630 (* GET_MultiTexCoord4sARB(disp)) parameters
6631 static INLINE _glptr_MultiTexCoord4sARB GET_MultiTexCoord4sARB(struct _glapi_table *disp) {
6632 return (_glptr_MultiTexCoord4sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4sARB));
6633 }
6634
6635 static INLINE void SET_MultiTexCoord4sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort, GLshort)) {
6636 SET_by_offset(disp, _gloffset_MultiTexCoord4sARB, fn);
6637 }
6638
6639 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4svARB)(GLenum, const GLshort *);
6640 #define CALL_MultiTexCoord4svARB(disp, parameters) \
6641 (* GET_MultiTexCoord4svARB(disp)) parameters
6642 static INLINE _glptr_MultiTexCoord4svARB GET_MultiTexCoord4svARB(struct _glapi_table *disp) {
6643 return (_glptr_MultiTexCoord4svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4svARB));
6644 }
6645
6646 static INLINE void SET_MultiTexCoord4svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
6647 SET_by_offset(disp, _gloffset_MultiTexCoord4svARB, fn);
6648 }
6649
6650 typedef void (GLAPIENTRYP _glptr_AttachShader)(GLuint, GLuint);
6651 #define CALL_AttachShader(disp, parameters) \
6652 (* GET_AttachShader(disp)) parameters
6653 static INLINE _glptr_AttachShader GET_AttachShader(struct _glapi_table *disp) {
6654 return (_glptr_AttachShader) (GET_by_offset(disp, _gloffset_AttachShader));
6655 }
6656
6657 static INLINE void SET_AttachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
6658 SET_by_offset(disp, _gloffset_AttachShader, fn);
6659 }
6660
6661 typedef GLuint (GLAPIENTRYP _glptr_CreateProgram)(void);
6662 #define CALL_CreateProgram(disp, parameters) \
6663 (* GET_CreateProgram(disp)) parameters
6664 static INLINE _glptr_CreateProgram GET_CreateProgram(struct _glapi_table *disp) {
6665 return (_glptr_CreateProgram) (GET_by_offset(disp, _gloffset_CreateProgram));
6666 }
6667
6668 static INLINE void SET_CreateProgram(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(void)) {
6669 SET_by_offset(disp, _gloffset_CreateProgram, fn);
6670 }
6671
6672 typedef GLuint (GLAPIENTRYP _glptr_CreateShader)(GLenum);
6673 #define CALL_CreateShader(disp, parameters) \
6674 (* GET_CreateShader(disp)) parameters
6675 static INLINE _glptr_CreateShader GET_CreateShader(struct _glapi_table *disp) {
6676 return (_glptr_CreateShader) (GET_by_offset(disp, _gloffset_CreateShader));
6677 }
6678
6679 static INLINE void SET_CreateShader(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum)) {
6680 SET_by_offset(disp, _gloffset_CreateShader, fn);
6681 }
6682
6683 typedef void (GLAPIENTRYP _glptr_DeleteProgram)(GLuint);
6684 #define CALL_DeleteProgram(disp, parameters) \
6685 (* GET_DeleteProgram(disp)) parameters
6686 static INLINE _glptr_DeleteProgram GET_DeleteProgram(struct _glapi_table *disp) {
6687 return (_glptr_DeleteProgram) (GET_by_offset(disp, _gloffset_DeleteProgram));
6688 }
6689
6690 static INLINE void SET_DeleteProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6691 SET_by_offset(disp, _gloffset_DeleteProgram, fn);
6692 }
6693
6694 typedef void (GLAPIENTRYP _glptr_DeleteShader)(GLuint);
6695 #define CALL_DeleteShader(disp, parameters) \
6696 (* GET_DeleteShader(disp)) parameters
6697 static INLINE _glptr_DeleteShader GET_DeleteShader(struct _glapi_table *disp) {
6698 return (_glptr_DeleteShader) (GET_by_offset(disp, _gloffset_DeleteShader));
6699 }
6700
6701 static INLINE void SET_DeleteShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6702 SET_by_offset(disp, _gloffset_DeleteShader, fn);
6703 }
6704
6705 typedef void (GLAPIENTRYP _glptr_DetachShader)(GLuint, GLuint);
6706 #define CALL_DetachShader(disp, parameters) \
6707 (* GET_DetachShader(disp)) parameters
6708 static INLINE _glptr_DetachShader GET_DetachShader(struct _glapi_table *disp) {
6709 return (_glptr_DetachShader) (GET_by_offset(disp, _gloffset_DetachShader));
6710 }
6711
6712 static INLINE void SET_DetachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
6713 SET_by_offset(disp, _gloffset_DetachShader, fn);
6714 }
6715
6716 typedef void (GLAPIENTRYP _glptr_GetAttachedShaders)(GLuint, GLsizei, GLsizei *, GLuint *);
6717 #define CALL_GetAttachedShaders(disp, parameters) \
6718 (* GET_GetAttachedShaders(disp)) parameters
6719 static INLINE _glptr_GetAttachedShaders GET_GetAttachedShaders(struct _glapi_table *disp) {
6720 return (_glptr_GetAttachedShaders) (GET_by_offset(disp, _gloffset_GetAttachedShaders));
6721 }
6722
6723 static INLINE void SET_GetAttachedShaders(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLuint *)) {
6724 SET_by_offset(disp, _gloffset_GetAttachedShaders, fn);
6725 }
6726
6727 typedef void (GLAPIENTRYP _glptr_GetProgramInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
6728 #define CALL_GetProgramInfoLog(disp, parameters) \
6729 (* GET_GetProgramInfoLog(disp)) parameters
6730 static INLINE _glptr_GetProgramInfoLog GET_GetProgramInfoLog(struct _glapi_table *disp) {
6731 return (_glptr_GetProgramInfoLog) (GET_by_offset(disp, _gloffset_GetProgramInfoLog));
6732 }
6733
6734 static INLINE void SET_GetProgramInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
6735 SET_by_offset(disp, _gloffset_GetProgramInfoLog, fn);
6736 }
6737
6738 typedef void (GLAPIENTRYP _glptr_GetProgramiv)(GLuint, GLenum, GLint *);
6739 #define CALL_GetProgramiv(disp, parameters) \
6740 (* GET_GetProgramiv(disp)) parameters
6741 static INLINE _glptr_GetProgramiv GET_GetProgramiv(struct _glapi_table *disp) {
6742 return (_glptr_GetProgramiv) (GET_by_offset(disp, _gloffset_GetProgramiv));
6743 }
6744
6745 static INLINE void SET_GetProgramiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
6746 SET_by_offset(disp, _gloffset_GetProgramiv, fn);
6747 }
6748
6749 typedef void (GLAPIENTRYP _glptr_GetShaderInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
6750 #define CALL_GetShaderInfoLog(disp, parameters) \
6751 (* GET_GetShaderInfoLog(disp)) parameters
6752 static INLINE _glptr_GetShaderInfoLog GET_GetShaderInfoLog(struct _glapi_table *disp) {
6753 return (_glptr_GetShaderInfoLog) (GET_by_offset(disp, _gloffset_GetShaderInfoLog));
6754 }
6755
6756 static INLINE void SET_GetShaderInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
6757 SET_by_offset(disp, _gloffset_GetShaderInfoLog, fn);
6758 }
6759
6760 typedef void (GLAPIENTRYP _glptr_GetShaderiv)(GLuint, GLenum, GLint *);
6761 #define CALL_GetShaderiv(disp, parameters) \
6762 (* GET_GetShaderiv(disp)) parameters
6763 static INLINE _glptr_GetShaderiv GET_GetShaderiv(struct _glapi_table *disp) {
6764 return (_glptr_GetShaderiv) (GET_by_offset(disp, _gloffset_GetShaderiv));
6765 }
6766
6767 static INLINE void SET_GetShaderiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
6768 SET_by_offset(disp, _gloffset_GetShaderiv, fn);
6769 }
6770
6771 typedef GLboolean (GLAPIENTRYP _glptr_IsProgram)(GLuint);
6772 #define CALL_IsProgram(disp, parameters) \
6773 (* GET_IsProgram(disp)) parameters
6774 static INLINE _glptr_IsProgram GET_IsProgram(struct _glapi_table *disp) {
6775 return (_glptr_IsProgram) (GET_by_offset(disp, _gloffset_IsProgram));
6776 }
6777
6778 static INLINE void SET_IsProgram(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
6779 SET_by_offset(disp, _gloffset_IsProgram, fn);
6780 }
6781
6782 typedef GLboolean (GLAPIENTRYP _glptr_IsShader)(GLuint);
6783 #define CALL_IsShader(disp, parameters) \
6784 (* GET_IsShader(disp)) parameters
6785 static INLINE _glptr_IsShader GET_IsShader(struct _glapi_table *disp) {
6786 return (_glptr_IsShader) (GET_by_offset(disp, _gloffset_IsShader));
6787 }
6788
6789 static INLINE void SET_IsShader(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
6790 SET_by_offset(disp, _gloffset_IsShader, fn);
6791 }
6792
6793 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparate)(GLenum, GLenum, GLint, GLuint);
6794 #define CALL_StencilFuncSeparate(disp, parameters) \
6795 (* GET_StencilFuncSeparate(disp)) parameters
6796 static INLINE _glptr_StencilFuncSeparate GET_StencilFuncSeparate(struct _glapi_table *disp) {
6797 return (_glptr_StencilFuncSeparate) (GET_by_offset(disp, _gloffset_StencilFuncSeparate));
6798 }
6799
6800 static INLINE void SET_StencilFuncSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) {
6801 SET_by_offset(disp, _gloffset_StencilFuncSeparate, fn);
6802 }
6803
6804 typedef void (GLAPIENTRYP _glptr_StencilMaskSeparate)(GLenum, GLuint);
6805 #define CALL_StencilMaskSeparate(disp, parameters) \
6806 (* GET_StencilMaskSeparate(disp)) parameters
6807 static INLINE _glptr_StencilMaskSeparate GET_StencilMaskSeparate(struct _glapi_table *disp) {
6808 return (_glptr_StencilMaskSeparate) (GET_by_offset(disp, _gloffset_StencilMaskSeparate));
6809 }
6810
6811 static INLINE void SET_StencilMaskSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
6812 SET_by_offset(disp, _gloffset_StencilMaskSeparate, fn);
6813 }
6814
6815 typedef void (GLAPIENTRYP _glptr_StencilOpSeparate)(GLenum, GLenum, GLenum, GLenum);
6816 #define CALL_StencilOpSeparate(disp, parameters) \
6817 (* GET_StencilOpSeparate(disp)) parameters
6818 static INLINE _glptr_StencilOpSeparate GET_StencilOpSeparate(struct _glapi_table *disp) {
6819 return (_glptr_StencilOpSeparate) (GET_by_offset(disp, _gloffset_StencilOpSeparate));
6820 }
6821
6822 static INLINE void SET_StencilOpSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
6823 SET_by_offset(disp, _gloffset_StencilOpSeparate, fn);
6824 }
6825
6826 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6827 #define CALL_UniformMatrix2x3fv(disp, parameters) \
6828 (* GET_UniformMatrix2x3fv(disp)) parameters
6829 static INLINE _glptr_UniformMatrix2x3fv GET_UniformMatrix2x3fv(struct _glapi_table *disp) {
6830 return (_glptr_UniformMatrix2x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x3fv));
6831 }
6832
6833 static INLINE void SET_UniformMatrix2x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6834 SET_by_offset(disp, _gloffset_UniformMatrix2x3fv, fn);
6835 }
6836
6837 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6838 #define CALL_UniformMatrix2x4fv(disp, parameters) \
6839 (* GET_UniformMatrix2x4fv(disp)) parameters
6840 static INLINE _glptr_UniformMatrix2x4fv GET_UniformMatrix2x4fv(struct _glapi_table *disp) {
6841 return (_glptr_UniformMatrix2x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x4fv));
6842 }
6843
6844 static INLINE void SET_UniformMatrix2x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6845 SET_by_offset(disp, _gloffset_UniformMatrix2x4fv, fn);
6846 }
6847
6848 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6849 #define CALL_UniformMatrix3x2fv(disp, parameters) \
6850 (* GET_UniformMatrix3x2fv(disp)) parameters
6851 static INLINE _glptr_UniformMatrix3x2fv GET_UniformMatrix3x2fv(struct _glapi_table *disp) {
6852 return (_glptr_UniformMatrix3x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x2fv));
6853 }
6854
6855 static INLINE void SET_UniformMatrix3x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6856 SET_by_offset(disp, _gloffset_UniformMatrix3x2fv, fn);
6857 }
6858
6859 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6860 #define CALL_UniformMatrix3x4fv(disp, parameters) \
6861 (* GET_UniformMatrix3x4fv(disp)) parameters
6862 static INLINE _glptr_UniformMatrix3x4fv GET_UniformMatrix3x4fv(struct _glapi_table *disp) {
6863 return (_glptr_UniformMatrix3x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x4fv));
6864 }
6865
6866 static INLINE void SET_UniformMatrix3x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6867 SET_by_offset(disp, _gloffset_UniformMatrix3x4fv, fn);
6868 }
6869
6870 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6871 #define CALL_UniformMatrix4x2fv(disp, parameters) \
6872 (* GET_UniformMatrix4x2fv(disp)) parameters
6873 static INLINE _glptr_UniformMatrix4x2fv GET_UniformMatrix4x2fv(struct _glapi_table *disp) {
6874 return (_glptr_UniformMatrix4x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x2fv));
6875 }
6876
6877 static INLINE void SET_UniformMatrix4x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6878 SET_by_offset(disp, _gloffset_UniformMatrix4x2fv, fn);
6879 }
6880
6881 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
6882 #define CALL_UniformMatrix4x3fv(disp, parameters) \
6883 (* GET_UniformMatrix4x3fv(disp)) parameters
6884 static INLINE _glptr_UniformMatrix4x3fv GET_UniformMatrix4x3fv(struct _glapi_table *disp) {
6885 return (_glptr_UniformMatrix4x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x3fv));
6886 }
6887
6888 static INLINE void SET_UniformMatrix4x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
6889 SET_by_offset(disp, _gloffset_UniformMatrix4x3fv, fn);
6890 }
6891
6892 typedef void (GLAPIENTRYP _glptr_ClampColor)(GLenum, GLenum);
6893 #define CALL_ClampColor(disp, parameters) \
6894 (* GET_ClampColor(disp)) parameters
6895 static INLINE _glptr_ClampColor GET_ClampColor(struct _glapi_table *disp) {
6896 return (_glptr_ClampColor) (GET_by_offset(disp, _gloffset_ClampColor));
6897 }
6898
6899 static INLINE void SET_ClampColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
6900 SET_by_offset(disp, _gloffset_ClampColor, fn);
6901 }
6902
6903 typedef void (GLAPIENTRYP _glptr_ClearBufferfi)(GLenum, GLint, GLfloat, GLint);
6904 #define CALL_ClearBufferfi(disp, parameters) \
6905 (* GET_ClearBufferfi(disp)) parameters
6906 static INLINE _glptr_ClearBufferfi GET_ClearBufferfi(struct _glapi_table *disp) {
6907 return (_glptr_ClearBufferfi) (GET_by_offset(disp, _gloffset_ClearBufferfi));
6908 }
6909
6910 static INLINE void SET_ClearBufferfi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLfloat, GLint)) {
6911 SET_by_offset(disp, _gloffset_ClearBufferfi, fn);
6912 }
6913
6914 typedef void (GLAPIENTRYP _glptr_ClearBufferfv)(GLenum, GLint, const GLfloat *);
6915 #define CALL_ClearBufferfv(disp, parameters) \
6916 (* GET_ClearBufferfv(disp)) parameters
6917 static INLINE _glptr_ClearBufferfv GET_ClearBufferfv(struct _glapi_table *disp) {
6918 return (_glptr_ClearBufferfv) (GET_by_offset(disp, _gloffset_ClearBufferfv));
6919 }
6920
6921 static INLINE void SET_ClearBufferfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLfloat *)) {
6922 SET_by_offset(disp, _gloffset_ClearBufferfv, fn);
6923 }
6924
6925 typedef void (GLAPIENTRYP _glptr_ClearBufferiv)(GLenum, GLint, const GLint *);
6926 #define CALL_ClearBufferiv(disp, parameters) \
6927 (* GET_ClearBufferiv(disp)) parameters
6928 static INLINE _glptr_ClearBufferiv GET_ClearBufferiv(struct _glapi_table *disp) {
6929 return (_glptr_ClearBufferiv) (GET_by_offset(disp, _gloffset_ClearBufferiv));
6930 }
6931
6932 static INLINE void SET_ClearBufferiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLint *)) {
6933 SET_by_offset(disp, _gloffset_ClearBufferiv, fn);
6934 }
6935
6936 typedef void (GLAPIENTRYP _glptr_ClearBufferuiv)(GLenum, GLint, const GLuint *);
6937 #define CALL_ClearBufferuiv(disp, parameters) \
6938 (* GET_ClearBufferuiv(disp)) parameters
6939 static INLINE _glptr_ClearBufferuiv GET_ClearBufferuiv(struct _glapi_table *disp) {
6940 return (_glptr_ClearBufferuiv) (GET_by_offset(disp, _gloffset_ClearBufferuiv));
6941 }
6942
6943 static INLINE void SET_ClearBufferuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLuint *)) {
6944 SET_by_offset(disp, _gloffset_ClearBufferuiv, fn);
6945 }
6946
6947 typedef const GLubyte * (GLAPIENTRYP _glptr_GetStringi)(GLenum, GLuint);
6948 #define CALL_GetStringi(disp, parameters) \
6949 (* GET_GetStringi(disp)) parameters
6950 static INLINE _glptr_GetStringi GET_GetStringi(struct _glapi_table *disp) {
6951 return (_glptr_GetStringi) (GET_by_offset(disp, _gloffset_GetStringi));
6952 }
6953
6954 static INLINE void SET_GetStringi(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum, GLuint)) {
6955 SET_by_offset(disp, _gloffset_GetStringi, fn);
6956 }
6957
6958 typedef void (GLAPIENTRYP _glptr_TexBuffer)(GLenum, GLenum, GLuint);
6959 #define CALL_TexBuffer(disp, parameters) \
6960 (* GET_TexBuffer(disp)) parameters
6961 static INLINE _glptr_TexBuffer GET_TexBuffer(struct _glapi_table *disp) {
6962 return (_glptr_TexBuffer) (GET_by_offset(disp, _gloffset_TexBuffer));
6963 }
6964
6965 static INLINE void SET_TexBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
6966 SET_by_offset(disp, _gloffset_TexBuffer, fn);
6967 }
6968
6969 typedef void (GLAPIENTRYP _glptr_FramebufferTexture)(GLenum, GLenum, GLuint, GLint);
6970 #define CALL_FramebufferTexture(disp, parameters) \
6971 (* GET_FramebufferTexture(disp)) parameters
6972 static INLINE _glptr_FramebufferTexture GET_FramebufferTexture(struct _glapi_table *disp) {
6973 return (_glptr_FramebufferTexture) (GET_by_offset(disp, _gloffset_FramebufferTexture));
6974 }
6975
6976 static INLINE void SET_FramebufferTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint)) {
6977 SET_by_offset(disp, _gloffset_FramebufferTexture, fn);
6978 }
6979
6980 typedef void (GLAPIENTRYP _glptr_GetBufferParameteri64v)(GLenum, GLenum, GLint64 *);
6981 #define CALL_GetBufferParameteri64v(disp, parameters) \
6982 (* GET_GetBufferParameteri64v(disp)) parameters
6983 static INLINE _glptr_GetBufferParameteri64v GET_GetBufferParameteri64v(struct _glapi_table *disp) {
6984 return (_glptr_GetBufferParameteri64v) (GET_by_offset(disp, _gloffset_GetBufferParameteri64v));
6985 }
6986
6987 static INLINE void SET_GetBufferParameteri64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint64 *)) {
6988 SET_by_offset(disp, _gloffset_GetBufferParameteri64v, fn);
6989 }
6990
6991 typedef void (GLAPIENTRYP _glptr_GetInteger64i_v)(GLenum, GLuint, GLint64 *);
6992 #define CALL_GetInteger64i_v(disp, parameters) \
6993 (* GET_GetInteger64i_v(disp)) parameters
6994 static INLINE _glptr_GetInteger64i_v GET_GetInteger64i_v(struct _glapi_table *disp) {
6995 return (_glptr_GetInteger64i_v) (GET_by_offset(disp, _gloffset_GetInteger64i_v));
6996 }
6997
6998 static INLINE void SET_GetInteger64i_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint64 *)) {
6999 SET_by_offset(disp, _gloffset_GetInteger64i_v, fn);
7000 }
7001
7002 typedef void (GLAPIENTRYP _glptr_VertexAttribDivisor)(GLuint, GLuint);
7003 #define CALL_VertexAttribDivisor(disp, parameters) \
7004 (* GET_VertexAttribDivisor(disp)) parameters
7005 static INLINE _glptr_VertexAttribDivisor GET_VertexAttribDivisor(struct _glapi_table *disp) {
7006 return (_glptr_VertexAttribDivisor) (GET_by_offset(disp, _gloffset_VertexAttribDivisor));
7007 }
7008
7009 static INLINE void SET_VertexAttribDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
7010 SET_by_offset(disp, _gloffset_VertexAttribDivisor, fn);
7011 }
7012
7013 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixdARB)(const GLdouble *);
7014 #define CALL_LoadTransposeMatrixdARB(disp, parameters) \
7015 (* GET_LoadTransposeMatrixdARB(disp)) parameters
7016 static INLINE _glptr_LoadTransposeMatrixdARB GET_LoadTransposeMatrixdARB(struct _glapi_table *disp) {
7017 return (_glptr_LoadTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB));
7018 }
7019
7020 static INLINE void SET_LoadTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
7021 SET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB, fn);
7022 }
7023
7024 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixfARB)(const GLfloat *);
7025 #define CALL_LoadTransposeMatrixfARB(disp, parameters) \
7026 (* GET_LoadTransposeMatrixfARB(disp)) parameters
7027 static INLINE _glptr_LoadTransposeMatrixfARB GET_LoadTransposeMatrixfARB(struct _glapi_table *disp) {
7028 return (_glptr_LoadTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB));
7029 }
7030
7031 static INLINE void SET_LoadTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
7032 SET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB, fn);
7033 }
7034
7035 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixdARB)(const GLdouble *);
7036 #define CALL_MultTransposeMatrixdARB(disp, parameters) \
7037 (* GET_MultTransposeMatrixdARB(disp)) parameters
7038 static INLINE _glptr_MultTransposeMatrixdARB GET_MultTransposeMatrixdARB(struct _glapi_table *disp) {
7039 return (_glptr_MultTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixdARB));
7040 }
7041
7042 static INLINE void SET_MultTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
7043 SET_by_offset(disp, _gloffset_MultTransposeMatrixdARB, fn);
7044 }
7045
7046 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixfARB)(const GLfloat *);
7047 #define CALL_MultTransposeMatrixfARB(disp, parameters) \
7048 (* GET_MultTransposeMatrixfARB(disp)) parameters
7049 static INLINE _glptr_MultTransposeMatrixfARB GET_MultTransposeMatrixfARB(struct _glapi_table *disp) {
7050 return (_glptr_MultTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixfARB));
7051 }
7052
7053 static INLINE void SET_MultTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
7054 SET_by_offset(disp, _gloffset_MultTransposeMatrixfARB, fn);
7055 }
7056
7057 typedef void (GLAPIENTRYP _glptr_SampleCoverageARB)(GLclampf, GLboolean);
7058 #define CALL_SampleCoverageARB(disp, parameters) \
7059 (* GET_SampleCoverageARB(disp)) parameters
7060 static INLINE _glptr_SampleCoverageARB GET_SampleCoverageARB(struct _glapi_table *disp) {
7061 return (_glptr_SampleCoverageARB) (GET_by_offset(disp, _gloffset_SampleCoverageARB));
7062 }
7063
7064 static INLINE void SET_SampleCoverageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
7065 SET_by_offset(disp, _gloffset_SampleCoverageARB, fn);
7066 }
7067
7068 typedef void (GLAPIENTRYP _glptr_CompressedTexImage1DARB)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
7069 #define CALL_CompressedTexImage1DARB(disp, parameters) \
7070 (* GET_CompressedTexImage1DARB(disp)) parameters
7071 static INLINE _glptr_CompressedTexImage1DARB GET_CompressedTexImage1DARB(struct _glapi_table *disp) {
7072 return (_glptr_CompressedTexImage1DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage1DARB));
7073 }
7074
7075 static INLINE void SET_CompressedTexImage1DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *)) {
7076 SET_by_offset(disp, _gloffset_CompressedTexImage1DARB, fn);
7077 }
7078
7079 typedef void (GLAPIENTRYP _glptr_CompressedTexImage2DARB)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
7080 #define CALL_CompressedTexImage2DARB(disp, parameters) \
7081 (* GET_CompressedTexImage2DARB(disp)) parameters
7082 static INLINE _glptr_CompressedTexImage2DARB GET_CompressedTexImage2DARB(struct _glapi_table *disp) {
7083 return (_glptr_CompressedTexImage2DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage2DARB));
7084 }
7085
7086 static INLINE void SET_CompressedTexImage2DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) {
7087 SET_by_offset(disp, _gloffset_CompressedTexImage2DARB, fn);
7088 }
7089
7090 typedef void (GLAPIENTRYP _glptr_CompressedTexImage3DARB)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
7091 #define CALL_CompressedTexImage3DARB(disp, parameters) \
7092 (* GET_CompressedTexImage3DARB(disp)) parameters
7093 static INLINE _glptr_CompressedTexImage3DARB GET_CompressedTexImage3DARB(struct _glapi_table *disp) {
7094 return (_glptr_CompressedTexImage3DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage3DARB));
7095 }
7096
7097 static INLINE void SET_CompressedTexImage3DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) {
7098 SET_by_offset(disp, _gloffset_CompressedTexImage3DARB, fn);
7099 }
7100
7101 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage1DARB)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
7102 #define CALL_CompressedTexSubImage1DARB(disp, parameters) \
7103 (* GET_CompressedTexSubImage1DARB(disp)) parameters
7104 static INLINE _glptr_CompressedTexSubImage1DARB GET_CompressedTexSubImage1DARB(struct _glapi_table *disp) {
7105 return (_glptr_CompressedTexSubImage1DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage1DARB));
7106 }
7107
7108 static INLINE void SET_CompressedTexSubImage1DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *)) {
7109 SET_by_offset(disp, _gloffset_CompressedTexSubImage1DARB, fn);
7110 }
7111
7112 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage2DARB)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
7113 #define CALL_CompressedTexSubImage2DARB(disp, parameters) \
7114 (* GET_CompressedTexSubImage2DARB(disp)) parameters
7115 static INLINE _glptr_CompressedTexSubImage2DARB GET_CompressedTexSubImage2DARB(struct _glapi_table *disp) {
7116 return (_glptr_CompressedTexSubImage2DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage2DARB));
7117 }
7118
7119 static INLINE void SET_CompressedTexSubImage2DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
7120 SET_by_offset(disp, _gloffset_CompressedTexSubImage2DARB, fn);
7121 }
7122
7123 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage3DARB)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
7124 #define CALL_CompressedTexSubImage3DARB(disp, parameters) \
7125 (* GET_CompressedTexSubImage3DARB(disp)) parameters
7126 static INLINE _glptr_CompressedTexSubImage3DARB GET_CompressedTexSubImage3DARB(struct _glapi_table *disp) {
7127 return (_glptr_CompressedTexSubImage3DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage3DARB));
7128 }
7129
7130 static INLINE void SET_CompressedTexSubImage3DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
7131 SET_by_offset(disp, _gloffset_CompressedTexSubImage3DARB, fn);
7132 }
7133
7134 typedef void (GLAPIENTRYP _glptr_GetCompressedTexImageARB)(GLenum, GLint, GLvoid *);
7135 #define CALL_GetCompressedTexImageARB(disp, parameters) \
7136 (* GET_GetCompressedTexImageARB(disp)) parameters
7137 static INLINE _glptr_GetCompressedTexImageARB GET_GetCompressedTexImageARB(struct _glapi_table *disp) {
7138 return (_glptr_GetCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetCompressedTexImageARB));
7139 }
7140
7141 static INLINE void SET_GetCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLvoid *)) {
7142 SET_by_offset(disp, _gloffset_GetCompressedTexImageARB, fn);
7143 }
7144
7145 typedef void (GLAPIENTRYP _glptr_DisableVertexAttribArrayARB)(GLuint);
7146 #define CALL_DisableVertexAttribArrayARB(disp, parameters) \
7147 (* GET_DisableVertexAttribArrayARB(disp)) parameters
7148 static INLINE _glptr_DisableVertexAttribArrayARB GET_DisableVertexAttribArrayARB(struct _glapi_table *disp) {
7149 return (_glptr_DisableVertexAttribArrayARB) (GET_by_offset(disp, _gloffset_DisableVertexAttribArrayARB));
7150 }
7151
7152 static INLINE void SET_DisableVertexAttribArrayARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
7153 SET_by_offset(disp, _gloffset_DisableVertexAttribArrayARB, fn);
7154 }
7155
7156 typedef void (GLAPIENTRYP _glptr_EnableVertexAttribArrayARB)(GLuint);
7157 #define CALL_EnableVertexAttribArrayARB(disp, parameters) \
7158 (* GET_EnableVertexAttribArrayARB(disp)) parameters
7159 static INLINE _glptr_EnableVertexAttribArrayARB GET_EnableVertexAttribArrayARB(struct _glapi_table *disp) {
7160 return (_glptr_EnableVertexAttribArrayARB) (GET_by_offset(disp, _gloffset_EnableVertexAttribArrayARB));
7161 }
7162
7163 static INLINE void SET_EnableVertexAttribArrayARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
7164 SET_by_offset(disp, _gloffset_EnableVertexAttribArrayARB, fn);
7165 }
7166
7167 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterdvARB)(GLenum, GLuint, GLdouble *);
7168 #define CALL_GetProgramEnvParameterdvARB(disp, parameters) \
7169 (* GET_GetProgramEnvParameterdvARB(disp)) parameters
7170 static INLINE _glptr_GetProgramEnvParameterdvARB GET_GetProgramEnvParameterdvARB(struct _glapi_table *disp) {
7171 return (_glptr_GetProgramEnvParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB));
7172 }
7173
7174 static INLINE void SET_GetProgramEnvParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
7175 SET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB, fn);
7176 }
7177
7178 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterfvARB)(GLenum, GLuint, GLfloat *);
7179 #define CALL_GetProgramEnvParameterfvARB(disp, parameters) \
7180 (* GET_GetProgramEnvParameterfvARB(disp)) parameters
7181 static INLINE _glptr_GetProgramEnvParameterfvARB GET_GetProgramEnvParameterfvARB(struct _glapi_table *disp) {
7182 return (_glptr_GetProgramEnvParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB));
7183 }
7184
7185 static INLINE void SET_GetProgramEnvParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
7186 SET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB, fn);
7187 }
7188
7189 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterdvARB)(GLenum, GLuint, GLdouble *);
7190 #define CALL_GetProgramLocalParameterdvARB(disp, parameters) \
7191 (* GET_GetProgramLocalParameterdvARB(disp)) parameters
7192 static INLINE _glptr_GetProgramLocalParameterdvARB GET_GetProgramLocalParameterdvARB(struct _glapi_table *disp) {
7193 return (_glptr_GetProgramLocalParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB));
7194 }
7195
7196 static INLINE void SET_GetProgramLocalParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
7197 SET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB, fn);
7198 }
7199
7200 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterfvARB)(GLenum, GLuint, GLfloat *);
7201 #define CALL_GetProgramLocalParameterfvARB(disp, parameters) \
7202 (* GET_GetProgramLocalParameterfvARB(disp)) parameters
7203 static INLINE _glptr_GetProgramLocalParameterfvARB GET_GetProgramLocalParameterfvARB(struct _glapi_table *disp) {
7204 return (_glptr_GetProgramLocalParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB));
7205 }
7206
7207 static INLINE void SET_GetProgramLocalParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
7208 SET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB, fn);
7209 }
7210
7211 typedef void (GLAPIENTRYP _glptr_GetProgramStringARB)(GLenum, GLenum, GLvoid *);
7212 #define CALL_GetProgramStringARB(disp, parameters) \
7213 (* GET_GetProgramStringARB(disp)) parameters
7214 static INLINE _glptr_GetProgramStringARB GET_GetProgramStringARB(struct _glapi_table *disp) {
7215 return (_glptr_GetProgramStringARB) (GET_by_offset(disp, _gloffset_GetProgramStringARB));
7216 }
7217
7218 static INLINE void SET_GetProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid *)) {
7219 SET_by_offset(disp, _gloffset_GetProgramStringARB, fn);
7220 }
7221
7222 typedef void (GLAPIENTRYP _glptr_GetProgramivARB)(GLenum, GLenum, GLint *);
7223 #define CALL_GetProgramivARB(disp, parameters) \
7224 (* GET_GetProgramivARB(disp)) parameters
7225 static INLINE _glptr_GetProgramivARB GET_GetProgramivARB(struct _glapi_table *disp) {
7226 return (_glptr_GetProgramivARB) (GET_by_offset(disp, _gloffset_GetProgramivARB));
7227 }
7228
7229 static INLINE void SET_GetProgramivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
7230 SET_by_offset(disp, _gloffset_GetProgramivARB, fn);
7231 }
7232
7233 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvARB)(GLuint, GLenum, GLdouble *);
7234 #define CALL_GetVertexAttribdvARB(disp, parameters) \
7235 (* GET_GetVertexAttribdvARB(disp)) parameters
7236 static INLINE _glptr_GetVertexAttribdvARB GET_GetVertexAttribdvARB(struct _glapi_table *disp) {
7237 return (_glptr_GetVertexAttribdvARB) (GET_by_offset(disp, _gloffset_GetVertexAttribdvARB));
7238 }
7239
7240 static INLINE void SET_GetVertexAttribdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
7241 SET_by_offset(disp, _gloffset_GetVertexAttribdvARB, fn);
7242 }
7243
7244 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvARB)(GLuint, GLenum, GLfloat *);
7245 #define CALL_GetVertexAttribfvARB(disp, parameters) \
7246 (* GET_GetVertexAttribfvARB(disp)) parameters
7247 static INLINE _glptr_GetVertexAttribfvARB GET_GetVertexAttribfvARB(struct _glapi_table *disp) {
7248 return (_glptr_GetVertexAttribfvARB) (GET_by_offset(disp, _gloffset_GetVertexAttribfvARB));
7249 }
7250
7251 static INLINE void SET_GetVertexAttribfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
7252 SET_by_offset(disp, _gloffset_GetVertexAttribfvARB, fn);
7253 }
7254
7255 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivARB)(GLuint, GLenum, GLint *);
7256 #define CALL_GetVertexAttribivARB(disp, parameters) \
7257 (* GET_GetVertexAttribivARB(disp)) parameters
7258 static INLINE _glptr_GetVertexAttribivARB GET_GetVertexAttribivARB(struct _glapi_table *disp) {
7259 return (_glptr_GetVertexAttribivARB) (GET_by_offset(disp, _gloffset_GetVertexAttribivARB));
7260 }
7261
7262 static INLINE void SET_GetVertexAttribivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
7263 SET_by_offset(disp, _gloffset_GetVertexAttribivARB, fn);
7264 }
7265
7266 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
7267 #define CALL_ProgramEnvParameter4dARB(disp, parameters) \
7268 (* GET_ProgramEnvParameter4dARB(disp)) parameters
7269 static INLINE _glptr_ProgramEnvParameter4dARB GET_ProgramEnvParameter4dARB(struct _glapi_table *disp) {
7270 return (_glptr_ProgramEnvParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB));
7271 }
7272
7273 static INLINE void SET_ProgramEnvParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
7274 SET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB, fn);
7275 }
7276
7277 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dvARB)(GLenum, GLuint, const GLdouble *);
7278 #define CALL_ProgramEnvParameter4dvARB(disp, parameters) \
7279 (* GET_ProgramEnvParameter4dvARB(disp)) parameters
7280 static INLINE _glptr_ProgramEnvParameter4dvARB GET_ProgramEnvParameter4dvARB(struct _glapi_table *disp) {
7281 return (_glptr_ProgramEnvParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB));
7282 }
7283
7284 static INLINE void SET_ProgramEnvParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) {
7285 SET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB, fn);
7286 }
7287
7288 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
7289 #define CALL_ProgramEnvParameter4fARB(disp, parameters) \
7290 (* GET_ProgramEnvParameter4fARB(disp)) parameters
7291 static INLINE _glptr_ProgramEnvParameter4fARB GET_ProgramEnvParameter4fARB(struct _glapi_table *disp) {
7292 return (_glptr_ProgramEnvParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB));
7293 }
7294
7295 static INLINE void SET_ProgramEnvParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
7296 SET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB, fn);
7297 }
7298
7299 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fvARB)(GLenum, GLuint, const GLfloat *);
7300 #define CALL_ProgramEnvParameter4fvARB(disp, parameters) \
7301 (* GET_ProgramEnvParameter4fvARB(disp)) parameters
7302 static INLINE _glptr_ProgramEnvParameter4fvARB GET_ProgramEnvParameter4fvARB(struct _glapi_table *disp) {
7303 return (_glptr_ProgramEnvParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB));
7304 }
7305
7306 static INLINE void SET_ProgramEnvParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
7307 SET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB, fn);
7308 }
7309
7310 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
7311 #define CALL_ProgramLocalParameter4dARB(disp, parameters) \
7312 (* GET_ProgramLocalParameter4dARB(disp)) parameters
7313 static INLINE _glptr_ProgramLocalParameter4dARB GET_ProgramLocalParameter4dARB(struct _glapi_table *disp) {
7314 return (_glptr_ProgramLocalParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB));
7315 }
7316
7317 static INLINE void SET_ProgramLocalParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
7318 SET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB, fn);
7319 }
7320
7321 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dvARB)(GLenum, GLuint, const GLdouble *);
7322 #define CALL_ProgramLocalParameter4dvARB(disp, parameters) \
7323 (* GET_ProgramLocalParameter4dvARB(disp)) parameters
7324 static INLINE _glptr_ProgramLocalParameter4dvARB GET_ProgramLocalParameter4dvARB(struct _glapi_table *disp) {
7325 return (_glptr_ProgramLocalParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB));
7326 }
7327
7328 static INLINE void SET_ProgramLocalParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) {
7329 SET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB, fn);
7330 }
7331
7332 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
7333 #define CALL_ProgramLocalParameter4fARB(disp, parameters) \
7334 (* GET_ProgramLocalParameter4fARB(disp)) parameters
7335 static INLINE _glptr_ProgramLocalParameter4fARB GET_ProgramLocalParameter4fARB(struct _glapi_table *disp) {
7336 return (_glptr_ProgramLocalParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB));
7337 }
7338
7339 static INLINE void SET_ProgramLocalParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
7340 SET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB, fn);
7341 }
7342
7343 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fvARB)(GLenum, GLuint, const GLfloat *);
7344 #define CALL_ProgramLocalParameter4fvARB(disp, parameters) \
7345 (* GET_ProgramLocalParameter4fvARB(disp)) parameters
7346 static INLINE _glptr_ProgramLocalParameter4fvARB GET_ProgramLocalParameter4fvARB(struct _glapi_table *disp) {
7347 return (_glptr_ProgramLocalParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB));
7348 }
7349
7350 static INLINE void SET_ProgramLocalParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
7351 SET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB, fn);
7352 }
7353
7354 typedef void (GLAPIENTRYP _glptr_ProgramStringARB)(GLenum, GLenum, GLsizei, const GLvoid *);
7355 #define CALL_ProgramStringARB(disp, parameters) \
7356 (* GET_ProgramStringARB(disp)) parameters
7357 static INLINE _glptr_ProgramStringARB GET_ProgramStringARB(struct _glapi_table *disp) {
7358 return (_glptr_ProgramStringARB) (GET_by_offset(disp, _gloffset_ProgramStringARB));
7359 }
7360
7361 static INLINE void SET_ProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, const GLvoid *)) {
7362 SET_by_offset(disp, _gloffset_ProgramStringARB, fn);
7363 }
7364
7365 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dARB)(GLuint, GLdouble);
7366 #define CALL_VertexAttrib1dARB(disp, parameters) \
7367 (* GET_VertexAttrib1dARB(disp)) parameters
7368 static INLINE _glptr_VertexAttrib1dARB GET_VertexAttrib1dARB(struct _glapi_table *disp) {
7369 return (_glptr_VertexAttrib1dARB) (GET_by_offset(disp, _gloffset_VertexAttrib1dARB));
7370 }
7371
7372 static INLINE void SET_VertexAttrib1dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
7373 SET_by_offset(disp, _gloffset_VertexAttrib1dARB, fn);
7374 }
7375
7376 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvARB)(GLuint, const GLdouble *);
7377 #define CALL_VertexAttrib1dvARB(disp, parameters) \
7378 (* GET_VertexAttrib1dvARB(disp)) parameters
7379 static INLINE _glptr_VertexAttrib1dvARB GET_VertexAttrib1dvARB(struct _glapi_table *disp) {
7380 return (_glptr_VertexAttrib1dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1dvARB));
7381 }
7382
7383 static INLINE void SET_VertexAttrib1dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7384 SET_by_offset(disp, _gloffset_VertexAttrib1dvARB, fn);
7385 }
7386
7387 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fARB)(GLuint, GLfloat);
7388 #define CALL_VertexAttrib1fARB(disp, parameters) \
7389 (* GET_VertexAttrib1fARB(disp)) parameters
7390 static INLINE _glptr_VertexAttrib1fARB GET_VertexAttrib1fARB(struct _glapi_table *disp) {
7391 return (_glptr_VertexAttrib1fARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fARB));
7392 }
7393
7394 static INLINE void SET_VertexAttrib1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
7395 SET_by_offset(disp, _gloffset_VertexAttrib1fARB, fn);
7396 }
7397
7398 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvARB)(GLuint, const GLfloat *);
7399 #define CALL_VertexAttrib1fvARB(disp, parameters) \
7400 (* GET_VertexAttrib1fvARB(disp)) parameters
7401 static INLINE _glptr_VertexAttrib1fvARB GET_VertexAttrib1fvARB(struct _glapi_table *disp) {
7402 return (_glptr_VertexAttrib1fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fvARB));
7403 }
7404
7405 static INLINE void SET_VertexAttrib1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7406 SET_by_offset(disp, _gloffset_VertexAttrib1fvARB, fn);
7407 }
7408
7409 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sARB)(GLuint, GLshort);
7410 #define CALL_VertexAttrib1sARB(disp, parameters) \
7411 (* GET_VertexAttrib1sARB(disp)) parameters
7412 static INLINE _glptr_VertexAttrib1sARB GET_VertexAttrib1sARB(struct _glapi_table *disp) {
7413 return (_glptr_VertexAttrib1sARB) (GET_by_offset(disp, _gloffset_VertexAttrib1sARB));
7414 }
7415
7416 static INLINE void SET_VertexAttrib1sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
7417 SET_by_offset(disp, _gloffset_VertexAttrib1sARB, fn);
7418 }
7419
7420 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svARB)(GLuint, const GLshort *);
7421 #define CALL_VertexAttrib1svARB(disp, parameters) \
7422 (* GET_VertexAttrib1svARB(disp)) parameters
7423 static INLINE _glptr_VertexAttrib1svARB GET_VertexAttrib1svARB(struct _glapi_table *disp) {
7424 return (_glptr_VertexAttrib1svARB) (GET_by_offset(disp, _gloffset_VertexAttrib1svARB));
7425 }
7426
7427 static INLINE void SET_VertexAttrib1svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7428 SET_by_offset(disp, _gloffset_VertexAttrib1svARB, fn);
7429 }
7430
7431 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dARB)(GLuint, GLdouble, GLdouble);
7432 #define CALL_VertexAttrib2dARB(disp, parameters) \
7433 (* GET_VertexAttrib2dARB(disp)) parameters
7434 static INLINE _glptr_VertexAttrib2dARB GET_VertexAttrib2dARB(struct _glapi_table *disp) {
7435 return (_glptr_VertexAttrib2dARB) (GET_by_offset(disp, _gloffset_VertexAttrib2dARB));
7436 }
7437
7438 static INLINE void SET_VertexAttrib2dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
7439 SET_by_offset(disp, _gloffset_VertexAttrib2dARB, fn);
7440 }
7441
7442 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvARB)(GLuint, const GLdouble *);
7443 #define CALL_VertexAttrib2dvARB(disp, parameters) \
7444 (* GET_VertexAttrib2dvARB(disp)) parameters
7445 static INLINE _glptr_VertexAttrib2dvARB GET_VertexAttrib2dvARB(struct _glapi_table *disp) {
7446 return (_glptr_VertexAttrib2dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2dvARB));
7447 }
7448
7449 static INLINE void SET_VertexAttrib2dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7450 SET_by_offset(disp, _gloffset_VertexAttrib2dvARB, fn);
7451 }
7452
7453 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fARB)(GLuint, GLfloat, GLfloat);
7454 #define CALL_VertexAttrib2fARB(disp, parameters) \
7455 (* GET_VertexAttrib2fARB(disp)) parameters
7456 static INLINE _glptr_VertexAttrib2fARB GET_VertexAttrib2fARB(struct _glapi_table *disp) {
7457 return (_glptr_VertexAttrib2fARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fARB));
7458 }
7459
7460 static INLINE void SET_VertexAttrib2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
7461 SET_by_offset(disp, _gloffset_VertexAttrib2fARB, fn);
7462 }
7463
7464 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvARB)(GLuint, const GLfloat *);
7465 #define CALL_VertexAttrib2fvARB(disp, parameters) \
7466 (* GET_VertexAttrib2fvARB(disp)) parameters
7467 static INLINE _glptr_VertexAttrib2fvARB GET_VertexAttrib2fvARB(struct _glapi_table *disp) {
7468 return (_glptr_VertexAttrib2fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fvARB));
7469 }
7470
7471 static INLINE void SET_VertexAttrib2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7472 SET_by_offset(disp, _gloffset_VertexAttrib2fvARB, fn);
7473 }
7474
7475 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sARB)(GLuint, GLshort, GLshort);
7476 #define CALL_VertexAttrib2sARB(disp, parameters) \
7477 (* GET_VertexAttrib2sARB(disp)) parameters
7478 static INLINE _glptr_VertexAttrib2sARB GET_VertexAttrib2sARB(struct _glapi_table *disp) {
7479 return (_glptr_VertexAttrib2sARB) (GET_by_offset(disp, _gloffset_VertexAttrib2sARB));
7480 }
7481
7482 static INLINE void SET_VertexAttrib2sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
7483 SET_by_offset(disp, _gloffset_VertexAttrib2sARB, fn);
7484 }
7485
7486 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svARB)(GLuint, const GLshort *);
7487 #define CALL_VertexAttrib2svARB(disp, parameters) \
7488 (* GET_VertexAttrib2svARB(disp)) parameters
7489 static INLINE _glptr_VertexAttrib2svARB GET_VertexAttrib2svARB(struct _glapi_table *disp) {
7490 return (_glptr_VertexAttrib2svARB) (GET_by_offset(disp, _gloffset_VertexAttrib2svARB));
7491 }
7492
7493 static INLINE void SET_VertexAttrib2svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7494 SET_by_offset(disp, _gloffset_VertexAttrib2svARB, fn);
7495 }
7496
7497 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dARB)(GLuint, GLdouble, GLdouble, GLdouble);
7498 #define CALL_VertexAttrib3dARB(disp, parameters) \
7499 (* GET_VertexAttrib3dARB(disp)) parameters
7500 static INLINE _glptr_VertexAttrib3dARB GET_VertexAttrib3dARB(struct _glapi_table *disp) {
7501 return (_glptr_VertexAttrib3dARB) (GET_by_offset(disp, _gloffset_VertexAttrib3dARB));
7502 }
7503
7504 static INLINE void SET_VertexAttrib3dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
7505 SET_by_offset(disp, _gloffset_VertexAttrib3dARB, fn);
7506 }
7507
7508 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvARB)(GLuint, const GLdouble *);
7509 #define CALL_VertexAttrib3dvARB(disp, parameters) \
7510 (* GET_VertexAttrib3dvARB(disp)) parameters
7511 static INLINE _glptr_VertexAttrib3dvARB GET_VertexAttrib3dvARB(struct _glapi_table *disp) {
7512 return (_glptr_VertexAttrib3dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3dvARB));
7513 }
7514
7515 static INLINE void SET_VertexAttrib3dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7516 SET_by_offset(disp, _gloffset_VertexAttrib3dvARB, fn);
7517 }
7518
7519 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fARB)(GLuint, GLfloat, GLfloat, GLfloat);
7520 #define CALL_VertexAttrib3fARB(disp, parameters) \
7521 (* GET_VertexAttrib3fARB(disp)) parameters
7522 static INLINE _glptr_VertexAttrib3fARB GET_VertexAttrib3fARB(struct _glapi_table *disp) {
7523 return (_glptr_VertexAttrib3fARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fARB));
7524 }
7525
7526 static INLINE void SET_VertexAttrib3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
7527 SET_by_offset(disp, _gloffset_VertexAttrib3fARB, fn);
7528 }
7529
7530 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvARB)(GLuint, const GLfloat *);
7531 #define CALL_VertexAttrib3fvARB(disp, parameters) \
7532 (* GET_VertexAttrib3fvARB(disp)) parameters
7533 static INLINE _glptr_VertexAttrib3fvARB GET_VertexAttrib3fvARB(struct _glapi_table *disp) {
7534 return (_glptr_VertexAttrib3fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fvARB));
7535 }
7536
7537 static INLINE void SET_VertexAttrib3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7538 SET_by_offset(disp, _gloffset_VertexAttrib3fvARB, fn);
7539 }
7540
7541 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sARB)(GLuint, GLshort, GLshort, GLshort);
7542 #define CALL_VertexAttrib3sARB(disp, parameters) \
7543 (* GET_VertexAttrib3sARB(disp)) parameters
7544 static INLINE _glptr_VertexAttrib3sARB GET_VertexAttrib3sARB(struct _glapi_table *disp) {
7545 return (_glptr_VertexAttrib3sARB) (GET_by_offset(disp, _gloffset_VertexAttrib3sARB));
7546 }
7547
7548 static INLINE void SET_VertexAttrib3sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
7549 SET_by_offset(disp, _gloffset_VertexAttrib3sARB, fn);
7550 }
7551
7552 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svARB)(GLuint, const GLshort *);
7553 #define CALL_VertexAttrib3svARB(disp, parameters) \
7554 (* GET_VertexAttrib3svARB(disp)) parameters
7555 static INLINE _glptr_VertexAttrib3svARB GET_VertexAttrib3svARB(struct _glapi_table *disp) {
7556 return (_glptr_VertexAttrib3svARB) (GET_by_offset(disp, _gloffset_VertexAttrib3svARB));
7557 }
7558
7559 static INLINE void SET_VertexAttrib3svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7560 SET_by_offset(disp, _gloffset_VertexAttrib3svARB, fn);
7561 }
7562
7563 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NbvARB)(GLuint, const GLbyte *);
7564 #define CALL_VertexAttrib4NbvARB(disp, parameters) \
7565 (* GET_VertexAttrib4NbvARB(disp)) parameters
7566 static INLINE _glptr_VertexAttrib4NbvARB GET_VertexAttrib4NbvARB(struct _glapi_table *disp) {
7567 return (_glptr_VertexAttrib4NbvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NbvARB));
7568 }
7569
7570 static INLINE void SET_VertexAttrib4NbvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
7571 SET_by_offset(disp, _gloffset_VertexAttrib4NbvARB, fn);
7572 }
7573
7574 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NivARB)(GLuint, const GLint *);
7575 #define CALL_VertexAttrib4NivARB(disp, parameters) \
7576 (* GET_VertexAttrib4NivARB(disp)) parameters
7577 static INLINE _glptr_VertexAttrib4NivARB GET_VertexAttrib4NivARB(struct _glapi_table *disp) {
7578 return (_glptr_VertexAttrib4NivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NivARB));
7579 }
7580
7581 static INLINE void SET_VertexAttrib4NivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
7582 SET_by_offset(disp, _gloffset_VertexAttrib4NivARB, fn);
7583 }
7584
7585 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NsvARB)(GLuint, const GLshort *);
7586 #define CALL_VertexAttrib4NsvARB(disp, parameters) \
7587 (* GET_VertexAttrib4NsvARB(disp)) parameters
7588 static INLINE _glptr_VertexAttrib4NsvARB GET_VertexAttrib4NsvARB(struct _glapi_table *disp) {
7589 return (_glptr_VertexAttrib4NsvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NsvARB));
7590 }
7591
7592 static INLINE void SET_VertexAttrib4NsvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7593 SET_by_offset(disp, _gloffset_VertexAttrib4NsvARB, fn);
7594 }
7595
7596 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NubARB)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
7597 #define CALL_VertexAttrib4NubARB(disp, parameters) \
7598 (* GET_VertexAttrib4NubARB(disp)) parameters
7599 static INLINE _glptr_VertexAttrib4NubARB GET_VertexAttrib4NubARB(struct _glapi_table *disp) {
7600 return (_glptr_VertexAttrib4NubARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NubARB));
7601 }
7602
7603 static INLINE void SET_VertexAttrib4NubARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
7604 SET_by_offset(disp, _gloffset_VertexAttrib4NubARB, fn);
7605 }
7606
7607 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NubvARB)(GLuint, const GLubyte *);
7608 #define CALL_VertexAttrib4NubvARB(disp, parameters) \
7609 (* GET_VertexAttrib4NubvARB(disp)) parameters
7610 static INLINE _glptr_VertexAttrib4NubvARB GET_VertexAttrib4NubvARB(struct _glapi_table *disp) {
7611 return (_glptr_VertexAttrib4NubvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NubvARB));
7612 }
7613
7614 static INLINE void SET_VertexAttrib4NubvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
7615 SET_by_offset(disp, _gloffset_VertexAttrib4NubvARB, fn);
7616 }
7617
7618 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NuivARB)(GLuint, const GLuint *);
7619 #define CALL_VertexAttrib4NuivARB(disp, parameters) \
7620 (* GET_VertexAttrib4NuivARB(disp)) parameters
7621 static INLINE _glptr_VertexAttrib4NuivARB GET_VertexAttrib4NuivARB(struct _glapi_table *disp) {
7622 return (_glptr_VertexAttrib4NuivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NuivARB));
7623 }
7624
7625 static INLINE void SET_VertexAttrib4NuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
7626 SET_by_offset(disp, _gloffset_VertexAttrib4NuivARB, fn);
7627 }
7628
7629 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NusvARB)(GLuint, const GLushort *);
7630 #define CALL_VertexAttrib4NusvARB(disp, parameters) \
7631 (* GET_VertexAttrib4NusvARB(disp)) parameters
7632 static INLINE _glptr_VertexAttrib4NusvARB GET_VertexAttrib4NusvARB(struct _glapi_table *disp) {
7633 return (_glptr_VertexAttrib4NusvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NusvARB));
7634 }
7635
7636 static INLINE void SET_VertexAttrib4NusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
7637 SET_by_offset(disp, _gloffset_VertexAttrib4NusvARB, fn);
7638 }
7639
7640 typedef void (GLAPIENTRYP _glptr_VertexAttrib4bvARB)(GLuint, const GLbyte *);
7641 #define CALL_VertexAttrib4bvARB(disp, parameters) \
7642 (* GET_VertexAttrib4bvARB(disp)) parameters
7643 static INLINE _glptr_VertexAttrib4bvARB GET_VertexAttrib4bvARB(struct _glapi_table *disp) {
7644 return (_glptr_VertexAttrib4bvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4bvARB));
7645 }
7646
7647 static INLINE void SET_VertexAttrib4bvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
7648 SET_by_offset(disp, _gloffset_VertexAttrib4bvARB, fn);
7649 }
7650
7651 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dARB)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
7652 #define CALL_VertexAttrib4dARB(disp, parameters) \
7653 (* GET_VertexAttrib4dARB(disp)) parameters
7654 static INLINE _glptr_VertexAttrib4dARB GET_VertexAttrib4dARB(struct _glapi_table *disp) {
7655 return (_glptr_VertexAttrib4dARB) (GET_by_offset(disp, _gloffset_VertexAttrib4dARB));
7656 }
7657
7658 static INLINE void SET_VertexAttrib4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
7659 SET_by_offset(disp, _gloffset_VertexAttrib4dARB, fn);
7660 }
7661
7662 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvARB)(GLuint, const GLdouble *);
7663 #define CALL_VertexAttrib4dvARB(disp, parameters) \
7664 (* GET_VertexAttrib4dvARB(disp)) parameters
7665 static INLINE _glptr_VertexAttrib4dvARB GET_VertexAttrib4dvARB(struct _glapi_table *disp) {
7666 return (_glptr_VertexAttrib4dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4dvARB));
7667 }
7668
7669 static INLINE void SET_VertexAttrib4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
7670 SET_by_offset(disp, _gloffset_VertexAttrib4dvARB, fn);
7671 }
7672
7673 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fARB)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
7674 #define CALL_VertexAttrib4fARB(disp, parameters) \
7675 (* GET_VertexAttrib4fARB(disp)) parameters
7676 static INLINE _glptr_VertexAttrib4fARB GET_VertexAttrib4fARB(struct _glapi_table *disp) {
7677 return (_glptr_VertexAttrib4fARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fARB));
7678 }
7679
7680 static INLINE void SET_VertexAttrib4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
7681 SET_by_offset(disp, _gloffset_VertexAttrib4fARB, fn);
7682 }
7683
7684 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvARB)(GLuint, const GLfloat *);
7685 #define CALL_VertexAttrib4fvARB(disp, parameters) \
7686 (* GET_VertexAttrib4fvARB(disp)) parameters
7687 static INLINE _glptr_VertexAttrib4fvARB GET_VertexAttrib4fvARB(struct _glapi_table *disp) {
7688 return (_glptr_VertexAttrib4fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fvARB));
7689 }
7690
7691 static INLINE void SET_VertexAttrib4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
7692 SET_by_offset(disp, _gloffset_VertexAttrib4fvARB, fn);
7693 }
7694
7695 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ivARB)(GLuint, const GLint *);
7696 #define CALL_VertexAttrib4ivARB(disp, parameters) \
7697 (* GET_VertexAttrib4ivARB(disp)) parameters
7698 static INLINE _glptr_VertexAttrib4ivARB GET_VertexAttrib4ivARB(struct _glapi_table *disp) {
7699 return (_glptr_VertexAttrib4ivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4ivARB));
7700 }
7701
7702 static INLINE void SET_VertexAttrib4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
7703 SET_by_offset(disp, _gloffset_VertexAttrib4ivARB, fn);
7704 }
7705
7706 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sARB)(GLuint, GLshort, GLshort, GLshort, GLshort);
7707 #define CALL_VertexAttrib4sARB(disp, parameters) \
7708 (* GET_VertexAttrib4sARB(disp)) parameters
7709 static INLINE _glptr_VertexAttrib4sARB GET_VertexAttrib4sARB(struct _glapi_table *disp) {
7710 return (_glptr_VertexAttrib4sARB) (GET_by_offset(disp, _gloffset_VertexAttrib4sARB));
7711 }
7712
7713 static INLINE void SET_VertexAttrib4sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
7714 SET_by_offset(disp, _gloffset_VertexAttrib4sARB, fn);
7715 }
7716
7717 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svARB)(GLuint, const GLshort *);
7718 #define CALL_VertexAttrib4svARB(disp, parameters) \
7719 (* GET_VertexAttrib4svARB(disp)) parameters
7720 static INLINE _glptr_VertexAttrib4svARB GET_VertexAttrib4svARB(struct _glapi_table *disp) {
7721 return (_glptr_VertexAttrib4svARB) (GET_by_offset(disp, _gloffset_VertexAttrib4svARB));
7722 }
7723
7724 static INLINE void SET_VertexAttrib4svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7725 SET_by_offset(disp, _gloffset_VertexAttrib4svARB, fn);
7726 }
7727
7728 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvARB)(GLuint, const GLubyte *);
7729 #define CALL_VertexAttrib4ubvARB(disp, parameters) \
7730 (* GET_VertexAttrib4ubvARB(disp)) parameters
7731 static INLINE _glptr_VertexAttrib4ubvARB GET_VertexAttrib4ubvARB(struct _glapi_table *disp) {
7732 return (_glptr_VertexAttrib4ubvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvARB));
7733 }
7734
7735 static INLINE void SET_VertexAttrib4ubvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
7736 SET_by_offset(disp, _gloffset_VertexAttrib4ubvARB, fn);
7737 }
7738
7739 typedef void (GLAPIENTRYP _glptr_VertexAttrib4uivARB)(GLuint, const GLuint *);
7740 #define CALL_VertexAttrib4uivARB(disp, parameters) \
7741 (* GET_VertexAttrib4uivARB(disp)) parameters
7742 static INLINE _glptr_VertexAttrib4uivARB GET_VertexAttrib4uivARB(struct _glapi_table *disp) {
7743 return (_glptr_VertexAttrib4uivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4uivARB));
7744 }
7745
7746 static INLINE void SET_VertexAttrib4uivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
7747 SET_by_offset(disp, _gloffset_VertexAttrib4uivARB, fn);
7748 }
7749
7750 typedef void (GLAPIENTRYP _glptr_VertexAttrib4usvARB)(GLuint, const GLushort *);
7751 #define CALL_VertexAttrib4usvARB(disp, parameters) \
7752 (* GET_VertexAttrib4usvARB(disp)) parameters
7753 static INLINE _glptr_VertexAttrib4usvARB GET_VertexAttrib4usvARB(struct _glapi_table *disp) {
7754 return (_glptr_VertexAttrib4usvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4usvARB));
7755 }
7756
7757 static INLINE void SET_VertexAttrib4usvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
7758 SET_by_offset(disp, _gloffset_VertexAttrib4usvARB, fn);
7759 }
7760
7761 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerARB)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *);
7762 #define CALL_VertexAttribPointerARB(disp, parameters) \
7763 (* GET_VertexAttribPointerARB(disp)) parameters
7764 static INLINE _glptr_VertexAttribPointerARB GET_VertexAttribPointerARB(struct _glapi_table *disp) {
7765 return (_glptr_VertexAttribPointerARB) (GET_by_offset(disp, _gloffset_VertexAttribPointerARB));
7766 }
7767
7768 static INLINE void SET_VertexAttribPointerARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *)) {
7769 SET_by_offset(disp, _gloffset_VertexAttribPointerARB, fn);
7770 }
7771
7772 typedef void (GLAPIENTRYP _glptr_BindBufferARB)(GLenum, GLuint);
7773 #define CALL_BindBufferARB(disp, parameters) \
7774 (* GET_BindBufferARB(disp)) parameters
7775 static INLINE _glptr_BindBufferARB GET_BindBufferARB(struct _glapi_table *disp) {
7776 return (_glptr_BindBufferARB) (GET_by_offset(disp, _gloffset_BindBufferARB));
7777 }
7778
7779 static INLINE void SET_BindBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
7780 SET_by_offset(disp, _gloffset_BindBufferARB, fn);
7781 }
7782
7783 typedef void (GLAPIENTRYP _glptr_BufferDataARB)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum);
7784 #define CALL_BufferDataARB(disp, parameters) \
7785 (* GET_BufferDataARB(disp)) parameters
7786 static INLINE _glptr_BufferDataARB GET_BufferDataARB(struct _glapi_table *disp) {
7787 return (_glptr_BufferDataARB) (GET_by_offset(disp, _gloffset_BufferDataARB));
7788 }
7789
7790 static INLINE void SET_BufferDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum)) {
7791 SET_by_offset(disp, _gloffset_BufferDataARB, fn);
7792 }
7793
7794 typedef void (GLAPIENTRYP _glptr_BufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *);
7795 #define CALL_BufferSubDataARB(disp, parameters) \
7796 (* GET_BufferSubDataARB(disp)) parameters
7797 static INLINE _glptr_BufferSubDataARB GET_BufferSubDataARB(struct _glapi_table *disp) {
7798 return (_glptr_BufferSubDataARB) (GET_by_offset(disp, _gloffset_BufferSubDataARB));
7799 }
7800
7801 static INLINE void SET_BufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *)) {
7802 SET_by_offset(disp, _gloffset_BufferSubDataARB, fn);
7803 }
7804
7805 typedef void (GLAPIENTRYP _glptr_DeleteBuffersARB)(GLsizei, const GLuint *);
7806 #define CALL_DeleteBuffersARB(disp, parameters) \
7807 (* GET_DeleteBuffersARB(disp)) parameters
7808 static INLINE _glptr_DeleteBuffersARB GET_DeleteBuffersARB(struct _glapi_table *disp) {
7809 return (_glptr_DeleteBuffersARB) (GET_by_offset(disp, _gloffset_DeleteBuffersARB));
7810 }
7811
7812 static INLINE void SET_DeleteBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
7813 SET_by_offset(disp, _gloffset_DeleteBuffersARB, fn);
7814 }
7815
7816 typedef void (GLAPIENTRYP _glptr_GenBuffersARB)(GLsizei, GLuint *);
7817 #define CALL_GenBuffersARB(disp, parameters) \
7818 (* GET_GenBuffersARB(disp)) parameters
7819 static INLINE _glptr_GenBuffersARB GET_GenBuffersARB(struct _glapi_table *disp) {
7820 return (_glptr_GenBuffersARB) (GET_by_offset(disp, _gloffset_GenBuffersARB));
7821 }
7822
7823 static INLINE void SET_GenBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
7824 SET_by_offset(disp, _gloffset_GenBuffersARB, fn);
7825 }
7826
7827 typedef void (GLAPIENTRYP _glptr_GetBufferParameterivARB)(GLenum, GLenum, GLint *);
7828 #define CALL_GetBufferParameterivARB(disp, parameters) \
7829 (* GET_GetBufferParameterivARB(disp)) parameters
7830 static INLINE _glptr_GetBufferParameterivARB GET_GetBufferParameterivARB(struct _glapi_table *disp) {
7831 return (_glptr_GetBufferParameterivARB) (GET_by_offset(disp, _gloffset_GetBufferParameterivARB));
7832 }
7833
7834 static INLINE void SET_GetBufferParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
7835 SET_by_offset(disp, _gloffset_GetBufferParameterivARB, fn);
7836 }
7837
7838 typedef void (GLAPIENTRYP _glptr_GetBufferPointervARB)(GLenum, GLenum, GLvoid **);
7839 #define CALL_GetBufferPointervARB(disp, parameters) \
7840 (* GET_GetBufferPointervARB(disp)) parameters
7841 static INLINE _glptr_GetBufferPointervARB GET_GetBufferPointervARB(struct _glapi_table *disp) {
7842 return (_glptr_GetBufferPointervARB) (GET_by_offset(disp, _gloffset_GetBufferPointervARB));
7843 }
7844
7845 static INLINE void SET_GetBufferPointervARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
7846 SET_by_offset(disp, _gloffset_GetBufferPointervARB, fn);
7847 }
7848
7849 typedef void (GLAPIENTRYP _glptr_GetBufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *);
7850 #define CALL_GetBufferSubDataARB(disp, parameters) \
7851 (* GET_GetBufferSubDataARB(disp)) parameters
7852 static INLINE _glptr_GetBufferSubDataARB GET_GetBufferSubDataARB(struct _glapi_table *disp) {
7853 return (_glptr_GetBufferSubDataARB) (GET_by_offset(disp, _gloffset_GetBufferSubDataARB));
7854 }
7855
7856 static INLINE void SET_GetBufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *)) {
7857 SET_by_offset(disp, _gloffset_GetBufferSubDataARB, fn);
7858 }
7859
7860 typedef GLboolean (GLAPIENTRYP _glptr_IsBufferARB)(GLuint);
7861 #define CALL_IsBufferARB(disp, parameters) \
7862 (* GET_IsBufferARB(disp)) parameters
7863 static INLINE _glptr_IsBufferARB GET_IsBufferARB(struct _glapi_table *disp) {
7864 return (_glptr_IsBufferARB) (GET_by_offset(disp, _gloffset_IsBufferARB));
7865 }
7866
7867 static INLINE void SET_IsBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
7868 SET_by_offset(disp, _gloffset_IsBufferARB, fn);
7869 }
7870
7871 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferARB)(GLenum, GLenum);
7872 #define CALL_MapBufferARB(disp, parameters) \
7873 (* GET_MapBufferARB(disp)) parameters
7874 static INLINE _glptr_MapBufferARB GET_MapBufferARB(struct _glapi_table *disp) {
7875 return (_glptr_MapBufferARB) (GET_by_offset(disp, _gloffset_MapBufferARB));
7876 }
7877
7878 static INLINE void SET_MapBufferARB(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLenum)) {
7879 SET_by_offset(disp, _gloffset_MapBufferARB, fn);
7880 }
7881
7882 typedef GLboolean (GLAPIENTRYP _glptr_UnmapBufferARB)(GLenum);
7883 #define CALL_UnmapBufferARB(disp, parameters) \
7884 (* GET_UnmapBufferARB(disp)) parameters
7885 static INLINE _glptr_UnmapBufferARB GET_UnmapBufferARB(struct _glapi_table *disp) {
7886 return (_glptr_UnmapBufferARB) (GET_by_offset(disp, _gloffset_UnmapBufferARB));
7887 }
7888
7889 static INLINE void SET_UnmapBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
7890 SET_by_offset(disp, _gloffset_UnmapBufferARB, fn);
7891 }
7892
7893 typedef void (GLAPIENTRYP _glptr_BeginQueryARB)(GLenum, GLuint);
7894 #define CALL_BeginQueryARB(disp, parameters) \
7895 (* GET_BeginQueryARB(disp)) parameters
7896 static INLINE _glptr_BeginQueryARB GET_BeginQueryARB(struct _glapi_table *disp) {
7897 return (_glptr_BeginQueryARB) (GET_by_offset(disp, _gloffset_BeginQueryARB));
7898 }
7899
7900 static INLINE void SET_BeginQueryARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
7901 SET_by_offset(disp, _gloffset_BeginQueryARB, fn);
7902 }
7903
7904 typedef void (GLAPIENTRYP _glptr_DeleteQueriesARB)(GLsizei, const GLuint *);
7905 #define CALL_DeleteQueriesARB(disp, parameters) \
7906 (* GET_DeleteQueriesARB(disp)) parameters
7907 static INLINE _glptr_DeleteQueriesARB GET_DeleteQueriesARB(struct _glapi_table *disp) {
7908 return (_glptr_DeleteQueriesARB) (GET_by_offset(disp, _gloffset_DeleteQueriesARB));
7909 }
7910
7911 static INLINE void SET_DeleteQueriesARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
7912 SET_by_offset(disp, _gloffset_DeleteQueriesARB, fn);
7913 }
7914
7915 typedef void (GLAPIENTRYP _glptr_EndQueryARB)(GLenum);
7916 #define CALL_EndQueryARB(disp, parameters) \
7917 (* GET_EndQueryARB(disp)) parameters
7918 static INLINE _glptr_EndQueryARB GET_EndQueryARB(struct _glapi_table *disp) {
7919 return (_glptr_EndQueryARB) (GET_by_offset(disp, _gloffset_EndQueryARB));
7920 }
7921
7922 static INLINE void SET_EndQueryARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
7923 SET_by_offset(disp, _gloffset_EndQueryARB, fn);
7924 }
7925
7926 typedef void (GLAPIENTRYP _glptr_GenQueriesARB)(GLsizei, GLuint *);
7927 #define CALL_GenQueriesARB(disp, parameters) \
7928 (* GET_GenQueriesARB(disp)) parameters
7929 static INLINE _glptr_GenQueriesARB GET_GenQueriesARB(struct _glapi_table *disp) {
7930 return (_glptr_GenQueriesARB) (GET_by_offset(disp, _gloffset_GenQueriesARB));
7931 }
7932
7933 static INLINE void SET_GenQueriesARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
7934 SET_by_offset(disp, _gloffset_GenQueriesARB, fn);
7935 }
7936
7937 typedef void (GLAPIENTRYP _glptr_GetQueryObjectivARB)(GLuint, GLenum, GLint *);
7938 #define CALL_GetQueryObjectivARB(disp, parameters) \
7939 (* GET_GetQueryObjectivARB(disp)) parameters
7940 static INLINE _glptr_GetQueryObjectivARB GET_GetQueryObjectivARB(struct _glapi_table *disp) {
7941 return (_glptr_GetQueryObjectivARB) (GET_by_offset(disp, _gloffset_GetQueryObjectivARB));
7942 }
7943
7944 static INLINE void SET_GetQueryObjectivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
7945 SET_by_offset(disp, _gloffset_GetQueryObjectivARB, fn);
7946 }
7947
7948 typedef void (GLAPIENTRYP _glptr_GetQueryObjectuivARB)(GLuint, GLenum, GLuint *);
7949 #define CALL_GetQueryObjectuivARB(disp, parameters) \
7950 (* GET_GetQueryObjectuivARB(disp)) parameters
7951 static INLINE _glptr_GetQueryObjectuivARB GET_GetQueryObjectuivARB(struct _glapi_table *disp) {
7952 return (_glptr_GetQueryObjectuivARB) (GET_by_offset(disp, _gloffset_GetQueryObjectuivARB));
7953 }
7954
7955 static INLINE void SET_GetQueryObjectuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
7956 SET_by_offset(disp, _gloffset_GetQueryObjectuivARB, fn);
7957 }
7958
7959 typedef void (GLAPIENTRYP _glptr_GetQueryivARB)(GLenum, GLenum, GLint *);
7960 #define CALL_GetQueryivARB(disp, parameters) \
7961 (* GET_GetQueryivARB(disp)) parameters
7962 static INLINE _glptr_GetQueryivARB GET_GetQueryivARB(struct _glapi_table *disp) {
7963 return (_glptr_GetQueryivARB) (GET_by_offset(disp, _gloffset_GetQueryivARB));
7964 }
7965
7966 static INLINE void SET_GetQueryivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
7967 SET_by_offset(disp, _gloffset_GetQueryivARB, fn);
7968 }
7969
7970 typedef GLboolean (GLAPIENTRYP _glptr_IsQueryARB)(GLuint);
7971 #define CALL_IsQueryARB(disp, parameters) \
7972 (* GET_IsQueryARB(disp)) parameters
7973 static INLINE _glptr_IsQueryARB GET_IsQueryARB(struct _glapi_table *disp) {
7974 return (_glptr_IsQueryARB) (GET_by_offset(disp, _gloffset_IsQueryARB));
7975 }
7976
7977 static INLINE void SET_IsQueryARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
7978 SET_by_offset(disp, _gloffset_IsQueryARB, fn);
7979 }
7980
7981 typedef void (GLAPIENTRYP _glptr_AttachObjectARB)(GLhandleARB, GLhandleARB);
7982 #define CALL_AttachObjectARB(disp, parameters) \
7983 (* GET_AttachObjectARB(disp)) parameters
7984 static INLINE _glptr_AttachObjectARB GET_AttachObjectARB(struct _glapi_table *disp) {
7985 return (_glptr_AttachObjectARB) (GET_by_offset(disp, _gloffset_AttachObjectARB));
7986 }
7987
7988 static INLINE void SET_AttachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
7989 SET_by_offset(disp, _gloffset_AttachObjectARB, fn);
7990 }
7991
7992 typedef void (GLAPIENTRYP _glptr_CompileShaderARB)(GLhandleARB);
7993 #define CALL_CompileShaderARB(disp, parameters) \
7994 (* GET_CompileShaderARB(disp)) parameters
7995 static INLINE _glptr_CompileShaderARB GET_CompileShaderARB(struct _glapi_table *disp) {
7996 return (_glptr_CompileShaderARB) (GET_by_offset(disp, _gloffset_CompileShaderARB));
7997 }
7998
7999 static INLINE void SET_CompileShaderARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
8000 SET_by_offset(disp, _gloffset_CompileShaderARB, fn);
8001 }
8002
8003 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateProgramObjectARB)(void);
8004 #define CALL_CreateProgramObjectARB(disp, parameters) \
8005 (* GET_CreateProgramObjectARB(disp)) parameters
8006 static INLINE _glptr_CreateProgramObjectARB GET_CreateProgramObjectARB(struct _glapi_table *disp) {
8007 return (_glptr_CreateProgramObjectARB) (GET_by_offset(disp, _gloffset_CreateProgramObjectARB));
8008 }
8009
8010 static INLINE void SET_CreateProgramObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(void)) {
8011 SET_by_offset(disp, _gloffset_CreateProgramObjectARB, fn);
8012 }
8013
8014 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateShaderObjectARB)(GLenum);
8015 #define CALL_CreateShaderObjectARB(disp, parameters) \
8016 (* GET_CreateShaderObjectARB(disp)) parameters
8017 static INLINE _glptr_CreateShaderObjectARB GET_CreateShaderObjectARB(struct _glapi_table *disp) {
8018 return (_glptr_CreateShaderObjectARB) (GET_by_offset(disp, _gloffset_CreateShaderObjectARB));
8019 }
8020
8021 static INLINE void SET_CreateShaderObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
8022 SET_by_offset(disp, _gloffset_CreateShaderObjectARB, fn);
8023 }
8024
8025 typedef void (GLAPIENTRYP _glptr_DeleteObjectARB)(GLhandleARB);
8026 #define CALL_DeleteObjectARB(disp, parameters) \
8027 (* GET_DeleteObjectARB(disp)) parameters
8028 static INLINE _glptr_DeleteObjectARB GET_DeleteObjectARB(struct _glapi_table *disp) {
8029 return (_glptr_DeleteObjectARB) (GET_by_offset(disp, _gloffset_DeleteObjectARB));
8030 }
8031
8032 static INLINE void SET_DeleteObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
8033 SET_by_offset(disp, _gloffset_DeleteObjectARB, fn);
8034 }
8035
8036 typedef void (GLAPIENTRYP _glptr_DetachObjectARB)(GLhandleARB, GLhandleARB);
8037 #define CALL_DetachObjectARB(disp, parameters) \
8038 (* GET_DetachObjectARB(disp)) parameters
8039 static INLINE _glptr_DetachObjectARB GET_DetachObjectARB(struct _glapi_table *disp) {
8040 return (_glptr_DetachObjectARB) (GET_by_offset(disp, _gloffset_DetachObjectARB));
8041 }
8042
8043 static INLINE void SET_DetachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
8044 SET_by_offset(disp, _gloffset_DetachObjectARB, fn);
8045 }
8046
8047 typedef void (GLAPIENTRYP _glptr_GetActiveUniformARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *);
8048 #define CALL_GetActiveUniformARB(disp, parameters) \
8049 (* GET_GetActiveUniformARB(disp)) parameters
8050 static INLINE _glptr_GetActiveUniformARB GET_GetActiveUniformARB(struct _glapi_table *disp) {
8051 return (_glptr_GetActiveUniformARB) (GET_by_offset(disp, _gloffset_GetActiveUniformARB));
8052 }
8053
8054 static INLINE void SET_GetActiveUniformARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) {
8055 SET_by_offset(disp, _gloffset_GetActiveUniformARB, fn);
8056 }
8057
8058 typedef void (GLAPIENTRYP _glptr_GetAttachedObjectsARB)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *);
8059 #define CALL_GetAttachedObjectsARB(disp, parameters) \
8060 (* GET_GetAttachedObjectsARB(disp)) parameters
8061 static INLINE _glptr_GetAttachedObjectsARB GET_GetAttachedObjectsARB(struct _glapi_table *disp) {
8062 return (_glptr_GetAttachedObjectsARB) (GET_by_offset(disp, _gloffset_GetAttachedObjectsARB));
8063 }
8064
8065 static INLINE void SET_GetAttachedObjectsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *)) {
8066 SET_by_offset(disp, _gloffset_GetAttachedObjectsARB, fn);
8067 }
8068
8069 typedef GLhandleARB (GLAPIENTRYP _glptr_GetHandleARB)(GLenum);
8070 #define CALL_GetHandleARB(disp, parameters) \
8071 (* GET_GetHandleARB(disp)) parameters
8072 static INLINE _glptr_GetHandleARB GET_GetHandleARB(struct _glapi_table *disp) {
8073 return (_glptr_GetHandleARB) (GET_by_offset(disp, _gloffset_GetHandleARB));
8074 }
8075
8076 static INLINE void SET_GetHandleARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
8077 SET_by_offset(disp, _gloffset_GetHandleARB, fn);
8078 }
8079
8080 typedef void (GLAPIENTRYP _glptr_GetInfoLogARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
8081 #define CALL_GetInfoLogARB(disp, parameters) \
8082 (* GET_GetInfoLogARB(disp)) parameters
8083 static INLINE _glptr_GetInfoLogARB GET_GetInfoLogARB(struct _glapi_table *disp) {
8084 return (_glptr_GetInfoLogARB) (GET_by_offset(disp, _gloffset_GetInfoLogARB));
8085 }
8086
8087 static INLINE void SET_GetInfoLogARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
8088 SET_by_offset(disp, _gloffset_GetInfoLogARB, fn);
8089 }
8090
8091 typedef void (GLAPIENTRYP _glptr_GetObjectParameterfvARB)(GLhandleARB, GLenum, GLfloat *);
8092 #define CALL_GetObjectParameterfvARB(disp, parameters) \
8093 (* GET_GetObjectParameterfvARB(disp)) parameters
8094 static INLINE _glptr_GetObjectParameterfvARB GET_GetObjectParameterfvARB(struct _glapi_table *disp) {
8095 return (_glptr_GetObjectParameterfvARB) (GET_by_offset(disp, _gloffset_GetObjectParameterfvARB));
8096 }
8097
8098 static INLINE void SET_GetObjectParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLfloat *)) {
8099 SET_by_offset(disp, _gloffset_GetObjectParameterfvARB, fn);
8100 }
8101
8102 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivARB)(GLhandleARB, GLenum, GLint *);
8103 #define CALL_GetObjectParameterivARB(disp, parameters) \
8104 (* GET_GetObjectParameterivARB(disp)) parameters
8105 static INLINE _glptr_GetObjectParameterivARB GET_GetObjectParameterivARB(struct _glapi_table *disp) {
8106 return (_glptr_GetObjectParameterivARB) (GET_by_offset(disp, _gloffset_GetObjectParameterivARB));
8107 }
8108
8109 static INLINE void SET_GetObjectParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLint *)) {
8110 SET_by_offset(disp, _gloffset_GetObjectParameterivARB, fn);
8111 }
8112
8113 typedef void (GLAPIENTRYP _glptr_GetShaderSourceARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
8114 #define CALL_GetShaderSourceARB(disp, parameters) \
8115 (* GET_GetShaderSourceARB(disp)) parameters
8116 static INLINE _glptr_GetShaderSourceARB GET_GetShaderSourceARB(struct _glapi_table *disp) {
8117 return (_glptr_GetShaderSourceARB) (GET_by_offset(disp, _gloffset_GetShaderSourceARB));
8118 }
8119
8120 static INLINE void SET_GetShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
8121 SET_by_offset(disp, _gloffset_GetShaderSourceARB, fn);
8122 }
8123
8124 typedef GLint (GLAPIENTRYP _glptr_GetUniformLocationARB)(GLhandleARB, const GLcharARB *);
8125 #define CALL_GetUniformLocationARB(disp, parameters) \
8126 (* GET_GetUniformLocationARB(disp)) parameters
8127 static INLINE _glptr_GetUniformLocationARB GET_GetUniformLocationARB(struct _glapi_table *disp) {
8128 return (_glptr_GetUniformLocationARB) (GET_by_offset(disp, _gloffset_GetUniformLocationARB));
8129 }
8130
8131 static INLINE void SET_GetUniformLocationARB(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLhandleARB, const GLcharARB *)) {
8132 SET_by_offset(disp, _gloffset_GetUniformLocationARB, fn);
8133 }
8134
8135 typedef void (GLAPIENTRYP _glptr_GetUniformfvARB)(GLhandleARB, GLint, GLfloat *);
8136 #define CALL_GetUniformfvARB(disp, parameters) \
8137 (* GET_GetUniformfvARB(disp)) parameters
8138 static INLINE _glptr_GetUniformfvARB GET_GetUniformfvARB(struct _glapi_table *disp) {
8139 return (_glptr_GetUniformfvARB) (GET_by_offset(disp, _gloffset_GetUniformfvARB));
8140 }
8141
8142 static INLINE void SET_GetUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLfloat *)) {
8143 SET_by_offset(disp, _gloffset_GetUniformfvARB, fn);
8144 }
8145
8146 typedef void (GLAPIENTRYP _glptr_GetUniformivARB)(GLhandleARB, GLint, GLint *);
8147 #define CALL_GetUniformivARB(disp, parameters) \
8148 (* GET_GetUniformivARB(disp)) parameters
8149 static INLINE _glptr_GetUniformivARB GET_GetUniformivARB(struct _glapi_table *disp) {
8150 return (_glptr_GetUniformivARB) (GET_by_offset(disp, _gloffset_GetUniformivARB));
8151 }
8152
8153 static INLINE void SET_GetUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLint *)) {
8154 SET_by_offset(disp, _gloffset_GetUniformivARB, fn);
8155 }
8156
8157 typedef void (GLAPIENTRYP _glptr_LinkProgramARB)(GLhandleARB);
8158 #define CALL_LinkProgramARB(disp, parameters) \
8159 (* GET_LinkProgramARB(disp)) parameters
8160 static INLINE _glptr_LinkProgramARB GET_LinkProgramARB(struct _glapi_table *disp) {
8161 return (_glptr_LinkProgramARB) (GET_by_offset(disp, _gloffset_LinkProgramARB));
8162 }
8163
8164 static INLINE void SET_LinkProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
8165 SET_by_offset(disp, _gloffset_LinkProgramARB, fn);
8166 }
8167
8168 typedef void (GLAPIENTRYP _glptr_ShaderSourceARB)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *);
8169 #define CALL_ShaderSourceARB(disp, parameters) \
8170 (* GET_ShaderSourceARB(disp)) parameters
8171 static INLINE _glptr_ShaderSourceARB GET_ShaderSourceARB(struct _glapi_table *disp) {
8172 return (_glptr_ShaderSourceARB) (GET_by_offset(disp, _gloffset_ShaderSourceARB));
8173 }
8174
8175 static INLINE void SET_ShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *)) {
8176 SET_by_offset(disp, _gloffset_ShaderSourceARB, fn);
8177 }
8178
8179 typedef void (GLAPIENTRYP _glptr_Uniform1fARB)(GLint, GLfloat);
8180 #define CALL_Uniform1fARB(disp, parameters) \
8181 (* GET_Uniform1fARB(disp)) parameters
8182 static INLINE _glptr_Uniform1fARB GET_Uniform1fARB(struct _glapi_table *disp) {
8183 return (_glptr_Uniform1fARB) (GET_by_offset(disp, _gloffset_Uniform1fARB));
8184 }
8185
8186 static INLINE void SET_Uniform1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat)) {
8187 SET_by_offset(disp, _gloffset_Uniform1fARB, fn);
8188 }
8189
8190 typedef void (GLAPIENTRYP _glptr_Uniform1fvARB)(GLint, GLsizei, const GLfloat *);
8191 #define CALL_Uniform1fvARB(disp, parameters) \
8192 (* GET_Uniform1fvARB(disp)) parameters
8193 static INLINE _glptr_Uniform1fvARB GET_Uniform1fvARB(struct _glapi_table *disp) {
8194 return (_glptr_Uniform1fvARB) (GET_by_offset(disp, _gloffset_Uniform1fvARB));
8195 }
8196
8197 static INLINE void SET_Uniform1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
8198 SET_by_offset(disp, _gloffset_Uniform1fvARB, fn);
8199 }
8200
8201 typedef void (GLAPIENTRYP _glptr_Uniform1iARB)(GLint, GLint);
8202 #define CALL_Uniform1iARB(disp, parameters) \
8203 (* GET_Uniform1iARB(disp)) parameters
8204 static INLINE _glptr_Uniform1iARB GET_Uniform1iARB(struct _glapi_table *disp) {
8205 return (_glptr_Uniform1iARB) (GET_by_offset(disp, _gloffset_Uniform1iARB));
8206 }
8207
8208 static INLINE void SET_Uniform1iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
8209 SET_by_offset(disp, _gloffset_Uniform1iARB, fn);
8210 }
8211
8212 typedef void (GLAPIENTRYP _glptr_Uniform1ivARB)(GLint, GLsizei, const GLint *);
8213 #define CALL_Uniform1ivARB(disp, parameters) \
8214 (* GET_Uniform1ivARB(disp)) parameters
8215 static INLINE _glptr_Uniform1ivARB GET_Uniform1ivARB(struct _glapi_table *disp) {
8216 return (_glptr_Uniform1ivARB) (GET_by_offset(disp, _gloffset_Uniform1ivARB));
8217 }
8218
8219 static INLINE void SET_Uniform1ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
8220 SET_by_offset(disp, _gloffset_Uniform1ivARB, fn);
8221 }
8222
8223 typedef void (GLAPIENTRYP _glptr_Uniform2fARB)(GLint, GLfloat, GLfloat);
8224 #define CALL_Uniform2fARB(disp, parameters) \
8225 (* GET_Uniform2fARB(disp)) parameters
8226 static INLINE _glptr_Uniform2fARB GET_Uniform2fARB(struct _glapi_table *disp) {
8227 return (_glptr_Uniform2fARB) (GET_by_offset(disp, _gloffset_Uniform2fARB));
8228 }
8229
8230 static INLINE void SET_Uniform2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
8231 SET_by_offset(disp, _gloffset_Uniform2fARB, fn);
8232 }
8233
8234 typedef void (GLAPIENTRYP _glptr_Uniform2fvARB)(GLint, GLsizei, const GLfloat *);
8235 #define CALL_Uniform2fvARB(disp, parameters) \
8236 (* GET_Uniform2fvARB(disp)) parameters
8237 static INLINE _glptr_Uniform2fvARB GET_Uniform2fvARB(struct _glapi_table *disp) {
8238 return (_glptr_Uniform2fvARB) (GET_by_offset(disp, _gloffset_Uniform2fvARB));
8239 }
8240
8241 static INLINE void SET_Uniform2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
8242 SET_by_offset(disp, _gloffset_Uniform2fvARB, fn);
8243 }
8244
8245 typedef void (GLAPIENTRYP _glptr_Uniform2iARB)(GLint, GLint, GLint);
8246 #define CALL_Uniform2iARB(disp, parameters) \
8247 (* GET_Uniform2iARB(disp)) parameters
8248 static INLINE _glptr_Uniform2iARB GET_Uniform2iARB(struct _glapi_table *disp) {
8249 return (_glptr_Uniform2iARB) (GET_by_offset(disp, _gloffset_Uniform2iARB));
8250 }
8251
8252 static INLINE void SET_Uniform2iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
8253 SET_by_offset(disp, _gloffset_Uniform2iARB, fn);
8254 }
8255
8256 typedef void (GLAPIENTRYP _glptr_Uniform2ivARB)(GLint, GLsizei, const GLint *);
8257 #define CALL_Uniform2ivARB(disp, parameters) \
8258 (* GET_Uniform2ivARB(disp)) parameters
8259 static INLINE _glptr_Uniform2ivARB GET_Uniform2ivARB(struct _glapi_table *disp) {
8260 return (_glptr_Uniform2ivARB) (GET_by_offset(disp, _gloffset_Uniform2ivARB));
8261 }
8262
8263 static INLINE void SET_Uniform2ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
8264 SET_by_offset(disp, _gloffset_Uniform2ivARB, fn);
8265 }
8266
8267 typedef void (GLAPIENTRYP _glptr_Uniform3fARB)(GLint, GLfloat, GLfloat, GLfloat);
8268 #define CALL_Uniform3fARB(disp, parameters) \
8269 (* GET_Uniform3fARB(disp)) parameters
8270 static INLINE _glptr_Uniform3fARB GET_Uniform3fARB(struct _glapi_table *disp) {
8271 return (_glptr_Uniform3fARB) (GET_by_offset(disp, _gloffset_Uniform3fARB));
8272 }
8273
8274 static INLINE void SET_Uniform3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat)) {
8275 SET_by_offset(disp, _gloffset_Uniform3fARB, fn);
8276 }
8277
8278 typedef void (GLAPIENTRYP _glptr_Uniform3fvARB)(GLint, GLsizei, const GLfloat *);
8279 #define CALL_Uniform3fvARB(disp, parameters) \
8280 (* GET_Uniform3fvARB(disp)) parameters
8281 static INLINE _glptr_Uniform3fvARB GET_Uniform3fvARB(struct _glapi_table *disp) {
8282 return (_glptr_Uniform3fvARB) (GET_by_offset(disp, _gloffset_Uniform3fvARB));
8283 }
8284
8285 static INLINE void SET_Uniform3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
8286 SET_by_offset(disp, _gloffset_Uniform3fvARB, fn);
8287 }
8288
8289 typedef void (GLAPIENTRYP _glptr_Uniform3iARB)(GLint, GLint, GLint, GLint);
8290 #define CALL_Uniform3iARB(disp, parameters) \
8291 (* GET_Uniform3iARB(disp)) parameters
8292 static INLINE _glptr_Uniform3iARB GET_Uniform3iARB(struct _glapi_table *disp) {
8293 return (_glptr_Uniform3iARB) (GET_by_offset(disp, _gloffset_Uniform3iARB));
8294 }
8295
8296 static INLINE void SET_Uniform3iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
8297 SET_by_offset(disp, _gloffset_Uniform3iARB, fn);
8298 }
8299
8300 typedef void (GLAPIENTRYP _glptr_Uniform3ivARB)(GLint, GLsizei, const GLint *);
8301 #define CALL_Uniform3ivARB(disp, parameters) \
8302 (* GET_Uniform3ivARB(disp)) parameters
8303 static INLINE _glptr_Uniform3ivARB GET_Uniform3ivARB(struct _glapi_table *disp) {
8304 return (_glptr_Uniform3ivARB) (GET_by_offset(disp, _gloffset_Uniform3ivARB));
8305 }
8306
8307 static INLINE void SET_Uniform3ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
8308 SET_by_offset(disp, _gloffset_Uniform3ivARB, fn);
8309 }
8310
8311 typedef void (GLAPIENTRYP _glptr_Uniform4fARB)(GLint, GLfloat, GLfloat, GLfloat, GLfloat);
8312 #define CALL_Uniform4fARB(disp, parameters) \
8313 (* GET_Uniform4fARB(disp)) parameters
8314 static INLINE _glptr_Uniform4fARB GET_Uniform4fARB(struct _glapi_table *disp) {
8315 return (_glptr_Uniform4fARB) (GET_by_offset(disp, _gloffset_Uniform4fARB));
8316 }
8317
8318 static INLINE void SET_Uniform4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat, GLfloat)) {
8319 SET_by_offset(disp, _gloffset_Uniform4fARB, fn);
8320 }
8321
8322 typedef void (GLAPIENTRYP _glptr_Uniform4fvARB)(GLint, GLsizei, const GLfloat *);
8323 #define CALL_Uniform4fvARB(disp, parameters) \
8324 (* GET_Uniform4fvARB(disp)) parameters
8325 static INLINE _glptr_Uniform4fvARB GET_Uniform4fvARB(struct _glapi_table *disp) {
8326 return (_glptr_Uniform4fvARB) (GET_by_offset(disp, _gloffset_Uniform4fvARB));
8327 }
8328
8329 static INLINE void SET_Uniform4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
8330 SET_by_offset(disp, _gloffset_Uniform4fvARB, fn);
8331 }
8332
8333 typedef void (GLAPIENTRYP _glptr_Uniform4iARB)(GLint, GLint, GLint, GLint, GLint);
8334 #define CALL_Uniform4iARB(disp, parameters) \
8335 (* GET_Uniform4iARB(disp)) parameters
8336 static INLINE _glptr_Uniform4iARB GET_Uniform4iARB(struct _glapi_table *disp) {
8337 return (_glptr_Uniform4iARB) (GET_by_offset(disp, _gloffset_Uniform4iARB));
8338 }
8339
8340 static INLINE void SET_Uniform4iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint)) {
8341 SET_by_offset(disp, _gloffset_Uniform4iARB, fn);
8342 }
8343
8344 typedef void (GLAPIENTRYP _glptr_Uniform4ivARB)(GLint, GLsizei, const GLint *);
8345 #define CALL_Uniform4ivARB(disp, parameters) \
8346 (* GET_Uniform4ivARB(disp)) parameters
8347 static INLINE _glptr_Uniform4ivARB GET_Uniform4ivARB(struct _glapi_table *disp) {
8348 return (_glptr_Uniform4ivARB) (GET_by_offset(disp, _gloffset_Uniform4ivARB));
8349 }
8350
8351 static INLINE void SET_Uniform4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
8352 SET_by_offset(disp, _gloffset_Uniform4ivARB, fn);
8353 }
8354
8355 typedef void (GLAPIENTRYP _glptr_UniformMatrix2fvARB)(GLint, GLsizei, GLboolean, const GLfloat *);
8356 #define CALL_UniformMatrix2fvARB(disp, parameters) \
8357 (* GET_UniformMatrix2fvARB(disp)) parameters
8358 static INLINE _glptr_UniformMatrix2fvARB GET_UniformMatrix2fvARB(struct _glapi_table *disp) {
8359 return (_glptr_UniformMatrix2fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix2fvARB));
8360 }
8361
8362 static INLINE void SET_UniformMatrix2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
8363 SET_by_offset(disp, _gloffset_UniformMatrix2fvARB, fn);
8364 }
8365
8366 typedef void (GLAPIENTRYP _glptr_UniformMatrix3fvARB)(GLint, GLsizei, GLboolean, const GLfloat *);
8367 #define CALL_UniformMatrix3fvARB(disp, parameters) \
8368 (* GET_UniformMatrix3fvARB(disp)) parameters
8369 static INLINE _glptr_UniformMatrix3fvARB GET_UniformMatrix3fvARB(struct _glapi_table *disp) {
8370 return (_glptr_UniformMatrix3fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix3fvARB));
8371 }
8372
8373 static INLINE void SET_UniformMatrix3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
8374 SET_by_offset(disp, _gloffset_UniformMatrix3fvARB, fn);
8375 }
8376
8377 typedef void (GLAPIENTRYP _glptr_UniformMatrix4fvARB)(GLint, GLsizei, GLboolean, const GLfloat *);
8378 #define CALL_UniformMatrix4fvARB(disp, parameters) \
8379 (* GET_UniformMatrix4fvARB(disp)) parameters
8380 static INLINE _glptr_UniformMatrix4fvARB GET_UniformMatrix4fvARB(struct _glapi_table *disp) {
8381 return (_glptr_UniformMatrix4fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix4fvARB));
8382 }
8383
8384 static INLINE void SET_UniformMatrix4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
8385 SET_by_offset(disp, _gloffset_UniformMatrix4fvARB, fn);
8386 }
8387
8388 typedef void (GLAPIENTRYP _glptr_UseProgramObjectARB)(GLhandleARB);
8389 #define CALL_UseProgramObjectARB(disp, parameters) \
8390 (* GET_UseProgramObjectARB(disp)) parameters
8391 static INLINE _glptr_UseProgramObjectARB GET_UseProgramObjectARB(struct _glapi_table *disp) {
8392 return (_glptr_UseProgramObjectARB) (GET_by_offset(disp, _gloffset_UseProgramObjectARB));
8393 }
8394
8395 static INLINE void SET_UseProgramObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
8396 SET_by_offset(disp, _gloffset_UseProgramObjectARB, fn);
8397 }
8398
8399 typedef void (GLAPIENTRYP _glptr_ValidateProgramARB)(GLhandleARB);
8400 #define CALL_ValidateProgramARB(disp, parameters) \
8401 (* GET_ValidateProgramARB(disp)) parameters
8402 static INLINE _glptr_ValidateProgramARB GET_ValidateProgramARB(struct _glapi_table *disp) {
8403 return (_glptr_ValidateProgramARB) (GET_by_offset(disp, _gloffset_ValidateProgramARB));
8404 }
8405
8406 static INLINE void SET_ValidateProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
8407 SET_by_offset(disp, _gloffset_ValidateProgramARB, fn);
8408 }
8409
8410 typedef void (GLAPIENTRYP _glptr_BindAttribLocationARB)(GLhandleARB, GLuint, const GLcharARB *);
8411 #define CALL_BindAttribLocationARB(disp, parameters) \
8412 (* GET_BindAttribLocationARB(disp)) parameters
8413 static INLINE _glptr_BindAttribLocationARB GET_BindAttribLocationARB(struct _glapi_table *disp) {
8414 return (_glptr_BindAttribLocationARB) (GET_by_offset(disp, _gloffset_BindAttribLocationARB));
8415 }
8416
8417 static INLINE void SET_BindAttribLocationARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, const GLcharARB *)) {
8418 SET_by_offset(disp, _gloffset_BindAttribLocationARB, fn);
8419 }
8420
8421 typedef void (GLAPIENTRYP _glptr_GetActiveAttribARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *);
8422 #define CALL_GetActiveAttribARB(disp, parameters) \
8423 (* GET_GetActiveAttribARB(disp)) parameters
8424 static INLINE _glptr_GetActiveAttribARB GET_GetActiveAttribARB(struct _glapi_table *disp) {
8425 return (_glptr_GetActiveAttribARB) (GET_by_offset(disp, _gloffset_GetActiveAttribARB));
8426 }
8427
8428 static INLINE void SET_GetActiveAttribARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) {
8429 SET_by_offset(disp, _gloffset_GetActiveAttribARB, fn);
8430 }
8431
8432 typedef GLint (GLAPIENTRYP _glptr_GetAttribLocationARB)(GLhandleARB, const GLcharARB *);
8433 #define CALL_GetAttribLocationARB(disp, parameters) \
8434 (* GET_GetAttribLocationARB(disp)) parameters
8435 static INLINE _glptr_GetAttribLocationARB GET_GetAttribLocationARB(struct _glapi_table *disp) {
8436 return (_glptr_GetAttribLocationARB) (GET_by_offset(disp, _gloffset_GetAttribLocationARB));
8437 }
8438
8439 static INLINE void SET_GetAttribLocationARB(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLhandleARB, const GLcharARB *)) {
8440 SET_by_offset(disp, _gloffset_GetAttribLocationARB, fn);
8441 }
8442
8443 typedef void (GLAPIENTRYP _glptr_DrawBuffersARB)(GLsizei, const GLenum *);
8444 #define CALL_DrawBuffersARB(disp, parameters) \
8445 (* GET_DrawBuffersARB(disp)) parameters
8446 static INLINE _glptr_DrawBuffersARB GET_DrawBuffersARB(struct _glapi_table *disp) {
8447 return (_glptr_DrawBuffersARB) (GET_by_offset(disp, _gloffset_DrawBuffersARB));
8448 }
8449
8450 static INLINE void SET_DrawBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLenum *)) {
8451 SET_by_offset(disp, _gloffset_DrawBuffersARB, fn);
8452 }
8453
8454 typedef void (GLAPIENTRYP _glptr_ClampColorARB)(GLenum, GLenum);
8455 #define CALL_ClampColorARB(disp, parameters) \
8456 (* GET_ClampColorARB(disp)) parameters
8457 static INLINE _glptr_ClampColorARB GET_ClampColorARB(struct _glapi_table *disp) {
8458 return (_glptr_ClampColorARB) (GET_by_offset(disp, _gloffset_ClampColorARB));
8459 }
8460
8461 static INLINE void SET_ClampColorARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
8462 SET_by_offset(disp, _gloffset_ClampColorARB, fn);
8463 }
8464
8465 typedef void (GLAPIENTRYP _glptr_DrawArraysInstancedARB)(GLenum, GLint, GLsizei, GLsizei);
8466 #define CALL_DrawArraysInstancedARB(disp, parameters) \
8467 (* GET_DrawArraysInstancedARB(disp)) parameters
8468 static INLINE _glptr_DrawArraysInstancedARB GET_DrawArraysInstancedARB(struct _glapi_table *disp) {
8469 return (_glptr_DrawArraysInstancedARB) (GET_by_offset(disp, _gloffset_DrawArraysInstancedARB));
8470 }
8471
8472 static INLINE void SET_DrawArraysInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLsizei)) {
8473 SET_by_offset(disp, _gloffset_DrawArraysInstancedARB, fn);
8474 }
8475
8476 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedARB)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei);
8477 #define CALL_DrawElementsInstancedARB(disp, parameters) \
8478 (* GET_DrawElementsInstancedARB(disp)) parameters
8479 static INLINE _glptr_DrawElementsInstancedARB GET_DrawElementsInstancedARB(struct _glapi_table *disp) {
8480 return (_glptr_DrawElementsInstancedARB) (GET_by_offset(disp, _gloffset_DrawElementsInstancedARB));
8481 }
8482
8483 static INLINE void SET_DrawElementsInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei)) {
8484 SET_by_offset(disp, _gloffset_DrawElementsInstancedARB, fn);
8485 }
8486
8487 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei);
8488 #define CALL_RenderbufferStorageMultisample(disp, parameters) \
8489 (* GET_RenderbufferStorageMultisample(disp)) parameters
8490 static INLINE _glptr_RenderbufferStorageMultisample GET_RenderbufferStorageMultisample(struct _glapi_table *disp) {
8491 return (_glptr_RenderbufferStorageMultisample) (GET_by_offset(disp, _gloffset_RenderbufferStorageMultisample));
8492 }
8493
8494 static INLINE void SET_RenderbufferStorageMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
8495 SET_by_offset(disp, _gloffset_RenderbufferStorageMultisample, fn);
8496 }
8497
8498 typedef void (GLAPIENTRYP _glptr_FramebufferTextureARB)(GLenum, GLenum, GLuint, GLint);
8499 #define CALL_FramebufferTextureARB(disp, parameters) \
8500 (* GET_FramebufferTextureARB(disp)) parameters
8501 static INLINE _glptr_FramebufferTextureARB GET_FramebufferTextureARB(struct _glapi_table *disp) {
8502 return (_glptr_FramebufferTextureARB) (GET_by_offset(disp, _gloffset_FramebufferTextureARB));
8503 }
8504
8505 static INLINE void SET_FramebufferTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint)) {
8506 SET_by_offset(disp, _gloffset_FramebufferTextureARB, fn);
8507 }
8508
8509 typedef void (GLAPIENTRYP _glptr_FramebufferTextureFaceARB)(GLenum, GLenum, GLuint, GLint, GLenum);
8510 #define CALL_FramebufferTextureFaceARB(disp, parameters) \
8511 (* GET_FramebufferTextureFaceARB(disp)) parameters
8512 static INLINE _glptr_FramebufferTextureFaceARB GET_FramebufferTextureFaceARB(struct _glapi_table *disp) {
8513 return (_glptr_FramebufferTextureFaceARB) (GET_by_offset(disp, _gloffset_FramebufferTextureFaceARB));
8514 }
8515
8516 static INLINE void SET_FramebufferTextureFaceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint, GLenum)) {
8517 SET_by_offset(disp, _gloffset_FramebufferTextureFaceARB, fn);
8518 }
8519
8520 typedef void (GLAPIENTRYP _glptr_ProgramParameteriARB)(GLuint, GLenum, GLint);
8521 #define CALL_ProgramParameteriARB(disp, parameters) \
8522 (* GET_ProgramParameteriARB(disp)) parameters
8523 static INLINE _glptr_ProgramParameteriARB GET_ProgramParameteriARB(struct _glapi_table *disp) {
8524 return (_glptr_ProgramParameteriARB) (GET_by_offset(disp, _gloffset_ProgramParameteriARB));
8525 }
8526
8527 static INLINE void SET_ProgramParameteriARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
8528 SET_by_offset(disp, _gloffset_ProgramParameteriARB, fn);
8529 }
8530
8531 typedef void (GLAPIENTRYP _glptr_VertexAttribDivisorARB)(GLuint, GLuint);
8532 #define CALL_VertexAttribDivisorARB(disp, parameters) \
8533 (* GET_VertexAttribDivisorARB(disp)) parameters
8534 static INLINE _glptr_VertexAttribDivisorARB GET_VertexAttribDivisorARB(struct _glapi_table *disp) {
8535 return (_glptr_VertexAttribDivisorARB) (GET_by_offset(disp, _gloffset_VertexAttribDivisorARB));
8536 }
8537
8538 static INLINE void SET_VertexAttribDivisorARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
8539 SET_by_offset(disp, _gloffset_VertexAttribDivisorARB, fn);
8540 }
8541
8542 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRange)(GLenum, GLintptr, GLsizeiptr);
8543 #define CALL_FlushMappedBufferRange(disp, parameters) \
8544 (* GET_FlushMappedBufferRange(disp)) parameters
8545 static INLINE _glptr_FlushMappedBufferRange GET_FlushMappedBufferRange(struct _glapi_table *disp) {
8546 return (_glptr_FlushMappedBufferRange) (GET_by_offset(disp, _gloffset_FlushMappedBufferRange));
8547 }
8548
8549 static INLINE void SET_FlushMappedBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
8550 SET_by_offset(disp, _gloffset_FlushMappedBufferRange, fn);
8551 }
8552
8553 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferRange)(GLenum, GLintptr, GLsizeiptr, GLbitfield);
8554 #define CALL_MapBufferRange(disp, parameters) \
8555 (* GET_MapBufferRange(disp)) parameters
8556 static INLINE _glptr_MapBufferRange GET_MapBufferRange(struct _glapi_table *disp) {
8557 return (_glptr_MapBufferRange) (GET_by_offset(disp, _gloffset_MapBufferRange));
8558 }
8559
8560 static INLINE void SET_MapBufferRange(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLbitfield)) {
8561 SET_by_offset(disp, _gloffset_MapBufferRange, fn);
8562 }
8563
8564 typedef void (GLAPIENTRYP _glptr_TexBufferARB)(GLenum, GLenum, GLuint);
8565 #define CALL_TexBufferARB(disp, parameters) \
8566 (* GET_TexBufferARB(disp)) parameters
8567 static INLINE _glptr_TexBufferARB GET_TexBufferARB(struct _glapi_table *disp) {
8568 return (_glptr_TexBufferARB) (GET_by_offset(disp, _gloffset_TexBufferARB));
8569 }
8570
8571 static INLINE void SET_TexBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
8572 SET_by_offset(disp, _gloffset_TexBufferARB, fn);
8573 }
8574
8575 typedef void (GLAPIENTRYP _glptr_BindVertexArray)(GLuint);
8576 #define CALL_BindVertexArray(disp, parameters) \
8577 (* GET_BindVertexArray(disp)) parameters
8578 static INLINE _glptr_BindVertexArray GET_BindVertexArray(struct _glapi_table *disp) {
8579 return (_glptr_BindVertexArray) (GET_by_offset(disp, _gloffset_BindVertexArray));
8580 }
8581
8582 static INLINE void SET_BindVertexArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
8583 SET_by_offset(disp, _gloffset_BindVertexArray, fn);
8584 }
8585
8586 typedef void (GLAPIENTRYP _glptr_GenVertexArrays)(GLsizei, GLuint *);
8587 #define CALL_GenVertexArrays(disp, parameters) \
8588 (* GET_GenVertexArrays(disp)) parameters
8589 static INLINE _glptr_GenVertexArrays GET_GenVertexArrays(struct _glapi_table *disp) {
8590 return (_glptr_GenVertexArrays) (GET_by_offset(disp, _gloffset_GenVertexArrays));
8591 }
8592
8593 static INLINE void SET_GenVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
8594 SET_by_offset(disp, _gloffset_GenVertexArrays, fn);
8595 }
8596
8597 typedef void (GLAPIENTRYP _glptr_CopyBufferSubData)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr);
8598 #define CALL_CopyBufferSubData(disp, parameters) \
8599 (* GET_CopyBufferSubData(disp)) parameters
8600 static INLINE _glptr_CopyBufferSubData GET_CopyBufferSubData(struct _glapi_table *disp) {
8601 return (_glptr_CopyBufferSubData) (GET_by_offset(disp, _gloffset_CopyBufferSubData));
8602 }
8603
8604 static INLINE void SET_CopyBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr)) {
8605 SET_by_offset(disp, _gloffset_CopyBufferSubData, fn);
8606 }
8607
8608 typedef GLenum (GLAPIENTRYP _glptr_ClientWaitSync)(GLsync, GLbitfield, GLuint64);
8609 #define CALL_ClientWaitSync(disp, parameters) \
8610 (* GET_ClientWaitSync(disp)) parameters
8611 static INLINE _glptr_ClientWaitSync GET_ClientWaitSync(struct _glapi_table *disp) {
8612 return (_glptr_ClientWaitSync) (GET_by_offset(disp, _gloffset_ClientWaitSync));
8613 }
8614
8615 static INLINE void SET_ClientWaitSync(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLsync, GLbitfield, GLuint64)) {
8616 SET_by_offset(disp, _gloffset_ClientWaitSync, fn);
8617 }
8618
8619 typedef void (GLAPIENTRYP _glptr_DeleteSync)(GLsync);
8620 #define CALL_DeleteSync(disp, parameters) \
8621 (* GET_DeleteSync(disp)) parameters
8622 static INLINE _glptr_DeleteSync GET_DeleteSync(struct _glapi_table *disp) {
8623 return (_glptr_DeleteSync) (GET_by_offset(disp, _gloffset_DeleteSync));
8624 }
8625
8626 static INLINE void SET_DeleteSync(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync)) {
8627 SET_by_offset(disp, _gloffset_DeleteSync, fn);
8628 }
8629
8630 typedef GLsync (GLAPIENTRYP _glptr_FenceSync)(GLenum, GLbitfield);
8631 #define CALL_FenceSync(disp, parameters) \
8632 (* GET_FenceSync(disp)) parameters
8633 static INLINE _glptr_FenceSync GET_FenceSync(struct _glapi_table *disp) {
8634 return (_glptr_FenceSync) (GET_by_offset(disp, _gloffset_FenceSync));
8635 }
8636
8637 static INLINE void SET_FenceSync(struct _glapi_table *disp, GLsync (GLAPIENTRYP fn)(GLenum, GLbitfield)) {
8638 SET_by_offset(disp, _gloffset_FenceSync, fn);
8639 }
8640
8641 typedef void (GLAPIENTRYP _glptr_GetInteger64v)(GLenum, GLint64 *);
8642 #define CALL_GetInteger64v(disp, parameters) \
8643 (* GET_GetInteger64v(disp)) parameters
8644 static INLINE _glptr_GetInteger64v GET_GetInteger64v(struct _glapi_table *disp) {
8645 return (_glptr_GetInteger64v) (GET_by_offset(disp, _gloffset_GetInteger64v));
8646 }
8647
8648 static INLINE void SET_GetInteger64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint64 *)) {
8649 SET_by_offset(disp, _gloffset_GetInteger64v, fn);
8650 }
8651
8652 typedef void (GLAPIENTRYP _glptr_GetSynciv)(GLsync, GLenum, GLsizei, GLsizei *, GLint *);
8653 #define CALL_GetSynciv(disp, parameters) \
8654 (* GET_GetSynciv(disp)) parameters
8655 static INLINE _glptr_GetSynciv GET_GetSynciv(struct _glapi_table *disp) {
8656 return (_glptr_GetSynciv) (GET_by_offset(disp, _gloffset_GetSynciv));
8657 }
8658
8659 static INLINE void SET_GetSynciv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync, GLenum, GLsizei, GLsizei *, GLint *)) {
8660 SET_by_offset(disp, _gloffset_GetSynciv, fn);
8661 }
8662
8663 typedef GLboolean (GLAPIENTRYP _glptr_IsSync)(GLsync);
8664 #define CALL_IsSync(disp, parameters) \
8665 (* GET_IsSync(disp)) parameters
8666 static INLINE _glptr_IsSync GET_IsSync(struct _glapi_table *disp) {
8667 return (_glptr_IsSync) (GET_by_offset(disp, _gloffset_IsSync));
8668 }
8669
8670 static INLINE void SET_IsSync(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsync)) {
8671 SET_by_offset(disp, _gloffset_IsSync, fn);
8672 }
8673
8674 typedef void (GLAPIENTRYP _glptr_WaitSync)(GLsync, GLbitfield, GLuint64);
8675 #define CALL_WaitSync(disp, parameters) \
8676 (* GET_WaitSync(disp)) parameters
8677 static INLINE _glptr_WaitSync GET_WaitSync(struct _glapi_table *disp) {
8678 return (_glptr_WaitSync) (GET_by_offset(disp, _gloffset_WaitSync));
8679 }
8680
8681 static INLINE void SET_WaitSync(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync, GLbitfield, GLuint64)) {
8682 SET_by_offset(disp, _gloffset_WaitSync, fn);
8683 }
8684
8685 typedef void (GLAPIENTRYP _glptr_DrawElementsBaseVertex)(GLenum, GLsizei, GLenum, const GLvoid *, GLint);
8686 #define CALL_DrawElementsBaseVertex(disp, parameters) \
8687 (* GET_DrawElementsBaseVertex(disp)) parameters
8688 static INLINE _glptr_DrawElementsBaseVertex GET_DrawElementsBaseVertex(struct _glapi_table *disp) {
8689 return (_glptr_DrawElementsBaseVertex) (GET_by_offset(disp, _gloffset_DrawElementsBaseVertex));
8690 }
8691
8692 static INLINE void SET_DrawElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLint)) {
8693 SET_by_offset(disp, _gloffset_DrawElementsBaseVertex, fn);
8694 }
8695
8696 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseVertex)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint);
8697 #define CALL_DrawElementsInstancedBaseVertex(disp, parameters) \
8698 (* GET_DrawElementsInstancedBaseVertex(disp)) parameters
8699 static INLINE _glptr_DrawElementsInstancedBaseVertex GET_DrawElementsInstancedBaseVertex(struct _glapi_table *disp) {
8700 return (_glptr_DrawElementsInstancedBaseVertex) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertex));
8701 }
8702
8703 static INLINE void SET_DrawElementsInstancedBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint)) {
8704 SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertex, fn);
8705 }
8706
8707 typedef void (GLAPIENTRYP _glptr_DrawRangeElementsBaseVertex)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *, GLint);
8708 #define CALL_DrawRangeElementsBaseVertex(disp, parameters) \
8709 (* GET_DrawRangeElementsBaseVertex(disp)) parameters
8710 static INLINE _glptr_DrawRangeElementsBaseVertex GET_DrawRangeElementsBaseVertex(struct _glapi_table *disp) {
8711 return (_glptr_DrawRangeElementsBaseVertex) (GET_by_offset(disp, _gloffset_DrawRangeElementsBaseVertex));
8712 }
8713
8714 static INLINE void SET_DrawRangeElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *, GLint)) {
8715 SET_by_offset(disp, _gloffset_DrawRangeElementsBaseVertex, fn);
8716 }
8717
8718 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsBaseVertex)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei, const GLint *);
8719 #define CALL_MultiDrawElementsBaseVertex(disp, parameters) \
8720 (* GET_MultiDrawElementsBaseVertex(disp)) parameters
8721 static INLINE _glptr_MultiDrawElementsBaseVertex GET_MultiDrawElementsBaseVertex(struct _glapi_table *disp) {
8722 return (_glptr_MultiDrawElementsBaseVertex) (GET_by_offset(disp, _gloffset_MultiDrawElementsBaseVertex));
8723 }
8724
8725 static INLINE void SET_MultiDrawElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei, const GLint *)) {
8726 SET_by_offset(disp, _gloffset_MultiDrawElementsBaseVertex, fn);
8727 }
8728
8729 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateiARB)(GLuint, GLenum, GLenum);
8730 #define CALL_BlendEquationSeparateiARB(disp, parameters) \
8731 (* GET_BlendEquationSeparateiARB(disp)) parameters
8732 static INLINE _glptr_BlendEquationSeparateiARB GET_BlendEquationSeparateiARB(struct _glapi_table *disp) {
8733 return (_glptr_BlendEquationSeparateiARB) (GET_by_offset(disp, _gloffset_BlendEquationSeparateiARB));
8734 }
8735
8736 static INLINE void SET_BlendEquationSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) {
8737 SET_by_offset(disp, _gloffset_BlendEquationSeparateiARB, fn);
8738 }
8739
8740 typedef void (GLAPIENTRYP _glptr_BlendEquationiARB)(GLuint, GLenum);
8741 #define CALL_BlendEquationiARB(disp, parameters) \
8742 (* GET_BlendEquationiARB(disp)) parameters
8743 static INLINE _glptr_BlendEquationiARB GET_BlendEquationiARB(struct _glapi_table *disp) {
8744 return (_glptr_BlendEquationiARB) (GET_by_offset(disp, _gloffset_BlendEquationiARB));
8745 }
8746
8747 static INLINE void SET_BlendEquationiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
8748 SET_by_offset(disp, _gloffset_BlendEquationiARB, fn);
8749 }
8750
8751 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateiARB)(GLuint, GLenum, GLenum, GLenum, GLenum);
8752 #define CALL_BlendFuncSeparateiARB(disp, parameters) \
8753 (* GET_BlendFuncSeparateiARB(disp)) parameters
8754 static INLINE _glptr_BlendFuncSeparateiARB GET_BlendFuncSeparateiARB(struct _glapi_table *disp) {
8755 return (_glptr_BlendFuncSeparateiARB) (GET_by_offset(disp, _gloffset_BlendFuncSeparateiARB));
8756 }
8757
8758 static INLINE void SET_BlendFuncSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLenum, GLenum)) {
8759 SET_by_offset(disp, _gloffset_BlendFuncSeparateiARB, fn);
8760 }
8761
8762 typedef void (GLAPIENTRYP _glptr_BlendFunciARB)(GLuint, GLenum, GLenum);
8763 #define CALL_BlendFunciARB(disp, parameters) \
8764 (* GET_BlendFunciARB(disp)) parameters
8765 static INLINE _glptr_BlendFunciARB GET_BlendFunciARB(struct _glapi_table *disp) {
8766 return (_glptr_BlendFunciARB) (GET_by_offset(disp, _gloffset_BlendFunciARB));
8767 }
8768
8769 static INLINE void SET_BlendFunciARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) {
8770 SET_by_offset(disp, _gloffset_BlendFunciARB, fn);
8771 }
8772
8773 typedef void (GLAPIENTRYP _glptr_BindSampler)(GLuint, GLuint);
8774 #define CALL_BindSampler(disp, parameters) \
8775 (* GET_BindSampler(disp)) parameters
8776 static INLINE _glptr_BindSampler GET_BindSampler(struct _glapi_table *disp) {
8777 return (_glptr_BindSampler) (GET_by_offset(disp, _gloffset_BindSampler));
8778 }
8779
8780 static INLINE void SET_BindSampler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
8781 SET_by_offset(disp, _gloffset_BindSampler, fn);
8782 }
8783
8784 typedef void (GLAPIENTRYP _glptr_DeleteSamplers)(GLsizei, const GLuint *);
8785 #define CALL_DeleteSamplers(disp, parameters) \
8786 (* GET_DeleteSamplers(disp)) parameters
8787 static INLINE _glptr_DeleteSamplers GET_DeleteSamplers(struct _glapi_table *disp) {
8788 return (_glptr_DeleteSamplers) (GET_by_offset(disp, _gloffset_DeleteSamplers));
8789 }
8790
8791 static INLINE void SET_DeleteSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
8792 SET_by_offset(disp, _gloffset_DeleteSamplers, fn);
8793 }
8794
8795 typedef void (GLAPIENTRYP _glptr_GenSamplers)(GLsizei, GLuint *);
8796 #define CALL_GenSamplers(disp, parameters) \
8797 (* GET_GenSamplers(disp)) parameters
8798 static INLINE _glptr_GenSamplers GET_GenSamplers(struct _glapi_table *disp) {
8799 return (_glptr_GenSamplers) (GET_by_offset(disp, _gloffset_GenSamplers));
8800 }
8801
8802 static INLINE void SET_GenSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
8803 SET_by_offset(disp, _gloffset_GenSamplers, fn);
8804 }
8805
8806 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterIiv)(GLuint, GLenum, GLint *);
8807 #define CALL_GetSamplerParameterIiv(disp, parameters) \
8808 (* GET_GetSamplerParameterIiv(disp)) parameters
8809 static INLINE _glptr_GetSamplerParameterIiv GET_GetSamplerParameterIiv(struct _glapi_table *disp) {
8810 return (_glptr_GetSamplerParameterIiv) (GET_by_offset(disp, _gloffset_GetSamplerParameterIiv));
8811 }
8812
8813 static INLINE void SET_GetSamplerParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
8814 SET_by_offset(disp, _gloffset_GetSamplerParameterIiv, fn);
8815 }
8816
8817 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterIuiv)(GLuint, GLenum, GLuint *);
8818 #define CALL_GetSamplerParameterIuiv(disp, parameters) \
8819 (* GET_GetSamplerParameterIuiv(disp)) parameters
8820 static INLINE _glptr_GetSamplerParameterIuiv GET_GetSamplerParameterIuiv(struct _glapi_table *disp) {
8821 return (_glptr_GetSamplerParameterIuiv) (GET_by_offset(disp, _gloffset_GetSamplerParameterIuiv));
8822 }
8823
8824 static INLINE void SET_GetSamplerParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
8825 SET_by_offset(disp, _gloffset_GetSamplerParameterIuiv, fn);
8826 }
8827
8828 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterfv)(GLuint, GLenum, GLfloat *);
8829 #define CALL_GetSamplerParameterfv(disp, parameters) \
8830 (* GET_GetSamplerParameterfv(disp)) parameters
8831 static INLINE _glptr_GetSamplerParameterfv GET_GetSamplerParameterfv(struct _glapi_table *disp) {
8832 return (_glptr_GetSamplerParameterfv) (GET_by_offset(disp, _gloffset_GetSamplerParameterfv));
8833 }
8834
8835 static INLINE void SET_GetSamplerParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
8836 SET_by_offset(disp, _gloffset_GetSamplerParameterfv, fn);
8837 }
8838
8839 typedef void (GLAPIENTRYP _glptr_GetSamplerParameteriv)(GLuint, GLenum, GLint *);
8840 #define CALL_GetSamplerParameteriv(disp, parameters) \
8841 (* GET_GetSamplerParameteriv(disp)) parameters
8842 static INLINE _glptr_GetSamplerParameteriv GET_GetSamplerParameteriv(struct _glapi_table *disp) {
8843 return (_glptr_GetSamplerParameteriv) (GET_by_offset(disp, _gloffset_GetSamplerParameteriv));
8844 }
8845
8846 static INLINE void SET_GetSamplerParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
8847 SET_by_offset(disp, _gloffset_GetSamplerParameteriv, fn);
8848 }
8849
8850 typedef GLboolean (GLAPIENTRYP _glptr_IsSampler)(GLuint);
8851 #define CALL_IsSampler(disp, parameters) \
8852 (* GET_IsSampler(disp)) parameters
8853 static INLINE _glptr_IsSampler GET_IsSampler(struct _glapi_table *disp) {
8854 return (_glptr_IsSampler) (GET_by_offset(disp, _gloffset_IsSampler));
8855 }
8856
8857 static INLINE void SET_IsSampler(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
8858 SET_by_offset(disp, _gloffset_IsSampler, fn);
8859 }
8860
8861 typedef void (GLAPIENTRYP _glptr_SamplerParameterIiv)(GLuint, GLenum, const GLint *);
8862 #define CALL_SamplerParameterIiv(disp, parameters) \
8863 (* GET_SamplerParameterIiv(disp)) parameters
8864 static INLINE _glptr_SamplerParameterIiv GET_SamplerParameterIiv(struct _glapi_table *disp) {
8865 return (_glptr_SamplerParameterIiv) (GET_by_offset(disp, _gloffset_SamplerParameterIiv));
8866 }
8867
8868 static INLINE void SET_SamplerParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
8869 SET_by_offset(disp, _gloffset_SamplerParameterIiv, fn);
8870 }
8871
8872 typedef void (GLAPIENTRYP _glptr_SamplerParameterIuiv)(GLuint, GLenum, const GLuint *);
8873 #define CALL_SamplerParameterIuiv(disp, parameters) \
8874 (* GET_SamplerParameterIuiv(disp)) parameters
8875 static INLINE _glptr_SamplerParameterIuiv GET_SamplerParameterIuiv(struct _glapi_table *disp) {
8876 return (_glptr_SamplerParameterIuiv) (GET_by_offset(disp, _gloffset_SamplerParameterIuiv));
8877 }
8878
8879 static INLINE void SET_SamplerParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLuint *)) {
8880 SET_by_offset(disp, _gloffset_SamplerParameterIuiv, fn);
8881 }
8882
8883 typedef void (GLAPIENTRYP _glptr_SamplerParameterf)(GLuint, GLenum, GLfloat);
8884 #define CALL_SamplerParameterf(disp, parameters) \
8885 (* GET_SamplerParameterf(disp)) parameters
8886 static INLINE _glptr_SamplerParameterf GET_SamplerParameterf(struct _glapi_table *disp) {
8887 return (_glptr_SamplerParameterf) (GET_by_offset(disp, _gloffset_SamplerParameterf));
8888 }
8889
8890 static INLINE void SET_SamplerParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat)) {
8891 SET_by_offset(disp, _gloffset_SamplerParameterf, fn);
8892 }
8893
8894 typedef void (GLAPIENTRYP _glptr_SamplerParameterfv)(GLuint, GLenum, const GLfloat *);
8895 #define CALL_SamplerParameterfv(disp, parameters) \
8896 (* GET_SamplerParameterfv(disp)) parameters
8897 static INLINE _glptr_SamplerParameterfv GET_SamplerParameterfv(struct _glapi_table *disp) {
8898 return (_glptr_SamplerParameterfv) (GET_by_offset(disp, _gloffset_SamplerParameterfv));
8899 }
8900
8901 static INLINE void SET_SamplerParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLfloat *)) {
8902 SET_by_offset(disp, _gloffset_SamplerParameterfv, fn);
8903 }
8904
8905 typedef void (GLAPIENTRYP _glptr_SamplerParameteri)(GLuint, GLenum, GLint);
8906 #define CALL_SamplerParameteri(disp, parameters) \
8907 (* GET_SamplerParameteri(disp)) parameters
8908 static INLINE _glptr_SamplerParameteri GET_SamplerParameteri(struct _glapi_table *disp) {
8909 return (_glptr_SamplerParameteri) (GET_by_offset(disp, _gloffset_SamplerParameteri));
8910 }
8911
8912 static INLINE void SET_SamplerParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
8913 SET_by_offset(disp, _gloffset_SamplerParameteri, fn);
8914 }
8915
8916 typedef void (GLAPIENTRYP _glptr_SamplerParameteriv)(GLuint, GLenum, const GLint *);
8917 #define CALL_SamplerParameteriv(disp, parameters) \
8918 (* GET_SamplerParameteriv(disp)) parameters
8919 static INLINE _glptr_SamplerParameteriv GET_SamplerParameteriv(struct _glapi_table *disp) {
8920 return (_glptr_SamplerParameteriv) (GET_by_offset(disp, _gloffset_SamplerParameteriv));
8921 }
8922
8923 static INLINE void SET_SamplerParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
8924 SET_by_offset(disp, _gloffset_SamplerParameteriv, fn);
8925 }
8926
8927 typedef void (GLAPIENTRYP _glptr_ColorP3ui)(GLenum, GLuint);
8928 #define CALL_ColorP3ui(disp, parameters) \
8929 (* GET_ColorP3ui(disp)) parameters
8930 static INLINE _glptr_ColorP3ui GET_ColorP3ui(struct _glapi_table *disp) {
8931 return (_glptr_ColorP3ui) (GET_by_offset(disp, _gloffset_ColorP3ui));
8932 }
8933
8934 static INLINE void SET_ColorP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
8935 SET_by_offset(disp, _gloffset_ColorP3ui, fn);
8936 }
8937
8938 typedef void (GLAPIENTRYP _glptr_ColorP3uiv)(GLenum, const GLuint *);
8939 #define CALL_ColorP3uiv(disp, parameters) \
8940 (* GET_ColorP3uiv(disp)) parameters
8941 static INLINE _glptr_ColorP3uiv GET_ColorP3uiv(struct _glapi_table *disp) {
8942 return (_glptr_ColorP3uiv) (GET_by_offset(disp, _gloffset_ColorP3uiv));
8943 }
8944
8945 static INLINE void SET_ColorP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
8946 SET_by_offset(disp, _gloffset_ColorP3uiv, fn);
8947 }
8948
8949 typedef void (GLAPIENTRYP _glptr_ColorP4ui)(GLenum, GLuint);
8950 #define CALL_ColorP4ui(disp, parameters) \
8951 (* GET_ColorP4ui(disp)) parameters
8952 static INLINE _glptr_ColorP4ui GET_ColorP4ui(struct _glapi_table *disp) {
8953 return (_glptr_ColorP4ui) (GET_by_offset(disp, _gloffset_ColorP4ui));
8954 }
8955
8956 static INLINE void SET_ColorP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
8957 SET_by_offset(disp, _gloffset_ColorP4ui, fn);
8958 }
8959
8960 typedef void (GLAPIENTRYP _glptr_ColorP4uiv)(GLenum, const GLuint *);
8961 #define CALL_ColorP4uiv(disp, parameters) \
8962 (* GET_ColorP4uiv(disp)) parameters
8963 static INLINE _glptr_ColorP4uiv GET_ColorP4uiv(struct _glapi_table *disp) {
8964 return (_glptr_ColorP4uiv) (GET_by_offset(disp, _gloffset_ColorP4uiv));
8965 }
8966
8967 static INLINE void SET_ColorP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
8968 SET_by_offset(disp, _gloffset_ColorP4uiv, fn);
8969 }
8970
8971 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP1ui)(GLenum, GLenum, GLuint);
8972 #define CALL_MultiTexCoordP1ui(disp, parameters) \
8973 (* GET_MultiTexCoordP1ui(disp)) parameters
8974 static INLINE _glptr_MultiTexCoordP1ui GET_MultiTexCoordP1ui(struct _glapi_table *disp) {
8975 return (_glptr_MultiTexCoordP1ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP1ui));
8976 }
8977
8978 static INLINE void SET_MultiTexCoordP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
8979 SET_by_offset(disp, _gloffset_MultiTexCoordP1ui, fn);
8980 }
8981
8982 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP1uiv)(GLenum, GLenum, const GLuint *);
8983 #define CALL_MultiTexCoordP1uiv(disp, parameters) \
8984 (* GET_MultiTexCoordP1uiv(disp)) parameters
8985 static INLINE _glptr_MultiTexCoordP1uiv GET_MultiTexCoordP1uiv(struct _glapi_table *disp) {
8986 return (_glptr_MultiTexCoordP1uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP1uiv));
8987 }
8988
8989 static INLINE void SET_MultiTexCoordP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
8990 SET_by_offset(disp, _gloffset_MultiTexCoordP1uiv, fn);
8991 }
8992
8993 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP2ui)(GLenum, GLenum, GLuint);
8994 #define CALL_MultiTexCoordP2ui(disp, parameters) \
8995 (* GET_MultiTexCoordP2ui(disp)) parameters
8996 static INLINE _glptr_MultiTexCoordP2ui GET_MultiTexCoordP2ui(struct _glapi_table *disp) {
8997 return (_glptr_MultiTexCoordP2ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP2ui));
8998 }
8999
9000 static INLINE void SET_MultiTexCoordP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
9001 SET_by_offset(disp, _gloffset_MultiTexCoordP2ui, fn);
9002 }
9003
9004 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP2uiv)(GLenum, GLenum, const GLuint *);
9005 #define CALL_MultiTexCoordP2uiv(disp, parameters) \
9006 (* GET_MultiTexCoordP2uiv(disp)) parameters
9007 static INLINE _glptr_MultiTexCoordP2uiv GET_MultiTexCoordP2uiv(struct _glapi_table *disp) {
9008 return (_glptr_MultiTexCoordP2uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP2uiv));
9009 }
9010
9011 static INLINE void SET_MultiTexCoordP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
9012 SET_by_offset(disp, _gloffset_MultiTexCoordP2uiv, fn);
9013 }
9014
9015 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP3ui)(GLenum, GLenum, GLuint);
9016 #define CALL_MultiTexCoordP3ui(disp, parameters) \
9017 (* GET_MultiTexCoordP3ui(disp)) parameters
9018 static INLINE _glptr_MultiTexCoordP3ui GET_MultiTexCoordP3ui(struct _glapi_table *disp) {
9019 return (_glptr_MultiTexCoordP3ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP3ui));
9020 }
9021
9022 static INLINE void SET_MultiTexCoordP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
9023 SET_by_offset(disp, _gloffset_MultiTexCoordP3ui, fn);
9024 }
9025
9026 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP3uiv)(GLenum, GLenum, const GLuint *);
9027 #define CALL_MultiTexCoordP3uiv(disp, parameters) \
9028 (* GET_MultiTexCoordP3uiv(disp)) parameters
9029 static INLINE _glptr_MultiTexCoordP3uiv GET_MultiTexCoordP3uiv(struct _glapi_table *disp) {
9030 return (_glptr_MultiTexCoordP3uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP3uiv));
9031 }
9032
9033 static INLINE void SET_MultiTexCoordP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
9034 SET_by_offset(disp, _gloffset_MultiTexCoordP3uiv, fn);
9035 }
9036
9037 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP4ui)(GLenum, GLenum, GLuint);
9038 #define CALL_MultiTexCoordP4ui(disp, parameters) \
9039 (* GET_MultiTexCoordP4ui(disp)) parameters
9040 static INLINE _glptr_MultiTexCoordP4ui GET_MultiTexCoordP4ui(struct _glapi_table *disp) {
9041 return (_glptr_MultiTexCoordP4ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP4ui));
9042 }
9043
9044 static INLINE void SET_MultiTexCoordP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
9045 SET_by_offset(disp, _gloffset_MultiTexCoordP4ui, fn);
9046 }
9047
9048 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP4uiv)(GLenum, GLenum, const GLuint *);
9049 #define CALL_MultiTexCoordP4uiv(disp, parameters) \
9050 (* GET_MultiTexCoordP4uiv(disp)) parameters
9051 static INLINE _glptr_MultiTexCoordP4uiv GET_MultiTexCoordP4uiv(struct _glapi_table *disp) {
9052 return (_glptr_MultiTexCoordP4uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP4uiv));
9053 }
9054
9055 static INLINE void SET_MultiTexCoordP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
9056 SET_by_offset(disp, _gloffset_MultiTexCoordP4uiv, fn);
9057 }
9058
9059 typedef void (GLAPIENTRYP _glptr_NormalP3ui)(GLenum, GLuint);
9060 #define CALL_NormalP3ui(disp, parameters) \
9061 (* GET_NormalP3ui(disp)) parameters
9062 static INLINE _glptr_NormalP3ui GET_NormalP3ui(struct _glapi_table *disp) {
9063 return (_glptr_NormalP3ui) (GET_by_offset(disp, _gloffset_NormalP3ui));
9064 }
9065
9066 static INLINE void SET_NormalP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9067 SET_by_offset(disp, _gloffset_NormalP3ui, fn);
9068 }
9069
9070 typedef void (GLAPIENTRYP _glptr_NormalP3uiv)(GLenum, const GLuint *);
9071 #define CALL_NormalP3uiv(disp, parameters) \
9072 (* GET_NormalP3uiv(disp)) parameters
9073 static INLINE _glptr_NormalP3uiv GET_NormalP3uiv(struct _glapi_table *disp) {
9074 return (_glptr_NormalP3uiv) (GET_by_offset(disp, _gloffset_NormalP3uiv));
9075 }
9076
9077 static INLINE void SET_NormalP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9078 SET_by_offset(disp, _gloffset_NormalP3uiv, fn);
9079 }
9080
9081 typedef void (GLAPIENTRYP _glptr_SecondaryColorP3ui)(GLenum, GLuint);
9082 #define CALL_SecondaryColorP3ui(disp, parameters) \
9083 (* GET_SecondaryColorP3ui(disp)) parameters
9084 static INLINE _glptr_SecondaryColorP3ui GET_SecondaryColorP3ui(struct _glapi_table *disp) {
9085 return (_glptr_SecondaryColorP3ui) (GET_by_offset(disp, _gloffset_SecondaryColorP3ui));
9086 }
9087
9088 static INLINE void SET_SecondaryColorP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9089 SET_by_offset(disp, _gloffset_SecondaryColorP3ui, fn);
9090 }
9091
9092 typedef void (GLAPIENTRYP _glptr_SecondaryColorP3uiv)(GLenum, const GLuint *);
9093 #define CALL_SecondaryColorP3uiv(disp, parameters) \
9094 (* GET_SecondaryColorP3uiv(disp)) parameters
9095 static INLINE _glptr_SecondaryColorP3uiv GET_SecondaryColorP3uiv(struct _glapi_table *disp) {
9096 return (_glptr_SecondaryColorP3uiv) (GET_by_offset(disp, _gloffset_SecondaryColorP3uiv));
9097 }
9098
9099 static INLINE void SET_SecondaryColorP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9100 SET_by_offset(disp, _gloffset_SecondaryColorP3uiv, fn);
9101 }
9102
9103 typedef void (GLAPIENTRYP _glptr_TexCoordP1ui)(GLenum, GLuint);
9104 #define CALL_TexCoordP1ui(disp, parameters) \
9105 (* GET_TexCoordP1ui(disp)) parameters
9106 static INLINE _glptr_TexCoordP1ui GET_TexCoordP1ui(struct _glapi_table *disp) {
9107 return (_glptr_TexCoordP1ui) (GET_by_offset(disp, _gloffset_TexCoordP1ui));
9108 }
9109
9110 static INLINE void SET_TexCoordP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9111 SET_by_offset(disp, _gloffset_TexCoordP1ui, fn);
9112 }
9113
9114 typedef void (GLAPIENTRYP _glptr_TexCoordP1uiv)(GLenum, const GLuint *);
9115 #define CALL_TexCoordP1uiv(disp, parameters) \
9116 (* GET_TexCoordP1uiv(disp)) parameters
9117 static INLINE _glptr_TexCoordP1uiv GET_TexCoordP1uiv(struct _glapi_table *disp) {
9118 return (_glptr_TexCoordP1uiv) (GET_by_offset(disp, _gloffset_TexCoordP1uiv));
9119 }
9120
9121 static INLINE void SET_TexCoordP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9122 SET_by_offset(disp, _gloffset_TexCoordP1uiv, fn);
9123 }
9124
9125 typedef void (GLAPIENTRYP _glptr_TexCoordP2ui)(GLenum, GLuint);
9126 #define CALL_TexCoordP2ui(disp, parameters) \
9127 (* GET_TexCoordP2ui(disp)) parameters
9128 static INLINE _glptr_TexCoordP2ui GET_TexCoordP2ui(struct _glapi_table *disp) {
9129 return (_glptr_TexCoordP2ui) (GET_by_offset(disp, _gloffset_TexCoordP2ui));
9130 }
9131
9132 static INLINE void SET_TexCoordP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9133 SET_by_offset(disp, _gloffset_TexCoordP2ui, fn);
9134 }
9135
9136 typedef void (GLAPIENTRYP _glptr_TexCoordP2uiv)(GLenum, const GLuint *);
9137 #define CALL_TexCoordP2uiv(disp, parameters) \
9138 (* GET_TexCoordP2uiv(disp)) parameters
9139 static INLINE _glptr_TexCoordP2uiv GET_TexCoordP2uiv(struct _glapi_table *disp) {
9140 return (_glptr_TexCoordP2uiv) (GET_by_offset(disp, _gloffset_TexCoordP2uiv));
9141 }
9142
9143 static INLINE void SET_TexCoordP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9144 SET_by_offset(disp, _gloffset_TexCoordP2uiv, fn);
9145 }
9146
9147 typedef void (GLAPIENTRYP _glptr_TexCoordP3ui)(GLenum, GLuint);
9148 #define CALL_TexCoordP3ui(disp, parameters) \
9149 (* GET_TexCoordP3ui(disp)) parameters
9150 static INLINE _glptr_TexCoordP3ui GET_TexCoordP3ui(struct _glapi_table *disp) {
9151 return (_glptr_TexCoordP3ui) (GET_by_offset(disp, _gloffset_TexCoordP3ui));
9152 }
9153
9154 static INLINE void SET_TexCoordP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9155 SET_by_offset(disp, _gloffset_TexCoordP3ui, fn);
9156 }
9157
9158 typedef void (GLAPIENTRYP _glptr_TexCoordP3uiv)(GLenum, const GLuint *);
9159 #define CALL_TexCoordP3uiv(disp, parameters) \
9160 (* GET_TexCoordP3uiv(disp)) parameters
9161 static INLINE _glptr_TexCoordP3uiv GET_TexCoordP3uiv(struct _glapi_table *disp) {
9162 return (_glptr_TexCoordP3uiv) (GET_by_offset(disp, _gloffset_TexCoordP3uiv));
9163 }
9164
9165 static INLINE void SET_TexCoordP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9166 SET_by_offset(disp, _gloffset_TexCoordP3uiv, fn);
9167 }
9168
9169 typedef void (GLAPIENTRYP _glptr_TexCoordP4ui)(GLenum, GLuint);
9170 #define CALL_TexCoordP4ui(disp, parameters) \
9171 (* GET_TexCoordP4ui(disp)) parameters
9172 static INLINE _glptr_TexCoordP4ui GET_TexCoordP4ui(struct _glapi_table *disp) {
9173 return (_glptr_TexCoordP4ui) (GET_by_offset(disp, _gloffset_TexCoordP4ui));
9174 }
9175
9176 static INLINE void SET_TexCoordP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9177 SET_by_offset(disp, _gloffset_TexCoordP4ui, fn);
9178 }
9179
9180 typedef void (GLAPIENTRYP _glptr_TexCoordP4uiv)(GLenum, const GLuint *);
9181 #define CALL_TexCoordP4uiv(disp, parameters) \
9182 (* GET_TexCoordP4uiv(disp)) parameters
9183 static INLINE _glptr_TexCoordP4uiv GET_TexCoordP4uiv(struct _glapi_table *disp) {
9184 return (_glptr_TexCoordP4uiv) (GET_by_offset(disp, _gloffset_TexCoordP4uiv));
9185 }
9186
9187 static INLINE void SET_TexCoordP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9188 SET_by_offset(disp, _gloffset_TexCoordP4uiv, fn);
9189 }
9190
9191 typedef void (GLAPIENTRYP _glptr_VertexAttribP1ui)(GLuint, GLenum, GLboolean, GLuint);
9192 #define CALL_VertexAttribP1ui(disp, parameters) \
9193 (* GET_VertexAttribP1ui(disp)) parameters
9194 static INLINE _glptr_VertexAttribP1ui GET_VertexAttribP1ui(struct _glapi_table *disp) {
9195 return (_glptr_VertexAttribP1ui) (GET_by_offset(disp, _gloffset_VertexAttribP1ui));
9196 }
9197
9198 static INLINE void SET_VertexAttribP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
9199 SET_by_offset(disp, _gloffset_VertexAttribP1ui, fn);
9200 }
9201
9202 typedef void (GLAPIENTRYP _glptr_VertexAttribP1uiv)(GLuint, GLenum, GLboolean, const GLuint *);
9203 #define CALL_VertexAttribP1uiv(disp, parameters) \
9204 (* GET_VertexAttribP1uiv(disp)) parameters
9205 static INLINE _glptr_VertexAttribP1uiv GET_VertexAttribP1uiv(struct _glapi_table *disp) {
9206 return (_glptr_VertexAttribP1uiv) (GET_by_offset(disp, _gloffset_VertexAttribP1uiv));
9207 }
9208
9209 static INLINE void SET_VertexAttribP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
9210 SET_by_offset(disp, _gloffset_VertexAttribP1uiv, fn);
9211 }
9212
9213 typedef void (GLAPIENTRYP _glptr_VertexAttribP2ui)(GLuint, GLenum, GLboolean, GLuint);
9214 #define CALL_VertexAttribP2ui(disp, parameters) \
9215 (* GET_VertexAttribP2ui(disp)) parameters
9216 static INLINE _glptr_VertexAttribP2ui GET_VertexAttribP2ui(struct _glapi_table *disp) {
9217 return (_glptr_VertexAttribP2ui) (GET_by_offset(disp, _gloffset_VertexAttribP2ui));
9218 }
9219
9220 static INLINE void SET_VertexAttribP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
9221 SET_by_offset(disp, _gloffset_VertexAttribP2ui, fn);
9222 }
9223
9224 typedef void (GLAPIENTRYP _glptr_VertexAttribP2uiv)(GLuint, GLenum, GLboolean, const GLuint *);
9225 #define CALL_VertexAttribP2uiv(disp, parameters) \
9226 (* GET_VertexAttribP2uiv(disp)) parameters
9227 static INLINE _glptr_VertexAttribP2uiv GET_VertexAttribP2uiv(struct _glapi_table *disp) {
9228 return (_glptr_VertexAttribP2uiv) (GET_by_offset(disp, _gloffset_VertexAttribP2uiv));
9229 }
9230
9231 static INLINE void SET_VertexAttribP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
9232 SET_by_offset(disp, _gloffset_VertexAttribP2uiv, fn);
9233 }
9234
9235 typedef void (GLAPIENTRYP _glptr_VertexAttribP3ui)(GLuint, GLenum, GLboolean, GLuint);
9236 #define CALL_VertexAttribP3ui(disp, parameters) \
9237 (* GET_VertexAttribP3ui(disp)) parameters
9238 static INLINE _glptr_VertexAttribP3ui GET_VertexAttribP3ui(struct _glapi_table *disp) {
9239 return (_glptr_VertexAttribP3ui) (GET_by_offset(disp, _gloffset_VertexAttribP3ui));
9240 }
9241
9242 static INLINE void SET_VertexAttribP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
9243 SET_by_offset(disp, _gloffset_VertexAttribP3ui, fn);
9244 }
9245
9246 typedef void (GLAPIENTRYP _glptr_VertexAttribP3uiv)(GLuint, GLenum, GLboolean, const GLuint *);
9247 #define CALL_VertexAttribP3uiv(disp, parameters) \
9248 (* GET_VertexAttribP3uiv(disp)) parameters
9249 static INLINE _glptr_VertexAttribP3uiv GET_VertexAttribP3uiv(struct _glapi_table *disp) {
9250 return (_glptr_VertexAttribP3uiv) (GET_by_offset(disp, _gloffset_VertexAttribP3uiv));
9251 }
9252
9253 static INLINE void SET_VertexAttribP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
9254 SET_by_offset(disp, _gloffset_VertexAttribP3uiv, fn);
9255 }
9256
9257 typedef void (GLAPIENTRYP _glptr_VertexAttribP4ui)(GLuint, GLenum, GLboolean, GLuint);
9258 #define CALL_VertexAttribP4ui(disp, parameters) \
9259 (* GET_VertexAttribP4ui(disp)) parameters
9260 static INLINE _glptr_VertexAttribP4ui GET_VertexAttribP4ui(struct _glapi_table *disp) {
9261 return (_glptr_VertexAttribP4ui) (GET_by_offset(disp, _gloffset_VertexAttribP4ui));
9262 }
9263
9264 static INLINE void SET_VertexAttribP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
9265 SET_by_offset(disp, _gloffset_VertexAttribP4ui, fn);
9266 }
9267
9268 typedef void (GLAPIENTRYP _glptr_VertexAttribP4uiv)(GLuint, GLenum, GLboolean, const GLuint *);
9269 #define CALL_VertexAttribP4uiv(disp, parameters) \
9270 (* GET_VertexAttribP4uiv(disp)) parameters
9271 static INLINE _glptr_VertexAttribP4uiv GET_VertexAttribP4uiv(struct _glapi_table *disp) {
9272 return (_glptr_VertexAttribP4uiv) (GET_by_offset(disp, _gloffset_VertexAttribP4uiv));
9273 }
9274
9275 static INLINE void SET_VertexAttribP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
9276 SET_by_offset(disp, _gloffset_VertexAttribP4uiv, fn);
9277 }
9278
9279 typedef void (GLAPIENTRYP _glptr_VertexP2ui)(GLenum, GLuint);
9280 #define CALL_VertexP2ui(disp, parameters) \
9281 (* GET_VertexP2ui(disp)) parameters
9282 static INLINE _glptr_VertexP2ui GET_VertexP2ui(struct _glapi_table *disp) {
9283 return (_glptr_VertexP2ui) (GET_by_offset(disp, _gloffset_VertexP2ui));
9284 }
9285
9286 static INLINE void SET_VertexP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9287 SET_by_offset(disp, _gloffset_VertexP2ui, fn);
9288 }
9289
9290 typedef void (GLAPIENTRYP _glptr_VertexP2uiv)(GLenum, const GLuint *);
9291 #define CALL_VertexP2uiv(disp, parameters) \
9292 (* GET_VertexP2uiv(disp)) parameters
9293 static INLINE _glptr_VertexP2uiv GET_VertexP2uiv(struct _glapi_table *disp) {
9294 return (_glptr_VertexP2uiv) (GET_by_offset(disp, _gloffset_VertexP2uiv));
9295 }
9296
9297 static INLINE void SET_VertexP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9298 SET_by_offset(disp, _gloffset_VertexP2uiv, fn);
9299 }
9300
9301 typedef void (GLAPIENTRYP _glptr_VertexP3ui)(GLenum, GLuint);
9302 #define CALL_VertexP3ui(disp, parameters) \
9303 (* GET_VertexP3ui(disp)) parameters
9304 static INLINE _glptr_VertexP3ui GET_VertexP3ui(struct _glapi_table *disp) {
9305 return (_glptr_VertexP3ui) (GET_by_offset(disp, _gloffset_VertexP3ui));
9306 }
9307
9308 static INLINE void SET_VertexP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9309 SET_by_offset(disp, _gloffset_VertexP3ui, fn);
9310 }
9311
9312 typedef void (GLAPIENTRYP _glptr_VertexP3uiv)(GLenum, const GLuint *);
9313 #define CALL_VertexP3uiv(disp, parameters) \
9314 (* GET_VertexP3uiv(disp)) parameters
9315 static INLINE _glptr_VertexP3uiv GET_VertexP3uiv(struct _glapi_table *disp) {
9316 return (_glptr_VertexP3uiv) (GET_by_offset(disp, _gloffset_VertexP3uiv));
9317 }
9318
9319 static INLINE void SET_VertexP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9320 SET_by_offset(disp, _gloffset_VertexP3uiv, fn);
9321 }
9322
9323 typedef void (GLAPIENTRYP _glptr_VertexP4ui)(GLenum, GLuint);
9324 #define CALL_VertexP4ui(disp, parameters) \
9325 (* GET_VertexP4ui(disp)) parameters
9326 static INLINE _glptr_VertexP4ui GET_VertexP4ui(struct _glapi_table *disp) {
9327 return (_glptr_VertexP4ui) (GET_by_offset(disp, _gloffset_VertexP4ui));
9328 }
9329
9330 static INLINE void SET_VertexP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9331 SET_by_offset(disp, _gloffset_VertexP4ui, fn);
9332 }
9333
9334 typedef void (GLAPIENTRYP _glptr_VertexP4uiv)(GLenum, const GLuint *);
9335 #define CALL_VertexP4uiv(disp, parameters) \
9336 (* GET_VertexP4uiv(disp)) parameters
9337 static INLINE _glptr_VertexP4uiv GET_VertexP4uiv(struct _glapi_table *disp) {
9338 return (_glptr_VertexP4uiv) (GET_by_offset(disp, _gloffset_VertexP4uiv));
9339 }
9340
9341 static INLINE void SET_VertexP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
9342 SET_by_offset(disp, _gloffset_VertexP4uiv, fn);
9343 }
9344
9345 typedef void (GLAPIENTRYP _glptr_BindTransformFeedback)(GLenum, GLuint);
9346 #define CALL_BindTransformFeedback(disp, parameters) \
9347 (* GET_BindTransformFeedback(disp)) parameters
9348 static INLINE _glptr_BindTransformFeedback GET_BindTransformFeedback(struct _glapi_table *disp) {
9349 return (_glptr_BindTransformFeedback) (GET_by_offset(disp, _gloffset_BindTransformFeedback));
9350 }
9351
9352 static INLINE void SET_BindTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9353 SET_by_offset(disp, _gloffset_BindTransformFeedback, fn);
9354 }
9355
9356 typedef void (GLAPIENTRYP _glptr_DeleteTransformFeedbacks)(GLsizei, const GLuint *);
9357 #define CALL_DeleteTransformFeedbacks(disp, parameters) \
9358 (* GET_DeleteTransformFeedbacks(disp)) parameters
9359 static INLINE _glptr_DeleteTransformFeedbacks GET_DeleteTransformFeedbacks(struct _glapi_table *disp) {
9360 return (_glptr_DeleteTransformFeedbacks) (GET_by_offset(disp, _gloffset_DeleteTransformFeedbacks));
9361 }
9362
9363 static INLINE void SET_DeleteTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
9364 SET_by_offset(disp, _gloffset_DeleteTransformFeedbacks, fn);
9365 }
9366
9367 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedback)(GLenum, GLuint);
9368 #define CALL_DrawTransformFeedback(disp, parameters) \
9369 (* GET_DrawTransformFeedback(disp)) parameters
9370 static INLINE _glptr_DrawTransformFeedback GET_DrawTransformFeedback(struct _glapi_table *disp) {
9371 return (_glptr_DrawTransformFeedback) (GET_by_offset(disp, _gloffset_DrawTransformFeedback));
9372 }
9373
9374 static INLINE void SET_DrawTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
9375 SET_by_offset(disp, _gloffset_DrawTransformFeedback, fn);
9376 }
9377
9378 typedef void (GLAPIENTRYP _glptr_GenTransformFeedbacks)(GLsizei, GLuint *);
9379 #define CALL_GenTransformFeedbacks(disp, parameters) \
9380 (* GET_GenTransformFeedbacks(disp)) parameters
9381 static INLINE _glptr_GenTransformFeedbacks GET_GenTransformFeedbacks(struct _glapi_table *disp) {
9382 return (_glptr_GenTransformFeedbacks) (GET_by_offset(disp, _gloffset_GenTransformFeedbacks));
9383 }
9384
9385 static INLINE void SET_GenTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
9386 SET_by_offset(disp, _gloffset_GenTransformFeedbacks, fn);
9387 }
9388
9389 typedef GLboolean (GLAPIENTRYP _glptr_IsTransformFeedback)(GLuint);
9390 #define CALL_IsTransformFeedback(disp, parameters) \
9391 (* GET_IsTransformFeedback(disp)) parameters
9392 static INLINE _glptr_IsTransformFeedback GET_IsTransformFeedback(struct _glapi_table *disp) {
9393 return (_glptr_IsTransformFeedback) (GET_by_offset(disp, _gloffset_IsTransformFeedback));
9394 }
9395
9396 static INLINE void SET_IsTransformFeedback(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
9397 SET_by_offset(disp, _gloffset_IsTransformFeedback, fn);
9398 }
9399
9400 typedef void (GLAPIENTRYP _glptr_PauseTransformFeedback)(void);
9401 #define CALL_PauseTransformFeedback(disp, parameters) \
9402 (* GET_PauseTransformFeedback(disp)) parameters
9403 static INLINE _glptr_PauseTransformFeedback GET_PauseTransformFeedback(struct _glapi_table *disp) {
9404 return (_glptr_PauseTransformFeedback) (GET_by_offset(disp, _gloffset_PauseTransformFeedback));
9405 }
9406
9407 static INLINE void SET_PauseTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
9408 SET_by_offset(disp, _gloffset_PauseTransformFeedback, fn);
9409 }
9410
9411 typedef void (GLAPIENTRYP _glptr_ResumeTransformFeedback)(void);
9412 #define CALL_ResumeTransformFeedback(disp, parameters) \
9413 (* GET_ResumeTransformFeedback(disp)) parameters
9414 static INLINE _glptr_ResumeTransformFeedback GET_ResumeTransformFeedback(struct _glapi_table *disp) {
9415 return (_glptr_ResumeTransformFeedback) (GET_by_offset(disp, _gloffset_ResumeTransformFeedback));
9416 }
9417
9418 static INLINE void SET_ResumeTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
9419 SET_by_offset(disp, _gloffset_ResumeTransformFeedback, fn);
9420 }
9421
9422 typedef void (GLAPIENTRYP _glptr_ClearDepthf)(GLclampf);
9423 #define CALL_ClearDepthf(disp, parameters) \
9424 (* GET_ClearDepthf(disp)) parameters
9425 static INLINE _glptr_ClearDepthf GET_ClearDepthf(struct _glapi_table *disp) {
9426 return (_glptr_ClearDepthf) (GET_by_offset(disp, _gloffset_ClearDepthf));
9427 }
9428
9429 static INLINE void SET_ClearDepthf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf)) {
9430 SET_by_offset(disp, _gloffset_ClearDepthf, fn);
9431 }
9432
9433 typedef void (GLAPIENTRYP _glptr_DepthRangef)(GLclampf, GLclampf);
9434 #define CALL_DepthRangef(disp, parameters) \
9435 (* GET_DepthRangef(disp)) parameters
9436 static INLINE _glptr_DepthRangef GET_DepthRangef(struct _glapi_table *disp) {
9437 return (_glptr_DepthRangef) (GET_by_offset(disp, _gloffset_DepthRangef));
9438 }
9439
9440 static INLINE void SET_DepthRangef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf)) {
9441 SET_by_offset(disp, _gloffset_DepthRangef, fn);
9442 }
9443
9444 typedef void (GLAPIENTRYP _glptr_GetShaderPrecisionFormat)(GLenum, GLenum, GLint *, GLint *);
9445 #define CALL_GetShaderPrecisionFormat(disp, parameters) \
9446 (* GET_GetShaderPrecisionFormat(disp)) parameters
9447 static INLINE _glptr_GetShaderPrecisionFormat GET_GetShaderPrecisionFormat(struct _glapi_table *disp) {
9448 return (_glptr_GetShaderPrecisionFormat) (GET_by_offset(disp, _gloffset_GetShaderPrecisionFormat));
9449 }
9450
9451 static INLINE void SET_GetShaderPrecisionFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *, GLint *)) {
9452 SET_by_offset(disp, _gloffset_GetShaderPrecisionFormat, fn);
9453 }
9454
9455 typedef void (GLAPIENTRYP _glptr_ReleaseShaderCompiler)(void);
9456 #define CALL_ReleaseShaderCompiler(disp, parameters) \
9457 (* GET_ReleaseShaderCompiler(disp)) parameters
9458 static INLINE _glptr_ReleaseShaderCompiler GET_ReleaseShaderCompiler(struct _glapi_table *disp) {
9459 return (_glptr_ReleaseShaderCompiler) (GET_by_offset(disp, _gloffset_ReleaseShaderCompiler));
9460 }
9461
9462 static INLINE void SET_ReleaseShaderCompiler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
9463 SET_by_offset(disp, _gloffset_ReleaseShaderCompiler, fn);
9464 }
9465
9466 typedef void (GLAPIENTRYP _glptr_ShaderBinary)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei);
9467 #define CALL_ShaderBinary(disp, parameters) \
9468 (* GET_ShaderBinary(disp)) parameters
9469 static INLINE _glptr_ShaderBinary GET_ShaderBinary(struct _glapi_table *disp) {
9470 return (_glptr_ShaderBinary) (GET_by_offset(disp, _gloffset_ShaderBinary));
9471 }
9472
9473 static INLINE void SET_ShaderBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei)) {
9474 SET_by_offset(disp, _gloffset_ShaderBinary, fn);
9475 }
9476
9477 typedef GLenum (GLAPIENTRYP _glptr_GetGraphicsResetStatusARB)(void);
9478 #define CALL_GetGraphicsResetStatusARB(disp, parameters) \
9479 (* GET_GetGraphicsResetStatusARB(disp)) parameters
9480 static INLINE _glptr_GetGraphicsResetStatusARB GET_GetGraphicsResetStatusARB(struct _glapi_table *disp) {
9481 return (_glptr_GetGraphicsResetStatusARB) (GET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB));
9482 }
9483
9484 static INLINE void SET_GetGraphicsResetStatusARB(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
9485 SET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB, fn);
9486 }
9487
9488 typedef void (GLAPIENTRYP _glptr_GetnColorTableARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *);
9489 #define CALL_GetnColorTableARB(disp, parameters) \
9490 (* GET_GetnColorTableARB(disp)) parameters
9491 static INLINE _glptr_GetnColorTableARB GET_GetnColorTableARB(struct _glapi_table *disp) {
9492 return (_glptr_GetnColorTableARB) (GET_by_offset(disp, _gloffset_GetnColorTableARB));
9493 }
9494
9495 static INLINE void SET_GetnColorTableARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) {
9496 SET_by_offset(disp, _gloffset_GetnColorTableARB, fn);
9497 }
9498
9499 typedef void (GLAPIENTRYP _glptr_GetnCompressedTexImageARB)(GLenum, GLint, GLsizei, GLvoid *);
9500 #define CALL_GetnCompressedTexImageARB(disp, parameters) \
9501 (* GET_GetnCompressedTexImageARB(disp)) parameters
9502 static INLINE _glptr_GetnCompressedTexImageARB GET_GetnCompressedTexImageARB(struct _glapi_table *disp) {
9503 return (_glptr_GetnCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetnCompressedTexImageARB));
9504 }
9505
9506 static INLINE void SET_GetnCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLvoid *)) {
9507 SET_by_offset(disp, _gloffset_GetnCompressedTexImageARB, fn);
9508 }
9509
9510 typedef void (GLAPIENTRYP _glptr_GetnConvolutionFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *);
9511 #define CALL_GetnConvolutionFilterARB(disp, parameters) \
9512 (* GET_GetnConvolutionFilterARB(disp)) parameters
9513 static INLINE _glptr_GetnConvolutionFilterARB GET_GetnConvolutionFilterARB(struct _glapi_table *disp) {
9514 return (_glptr_GetnConvolutionFilterARB) (GET_by_offset(disp, _gloffset_GetnConvolutionFilterARB));
9515 }
9516
9517 static INLINE void SET_GetnConvolutionFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) {
9518 SET_by_offset(disp, _gloffset_GetnConvolutionFilterARB, fn);
9519 }
9520
9521 typedef void (GLAPIENTRYP _glptr_GetnHistogramARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *);
9522 #define CALL_GetnHistogramARB(disp, parameters) \
9523 (* GET_GetnHistogramARB(disp)) parameters
9524 static INLINE _glptr_GetnHistogramARB GET_GetnHistogramARB(struct _glapi_table *disp) {
9525 return (_glptr_GetnHistogramARB) (GET_by_offset(disp, _gloffset_GetnHistogramARB));
9526 }
9527
9528 static INLINE void SET_GetnHistogramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) {
9529 SET_by_offset(disp, _gloffset_GetnHistogramARB, fn);
9530 }
9531
9532 typedef void (GLAPIENTRYP _glptr_GetnMapdvARB)(GLenum, GLenum, GLsizei, GLdouble *);
9533 #define CALL_GetnMapdvARB(disp, parameters) \
9534 (* GET_GetnMapdvARB(disp)) parameters
9535 static INLINE _glptr_GetnMapdvARB GET_GetnMapdvARB(struct _glapi_table *disp) {
9536 return (_glptr_GetnMapdvARB) (GET_by_offset(disp, _gloffset_GetnMapdvARB));
9537 }
9538
9539 static INLINE void SET_GetnMapdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLdouble *)) {
9540 SET_by_offset(disp, _gloffset_GetnMapdvARB, fn);
9541 }
9542
9543 typedef void (GLAPIENTRYP _glptr_GetnMapfvARB)(GLenum, GLenum, GLsizei, GLfloat *);
9544 #define CALL_GetnMapfvARB(disp, parameters) \
9545 (* GET_GetnMapfvARB(disp)) parameters
9546 static INLINE _glptr_GetnMapfvARB GET_GetnMapfvARB(struct _glapi_table *disp) {
9547 return (_glptr_GetnMapfvARB) (GET_by_offset(disp, _gloffset_GetnMapfvARB));
9548 }
9549
9550 static INLINE void SET_GetnMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLfloat *)) {
9551 SET_by_offset(disp, _gloffset_GetnMapfvARB, fn);
9552 }
9553
9554 typedef void (GLAPIENTRYP _glptr_GetnMapivARB)(GLenum, GLenum, GLsizei, GLint *);
9555 #define CALL_GetnMapivARB(disp, parameters) \
9556 (* GET_GetnMapivARB(disp)) parameters
9557 static INLINE _glptr_GetnMapivARB GET_GetnMapivARB(struct _glapi_table *disp) {
9558 return (_glptr_GetnMapivARB) (GET_by_offset(disp, _gloffset_GetnMapivARB));
9559 }
9560
9561 static INLINE void SET_GetnMapivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLint *)) {
9562 SET_by_offset(disp, _gloffset_GetnMapivARB, fn);
9563 }
9564
9565 typedef void (GLAPIENTRYP _glptr_GetnMinmaxARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *);
9566 #define CALL_GetnMinmaxARB(disp, parameters) \
9567 (* GET_GetnMinmaxARB(disp)) parameters
9568 static INLINE _glptr_GetnMinmaxARB GET_GetnMinmaxARB(struct _glapi_table *disp) {
9569 return (_glptr_GetnMinmaxARB) (GET_by_offset(disp, _gloffset_GetnMinmaxARB));
9570 }
9571
9572 static INLINE void SET_GetnMinmaxARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) {
9573 SET_by_offset(disp, _gloffset_GetnMinmaxARB, fn);
9574 }
9575
9576 typedef void (GLAPIENTRYP _glptr_GetnPixelMapfvARB)(GLenum, GLsizei, GLfloat *);
9577 #define CALL_GetnPixelMapfvARB(disp, parameters) \
9578 (* GET_GetnPixelMapfvARB(disp)) parameters
9579 static INLINE _glptr_GetnPixelMapfvARB GET_GetnPixelMapfvARB(struct _glapi_table *disp) {
9580 return (_glptr_GetnPixelMapfvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapfvARB));
9581 }
9582
9583 static INLINE void SET_GetnPixelMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLfloat *)) {
9584 SET_by_offset(disp, _gloffset_GetnPixelMapfvARB, fn);
9585 }
9586
9587 typedef void (GLAPIENTRYP _glptr_GetnPixelMapuivARB)(GLenum, GLsizei, GLuint *);
9588 #define CALL_GetnPixelMapuivARB(disp, parameters) \
9589 (* GET_GetnPixelMapuivARB(disp)) parameters
9590 static INLINE _glptr_GetnPixelMapuivARB GET_GetnPixelMapuivARB(struct _glapi_table *disp) {
9591 return (_glptr_GetnPixelMapuivARB) (GET_by_offset(disp, _gloffset_GetnPixelMapuivARB));
9592 }
9593
9594 static INLINE void SET_GetnPixelMapuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLuint *)) {
9595 SET_by_offset(disp, _gloffset_GetnPixelMapuivARB, fn);
9596 }
9597
9598 typedef void (GLAPIENTRYP _glptr_GetnPixelMapusvARB)(GLenum, GLsizei, GLushort *);
9599 #define CALL_GetnPixelMapusvARB(disp, parameters) \
9600 (* GET_GetnPixelMapusvARB(disp)) parameters
9601 static INLINE _glptr_GetnPixelMapusvARB GET_GetnPixelMapusvARB(struct _glapi_table *disp) {
9602 return (_glptr_GetnPixelMapusvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapusvARB));
9603 }
9604
9605 static INLINE void SET_GetnPixelMapusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLushort *)) {
9606 SET_by_offset(disp, _gloffset_GetnPixelMapusvARB, fn);
9607 }
9608
9609 typedef void (GLAPIENTRYP _glptr_GetnPolygonStippleARB)(GLsizei, GLubyte *);
9610 #define CALL_GetnPolygonStippleARB(disp, parameters) \
9611 (* GET_GetnPolygonStippleARB(disp)) parameters
9612 static INLINE _glptr_GetnPolygonStippleARB GET_GetnPolygonStippleARB(struct _glapi_table *disp) {
9613 return (_glptr_GetnPolygonStippleARB) (GET_by_offset(disp, _gloffset_GetnPolygonStippleARB));
9614 }
9615
9616 static INLINE void SET_GetnPolygonStippleARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLubyte *)) {
9617 SET_by_offset(disp, _gloffset_GetnPolygonStippleARB, fn);
9618 }
9619
9620 typedef void (GLAPIENTRYP _glptr_GetnSeparableFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *);
9621 #define CALL_GetnSeparableFilterARB(disp, parameters) \
9622 (* GET_GetnSeparableFilterARB(disp)) parameters
9623 static INLINE _glptr_GetnSeparableFilterARB GET_GetnSeparableFilterARB(struct _glapi_table *disp) {
9624 return (_glptr_GetnSeparableFilterARB) (GET_by_offset(disp, _gloffset_GetnSeparableFilterARB));
9625 }
9626
9627 static INLINE void SET_GetnSeparableFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *)) {
9628 SET_by_offset(disp, _gloffset_GetnSeparableFilterARB, fn);
9629 }
9630
9631 typedef void (GLAPIENTRYP _glptr_GetnTexImageARB)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *);
9632 #define CALL_GetnTexImageARB(disp, parameters) \
9633 (* GET_GetnTexImageARB(disp)) parameters
9634 static INLINE _glptr_GetnTexImageARB GET_GetnTexImageARB(struct _glapi_table *disp) {
9635 return (_glptr_GetnTexImageARB) (GET_by_offset(disp, _gloffset_GetnTexImageARB));
9636 }
9637
9638 static INLINE void SET_GetnTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *)) {
9639 SET_by_offset(disp, _gloffset_GetnTexImageARB, fn);
9640 }
9641
9642 typedef void (GLAPIENTRYP _glptr_GetnUniformdvARB)(GLhandleARB, GLint, GLsizei, GLdouble *);
9643 #define CALL_GetnUniformdvARB(disp, parameters) \
9644 (* GET_GetnUniformdvARB(disp)) parameters
9645 static INLINE _glptr_GetnUniformdvARB GET_GetnUniformdvARB(struct _glapi_table *disp) {
9646 return (_glptr_GetnUniformdvARB) (GET_by_offset(disp, _gloffset_GetnUniformdvARB));
9647 }
9648
9649 static INLINE void SET_GetnUniformdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLdouble *)) {
9650 SET_by_offset(disp, _gloffset_GetnUniformdvARB, fn);
9651 }
9652
9653 typedef void (GLAPIENTRYP _glptr_GetnUniformfvARB)(GLhandleARB, GLint, GLsizei, GLfloat *);
9654 #define CALL_GetnUniformfvARB(disp, parameters) \
9655 (* GET_GetnUniformfvARB(disp)) parameters
9656 static INLINE _glptr_GetnUniformfvARB GET_GetnUniformfvARB(struct _glapi_table *disp) {
9657 return (_glptr_GetnUniformfvARB) (GET_by_offset(disp, _gloffset_GetnUniformfvARB));
9658 }
9659
9660 static INLINE void SET_GetnUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLfloat *)) {
9661 SET_by_offset(disp, _gloffset_GetnUniformfvARB, fn);
9662 }
9663
9664 typedef void (GLAPIENTRYP _glptr_GetnUniformivARB)(GLhandleARB, GLint, GLsizei, GLint *);
9665 #define CALL_GetnUniformivARB(disp, parameters) \
9666 (* GET_GetnUniformivARB(disp)) parameters
9667 static INLINE _glptr_GetnUniformivARB GET_GetnUniformivARB(struct _glapi_table *disp) {
9668 return (_glptr_GetnUniformivARB) (GET_by_offset(disp, _gloffset_GetnUniformivARB));
9669 }
9670
9671 static INLINE void SET_GetnUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLint *)) {
9672 SET_by_offset(disp, _gloffset_GetnUniformivARB, fn);
9673 }
9674
9675 typedef void (GLAPIENTRYP _glptr_GetnUniformuivARB)(GLhandleARB, GLint, GLsizei, GLuint *);
9676 #define CALL_GetnUniformuivARB(disp, parameters) \
9677 (* GET_GetnUniformuivARB(disp)) parameters
9678 static INLINE _glptr_GetnUniformuivARB GET_GetnUniformuivARB(struct _glapi_table *disp) {
9679 return (_glptr_GetnUniformuivARB) (GET_by_offset(disp, _gloffset_GetnUniformuivARB));
9680 }
9681
9682 static INLINE void SET_GetnUniformuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLuint *)) {
9683 SET_by_offset(disp, _gloffset_GetnUniformuivARB, fn);
9684 }
9685
9686 typedef void (GLAPIENTRYP _glptr_ReadnPixelsARB)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *);
9687 #define CALL_ReadnPixelsARB(disp, parameters) \
9688 (* GET_ReadnPixelsARB(disp)) parameters
9689 static INLINE _glptr_ReadnPixelsARB GET_ReadnPixelsARB(struct _glapi_table *disp) {
9690 return (_glptr_ReadnPixelsARB) (GET_by_offset(disp, _gloffset_ReadnPixelsARB));
9691 }
9692
9693 static INLINE void SET_ReadnPixelsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *)) {
9694 SET_by_offset(disp, _gloffset_ReadnPixelsARB, fn);
9695 }
9696
9697 typedef void (GLAPIENTRYP _glptr_PolygonOffsetEXT)(GLfloat, GLfloat);
9698 #define CALL_PolygonOffsetEXT(disp, parameters) \
9699 (* GET_PolygonOffsetEXT(disp)) parameters
9700 static INLINE _glptr_PolygonOffsetEXT GET_PolygonOffsetEXT(struct _glapi_table *disp) {
9701 return (_glptr_PolygonOffsetEXT) (GET_by_offset(disp, _gloffset_PolygonOffsetEXT));
9702 }
9703
9704 static INLINE void SET_PolygonOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
9705 SET_by_offset(disp, _gloffset_PolygonOffsetEXT, fn);
9706 }
9707
9708 typedef void (GLAPIENTRYP _glptr_GetPixelTexGenParameterfvSGIS)(GLenum, GLfloat *);
9709 #define CALL_GetPixelTexGenParameterfvSGIS(disp, parameters) \
9710 (* GET_GetPixelTexGenParameterfvSGIS(disp)) parameters
9711 static INLINE _glptr_GetPixelTexGenParameterfvSGIS GET_GetPixelTexGenParameterfvSGIS(struct _glapi_table *disp) {
9712 return (_glptr_GetPixelTexGenParameterfvSGIS) (GET_by_offset(disp, _gloffset_GetPixelTexGenParameterfvSGIS));
9713 }
9714
9715 static INLINE void SET_GetPixelTexGenParameterfvSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
9716 SET_by_offset(disp, _gloffset_GetPixelTexGenParameterfvSGIS, fn);
9717 }
9718
9719 typedef void (GLAPIENTRYP _glptr_GetPixelTexGenParameterivSGIS)(GLenum, GLint *);
9720 #define CALL_GetPixelTexGenParameterivSGIS(disp, parameters) \
9721 (* GET_GetPixelTexGenParameterivSGIS(disp)) parameters
9722 static INLINE _glptr_GetPixelTexGenParameterivSGIS GET_GetPixelTexGenParameterivSGIS(struct _glapi_table *disp) {
9723 return (_glptr_GetPixelTexGenParameterivSGIS) (GET_by_offset(disp, _gloffset_GetPixelTexGenParameterivSGIS));
9724 }
9725
9726 static INLINE void SET_GetPixelTexGenParameterivSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
9727 SET_by_offset(disp, _gloffset_GetPixelTexGenParameterivSGIS, fn);
9728 }
9729
9730 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameterfSGIS)(GLenum, GLfloat);
9731 #define CALL_PixelTexGenParameterfSGIS(disp, parameters) \
9732 (* GET_PixelTexGenParameterfSGIS(disp)) parameters
9733 static INLINE _glptr_PixelTexGenParameterfSGIS GET_PixelTexGenParameterfSGIS(struct _glapi_table *disp) {
9734 return (_glptr_PixelTexGenParameterfSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameterfSGIS));
9735 }
9736
9737 static INLINE void SET_PixelTexGenParameterfSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
9738 SET_by_offset(disp, _gloffset_PixelTexGenParameterfSGIS, fn);
9739 }
9740
9741 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameterfvSGIS)(GLenum, const GLfloat *);
9742 #define CALL_PixelTexGenParameterfvSGIS(disp, parameters) \
9743 (* GET_PixelTexGenParameterfvSGIS(disp)) parameters
9744 static INLINE _glptr_PixelTexGenParameterfvSGIS GET_PixelTexGenParameterfvSGIS(struct _glapi_table *disp) {
9745 return (_glptr_PixelTexGenParameterfvSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameterfvSGIS));
9746 }
9747
9748 static INLINE void SET_PixelTexGenParameterfvSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
9749 SET_by_offset(disp, _gloffset_PixelTexGenParameterfvSGIS, fn);
9750 }
9751
9752 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameteriSGIS)(GLenum, GLint);
9753 #define CALL_PixelTexGenParameteriSGIS(disp, parameters) \
9754 (* GET_PixelTexGenParameteriSGIS(disp)) parameters
9755 static INLINE _glptr_PixelTexGenParameteriSGIS GET_PixelTexGenParameteriSGIS(struct _glapi_table *disp) {
9756 return (_glptr_PixelTexGenParameteriSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameteriSGIS));
9757 }
9758
9759 static INLINE void SET_PixelTexGenParameteriSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
9760 SET_by_offset(disp, _gloffset_PixelTexGenParameteriSGIS, fn);
9761 }
9762
9763 typedef void (GLAPIENTRYP _glptr_PixelTexGenParameterivSGIS)(GLenum, const GLint *);
9764 #define CALL_PixelTexGenParameterivSGIS(disp, parameters) \
9765 (* GET_PixelTexGenParameterivSGIS(disp)) parameters
9766 static INLINE _glptr_PixelTexGenParameterivSGIS GET_PixelTexGenParameterivSGIS(struct _glapi_table *disp) {
9767 return (_glptr_PixelTexGenParameterivSGIS) (GET_by_offset(disp, _gloffset_PixelTexGenParameterivSGIS));
9768 }
9769
9770 static INLINE void SET_PixelTexGenParameterivSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
9771 SET_by_offset(disp, _gloffset_PixelTexGenParameterivSGIS, fn);
9772 }
9773
9774 typedef void (GLAPIENTRYP _glptr_SampleMaskSGIS)(GLclampf, GLboolean);
9775 #define CALL_SampleMaskSGIS(disp, parameters) \
9776 (* GET_SampleMaskSGIS(disp)) parameters
9777 static INLINE _glptr_SampleMaskSGIS GET_SampleMaskSGIS(struct _glapi_table *disp) {
9778 return (_glptr_SampleMaskSGIS) (GET_by_offset(disp, _gloffset_SampleMaskSGIS));
9779 }
9780
9781 static INLINE void SET_SampleMaskSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
9782 SET_by_offset(disp, _gloffset_SampleMaskSGIS, fn);
9783 }
9784
9785 typedef void (GLAPIENTRYP _glptr_SamplePatternSGIS)(GLenum);
9786 #define CALL_SamplePatternSGIS(disp, parameters) \
9787 (* GET_SamplePatternSGIS(disp)) parameters
9788 static INLINE _glptr_SamplePatternSGIS GET_SamplePatternSGIS(struct _glapi_table *disp) {
9789 return (_glptr_SamplePatternSGIS) (GET_by_offset(disp, _gloffset_SamplePatternSGIS));
9790 }
9791
9792 static INLINE void SET_SamplePatternSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
9793 SET_by_offset(disp, _gloffset_SamplePatternSGIS, fn);
9794 }
9795
9796 typedef void (GLAPIENTRYP _glptr_ColorPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
9797 #define CALL_ColorPointerEXT(disp, parameters) \
9798 (* GET_ColorPointerEXT(disp)) parameters
9799 static INLINE _glptr_ColorPointerEXT GET_ColorPointerEXT(struct _glapi_table *disp) {
9800 return (_glptr_ColorPointerEXT) (GET_by_offset(disp, _gloffset_ColorPointerEXT));
9801 }
9802
9803 static INLINE void SET_ColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
9804 SET_by_offset(disp, _gloffset_ColorPointerEXT, fn);
9805 }
9806
9807 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointerEXT)(GLsizei, GLsizei, const GLboolean *);
9808 #define CALL_EdgeFlagPointerEXT(disp, parameters) \
9809 (* GET_EdgeFlagPointerEXT(disp)) parameters
9810 static INLINE _glptr_EdgeFlagPointerEXT GET_EdgeFlagPointerEXT(struct _glapi_table *disp) {
9811 return (_glptr_EdgeFlagPointerEXT) (GET_by_offset(disp, _gloffset_EdgeFlagPointerEXT));
9812 }
9813
9814 static INLINE void SET_EdgeFlagPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, const GLboolean *)) {
9815 SET_by_offset(disp, _gloffset_EdgeFlagPointerEXT, fn);
9816 }
9817
9818 typedef void (GLAPIENTRYP _glptr_IndexPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
9819 #define CALL_IndexPointerEXT(disp, parameters) \
9820 (* GET_IndexPointerEXT(disp)) parameters
9821 static INLINE _glptr_IndexPointerEXT GET_IndexPointerEXT(struct _glapi_table *disp) {
9822 return (_glptr_IndexPointerEXT) (GET_by_offset(disp, _gloffset_IndexPointerEXT));
9823 }
9824
9825 static INLINE void SET_IndexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
9826 SET_by_offset(disp, _gloffset_IndexPointerEXT, fn);
9827 }
9828
9829 typedef void (GLAPIENTRYP _glptr_NormalPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
9830 #define CALL_NormalPointerEXT(disp, parameters) \
9831 (* GET_NormalPointerEXT(disp)) parameters
9832 static INLINE _glptr_NormalPointerEXT GET_NormalPointerEXT(struct _glapi_table *disp) {
9833 return (_glptr_NormalPointerEXT) (GET_by_offset(disp, _gloffset_NormalPointerEXT));
9834 }
9835
9836 static INLINE void SET_NormalPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
9837 SET_by_offset(disp, _gloffset_NormalPointerEXT, fn);
9838 }
9839
9840 typedef void (GLAPIENTRYP _glptr_TexCoordPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
9841 #define CALL_TexCoordPointerEXT(disp, parameters) \
9842 (* GET_TexCoordPointerEXT(disp)) parameters
9843 static INLINE _glptr_TexCoordPointerEXT GET_TexCoordPointerEXT(struct _glapi_table *disp) {
9844 return (_glptr_TexCoordPointerEXT) (GET_by_offset(disp, _gloffset_TexCoordPointerEXT));
9845 }
9846
9847 static INLINE void SET_TexCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
9848 SET_by_offset(disp, _gloffset_TexCoordPointerEXT, fn);
9849 }
9850
9851 typedef void (GLAPIENTRYP _glptr_VertexPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
9852 #define CALL_VertexPointerEXT(disp, parameters) \
9853 (* GET_VertexPointerEXT(disp)) parameters
9854 static INLINE _glptr_VertexPointerEXT GET_VertexPointerEXT(struct _glapi_table *disp) {
9855 return (_glptr_VertexPointerEXT) (GET_by_offset(disp, _gloffset_VertexPointerEXT));
9856 }
9857
9858 static INLINE void SET_VertexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
9859 SET_by_offset(disp, _gloffset_VertexPointerEXT, fn);
9860 }
9861
9862 typedef void (GLAPIENTRYP _glptr_PointParameterfEXT)(GLenum, GLfloat);
9863 #define CALL_PointParameterfEXT(disp, parameters) \
9864 (* GET_PointParameterfEXT(disp)) parameters
9865 static INLINE _glptr_PointParameterfEXT GET_PointParameterfEXT(struct _glapi_table *disp) {
9866 return (_glptr_PointParameterfEXT) (GET_by_offset(disp, _gloffset_PointParameterfEXT));
9867 }
9868
9869 static INLINE void SET_PointParameterfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
9870 SET_by_offset(disp, _gloffset_PointParameterfEXT, fn);
9871 }
9872
9873 typedef void (GLAPIENTRYP _glptr_PointParameterfvEXT)(GLenum, const GLfloat *);
9874 #define CALL_PointParameterfvEXT(disp, parameters) \
9875 (* GET_PointParameterfvEXT(disp)) parameters
9876 static INLINE _glptr_PointParameterfvEXT GET_PointParameterfvEXT(struct _glapi_table *disp) {
9877 return (_glptr_PointParameterfvEXT) (GET_by_offset(disp, _gloffset_PointParameterfvEXT));
9878 }
9879
9880 static INLINE void SET_PointParameterfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
9881 SET_by_offset(disp, _gloffset_PointParameterfvEXT, fn);
9882 }
9883
9884 typedef void (GLAPIENTRYP _glptr_LockArraysEXT)(GLint, GLsizei);
9885 #define CALL_LockArraysEXT(disp, parameters) \
9886 (* GET_LockArraysEXT(disp)) parameters
9887 static INLINE _glptr_LockArraysEXT GET_LockArraysEXT(struct _glapi_table *disp) {
9888 return (_glptr_LockArraysEXT) (GET_by_offset(disp, _gloffset_LockArraysEXT));
9889 }
9890
9891 static INLINE void SET_LockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei)) {
9892 SET_by_offset(disp, _gloffset_LockArraysEXT, fn);
9893 }
9894
9895 typedef void (GLAPIENTRYP _glptr_UnlockArraysEXT)(void);
9896 #define CALL_UnlockArraysEXT(disp, parameters) \
9897 (* GET_UnlockArraysEXT(disp)) parameters
9898 static INLINE _glptr_UnlockArraysEXT GET_UnlockArraysEXT(struct _glapi_table *disp) {
9899 return (_glptr_UnlockArraysEXT) (GET_by_offset(disp, _gloffset_UnlockArraysEXT));
9900 }
9901
9902 static INLINE void SET_UnlockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
9903 SET_by_offset(disp, _gloffset_UnlockArraysEXT, fn);
9904 }
9905
9906 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bEXT)(GLbyte, GLbyte, GLbyte);
9907 #define CALL_SecondaryColor3bEXT(disp, parameters) \
9908 (* GET_SecondaryColor3bEXT(disp)) parameters
9909 static INLINE _glptr_SecondaryColor3bEXT GET_SecondaryColor3bEXT(struct _glapi_table *disp) {
9910 return (_glptr_SecondaryColor3bEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bEXT));
9911 }
9912
9913 static INLINE void SET_SecondaryColor3bEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
9914 SET_by_offset(disp, _gloffset_SecondaryColor3bEXT, fn);
9915 }
9916
9917 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bvEXT)(const GLbyte *);
9918 #define CALL_SecondaryColor3bvEXT(disp, parameters) \
9919 (* GET_SecondaryColor3bvEXT(disp)) parameters
9920 static INLINE _glptr_SecondaryColor3bvEXT GET_SecondaryColor3bvEXT(struct _glapi_table *disp) {
9921 return (_glptr_SecondaryColor3bvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bvEXT));
9922 }
9923
9924 static INLINE void SET_SecondaryColor3bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
9925 SET_by_offset(disp, _gloffset_SecondaryColor3bvEXT, fn);
9926 }
9927
9928 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dEXT)(GLdouble, GLdouble, GLdouble);
9929 #define CALL_SecondaryColor3dEXT(disp, parameters) \
9930 (* GET_SecondaryColor3dEXT(disp)) parameters
9931 static INLINE _glptr_SecondaryColor3dEXT GET_SecondaryColor3dEXT(struct _glapi_table *disp) {
9932 return (_glptr_SecondaryColor3dEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dEXT));
9933 }
9934
9935 static INLINE void SET_SecondaryColor3dEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
9936 SET_by_offset(disp, _gloffset_SecondaryColor3dEXT, fn);
9937 }
9938
9939 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dvEXT)(const GLdouble *);
9940 #define CALL_SecondaryColor3dvEXT(disp, parameters) \
9941 (* GET_SecondaryColor3dvEXT(disp)) parameters
9942 static INLINE _glptr_SecondaryColor3dvEXT GET_SecondaryColor3dvEXT(struct _glapi_table *disp) {
9943 return (_glptr_SecondaryColor3dvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dvEXT));
9944 }
9945
9946 static INLINE void SET_SecondaryColor3dvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
9947 SET_by_offset(disp, _gloffset_SecondaryColor3dvEXT, fn);
9948 }
9949
9950 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fEXT)(GLfloat, GLfloat, GLfloat);
9951 #define CALL_SecondaryColor3fEXT(disp, parameters) \
9952 (* GET_SecondaryColor3fEXT(disp)) parameters
9953 static INLINE _glptr_SecondaryColor3fEXT GET_SecondaryColor3fEXT(struct _glapi_table *disp) {
9954 return (_glptr_SecondaryColor3fEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fEXT));
9955 }
9956
9957 static INLINE void SET_SecondaryColor3fEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
9958 SET_by_offset(disp, _gloffset_SecondaryColor3fEXT, fn);
9959 }
9960
9961 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fvEXT)(const GLfloat *);
9962 #define CALL_SecondaryColor3fvEXT(disp, parameters) \
9963 (* GET_SecondaryColor3fvEXT(disp)) parameters
9964 static INLINE _glptr_SecondaryColor3fvEXT GET_SecondaryColor3fvEXT(struct _glapi_table *disp) {
9965 return (_glptr_SecondaryColor3fvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fvEXT));
9966 }
9967
9968 static INLINE void SET_SecondaryColor3fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
9969 SET_by_offset(disp, _gloffset_SecondaryColor3fvEXT, fn);
9970 }
9971
9972 typedef void (GLAPIENTRYP _glptr_SecondaryColor3iEXT)(GLint, GLint, GLint);
9973 #define CALL_SecondaryColor3iEXT(disp, parameters) \
9974 (* GET_SecondaryColor3iEXT(disp)) parameters
9975 static INLINE _glptr_SecondaryColor3iEXT GET_SecondaryColor3iEXT(struct _glapi_table *disp) {
9976 return (_glptr_SecondaryColor3iEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3iEXT));
9977 }
9978
9979 static INLINE void SET_SecondaryColor3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
9980 SET_by_offset(disp, _gloffset_SecondaryColor3iEXT, fn);
9981 }
9982
9983 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ivEXT)(const GLint *);
9984 #define CALL_SecondaryColor3ivEXT(disp, parameters) \
9985 (* GET_SecondaryColor3ivEXT(disp)) parameters
9986 static INLINE _glptr_SecondaryColor3ivEXT GET_SecondaryColor3ivEXT(struct _glapi_table *disp) {
9987 return (_glptr_SecondaryColor3ivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ivEXT));
9988 }
9989
9990 static INLINE void SET_SecondaryColor3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
9991 SET_by_offset(disp, _gloffset_SecondaryColor3ivEXT, fn);
9992 }
9993
9994 typedef void (GLAPIENTRYP _glptr_SecondaryColor3sEXT)(GLshort, GLshort, GLshort);
9995 #define CALL_SecondaryColor3sEXT(disp, parameters) \
9996 (* GET_SecondaryColor3sEXT(disp)) parameters
9997 static INLINE _glptr_SecondaryColor3sEXT GET_SecondaryColor3sEXT(struct _glapi_table *disp) {
9998 return (_glptr_SecondaryColor3sEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3sEXT));
9999 }
10000
10001 static INLINE void SET_SecondaryColor3sEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
10002 SET_by_offset(disp, _gloffset_SecondaryColor3sEXT, fn);
10003 }
10004
10005 typedef void (GLAPIENTRYP _glptr_SecondaryColor3svEXT)(const GLshort *);
10006 #define CALL_SecondaryColor3svEXT(disp, parameters) \
10007 (* GET_SecondaryColor3svEXT(disp)) parameters
10008 static INLINE _glptr_SecondaryColor3svEXT GET_SecondaryColor3svEXT(struct _glapi_table *disp) {
10009 return (_glptr_SecondaryColor3svEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3svEXT));
10010 }
10011
10012 static INLINE void SET_SecondaryColor3svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
10013 SET_by_offset(disp, _gloffset_SecondaryColor3svEXT, fn);
10014 }
10015
10016 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubEXT)(GLubyte, GLubyte, GLubyte);
10017 #define CALL_SecondaryColor3ubEXT(disp, parameters) \
10018 (* GET_SecondaryColor3ubEXT(disp)) parameters
10019 static INLINE _glptr_SecondaryColor3ubEXT GET_SecondaryColor3ubEXT(struct _glapi_table *disp) {
10020 return (_glptr_SecondaryColor3ubEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubEXT));
10021 }
10022
10023 static INLINE void SET_SecondaryColor3ubEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
10024 SET_by_offset(disp, _gloffset_SecondaryColor3ubEXT, fn);
10025 }
10026
10027 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubvEXT)(const GLubyte *);
10028 #define CALL_SecondaryColor3ubvEXT(disp, parameters) \
10029 (* GET_SecondaryColor3ubvEXT(disp)) parameters
10030 static INLINE _glptr_SecondaryColor3ubvEXT GET_SecondaryColor3ubvEXT(struct _glapi_table *disp) {
10031 return (_glptr_SecondaryColor3ubvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT));
10032 }
10033
10034 static INLINE void SET_SecondaryColor3ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
10035 SET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT, fn);
10036 }
10037
10038 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uiEXT)(GLuint, GLuint, GLuint);
10039 #define CALL_SecondaryColor3uiEXT(disp, parameters) \
10040 (* GET_SecondaryColor3uiEXT(disp)) parameters
10041 static INLINE _glptr_SecondaryColor3uiEXT GET_SecondaryColor3uiEXT(struct _glapi_table *disp) {
10042 return (_glptr_SecondaryColor3uiEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uiEXT));
10043 }
10044
10045 static INLINE void SET_SecondaryColor3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
10046 SET_by_offset(disp, _gloffset_SecondaryColor3uiEXT, fn);
10047 }
10048
10049 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uivEXT)(const GLuint *);
10050 #define CALL_SecondaryColor3uivEXT(disp, parameters) \
10051 (* GET_SecondaryColor3uivEXT(disp)) parameters
10052 static INLINE _glptr_SecondaryColor3uivEXT GET_SecondaryColor3uivEXT(struct _glapi_table *disp) {
10053 return (_glptr_SecondaryColor3uivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uivEXT));
10054 }
10055
10056 static INLINE void SET_SecondaryColor3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
10057 SET_by_offset(disp, _gloffset_SecondaryColor3uivEXT, fn);
10058 }
10059
10060 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usEXT)(GLushort, GLushort, GLushort);
10061 #define CALL_SecondaryColor3usEXT(disp, parameters) \
10062 (* GET_SecondaryColor3usEXT(disp)) parameters
10063 static INLINE _glptr_SecondaryColor3usEXT GET_SecondaryColor3usEXT(struct _glapi_table *disp) {
10064 return (_glptr_SecondaryColor3usEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usEXT));
10065 }
10066
10067 static INLINE void SET_SecondaryColor3usEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
10068 SET_by_offset(disp, _gloffset_SecondaryColor3usEXT, fn);
10069 }
10070
10071 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usvEXT)(const GLushort *);
10072 #define CALL_SecondaryColor3usvEXT(disp, parameters) \
10073 (* GET_SecondaryColor3usvEXT(disp)) parameters
10074 static INLINE _glptr_SecondaryColor3usvEXT GET_SecondaryColor3usvEXT(struct _glapi_table *disp) {
10075 return (_glptr_SecondaryColor3usvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usvEXT));
10076 }
10077
10078 static INLINE void SET_SecondaryColor3usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
10079 SET_by_offset(disp, _gloffset_SecondaryColor3usvEXT, fn);
10080 }
10081
10082 typedef void (GLAPIENTRYP _glptr_SecondaryColorPointerEXT)(GLint, GLenum, GLsizei, const GLvoid *);
10083 #define CALL_SecondaryColorPointerEXT(disp, parameters) \
10084 (* GET_SecondaryColorPointerEXT(disp)) parameters
10085 static INLINE _glptr_SecondaryColorPointerEXT GET_SecondaryColorPointerEXT(struct _glapi_table *disp) {
10086 return (_glptr_SecondaryColorPointerEXT) (GET_by_offset(disp, _gloffset_SecondaryColorPointerEXT));
10087 }
10088
10089 static INLINE void SET_SecondaryColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
10090 SET_by_offset(disp, _gloffset_SecondaryColorPointerEXT, fn);
10091 }
10092
10093 typedef void (GLAPIENTRYP _glptr_MultiDrawArraysEXT)(GLenum, const GLint *, const GLsizei *, GLsizei);
10094 #define CALL_MultiDrawArraysEXT(disp, parameters) \
10095 (* GET_MultiDrawArraysEXT(disp)) parameters
10096 static INLINE _glptr_MultiDrawArraysEXT GET_MultiDrawArraysEXT(struct _glapi_table *disp) {
10097 return (_glptr_MultiDrawArraysEXT) (GET_by_offset(disp, _gloffset_MultiDrawArraysEXT));
10098 }
10099
10100 static INLINE void SET_MultiDrawArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *, const GLsizei *, GLsizei)) {
10101 SET_by_offset(disp, _gloffset_MultiDrawArraysEXT, fn);
10102 }
10103
10104 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsEXT)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei);
10105 #define CALL_MultiDrawElementsEXT(disp, parameters) \
10106 (* GET_MultiDrawElementsEXT(disp)) parameters
10107 static INLINE _glptr_MultiDrawElementsEXT GET_MultiDrawElementsEXT(struct _glapi_table *disp) {
10108 return (_glptr_MultiDrawElementsEXT) (GET_by_offset(disp, _gloffset_MultiDrawElementsEXT));
10109 }
10110
10111 static INLINE void SET_MultiDrawElementsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei)) {
10112 SET_by_offset(disp, _gloffset_MultiDrawElementsEXT, fn);
10113 }
10114
10115 typedef void (GLAPIENTRYP _glptr_FogCoordPointerEXT)(GLenum, GLsizei, const GLvoid *);
10116 #define CALL_FogCoordPointerEXT(disp, parameters) \
10117 (* GET_FogCoordPointerEXT(disp)) parameters
10118 static INLINE _glptr_FogCoordPointerEXT GET_FogCoordPointerEXT(struct _glapi_table *disp) {
10119 return (_glptr_FogCoordPointerEXT) (GET_by_offset(disp, _gloffset_FogCoordPointerEXT));
10120 }
10121
10122 static INLINE void SET_FogCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
10123 SET_by_offset(disp, _gloffset_FogCoordPointerEXT, fn);
10124 }
10125
10126 typedef void (GLAPIENTRYP _glptr_FogCoorddEXT)(GLdouble);
10127 #define CALL_FogCoorddEXT(disp, parameters) \
10128 (* GET_FogCoorddEXT(disp)) parameters
10129 static INLINE _glptr_FogCoorddEXT GET_FogCoorddEXT(struct _glapi_table *disp) {
10130 return (_glptr_FogCoorddEXT) (GET_by_offset(disp, _gloffset_FogCoorddEXT));
10131 }
10132
10133 static INLINE void SET_FogCoorddEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
10134 SET_by_offset(disp, _gloffset_FogCoorddEXT, fn);
10135 }
10136
10137 typedef void (GLAPIENTRYP _glptr_FogCoorddvEXT)(const GLdouble *);
10138 #define CALL_FogCoorddvEXT(disp, parameters) \
10139 (* GET_FogCoorddvEXT(disp)) parameters
10140 static INLINE _glptr_FogCoorddvEXT GET_FogCoorddvEXT(struct _glapi_table *disp) {
10141 return (_glptr_FogCoorddvEXT) (GET_by_offset(disp, _gloffset_FogCoorddvEXT));
10142 }
10143
10144 static INLINE void SET_FogCoorddvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
10145 SET_by_offset(disp, _gloffset_FogCoorddvEXT, fn);
10146 }
10147
10148 typedef void (GLAPIENTRYP _glptr_FogCoordfEXT)(GLfloat);
10149 #define CALL_FogCoordfEXT(disp, parameters) \
10150 (* GET_FogCoordfEXT(disp)) parameters
10151 static INLINE _glptr_FogCoordfEXT GET_FogCoordfEXT(struct _glapi_table *disp) {
10152 return (_glptr_FogCoordfEXT) (GET_by_offset(disp, _gloffset_FogCoordfEXT));
10153 }
10154
10155 static INLINE void SET_FogCoordfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
10156 SET_by_offset(disp, _gloffset_FogCoordfEXT, fn);
10157 }
10158
10159 typedef void (GLAPIENTRYP _glptr_FogCoordfvEXT)(const GLfloat *);
10160 #define CALL_FogCoordfvEXT(disp, parameters) \
10161 (* GET_FogCoordfvEXT(disp)) parameters
10162 static INLINE _glptr_FogCoordfvEXT GET_FogCoordfvEXT(struct _glapi_table *disp) {
10163 return (_glptr_FogCoordfvEXT) (GET_by_offset(disp, _gloffset_FogCoordfvEXT));
10164 }
10165
10166 static INLINE void SET_FogCoordfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
10167 SET_by_offset(disp, _gloffset_FogCoordfvEXT, fn);
10168 }
10169
10170 typedef void (GLAPIENTRYP _glptr_PixelTexGenSGIX)(GLenum);
10171 #define CALL_PixelTexGenSGIX(disp, parameters) \
10172 (* GET_PixelTexGenSGIX(disp)) parameters
10173 static INLINE _glptr_PixelTexGenSGIX GET_PixelTexGenSGIX(struct _glapi_table *disp) {
10174 return (_glptr_PixelTexGenSGIX) (GET_by_offset(disp, _gloffset_PixelTexGenSGIX));
10175 }
10176
10177 static INLINE void SET_PixelTexGenSGIX(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
10178 SET_by_offset(disp, _gloffset_PixelTexGenSGIX, fn);
10179 }
10180
10181 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateEXT)(GLenum, GLenum, GLenum, GLenum);
10182 #define CALL_BlendFuncSeparateEXT(disp, parameters) \
10183 (* GET_BlendFuncSeparateEXT(disp)) parameters
10184 static INLINE _glptr_BlendFuncSeparateEXT GET_BlendFuncSeparateEXT(struct _glapi_table *disp) {
10185 return (_glptr_BlendFuncSeparateEXT) (GET_by_offset(disp, _gloffset_BlendFuncSeparateEXT));
10186 }
10187
10188 static INLINE void SET_BlendFuncSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
10189 SET_by_offset(disp, _gloffset_BlendFuncSeparateEXT, fn);
10190 }
10191
10192 typedef void (GLAPIENTRYP _glptr_FlushVertexArrayRangeNV)(void);
10193 #define CALL_FlushVertexArrayRangeNV(disp, parameters) \
10194 (* GET_FlushVertexArrayRangeNV(disp)) parameters
10195 static INLINE _glptr_FlushVertexArrayRangeNV GET_FlushVertexArrayRangeNV(struct _glapi_table *disp) {
10196 return (_glptr_FlushVertexArrayRangeNV) (GET_by_offset(disp, _gloffset_FlushVertexArrayRangeNV));
10197 }
10198
10199 static INLINE void SET_FlushVertexArrayRangeNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
10200 SET_by_offset(disp, _gloffset_FlushVertexArrayRangeNV, fn);
10201 }
10202
10203 typedef void (GLAPIENTRYP _glptr_VertexArrayRangeNV)(GLsizei, const GLvoid *);
10204 #define CALL_VertexArrayRangeNV(disp, parameters) \
10205 (* GET_VertexArrayRangeNV(disp)) parameters
10206 static INLINE _glptr_VertexArrayRangeNV GET_VertexArrayRangeNV(struct _glapi_table *disp) {
10207 return (_glptr_VertexArrayRangeNV) (GET_by_offset(disp, _gloffset_VertexArrayRangeNV));
10208 }
10209
10210 static INLINE void SET_VertexArrayRangeNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
10211 SET_by_offset(disp, _gloffset_VertexArrayRangeNV, fn);
10212 }
10213
10214 typedef void (GLAPIENTRYP _glptr_CombinerInputNV)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum);
10215 #define CALL_CombinerInputNV(disp, parameters) \
10216 (* GET_CombinerInputNV(disp)) parameters
10217 static INLINE _glptr_CombinerInputNV GET_CombinerInputNV(struct _glapi_table *disp) {
10218 return (_glptr_CombinerInputNV) (GET_by_offset(disp, _gloffset_CombinerInputNV));
10219 }
10220
10221 static INLINE void SET_CombinerInputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum)) {
10222 SET_by_offset(disp, _gloffset_CombinerInputNV, fn);
10223 }
10224
10225 typedef void (GLAPIENTRYP _glptr_CombinerOutputNV)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean);
10226 #define CALL_CombinerOutputNV(disp, parameters) \
10227 (* GET_CombinerOutputNV(disp)) parameters
10228 static INLINE _glptr_CombinerOutputNV GET_CombinerOutputNV(struct _glapi_table *disp) {
10229 return (_glptr_CombinerOutputNV) (GET_by_offset(disp, _gloffset_CombinerOutputNV));
10230 }
10231
10232 static INLINE void SET_CombinerOutputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean)) {
10233 SET_by_offset(disp, _gloffset_CombinerOutputNV, fn);
10234 }
10235
10236 typedef void (GLAPIENTRYP _glptr_CombinerParameterfNV)(GLenum, GLfloat);
10237 #define CALL_CombinerParameterfNV(disp, parameters) \
10238 (* GET_CombinerParameterfNV(disp)) parameters
10239 static INLINE _glptr_CombinerParameterfNV GET_CombinerParameterfNV(struct _glapi_table *disp) {
10240 return (_glptr_CombinerParameterfNV) (GET_by_offset(disp, _gloffset_CombinerParameterfNV));
10241 }
10242
10243 static INLINE void SET_CombinerParameterfNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
10244 SET_by_offset(disp, _gloffset_CombinerParameterfNV, fn);
10245 }
10246
10247 typedef void (GLAPIENTRYP _glptr_CombinerParameterfvNV)(GLenum, const GLfloat *);
10248 #define CALL_CombinerParameterfvNV(disp, parameters) \
10249 (* GET_CombinerParameterfvNV(disp)) parameters
10250 static INLINE _glptr_CombinerParameterfvNV GET_CombinerParameterfvNV(struct _glapi_table *disp) {
10251 return (_glptr_CombinerParameterfvNV) (GET_by_offset(disp, _gloffset_CombinerParameterfvNV));
10252 }
10253
10254 static INLINE void SET_CombinerParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
10255 SET_by_offset(disp, _gloffset_CombinerParameterfvNV, fn);
10256 }
10257
10258 typedef void (GLAPIENTRYP _glptr_CombinerParameteriNV)(GLenum, GLint);
10259 #define CALL_CombinerParameteriNV(disp, parameters) \
10260 (* GET_CombinerParameteriNV(disp)) parameters
10261 static INLINE _glptr_CombinerParameteriNV GET_CombinerParameteriNV(struct _glapi_table *disp) {
10262 return (_glptr_CombinerParameteriNV) (GET_by_offset(disp, _gloffset_CombinerParameteriNV));
10263 }
10264
10265 static INLINE void SET_CombinerParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
10266 SET_by_offset(disp, _gloffset_CombinerParameteriNV, fn);
10267 }
10268
10269 typedef void (GLAPIENTRYP _glptr_CombinerParameterivNV)(GLenum, const GLint *);
10270 #define CALL_CombinerParameterivNV(disp, parameters) \
10271 (* GET_CombinerParameterivNV(disp)) parameters
10272 static INLINE _glptr_CombinerParameterivNV GET_CombinerParameterivNV(struct _glapi_table *disp) {
10273 return (_glptr_CombinerParameterivNV) (GET_by_offset(disp, _gloffset_CombinerParameterivNV));
10274 }
10275
10276 static INLINE void SET_CombinerParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
10277 SET_by_offset(disp, _gloffset_CombinerParameterivNV, fn);
10278 }
10279
10280 typedef void (GLAPIENTRYP _glptr_FinalCombinerInputNV)(GLenum, GLenum, GLenum, GLenum);
10281 #define CALL_FinalCombinerInputNV(disp, parameters) \
10282 (* GET_FinalCombinerInputNV(disp)) parameters
10283 static INLINE _glptr_FinalCombinerInputNV GET_FinalCombinerInputNV(struct _glapi_table *disp) {
10284 return (_glptr_FinalCombinerInputNV) (GET_by_offset(disp, _gloffset_FinalCombinerInputNV));
10285 }
10286
10287 static INLINE void SET_FinalCombinerInputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
10288 SET_by_offset(disp, _gloffset_FinalCombinerInputNV, fn);
10289 }
10290
10291 typedef void (GLAPIENTRYP _glptr_GetCombinerInputParameterfvNV)(GLenum, GLenum, GLenum, GLenum, GLfloat *);
10292 #define CALL_GetCombinerInputParameterfvNV(disp, parameters) \
10293 (* GET_GetCombinerInputParameterfvNV(disp)) parameters
10294 static INLINE _glptr_GetCombinerInputParameterfvNV GET_GetCombinerInputParameterfvNV(struct _glapi_table *disp) {
10295 return (_glptr_GetCombinerInputParameterfvNV) (GET_by_offset(disp, _gloffset_GetCombinerInputParameterfvNV));
10296 }
10297
10298 static INLINE void SET_GetCombinerInputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLfloat *)) {
10299 SET_by_offset(disp, _gloffset_GetCombinerInputParameterfvNV, fn);
10300 }
10301
10302 typedef void (GLAPIENTRYP _glptr_GetCombinerInputParameterivNV)(GLenum, GLenum, GLenum, GLenum, GLint *);
10303 #define CALL_GetCombinerInputParameterivNV(disp, parameters) \
10304 (* GET_GetCombinerInputParameterivNV(disp)) parameters
10305 static INLINE _glptr_GetCombinerInputParameterivNV GET_GetCombinerInputParameterivNV(struct _glapi_table *disp) {
10306 return (_glptr_GetCombinerInputParameterivNV) (GET_by_offset(disp, _gloffset_GetCombinerInputParameterivNV));
10307 }
10308
10309 static INLINE void SET_GetCombinerInputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLint *)) {
10310 SET_by_offset(disp, _gloffset_GetCombinerInputParameterivNV, fn);
10311 }
10312
10313 typedef void (GLAPIENTRYP _glptr_GetCombinerOutputParameterfvNV)(GLenum, GLenum, GLenum, GLfloat *);
10314 #define CALL_GetCombinerOutputParameterfvNV(disp, parameters) \
10315 (* GET_GetCombinerOutputParameterfvNV(disp)) parameters
10316 static INLINE _glptr_GetCombinerOutputParameterfvNV GET_GetCombinerOutputParameterfvNV(struct _glapi_table *disp) {
10317 return (_glptr_GetCombinerOutputParameterfvNV) (GET_by_offset(disp, _gloffset_GetCombinerOutputParameterfvNV));
10318 }
10319
10320 static INLINE void SET_GetCombinerOutputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLfloat *)) {
10321 SET_by_offset(disp, _gloffset_GetCombinerOutputParameterfvNV, fn);
10322 }
10323
10324 typedef void (GLAPIENTRYP _glptr_GetCombinerOutputParameterivNV)(GLenum, GLenum, GLenum, GLint *);
10325 #define CALL_GetCombinerOutputParameterivNV(disp, parameters) \
10326 (* GET_GetCombinerOutputParameterivNV(disp)) parameters
10327 static INLINE _glptr_GetCombinerOutputParameterivNV GET_GetCombinerOutputParameterivNV(struct _glapi_table *disp) {
10328 return (_glptr_GetCombinerOutputParameterivNV) (GET_by_offset(disp, _gloffset_GetCombinerOutputParameterivNV));
10329 }
10330
10331 static INLINE void SET_GetCombinerOutputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) {
10332 SET_by_offset(disp, _gloffset_GetCombinerOutputParameterivNV, fn);
10333 }
10334
10335 typedef void (GLAPIENTRYP _glptr_GetFinalCombinerInputParameterfvNV)(GLenum, GLenum, GLfloat *);
10336 #define CALL_GetFinalCombinerInputParameterfvNV(disp, parameters) \
10337 (* GET_GetFinalCombinerInputParameterfvNV(disp)) parameters
10338 static INLINE _glptr_GetFinalCombinerInputParameterfvNV GET_GetFinalCombinerInputParameterfvNV(struct _glapi_table *disp) {
10339 return (_glptr_GetFinalCombinerInputParameterfvNV) (GET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterfvNV));
10340 }
10341
10342 static INLINE void SET_GetFinalCombinerInputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
10343 SET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterfvNV, fn);
10344 }
10345
10346 typedef void (GLAPIENTRYP _glptr_GetFinalCombinerInputParameterivNV)(GLenum, GLenum, GLint *);
10347 #define CALL_GetFinalCombinerInputParameterivNV(disp, parameters) \
10348 (* GET_GetFinalCombinerInputParameterivNV(disp)) parameters
10349 static INLINE _glptr_GetFinalCombinerInputParameterivNV GET_GetFinalCombinerInputParameterivNV(struct _glapi_table *disp) {
10350 return (_glptr_GetFinalCombinerInputParameterivNV) (GET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterivNV));
10351 }
10352
10353 static INLINE void SET_GetFinalCombinerInputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
10354 SET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterivNV, fn);
10355 }
10356
10357 typedef void (GLAPIENTRYP _glptr_ResizeBuffersMESA)(void);
10358 #define CALL_ResizeBuffersMESA(disp, parameters) \
10359 (* GET_ResizeBuffersMESA(disp)) parameters
10360 static INLINE _glptr_ResizeBuffersMESA GET_ResizeBuffersMESA(struct _glapi_table *disp) {
10361 return (_glptr_ResizeBuffersMESA) (GET_by_offset(disp, _gloffset_ResizeBuffersMESA));
10362 }
10363
10364 static INLINE void SET_ResizeBuffersMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
10365 SET_by_offset(disp, _gloffset_ResizeBuffersMESA, fn);
10366 }
10367
10368 typedef void (GLAPIENTRYP _glptr_WindowPos2dMESA)(GLdouble, GLdouble);
10369 #define CALL_WindowPos2dMESA(disp, parameters) \
10370 (* GET_WindowPos2dMESA(disp)) parameters
10371 static INLINE _glptr_WindowPos2dMESA GET_WindowPos2dMESA(struct _glapi_table *disp) {
10372 return (_glptr_WindowPos2dMESA) (GET_by_offset(disp, _gloffset_WindowPos2dMESA));
10373 }
10374
10375 static INLINE void SET_WindowPos2dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
10376 SET_by_offset(disp, _gloffset_WindowPos2dMESA, fn);
10377 }
10378
10379 typedef void (GLAPIENTRYP _glptr_WindowPos2dvMESA)(const GLdouble *);
10380 #define CALL_WindowPos2dvMESA(disp, parameters) \
10381 (* GET_WindowPos2dvMESA(disp)) parameters
10382 static INLINE _glptr_WindowPos2dvMESA GET_WindowPos2dvMESA(struct _glapi_table *disp) {
10383 return (_glptr_WindowPos2dvMESA) (GET_by_offset(disp, _gloffset_WindowPos2dvMESA));
10384 }
10385
10386 static INLINE void SET_WindowPos2dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
10387 SET_by_offset(disp, _gloffset_WindowPos2dvMESA, fn);
10388 }
10389
10390 typedef void (GLAPIENTRYP _glptr_WindowPos2fMESA)(GLfloat, GLfloat);
10391 #define CALL_WindowPos2fMESA(disp, parameters) \
10392 (* GET_WindowPos2fMESA(disp)) parameters
10393 static INLINE _glptr_WindowPos2fMESA GET_WindowPos2fMESA(struct _glapi_table *disp) {
10394 return (_glptr_WindowPos2fMESA) (GET_by_offset(disp, _gloffset_WindowPos2fMESA));
10395 }
10396
10397 static INLINE void SET_WindowPos2fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
10398 SET_by_offset(disp, _gloffset_WindowPos2fMESA, fn);
10399 }
10400
10401 typedef void (GLAPIENTRYP _glptr_WindowPos2fvMESA)(const GLfloat *);
10402 #define CALL_WindowPos2fvMESA(disp, parameters) \
10403 (* GET_WindowPos2fvMESA(disp)) parameters
10404 static INLINE _glptr_WindowPos2fvMESA GET_WindowPos2fvMESA(struct _glapi_table *disp) {
10405 return (_glptr_WindowPos2fvMESA) (GET_by_offset(disp, _gloffset_WindowPos2fvMESA));
10406 }
10407
10408 static INLINE void SET_WindowPos2fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
10409 SET_by_offset(disp, _gloffset_WindowPos2fvMESA, fn);
10410 }
10411
10412 typedef void (GLAPIENTRYP _glptr_WindowPos2iMESA)(GLint, GLint);
10413 #define CALL_WindowPos2iMESA(disp, parameters) \
10414 (* GET_WindowPos2iMESA(disp)) parameters
10415 static INLINE _glptr_WindowPos2iMESA GET_WindowPos2iMESA(struct _glapi_table *disp) {
10416 return (_glptr_WindowPos2iMESA) (GET_by_offset(disp, _gloffset_WindowPos2iMESA));
10417 }
10418
10419 static INLINE void SET_WindowPos2iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
10420 SET_by_offset(disp, _gloffset_WindowPos2iMESA, fn);
10421 }
10422
10423 typedef void (GLAPIENTRYP _glptr_WindowPos2ivMESA)(const GLint *);
10424 #define CALL_WindowPos2ivMESA(disp, parameters) \
10425 (* GET_WindowPos2ivMESA(disp)) parameters
10426 static INLINE _glptr_WindowPos2ivMESA GET_WindowPos2ivMESA(struct _glapi_table *disp) {
10427 return (_glptr_WindowPos2ivMESA) (GET_by_offset(disp, _gloffset_WindowPos2ivMESA));
10428 }
10429
10430 static INLINE void SET_WindowPos2ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
10431 SET_by_offset(disp, _gloffset_WindowPos2ivMESA, fn);
10432 }
10433
10434 typedef void (GLAPIENTRYP _glptr_WindowPos2sMESA)(GLshort, GLshort);
10435 #define CALL_WindowPos2sMESA(disp, parameters) \
10436 (* GET_WindowPos2sMESA(disp)) parameters
10437 static INLINE _glptr_WindowPos2sMESA GET_WindowPos2sMESA(struct _glapi_table *disp) {
10438 return (_glptr_WindowPos2sMESA) (GET_by_offset(disp, _gloffset_WindowPos2sMESA));
10439 }
10440
10441 static INLINE void SET_WindowPos2sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
10442 SET_by_offset(disp, _gloffset_WindowPos2sMESA, fn);
10443 }
10444
10445 typedef void (GLAPIENTRYP _glptr_WindowPos2svMESA)(const GLshort *);
10446 #define CALL_WindowPos2svMESA(disp, parameters) \
10447 (* GET_WindowPos2svMESA(disp)) parameters
10448 static INLINE _glptr_WindowPos2svMESA GET_WindowPos2svMESA(struct _glapi_table *disp) {
10449 return (_glptr_WindowPos2svMESA) (GET_by_offset(disp, _gloffset_WindowPos2svMESA));
10450 }
10451
10452 static INLINE void SET_WindowPos2svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
10453 SET_by_offset(disp, _gloffset_WindowPos2svMESA, fn);
10454 }
10455
10456 typedef void (GLAPIENTRYP _glptr_WindowPos3dMESA)(GLdouble, GLdouble, GLdouble);
10457 #define CALL_WindowPos3dMESA(disp, parameters) \
10458 (* GET_WindowPos3dMESA(disp)) parameters
10459 static INLINE _glptr_WindowPos3dMESA GET_WindowPos3dMESA(struct _glapi_table *disp) {
10460 return (_glptr_WindowPos3dMESA) (GET_by_offset(disp, _gloffset_WindowPos3dMESA));
10461 }
10462
10463 static INLINE void SET_WindowPos3dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
10464 SET_by_offset(disp, _gloffset_WindowPos3dMESA, fn);
10465 }
10466
10467 typedef void (GLAPIENTRYP _glptr_WindowPos3dvMESA)(const GLdouble *);
10468 #define CALL_WindowPos3dvMESA(disp, parameters) \
10469 (* GET_WindowPos3dvMESA(disp)) parameters
10470 static INLINE _glptr_WindowPos3dvMESA GET_WindowPos3dvMESA(struct _glapi_table *disp) {
10471 return (_glptr_WindowPos3dvMESA) (GET_by_offset(disp, _gloffset_WindowPos3dvMESA));
10472 }
10473
10474 static INLINE void SET_WindowPos3dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
10475 SET_by_offset(disp, _gloffset_WindowPos3dvMESA, fn);
10476 }
10477
10478 typedef void (GLAPIENTRYP _glptr_WindowPos3fMESA)(GLfloat, GLfloat, GLfloat);
10479 #define CALL_WindowPos3fMESA(disp, parameters) \
10480 (* GET_WindowPos3fMESA(disp)) parameters
10481 static INLINE _glptr_WindowPos3fMESA GET_WindowPos3fMESA(struct _glapi_table *disp) {
10482 return (_glptr_WindowPos3fMESA) (GET_by_offset(disp, _gloffset_WindowPos3fMESA));
10483 }
10484
10485 static INLINE void SET_WindowPos3fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
10486 SET_by_offset(disp, _gloffset_WindowPos3fMESA, fn);
10487 }
10488
10489 typedef void (GLAPIENTRYP _glptr_WindowPos3fvMESA)(const GLfloat *);
10490 #define CALL_WindowPos3fvMESA(disp, parameters) \
10491 (* GET_WindowPos3fvMESA(disp)) parameters
10492 static INLINE _glptr_WindowPos3fvMESA GET_WindowPos3fvMESA(struct _glapi_table *disp) {
10493 return (_glptr_WindowPos3fvMESA) (GET_by_offset(disp, _gloffset_WindowPos3fvMESA));
10494 }
10495
10496 static INLINE void SET_WindowPos3fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
10497 SET_by_offset(disp, _gloffset_WindowPos3fvMESA, fn);
10498 }
10499
10500 typedef void (GLAPIENTRYP _glptr_WindowPos3iMESA)(GLint, GLint, GLint);
10501 #define CALL_WindowPos3iMESA(disp, parameters) \
10502 (* GET_WindowPos3iMESA(disp)) parameters
10503 static INLINE _glptr_WindowPos3iMESA GET_WindowPos3iMESA(struct _glapi_table *disp) {
10504 return (_glptr_WindowPos3iMESA) (GET_by_offset(disp, _gloffset_WindowPos3iMESA));
10505 }
10506
10507 static INLINE void SET_WindowPos3iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
10508 SET_by_offset(disp, _gloffset_WindowPos3iMESA, fn);
10509 }
10510
10511 typedef void (GLAPIENTRYP _glptr_WindowPos3ivMESA)(const GLint *);
10512 #define CALL_WindowPos3ivMESA(disp, parameters) \
10513 (* GET_WindowPos3ivMESA(disp)) parameters
10514 static INLINE _glptr_WindowPos3ivMESA GET_WindowPos3ivMESA(struct _glapi_table *disp) {
10515 return (_glptr_WindowPos3ivMESA) (GET_by_offset(disp, _gloffset_WindowPos3ivMESA));
10516 }
10517
10518 static INLINE void SET_WindowPos3ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
10519 SET_by_offset(disp, _gloffset_WindowPos3ivMESA, fn);
10520 }
10521
10522 typedef void (GLAPIENTRYP _glptr_WindowPos3sMESA)(GLshort, GLshort, GLshort);
10523 #define CALL_WindowPos3sMESA(disp, parameters) \
10524 (* GET_WindowPos3sMESA(disp)) parameters
10525 static INLINE _glptr_WindowPos3sMESA GET_WindowPos3sMESA(struct _glapi_table *disp) {
10526 return (_glptr_WindowPos3sMESA) (GET_by_offset(disp, _gloffset_WindowPos3sMESA));
10527 }
10528
10529 static INLINE void SET_WindowPos3sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
10530 SET_by_offset(disp, _gloffset_WindowPos3sMESA, fn);
10531 }
10532
10533 typedef void (GLAPIENTRYP _glptr_WindowPos3svMESA)(const GLshort *);
10534 #define CALL_WindowPos3svMESA(disp, parameters) \
10535 (* GET_WindowPos3svMESA(disp)) parameters
10536 static INLINE _glptr_WindowPos3svMESA GET_WindowPos3svMESA(struct _glapi_table *disp) {
10537 return (_glptr_WindowPos3svMESA) (GET_by_offset(disp, _gloffset_WindowPos3svMESA));
10538 }
10539
10540 static INLINE void SET_WindowPos3svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
10541 SET_by_offset(disp, _gloffset_WindowPos3svMESA, fn);
10542 }
10543
10544 typedef void (GLAPIENTRYP _glptr_WindowPos4dMESA)(GLdouble, GLdouble, GLdouble, GLdouble);
10545 #define CALL_WindowPos4dMESA(disp, parameters) \
10546 (* GET_WindowPos4dMESA(disp)) parameters
10547 static INLINE _glptr_WindowPos4dMESA GET_WindowPos4dMESA(struct _glapi_table *disp) {
10548 return (_glptr_WindowPos4dMESA) (GET_by_offset(disp, _gloffset_WindowPos4dMESA));
10549 }
10550
10551 static INLINE void SET_WindowPos4dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
10552 SET_by_offset(disp, _gloffset_WindowPos4dMESA, fn);
10553 }
10554
10555 typedef void (GLAPIENTRYP _glptr_WindowPos4dvMESA)(const GLdouble *);
10556 #define CALL_WindowPos4dvMESA(disp, parameters) \
10557 (* GET_WindowPos4dvMESA(disp)) parameters
10558 static INLINE _glptr_WindowPos4dvMESA GET_WindowPos4dvMESA(struct _glapi_table *disp) {
10559 return (_glptr_WindowPos4dvMESA) (GET_by_offset(disp, _gloffset_WindowPos4dvMESA));
10560 }
10561
10562 static INLINE void SET_WindowPos4dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
10563 SET_by_offset(disp, _gloffset_WindowPos4dvMESA, fn);
10564 }
10565
10566 typedef void (GLAPIENTRYP _glptr_WindowPos4fMESA)(GLfloat, GLfloat, GLfloat, GLfloat);
10567 #define CALL_WindowPos4fMESA(disp, parameters) \
10568 (* GET_WindowPos4fMESA(disp)) parameters
10569 static INLINE _glptr_WindowPos4fMESA GET_WindowPos4fMESA(struct _glapi_table *disp) {
10570 return (_glptr_WindowPos4fMESA) (GET_by_offset(disp, _gloffset_WindowPos4fMESA));
10571 }
10572
10573 static INLINE void SET_WindowPos4fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
10574 SET_by_offset(disp, _gloffset_WindowPos4fMESA, fn);
10575 }
10576
10577 typedef void (GLAPIENTRYP _glptr_WindowPos4fvMESA)(const GLfloat *);
10578 #define CALL_WindowPos4fvMESA(disp, parameters) \
10579 (* GET_WindowPos4fvMESA(disp)) parameters
10580 static INLINE _glptr_WindowPos4fvMESA GET_WindowPos4fvMESA(struct _glapi_table *disp) {
10581 return (_glptr_WindowPos4fvMESA) (GET_by_offset(disp, _gloffset_WindowPos4fvMESA));
10582 }
10583
10584 static INLINE void SET_WindowPos4fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
10585 SET_by_offset(disp, _gloffset_WindowPos4fvMESA, fn);
10586 }
10587
10588 typedef void (GLAPIENTRYP _glptr_WindowPos4iMESA)(GLint, GLint, GLint, GLint);
10589 #define CALL_WindowPos4iMESA(disp, parameters) \
10590 (* GET_WindowPos4iMESA(disp)) parameters
10591 static INLINE _glptr_WindowPos4iMESA GET_WindowPos4iMESA(struct _glapi_table *disp) {
10592 return (_glptr_WindowPos4iMESA) (GET_by_offset(disp, _gloffset_WindowPos4iMESA));
10593 }
10594
10595 static INLINE void SET_WindowPos4iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
10596 SET_by_offset(disp, _gloffset_WindowPos4iMESA, fn);
10597 }
10598
10599 typedef void (GLAPIENTRYP _glptr_WindowPos4ivMESA)(const GLint *);
10600 #define CALL_WindowPos4ivMESA(disp, parameters) \
10601 (* GET_WindowPos4ivMESA(disp)) parameters
10602 static INLINE _glptr_WindowPos4ivMESA GET_WindowPos4ivMESA(struct _glapi_table *disp) {
10603 return (_glptr_WindowPos4ivMESA) (GET_by_offset(disp, _gloffset_WindowPos4ivMESA));
10604 }
10605
10606 static INLINE void SET_WindowPos4ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
10607 SET_by_offset(disp, _gloffset_WindowPos4ivMESA, fn);
10608 }
10609
10610 typedef void (GLAPIENTRYP _glptr_WindowPos4sMESA)(GLshort, GLshort, GLshort, GLshort);
10611 #define CALL_WindowPos4sMESA(disp, parameters) \
10612 (* GET_WindowPos4sMESA(disp)) parameters
10613 static INLINE _glptr_WindowPos4sMESA GET_WindowPos4sMESA(struct _glapi_table *disp) {
10614 return (_glptr_WindowPos4sMESA) (GET_by_offset(disp, _gloffset_WindowPos4sMESA));
10615 }
10616
10617 static INLINE void SET_WindowPos4sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
10618 SET_by_offset(disp, _gloffset_WindowPos4sMESA, fn);
10619 }
10620
10621 typedef void (GLAPIENTRYP _glptr_WindowPos4svMESA)(const GLshort *);
10622 #define CALL_WindowPos4svMESA(disp, parameters) \
10623 (* GET_WindowPos4svMESA(disp)) parameters
10624 static INLINE _glptr_WindowPos4svMESA GET_WindowPos4svMESA(struct _glapi_table *disp) {
10625 return (_glptr_WindowPos4svMESA) (GET_by_offset(disp, _gloffset_WindowPos4svMESA));
10626 }
10627
10628 static INLINE void SET_WindowPos4svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
10629 SET_by_offset(disp, _gloffset_WindowPos4svMESA, fn);
10630 }
10631
10632 typedef void (GLAPIENTRYP _glptr_MultiModeDrawArraysIBM)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint);
10633 #define CALL_MultiModeDrawArraysIBM(disp, parameters) \
10634 (* GET_MultiModeDrawArraysIBM(disp)) parameters
10635 static INLINE _glptr_MultiModeDrawArraysIBM GET_MultiModeDrawArraysIBM(struct _glapi_table *disp) {
10636 return (_glptr_MultiModeDrawArraysIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM));
10637 }
10638
10639 static INLINE void SET_MultiModeDrawArraysIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint)) {
10640 SET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM, fn);
10641 }
10642
10643 typedef void (GLAPIENTRYP _glptr_MultiModeDrawElementsIBM)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint);
10644 #define CALL_MultiModeDrawElementsIBM(disp, parameters) \
10645 (* GET_MultiModeDrawElementsIBM(disp)) parameters
10646 static INLINE _glptr_MultiModeDrawElementsIBM GET_MultiModeDrawElementsIBM(struct _glapi_table *disp) {
10647 return (_glptr_MultiModeDrawElementsIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM));
10648 }
10649
10650 static INLINE void SET_MultiModeDrawElementsIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint)) {
10651 SET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM, fn);
10652 }
10653
10654 typedef void (GLAPIENTRYP _glptr_DeleteFencesNV)(GLsizei, const GLuint *);
10655 #define CALL_DeleteFencesNV(disp, parameters) \
10656 (* GET_DeleteFencesNV(disp)) parameters
10657 static INLINE _glptr_DeleteFencesNV GET_DeleteFencesNV(struct _glapi_table *disp) {
10658 return (_glptr_DeleteFencesNV) (GET_by_offset(disp, _gloffset_DeleteFencesNV));
10659 }
10660
10661 static INLINE void SET_DeleteFencesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
10662 SET_by_offset(disp, _gloffset_DeleteFencesNV, fn);
10663 }
10664
10665 typedef void (GLAPIENTRYP _glptr_FinishFenceNV)(GLuint);
10666 #define CALL_FinishFenceNV(disp, parameters) \
10667 (* GET_FinishFenceNV(disp)) parameters
10668 static INLINE _glptr_FinishFenceNV GET_FinishFenceNV(struct _glapi_table *disp) {
10669 return (_glptr_FinishFenceNV) (GET_by_offset(disp, _gloffset_FinishFenceNV));
10670 }
10671
10672 static INLINE void SET_FinishFenceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
10673 SET_by_offset(disp, _gloffset_FinishFenceNV, fn);
10674 }
10675
10676 typedef void (GLAPIENTRYP _glptr_GenFencesNV)(GLsizei, GLuint *);
10677 #define CALL_GenFencesNV(disp, parameters) \
10678 (* GET_GenFencesNV(disp)) parameters
10679 static INLINE _glptr_GenFencesNV GET_GenFencesNV(struct _glapi_table *disp) {
10680 return (_glptr_GenFencesNV) (GET_by_offset(disp, _gloffset_GenFencesNV));
10681 }
10682
10683 static INLINE void SET_GenFencesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
10684 SET_by_offset(disp, _gloffset_GenFencesNV, fn);
10685 }
10686
10687 typedef void (GLAPIENTRYP _glptr_GetFenceivNV)(GLuint, GLenum, GLint *);
10688 #define CALL_GetFenceivNV(disp, parameters) \
10689 (* GET_GetFenceivNV(disp)) parameters
10690 static INLINE _glptr_GetFenceivNV GET_GetFenceivNV(struct _glapi_table *disp) {
10691 return (_glptr_GetFenceivNV) (GET_by_offset(disp, _gloffset_GetFenceivNV));
10692 }
10693
10694 static INLINE void SET_GetFenceivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
10695 SET_by_offset(disp, _gloffset_GetFenceivNV, fn);
10696 }
10697
10698 typedef GLboolean (GLAPIENTRYP _glptr_IsFenceNV)(GLuint);
10699 #define CALL_IsFenceNV(disp, parameters) \
10700 (* GET_IsFenceNV(disp)) parameters
10701 static INLINE _glptr_IsFenceNV GET_IsFenceNV(struct _glapi_table *disp) {
10702 return (_glptr_IsFenceNV) (GET_by_offset(disp, _gloffset_IsFenceNV));
10703 }
10704
10705 static INLINE void SET_IsFenceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
10706 SET_by_offset(disp, _gloffset_IsFenceNV, fn);
10707 }
10708
10709 typedef void (GLAPIENTRYP _glptr_SetFenceNV)(GLuint, GLenum);
10710 #define CALL_SetFenceNV(disp, parameters) \
10711 (* GET_SetFenceNV(disp)) parameters
10712 static INLINE _glptr_SetFenceNV GET_SetFenceNV(struct _glapi_table *disp) {
10713 return (_glptr_SetFenceNV) (GET_by_offset(disp, _gloffset_SetFenceNV));
10714 }
10715
10716 static INLINE void SET_SetFenceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
10717 SET_by_offset(disp, _gloffset_SetFenceNV, fn);
10718 }
10719
10720 typedef GLboolean (GLAPIENTRYP _glptr_TestFenceNV)(GLuint);
10721 #define CALL_TestFenceNV(disp, parameters) \
10722 (* GET_TestFenceNV(disp)) parameters
10723 static INLINE _glptr_TestFenceNV GET_TestFenceNV(struct _glapi_table *disp) {
10724 return (_glptr_TestFenceNV) (GET_by_offset(disp, _gloffset_TestFenceNV));
10725 }
10726
10727 static INLINE void SET_TestFenceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
10728 SET_by_offset(disp, _gloffset_TestFenceNV, fn);
10729 }
10730
10731 typedef GLboolean (GLAPIENTRYP _glptr_AreProgramsResidentNV)(GLsizei, const GLuint *, GLboolean *);
10732 #define CALL_AreProgramsResidentNV(disp, parameters) \
10733 (* GET_AreProgramsResidentNV(disp)) parameters
10734 static INLINE _glptr_AreProgramsResidentNV GET_AreProgramsResidentNV(struct _glapi_table *disp) {
10735 return (_glptr_AreProgramsResidentNV) (GET_by_offset(disp, _gloffset_AreProgramsResidentNV));
10736 }
10737
10738 static INLINE void SET_AreProgramsResidentNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
10739 SET_by_offset(disp, _gloffset_AreProgramsResidentNV, fn);
10740 }
10741
10742 typedef void (GLAPIENTRYP _glptr_BindProgramNV)(GLenum, GLuint);
10743 #define CALL_BindProgramNV(disp, parameters) \
10744 (* GET_BindProgramNV(disp)) parameters
10745 static INLINE _glptr_BindProgramNV GET_BindProgramNV(struct _glapi_table *disp) {
10746 return (_glptr_BindProgramNV) (GET_by_offset(disp, _gloffset_BindProgramNV));
10747 }
10748
10749 static INLINE void SET_BindProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
10750 SET_by_offset(disp, _gloffset_BindProgramNV, fn);
10751 }
10752
10753 typedef void (GLAPIENTRYP _glptr_DeleteProgramsNV)(GLsizei, const GLuint *);
10754 #define CALL_DeleteProgramsNV(disp, parameters) \
10755 (* GET_DeleteProgramsNV(disp)) parameters
10756 static INLINE _glptr_DeleteProgramsNV GET_DeleteProgramsNV(struct _glapi_table *disp) {
10757 return (_glptr_DeleteProgramsNV) (GET_by_offset(disp, _gloffset_DeleteProgramsNV));
10758 }
10759
10760 static INLINE void SET_DeleteProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
10761 SET_by_offset(disp, _gloffset_DeleteProgramsNV, fn);
10762 }
10763
10764 typedef void (GLAPIENTRYP _glptr_ExecuteProgramNV)(GLenum, GLuint, const GLfloat *);
10765 #define CALL_ExecuteProgramNV(disp, parameters) \
10766 (* GET_ExecuteProgramNV(disp)) parameters
10767 static INLINE _glptr_ExecuteProgramNV GET_ExecuteProgramNV(struct _glapi_table *disp) {
10768 return (_glptr_ExecuteProgramNV) (GET_by_offset(disp, _gloffset_ExecuteProgramNV));
10769 }
10770
10771 static INLINE void SET_ExecuteProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
10772 SET_by_offset(disp, _gloffset_ExecuteProgramNV, fn);
10773 }
10774
10775 typedef void (GLAPIENTRYP _glptr_GenProgramsNV)(GLsizei, GLuint *);
10776 #define CALL_GenProgramsNV(disp, parameters) \
10777 (* GET_GenProgramsNV(disp)) parameters
10778 static INLINE _glptr_GenProgramsNV GET_GenProgramsNV(struct _glapi_table *disp) {
10779 return (_glptr_GenProgramsNV) (GET_by_offset(disp, _gloffset_GenProgramsNV));
10780 }
10781
10782 static INLINE void SET_GenProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
10783 SET_by_offset(disp, _gloffset_GenProgramsNV, fn);
10784 }
10785
10786 typedef void (GLAPIENTRYP _glptr_GetProgramParameterdvNV)(GLenum, GLuint, GLenum, GLdouble *);
10787 #define CALL_GetProgramParameterdvNV(disp, parameters) \
10788 (* GET_GetProgramParameterdvNV(disp)) parameters
10789 static INLINE _glptr_GetProgramParameterdvNV GET_GetProgramParameterdvNV(struct _glapi_table *disp) {
10790 return (_glptr_GetProgramParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterdvNV));
10791 }
10792
10793 static INLINE void SET_GetProgramParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLdouble *)) {
10794 SET_by_offset(disp, _gloffset_GetProgramParameterdvNV, fn);
10795 }
10796
10797 typedef void (GLAPIENTRYP _glptr_GetProgramParameterfvNV)(GLenum, GLuint, GLenum, GLfloat *);
10798 #define CALL_GetProgramParameterfvNV(disp, parameters) \
10799 (* GET_GetProgramParameterfvNV(disp)) parameters
10800 static INLINE _glptr_GetProgramParameterfvNV GET_GetProgramParameterfvNV(struct _glapi_table *disp) {
10801 return (_glptr_GetProgramParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterfvNV));
10802 }
10803
10804 static INLINE void SET_GetProgramParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLfloat *)) {
10805 SET_by_offset(disp, _gloffset_GetProgramParameterfvNV, fn);
10806 }
10807
10808 typedef void (GLAPIENTRYP _glptr_GetProgramStringNV)(GLuint, GLenum, GLubyte *);
10809 #define CALL_GetProgramStringNV(disp, parameters) \
10810 (* GET_GetProgramStringNV(disp)) parameters
10811 static INLINE _glptr_GetProgramStringNV GET_GetProgramStringNV(struct _glapi_table *disp) {
10812 return (_glptr_GetProgramStringNV) (GET_by_offset(disp, _gloffset_GetProgramStringNV));
10813 }
10814
10815 static INLINE void SET_GetProgramStringNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLubyte *)) {
10816 SET_by_offset(disp, _gloffset_GetProgramStringNV, fn);
10817 }
10818
10819 typedef void (GLAPIENTRYP _glptr_GetProgramivNV)(GLuint, GLenum, GLint *);
10820 #define CALL_GetProgramivNV(disp, parameters) \
10821 (* GET_GetProgramivNV(disp)) parameters
10822 static INLINE _glptr_GetProgramivNV GET_GetProgramivNV(struct _glapi_table *disp) {
10823 return (_glptr_GetProgramivNV) (GET_by_offset(disp, _gloffset_GetProgramivNV));
10824 }
10825
10826 static INLINE void SET_GetProgramivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
10827 SET_by_offset(disp, _gloffset_GetProgramivNV, fn);
10828 }
10829
10830 typedef void (GLAPIENTRYP _glptr_GetTrackMatrixivNV)(GLenum, GLuint, GLenum, GLint *);
10831 #define CALL_GetTrackMatrixivNV(disp, parameters) \
10832 (* GET_GetTrackMatrixivNV(disp)) parameters
10833 static INLINE _glptr_GetTrackMatrixivNV GET_GetTrackMatrixivNV(struct _glapi_table *disp) {
10834 return (_glptr_GetTrackMatrixivNV) (GET_by_offset(disp, _gloffset_GetTrackMatrixivNV));
10835 }
10836
10837 static INLINE void SET_GetTrackMatrixivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
10838 SET_by_offset(disp, _gloffset_GetTrackMatrixivNV, fn);
10839 }
10840
10841 typedef void (GLAPIENTRYP _glptr_GetVertexAttribPointervNV)(GLuint, GLenum, GLvoid **);
10842 #define CALL_GetVertexAttribPointervNV(disp, parameters) \
10843 (* GET_GetVertexAttribPointervNV(disp)) parameters
10844 static INLINE _glptr_GetVertexAttribPointervNV GET_GetVertexAttribPointervNV(struct _glapi_table *disp) {
10845 return (_glptr_GetVertexAttribPointervNV) (GET_by_offset(disp, _gloffset_GetVertexAttribPointervNV));
10846 }
10847
10848 static INLINE void SET_GetVertexAttribPointervNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLvoid **)) {
10849 SET_by_offset(disp, _gloffset_GetVertexAttribPointervNV, fn);
10850 }
10851
10852 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvNV)(GLuint, GLenum, GLdouble *);
10853 #define CALL_GetVertexAttribdvNV(disp, parameters) \
10854 (* GET_GetVertexAttribdvNV(disp)) parameters
10855 static INLINE _glptr_GetVertexAttribdvNV GET_GetVertexAttribdvNV(struct _glapi_table *disp) {
10856 return (_glptr_GetVertexAttribdvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribdvNV));
10857 }
10858
10859 static INLINE void SET_GetVertexAttribdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
10860 SET_by_offset(disp, _gloffset_GetVertexAttribdvNV, fn);
10861 }
10862
10863 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvNV)(GLuint, GLenum, GLfloat *);
10864 #define CALL_GetVertexAttribfvNV(disp, parameters) \
10865 (* GET_GetVertexAttribfvNV(disp)) parameters
10866 static INLINE _glptr_GetVertexAttribfvNV GET_GetVertexAttribfvNV(struct _glapi_table *disp) {
10867 return (_glptr_GetVertexAttribfvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribfvNV));
10868 }
10869
10870 static INLINE void SET_GetVertexAttribfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
10871 SET_by_offset(disp, _gloffset_GetVertexAttribfvNV, fn);
10872 }
10873
10874 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivNV)(GLuint, GLenum, GLint *);
10875 #define CALL_GetVertexAttribivNV(disp, parameters) \
10876 (* GET_GetVertexAttribivNV(disp)) parameters
10877 static INLINE _glptr_GetVertexAttribivNV GET_GetVertexAttribivNV(struct _glapi_table *disp) {
10878 return (_glptr_GetVertexAttribivNV) (GET_by_offset(disp, _gloffset_GetVertexAttribivNV));
10879 }
10880
10881 static INLINE void SET_GetVertexAttribivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
10882 SET_by_offset(disp, _gloffset_GetVertexAttribivNV, fn);
10883 }
10884
10885 typedef GLboolean (GLAPIENTRYP _glptr_IsProgramNV)(GLuint);
10886 #define CALL_IsProgramNV(disp, parameters) \
10887 (* GET_IsProgramNV(disp)) parameters
10888 static INLINE _glptr_IsProgramNV GET_IsProgramNV(struct _glapi_table *disp) {
10889 return (_glptr_IsProgramNV) (GET_by_offset(disp, _gloffset_IsProgramNV));
10890 }
10891
10892 static INLINE void SET_IsProgramNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
10893 SET_by_offset(disp, _gloffset_IsProgramNV, fn);
10894 }
10895
10896 typedef void (GLAPIENTRYP _glptr_LoadProgramNV)(GLenum, GLuint, GLsizei, const GLubyte *);
10897 #define CALL_LoadProgramNV(disp, parameters) \
10898 (* GET_LoadProgramNV(disp)) parameters
10899 static INLINE _glptr_LoadProgramNV GET_LoadProgramNV(struct _glapi_table *disp) {
10900 return (_glptr_LoadProgramNV) (GET_by_offset(disp, _gloffset_LoadProgramNV));
10901 }
10902
10903 static INLINE void SET_LoadProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLubyte *)) {
10904 SET_by_offset(disp, _gloffset_LoadProgramNV, fn);
10905 }
10906
10907 typedef void (GLAPIENTRYP _glptr_ProgramParameters4dvNV)(GLenum, GLuint, GLsizei, const GLdouble *);
10908 #define CALL_ProgramParameters4dvNV(disp, parameters) \
10909 (* GET_ProgramParameters4dvNV(disp)) parameters
10910 static INLINE _glptr_ProgramParameters4dvNV GET_ProgramParameters4dvNV(struct _glapi_table *disp) {
10911 return (_glptr_ProgramParameters4dvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4dvNV));
10912 }
10913
10914 static INLINE void SET_ProgramParameters4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLdouble *)) {
10915 SET_by_offset(disp, _gloffset_ProgramParameters4dvNV, fn);
10916 }
10917
10918 typedef void (GLAPIENTRYP _glptr_ProgramParameters4fvNV)(GLenum, GLuint, GLsizei, const GLfloat *);
10919 #define CALL_ProgramParameters4fvNV(disp, parameters) \
10920 (* GET_ProgramParameters4fvNV(disp)) parameters
10921 static INLINE _glptr_ProgramParameters4fvNV GET_ProgramParameters4fvNV(struct _glapi_table *disp) {
10922 return (_glptr_ProgramParameters4fvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4fvNV));
10923 }
10924
10925 static INLINE void SET_ProgramParameters4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
10926 SET_by_offset(disp, _gloffset_ProgramParameters4fvNV, fn);
10927 }
10928
10929 typedef void (GLAPIENTRYP _glptr_RequestResidentProgramsNV)(GLsizei, const GLuint *);
10930 #define CALL_RequestResidentProgramsNV(disp, parameters) \
10931 (* GET_RequestResidentProgramsNV(disp)) parameters
10932 static INLINE _glptr_RequestResidentProgramsNV GET_RequestResidentProgramsNV(struct _glapi_table *disp) {
10933 return (_glptr_RequestResidentProgramsNV) (GET_by_offset(disp, _gloffset_RequestResidentProgramsNV));
10934 }
10935
10936 static INLINE void SET_RequestResidentProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
10937 SET_by_offset(disp, _gloffset_RequestResidentProgramsNV, fn);
10938 }
10939
10940 typedef void (GLAPIENTRYP _glptr_TrackMatrixNV)(GLenum, GLuint, GLenum, GLenum);
10941 #define CALL_TrackMatrixNV(disp, parameters) \
10942 (* GET_TrackMatrixNV(disp)) parameters
10943 static INLINE _glptr_TrackMatrixNV GET_TrackMatrixNV(struct _glapi_table *disp) {
10944 return (_glptr_TrackMatrixNV) (GET_by_offset(disp, _gloffset_TrackMatrixNV));
10945 }
10946
10947 static INLINE void SET_TrackMatrixNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLenum)) {
10948 SET_by_offset(disp, _gloffset_TrackMatrixNV, fn);
10949 }
10950
10951 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dNV)(GLuint, GLdouble);
10952 #define CALL_VertexAttrib1dNV(disp, parameters) \
10953 (* GET_VertexAttrib1dNV(disp)) parameters
10954 static INLINE _glptr_VertexAttrib1dNV GET_VertexAttrib1dNV(struct _glapi_table *disp) {
10955 return (_glptr_VertexAttrib1dNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dNV));
10956 }
10957
10958 static INLINE void SET_VertexAttrib1dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
10959 SET_by_offset(disp, _gloffset_VertexAttrib1dNV, fn);
10960 }
10961
10962 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvNV)(GLuint, const GLdouble *);
10963 #define CALL_VertexAttrib1dvNV(disp, parameters) \
10964 (* GET_VertexAttrib1dvNV(disp)) parameters
10965 static INLINE _glptr_VertexAttrib1dvNV GET_VertexAttrib1dvNV(struct _glapi_table *disp) {
10966 return (_glptr_VertexAttrib1dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dvNV));
10967 }
10968
10969 static INLINE void SET_VertexAttrib1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
10970 SET_by_offset(disp, _gloffset_VertexAttrib1dvNV, fn);
10971 }
10972
10973 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fNV)(GLuint, GLfloat);
10974 #define CALL_VertexAttrib1fNV(disp, parameters) \
10975 (* GET_VertexAttrib1fNV(disp)) parameters
10976 static INLINE _glptr_VertexAttrib1fNV GET_VertexAttrib1fNV(struct _glapi_table *disp) {
10977 return (_glptr_VertexAttrib1fNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fNV));
10978 }
10979
10980 static INLINE void SET_VertexAttrib1fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
10981 SET_by_offset(disp, _gloffset_VertexAttrib1fNV, fn);
10982 }
10983
10984 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvNV)(GLuint, const GLfloat *);
10985 #define CALL_VertexAttrib1fvNV(disp, parameters) \
10986 (* GET_VertexAttrib1fvNV(disp)) parameters
10987 static INLINE _glptr_VertexAttrib1fvNV GET_VertexAttrib1fvNV(struct _glapi_table *disp) {
10988 return (_glptr_VertexAttrib1fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fvNV));
10989 }
10990
10991 static INLINE void SET_VertexAttrib1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
10992 SET_by_offset(disp, _gloffset_VertexAttrib1fvNV, fn);
10993 }
10994
10995 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sNV)(GLuint, GLshort);
10996 #define CALL_VertexAttrib1sNV(disp, parameters) \
10997 (* GET_VertexAttrib1sNV(disp)) parameters
10998 static INLINE _glptr_VertexAttrib1sNV GET_VertexAttrib1sNV(struct _glapi_table *disp) {
10999 return (_glptr_VertexAttrib1sNV) (GET_by_offset(disp, _gloffset_VertexAttrib1sNV));
11000 }
11001
11002 static INLINE void SET_VertexAttrib1sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
11003 SET_by_offset(disp, _gloffset_VertexAttrib1sNV, fn);
11004 }
11005
11006 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svNV)(GLuint, const GLshort *);
11007 #define CALL_VertexAttrib1svNV(disp, parameters) \
11008 (* GET_VertexAttrib1svNV(disp)) parameters
11009 static INLINE _glptr_VertexAttrib1svNV GET_VertexAttrib1svNV(struct _glapi_table *disp) {
11010 return (_glptr_VertexAttrib1svNV) (GET_by_offset(disp, _gloffset_VertexAttrib1svNV));
11011 }
11012
11013 static INLINE void SET_VertexAttrib1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
11014 SET_by_offset(disp, _gloffset_VertexAttrib1svNV, fn);
11015 }
11016
11017 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dNV)(GLuint, GLdouble, GLdouble);
11018 #define CALL_VertexAttrib2dNV(disp, parameters) \
11019 (* GET_VertexAttrib2dNV(disp)) parameters
11020 static INLINE _glptr_VertexAttrib2dNV GET_VertexAttrib2dNV(struct _glapi_table *disp) {
11021 return (_glptr_VertexAttrib2dNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dNV));
11022 }
11023
11024 static INLINE void SET_VertexAttrib2dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
11025 SET_by_offset(disp, _gloffset_VertexAttrib2dNV, fn);
11026 }
11027
11028 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvNV)(GLuint, const GLdouble *);
11029 #define CALL_VertexAttrib2dvNV(disp, parameters) \
11030 (* GET_VertexAttrib2dvNV(disp)) parameters
11031 static INLINE _glptr_VertexAttrib2dvNV GET_VertexAttrib2dvNV(struct _glapi_table *disp) {
11032 return (_glptr_VertexAttrib2dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dvNV));
11033 }
11034
11035 static INLINE void SET_VertexAttrib2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
11036 SET_by_offset(disp, _gloffset_VertexAttrib2dvNV, fn);
11037 }
11038
11039 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fNV)(GLuint, GLfloat, GLfloat);
11040 #define CALL_VertexAttrib2fNV(disp, parameters) \
11041 (* GET_VertexAttrib2fNV(disp)) parameters
11042 static INLINE _glptr_VertexAttrib2fNV GET_VertexAttrib2fNV(struct _glapi_table *disp) {
11043 return (_glptr_VertexAttrib2fNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fNV));
11044 }
11045
11046 static INLINE void SET_VertexAttrib2fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
11047 SET_by_offset(disp, _gloffset_VertexAttrib2fNV, fn);
11048 }
11049
11050 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvNV)(GLuint, const GLfloat *);
11051 #define CALL_VertexAttrib2fvNV(disp, parameters) \
11052 (* GET_VertexAttrib2fvNV(disp)) parameters
11053 static INLINE _glptr_VertexAttrib2fvNV GET_VertexAttrib2fvNV(struct _glapi_table *disp) {
11054 return (_glptr_VertexAttrib2fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fvNV));
11055 }
11056
11057 static INLINE void SET_VertexAttrib2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
11058 SET_by_offset(disp, _gloffset_VertexAttrib2fvNV, fn);
11059 }
11060
11061 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sNV)(GLuint, GLshort, GLshort);
11062 #define CALL_VertexAttrib2sNV(disp, parameters) \
11063 (* GET_VertexAttrib2sNV(disp)) parameters
11064 static INLINE _glptr_VertexAttrib2sNV GET_VertexAttrib2sNV(struct _glapi_table *disp) {
11065 return (_glptr_VertexAttrib2sNV) (GET_by_offset(disp, _gloffset_VertexAttrib2sNV));
11066 }
11067
11068 static INLINE void SET_VertexAttrib2sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
11069 SET_by_offset(disp, _gloffset_VertexAttrib2sNV, fn);
11070 }
11071
11072 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svNV)(GLuint, const GLshort *);
11073 #define CALL_VertexAttrib2svNV(disp, parameters) \
11074 (* GET_VertexAttrib2svNV(disp)) parameters
11075 static INLINE _glptr_VertexAttrib2svNV GET_VertexAttrib2svNV(struct _glapi_table *disp) {
11076 return (_glptr_VertexAttrib2svNV) (GET_by_offset(disp, _gloffset_VertexAttrib2svNV));
11077 }
11078
11079 static INLINE void SET_VertexAttrib2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
11080 SET_by_offset(disp, _gloffset_VertexAttrib2svNV, fn);
11081 }
11082
11083 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dNV)(GLuint, GLdouble, GLdouble, GLdouble);
11084 #define CALL_VertexAttrib3dNV(disp, parameters) \
11085 (* GET_VertexAttrib3dNV(disp)) parameters
11086 static INLINE _glptr_VertexAttrib3dNV GET_VertexAttrib3dNV(struct _glapi_table *disp) {
11087 return (_glptr_VertexAttrib3dNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dNV));
11088 }
11089
11090 static INLINE void SET_VertexAttrib3dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
11091 SET_by_offset(disp, _gloffset_VertexAttrib3dNV, fn);
11092 }
11093
11094 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvNV)(GLuint, const GLdouble *);
11095 #define CALL_VertexAttrib3dvNV(disp, parameters) \
11096 (* GET_VertexAttrib3dvNV(disp)) parameters
11097 static INLINE _glptr_VertexAttrib3dvNV GET_VertexAttrib3dvNV(struct _glapi_table *disp) {
11098 return (_glptr_VertexAttrib3dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dvNV));
11099 }
11100
11101 static INLINE void SET_VertexAttrib3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
11102 SET_by_offset(disp, _gloffset_VertexAttrib3dvNV, fn);
11103 }
11104
11105 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fNV)(GLuint, GLfloat, GLfloat, GLfloat);
11106 #define CALL_VertexAttrib3fNV(disp, parameters) \
11107 (* GET_VertexAttrib3fNV(disp)) parameters
11108 static INLINE _glptr_VertexAttrib3fNV GET_VertexAttrib3fNV(struct _glapi_table *disp) {
11109 return (_glptr_VertexAttrib3fNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fNV));
11110 }
11111
11112 static INLINE void SET_VertexAttrib3fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
11113 SET_by_offset(disp, _gloffset_VertexAttrib3fNV, fn);
11114 }
11115
11116 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvNV)(GLuint, const GLfloat *);
11117 #define CALL_VertexAttrib3fvNV(disp, parameters) \
11118 (* GET_VertexAttrib3fvNV(disp)) parameters
11119 static INLINE _glptr_VertexAttrib3fvNV GET_VertexAttrib3fvNV(struct _glapi_table *disp) {
11120 return (_glptr_VertexAttrib3fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fvNV));
11121 }
11122
11123 static INLINE void SET_VertexAttrib3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
11124 SET_by_offset(disp, _gloffset_VertexAttrib3fvNV, fn);
11125 }
11126
11127 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sNV)(GLuint, GLshort, GLshort, GLshort);
11128 #define CALL_VertexAttrib3sNV(disp, parameters) \
11129 (* GET_VertexAttrib3sNV(disp)) parameters
11130 static INLINE _glptr_VertexAttrib3sNV GET_VertexAttrib3sNV(struct _glapi_table *disp) {
11131 return (_glptr_VertexAttrib3sNV) (GET_by_offset(disp, _gloffset_VertexAttrib3sNV));
11132 }
11133
11134 static INLINE void SET_VertexAttrib3sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
11135 SET_by_offset(disp, _gloffset_VertexAttrib3sNV, fn);
11136 }
11137
11138 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svNV)(GLuint, const GLshort *);
11139 #define CALL_VertexAttrib3svNV(disp, parameters) \
11140 (* GET_VertexAttrib3svNV(disp)) parameters
11141 static INLINE _glptr_VertexAttrib3svNV GET_VertexAttrib3svNV(struct _glapi_table *disp) {
11142 return (_glptr_VertexAttrib3svNV) (GET_by_offset(disp, _gloffset_VertexAttrib3svNV));
11143 }
11144
11145 static INLINE void SET_VertexAttrib3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
11146 SET_by_offset(disp, _gloffset_VertexAttrib3svNV, fn);
11147 }
11148
11149 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dNV)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
11150 #define CALL_VertexAttrib4dNV(disp, parameters) \
11151 (* GET_VertexAttrib4dNV(disp)) parameters
11152 static INLINE _glptr_VertexAttrib4dNV GET_VertexAttrib4dNV(struct _glapi_table *disp) {
11153 return (_glptr_VertexAttrib4dNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dNV));
11154 }
11155
11156 static INLINE void SET_VertexAttrib4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
11157 SET_by_offset(disp, _gloffset_VertexAttrib4dNV, fn);
11158 }
11159
11160 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvNV)(GLuint, const GLdouble *);
11161 #define CALL_VertexAttrib4dvNV(disp, parameters) \
11162 (* GET_VertexAttrib4dvNV(disp)) parameters
11163 static INLINE _glptr_VertexAttrib4dvNV GET_VertexAttrib4dvNV(struct _glapi_table *disp) {
11164 return (_glptr_VertexAttrib4dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dvNV));
11165 }
11166
11167 static INLINE void SET_VertexAttrib4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
11168 SET_by_offset(disp, _gloffset_VertexAttrib4dvNV, fn);
11169 }
11170
11171 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fNV)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
11172 #define CALL_VertexAttrib4fNV(disp, parameters) \
11173 (* GET_VertexAttrib4fNV(disp)) parameters
11174 static INLINE _glptr_VertexAttrib4fNV GET_VertexAttrib4fNV(struct _glapi_table *disp) {
11175 return (_glptr_VertexAttrib4fNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fNV));
11176 }
11177
11178 static INLINE void SET_VertexAttrib4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
11179 SET_by_offset(disp, _gloffset_VertexAttrib4fNV, fn);
11180 }
11181
11182 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvNV)(GLuint, const GLfloat *);
11183 #define CALL_VertexAttrib4fvNV(disp, parameters) \
11184 (* GET_VertexAttrib4fvNV(disp)) parameters
11185 static INLINE _glptr_VertexAttrib4fvNV GET_VertexAttrib4fvNV(struct _glapi_table *disp) {
11186 return (_glptr_VertexAttrib4fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fvNV));
11187 }
11188
11189 static INLINE void SET_VertexAttrib4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
11190 SET_by_offset(disp, _gloffset_VertexAttrib4fvNV, fn);
11191 }
11192
11193 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sNV)(GLuint, GLshort, GLshort, GLshort, GLshort);
11194 #define CALL_VertexAttrib4sNV(disp, parameters) \
11195 (* GET_VertexAttrib4sNV(disp)) parameters
11196 static INLINE _glptr_VertexAttrib4sNV GET_VertexAttrib4sNV(struct _glapi_table *disp) {
11197 return (_glptr_VertexAttrib4sNV) (GET_by_offset(disp, _gloffset_VertexAttrib4sNV));
11198 }
11199
11200 static INLINE void SET_VertexAttrib4sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
11201 SET_by_offset(disp, _gloffset_VertexAttrib4sNV, fn);
11202 }
11203
11204 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svNV)(GLuint, const GLshort *);
11205 #define CALL_VertexAttrib4svNV(disp, parameters) \
11206 (* GET_VertexAttrib4svNV(disp)) parameters
11207 static INLINE _glptr_VertexAttrib4svNV GET_VertexAttrib4svNV(struct _glapi_table *disp) {
11208 return (_glptr_VertexAttrib4svNV) (GET_by_offset(disp, _gloffset_VertexAttrib4svNV));
11209 }
11210
11211 static INLINE void SET_VertexAttrib4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
11212 SET_by_offset(disp, _gloffset_VertexAttrib4svNV, fn);
11213 }
11214
11215 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubNV)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
11216 #define CALL_VertexAttrib4ubNV(disp, parameters) \
11217 (* GET_VertexAttrib4ubNV(disp)) parameters
11218 static INLINE _glptr_VertexAttrib4ubNV GET_VertexAttrib4ubNV(struct _glapi_table *disp) {
11219 return (_glptr_VertexAttrib4ubNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubNV));
11220 }
11221
11222 static INLINE void SET_VertexAttrib4ubNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
11223 SET_by_offset(disp, _gloffset_VertexAttrib4ubNV, fn);
11224 }
11225
11226 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvNV)(GLuint, const GLubyte *);
11227 #define CALL_VertexAttrib4ubvNV(disp, parameters) \
11228 (* GET_VertexAttrib4ubvNV(disp)) parameters
11229 static INLINE _glptr_VertexAttrib4ubvNV GET_VertexAttrib4ubvNV(struct _glapi_table *disp) {
11230 return (_glptr_VertexAttrib4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvNV));
11231 }
11232
11233 static INLINE void SET_VertexAttrib4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
11234 SET_by_offset(disp, _gloffset_VertexAttrib4ubvNV, fn);
11235 }
11236
11237 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerNV)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
11238 #define CALL_VertexAttribPointerNV(disp, parameters) \
11239 (* GET_VertexAttribPointerNV(disp)) parameters
11240 static INLINE _glptr_VertexAttribPointerNV GET_VertexAttribPointerNV(struct _glapi_table *disp) {
11241 return (_glptr_VertexAttribPointerNV) (GET_by_offset(disp, _gloffset_VertexAttribPointerNV));
11242 }
11243
11244 static INLINE void SET_VertexAttribPointerNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
11245 SET_by_offset(disp, _gloffset_VertexAttribPointerNV, fn);
11246 }
11247
11248 typedef void (GLAPIENTRYP _glptr_VertexAttribs1dvNV)(GLuint, GLsizei, const GLdouble *);
11249 #define CALL_VertexAttribs1dvNV(disp, parameters) \
11250 (* GET_VertexAttribs1dvNV(disp)) parameters
11251 static INLINE _glptr_VertexAttribs1dvNV GET_VertexAttribs1dvNV(struct _glapi_table *disp) {
11252 return (_glptr_VertexAttribs1dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1dvNV));
11253 }
11254
11255 static INLINE void SET_VertexAttribs1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
11256 SET_by_offset(disp, _gloffset_VertexAttribs1dvNV, fn);
11257 }
11258
11259 typedef void (GLAPIENTRYP _glptr_VertexAttribs1fvNV)(GLuint, GLsizei, const GLfloat *);
11260 #define CALL_VertexAttribs1fvNV(disp, parameters) \
11261 (* GET_VertexAttribs1fvNV(disp)) parameters
11262 static INLINE _glptr_VertexAttribs1fvNV GET_VertexAttribs1fvNV(struct _glapi_table *disp) {
11263 return (_glptr_VertexAttribs1fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1fvNV));
11264 }
11265
11266 static INLINE void SET_VertexAttribs1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
11267 SET_by_offset(disp, _gloffset_VertexAttribs1fvNV, fn);
11268 }
11269
11270 typedef void (GLAPIENTRYP _glptr_VertexAttribs1svNV)(GLuint, GLsizei, const GLshort *);
11271 #define CALL_VertexAttribs1svNV(disp, parameters) \
11272 (* GET_VertexAttribs1svNV(disp)) parameters
11273 static INLINE _glptr_VertexAttribs1svNV GET_VertexAttribs1svNV(struct _glapi_table *disp) {
11274 return (_glptr_VertexAttribs1svNV) (GET_by_offset(disp, _gloffset_VertexAttribs1svNV));
11275 }
11276
11277 static INLINE void SET_VertexAttribs1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
11278 SET_by_offset(disp, _gloffset_VertexAttribs1svNV, fn);
11279 }
11280
11281 typedef void (GLAPIENTRYP _glptr_VertexAttribs2dvNV)(GLuint, GLsizei, const GLdouble *);
11282 #define CALL_VertexAttribs2dvNV(disp, parameters) \
11283 (* GET_VertexAttribs2dvNV(disp)) parameters
11284 static INLINE _glptr_VertexAttribs2dvNV GET_VertexAttribs2dvNV(struct _glapi_table *disp) {
11285 return (_glptr_VertexAttribs2dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2dvNV));
11286 }
11287
11288 static INLINE void SET_VertexAttribs2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
11289 SET_by_offset(disp, _gloffset_VertexAttribs2dvNV, fn);
11290 }
11291
11292 typedef void (GLAPIENTRYP _glptr_VertexAttribs2fvNV)(GLuint, GLsizei, const GLfloat *);
11293 #define CALL_VertexAttribs2fvNV(disp, parameters) \
11294 (* GET_VertexAttribs2fvNV(disp)) parameters
11295 static INLINE _glptr_VertexAttribs2fvNV GET_VertexAttribs2fvNV(struct _glapi_table *disp) {
11296 return (_glptr_VertexAttribs2fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2fvNV));
11297 }
11298
11299 static INLINE void SET_VertexAttribs2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
11300 SET_by_offset(disp, _gloffset_VertexAttribs2fvNV, fn);
11301 }
11302
11303 typedef void (GLAPIENTRYP _glptr_VertexAttribs2svNV)(GLuint, GLsizei, const GLshort *);
11304 #define CALL_VertexAttribs2svNV(disp, parameters) \
11305 (* GET_VertexAttribs2svNV(disp)) parameters
11306 static INLINE _glptr_VertexAttribs2svNV GET_VertexAttribs2svNV(struct _glapi_table *disp) {
11307 return (_glptr_VertexAttribs2svNV) (GET_by_offset(disp, _gloffset_VertexAttribs2svNV));
11308 }
11309
11310 static INLINE void SET_VertexAttribs2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
11311 SET_by_offset(disp, _gloffset_VertexAttribs2svNV, fn);
11312 }
11313
11314 typedef void (GLAPIENTRYP _glptr_VertexAttribs3dvNV)(GLuint, GLsizei, const GLdouble *);
11315 #define CALL_VertexAttribs3dvNV(disp, parameters) \
11316 (* GET_VertexAttribs3dvNV(disp)) parameters
11317 static INLINE _glptr_VertexAttribs3dvNV GET_VertexAttribs3dvNV(struct _glapi_table *disp) {
11318 return (_glptr_VertexAttribs3dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3dvNV));
11319 }
11320
11321 static INLINE void SET_VertexAttribs3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
11322 SET_by_offset(disp, _gloffset_VertexAttribs3dvNV, fn);
11323 }
11324
11325 typedef void (GLAPIENTRYP _glptr_VertexAttribs3fvNV)(GLuint, GLsizei, const GLfloat *);
11326 #define CALL_VertexAttribs3fvNV(disp, parameters) \
11327 (* GET_VertexAttribs3fvNV(disp)) parameters
11328 static INLINE _glptr_VertexAttribs3fvNV GET_VertexAttribs3fvNV(struct _glapi_table *disp) {
11329 return (_glptr_VertexAttribs3fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3fvNV));
11330 }
11331
11332 static INLINE void SET_VertexAttribs3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
11333 SET_by_offset(disp, _gloffset_VertexAttribs3fvNV, fn);
11334 }
11335
11336 typedef void (GLAPIENTRYP _glptr_VertexAttribs3svNV)(GLuint, GLsizei, const GLshort *);
11337 #define CALL_VertexAttribs3svNV(disp, parameters) \
11338 (* GET_VertexAttribs3svNV(disp)) parameters
11339 static INLINE _glptr_VertexAttribs3svNV GET_VertexAttribs3svNV(struct _glapi_table *disp) {
11340 return (_glptr_VertexAttribs3svNV) (GET_by_offset(disp, _gloffset_VertexAttribs3svNV));
11341 }
11342
11343 static INLINE void SET_VertexAttribs3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
11344 SET_by_offset(disp, _gloffset_VertexAttribs3svNV, fn);
11345 }
11346
11347 typedef void (GLAPIENTRYP _glptr_VertexAttribs4dvNV)(GLuint, GLsizei, const GLdouble *);
11348 #define CALL_VertexAttribs4dvNV(disp, parameters) \
11349 (* GET_VertexAttribs4dvNV(disp)) parameters
11350 static INLINE _glptr_VertexAttribs4dvNV GET_VertexAttribs4dvNV(struct _glapi_table *disp) {
11351 return (_glptr_VertexAttribs4dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4dvNV));
11352 }
11353
11354 static INLINE void SET_VertexAttribs4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
11355 SET_by_offset(disp, _gloffset_VertexAttribs4dvNV, fn);
11356 }
11357
11358 typedef void (GLAPIENTRYP _glptr_VertexAttribs4fvNV)(GLuint, GLsizei, const GLfloat *);
11359 #define CALL_VertexAttribs4fvNV(disp, parameters) \
11360 (* GET_VertexAttribs4fvNV(disp)) parameters
11361 static INLINE _glptr_VertexAttribs4fvNV GET_VertexAttribs4fvNV(struct _glapi_table *disp) {
11362 return (_glptr_VertexAttribs4fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4fvNV));
11363 }
11364
11365 static INLINE void SET_VertexAttribs4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
11366 SET_by_offset(disp, _gloffset_VertexAttribs4fvNV, fn);
11367 }
11368
11369 typedef void (GLAPIENTRYP _glptr_VertexAttribs4svNV)(GLuint, GLsizei, const GLshort *);
11370 #define CALL_VertexAttribs4svNV(disp, parameters) \
11371 (* GET_VertexAttribs4svNV(disp)) parameters
11372 static INLINE _glptr_VertexAttribs4svNV GET_VertexAttribs4svNV(struct _glapi_table *disp) {
11373 return (_glptr_VertexAttribs4svNV) (GET_by_offset(disp, _gloffset_VertexAttribs4svNV));
11374 }
11375
11376 static INLINE void SET_VertexAttribs4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
11377 SET_by_offset(disp, _gloffset_VertexAttribs4svNV, fn);
11378 }
11379
11380 typedef void (GLAPIENTRYP _glptr_VertexAttribs4ubvNV)(GLuint, GLsizei, const GLubyte *);
11381 #define CALL_VertexAttribs4ubvNV(disp, parameters) \
11382 (* GET_VertexAttribs4ubvNV(disp)) parameters
11383 static INLINE _glptr_VertexAttribs4ubvNV GET_VertexAttribs4ubvNV(struct _glapi_table *disp) {
11384 return (_glptr_VertexAttribs4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4ubvNV));
11385 }
11386
11387 static INLINE void SET_VertexAttribs4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *)) {
11388 SET_by_offset(disp, _gloffset_VertexAttribs4ubvNV, fn);
11389 }
11390
11391 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterfvATI)(GLenum, GLfloat *);
11392 #define CALL_GetTexBumpParameterfvATI(disp, parameters) \
11393 (* GET_GetTexBumpParameterfvATI(disp)) parameters
11394 static INLINE _glptr_GetTexBumpParameterfvATI GET_GetTexBumpParameterfvATI(struct _glapi_table *disp) {
11395 return (_glptr_GetTexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI));
11396 }
11397
11398 static INLINE void SET_GetTexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
11399 SET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI, fn);
11400 }
11401
11402 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterivATI)(GLenum, GLint *);
11403 #define CALL_GetTexBumpParameterivATI(disp, parameters) \
11404 (* GET_GetTexBumpParameterivATI(disp)) parameters
11405 static INLINE _glptr_GetTexBumpParameterivATI GET_GetTexBumpParameterivATI(struct _glapi_table *disp) {
11406 return (_glptr_GetTexBumpParameterivATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterivATI));
11407 }
11408
11409 static INLINE void SET_GetTexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
11410 SET_by_offset(disp, _gloffset_GetTexBumpParameterivATI, fn);
11411 }
11412
11413 typedef void (GLAPIENTRYP _glptr_TexBumpParameterfvATI)(GLenum, const GLfloat *);
11414 #define CALL_TexBumpParameterfvATI(disp, parameters) \
11415 (* GET_TexBumpParameterfvATI(disp)) parameters
11416 static INLINE _glptr_TexBumpParameterfvATI GET_TexBumpParameterfvATI(struct _glapi_table *disp) {
11417 return (_glptr_TexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_TexBumpParameterfvATI));
11418 }
11419
11420 static INLINE void SET_TexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
11421 SET_by_offset(disp, _gloffset_TexBumpParameterfvATI, fn);
11422 }
11423
11424 typedef void (GLAPIENTRYP _glptr_TexBumpParameterivATI)(GLenum, const GLint *);
11425 #define CALL_TexBumpParameterivATI(disp, parameters) \
11426 (* GET_TexBumpParameterivATI(disp)) parameters
11427 static INLINE _glptr_TexBumpParameterivATI GET_TexBumpParameterivATI(struct _glapi_table *disp) {
11428 return (_glptr_TexBumpParameterivATI) (GET_by_offset(disp, _gloffset_TexBumpParameterivATI));
11429 }
11430
11431 static INLINE void SET_TexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
11432 SET_by_offset(disp, _gloffset_TexBumpParameterivATI, fn);
11433 }
11434
11435 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp1ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint);
11436 #define CALL_AlphaFragmentOp1ATI(disp, parameters) \
11437 (* GET_AlphaFragmentOp1ATI(disp)) parameters
11438 static INLINE _glptr_AlphaFragmentOp1ATI GET_AlphaFragmentOp1ATI(struct _glapi_table *disp) {
11439 return (_glptr_AlphaFragmentOp1ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp1ATI));
11440 }
11441
11442 static INLINE void SET_AlphaFragmentOp1ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint)) {
11443 SET_by_offset(disp, _gloffset_AlphaFragmentOp1ATI, fn);
11444 }
11445
11446 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp2ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
11447 #define CALL_AlphaFragmentOp2ATI(disp, parameters) \
11448 (* GET_AlphaFragmentOp2ATI(disp)) parameters
11449 static INLINE _glptr_AlphaFragmentOp2ATI GET_AlphaFragmentOp2ATI(struct _glapi_table *disp) {
11450 return (_glptr_AlphaFragmentOp2ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp2ATI));
11451 }
11452
11453 static INLINE void SET_AlphaFragmentOp2ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
11454 SET_by_offset(disp, _gloffset_AlphaFragmentOp2ATI, fn);
11455 }
11456
11457 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp3ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
11458 #define CALL_AlphaFragmentOp3ATI(disp, parameters) \
11459 (* GET_AlphaFragmentOp3ATI(disp)) parameters
11460 static INLINE _glptr_AlphaFragmentOp3ATI GET_AlphaFragmentOp3ATI(struct _glapi_table *disp) {
11461 return (_glptr_AlphaFragmentOp3ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp3ATI));
11462 }
11463
11464 static INLINE void SET_AlphaFragmentOp3ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
11465 SET_by_offset(disp, _gloffset_AlphaFragmentOp3ATI, fn);
11466 }
11467
11468 typedef void (GLAPIENTRYP _glptr_BeginFragmentShaderATI)(void);
11469 #define CALL_BeginFragmentShaderATI(disp, parameters) \
11470 (* GET_BeginFragmentShaderATI(disp)) parameters
11471 static INLINE _glptr_BeginFragmentShaderATI GET_BeginFragmentShaderATI(struct _glapi_table *disp) {
11472 return (_glptr_BeginFragmentShaderATI) (GET_by_offset(disp, _gloffset_BeginFragmentShaderATI));
11473 }
11474
11475 static INLINE void SET_BeginFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
11476 SET_by_offset(disp, _gloffset_BeginFragmentShaderATI, fn);
11477 }
11478
11479 typedef void (GLAPIENTRYP _glptr_BindFragmentShaderATI)(GLuint);
11480 #define CALL_BindFragmentShaderATI(disp, parameters) \
11481 (* GET_BindFragmentShaderATI(disp)) parameters
11482 static INLINE _glptr_BindFragmentShaderATI GET_BindFragmentShaderATI(struct _glapi_table *disp) {
11483 return (_glptr_BindFragmentShaderATI) (GET_by_offset(disp, _gloffset_BindFragmentShaderATI));
11484 }
11485
11486 static INLINE void SET_BindFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
11487 SET_by_offset(disp, _gloffset_BindFragmentShaderATI, fn);
11488 }
11489
11490 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp1ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
11491 #define CALL_ColorFragmentOp1ATI(disp, parameters) \
11492 (* GET_ColorFragmentOp1ATI(disp)) parameters
11493 static INLINE _glptr_ColorFragmentOp1ATI GET_ColorFragmentOp1ATI(struct _glapi_table *disp) {
11494 return (_glptr_ColorFragmentOp1ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp1ATI));
11495 }
11496
11497 static INLINE void SET_ColorFragmentOp1ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
11498 SET_by_offset(disp, _gloffset_ColorFragmentOp1ATI, fn);
11499 }
11500
11501 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp2ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
11502 #define CALL_ColorFragmentOp2ATI(disp, parameters) \
11503 (* GET_ColorFragmentOp2ATI(disp)) parameters
11504 static INLINE _glptr_ColorFragmentOp2ATI GET_ColorFragmentOp2ATI(struct _glapi_table *disp) {
11505 return (_glptr_ColorFragmentOp2ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp2ATI));
11506 }
11507
11508 static INLINE void SET_ColorFragmentOp2ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
11509 SET_by_offset(disp, _gloffset_ColorFragmentOp2ATI, fn);
11510 }
11511
11512 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp3ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
11513 #define CALL_ColorFragmentOp3ATI(disp, parameters) \
11514 (* GET_ColorFragmentOp3ATI(disp)) parameters
11515 static INLINE _glptr_ColorFragmentOp3ATI GET_ColorFragmentOp3ATI(struct _glapi_table *disp) {
11516 return (_glptr_ColorFragmentOp3ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp3ATI));
11517 }
11518
11519 static INLINE void SET_ColorFragmentOp3ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
11520 SET_by_offset(disp, _gloffset_ColorFragmentOp3ATI, fn);
11521 }
11522
11523 typedef void (GLAPIENTRYP _glptr_DeleteFragmentShaderATI)(GLuint);
11524 #define CALL_DeleteFragmentShaderATI(disp, parameters) \
11525 (* GET_DeleteFragmentShaderATI(disp)) parameters
11526 static INLINE _glptr_DeleteFragmentShaderATI GET_DeleteFragmentShaderATI(struct _glapi_table *disp) {
11527 return (_glptr_DeleteFragmentShaderATI) (GET_by_offset(disp, _gloffset_DeleteFragmentShaderATI));
11528 }
11529
11530 static INLINE void SET_DeleteFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
11531 SET_by_offset(disp, _gloffset_DeleteFragmentShaderATI, fn);
11532 }
11533
11534 typedef void (GLAPIENTRYP _glptr_EndFragmentShaderATI)(void);
11535 #define CALL_EndFragmentShaderATI(disp, parameters) \
11536 (* GET_EndFragmentShaderATI(disp)) parameters
11537 static INLINE _glptr_EndFragmentShaderATI GET_EndFragmentShaderATI(struct _glapi_table *disp) {
11538 return (_glptr_EndFragmentShaderATI) (GET_by_offset(disp, _gloffset_EndFragmentShaderATI));
11539 }
11540
11541 static INLINE void SET_EndFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
11542 SET_by_offset(disp, _gloffset_EndFragmentShaderATI, fn);
11543 }
11544
11545 typedef GLuint (GLAPIENTRYP _glptr_GenFragmentShadersATI)(GLuint);
11546 #define CALL_GenFragmentShadersATI(disp, parameters) \
11547 (* GET_GenFragmentShadersATI(disp)) parameters
11548 static INLINE _glptr_GenFragmentShadersATI GET_GenFragmentShadersATI(struct _glapi_table *disp) {
11549 return (_glptr_GenFragmentShadersATI) (GET_by_offset(disp, _gloffset_GenFragmentShadersATI));
11550 }
11551
11552 static INLINE void SET_GenFragmentShadersATI(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint)) {
11553 SET_by_offset(disp, _gloffset_GenFragmentShadersATI, fn);
11554 }
11555
11556 typedef void (GLAPIENTRYP _glptr_PassTexCoordATI)(GLuint, GLuint, GLenum);
11557 #define CALL_PassTexCoordATI(disp, parameters) \
11558 (* GET_PassTexCoordATI(disp)) parameters
11559 static INLINE _glptr_PassTexCoordATI GET_PassTexCoordATI(struct _glapi_table *disp) {
11560 return (_glptr_PassTexCoordATI) (GET_by_offset(disp, _gloffset_PassTexCoordATI));
11561 }
11562
11563 static INLINE void SET_PassTexCoordATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum)) {
11564 SET_by_offset(disp, _gloffset_PassTexCoordATI, fn);
11565 }
11566
11567 typedef void (GLAPIENTRYP _glptr_SampleMapATI)(GLuint, GLuint, GLenum);
11568 #define CALL_SampleMapATI(disp, parameters) \
11569 (* GET_SampleMapATI(disp)) parameters
11570 static INLINE _glptr_SampleMapATI GET_SampleMapATI(struct _glapi_table *disp) {
11571 return (_glptr_SampleMapATI) (GET_by_offset(disp, _gloffset_SampleMapATI));
11572 }
11573
11574 static INLINE void SET_SampleMapATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum)) {
11575 SET_by_offset(disp, _gloffset_SampleMapATI, fn);
11576 }
11577
11578 typedef void (GLAPIENTRYP _glptr_SetFragmentShaderConstantATI)(GLuint, const GLfloat *);
11579 #define CALL_SetFragmentShaderConstantATI(disp, parameters) \
11580 (* GET_SetFragmentShaderConstantATI(disp)) parameters
11581 static INLINE _glptr_SetFragmentShaderConstantATI GET_SetFragmentShaderConstantATI(struct _glapi_table *disp) {
11582 return (_glptr_SetFragmentShaderConstantATI) (GET_by_offset(disp, _gloffset_SetFragmentShaderConstantATI));
11583 }
11584
11585 static INLINE void SET_SetFragmentShaderConstantATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
11586 SET_by_offset(disp, _gloffset_SetFragmentShaderConstantATI, fn);
11587 }
11588
11589 typedef void (GLAPIENTRYP _glptr_PointParameteriNV)(GLenum, GLint);
11590 #define CALL_PointParameteriNV(disp, parameters) \
11591 (* GET_PointParameteriNV(disp)) parameters
11592 static INLINE _glptr_PointParameteriNV GET_PointParameteriNV(struct _glapi_table *disp) {
11593 return (_glptr_PointParameteriNV) (GET_by_offset(disp, _gloffset_PointParameteriNV));
11594 }
11595
11596 static INLINE void SET_PointParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
11597 SET_by_offset(disp, _gloffset_PointParameteriNV, fn);
11598 }
11599
11600 typedef void (GLAPIENTRYP _glptr_PointParameterivNV)(GLenum, const GLint *);
11601 #define CALL_PointParameterivNV(disp, parameters) \
11602 (* GET_PointParameterivNV(disp)) parameters
11603 static INLINE _glptr_PointParameterivNV GET_PointParameterivNV(struct _glapi_table *disp) {
11604 return (_glptr_PointParameterivNV) (GET_by_offset(disp, _gloffset_PointParameterivNV));
11605 }
11606
11607 static INLINE void SET_PointParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
11608 SET_by_offset(disp, _gloffset_PointParameterivNV, fn);
11609 }
11610
11611 typedef void (GLAPIENTRYP _glptr_ActiveStencilFaceEXT)(GLenum);
11612 #define CALL_ActiveStencilFaceEXT(disp, parameters) \
11613 (* GET_ActiveStencilFaceEXT(disp)) parameters
11614 static INLINE _glptr_ActiveStencilFaceEXT GET_ActiveStencilFaceEXT(struct _glapi_table *disp) {
11615 return (_glptr_ActiveStencilFaceEXT) (GET_by_offset(disp, _gloffset_ActiveStencilFaceEXT));
11616 }
11617
11618 static INLINE void SET_ActiveStencilFaceEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
11619 SET_by_offset(disp, _gloffset_ActiveStencilFaceEXT, fn);
11620 }
11621
11622 typedef void (GLAPIENTRYP _glptr_BindVertexArrayAPPLE)(GLuint);
11623 #define CALL_BindVertexArrayAPPLE(disp, parameters) \
11624 (* GET_BindVertexArrayAPPLE(disp)) parameters
11625 static INLINE _glptr_BindVertexArrayAPPLE GET_BindVertexArrayAPPLE(struct _glapi_table *disp) {
11626 return (_glptr_BindVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_BindVertexArrayAPPLE));
11627 }
11628
11629 static INLINE void SET_BindVertexArrayAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
11630 SET_by_offset(disp, _gloffset_BindVertexArrayAPPLE, fn);
11631 }
11632
11633 typedef void (GLAPIENTRYP _glptr_DeleteVertexArraysAPPLE)(GLsizei, const GLuint *);
11634 #define CALL_DeleteVertexArraysAPPLE(disp, parameters) \
11635 (* GET_DeleteVertexArraysAPPLE(disp)) parameters
11636 static INLINE _glptr_DeleteVertexArraysAPPLE GET_DeleteVertexArraysAPPLE(struct _glapi_table *disp) {
11637 return (_glptr_DeleteVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE));
11638 }
11639
11640 static INLINE void SET_DeleteVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
11641 SET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE, fn);
11642 }
11643
11644 typedef void (GLAPIENTRYP _glptr_GenVertexArraysAPPLE)(GLsizei, GLuint *);
11645 #define CALL_GenVertexArraysAPPLE(disp, parameters) \
11646 (* GET_GenVertexArraysAPPLE(disp)) parameters
11647 static INLINE _glptr_GenVertexArraysAPPLE GET_GenVertexArraysAPPLE(struct _glapi_table *disp) {
11648 return (_glptr_GenVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_GenVertexArraysAPPLE));
11649 }
11650
11651 static INLINE void SET_GenVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
11652 SET_by_offset(disp, _gloffset_GenVertexArraysAPPLE, fn);
11653 }
11654
11655 typedef GLboolean (GLAPIENTRYP _glptr_IsVertexArrayAPPLE)(GLuint);
11656 #define CALL_IsVertexArrayAPPLE(disp, parameters) \
11657 (* GET_IsVertexArrayAPPLE(disp)) parameters
11658 static INLINE _glptr_IsVertexArrayAPPLE GET_IsVertexArrayAPPLE(struct _glapi_table *disp) {
11659 return (_glptr_IsVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_IsVertexArrayAPPLE));
11660 }
11661
11662 static INLINE void SET_IsVertexArrayAPPLE(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
11663 SET_by_offset(disp, _gloffset_IsVertexArrayAPPLE, fn);
11664 }
11665
11666 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterdvNV)(GLuint, GLsizei, const GLubyte *, GLdouble *);
11667 #define CALL_GetProgramNamedParameterdvNV(disp, parameters) \
11668 (* GET_GetProgramNamedParameterdvNV(disp)) parameters
11669 static INLINE _glptr_GetProgramNamedParameterdvNV GET_GetProgramNamedParameterdvNV(struct _glapi_table *disp) {
11670 return (_glptr_GetProgramNamedParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV));
11671 }
11672
11673 static INLINE void SET_GetProgramNamedParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble *)) {
11674 SET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV, fn);
11675 }
11676
11677 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterfvNV)(GLuint, GLsizei, const GLubyte *, GLfloat *);
11678 #define CALL_GetProgramNamedParameterfvNV(disp, parameters) \
11679 (* GET_GetProgramNamedParameterfvNV(disp)) parameters
11680 static INLINE _glptr_GetProgramNamedParameterfvNV GET_GetProgramNamedParameterfvNV(struct _glapi_table *disp) {
11681 return (_glptr_GetProgramNamedParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV));
11682 }
11683
11684 static INLINE void SET_GetProgramNamedParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat *)) {
11685 SET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV, fn);
11686 }
11687
11688 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dNV)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble);
11689 #define CALL_ProgramNamedParameter4dNV(disp, parameters) \
11690 (* GET_ProgramNamedParameter4dNV(disp)) parameters
11691 static INLINE _glptr_ProgramNamedParameter4dNV GET_ProgramNamedParameter4dNV(struct _glapi_table *disp) {
11692 return (_glptr_ProgramNamedParameter4dNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV));
11693 }
11694
11695 static INLINE void SET_ProgramNamedParameter4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble)) {
11696 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV, fn);
11697 }
11698
11699 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dvNV)(GLuint, GLsizei, const GLubyte *, const GLdouble *);
11700 #define CALL_ProgramNamedParameter4dvNV(disp, parameters) \
11701 (* GET_ProgramNamedParameter4dvNV(disp)) parameters
11702 static INLINE _glptr_ProgramNamedParameter4dvNV GET_ProgramNamedParameter4dvNV(struct _glapi_table *disp) {
11703 return (_glptr_ProgramNamedParameter4dvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV));
11704 }
11705
11706 static INLINE void SET_ProgramNamedParameter4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLdouble *)) {
11707 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV, fn);
11708 }
11709
11710 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fNV)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat);
11711 #define CALL_ProgramNamedParameter4fNV(disp, parameters) \
11712 (* GET_ProgramNamedParameter4fNV(disp)) parameters
11713 static INLINE _glptr_ProgramNamedParameter4fNV GET_ProgramNamedParameter4fNV(struct _glapi_table *disp) {
11714 return (_glptr_ProgramNamedParameter4fNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV));
11715 }
11716
11717 static INLINE void SET_ProgramNamedParameter4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat)) {
11718 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV, fn);
11719 }
11720
11721 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fvNV)(GLuint, GLsizei, const GLubyte *, const GLfloat *);
11722 #define CALL_ProgramNamedParameter4fvNV(disp, parameters) \
11723 (* GET_ProgramNamedParameter4fvNV(disp)) parameters
11724 static INLINE _glptr_ProgramNamedParameter4fvNV GET_ProgramNamedParameter4fvNV(struct _glapi_table *disp) {
11725 return (_glptr_ProgramNamedParameter4fvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV));
11726 }
11727
11728 static INLINE void SET_ProgramNamedParameter4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLfloat *)) {
11729 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV, fn);
11730 }
11731
11732 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartIndexNV)(GLuint);
11733 #define CALL_PrimitiveRestartIndexNV(disp, parameters) \
11734 (* GET_PrimitiveRestartIndexNV(disp)) parameters
11735 static INLINE _glptr_PrimitiveRestartIndexNV GET_PrimitiveRestartIndexNV(struct _glapi_table *disp) {
11736 return (_glptr_PrimitiveRestartIndexNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartIndexNV));
11737 }
11738
11739 static INLINE void SET_PrimitiveRestartIndexNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
11740 SET_by_offset(disp, _gloffset_PrimitiveRestartIndexNV, fn);
11741 }
11742
11743 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartNV)(void);
11744 #define CALL_PrimitiveRestartNV(disp, parameters) \
11745 (* GET_PrimitiveRestartNV(disp)) parameters
11746 static INLINE _glptr_PrimitiveRestartNV GET_PrimitiveRestartNV(struct _glapi_table *disp) {
11747 return (_glptr_PrimitiveRestartNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartNV));
11748 }
11749
11750 static INLINE void SET_PrimitiveRestartNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
11751 SET_by_offset(disp, _gloffset_PrimitiveRestartNV, fn);
11752 }
11753
11754 typedef void (GLAPIENTRYP _glptr_DepthBoundsEXT)(GLclampd, GLclampd);
11755 #define CALL_DepthBoundsEXT(disp, parameters) \
11756 (* GET_DepthBoundsEXT(disp)) parameters
11757 static INLINE _glptr_DepthBoundsEXT GET_DepthBoundsEXT(struct _glapi_table *disp) {
11758 return (_glptr_DepthBoundsEXT) (GET_by_offset(disp, _gloffset_DepthBoundsEXT));
11759 }
11760
11761 static INLINE void SET_DepthBoundsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
11762 SET_by_offset(disp, _gloffset_DepthBoundsEXT, fn);
11763 }
11764
11765 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateEXT)(GLenum, GLenum);
11766 #define CALL_BlendEquationSeparateEXT(disp, parameters) \
11767 (* GET_BlendEquationSeparateEXT(disp)) parameters
11768 static INLINE _glptr_BlendEquationSeparateEXT GET_BlendEquationSeparateEXT(struct _glapi_table *disp) {
11769 return (_glptr_BlendEquationSeparateEXT) (GET_by_offset(disp, _gloffset_BlendEquationSeparateEXT));
11770 }
11771
11772 static INLINE void SET_BlendEquationSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
11773 SET_by_offset(disp, _gloffset_BlendEquationSeparateEXT, fn);
11774 }
11775
11776 typedef void (GLAPIENTRYP _glptr_BindFramebufferEXT)(GLenum, GLuint);
11777 #define CALL_BindFramebufferEXT(disp, parameters) \
11778 (* GET_BindFramebufferEXT(disp)) parameters
11779 static INLINE _glptr_BindFramebufferEXT GET_BindFramebufferEXT(struct _glapi_table *disp) {
11780 return (_glptr_BindFramebufferEXT) (GET_by_offset(disp, _gloffset_BindFramebufferEXT));
11781 }
11782
11783 static INLINE void SET_BindFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
11784 SET_by_offset(disp, _gloffset_BindFramebufferEXT, fn);
11785 }
11786
11787 typedef void (GLAPIENTRYP _glptr_BindRenderbufferEXT)(GLenum, GLuint);
11788 #define CALL_BindRenderbufferEXT(disp, parameters) \
11789 (* GET_BindRenderbufferEXT(disp)) parameters
11790 static INLINE _glptr_BindRenderbufferEXT GET_BindRenderbufferEXT(struct _glapi_table *disp) {
11791 return (_glptr_BindRenderbufferEXT) (GET_by_offset(disp, _gloffset_BindRenderbufferEXT));
11792 }
11793
11794 static INLINE void SET_BindRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
11795 SET_by_offset(disp, _gloffset_BindRenderbufferEXT, fn);
11796 }
11797
11798 typedef GLenum (GLAPIENTRYP _glptr_CheckFramebufferStatusEXT)(GLenum);
11799 #define CALL_CheckFramebufferStatusEXT(disp, parameters) \
11800 (* GET_CheckFramebufferStatusEXT(disp)) parameters
11801 static INLINE _glptr_CheckFramebufferStatusEXT GET_CheckFramebufferStatusEXT(struct _glapi_table *disp) {
11802 return (_glptr_CheckFramebufferStatusEXT) (GET_by_offset(disp, _gloffset_CheckFramebufferStatusEXT));
11803 }
11804
11805 static INLINE void SET_CheckFramebufferStatusEXT(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum)) {
11806 SET_by_offset(disp, _gloffset_CheckFramebufferStatusEXT, fn);
11807 }
11808
11809 typedef void (GLAPIENTRYP _glptr_DeleteFramebuffersEXT)(GLsizei, const GLuint *);
11810 #define CALL_DeleteFramebuffersEXT(disp, parameters) \
11811 (* GET_DeleteFramebuffersEXT(disp)) parameters
11812 static INLINE _glptr_DeleteFramebuffersEXT GET_DeleteFramebuffersEXT(struct _glapi_table *disp) {
11813 return (_glptr_DeleteFramebuffersEXT) (GET_by_offset(disp, _gloffset_DeleteFramebuffersEXT));
11814 }
11815
11816 static INLINE void SET_DeleteFramebuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
11817 SET_by_offset(disp, _gloffset_DeleteFramebuffersEXT, fn);
11818 }
11819
11820 typedef void (GLAPIENTRYP _glptr_DeleteRenderbuffersEXT)(GLsizei, const GLuint *);
11821 #define CALL_DeleteRenderbuffersEXT(disp, parameters) \
11822 (* GET_DeleteRenderbuffersEXT(disp)) parameters
11823 static INLINE _glptr_DeleteRenderbuffersEXT GET_DeleteRenderbuffersEXT(struct _glapi_table *disp) {
11824 return (_glptr_DeleteRenderbuffersEXT) (GET_by_offset(disp, _gloffset_DeleteRenderbuffersEXT));
11825 }
11826
11827 static INLINE void SET_DeleteRenderbuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
11828 SET_by_offset(disp, _gloffset_DeleteRenderbuffersEXT, fn);
11829 }
11830
11831 typedef void (GLAPIENTRYP _glptr_FramebufferRenderbufferEXT)(GLenum, GLenum, GLenum, GLuint);
11832 #define CALL_FramebufferRenderbufferEXT(disp, parameters) \
11833 (* GET_FramebufferRenderbufferEXT(disp)) parameters
11834 static INLINE _glptr_FramebufferRenderbufferEXT GET_FramebufferRenderbufferEXT(struct _glapi_table *disp) {
11835 return (_glptr_FramebufferRenderbufferEXT) (GET_by_offset(disp, _gloffset_FramebufferRenderbufferEXT));
11836 }
11837
11838 static INLINE void SET_FramebufferRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint)) {
11839 SET_by_offset(disp, _gloffset_FramebufferRenderbufferEXT, fn);
11840 }
11841
11842 typedef void (GLAPIENTRYP _glptr_FramebufferTexture1DEXT)(GLenum, GLenum, GLenum, GLuint, GLint);
11843 #define CALL_FramebufferTexture1DEXT(disp, parameters) \
11844 (* GET_FramebufferTexture1DEXT(disp)) parameters
11845 static INLINE _glptr_FramebufferTexture1DEXT GET_FramebufferTexture1DEXT(struct _glapi_table *disp) {
11846 return (_glptr_FramebufferTexture1DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture1DEXT));
11847 }
11848
11849 static INLINE void SET_FramebufferTexture1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) {
11850 SET_by_offset(disp, _gloffset_FramebufferTexture1DEXT, fn);
11851 }
11852
11853 typedef void (GLAPIENTRYP _glptr_FramebufferTexture2DEXT)(GLenum, GLenum, GLenum, GLuint, GLint);
11854 #define CALL_FramebufferTexture2DEXT(disp, parameters) \
11855 (* GET_FramebufferTexture2DEXT(disp)) parameters
11856 static INLINE _glptr_FramebufferTexture2DEXT GET_FramebufferTexture2DEXT(struct _glapi_table *disp) {
11857 return (_glptr_FramebufferTexture2DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture2DEXT));
11858 }
11859
11860 static INLINE void SET_FramebufferTexture2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) {
11861 SET_by_offset(disp, _gloffset_FramebufferTexture2DEXT, fn);
11862 }
11863
11864 typedef void (GLAPIENTRYP _glptr_FramebufferTexture3DEXT)(GLenum, GLenum, GLenum, GLuint, GLint, GLint);
11865 #define CALL_FramebufferTexture3DEXT(disp, parameters) \
11866 (* GET_FramebufferTexture3DEXT(disp)) parameters
11867 static INLINE _glptr_FramebufferTexture3DEXT GET_FramebufferTexture3DEXT(struct _glapi_table *disp) {
11868 return (_glptr_FramebufferTexture3DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture3DEXT));
11869 }
11870
11871 static INLINE void SET_FramebufferTexture3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint, GLint)) {
11872 SET_by_offset(disp, _gloffset_FramebufferTexture3DEXT, fn);
11873 }
11874
11875 typedef void (GLAPIENTRYP _glptr_GenFramebuffersEXT)(GLsizei, GLuint *);
11876 #define CALL_GenFramebuffersEXT(disp, parameters) \
11877 (* GET_GenFramebuffersEXT(disp)) parameters
11878 static INLINE _glptr_GenFramebuffersEXT GET_GenFramebuffersEXT(struct _glapi_table *disp) {
11879 return (_glptr_GenFramebuffersEXT) (GET_by_offset(disp, _gloffset_GenFramebuffersEXT));
11880 }
11881
11882 static INLINE void SET_GenFramebuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
11883 SET_by_offset(disp, _gloffset_GenFramebuffersEXT, fn);
11884 }
11885
11886 typedef void (GLAPIENTRYP _glptr_GenRenderbuffersEXT)(GLsizei, GLuint *);
11887 #define CALL_GenRenderbuffersEXT(disp, parameters) \
11888 (* GET_GenRenderbuffersEXT(disp)) parameters
11889 static INLINE _glptr_GenRenderbuffersEXT GET_GenRenderbuffersEXT(struct _glapi_table *disp) {
11890 return (_glptr_GenRenderbuffersEXT) (GET_by_offset(disp, _gloffset_GenRenderbuffersEXT));
11891 }
11892
11893 static INLINE void SET_GenRenderbuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
11894 SET_by_offset(disp, _gloffset_GenRenderbuffersEXT, fn);
11895 }
11896
11897 typedef void (GLAPIENTRYP _glptr_GenerateMipmapEXT)(GLenum);
11898 #define CALL_GenerateMipmapEXT(disp, parameters) \
11899 (* GET_GenerateMipmapEXT(disp)) parameters
11900 static INLINE _glptr_GenerateMipmapEXT GET_GenerateMipmapEXT(struct _glapi_table *disp) {
11901 return (_glptr_GenerateMipmapEXT) (GET_by_offset(disp, _gloffset_GenerateMipmapEXT));
11902 }
11903
11904 static INLINE void SET_GenerateMipmapEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
11905 SET_by_offset(disp, _gloffset_GenerateMipmapEXT, fn);
11906 }
11907
11908 typedef void (GLAPIENTRYP _glptr_GetFramebufferAttachmentParameterivEXT)(GLenum, GLenum, GLenum, GLint *);
11909 #define CALL_GetFramebufferAttachmentParameterivEXT(disp, parameters) \
11910 (* GET_GetFramebufferAttachmentParameterivEXT(disp)) parameters
11911 static INLINE _glptr_GetFramebufferAttachmentParameterivEXT GET_GetFramebufferAttachmentParameterivEXT(struct _glapi_table *disp) {
11912 return (_glptr_GetFramebufferAttachmentParameterivEXT) (GET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameterivEXT));
11913 }
11914
11915 static INLINE void SET_GetFramebufferAttachmentParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) {
11916 SET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameterivEXT, fn);
11917 }
11918
11919 typedef void (GLAPIENTRYP _glptr_GetRenderbufferParameterivEXT)(GLenum, GLenum, GLint *);
11920 #define CALL_GetRenderbufferParameterivEXT(disp, parameters) \
11921 (* GET_GetRenderbufferParameterivEXT(disp)) parameters
11922 static INLINE _glptr_GetRenderbufferParameterivEXT GET_GetRenderbufferParameterivEXT(struct _glapi_table *disp) {
11923 return (_glptr_GetRenderbufferParameterivEXT) (GET_by_offset(disp, _gloffset_GetRenderbufferParameterivEXT));
11924 }
11925
11926 static INLINE void SET_GetRenderbufferParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
11927 SET_by_offset(disp, _gloffset_GetRenderbufferParameterivEXT, fn);
11928 }
11929
11930 typedef GLboolean (GLAPIENTRYP _glptr_IsFramebufferEXT)(GLuint);
11931 #define CALL_IsFramebufferEXT(disp, parameters) \
11932 (* GET_IsFramebufferEXT(disp)) parameters
11933 static INLINE _glptr_IsFramebufferEXT GET_IsFramebufferEXT(struct _glapi_table *disp) {
11934 return (_glptr_IsFramebufferEXT) (GET_by_offset(disp, _gloffset_IsFramebufferEXT));
11935 }
11936
11937 static INLINE void SET_IsFramebufferEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
11938 SET_by_offset(disp, _gloffset_IsFramebufferEXT, fn);
11939 }
11940
11941 typedef GLboolean (GLAPIENTRYP _glptr_IsRenderbufferEXT)(GLuint);
11942 #define CALL_IsRenderbufferEXT(disp, parameters) \
11943 (* GET_IsRenderbufferEXT(disp)) parameters
11944 static INLINE _glptr_IsRenderbufferEXT GET_IsRenderbufferEXT(struct _glapi_table *disp) {
11945 return (_glptr_IsRenderbufferEXT) (GET_by_offset(disp, _gloffset_IsRenderbufferEXT));
11946 }
11947
11948 static INLINE void SET_IsRenderbufferEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
11949 SET_by_offset(disp, _gloffset_IsRenderbufferEXT, fn);
11950 }
11951
11952 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageEXT)(GLenum, GLenum, GLsizei, GLsizei);
11953 #define CALL_RenderbufferStorageEXT(disp, parameters) \
11954 (* GET_RenderbufferStorageEXT(disp)) parameters
11955 static INLINE _glptr_RenderbufferStorageEXT GET_RenderbufferStorageEXT(struct _glapi_table *disp) {
11956 return (_glptr_RenderbufferStorageEXT) (GET_by_offset(disp, _gloffset_RenderbufferStorageEXT));
11957 }
11958
11959 static INLINE void SET_RenderbufferStorageEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei)) {
11960 SET_by_offset(disp, _gloffset_RenderbufferStorageEXT, fn);
11961 }
11962
11963 typedef void (GLAPIENTRYP _glptr_BlitFramebufferEXT)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum);
11964 #define CALL_BlitFramebufferEXT(disp, parameters) \
11965 (* GET_BlitFramebufferEXT(disp)) parameters
11966 static INLINE _glptr_BlitFramebufferEXT GET_BlitFramebufferEXT(struct _glapi_table *disp) {
11967 return (_glptr_BlitFramebufferEXT) (GET_by_offset(disp, _gloffset_BlitFramebufferEXT));
11968 }
11969
11970 static INLINE void SET_BlitFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum)) {
11971 SET_by_offset(disp, _gloffset_BlitFramebufferEXT, fn);
11972 }
11973
11974 typedef void (GLAPIENTRYP _glptr_BufferParameteriAPPLE)(GLenum, GLenum, GLint);
11975 #define CALL_BufferParameteriAPPLE(disp, parameters) \
11976 (* GET_BufferParameteriAPPLE(disp)) parameters
11977 static INLINE _glptr_BufferParameteriAPPLE GET_BufferParameteriAPPLE(struct _glapi_table *disp) {
11978 return (_glptr_BufferParameteriAPPLE) (GET_by_offset(disp, _gloffset_BufferParameteriAPPLE));
11979 }
11980
11981 static INLINE void SET_BufferParameteriAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
11982 SET_by_offset(disp, _gloffset_BufferParameteriAPPLE, fn);
11983 }
11984
11985 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRangeAPPLE)(GLenum, GLintptr, GLsizeiptr);
11986 #define CALL_FlushMappedBufferRangeAPPLE(disp, parameters) \
11987 (* GET_FlushMappedBufferRangeAPPLE(disp)) parameters
11988 static INLINE _glptr_FlushMappedBufferRangeAPPLE GET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp) {
11989 return (_glptr_FlushMappedBufferRangeAPPLE) (GET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE));
11990 }
11991
11992 static INLINE void SET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
11993 SET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE, fn);
11994 }
11995
11996 typedef void (GLAPIENTRYP _glptr_BindFragDataLocationEXT)(GLuint, GLuint, const GLchar *);
11997 #define CALL_BindFragDataLocationEXT(disp, parameters) \
11998 (* GET_BindFragDataLocationEXT(disp)) parameters
11999 static INLINE _glptr_BindFragDataLocationEXT GET_BindFragDataLocationEXT(struct _glapi_table *disp) {
12000 return (_glptr_BindFragDataLocationEXT) (GET_by_offset(disp, _gloffset_BindFragDataLocationEXT));
12001 }
12002
12003 static INLINE void SET_BindFragDataLocationEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLchar *)) {
12004 SET_by_offset(disp, _gloffset_BindFragDataLocationEXT, fn);
12005 }
12006
12007 typedef GLint (GLAPIENTRYP _glptr_GetFragDataLocationEXT)(GLuint, const GLchar *);
12008 #define CALL_GetFragDataLocationEXT(disp, parameters) \
12009 (* GET_GetFragDataLocationEXT(disp)) parameters
12010 static INLINE _glptr_GetFragDataLocationEXT GET_GetFragDataLocationEXT(struct _glapi_table *disp) {
12011 return (_glptr_GetFragDataLocationEXT) (GET_by_offset(disp, _gloffset_GetFragDataLocationEXT));
12012 }
12013
12014 static INLINE void SET_GetFragDataLocationEXT(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
12015 SET_by_offset(disp, _gloffset_GetFragDataLocationEXT, fn);
12016 }
12017
12018 typedef void (GLAPIENTRYP _glptr_GetUniformuivEXT)(GLuint, GLint, GLuint *);
12019 #define CALL_GetUniformuivEXT(disp, parameters) \
12020 (* GET_GetUniformuivEXT(disp)) parameters
12021 static INLINE _glptr_GetUniformuivEXT GET_GetUniformuivEXT(struct _glapi_table *disp) {
12022 return (_glptr_GetUniformuivEXT) (GET_by_offset(disp, _gloffset_GetUniformuivEXT));
12023 }
12024
12025 static INLINE void SET_GetUniformuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint *)) {
12026 SET_by_offset(disp, _gloffset_GetUniformuivEXT, fn);
12027 }
12028
12029 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIivEXT)(GLuint, GLenum, GLint *);
12030 #define CALL_GetVertexAttribIivEXT(disp, parameters) \
12031 (* GET_GetVertexAttribIivEXT(disp)) parameters
12032 static INLINE _glptr_GetVertexAttribIivEXT GET_GetVertexAttribIivEXT(struct _glapi_table *disp) {
12033 return (_glptr_GetVertexAttribIivEXT) (GET_by_offset(disp, _gloffset_GetVertexAttribIivEXT));
12034 }
12035
12036 static INLINE void SET_GetVertexAttribIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
12037 SET_by_offset(disp, _gloffset_GetVertexAttribIivEXT, fn);
12038 }
12039
12040 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIuivEXT)(GLuint, GLenum, GLuint *);
12041 #define CALL_GetVertexAttribIuivEXT(disp, parameters) \
12042 (* GET_GetVertexAttribIuivEXT(disp)) parameters
12043 static INLINE _glptr_GetVertexAttribIuivEXT GET_GetVertexAttribIuivEXT(struct _glapi_table *disp) {
12044 return (_glptr_GetVertexAttribIuivEXT) (GET_by_offset(disp, _gloffset_GetVertexAttribIuivEXT));
12045 }
12046
12047 static INLINE void SET_GetVertexAttribIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
12048 SET_by_offset(disp, _gloffset_GetVertexAttribIuivEXT, fn);
12049 }
12050
12051 typedef void (GLAPIENTRYP _glptr_Uniform1uiEXT)(GLint, GLuint);
12052 #define CALL_Uniform1uiEXT(disp, parameters) \
12053 (* GET_Uniform1uiEXT(disp)) parameters
12054 static INLINE _glptr_Uniform1uiEXT GET_Uniform1uiEXT(struct _glapi_table *disp) {
12055 return (_glptr_Uniform1uiEXT) (GET_by_offset(disp, _gloffset_Uniform1uiEXT));
12056 }
12057
12058 static INLINE void SET_Uniform1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint)) {
12059 SET_by_offset(disp, _gloffset_Uniform1uiEXT, fn);
12060 }
12061
12062 typedef void (GLAPIENTRYP _glptr_Uniform1uivEXT)(GLint, GLsizei, const GLuint *);
12063 #define CALL_Uniform1uivEXT(disp, parameters) \
12064 (* GET_Uniform1uivEXT(disp)) parameters
12065 static INLINE _glptr_Uniform1uivEXT GET_Uniform1uivEXT(struct _glapi_table *disp) {
12066 return (_glptr_Uniform1uivEXT) (GET_by_offset(disp, _gloffset_Uniform1uivEXT));
12067 }
12068
12069 static INLINE void SET_Uniform1uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
12070 SET_by_offset(disp, _gloffset_Uniform1uivEXT, fn);
12071 }
12072
12073 typedef void (GLAPIENTRYP _glptr_Uniform2uiEXT)(GLint, GLuint, GLuint);
12074 #define CALL_Uniform2uiEXT(disp, parameters) \
12075 (* GET_Uniform2uiEXT(disp)) parameters
12076 static INLINE _glptr_Uniform2uiEXT GET_Uniform2uiEXT(struct _glapi_table *disp) {
12077 return (_glptr_Uniform2uiEXT) (GET_by_offset(disp, _gloffset_Uniform2uiEXT));
12078 }
12079
12080 static INLINE void SET_Uniform2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint)) {
12081 SET_by_offset(disp, _gloffset_Uniform2uiEXT, fn);
12082 }
12083
12084 typedef void (GLAPIENTRYP _glptr_Uniform2uivEXT)(GLint, GLsizei, const GLuint *);
12085 #define CALL_Uniform2uivEXT(disp, parameters) \
12086 (* GET_Uniform2uivEXT(disp)) parameters
12087 static INLINE _glptr_Uniform2uivEXT GET_Uniform2uivEXT(struct _glapi_table *disp) {
12088 return (_glptr_Uniform2uivEXT) (GET_by_offset(disp, _gloffset_Uniform2uivEXT));
12089 }
12090
12091 static INLINE void SET_Uniform2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
12092 SET_by_offset(disp, _gloffset_Uniform2uivEXT, fn);
12093 }
12094
12095 typedef void (GLAPIENTRYP _glptr_Uniform3uiEXT)(GLint, GLuint, GLuint, GLuint);
12096 #define CALL_Uniform3uiEXT(disp, parameters) \
12097 (* GET_Uniform3uiEXT(disp)) parameters
12098 static INLINE _glptr_Uniform3uiEXT GET_Uniform3uiEXT(struct _glapi_table *disp) {
12099 return (_glptr_Uniform3uiEXT) (GET_by_offset(disp, _gloffset_Uniform3uiEXT));
12100 }
12101
12102 static INLINE void SET_Uniform3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint)) {
12103 SET_by_offset(disp, _gloffset_Uniform3uiEXT, fn);
12104 }
12105
12106 typedef void (GLAPIENTRYP _glptr_Uniform3uivEXT)(GLint, GLsizei, const GLuint *);
12107 #define CALL_Uniform3uivEXT(disp, parameters) \
12108 (* GET_Uniform3uivEXT(disp)) parameters
12109 static INLINE _glptr_Uniform3uivEXT GET_Uniform3uivEXT(struct _glapi_table *disp) {
12110 return (_glptr_Uniform3uivEXT) (GET_by_offset(disp, _gloffset_Uniform3uivEXT));
12111 }
12112
12113 static INLINE void SET_Uniform3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
12114 SET_by_offset(disp, _gloffset_Uniform3uivEXT, fn);
12115 }
12116
12117 typedef void (GLAPIENTRYP _glptr_Uniform4uiEXT)(GLint, GLuint, GLuint, GLuint, GLuint);
12118 #define CALL_Uniform4uiEXT(disp, parameters) \
12119 (* GET_Uniform4uiEXT(disp)) parameters
12120 static INLINE _glptr_Uniform4uiEXT GET_Uniform4uiEXT(struct _glapi_table *disp) {
12121 return (_glptr_Uniform4uiEXT) (GET_by_offset(disp, _gloffset_Uniform4uiEXT));
12122 }
12123
12124 static INLINE void SET_Uniform4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint, GLuint)) {
12125 SET_by_offset(disp, _gloffset_Uniform4uiEXT, fn);
12126 }
12127
12128 typedef void (GLAPIENTRYP _glptr_Uniform4uivEXT)(GLint, GLsizei, const GLuint *);
12129 #define CALL_Uniform4uivEXT(disp, parameters) \
12130 (* GET_Uniform4uivEXT(disp)) parameters
12131 static INLINE _glptr_Uniform4uivEXT GET_Uniform4uivEXT(struct _glapi_table *disp) {
12132 return (_glptr_Uniform4uivEXT) (GET_by_offset(disp, _gloffset_Uniform4uivEXT));
12133 }
12134
12135 static INLINE void SET_Uniform4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
12136 SET_by_offset(disp, _gloffset_Uniform4uivEXT, fn);
12137 }
12138
12139 typedef void (GLAPIENTRYP _glptr_VertexAttribI1iEXT)(GLuint, GLint);
12140 #define CALL_VertexAttribI1iEXT(disp, parameters) \
12141 (* GET_VertexAttribI1iEXT(disp)) parameters
12142 static INLINE _glptr_VertexAttribI1iEXT GET_VertexAttribI1iEXT(struct _glapi_table *disp) {
12143 return (_glptr_VertexAttribI1iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1iEXT));
12144 }
12145
12146 static INLINE void SET_VertexAttribI1iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint)) {
12147 SET_by_offset(disp, _gloffset_VertexAttribI1iEXT, fn);
12148 }
12149
12150 typedef void (GLAPIENTRYP _glptr_VertexAttribI1ivEXT)(GLuint, const GLint *);
12151 #define CALL_VertexAttribI1ivEXT(disp, parameters) \
12152 (* GET_VertexAttribI1ivEXT(disp)) parameters
12153 static INLINE _glptr_VertexAttribI1ivEXT GET_VertexAttribI1ivEXT(struct _glapi_table *disp) {
12154 return (_glptr_VertexAttribI1ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1ivEXT));
12155 }
12156
12157 static INLINE void SET_VertexAttribI1ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
12158 SET_by_offset(disp, _gloffset_VertexAttribI1ivEXT, fn);
12159 }
12160
12161 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uiEXT)(GLuint, GLuint);
12162 #define CALL_VertexAttribI1uiEXT(disp, parameters) \
12163 (* GET_VertexAttribI1uiEXT(disp)) parameters
12164 static INLINE _glptr_VertexAttribI1uiEXT GET_VertexAttribI1uiEXT(struct _glapi_table *disp) {
12165 return (_glptr_VertexAttribI1uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uiEXT));
12166 }
12167
12168 static INLINE void SET_VertexAttribI1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
12169 SET_by_offset(disp, _gloffset_VertexAttribI1uiEXT, fn);
12170 }
12171
12172 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uivEXT)(GLuint, const GLuint *);
12173 #define CALL_VertexAttribI1uivEXT(disp, parameters) \
12174 (* GET_VertexAttribI1uivEXT(disp)) parameters
12175 static INLINE _glptr_VertexAttribI1uivEXT GET_VertexAttribI1uivEXT(struct _glapi_table *disp) {
12176 return (_glptr_VertexAttribI1uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uivEXT));
12177 }
12178
12179 static INLINE void SET_VertexAttribI1uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
12180 SET_by_offset(disp, _gloffset_VertexAttribI1uivEXT, fn);
12181 }
12182
12183 typedef void (GLAPIENTRYP _glptr_VertexAttribI2iEXT)(GLuint, GLint, GLint);
12184 #define CALL_VertexAttribI2iEXT(disp, parameters) \
12185 (* GET_VertexAttribI2iEXT(disp)) parameters
12186 static INLINE _glptr_VertexAttribI2iEXT GET_VertexAttribI2iEXT(struct _glapi_table *disp) {
12187 return (_glptr_VertexAttribI2iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2iEXT));
12188 }
12189
12190 static INLINE void SET_VertexAttribI2iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint)) {
12191 SET_by_offset(disp, _gloffset_VertexAttribI2iEXT, fn);
12192 }
12193
12194 typedef void (GLAPIENTRYP _glptr_VertexAttribI2ivEXT)(GLuint, const GLint *);
12195 #define CALL_VertexAttribI2ivEXT(disp, parameters) \
12196 (* GET_VertexAttribI2ivEXT(disp)) parameters
12197 static INLINE _glptr_VertexAttribI2ivEXT GET_VertexAttribI2ivEXT(struct _glapi_table *disp) {
12198 return (_glptr_VertexAttribI2ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2ivEXT));
12199 }
12200
12201 static INLINE void SET_VertexAttribI2ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
12202 SET_by_offset(disp, _gloffset_VertexAttribI2ivEXT, fn);
12203 }
12204
12205 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uiEXT)(GLuint, GLuint, GLuint);
12206 #define CALL_VertexAttribI2uiEXT(disp, parameters) \
12207 (* GET_VertexAttribI2uiEXT(disp)) parameters
12208 static INLINE _glptr_VertexAttribI2uiEXT GET_VertexAttribI2uiEXT(struct _glapi_table *disp) {
12209 return (_glptr_VertexAttribI2uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uiEXT));
12210 }
12211
12212 static INLINE void SET_VertexAttribI2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
12213 SET_by_offset(disp, _gloffset_VertexAttribI2uiEXT, fn);
12214 }
12215
12216 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uivEXT)(GLuint, const GLuint *);
12217 #define CALL_VertexAttribI2uivEXT(disp, parameters) \
12218 (* GET_VertexAttribI2uivEXT(disp)) parameters
12219 static INLINE _glptr_VertexAttribI2uivEXT GET_VertexAttribI2uivEXT(struct _glapi_table *disp) {
12220 return (_glptr_VertexAttribI2uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uivEXT));
12221 }
12222
12223 static INLINE void SET_VertexAttribI2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
12224 SET_by_offset(disp, _gloffset_VertexAttribI2uivEXT, fn);
12225 }
12226
12227 typedef void (GLAPIENTRYP _glptr_VertexAttribI3iEXT)(GLuint, GLint, GLint, GLint);
12228 #define CALL_VertexAttribI3iEXT(disp, parameters) \
12229 (* GET_VertexAttribI3iEXT(disp)) parameters
12230 static INLINE _glptr_VertexAttribI3iEXT GET_VertexAttribI3iEXT(struct _glapi_table *disp) {
12231 return (_glptr_VertexAttribI3iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3iEXT));
12232 }
12233
12234 static INLINE void SET_VertexAttribI3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint)) {
12235 SET_by_offset(disp, _gloffset_VertexAttribI3iEXT, fn);
12236 }
12237
12238 typedef void (GLAPIENTRYP _glptr_VertexAttribI3ivEXT)(GLuint, const GLint *);
12239 #define CALL_VertexAttribI3ivEXT(disp, parameters) \
12240 (* GET_VertexAttribI3ivEXT(disp)) parameters
12241 static INLINE _glptr_VertexAttribI3ivEXT GET_VertexAttribI3ivEXT(struct _glapi_table *disp) {
12242 return (_glptr_VertexAttribI3ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3ivEXT));
12243 }
12244
12245 static INLINE void SET_VertexAttribI3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
12246 SET_by_offset(disp, _gloffset_VertexAttribI3ivEXT, fn);
12247 }
12248
12249 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uiEXT)(GLuint, GLuint, GLuint, GLuint);
12250 #define CALL_VertexAttribI3uiEXT(disp, parameters) \
12251 (* GET_VertexAttribI3uiEXT(disp)) parameters
12252 static INLINE _glptr_VertexAttribI3uiEXT GET_VertexAttribI3uiEXT(struct _glapi_table *disp) {
12253 return (_glptr_VertexAttribI3uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uiEXT));
12254 }
12255
12256 static INLINE void SET_VertexAttribI3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
12257 SET_by_offset(disp, _gloffset_VertexAttribI3uiEXT, fn);
12258 }
12259
12260 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uivEXT)(GLuint, const GLuint *);
12261 #define CALL_VertexAttribI3uivEXT(disp, parameters) \
12262 (* GET_VertexAttribI3uivEXT(disp)) parameters
12263 static INLINE _glptr_VertexAttribI3uivEXT GET_VertexAttribI3uivEXT(struct _glapi_table *disp) {
12264 return (_glptr_VertexAttribI3uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uivEXT));
12265 }
12266
12267 static INLINE void SET_VertexAttribI3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
12268 SET_by_offset(disp, _gloffset_VertexAttribI3uivEXT, fn);
12269 }
12270
12271 typedef void (GLAPIENTRYP _glptr_VertexAttribI4bvEXT)(GLuint, const GLbyte *);
12272 #define CALL_VertexAttribI4bvEXT(disp, parameters) \
12273 (* GET_VertexAttribI4bvEXT(disp)) parameters
12274 static INLINE _glptr_VertexAttribI4bvEXT GET_VertexAttribI4bvEXT(struct _glapi_table *disp) {
12275 return (_glptr_VertexAttribI4bvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4bvEXT));
12276 }
12277
12278 static INLINE void SET_VertexAttribI4bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
12279 SET_by_offset(disp, _gloffset_VertexAttribI4bvEXT, fn);
12280 }
12281
12282 typedef void (GLAPIENTRYP _glptr_VertexAttribI4iEXT)(GLuint, GLint, GLint, GLint, GLint);
12283 #define CALL_VertexAttribI4iEXT(disp, parameters) \
12284 (* GET_VertexAttribI4iEXT(disp)) parameters
12285 static INLINE _glptr_VertexAttribI4iEXT GET_VertexAttribI4iEXT(struct _glapi_table *disp) {
12286 return (_glptr_VertexAttribI4iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4iEXT));
12287 }
12288
12289 static INLINE void SET_VertexAttribI4iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint)) {
12290 SET_by_offset(disp, _gloffset_VertexAttribI4iEXT, fn);
12291 }
12292
12293 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ivEXT)(GLuint, const GLint *);
12294 #define CALL_VertexAttribI4ivEXT(disp, parameters) \
12295 (* GET_VertexAttribI4ivEXT(disp)) parameters
12296 static INLINE _glptr_VertexAttribI4ivEXT GET_VertexAttribI4ivEXT(struct _glapi_table *disp) {
12297 return (_glptr_VertexAttribI4ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ivEXT));
12298 }
12299
12300 static INLINE void SET_VertexAttribI4ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
12301 SET_by_offset(disp, _gloffset_VertexAttribI4ivEXT, fn);
12302 }
12303
12304 typedef void (GLAPIENTRYP _glptr_VertexAttribI4svEXT)(GLuint, const GLshort *);
12305 #define CALL_VertexAttribI4svEXT(disp, parameters) \
12306 (* GET_VertexAttribI4svEXT(disp)) parameters
12307 static INLINE _glptr_VertexAttribI4svEXT GET_VertexAttribI4svEXT(struct _glapi_table *disp) {
12308 return (_glptr_VertexAttribI4svEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4svEXT));
12309 }
12310
12311 static INLINE void SET_VertexAttribI4svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
12312 SET_by_offset(disp, _gloffset_VertexAttribI4svEXT, fn);
12313 }
12314
12315 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ubvEXT)(GLuint, const GLubyte *);
12316 #define CALL_VertexAttribI4ubvEXT(disp, parameters) \
12317 (* GET_VertexAttribI4ubvEXT(disp)) parameters
12318 static INLINE _glptr_VertexAttribI4ubvEXT GET_VertexAttribI4ubvEXT(struct _glapi_table *disp) {
12319 return (_glptr_VertexAttribI4ubvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ubvEXT));
12320 }
12321
12322 static INLINE void SET_VertexAttribI4ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
12323 SET_by_offset(disp, _gloffset_VertexAttribI4ubvEXT, fn);
12324 }
12325
12326 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uiEXT)(GLuint, GLuint, GLuint, GLuint, GLuint);
12327 #define CALL_VertexAttribI4uiEXT(disp, parameters) \
12328 (* GET_VertexAttribI4uiEXT(disp)) parameters
12329 static INLINE _glptr_VertexAttribI4uiEXT GET_VertexAttribI4uiEXT(struct _glapi_table *disp) {
12330 return (_glptr_VertexAttribI4uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uiEXT));
12331 }
12332
12333 static INLINE void SET_VertexAttribI4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint, GLuint)) {
12334 SET_by_offset(disp, _gloffset_VertexAttribI4uiEXT, fn);
12335 }
12336
12337 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uivEXT)(GLuint, const GLuint *);
12338 #define CALL_VertexAttribI4uivEXT(disp, parameters) \
12339 (* GET_VertexAttribI4uivEXT(disp)) parameters
12340 static INLINE _glptr_VertexAttribI4uivEXT GET_VertexAttribI4uivEXT(struct _glapi_table *disp) {
12341 return (_glptr_VertexAttribI4uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uivEXT));
12342 }
12343
12344 static INLINE void SET_VertexAttribI4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
12345 SET_by_offset(disp, _gloffset_VertexAttribI4uivEXT, fn);
12346 }
12347
12348 typedef void (GLAPIENTRYP _glptr_VertexAttribI4usvEXT)(GLuint, const GLushort *);
12349 #define CALL_VertexAttribI4usvEXT(disp, parameters) \
12350 (* GET_VertexAttribI4usvEXT(disp)) parameters
12351 static INLINE _glptr_VertexAttribI4usvEXT GET_VertexAttribI4usvEXT(struct _glapi_table *disp) {
12352 return (_glptr_VertexAttribI4usvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4usvEXT));
12353 }
12354
12355 static INLINE void SET_VertexAttribI4usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
12356 SET_by_offset(disp, _gloffset_VertexAttribI4usvEXT, fn);
12357 }
12358
12359 typedef void (GLAPIENTRYP _glptr_VertexAttribIPointerEXT)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
12360 #define CALL_VertexAttribIPointerEXT(disp, parameters) \
12361 (* GET_VertexAttribIPointerEXT(disp)) parameters
12362 static INLINE _glptr_VertexAttribIPointerEXT GET_VertexAttribIPointerEXT(struct _glapi_table *disp) {
12363 return (_glptr_VertexAttribIPointerEXT) (GET_by_offset(disp, _gloffset_VertexAttribIPointerEXT));
12364 }
12365
12366 static INLINE void SET_VertexAttribIPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
12367 SET_by_offset(disp, _gloffset_VertexAttribIPointerEXT, fn);
12368 }
12369
12370 typedef void (GLAPIENTRYP _glptr_FramebufferTextureLayerEXT)(GLenum, GLenum, GLuint, GLint, GLint);
12371 #define CALL_FramebufferTextureLayerEXT(disp, parameters) \
12372 (* GET_FramebufferTextureLayerEXT(disp)) parameters
12373 static INLINE _glptr_FramebufferTextureLayerEXT GET_FramebufferTextureLayerEXT(struct _glapi_table *disp) {
12374 return (_glptr_FramebufferTextureLayerEXT) (GET_by_offset(disp, _gloffset_FramebufferTextureLayerEXT));
12375 }
12376
12377 static INLINE void SET_FramebufferTextureLayerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint, GLint)) {
12378 SET_by_offset(disp, _gloffset_FramebufferTextureLayerEXT, fn);
12379 }
12380
12381 typedef void (GLAPIENTRYP _glptr_ColorMaskIndexedEXT)(GLuint, GLboolean, GLboolean, GLboolean, GLboolean);
12382 #define CALL_ColorMaskIndexedEXT(disp, parameters) \
12383 (* GET_ColorMaskIndexedEXT(disp)) parameters
12384 static INLINE _glptr_ColorMaskIndexedEXT GET_ColorMaskIndexedEXT(struct _glapi_table *disp) {
12385 return (_glptr_ColorMaskIndexedEXT) (GET_by_offset(disp, _gloffset_ColorMaskIndexedEXT));
12386 }
12387
12388 static INLINE void SET_ColorMaskIndexedEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLboolean, GLboolean, GLboolean, GLboolean)) {
12389 SET_by_offset(disp, _gloffset_ColorMaskIndexedEXT, fn);
12390 }
12391
12392 typedef void (GLAPIENTRYP _glptr_DisableIndexedEXT)(GLenum, GLuint);
12393 #define CALL_DisableIndexedEXT(disp, parameters) \
12394 (* GET_DisableIndexedEXT(disp)) parameters
12395 static INLINE _glptr_DisableIndexedEXT GET_DisableIndexedEXT(struct _glapi_table *disp) {
12396 return (_glptr_DisableIndexedEXT) (GET_by_offset(disp, _gloffset_DisableIndexedEXT));
12397 }
12398
12399 static INLINE void SET_DisableIndexedEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
12400 SET_by_offset(disp, _gloffset_DisableIndexedEXT, fn);
12401 }
12402
12403 typedef void (GLAPIENTRYP _glptr_EnableIndexedEXT)(GLenum, GLuint);
12404 #define CALL_EnableIndexedEXT(disp, parameters) \
12405 (* GET_EnableIndexedEXT(disp)) parameters
12406 static INLINE _glptr_EnableIndexedEXT GET_EnableIndexedEXT(struct _glapi_table *disp) {
12407 return (_glptr_EnableIndexedEXT) (GET_by_offset(disp, _gloffset_EnableIndexedEXT));
12408 }
12409
12410 static INLINE void SET_EnableIndexedEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
12411 SET_by_offset(disp, _gloffset_EnableIndexedEXT, fn);
12412 }
12413
12414 typedef void (GLAPIENTRYP _glptr_GetBooleanIndexedvEXT)(GLenum, GLuint, GLboolean *);
12415 #define CALL_GetBooleanIndexedvEXT(disp, parameters) \
12416 (* GET_GetBooleanIndexedvEXT(disp)) parameters
12417 static INLINE _glptr_GetBooleanIndexedvEXT GET_GetBooleanIndexedvEXT(struct _glapi_table *disp) {
12418 return (_glptr_GetBooleanIndexedvEXT) (GET_by_offset(disp, _gloffset_GetBooleanIndexedvEXT));
12419 }
12420
12421 static INLINE void SET_GetBooleanIndexedvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLboolean *)) {
12422 SET_by_offset(disp, _gloffset_GetBooleanIndexedvEXT, fn);
12423 }
12424
12425 typedef void (GLAPIENTRYP _glptr_GetIntegerIndexedvEXT)(GLenum, GLuint, GLint *);
12426 #define CALL_GetIntegerIndexedvEXT(disp, parameters) \
12427 (* GET_GetIntegerIndexedvEXT(disp)) parameters
12428 static INLINE _glptr_GetIntegerIndexedvEXT GET_GetIntegerIndexedvEXT(struct _glapi_table *disp) {
12429 return (_glptr_GetIntegerIndexedvEXT) (GET_by_offset(disp, _gloffset_GetIntegerIndexedvEXT));
12430 }
12431
12432 static INLINE void SET_GetIntegerIndexedvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint *)) {
12433 SET_by_offset(disp, _gloffset_GetIntegerIndexedvEXT, fn);
12434 }
12435
12436 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabledIndexedEXT)(GLenum, GLuint);
12437 #define CALL_IsEnabledIndexedEXT(disp, parameters) \
12438 (* GET_IsEnabledIndexedEXT(disp)) parameters
12439 static INLINE _glptr_IsEnabledIndexedEXT GET_IsEnabledIndexedEXT(struct _glapi_table *disp) {
12440 return (_glptr_IsEnabledIndexedEXT) (GET_by_offset(disp, _gloffset_IsEnabledIndexedEXT));
12441 }
12442
12443 static INLINE void SET_IsEnabledIndexedEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum, GLuint)) {
12444 SET_by_offset(disp, _gloffset_IsEnabledIndexedEXT, fn);
12445 }
12446
12447 typedef void (GLAPIENTRYP _glptr_ClearColorIiEXT)(GLint, GLint, GLint, GLint);
12448 #define CALL_ClearColorIiEXT(disp, parameters) \
12449 (* GET_ClearColorIiEXT(disp)) parameters
12450 static INLINE _glptr_ClearColorIiEXT GET_ClearColorIiEXT(struct _glapi_table *disp) {
12451 return (_glptr_ClearColorIiEXT) (GET_by_offset(disp, _gloffset_ClearColorIiEXT));
12452 }
12453
12454 static INLINE void SET_ClearColorIiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
12455 SET_by_offset(disp, _gloffset_ClearColorIiEXT, fn);
12456 }
12457
12458 typedef void (GLAPIENTRYP _glptr_ClearColorIuiEXT)(GLuint, GLuint, GLuint, GLuint);
12459 #define CALL_ClearColorIuiEXT(disp, parameters) \
12460 (* GET_ClearColorIuiEXT(disp)) parameters
12461 static INLINE _glptr_ClearColorIuiEXT GET_ClearColorIuiEXT(struct _glapi_table *disp) {
12462 return (_glptr_ClearColorIuiEXT) (GET_by_offset(disp, _gloffset_ClearColorIuiEXT));
12463 }
12464
12465 static INLINE void SET_ClearColorIuiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
12466 SET_by_offset(disp, _gloffset_ClearColorIuiEXT, fn);
12467 }
12468
12469 typedef void (GLAPIENTRYP _glptr_GetTexParameterIivEXT)(GLenum, GLenum, GLint *);
12470 #define CALL_GetTexParameterIivEXT(disp, parameters) \
12471 (* GET_GetTexParameterIivEXT(disp)) parameters
12472 static INLINE _glptr_GetTexParameterIivEXT GET_GetTexParameterIivEXT(struct _glapi_table *disp) {
12473 return (_glptr_GetTexParameterIivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIivEXT));
12474 }
12475
12476 static INLINE void SET_GetTexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
12477 SET_by_offset(disp, _gloffset_GetTexParameterIivEXT, fn);
12478 }
12479
12480 typedef void (GLAPIENTRYP _glptr_GetTexParameterIuivEXT)(GLenum, GLenum, GLuint *);
12481 #define CALL_GetTexParameterIuivEXT(disp, parameters) \
12482 (* GET_GetTexParameterIuivEXT(disp)) parameters
12483 static INLINE _glptr_GetTexParameterIuivEXT GET_GetTexParameterIuivEXT(struct _glapi_table *disp) {
12484 return (_glptr_GetTexParameterIuivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIuivEXT));
12485 }
12486
12487 static INLINE void SET_GetTexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint *)) {
12488 SET_by_offset(disp, _gloffset_GetTexParameterIuivEXT, fn);
12489 }
12490
12491 typedef void (GLAPIENTRYP _glptr_TexParameterIivEXT)(GLenum, GLenum, const GLint *);
12492 #define CALL_TexParameterIivEXT(disp, parameters) \
12493 (* GET_TexParameterIivEXT(disp)) parameters
12494 static INLINE _glptr_TexParameterIivEXT GET_TexParameterIivEXT(struct _glapi_table *disp) {
12495 return (_glptr_TexParameterIivEXT) (GET_by_offset(disp, _gloffset_TexParameterIivEXT));
12496 }
12497
12498 static INLINE void SET_TexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
12499 SET_by_offset(disp, _gloffset_TexParameterIivEXT, fn);
12500 }
12501
12502 typedef void (GLAPIENTRYP _glptr_TexParameterIuivEXT)(GLenum, GLenum, const GLuint *);
12503 #define CALL_TexParameterIuivEXT(disp, parameters) \
12504 (* GET_TexParameterIuivEXT(disp)) parameters
12505 static INLINE _glptr_TexParameterIuivEXT GET_TexParameterIuivEXT(struct _glapi_table *disp) {
12506 return (_glptr_TexParameterIuivEXT) (GET_by_offset(disp, _gloffset_TexParameterIuivEXT));
12507 }
12508
12509 static INLINE void SET_TexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
12510 SET_by_offset(disp, _gloffset_TexParameterIuivEXT, fn);
12511 }
12512
12513 typedef void (GLAPIENTRYP _glptr_BeginConditionalRenderNV)(GLuint, GLenum);
12514 #define CALL_BeginConditionalRenderNV(disp, parameters) \
12515 (* GET_BeginConditionalRenderNV(disp)) parameters
12516 static INLINE _glptr_BeginConditionalRenderNV GET_BeginConditionalRenderNV(struct _glapi_table *disp) {
12517 return (_glptr_BeginConditionalRenderNV) (GET_by_offset(disp, _gloffset_BeginConditionalRenderNV));
12518 }
12519
12520 static INLINE void SET_BeginConditionalRenderNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
12521 SET_by_offset(disp, _gloffset_BeginConditionalRenderNV, fn);
12522 }
12523
12524 typedef void (GLAPIENTRYP _glptr_EndConditionalRenderNV)(void);
12525 #define CALL_EndConditionalRenderNV(disp, parameters) \
12526 (* GET_EndConditionalRenderNV(disp)) parameters
12527 static INLINE _glptr_EndConditionalRenderNV GET_EndConditionalRenderNV(struct _glapi_table *disp) {
12528 return (_glptr_EndConditionalRenderNV) (GET_by_offset(disp, _gloffset_EndConditionalRenderNV));
12529 }
12530
12531 static INLINE void SET_EndConditionalRenderNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
12532 SET_by_offset(disp, _gloffset_EndConditionalRenderNV, fn);
12533 }
12534
12535 typedef void (GLAPIENTRYP _glptr_BeginTransformFeedbackEXT)(GLenum);
12536 #define CALL_BeginTransformFeedbackEXT(disp, parameters) \
12537 (* GET_BeginTransformFeedbackEXT(disp)) parameters
12538 static INLINE _glptr_BeginTransformFeedbackEXT GET_BeginTransformFeedbackEXT(struct _glapi_table *disp) {
12539 return (_glptr_BeginTransformFeedbackEXT) (GET_by_offset(disp, _gloffset_BeginTransformFeedbackEXT));
12540 }
12541
12542 static INLINE void SET_BeginTransformFeedbackEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
12543 SET_by_offset(disp, _gloffset_BeginTransformFeedbackEXT, fn);
12544 }
12545
12546 typedef void (GLAPIENTRYP _glptr_BindBufferBaseEXT)(GLenum, GLuint, GLuint);
12547 #define CALL_BindBufferBaseEXT(disp, parameters) \
12548 (* GET_BindBufferBaseEXT(disp)) parameters
12549 static INLINE _glptr_BindBufferBaseEXT GET_BindBufferBaseEXT(struct _glapi_table *disp) {
12550 return (_glptr_BindBufferBaseEXT) (GET_by_offset(disp, _gloffset_BindBufferBaseEXT));
12551 }
12552
12553 static INLINE void SET_BindBufferBaseEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) {
12554 SET_by_offset(disp, _gloffset_BindBufferBaseEXT, fn);
12555 }
12556
12557 typedef void (GLAPIENTRYP _glptr_BindBufferOffsetEXT)(GLenum, GLuint, GLuint, GLintptr);
12558 #define CALL_BindBufferOffsetEXT(disp, parameters) \
12559 (* GET_BindBufferOffsetEXT(disp)) parameters
12560 static INLINE _glptr_BindBufferOffsetEXT GET_BindBufferOffsetEXT(struct _glapi_table *disp) {
12561 return (_glptr_BindBufferOffsetEXT) (GET_by_offset(disp, _gloffset_BindBufferOffsetEXT));
12562 }
12563
12564 static INLINE void SET_BindBufferOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLintptr)) {
12565 SET_by_offset(disp, _gloffset_BindBufferOffsetEXT, fn);
12566 }
12567
12568 typedef void (GLAPIENTRYP _glptr_BindBufferRangeEXT)(GLenum, GLuint, GLuint, GLintptr, GLsizeiptr);
12569 #define CALL_BindBufferRangeEXT(disp, parameters) \
12570 (* GET_BindBufferRangeEXT(disp)) parameters
12571 static INLINE _glptr_BindBufferRangeEXT GET_BindBufferRangeEXT(struct _glapi_table *disp) {
12572 return (_glptr_BindBufferRangeEXT) (GET_by_offset(disp, _gloffset_BindBufferRangeEXT));
12573 }
12574
12575 static INLINE void SET_BindBufferRangeEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLintptr, GLsizeiptr)) {
12576 SET_by_offset(disp, _gloffset_BindBufferRangeEXT, fn);
12577 }
12578
12579 typedef void (GLAPIENTRYP _glptr_EndTransformFeedbackEXT)(void);
12580 #define CALL_EndTransformFeedbackEXT(disp, parameters) \
12581 (* GET_EndTransformFeedbackEXT(disp)) parameters
12582 static INLINE _glptr_EndTransformFeedbackEXT GET_EndTransformFeedbackEXT(struct _glapi_table *disp) {
12583 return (_glptr_EndTransformFeedbackEXT) (GET_by_offset(disp, _gloffset_EndTransformFeedbackEXT));
12584 }
12585
12586 static INLINE void SET_EndTransformFeedbackEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
12587 SET_by_offset(disp, _gloffset_EndTransformFeedbackEXT, fn);
12588 }
12589
12590 typedef void (GLAPIENTRYP _glptr_GetTransformFeedbackVaryingEXT)(GLuint, GLuint, GLsizei, GLsizei *, GLsizei *, GLenum *, GLchar *);
12591 #define CALL_GetTransformFeedbackVaryingEXT(disp, parameters) \
12592 (* GET_GetTransformFeedbackVaryingEXT(disp)) parameters
12593 static INLINE _glptr_GetTransformFeedbackVaryingEXT GET_GetTransformFeedbackVaryingEXT(struct _glapi_table *disp) {
12594 return (_glptr_GetTransformFeedbackVaryingEXT) (GET_by_offset(disp, _gloffset_GetTransformFeedbackVaryingEXT));
12595 }
12596
12597 static INLINE void SET_GetTransformFeedbackVaryingEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLsizei *, GLenum *, GLchar *)) {
12598 SET_by_offset(disp, _gloffset_GetTransformFeedbackVaryingEXT, fn);
12599 }
12600
12601 typedef void (GLAPIENTRYP _glptr_TransformFeedbackVaryingsEXT)(GLuint, GLsizei, const char **, GLenum);
12602 #define CALL_TransformFeedbackVaryingsEXT(disp, parameters) \
12603 (* GET_TransformFeedbackVaryingsEXT(disp)) parameters
12604 static INLINE _glptr_TransformFeedbackVaryingsEXT GET_TransformFeedbackVaryingsEXT(struct _glapi_table *disp) {
12605 return (_glptr_TransformFeedbackVaryingsEXT) (GET_by_offset(disp, _gloffset_TransformFeedbackVaryingsEXT));
12606 }
12607
12608 static INLINE void SET_TransformFeedbackVaryingsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const char **, GLenum)) {
12609 SET_by_offset(disp, _gloffset_TransformFeedbackVaryingsEXT, fn);
12610 }
12611
12612 typedef void (GLAPIENTRYP _glptr_ProvokingVertexEXT)(GLenum);
12613 #define CALL_ProvokingVertexEXT(disp, parameters) \
12614 (* GET_ProvokingVertexEXT(disp)) parameters
12615 static INLINE _glptr_ProvokingVertexEXT GET_ProvokingVertexEXT(struct _glapi_table *disp) {
12616 return (_glptr_ProvokingVertexEXT) (GET_by_offset(disp, _gloffset_ProvokingVertexEXT));
12617 }
12618
12619 static INLINE void SET_ProvokingVertexEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
12620 SET_by_offset(disp, _gloffset_ProvokingVertexEXT, fn);
12621 }
12622
12623 typedef void (GLAPIENTRYP _glptr_GetTexParameterPointervAPPLE)(GLenum, GLenum, GLvoid **);
12624 #define CALL_GetTexParameterPointervAPPLE(disp, parameters) \
12625 (* GET_GetTexParameterPointervAPPLE(disp)) parameters
12626 static INLINE _glptr_GetTexParameterPointervAPPLE GET_GetTexParameterPointervAPPLE(struct _glapi_table *disp) {
12627 return (_glptr_GetTexParameterPointervAPPLE) (GET_by_offset(disp, _gloffset_GetTexParameterPointervAPPLE));
12628 }
12629
12630 static INLINE void SET_GetTexParameterPointervAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
12631 SET_by_offset(disp, _gloffset_GetTexParameterPointervAPPLE, fn);
12632 }
12633
12634 typedef void (GLAPIENTRYP _glptr_TextureRangeAPPLE)(GLenum, GLsizei, GLvoid *);
12635 #define CALL_TextureRangeAPPLE(disp, parameters) \
12636 (* GET_TextureRangeAPPLE(disp)) parameters
12637 static INLINE _glptr_TextureRangeAPPLE GET_TextureRangeAPPLE(struct _glapi_table *disp) {
12638 return (_glptr_TextureRangeAPPLE) (GET_by_offset(disp, _gloffset_TextureRangeAPPLE));
12639 }
12640
12641 static INLINE void SET_TextureRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLvoid *)) {
12642 SET_by_offset(disp, _gloffset_TextureRangeAPPLE, fn);
12643 }
12644
12645 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivAPPLE)(GLenum, GLuint, GLenum, GLint *);
12646 #define CALL_GetObjectParameterivAPPLE(disp, parameters) \
12647 (* GET_GetObjectParameterivAPPLE(disp)) parameters
12648 static INLINE _glptr_GetObjectParameterivAPPLE GET_GetObjectParameterivAPPLE(struct _glapi_table *disp) {
12649 return (_glptr_GetObjectParameterivAPPLE) (GET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE));
12650 }
12651
12652 static INLINE void SET_GetObjectParameterivAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
12653 SET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE, fn);
12654 }
12655
12656 typedef GLenum (GLAPIENTRYP _glptr_ObjectPurgeableAPPLE)(GLenum, GLuint, GLenum);
12657 #define CALL_ObjectPurgeableAPPLE(disp, parameters) \
12658 (* GET_ObjectPurgeableAPPLE(disp)) parameters
12659 static INLINE _glptr_ObjectPurgeableAPPLE GET_ObjectPurgeableAPPLE(struct _glapi_table *disp) {
12660 return (_glptr_ObjectPurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE));
12661 }
12662
12663 static INLINE void SET_ObjectPurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
12664 SET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE, fn);
12665 }
12666
12667 typedef GLenum (GLAPIENTRYP _glptr_ObjectUnpurgeableAPPLE)(GLenum, GLuint, GLenum);
12668 #define CALL_ObjectUnpurgeableAPPLE(disp, parameters) \
12669 (* GET_ObjectUnpurgeableAPPLE(disp)) parameters
12670 static INLINE _glptr_ObjectUnpurgeableAPPLE GET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp) {
12671 return (_glptr_ObjectUnpurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE));
12672 }
12673
12674 static INLINE void SET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
12675 SET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE, fn);
12676 }
12677
12678 typedef void (GLAPIENTRYP _glptr_ActiveProgramEXT)(GLuint);
12679 #define CALL_ActiveProgramEXT(disp, parameters) \
12680 (* GET_ActiveProgramEXT(disp)) parameters
12681 static INLINE _glptr_ActiveProgramEXT GET_ActiveProgramEXT(struct _glapi_table *disp) {
12682 return (_glptr_ActiveProgramEXT) (GET_by_offset(disp, _gloffset_ActiveProgramEXT));
12683 }
12684
12685 static INLINE void SET_ActiveProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
12686 SET_by_offset(disp, _gloffset_ActiveProgramEXT, fn);
12687 }
12688
12689 typedef GLuint (GLAPIENTRYP _glptr_CreateShaderProgramEXT)(GLenum, const GLchar *);
12690 #define CALL_CreateShaderProgramEXT(disp, parameters) \
12691 (* GET_CreateShaderProgramEXT(disp)) parameters
12692 static INLINE _glptr_CreateShaderProgramEXT GET_CreateShaderProgramEXT(struct _glapi_table *disp) {
12693 return (_glptr_CreateShaderProgramEXT) (GET_by_offset(disp, _gloffset_CreateShaderProgramEXT));
12694 }
12695
12696 static INLINE void SET_CreateShaderProgramEXT(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum, const GLchar *)) {
12697 SET_by_offset(disp, _gloffset_CreateShaderProgramEXT, fn);
12698 }
12699
12700 typedef void (GLAPIENTRYP _glptr_UseShaderProgramEXT)(GLenum, GLuint);
12701 #define CALL_UseShaderProgramEXT(disp, parameters) \
12702 (* GET_UseShaderProgramEXT(disp)) parameters
12703 static INLINE _glptr_UseShaderProgramEXT GET_UseShaderProgramEXT(struct _glapi_table *disp) {
12704 return (_glptr_UseShaderProgramEXT) (GET_by_offset(disp, _gloffset_UseShaderProgramEXT));
12705 }
12706
12707 static INLINE void SET_UseShaderProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
12708 SET_by_offset(disp, _gloffset_UseShaderProgramEXT, fn);
12709 }
12710
12711 typedef void (GLAPIENTRYP _glptr_TextureBarrierNV)(void);
12712 #define CALL_TextureBarrierNV(disp, parameters) \
12713 (* GET_TextureBarrierNV(disp)) parameters
12714 static INLINE _glptr_TextureBarrierNV GET_TextureBarrierNV(struct _glapi_table *disp) {
12715 return (_glptr_TextureBarrierNV) (GET_by_offset(disp, _gloffset_TextureBarrierNV));
12716 }
12717
12718 static INLINE void SET_TextureBarrierNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
12719 SET_by_offset(disp, _gloffset_TextureBarrierNV, fn);
12720 }
12721
12722 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparateATI)(GLenum, GLenum, GLint, GLuint);
12723 #define CALL_StencilFuncSeparateATI(disp, parameters) \
12724 (* GET_StencilFuncSeparateATI(disp)) parameters
12725 static INLINE _glptr_StencilFuncSeparateATI GET_StencilFuncSeparateATI(struct _glapi_table *disp) {
12726 return (_glptr_StencilFuncSeparateATI) (GET_by_offset(disp, _gloffset_StencilFuncSeparateATI));
12727 }
12728
12729 static INLINE void SET_StencilFuncSeparateATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) {
12730 SET_by_offset(disp, _gloffset_StencilFuncSeparateATI, fn);
12731 }
12732
12733 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *);
12734 #define CALL_ProgramEnvParameters4fvEXT(disp, parameters) \
12735 (* GET_ProgramEnvParameters4fvEXT(disp)) parameters
12736 static INLINE _glptr_ProgramEnvParameters4fvEXT GET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp) {
12737 return (_glptr_ProgramEnvParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT));
12738 }
12739
12740 static INLINE void SET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
12741 SET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT, fn);
12742 }
12743
12744 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *);
12745 #define CALL_ProgramLocalParameters4fvEXT(disp, parameters) \
12746 (* GET_ProgramLocalParameters4fvEXT(disp)) parameters
12747 static INLINE _glptr_ProgramLocalParameters4fvEXT GET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp) {
12748 return (_glptr_ProgramLocalParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT));
12749 }
12750
12751 static INLINE void SET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
12752 SET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT, fn);
12753 }
12754
12755 typedef void (GLAPIENTRYP _glptr_GetQueryObjecti64vEXT)(GLuint, GLenum, GLint64EXT *);
12756 #define CALL_GetQueryObjecti64vEXT(disp, parameters) \
12757 (* GET_GetQueryObjecti64vEXT(disp)) parameters
12758 static INLINE _glptr_GetQueryObjecti64vEXT GET_GetQueryObjecti64vEXT(struct _glapi_table *disp) {
12759 return (_glptr_GetQueryObjecti64vEXT) (GET_by_offset(disp, _gloffset_GetQueryObjecti64vEXT));
12760 }
12761
12762 static INLINE void SET_GetQueryObjecti64vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint64EXT *)) {
12763 SET_by_offset(disp, _gloffset_GetQueryObjecti64vEXT, fn);
12764 }
12765
12766 typedef void (GLAPIENTRYP _glptr_GetQueryObjectui64vEXT)(GLuint, GLenum, GLuint64EXT *);
12767 #define CALL_GetQueryObjectui64vEXT(disp, parameters) \
12768 (* GET_GetQueryObjectui64vEXT(disp)) parameters
12769 static INLINE _glptr_GetQueryObjectui64vEXT GET_GetQueryObjectui64vEXT(struct _glapi_table *disp) {
12770 return (_glptr_GetQueryObjectui64vEXT) (GET_by_offset(disp, _gloffset_GetQueryObjectui64vEXT));
12771 }
12772
12773 static INLINE void SET_GetQueryObjectui64vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint64EXT *)) {
12774 SET_by_offset(disp, _gloffset_GetQueryObjectui64vEXT, fn);
12775 }
12776
12777 typedef void (GLAPIENTRYP _glptr_EGLImageTargetRenderbufferStorageOES)(GLenum, GLvoid *);
12778 #define CALL_EGLImageTargetRenderbufferStorageOES(disp, parameters) \
12779 (* GET_EGLImageTargetRenderbufferStorageOES(disp)) parameters
12780 static INLINE _glptr_EGLImageTargetRenderbufferStorageOES GET_EGLImageTargetRenderbufferStorageOES(struct _glapi_table *disp) {
12781 return (_glptr_EGLImageTargetRenderbufferStorageOES) (GET_by_offset(disp, _gloffset_EGLImageTargetRenderbufferStorageOES));
12782 }
12783
12784 static INLINE void SET_EGLImageTargetRenderbufferStorageOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid *)) {
12785 SET_by_offset(disp, _gloffset_EGLImageTargetRenderbufferStorageOES, fn);
12786 }
12787
12788 typedef void (GLAPIENTRYP _glptr_EGLImageTargetTexture2DOES)(GLenum, GLvoid *);
12789 #define CALL_EGLImageTargetTexture2DOES(disp, parameters) \
12790 (* GET_EGLImageTargetTexture2DOES(disp)) parameters
12791 static INLINE _glptr_EGLImageTargetTexture2DOES GET_EGLImageTargetTexture2DOES(struct _glapi_table *disp) {
12792 return (_glptr_EGLImageTargetTexture2DOES) (GET_by_offset(disp, _gloffset_EGLImageTargetTexture2DOES));
12793 }
12794
12795 static INLINE void SET_EGLImageTargetTexture2DOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid *)) {
12796 SET_by_offset(disp, _gloffset_EGLImageTargetTexture2DOES, fn);
12797 }
12798
12799
12800 #endif /* !defined( _DISPATCH_H_ ) */