Home | History | Annotate | Download | only in main
      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 #define CALL_by_offset(disp, cast, offset, parameters) \
     44     (*(cast (GET_by_offset(disp, offset)))) parameters
     45 #define GET_by_offset(disp, offset) \
     46     (offset >= 0) ? (((_glapi_proc *)(disp))[offset]) : NULL
     47 #define SET_by_offset(disp, offset, fn) \
     48     do { \
     49         if ( (offset) < 0 ) { \
     50             /* fprintf( stderr, "[%s:%u] SET_by_offset(%p, %d, %s)!\n", */ \
     51             /*         __func__, __LINE__, disp, offset, # fn); */ \
     52             /* abort(); */ \
     53         } \
     54         else { \
     55             ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
     56         } \
     57     } while(0)
     58 
     59 /* total number of offsets below */
     60 #define _gloffset_COUNT 1330
     61 
     62 #define _gloffset_NewList 0
     63 #define _gloffset_EndList 1
     64 #define _gloffset_CallList 2
     65 #define _gloffset_CallLists 3
     66 #define _gloffset_DeleteLists 4
     67 #define _gloffset_GenLists 5
     68 #define _gloffset_ListBase 6
     69 #define _gloffset_Begin 7
     70 #define _gloffset_Bitmap 8
     71 #define _gloffset_Color3b 9
     72 #define _gloffset_Color3bv 10
     73 #define _gloffset_Color3d 11
     74 #define _gloffset_Color3dv 12
     75 #define _gloffset_Color3f 13
     76 #define _gloffset_Color3fv 14
     77 #define _gloffset_Color3i 15
     78 #define _gloffset_Color3iv 16
     79 #define _gloffset_Color3s 17
     80 #define _gloffset_Color3sv 18
     81 #define _gloffset_Color3ub 19
     82 #define _gloffset_Color3ubv 20
     83 #define _gloffset_Color3ui 21
     84 #define _gloffset_Color3uiv 22
     85 #define _gloffset_Color3us 23
     86 #define _gloffset_Color3usv 24
     87 #define _gloffset_Color4b 25
     88 #define _gloffset_Color4bv 26
     89 #define _gloffset_Color4d 27
     90 #define _gloffset_Color4dv 28
     91 #define _gloffset_Color4f 29
     92 #define _gloffset_Color4fv 30
     93 #define _gloffset_Color4i 31
     94 #define _gloffset_Color4iv 32
     95 #define _gloffset_Color4s 33
     96 #define _gloffset_Color4sv 34
     97 #define _gloffset_Color4ub 35
     98 #define _gloffset_Color4ubv 36
     99 #define _gloffset_Color4ui 37
    100 #define _gloffset_Color4uiv 38
    101 #define _gloffset_Color4us 39
    102 #define _gloffset_Color4usv 40
    103 #define _gloffset_EdgeFlag 41
    104 #define _gloffset_EdgeFlagv 42
    105 #define _gloffset_End 43
    106 #define _gloffset_Indexd 44
    107 #define _gloffset_Indexdv 45
    108 #define _gloffset_Indexf 46
    109 #define _gloffset_Indexfv 47
    110 #define _gloffset_Indexi 48
    111 #define _gloffset_Indexiv 49
    112 #define _gloffset_Indexs 50
    113 #define _gloffset_Indexsv 51
    114 #define _gloffset_Normal3b 52
    115 #define _gloffset_Normal3bv 53
    116 #define _gloffset_Normal3d 54
    117 #define _gloffset_Normal3dv 55
    118 #define _gloffset_Normal3f 56
    119 #define _gloffset_Normal3fv 57
    120 #define _gloffset_Normal3i 58
    121 #define _gloffset_Normal3iv 59
    122 #define _gloffset_Normal3s 60
    123 #define _gloffset_Normal3sv 61
    124 #define _gloffset_RasterPos2d 62
    125 #define _gloffset_RasterPos2dv 63
    126 #define _gloffset_RasterPos2f 64
    127 #define _gloffset_RasterPos2fv 65
    128 #define _gloffset_RasterPos2i 66
    129 #define _gloffset_RasterPos2iv 67
    130 #define _gloffset_RasterPos2s 68
    131 #define _gloffset_RasterPos2sv 69
    132 #define _gloffset_RasterPos3d 70
    133 #define _gloffset_RasterPos3dv 71
    134 #define _gloffset_RasterPos3f 72
    135 #define _gloffset_RasterPos3fv 73
    136 #define _gloffset_RasterPos3i 74
    137 #define _gloffset_RasterPos3iv 75
    138 #define _gloffset_RasterPos3s 76
    139 #define _gloffset_RasterPos3sv 77
    140 #define _gloffset_RasterPos4d 78
    141 #define _gloffset_RasterPos4dv 79
    142 #define _gloffset_RasterPos4f 80
    143 #define _gloffset_RasterPos4fv 81
    144 #define _gloffset_RasterPos4i 82
    145 #define _gloffset_RasterPos4iv 83
    146 #define _gloffset_RasterPos4s 84
    147 #define _gloffset_RasterPos4sv 85
    148 #define _gloffset_Rectd 86
    149 #define _gloffset_Rectdv 87
    150 #define _gloffset_Rectf 88
    151 #define _gloffset_Rectfv 89
    152 #define _gloffset_Recti 90
    153 #define _gloffset_Rectiv 91
    154 #define _gloffset_Rects 92
    155 #define _gloffset_Rectsv 93
    156 #define _gloffset_TexCoord1d 94
    157 #define _gloffset_TexCoord1dv 95
    158 #define _gloffset_TexCoord1f 96
    159 #define _gloffset_TexCoord1fv 97
    160 #define _gloffset_TexCoord1i 98
    161 #define _gloffset_TexCoord1iv 99
    162 #define _gloffset_TexCoord1s 100
    163 #define _gloffset_TexCoord1sv 101
    164 #define _gloffset_TexCoord2d 102
    165 #define _gloffset_TexCoord2dv 103
    166 #define _gloffset_TexCoord2f 104
    167 #define _gloffset_TexCoord2fv 105
    168 #define _gloffset_TexCoord2i 106
    169 #define _gloffset_TexCoord2iv 107
    170 #define _gloffset_TexCoord2s 108
    171 #define _gloffset_TexCoord2sv 109
    172 #define _gloffset_TexCoord3d 110
    173 #define _gloffset_TexCoord3dv 111
    174 #define _gloffset_TexCoord3f 112
    175 #define _gloffset_TexCoord3fv 113
    176 #define _gloffset_TexCoord3i 114
    177 #define _gloffset_TexCoord3iv 115
    178 #define _gloffset_TexCoord3s 116
    179 #define _gloffset_TexCoord3sv 117
    180 #define _gloffset_TexCoord4d 118
    181 #define _gloffset_TexCoord4dv 119
    182 #define _gloffset_TexCoord4f 120
    183 #define _gloffset_TexCoord4fv 121
    184 #define _gloffset_TexCoord4i 122
    185 #define _gloffset_TexCoord4iv 123
    186 #define _gloffset_TexCoord4s 124
    187 #define _gloffset_TexCoord4sv 125
    188 #define _gloffset_Vertex2d 126
    189 #define _gloffset_Vertex2dv 127
    190 #define _gloffset_Vertex2f 128
    191 #define _gloffset_Vertex2fv 129
    192 #define _gloffset_Vertex2i 130
    193 #define _gloffset_Vertex2iv 131
    194 #define _gloffset_Vertex2s 132
    195 #define _gloffset_Vertex2sv 133
    196 #define _gloffset_Vertex3d 134
    197 #define _gloffset_Vertex3dv 135
    198 #define _gloffset_Vertex3f 136
    199 #define _gloffset_Vertex3fv 137
    200 #define _gloffset_Vertex3i 138
    201 #define _gloffset_Vertex3iv 139
    202 #define _gloffset_Vertex3s 140
    203 #define _gloffset_Vertex3sv 141
    204 #define _gloffset_Vertex4d 142
    205 #define _gloffset_Vertex4dv 143
    206 #define _gloffset_Vertex4f 144
    207 #define _gloffset_Vertex4fv 145
    208 #define _gloffset_Vertex4i 146
    209 #define _gloffset_Vertex4iv 147
    210 #define _gloffset_Vertex4s 148
    211 #define _gloffset_Vertex4sv 149
    212 #define _gloffset_ClipPlane 150
    213 #define _gloffset_ColorMaterial 151
    214 #define _gloffset_CullFace 152
    215 #define _gloffset_Fogf 153
    216 #define _gloffset_Fogfv 154
    217 #define _gloffset_Fogi 155
    218 #define _gloffset_Fogiv 156
    219 #define _gloffset_FrontFace 157
    220 #define _gloffset_Hint 158
    221 #define _gloffset_Lightf 159
    222 #define _gloffset_Lightfv 160
    223 #define _gloffset_Lighti 161
    224 #define _gloffset_Lightiv 162
    225 #define _gloffset_LightModelf 163
    226 #define _gloffset_LightModelfv 164
    227 #define _gloffset_LightModeli 165
    228 #define _gloffset_LightModeliv 166
    229 #define _gloffset_LineStipple 167
    230 #define _gloffset_LineWidth 168
    231 #define _gloffset_Materialf 169
    232 #define _gloffset_Materialfv 170
    233 #define _gloffset_Materiali 171
    234 #define _gloffset_Materialiv 172
    235 #define _gloffset_PointSize 173
    236 #define _gloffset_PolygonMode 174
    237 #define _gloffset_PolygonStipple 175
    238 #define _gloffset_Scissor 176
    239 #define _gloffset_ShadeModel 177
    240 #define _gloffset_TexParameterf 178
    241 #define _gloffset_TexParameterfv 179
    242 #define _gloffset_TexParameteri 180
    243 #define _gloffset_TexParameteriv 181
    244 #define _gloffset_TexImage1D 182
    245 #define _gloffset_TexImage2D 183
    246 #define _gloffset_TexEnvf 184
    247 #define _gloffset_TexEnvfv 185
    248 #define _gloffset_TexEnvi 186
    249 #define _gloffset_TexEnviv 187
    250 #define _gloffset_TexGend 188
    251 #define _gloffset_TexGendv 189
    252 #define _gloffset_TexGenf 190
    253 #define _gloffset_TexGenfv 191
    254 #define _gloffset_TexGeni 192
    255 #define _gloffset_TexGeniv 193
    256 #define _gloffset_FeedbackBuffer 194
    257 #define _gloffset_SelectBuffer 195
    258 #define _gloffset_RenderMode 196
    259 #define _gloffset_InitNames 197
    260 #define _gloffset_LoadName 198
    261 #define _gloffset_PassThrough 199
    262 #define _gloffset_PopName 200
    263 #define _gloffset_PushName 201
    264 #define _gloffset_DrawBuffer 202
    265 #define _gloffset_Clear 203
    266 #define _gloffset_ClearAccum 204
    267 #define _gloffset_ClearIndex 205
    268 #define _gloffset_ClearColor 206
    269 #define _gloffset_ClearStencil 207
    270 #define _gloffset_ClearDepth 208
    271 #define _gloffset_StencilMask 209
    272 #define _gloffset_ColorMask 210
    273 #define _gloffset_DepthMask 211
    274 #define _gloffset_IndexMask 212
    275 #define _gloffset_Accum 213
    276 #define _gloffset_Disable 214
    277 #define _gloffset_Enable 215
    278 #define _gloffset_Finish 216
    279 #define _gloffset_Flush 217
    280 #define _gloffset_PopAttrib 218
    281 #define _gloffset_PushAttrib 219
    282 #define _gloffset_Map1d 220
    283 #define _gloffset_Map1f 221
    284 #define _gloffset_Map2d 222
    285 #define _gloffset_Map2f 223
    286 #define _gloffset_MapGrid1d 224
    287 #define _gloffset_MapGrid1f 225
    288 #define _gloffset_MapGrid2d 226
    289 #define _gloffset_MapGrid2f 227
    290 #define _gloffset_EvalCoord1d 228
    291 #define _gloffset_EvalCoord1dv 229
    292 #define _gloffset_EvalCoord1f 230
    293 #define _gloffset_EvalCoord1fv 231
    294 #define _gloffset_EvalCoord2d 232
    295 #define _gloffset_EvalCoord2dv 233
    296 #define _gloffset_EvalCoord2f 234
    297 #define _gloffset_EvalCoord2fv 235
    298 #define _gloffset_EvalMesh1 236
    299 #define _gloffset_EvalPoint1 237
    300 #define _gloffset_EvalMesh2 238
    301 #define _gloffset_EvalPoint2 239
    302 #define _gloffset_AlphaFunc 240
    303 #define _gloffset_BlendFunc 241
    304 #define _gloffset_LogicOp 242
    305 #define _gloffset_StencilFunc 243
    306 #define _gloffset_StencilOp 244
    307 #define _gloffset_DepthFunc 245
    308 #define _gloffset_PixelZoom 246
    309 #define _gloffset_PixelTransferf 247
    310 #define _gloffset_PixelTransferi 248
    311 #define _gloffset_PixelStoref 249
    312 #define _gloffset_PixelStorei 250
    313 #define _gloffset_PixelMapfv 251
    314 #define _gloffset_PixelMapuiv 252
    315 #define _gloffset_PixelMapusv 253
    316 #define _gloffset_ReadBuffer 254
    317 #define _gloffset_CopyPixels 255
    318 #define _gloffset_ReadPixels 256
    319 #define _gloffset_DrawPixels 257
    320 #define _gloffset_GetBooleanv 258
    321 #define _gloffset_GetClipPlane 259
    322 #define _gloffset_GetDoublev 260
    323 #define _gloffset_GetError 261
    324 #define _gloffset_GetFloatv 262
    325 #define _gloffset_GetIntegerv 263
    326 #define _gloffset_GetLightfv 264
    327 #define _gloffset_GetLightiv 265
    328 #define _gloffset_GetMapdv 266
    329 #define _gloffset_GetMapfv 267
    330 #define _gloffset_GetMapiv 268
    331 #define _gloffset_GetMaterialfv 269
    332 #define _gloffset_GetMaterialiv 270
    333 #define _gloffset_GetPixelMapfv 271
    334 #define _gloffset_GetPixelMapuiv 272
    335 #define _gloffset_GetPixelMapusv 273
    336 #define _gloffset_GetPolygonStipple 274
    337 #define _gloffset_GetString 275
    338 #define _gloffset_GetTexEnvfv 276
    339 #define _gloffset_GetTexEnviv 277
    340 #define _gloffset_GetTexGendv 278
    341 #define _gloffset_GetTexGenfv 279
    342 #define _gloffset_GetTexGeniv 280
    343 #define _gloffset_GetTexImage 281
    344 #define _gloffset_GetTexParameterfv 282
    345 #define _gloffset_GetTexParameteriv 283
    346 #define _gloffset_GetTexLevelParameterfv 284
    347 #define _gloffset_GetTexLevelParameteriv 285
    348 #define _gloffset_IsEnabled 286
    349 #define _gloffset_IsList 287
    350 #define _gloffset_DepthRange 288
    351 #define _gloffset_Frustum 289
    352 #define _gloffset_LoadIdentity 290
    353 #define _gloffset_LoadMatrixf 291
    354 #define _gloffset_LoadMatrixd 292
    355 #define _gloffset_MatrixMode 293
    356 #define _gloffset_MultMatrixf 294
    357 #define _gloffset_MultMatrixd 295
    358 #define _gloffset_Ortho 296
    359 #define _gloffset_PopMatrix 297
    360 #define _gloffset_PushMatrix 298
    361 #define _gloffset_Rotated 299
    362 #define _gloffset_Rotatef 300
    363 #define _gloffset_Scaled 301
    364 #define _gloffset_Scalef 302
    365 #define _gloffset_Translated 303
    366 #define _gloffset_Translatef 304
    367 #define _gloffset_Viewport 305
    368 #define _gloffset_ArrayElement 306
    369 #define _gloffset_BindTexture 307
    370 #define _gloffset_ColorPointer 308
    371 #define _gloffset_DisableClientState 309
    372 #define _gloffset_DrawArrays 310
    373 #define _gloffset_DrawElements 311
    374 #define _gloffset_EdgeFlagPointer 312
    375 #define _gloffset_EnableClientState 313
    376 #define _gloffset_IndexPointer 314
    377 #define _gloffset_Indexub 315
    378 #define _gloffset_Indexubv 316
    379 #define _gloffset_InterleavedArrays 317
    380 #define _gloffset_NormalPointer 318
    381 #define _gloffset_PolygonOffset 319
    382 #define _gloffset_TexCoordPointer 320
    383 #define _gloffset_VertexPointer 321
    384 #define _gloffset_AreTexturesResident 322
    385 #define _gloffset_CopyTexImage1D 323
    386 #define _gloffset_CopyTexImage2D 324
    387 #define _gloffset_CopyTexSubImage1D 325
    388 #define _gloffset_CopyTexSubImage2D 326
    389 #define _gloffset_DeleteTextures 327
    390 #define _gloffset_GenTextures 328
    391 #define _gloffset_GetPointerv 329
    392 #define _gloffset_IsTexture 330
    393 #define _gloffset_PrioritizeTextures 331
    394 #define _gloffset_TexSubImage1D 332
    395 #define _gloffset_TexSubImage2D 333
    396 #define _gloffset_PopClientAttrib 334
    397 #define _gloffset_PushClientAttrib 335
    398 #define _gloffset_BlendColor 336
    399 #define _gloffset_BlendEquation 337
    400 #define _gloffset_DrawRangeElements 338
    401 #define _gloffset_ColorTable 339
    402 #define _gloffset_ColorTableParameterfv 340
    403 #define _gloffset_ColorTableParameteriv 341
    404 #define _gloffset_CopyColorTable 342
    405 #define _gloffset_GetColorTable 343
    406 #define _gloffset_GetColorTableParameterfv 344
    407 #define _gloffset_GetColorTableParameteriv 345
    408 #define _gloffset_ColorSubTable 346
    409 #define _gloffset_CopyColorSubTable 347
    410 #define _gloffset_ConvolutionFilter1D 348
    411 #define _gloffset_ConvolutionFilter2D 349
    412 #define _gloffset_ConvolutionParameterf 350
    413 #define _gloffset_ConvolutionParameterfv 351
    414 #define _gloffset_ConvolutionParameteri 352
    415 #define _gloffset_ConvolutionParameteriv 353
    416 #define _gloffset_CopyConvolutionFilter1D 354
    417 #define _gloffset_CopyConvolutionFilter2D 355
    418 #define _gloffset_GetConvolutionFilter 356
    419 #define _gloffset_GetConvolutionParameterfv 357
    420 #define _gloffset_GetConvolutionParameteriv 358
    421 #define _gloffset_GetSeparableFilter 359
    422 #define _gloffset_SeparableFilter2D 360
    423 #define _gloffset_GetHistogram 361
    424 #define _gloffset_GetHistogramParameterfv 362
    425 #define _gloffset_GetHistogramParameteriv 363
    426 #define _gloffset_GetMinmax 364
    427 #define _gloffset_GetMinmaxParameterfv 365
    428 #define _gloffset_GetMinmaxParameteriv 366
    429 #define _gloffset_Histogram 367
    430 #define _gloffset_Minmax 368
    431 #define _gloffset_ResetHistogram 369
    432 #define _gloffset_ResetMinmax 370
    433 #define _gloffset_TexImage3D 371
    434 #define _gloffset_TexSubImage3D 372
    435 #define _gloffset_CopyTexSubImage3D 373
    436 #define _gloffset_ActiveTexture 374
    437 #define _gloffset_ClientActiveTexture 375
    438 #define _gloffset_MultiTexCoord1d 376
    439 #define _gloffset_MultiTexCoord1dv 377
    440 #define _gloffset_MultiTexCoord1fARB 378
    441 #define _gloffset_MultiTexCoord1fvARB 379
    442 #define _gloffset_MultiTexCoord1i 380
    443 #define _gloffset_MultiTexCoord1iv 381
    444 #define _gloffset_MultiTexCoord1s 382
    445 #define _gloffset_MultiTexCoord1sv 383
    446 #define _gloffset_MultiTexCoord2d 384
    447 #define _gloffset_MultiTexCoord2dv 385
    448 #define _gloffset_MultiTexCoord2fARB 386
    449 #define _gloffset_MultiTexCoord2fvARB 387
    450 #define _gloffset_MultiTexCoord2i 388
    451 #define _gloffset_MultiTexCoord2iv 389
    452 #define _gloffset_MultiTexCoord2s 390
    453 #define _gloffset_MultiTexCoord2sv 391
    454 #define _gloffset_MultiTexCoord3d 392
    455 #define _gloffset_MultiTexCoord3dv 393
    456 #define _gloffset_MultiTexCoord3fARB 394
    457 #define _gloffset_MultiTexCoord3fvARB 395
    458 #define _gloffset_MultiTexCoord3i 396
    459 #define _gloffset_MultiTexCoord3iv 397
    460 #define _gloffset_MultiTexCoord3s 398
    461 #define _gloffset_MultiTexCoord3sv 399
    462 #define _gloffset_MultiTexCoord4d 400
    463 #define _gloffset_MultiTexCoord4dv 401
    464 #define _gloffset_MultiTexCoord4fARB 402
    465 #define _gloffset_MultiTexCoord4fvARB 403
    466 #define _gloffset_MultiTexCoord4i 404
    467 #define _gloffset_MultiTexCoord4iv 405
    468 #define _gloffset_MultiTexCoord4s 406
    469 #define _gloffset_MultiTexCoord4sv 407
    470 #define driDispatchRemapTable_size 922
    471 extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
    472 
    473 #define CompressedTexImage1D_remap_index 0
    474 #define CompressedTexImage2D_remap_index 1
    475 #define CompressedTexImage3D_remap_index 2
    476 #define CompressedTexSubImage1D_remap_index 3
    477 #define CompressedTexSubImage2D_remap_index 4
    478 #define CompressedTexSubImage3D_remap_index 5
    479 #define GetCompressedTexImage_remap_index 6
    480 #define LoadTransposeMatrixd_remap_index 7
    481 #define LoadTransposeMatrixf_remap_index 8
    482 #define MultTransposeMatrixd_remap_index 9
    483 #define MultTransposeMatrixf_remap_index 10
    484 #define SampleCoverage_remap_index 11
    485 #define BlendFuncSeparate_remap_index 12
    486 #define FogCoordPointer_remap_index 13
    487 #define FogCoordd_remap_index 14
    488 #define FogCoorddv_remap_index 15
    489 #define MultiDrawArrays_remap_index 16
    490 #define PointParameterf_remap_index 17
    491 #define PointParameterfv_remap_index 18
    492 #define PointParameteri_remap_index 19
    493 #define PointParameteriv_remap_index 20
    494 #define SecondaryColor3b_remap_index 21
    495 #define SecondaryColor3bv_remap_index 22
    496 #define SecondaryColor3d_remap_index 23
    497 #define SecondaryColor3dv_remap_index 24
    498 #define SecondaryColor3i_remap_index 25
    499 #define SecondaryColor3iv_remap_index 26
    500 #define SecondaryColor3s_remap_index 27
    501 #define SecondaryColor3sv_remap_index 28
    502 #define SecondaryColor3ub_remap_index 29
    503 #define SecondaryColor3ubv_remap_index 30
    504 #define SecondaryColor3ui_remap_index 31
    505 #define SecondaryColor3uiv_remap_index 32
    506 #define SecondaryColor3us_remap_index 33
    507 #define SecondaryColor3usv_remap_index 34
    508 #define SecondaryColorPointer_remap_index 35
    509 #define WindowPos2d_remap_index 36
    510 #define WindowPos2dv_remap_index 37
    511 #define WindowPos2f_remap_index 38
    512 #define WindowPos2fv_remap_index 39
    513 #define WindowPos2i_remap_index 40
    514 #define WindowPos2iv_remap_index 41
    515 #define WindowPos2s_remap_index 42
    516 #define WindowPos2sv_remap_index 43
    517 #define WindowPos3d_remap_index 44
    518 #define WindowPos3dv_remap_index 45
    519 #define WindowPos3f_remap_index 46
    520 #define WindowPos3fv_remap_index 47
    521 #define WindowPos3i_remap_index 48
    522 #define WindowPos3iv_remap_index 49
    523 #define WindowPos3s_remap_index 50
    524 #define WindowPos3sv_remap_index 51
    525 #define BeginQuery_remap_index 52
    526 #define BindBuffer_remap_index 53
    527 #define BufferData_remap_index 54
    528 #define BufferSubData_remap_index 55
    529 #define DeleteBuffers_remap_index 56
    530 #define DeleteQueries_remap_index 57
    531 #define EndQuery_remap_index 58
    532 #define GenBuffers_remap_index 59
    533 #define GenQueries_remap_index 60
    534 #define GetBufferParameteriv_remap_index 61
    535 #define GetBufferPointerv_remap_index 62
    536 #define GetBufferSubData_remap_index 63
    537 #define GetQueryObjectiv_remap_index 64
    538 #define GetQueryObjectuiv_remap_index 65
    539 #define GetQueryiv_remap_index 66
    540 #define IsBuffer_remap_index 67
    541 #define IsQuery_remap_index 68
    542 #define MapBuffer_remap_index 69
    543 #define UnmapBuffer_remap_index 70
    544 #define AttachShader_remap_index 71
    545 #define BindAttribLocation_remap_index 72
    546 #define BlendEquationSeparate_remap_index 73
    547 #define CompileShader_remap_index 74
    548 #define CreateProgram_remap_index 75
    549 #define CreateShader_remap_index 76
    550 #define DeleteProgram_remap_index 77
    551 #define DeleteShader_remap_index 78
    552 #define DetachShader_remap_index 79
    553 #define DisableVertexAttribArray_remap_index 80
    554 #define DrawBuffers_remap_index 81
    555 #define EnableVertexAttribArray_remap_index 82
    556 #define GetActiveAttrib_remap_index 83
    557 #define GetActiveUniform_remap_index 84
    558 #define GetAttachedShaders_remap_index 85
    559 #define GetAttribLocation_remap_index 86
    560 #define GetProgramInfoLog_remap_index 87
    561 #define GetProgramiv_remap_index 88
    562 #define GetShaderInfoLog_remap_index 89
    563 #define GetShaderSource_remap_index 90
    564 #define GetShaderiv_remap_index 91
    565 #define GetUniformLocation_remap_index 92
    566 #define GetUniformfv_remap_index 93
    567 #define GetUniformiv_remap_index 94
    568 #define GetVertexAttribPointerv_remap_index 95
    569 #define GetVertexAttribdv_remap_index 96
    570 #define GetVertexAttribfv_remap_index 97
    571 #define GetVertexAttribiv_remap_index 98
    572 #define IsProgram_remap_index 99
    573 #define IsShader_remap_index 100
    574 #define LinkProgram_remap_index 101
    575 #define ShaderSource_remap_index 102
    576 #define StencilFuncSeparate_remap_index 103
    577 #define StencilMaskSeparate_remap_index 104
    578 #define StencilOpSeparate_remap_index 105
    579 #define Uniform1f_remap_index 106
    580 #define Uniform1fv_remap_index 107
    581 #define Uniform1i_remap_index 108
    582 #define Uniform1iv_remap_index 109
    583 #define Uniform2f_remap_index 110
    584 #define Uniform2fv_remap_index 111
    585 #define Uniform2i_remap_index 112
    586 #define Uniform2iv_remap_index 113
    587 #define Uniform3f_remap_index 114
    588 #define Uniform3fv_remap_index 115
    589 #define Uniform3i_remap_index 116
    590 #define Uniform3iv_remap_index 117
    591 #define Uniform4f_remap_index 118
    592 #define Uniform4fv_remap_index 119
    593 #define Uniform4i_remap_index 120
    594 #define Uniform4iv_remap_index 121
    595 #define UniformMatrix2fv_remap_index 122
    596 #define UniformMatrix3fv_remap_index 123
    597 #define UniformMatrix4fv_remap_index 124
    598 #define UseProgram_remap_index 125
    599 #define ValidateProgram_remap_index 126
    600 #define VertexAttrib1d_remap_index 127
    601 #define VertexAttrib1dv_remap_index 128
    602 #define VertexAttrib1s_remap_index 129
    603 #define VertexAttrib1sv_remap_index 130
    604 #define VertexAttrib2d_remap_index 131
    605 #define VertexAttrib2dv_remap_index 132
    606 #define VertexAttrib2s_remap_index 133
    607 #define VertexAttrib2sv_remap_index 134
    608 #define VertexAttrib3d_remap_index 135
    609 #define VertexAttrib3dv_remap_index 136
    610 #define VertexAttrib3s_remap_index 137
    611 #define VertexAttrib3sv_remap_index 138
    612 #define VertexAttrib4Nbv_remap_index 139
    613 #define VertexAttrib4Niv_remap_index 140
    614 #define VertexAttrib4Nsv_remap_index 141
    615 #define VertexAttrib4Nub_remap_index 142
    616 #define VertexAttrib4Nubv_remap_index 143
    617 #define VertexAttrib4Nuiv_remap_index 144
    618 #define VertexAttrib4Nusv_remap_index 145
    619 #define VertexAttrib4bv_remap_index 146
    620 #define VertexAttrib4d_remap_index 147
    621 #define VertexAttrib4dv_remap_index 148
    622 #define VertexAttrib4iv_remap_index 149
    623 #define VertexAttrib4s_remap_index 150
    624 #define VertexAttrib4sv_remap_index 151
    625 #define VertexAttrib4ubv_remap_index 152
    626 #define VertexAttrib4uiv_remap_index 153
    627 #define VertexAttrib4usv_remap_index 154
    628 #define VertexAttribPointer_remap_index 155
    629 #define UniformMatrix2x3fv_remap_index 156
    630 #define UniformMatrix2x4fv_remap_index 157
    631 #define UniformMatrix3x2fv_remap_index 158
    632 #define UniformMatrix3x4fv_remap_index 159
    633 #define UniformMatrix4x2fv_remap_index 160
    634 #define UniformMatrix4x3fv_remap_index 161
    635 #define BeginConditionalRender_remap_index 162
    636 #define BeginTransformFeedback_remap_index 163
    637 #define BindBufferBase_remap_index 164
    638 #define BindBufferRange_remap_index 165
    639 #define BindFragDataLocation_remap_index 166
    640 #define ClampColor_remap_index 167
    641 #define ClearBufferfi_remap_index 168
    642 #define ClearBufferfv_remap_index 169
    643 #define ClearBufferiv_remap_index 170
    644 #define ClearBufferuiv_remap_index 171
    645 #define ColorMaski_remap_index 172
    646 #define Disablei_remap_index 173
    647 #define Enablei_remap_index 174
    648 #define EndConditionalRender_remap_index 175
    649 #define EndTransformFeedback_remap_index 176
    650 #define GetBooleani_v_remap_index 177
    651 #define GetFragDataLocation_remap_index 178
    652 #define GetIntegeri_v_remap_index 179
    653 #define GetStringi_remap_index 180
    654 #define GetTexParameterIiv_remap_index 181
    655 #define GetTexParameterIuiv_remap_index 182
    656 #define GetTransformFeedbackVarying_remap_index 183
    657 #define GetUniformuiv_remap_index 184
    658 #define GetVertexAttribIiv_remap_index 185
    659 #define GetVertexAttribIuiv_remap_index 186
    660 #define IsEnabledi_remap_index 187
    661 #define TexParameterIiv_remap_index 188
    662 #define TexParameterIuiv_remap_index 189
    663 #define TransformFeedbackVaryings_remap_index 190
    664 #define Uniform1ui_remap_index 191
    665 #define Uniform1uiv_remap_index 192
    666 #define Uniform2ui_remap_index 193
    667 #define Uniform2uiv_remap_index 194
    668 #define Uniform3ui_remap_index 195
    669 #define Uniform3uiv_remap_index 196
    670 #define Uniform4ui_remap_index 197
    671 #define Uniform4uiv_remap_index 198
    672 #define VertexAttribI1iv_remap_index 199
    673 #define VertexAttribI1uiv_remap_index 200
    674 #define VertexAttribI4bv_remap_index 201
    675 #define VertexAttribI4sv_remap_index 202
    676 #define VertexAttribI4ubv_remap_index 203
    677 #define VertexAttribI4usv_remap_index 204
    678 #define VertexAttribIPointer_remap_index 205
    679 #define PrimitiveRestartIndex_remap_index 206
    680 #define TexBuffer_remap_index 207
    681 #define FramebufferTexture_remap_index 208
    682 #define GetBufferParameteri64v_remap_index 209
    683 #define GetInteger64i_v_remap_index 210
    684 #define VertexAttribDivisor_remap_index 211
    685 #define MinSampleShading_remap_index 212
    686 #define MemoryBarrierByRegion_remap_index 213
    687 #define BindProgramARB_remap_index 214
    688 #define DeleteProgramsARB_remap_index 215
    689 #define GenProgramsARB_remap_index 216
    690 #define GetProgramEnvParameterdvARB_remap_index 217
    691 #define GetProgramEnvParameterfvARB_remap_index 218
    692 #define GetProgramLocalParameterdvARB_remap_index 219
    693 #define GetProgramLocalParameterfvARB_remap_index 220
    694 #define GetProgramStringARB_remap_index 221
    695 #define GetProgramivARB_remap_index 222
    696 #define IsProgramARB_remap_index 223
    697 #define ProgramEnvParameter4dARB_remap_index 224
    698 #define ProgramEnvParameter4dvARB_remap_index 225
    699 #define ProgramEnvParameter4fARB_remap_index 226
    700 #define ProgramEnvParameter4fvARB_remap_index 227
    701 #define ProgramLocalParameter4dARB_remap_index 228
    702 #define ProgramLocalParameter4dvARB_remap_index 229
    703 #define ProgramLocalParameter4fARB_remap_index 230
    704 #define ProgramLocalParameter4fvARB_remap_index 231
    705 #define ProgramStringARB_remap_index 232
    706 #define VertexAttrib1fARB_remap_index 233
    707 #define VertexAttrib1fvARB_remap_index 234
    708 #define VertexAttrib2fARB_remap_index 235
    709 #define VertexAttrib2fvARB_remap_index 236
    710 #define VertexAttrib3fARB_remap_index 237
    711 #define VertexAttrib3fvARB_remap_index 238
    712 #define VertexAttrib4fARB_remap_index 239
    713 #define VertexAttrib4fvARB_remap_index 240
    714 #define AttachObjectARB_remap_index 241
    715 #define CreateProgramObjectARB_remap_index 242
    716 #define CreateShaderObjectARB_remap_index 243
    717 #define DeleteObjectARB_remap_index 244
    718 #define DetachObjectARB_remap_index 245
    719 #define GetAttachedObjectsARB_remap_index 246
    720 #define GetHandleARB_remap_index 247
    721 #define GetInfoLogARB_remap_index 248
    722 #define GetObjectParameterfvARB_remap_index 249
    723 #define GetObjectParameterivARB_remap_index 250
    724 #define DrawArraysInstancedARB_remap_index 251
    725 #define DrawElementsInstancedARB_remap_index 252
    726 #define BindFramebuffer_remap_index 253
    727 #define BindRenderbuffer_remap_index 254
    728 #define BlitFramebuffer_remap_index 255
    729 #define CheckFramebufferStatus_remap_index 256
    730 #define DeleteFramebuffers_remap_index 257
    731 #define DeleteRenderbuffers_remap_index 258
    732 #define FramebufferRenderbuffer_remap_index 259
    733 #define FramebufferTexture1D_remap_index 260
    734 #define FramebufferTexture2D_remap_index 261
    735 #define FramebufferTexture3D_remap_index 262
    736 #define FramebufferTextureLayer_remap_index 263
    737 #define GenFramebuffers_remap_index 264
    738 #define GenRenderbuffers_remap_index 265
    739 #define GenerateMipmap_remap_index 266
    740 #define GetFramebufferAttachmentParameteriv_remap_index 267
    741 #define GetRenderbufferParameteriv_remap_index 268
    742 #define IsFramebuffer_remap_index 269
    743 #define IsRenderbuffer_remap_index 270
    744 #define RenderbufferStorage_remap_index 271
    745 #define RenderbufferStorageMultisample_remap_index 272
    746 #define FlushMappedBufferRange_remap_index 273
    747 #define MapBufferRange_remap_index 274
    748 #define BindVertexArray_remap_index 275
    749 #define DeleteVertexArrays_remap_index 276
    750 #define GenVertexArrays_remap_index 277
    751 #define IsVertexArray_remap_index 278
    752 #define GetActiveUniformBlockName_remap_index 279
    753 #define GetActiveUniformBlockiv_remap_index 280
    754 #define GetActiveUniformName_remap_index 281
    755 #define GetActiveUniformsiv_remap_index 282
    756 #define GetUniformBlockIndex_remap_index 283
    757 #define GetUniformIndices_remap_index 284
    758 #define UniformBlockBinding_remap_index 285
    759 #define CopyBufferSubData_remap_index 286
    760 #define ClientWaitSync_remap_index 287
    761 #define DeleteSync_remap_index 288
    762 #define FenceSync_remap_index 289
    763 #define GetInteger64v_remap_index 290
    764 #define GetSynciv_remap_index 291
    765 #define IsSync_remap_index 292
    766 #define WaitSync_remap_index 293
    767 #define DrawElementsBaseVertex_remap_index 294
    768 #define DrawElementsInstancedBaseVertex_remap_index 295
    769 #define DrawRangeElementsBaseVertex_remap_index 296
    770 #define MultiDrawElementsBaseVertex_remap_index 297
    771 #define ProvokingVertex_remap_index 298
    772 #define GetMultisamplefv_remap_index 299
    773 #define SampleMaski_remap_index 300
    774 #define TexImage2DMultisample_remap_index 301
    775 #define TexImage3DMultisample_remap_index 302
    776 #define BlendEquationSeparateiARB_remap_index 303
    777 #define BlendEquationiARB_remap_index 304
    778 #define BlendFuncSeparateiARB_remap_index 305
    779 #define BlendFunciARB_remap_index 306
    780 #define BindFragDataLocationIndexed_remap_index 307
    781 #define GetFragDataIndex_remap_index 308
    782 #define BindSampler_remap_index 309
    783 #define DeleteSamplers_remap_index 310
    784 #define GenSamplers_remap_index 311
    785 #define GetSamplerParameterIiv_remap_index 312
    786 #define GetSamplerParameterIuiv_remap_index 313
    787 #define GetSamplerParameterfv_remap_index 314
    788 #define GetSamplerParameteriv_remap_index 315
    789 #define IsSampler_remap_index 316
    790 #define SamplerParameterIiv_remap_index 317
    791 #define SamplerParameterIuiv_remap_index 318
    792 #define SamplerParameterf_remap_index 319
    793 #define SamplerParameterfv_remap_index 320
    794 #define SamplerParameteri_remap_index 321
    795 #define SamplerParameteriv_remap_index 322
    796 #define GetQueryObjecti64v_remap_index 323
    797 #define GetQueryObjectui64v_remap_index 324
    798 #define QueryCounter_remap_index 325
    799 #define ColorP3ui_remap_index 326
    800 #define ColorP3uiv_remap_index 327
    801 #define ColorP4ui_remap_index 328
    802 #define ColorP4uiv_remap_index 329
    803 #define MultiTexCoordP1ui_remap_index 330
    804 #define MultiTexCoordP1uiv_remap_index 331
    805 #define MultiTexCoordP2ui_remap_index 332
    806 #define MultiTexCoordP2uiv_remap_index 333
    807 #define MultiTexCoordP3ui_remap_index 334
    808 #define MultiTexCoordP3uiv_remap_index 335
    809 #define MultiTexCoordP4ui_remap_index 336
    810 #define MultiTexCoordP4uiv_remap_index 337
    811 #define NormalP3ui_remap_index 338
    812 #define NormalP3uiv_remap_index 339
    813 #define SecondaryColorP3ui_remap_index 340
    814 #define SecondaryColorP3uiv_remap_index 341
    815 #define TexCoordP1ui_remap_index 342
    816 #define TexCoordP1uiv_remap_index 343
    817 #define TexCoordP2ui_remap_index 344
    818 #define TexCoordP2uiv_remap_index 345
    819 #define TexCoordP3ui_remap_index 346
    820 #define TexCoordP3uiv_remap_index 347
    821 #define TexCoordP4ui_remap_index 348
    822 #define TexCoordP4uiv_remap_index 349
    823 #define VertexAttribP1ui_remap_index 350
    824 #define VertexAttribP1uiv_remap_index 351
    825 #define VertexAttribP2ui_remap_index 352
    826 #define VertexAttribP2uiv_remap_index 353
    827 #define VertexAttribP3ui_remap_index 354
    828 #define VertexAttribP3uiv_remap_index 355
    829 #define VertexAttribP4ui_remap_index 356
    830 #define VertexAttribP4uiv_remap_index 357
    831 #define VertexP2ui_remap_index 358
    832 #define VertexP2uiv_remap_index 359
    833 #define VertexP3ui_remap_index 360
    834 #define VertexP3uiv_remap_index 361
    835 #define VertexP4ui_remap_index 362
    836 #define VertexP4uiv_remap_index 363
    837 #define DrawArraysIndirect_remap_index 364
    838 #define DrawElementsIndirect_remap_index 365
    839 #define GetUniformdv_remap_index 366
    840 #define Uniform1d_remap_index 367
    841 #define Uniform1dv_remap_index 368
    842 #define Uniform2d_remap_index 369
    843 #define Uniform2dv_remap_index 370
    844 #define Uniform3d_remap_index 371
    845 #define Uniform3dv_remap_index 372
    846 #define Uniform4d_remap_index 373
    847 #define Uniform4dv_remap_index 374
    848 #define UniformMatrix2dv_remap_index 375
    849 #define UniformMatrix2x3dv_remap_index 376
    850 #define UniformMatrix2x4dv_remap_index 377
    851 #define UniformMatrix3dv_remap_index 378
    852 #define UniformMatrix3x2dv_remap_index 379
    853 #define UniformMatrix3x4dv_remap_index 380
    854 #define UniformMatrix4dv_remap_index 381
    855 #define UniformMatrix4x2dv_remap_index 382
    856 #define UniformMatrix4x3dv_remap_index 383
    857 #define GetActiveSubroutineName_remap_index 384
    858 #define GetActiveSubroutineUniformName_remap_index 385
    859 #define GetActiveSubroutineUniformiv_remap_index 386
    860 #define GetProgramStageiv_remap_index 387
    861 #define GetSubroutineIndex_remap_index 388
    862 #define GetSubroutineUniformLocation_remap_index 389
    863 #define GetUniformSubroutineuiv_remap_index 390
    864 #define UniformSubroutinesuiv_remap_index 391
    865 #define PatchParameterfv_remap_index 392
    866 #define PatchParameteri_remap_index 393
    867 #define BindTransformFeedback_remap_index 394
    868 #define DeleteTransformFeedbacks_remap_index 395
    869 #define DrawTransformFeedback_remap_index 396
    870 #define GenTransformFeedbacks_remap_index 397
    871 #define IsTransformFeedback_remap_index 398
    872 #define PauseTransformFeedback_remap_index 399
    873 #define ResumeTransformFeedback_remap_index 400
    874 #define BeginQueryIndexed_remap_index 401
    875 #define DrawTransformFeedbackStream_remap_index 402
    876 #define EndQueryIndexed_remap_index 403
    877 #define GetQueryIndexediv_remap_index 404
    878 #define ClearDepthf_remap_index 405
    879 #define DepthRangef_remap_index 406
    880 #define GetShaderPrecisionFormat_remap_index 407
    881 #define ReleaseShaderCompiler_remap_index 408
    882 #define ShaderBinary_remap_index 409
    883 #define GetProgramBinary_remap_index 410
    884 #define ProgramBinary_remap_index 411
    885 #define ProgramParameteri_remap_index 412
    886 #define GetVertexAttribLdv_remap_index 413
    887 #define VertexAttribL1d_remap_index 414
    888 #define VertexAttribL1dv_remap_index 415
    889 #define VertexAttribL2d_remap_index 416
    890 #define VertexAttribL2dv_remap_index 417
    891 #define VertexAttribL3d_remap_index 418
    892 #define VertexAttribL3dv_remap_index 419
    893 #define VertexAttribL4d_remap_index 420
    894 #define VertexAttribL4dv_remap_index 421
    895 #define VertexAttribLPointer_remap_index 422
    896 #define DepthRangeArrayv_remap_index 423
    897 #define DepthRangeIndexed_remap_index 424
    898 #define GetDoublei_v_remap_index 425
    899 #define GetFloati_v_remap_index 426
    900 #define ScissorArrayv_remap_index 427
    901 #define ScissorIndexed_remap_index 428
    902 #define ScissorIndexedv_remap_index 429
    903 #define ViewportArrayv_remap_index 430
    904 #define ViewportIndexedf_remap_index 431
    905 #define ViewportIndexedfv_remap_index 432
    906 #define GetGraphicsResetStatusARB_remap_index 433
    907 #define GetnColorTableARB_remap_index 434
    908 #define GetnCompressedTexImageARB_remap_index 435
    909 #define GetnConvolutionFilterARB_remap_index 436
    910 #define GetnHistogramARB_remap_index 437
    911 #define GetnMapdvARB_remap_index 438
    912 #define GetnMapfvARB_remap_index 439
    913 #define GetnMapivARB_remap_index 440
    914 #define GetnMinmaxARB_remap_index 441
    915 #define GetnPixelMapfvARB_remap_index 442
    916 #define GetnPixelMapuivARB_remap_index 443
    917 #define GetnPixelMapusvARB_remap_index 444
    918 #define GetnPolygonStippleARB_remap_index 445
    919 #define GetnSeparableFilterARB_remap_index 446
    920 #define GetnTexImageARB_remap_index 447
    921 #define GetnUniformdvARB_remap_index 448
    922 #define GetnUniformfvARB_remap_index 449
    923 #define GetnUniformivARB_remap_index 450
    924 #define GetnUniformuivARB_remap_index 451
    925 #define ReadnPixelsARB_remap_index 452
    926 #define DrawArraysInstancedBaseInstance_remap_index 453
    927 #define DrawElementsInstancedBaseInstance_remap_index 454
    928 #define DrawElementsInstancedBaseVertexBaseInstance_remap_index 455
    929 #define DrawTransformFeedbackInstanced_remap_index 456
    930 #define DrawTransformFeedbackStreamInstanced_remap_index 457
    931 #define GetInternalformativ_remap_index 458
    932 #define GetActiveAtomicCounterBufferiv_remap_index 459
    933 #define BindImageTexture_remap_index 460
    934 #define MemoryBarrier_remap_index 461
    935 #define TexStorage1D_remap_index 462
    936 #define TexStorage2D_remap_index 463
    937 #define TexStorage3D_remap_index 464
    938 #define TextureStorage1DEXT_remap_index 465
    939 #define TextureStorage2DEXT_remap_index 466
    940 #define TextureStorage3DEXT_remap_index 467
    941 #define ClearBufferData_remap_index 468
    942 #define ClearBufferSubData_remap_index 469
    943 #define DispatchCompute_remap_index 470
    944 #define DispatchComputeIndirect_remap_index 471
    945 #define CopyImageSubData_remap_index 472
    946 #define TextureView_remap_index 473
    947 #define BindVertexBuffer_remap_index 474
    948 #define VertexAttribBinding_remap_index 475
    949 #define VertexAttribFormat_remap_index 476
    950 #define VertexAttribIFormat_remap_index 477
    951 #define VertexAttribLFormat_remap_index 478
    952 #define VertexBindingDivisor_remap_index 479
    953 #define FramebufferParameteri_remap_index 480
    954 #define GetFramebufferParameteriv_remap_index 481
    955 #define GetInternalformati64v_remap_index 482
    956 #define MultiDrawArraysIndirect_remap_index 483
    957 #define MultiDrawElementsIndirect_remap_index 484
    958 #define GetProgramInterfaceiv_remap_index 485
    959 #define GetProgramResourceIndex_remap_index 486
    960 #define GetProgramResourceLocation_remap_index 487
    961 #define GetProgramResourceLocationIndex_remap_index 488
    962 #define GetProgramResourceName_remap_index 489
    963 #define GetProgramResourceiv_remap_index 490
    964 #define ShaderStorageBlockBinding_remap_index 491
    965 #define TexBufferRange_remap_index 492
    966 #define TexStorage2DMultisample_remap_index 493
    967 #define TexStorage3DMultisample_remap_index 494
    968 #define BufferStorage_remap_index 495
    969 #define ClearTexImage_remap_index 496
    970 #define ClearTexSubImage_remap_index 497
    971 #define BindBuffersBase_remap_index 498
    972 #define BindBuffersRange_remap_index 499
    973 #define BindImageTextures_remap_index 500
    974 #define BindSamplers_remap_index 501
    975 #define BindTextures_remap_index 502
    976 #define BindVertexBuffers_remap_index 503
    977 #define DispatchComputeGroupSizeARB_remap_index 504
    978 #define MultiDrawArraysIndirectCountARB_remap_index 505
    979 #define MultiDrawElementsIndirectCountARB_remap_index 506
    980 #define ClipControl_remap_index 507
    981 #define BindTextureUnit_remap_index 508
    982 #define BlitNamedFramebuffer_remap_index 509
    983 #define CheckNamedFramebufferStatus_remap_index 510
    984 #define ClearNamedBufferData_remap_index 511
    985 #define ClearNamedBufferSubData_remap_index 512
    986 #define ClearNamedFramebufferfi_remap_index 513
    987 #define ClearNamedFramebufferfv_remap_index 514
    988 #define ClearNamedFramebufferiv_remap_index 515
    989 #define ClearNamedFramebufferuiv_remap_index 516
    990 #define CompressedTextureSubImage1D_remap_index 517
    991 #define CompressedTextureSubImage2D_remap_index 518
    992 #define CompressedTextureSubImage3D_remap_index 519
    993 #define CopyNamedBufferSubData_remap_index 520
    994 #define CopyTextureSubImage1D_remap_index 521
    995 #define CopyTextureSubImage2D_remap_index 522
    996 #define CopyTextureSubImage3D_remap_index 523
    997 #define CreateBuffers_remap_index 524
    998 #define CreateFramebuffers_remap_index 525
    999 #define CreateProgramPipelines_remap_index 526
   1000 #define CreateQueries_remap_index 527
   1001 #define CreateRenderbuffers_remap_index 528
   1002 #define CreateSamplers_remap_index 529
   1003 #define CreateTextures_remap_index 530
   1004 #define CreateTransformFeedbacks_remap_index 531
   1005 #define CreateVertexArrays_remap_index 532
   1006 #define DisableVertexArrayAttrib_remap_index 533
   1007 #define EnableVertexArrayAttrib_remap_index 534
   1008 #define FlushMappedNamedBufferRange_remap_index 535
   1009 #define GenerateTextureMipmap_remap_index 536
   1010 #define GetCompressedTextureImage_remap_index 537
   1011 #define GetNamedBufferParameteri64v_remap_index 538
   1012 #define GetNamedBufferParameteriv_remap_index 539
   1013 #define GetNamedBufferPointerv_remap_index 540
   1014 #define GetNamedBufferSubData_remap_index 541
   1015 #define GetNamedFramebufferAttachmentParameteriv_remap_index 542
   1016 #define GetNamedFramebufferParameteriv_remap_index 543
   1017 #define GetNamedRenderbufferParameteriv_remap_index 544
   1018 #define GetQueryBufferObjecti64v_remap_index 545
   1019 #define GetQueryBufferObjectiv_remap_index 546
   1020 #define GetQueryBufferObjectui64v_remap_index 547
   1021 #define GetQueryBufferObjectuiv_remap_index 548
   1022 #define GetTextureImage_remap_index 549
   1023 #define GetTextureLevelParameterfv_remap_index 550
   1024 #define GetTextureLevelParameteriv_remap_index 551
   1025 #define GetTextureParameterIiv_remap_index 552
   1026 #define GetTextureParameterIuiv_remap_index 553
   1027 #define GetTextureParameterfv_remap_index 554
   1028 #define GetTextureParameteriv_remap_index 555
   1029 #define GetTransformFeedbacki64_v_remap_index 556
   1030 #define GetTransformFeedbacki_v_remap_index 557
   1031 #define GetTransformFeedbackiv_remap_index 558
   1032 #define GetVertexArrayIndexed64iv_remap_index 559
   1033 #define GetVertexArrayIndexediv_remap_index 560
   1034 #define GetVertexArrayiv_remap_index 561
   1035 #define InvalidateNamedFramebufferData_remap_index 562
   1036 #define InvalidateNamedFramebufferSubData_remap_index 563
   1037 #define MapNamedBuffer_remap_index 564
   1038 #define MapNamedBufferRange_remap_index 565
   1039 #define NamedBufferData_remap_index 566
   1040 #define NamedBufferStorage_remap_index 567
   1041 #define NamedBufferSubData_remap_index 568
   1042 #define NamedFramebufferDrawBuffer_remap_index 569
   1043 #define NamedFramebufferDrawBuffers_remap_index 570
   1044 #define NamedFramebufferParameteri_remap_index 571
   1045 #define NamedFramebufferReadBuffer_remap_index 572
   1046 #define NamedFramebufferRenderbuffer_remap_index 573
   1047 #define NamedFramebufferTexture_remap_index 574
   1048 #define NamedFramebufferTextureLayer_remap_index 575
   1049 #define NamedRenderbufferStorage_remap_index 576
   1050 #define NamedRenderbufferStorageMultisample_remap_index 577
   1051 #define TextureBuffer_remap_index 578
   1052 #define TextureBufferRange_remap_index 579
   1053 #define TextureParameterIiv_remap_index 580
   1054 #define TextureParameterIuiv_remap_index 581
   1055 #define TextureParameterf_remap_index 582
   1056 #define TextureParameterfv_remap_index 583
   1057 #define TextureParameteri_remap_index 584
   1058 #define TextureParameteriv_remap_index 585
   1059 #define TextureStorage1D_remap_index 586
   1060 #define TextureStorage2D_remap_index 587
   1061 #define TextureStorage2DMultisample_remap_index 588
   1062 #define TextureStorage3D_remap_index 589
   1063 #define TextureStorage3DMultisample_remap_index 590
   1064 #define TextureSubImage1D_remap_index 591
   1065 #define TextureSubImage2D_remap_index 592
   1066 #define TextureSubImage3D_remap_index 593
   1067 #define TransformFeedbackBufferBase_remap_index 594
   1068 #define TransformFeedbackBufferRange_remap_index 595
   1069 #define UnmapNamedBuffer_remap_index 596
   1070 #define VertexArrayAttribBinding_remap_index 597
   1071 #define VertexArrayAttribFormat_remap_index 598
   1072 #define VertexArrayAttribIFormat_remap_index 599
   1073 #define VertexArrayAttribLFormat_remap_index 600
   1074 #define VertexArrayBindingDivisor_remap_index 601
   1075 #define VertexArrayElementBuffer_remap_index 602
   1076 #define VertexArrayVertexBuffer_remap_index 603
   1077 #define VertexArrayVertexBuffers_remap_index 604
   1078 #define GetCompressedTextureSubImage_remap_index 605
   1079 #define GetTextureSubImage_remap_index 606
   1080 #define InvalidateBufferData_remap_index 607
   1081 #define InvalidateBufferSubData_remap_index 608
   1082 #define InvalidateFramebuffer_remap_index 609
   1083 #define InvalidateSubFramebuffer_remap_index 610
   1084 #define InvalidateTexImage_remap_index 611
   1085 #define InvalidateTexSubImage_remap_index 612
   1086 #define PolygonOffsetEXT_remap_index 613
   1087 #define DrawTexfOES_remap_index 614
   1088 #define DrawTexfvOES_remap_index 615
   1089 #define DrawTexiOES_remap_index 616
   1090 #define DrawTexivOES_remap_index 617
   1091 #define DrawTexsOES_remap_index 618
   1092 #define DrawTexsvOES_remap_index 619
   1093 #define DrawTexxOES_remap_index 620
   1094 #define DrawTexxvOES_remap_index 621
   1095 #define PointSizePointerOES_remap_index 622
   1096 #define QueryMatrixxOES_remap_index 623
   1097 #define SampleMaskSGIS_remap_index 624
   1098 #define SamplePatternSGIS_remap_index 625
   1099 #define ColorPointerEXT_remap_index 626
   1100 #define EdgeFlagPointerEXT_remap_index 627
   1101 #define IndexPointerEXT_remap_index 628
   1102 #define NormalPointerEXT_remap_index 629
   1103 #define TexCoordPointerEXT_remap_index 630
   1104 #define VertexPointerEXT_remap_index 631
   1105 #define DiscardFramebufferEXT_remap_index 632
   1106 #define ActiveShaderProgram_remap_index 633
   1107 #define BindProgramPipeline_remap_index 634
   1108 #define CreateShaderProgramv_remap_index 635
   1109 #define DeleteProgramPipelines_remap_index 636
   1110 #define GenProgramPipelines_remap_index 637
   1111 #define GetProgramPipelineInfoLog_remap_index 638
   1112 #define GetProgramPipelineiv_remap_index 639
   1113 #define IsProgramPipeline_remap_index 640
   1114 #define LockArraysEXT_remap_index 641
   1115 #define ProgramUniform1d_remap_index 642
   1116 #define ProgramUniform1dv_remap_index 643
   1117 #define ProgramUniform1f_remap_index 644
   1118 #define ProgramUniform1fv_remap_index 645
   1119 #define ProgramUniform1i_remap_index 646
   1120 #define ProgramUniform1iv_remap_index 647
   1121 #define ProgramUniform1ui_remap_index 648
   1122 #define ProgramUniform1uiv_remap_index 649
   1123 #define ProgramUniform2d_remap_index 650
   1124 #define ProgramUniform2dv_remap_index 651
   1125 #define ProgramUniform2f_remap_index 652
   1126 #define ProgramUniform2fv_remap_index 653
   1127 #define ProgramUniform2i_remap_index 654
   1128 #define ProgramUniform2iv_remap_index 655
   1129 #define ProgramUniform2ui_remap_index 656
   1130 #define ProgramUniform2uiv_remap_index 657
   1131 #define ProgramUniform3d_remap_index 658
   1132 #define ProgramUniform3dv_remap_index 659
   1133 #define ProgramUniform3f_remap_index 660
   1134 #define ProgramUniform3fv_remap_index 661
   1135 #define ProgramUniform3i_remap_index 662
   1136 #define ProgramUniform3iv_remap_index 663
   1137 #define ProgramUniform3ui_remap_index 664
   1138 #define ProgramUniform3uiv_remap_index 665
   1139 #define ProgramUniform4d_remap_index 666
   1140 #define ProgramUniform4dv_remap_index 667
   1141 #define ProgramUniform4f_remap_index 668
   1142 #define ProgramUniform4fv_remap_index 669
   1143 #define ProgramUniform4i_remap_index 670
   1144 #define ProgramUniform4iv_remap_index 671
   1145 #define ProgramUniform4ui_remap_index 672
   1146 #define ProgramUniform4uiv_remap_index 673
   1147 #define ProgramUniformMatrix2dv_remap_index 674
   1148 #define ProgramUniformMatrix2fv_remap_index 675
   1149 #define ProgramUniformMatrix2x3dv_remap_index 676
   1150 #define ProgramUniformMatrix2x3fv_remap_index 677
   1151 #define ProgramUniformMatrix2x4dv_remap_index 678
   1152 #define ProgramUniformMatrix2x4fv_remap_index 679
   1153 #define ProgramUniformMatrix3dv_remap_index 680
   1154 #define ProgramUniformMatrix3fv_remap_index 681
   1155 #define ProgramUniformMatrix3x2dv_remap_index 682
   1156 #define ProgramUniformMatrix3x2fv_remap_index 683
   1157 #define ProgramUniformMatrix3x4dv_remap_index 684
   1158 #define ProgramUniformMatrix3x4fv_remap_index 685
   1159 #define ProgramUniformMatrix4dv_remap_index 686
   1160 #define ProgramUniformMatrix4fv_remap_index 687
   1161 #define ProgramUniformMatrix4x2dv_remap_index 688
   1162 #define ProgramUniformMatrix4x2fv_remap_index 689
   1163 #define ProgramUniformMatrix4x3dv_remap_index 690
   1164 #define ProgramUniformMatrix4x3fv_remap_index 691
   1165 #define UnlockArraysEXT_remap_index 692
   1166 #define UseProgramStages_remap_index 693
   1167 #define ValidateProgramPipeline_remap_index 694
   1168 #define DebugMessageCallback_remap_index 695
   1169 #define DebugMessageControl_remap_index 696
   1170 #define DebugMessageInsert_remap_index 697
   1171 #define GetDebugMessageLog_remap_index 698
   1172 #define GetObjectLabel_remap_index 699
   1173 #define GetObjectPtrLabel_remap_index 700
   1174 #define ObjectLabel_remap_index 701
   1175 #define ObjectPtrLabel_remap_index 702
   1176 #define PopDebugGroup_remap_index 703
   1177 #define PushDebugGroup_remap_index 704
   1178 #define SecondaryColor3fEXT_remap_index 705
   1179 #define SecondaryColor3fvEXT_remap_index 706
   1180 #define MultiDrawElementsEXT_remap_index 707
   1181 #define FogCoordfEXT_remap_index 708
   1182 #define FogCoordfvEXT_remap_index 709
   1183 #define ResizeBuffersMESA_remap_index 710
   1184 #define WindowPos4dMESA_remap_index 711
   1185 #define WindowPos4dvMESA_remap_index 712
   1186 #define WindowPos4fMESA_remap_index 713
   1187 #define WindowPos4fvMESA_remap_index 714
   1188 #define WindowPos4iMESA_remap_index 715
   1189 #define WindowPos4ivMESA_remap_index 716
   1190 #define WindowPos4sMESA_remap_index 717
   1191 #define WindowPos4svMESA_remap_index 718
   1192 #define MultiModeDrawArraysIBM_remap_index 719
   1193 #define MultiModeDrawElementsIBM_remap_index 720
   1194 #define AreProgramsResidentNV_remap_index 721
   1195 #define ExecuteProgramNV_remap_index 722
   1196 #define GetProgramParameterdvNV_remap_index 723
   1197 #define GetProgramParameterfvNV_remap_index 724
   1198 #define GetProgramStringNV_remap_index 725
   1199 #define GetProgramivNV_remap_index 726
   1200 #define GetTrackMatrixivNV_remap_index 727
   1201 #define GetVertexAttribdvNV_remap_index 728
   1202 #define GetVertexAttribfvNV_remap_index 729
   1203 #define GetVertexAttribivNV_remap_index 730
   1204 #define LoadProgramNV_remap_index 731
   1205 #define ProgramParameters4dvNV_remap_index 732
   1206 #define ProgramParameters4fvNV_remap_index 733
   1207 #define RequestResidentProgramsNV_remap_index 734
   1208 #define TrackMatrixNV_remap_index 735
   1209 #define VertexAttrib1dNV_remap_index 736
   1210 #define VertexAttrib1dvNV_remap_index 737
   1211 #define VertexAttrib1fNV_remap_index 738
   1212 #define VertexAttrib1fvNV_remap_index 739
   1213 #define VertexAttrib1sNV_remap_index 740
   1214 #define VertexAttrib1svNV_remap_index 741
   1215 #define VertexAttrib2dNV_remap_index 742
   1216 #define VertexAttrib2dvNV_remap_index 743
   1217 #define VertexAttrib2fNV_remap_index 744
   1218 #define VertexAttrib2fvNV_remap_index 745
   1219 #define VertexAttrib2sNV_remap_index 746
   1220 #define VertexAttrib2svNV_remap_index 747
   1221 #define VertexAttrib3dNV_remap_index 748
   1222 #define VertexAttrib3dvNV_remap_index 749
   1223 #define VertexAttrib3fNV_remap_index 750
   1224 #define VertexAttrib3fvNV_remap_index 751
   1225 #define VertexAttrib3sNV_remap_index 752
   1226 #define VertexAttrib3svNV_remap_index 753
   1227 #define VertexAttrib4dNV_remap_index 754
   1228 #define VertexAttrib4dvNV_remap_index 755
   1229 #define VertexAttrib4fNV_remap_index 756
   1230 #define VertexAttrib4fvNV_remap_index 757
   1231 #define VertexAttrib4sNV_remap_index 758
   1232 #define VertexAttrib4svNV_remap_index 759
   1233 #define VertexAttrib4ubNV_remap_index 760
   1234 #define VertexAttrib4ubvNV_remap_index 761
   1235 #define VertexAttribPointerNV_remap_index 762
   1236 #define VertexAttribs1dvNV_remap_index 763
   1237 #define VertexAttribs1fvNV_remap_index 764
   1238 #define VertexAttribs1svNV_remap_index 765
   1239 #define VertexAttribs2dvNV_remap_index 766
   1240 #define VertexAttribs2fvNV_remap_index 767
   1241 #define VertexAttribs2svNV_remap_index 768
   1242 #define VertexAttribs3dvNV_remap_index 769
   1243 #define VertexAttribs3fvNV_remap_index 770
   1244 #define VertexAttribs3svNV_remap_index 771
   1245 #define VertexAttribs4dvNV_remap_index 772
   1246 #define VertexAttribs4fvNV_remap_index 773
   1247 #define VertexAttribs4svNV_remap_index 774
   1248 #define VertexAttribs4ubvNV_remap_index 775
   1249 #define GetTexBumpParameterfvATI_remap_index 776
   1250 #define GetTexBumpParameterivATI_remap_index 777
   1251 #define TexBumpParameterfvATI_remap_index 778
   1252 #define TexBumpParameterivATI_remap_index 779
   1253 #define AlphaFragmentOp1ATI_remap_index 780
   1254 #define AlphaFragmentOp2ATI_remap_index 781
   1255 #define AlphaFragmentOp3ATI_remap_index 782
   1256 #define BeginFragmentShaderATI_remap_index 783
   1257 #define BindFragmentShaderATI_remap_index 784
   1258 #define ColorFragmentOp1ATI_remap_index 785
   1259 #define ColorFragmentOp2ATI_remap_index 786
   1260 #define ColorFragmentOp3ATI_remap_index 787
   1261 #define DeleteFragmentShaderATI_remap_index 788
   1262 #define EndFragmentShaderATI_remap_index 789
   1263 #define GenFragmentShadersATI_remap_index 790
   1264 #define PassTexCoordATI_remap_index 791
   1265 #define SampleMapATI_remap_index 792
   1266 #define SetFragmentShaderConstantATI_remap_index 793
   1267 #define DepthRangeArrayfvOES_remap_index 794
   1268 #define DepthRangeIndexedfOES_remap_index 795
   1269 #define ActiveStencilFaceEXT_remap_index 796
   1270 #define BindVertexArrayAPPLE_remap_index 797
   1271 #define GenVertexArraysAPPLE_remap_index 798
   1272 #define GetProgramNamedParameterdvNV_remap_index 799
   1273 #define GetProgramNamedParameterfvNV_remap_index 800
   1274 #define ProgramNamedParameter4dNV_remap_index 801
   1275 #define ProgramNamedParameter4dvNV_remap_index 802
   1276 #define ProgramNamedParameter4fNV_remap_index 803
   1277 #define ProgramNamedParameter4fvNV_remap_index 804
   1278 #define PrimitiveRestartNV_remap_index 805
   1279 #define GetTexGenxvOES_remap_index 806
   1280 #define TexGenxOES_remap_index 807
   1281 #define TexGenxvOES_remap_index 808
   1282 #define DepthBoundsEXT_remap_index 809
   1283 #define BindFramebufferEXT_remap_index 810
   1284 #define BindRenderbufferEXT_remap_index 811
   1285 #define StringMarkerGREMEDY_remap_index 812
   1286 #define BufferParameteriAPPLE_remap_index 813
   1287 #define FlushMappedBufferRangeAPPLE_remap_index 814
   1288 #define VertexAttribI1iEXT_remap_index 815
   1289 #define VertexAttribI1uiEXT_remap_index 816
   1290 #define VertexAttribI2iEXT_remap_index 817
   1291 #define VertexAttribI2ivEXT_remap_index 818
   1292 #define VertexAttribI2uiEXT_remap_index 819
   1293 #define VertexAttribI2uivEXT_remap_index 820
   1294 #define VertexAttribI3iEXT_remap_index 821
   1295 #define VertexAttribI3ivEXT_remap_index 822
   1296 #define VertexAttribI3uiEXT_remap_index 823
   1297 #define VertexAttribI3uivEXT_remap_index 824
   1298 #define VertexAttribI4iEXT_remap_index 825
   1299 #define VertexAttribI4ivEXT_remap_index 826
   1300 #define VertexAttribI4uiEXT_remap_index 827
   1301 #define VertexAttribI4uivEXT_remap_index 828
   1302 #define ClearColorIiEXT_remap_index 829
   1303 #define ClearColorIuiEXT_remap_index 830
   1304 #define BindBufferOffsetEXT_remap_index 831
   1305 #define BeginPerfMonitorAMD_remap_index 832
   1306 #define DeletePerfMonitorsAMD_remap_index 833
   1307 #define EndPerfMonitorAMD_remap_index 834
   1308 #define GenPerfMonitorsAMD_remap_index 835
   1309 #define GetPerfMonitorCounterDataAMD_remap_index 836
   1310 #define GetPerfMonitorCounterInfoAMD_remap_index 837
   1311 #define GetPerfMonitorCounterStringAMD_remap_index 838
   1312 #define GetPerfMonitorCountersAMD_remap_index 839
   1313 #define GetPerfMonitorGroupStringAMD_remap_index 840
   1314 #define GetPerfMonitorGroupsAMD_remap_index 841
   1315 #define SelectPerfMonitorCountersAMD_remap_index 842
   1316 #define GetObjectParameterivAPPLE_remap_index 843
   1317 #define ObjectPurgeableAPPLE_remap_index 844
   1318 #define ObjectUnpurgeableAPPLE_remap_index 845
   1319 #define ActiveProgramEXT_remap_index 846
   1320 #define CreateShaderProgramEXT_remap_index 847
   1321 #define UseShaderProgramEXT_remap_index 848
   1322 #define TextureBarrierNV_remap_index 849
   1323 #define VDPAUFiniNV_remap_index 850
   1324 #define VDPAUGetSurfaceivNV_remap_index 851
   1325 #define VDPAUInitNV_remap_index 852
   1326 #define VDPAUIsSurfaceNV_remap_index 853
   1327 #define VDPAUMapSurfacesNV_remap_index 854
   1328 #define VDPAURegisterOutputSurfaceNV_remap_index 855
   1329 #define VDPAURegisterVideoSurfaceNV_remap_index 856
   1330 #define VDPAUSurfaceAccessNV_remap_index 857
   1331 #define VDPAUUnmapSurfacesNV_remap_index 858
   1332 #define VDPAUUnregisterSurfaceNV_remap_index 859
   1333 #define BeginPerfQueryINTEL_remap_index 860
   1334 #define CreatePerfQueryINTEL_remap_index 861
   1335 #define DeletePerfQueryINTEL_remap_index 862
   1336 #define EndPerfQueryINTEL_remap_index 863
   1337 #define GetFirstPerfQueryIdINTEL_remap_index 864
   1338 #define GetNextPerfQueryIdINTEL_remap_index 865
   1339 #define GetPerfCounterInfoINTEL_remap_index 866
   1340 #define GetPerfQueryDataINTEL_remap_index 867
   1341 #define GetPerfQueryIdByNameINTEL_remap_index 868
   1342 #define GetPerfQueryInfoINTEL_remap_index 869
   1343 #define PolygonOffsetClampEXT_remap_index 870
   1344 #define WindowRectanglesEXT_remap_index 871
   1345 #define StencilFuncSeparateATI_remap_index 872
   1346 #define ProgramEnvParameters4fvEXT_remap_index 873
   1347 #define ProgramLocalParameters4fvEXT_remap_index 874
   1348 #define EGLImageTargetRenderbufferStorageOES_remap_index 875
   1349 #define EGLImageTargetTexture2DOES_remap_index 876
   1350 #define AlphaFuncx_remap_index 877
   1351 #define ClearColorx_remap_index 878
   1352 #define ClearDepthx_remap_index 879
   1353 #define Color4x_remap_index 880
   1354 #define DepthRangex_remap_index 881
   1355 #define Fogx_remap_index 882
   1356 #define Fogxv_remap_index 883
   1357 #define Frustumf_remap_index 884
   1358 #define Frustumx_remap_index 885
   1359 #define LightModelx_remap_index 886
   1360 #define LightModelxv_remap_index 887
   1361 #define Lightx_remap_index 888
   1362 #define Lightxv_remap_index 889
   1363 #define LineWidthx_remap_index 890
   1364 #define LoadMatrixx_remap_index 891
   1365 #define Materialx_remap_index 892
   1366 #define Materialxv_remap_index 893
   1367 #define MultMatrixx_remap_index 894
   1368 #define MultiTexCoord4x_remap_index 895
   1369 #define Normal3x_remap_index 896
   1370 #define Orthof_remap_index 897
   1371 #define Orthox_remap_index 898
   1372 #define PointSizex_remap_index 899
   1373 #define PolygonOffsetx_remap_index 900
   1374 #define Rotatex_remap_index 901
   1375 #define SampleCoveragex_remap_index 902
   1376 #define Scalex_remap_index 903
   1377 #define TexEnvx_remap_index 904
   1378 #define TexEnvxv_remap_index 905
   1379 #define TexParameterx_remap_index 906
   1380 #define Translatex_remap_index 907
   1381 #define ClipPlanef_remap_index 908
   1382 #define ClipPlanex_remap_index 909
   1383 #define GetClipPlanef_remap_index 910
   1384 #define GetClipPlanex_remap_index 911
   1385 #define GetFixedv_remap_index 912
   1386 #define GetLightxv_remap_index 913
   1387 #define GetMaterialxv_remap_index 914
   1388 #define GetTexEnvxv_remap_index 915
   1389 #define GetTexParameterxv_remap_index 916
   1390 #define PointParameterx_remap_index 917
   1391 #define PointParameterxv_remap_index 918
   1392 #define TexParameterxv_remap_index 919
   1393 #define BlendBarrier_remap_index 920
   1394 #define PrimitiveBoundingBox_remap_index 921
   1395 
   1396 #define _gloffset_CompressedTexImage1D driDispatchRemapTable[CompressedTexImage1D_remap_index]
   1397 #define _gloffset_CompressedTexImage2D driDispatchRemapTable[CompressedTexImage2D_remap_index]
   1398 #define _gloffset_CompressedTexImage3D driDispatchRemapTable[CompressedTexImage3D_remap_index]
   1399 #define _gloffset_CompressedTexSubImage1D driDispatchRemapTable[CompressedTexSubImage1D_remap_index]
   1400 #define _gloffset_CompressedTexSubImage2D driDispatchRemapTable[CompressedTexSubImage2D_remap_index]
   1401 #define _gloffset_CompressedTexSubImage3D driDispatchRemapTable[CompressedTexSubImage3D_remap_index]
   1402 #define _gloffset_GetCompressedTexImage driDispatchRemapTable[GetCompressedTexImage_remap_index]
   1403 #define _gloffset_LoadTransposeMatrixd driDispatchRemapTable[LoadTransposeMatrixd_remap_index]
   1404 #define _gloffset_LoadTransposeMatrixf driDispatchRemapTable[LoadTransposeMatrixf_remap_index]
   1405 #define _gloffset_MultTransposeMatrixd driDispatchRemapTable[MultTransposeMatrixd_remap_index]
   1406 #define _gloffset_MultTransposeMatrixf driDispatchRemapTable[MultTransposeMatrixf_remap_index]
   1407 #define _gloffset_SampleCoverage driDispatchRemapTable[SampleCoverage_remap_index]
   1408 #define _gloffset_BlendFuncSeparate driDispatchRemapTable[BlendFuncSeparate_remap_index]
   1409 #define _gloffset_FogCoordPointer driDispatchRemapTable[FogCoordPointer_remap_index]
   1410 #define _gloffset_FogCoordd driDispatchRemapTable[FogCoordd_remap_index]
   1411 #define _gloffset_FogCoorddv driDispatchRemapTable[FogCoorddv_remap_index]
   1412 #define _gloffset_MultiDrawArrays driDispatchRemapTable[MultiDrawArrays_remap_index]
   1413 #define _gloffset_PointParameterf driDispatchRemapTable[PointParameterf_remap_index]
   1414 #define _gloffset_PointParameterfv driDispatchRemapTable[PointParameterfv_remap_index]
   1415 #define _gloffset_PointParameteri driDispatchRemapTable[PointParameteri_remap_index]
   1416 #define _gloffset_PointParameteriv driDispatchRemapTable[PointParameteriv_remap_index]
   1417 #define _gloffset_SecondaryColor3b driDispatchRemapTable[SecondaryColor3b_remap_index]
   1418 #define _gloffset_SecondaryColor3bv driDispatchRemapTable[SecondaryColor3bv_remap_index]
   1419 #define _gloffset_SecondaryColor3d driDispatchRemapTable[SecondaryColor3d_remap_index]
   1420 #define _gloffset_SecondaryColor3dv driDispatchRemapTable[SecondaryColor3dv_remap_index]
   1421 #define _gloffset_SecondaryColor3i driDispatchRemapTable[SecondaryColor3i_remap_index]
   1422 #define _gloffset_SecondaryColor3iv driDispatchRemapTable[SecondaryColor3iv_remap_index]
   1423 #define _gloffset_SecondaryColor3s driDispatchRemapTable[SecondaryColor3s_remap_index]
   1424 #define _gloffset_SecondaryColor3sv driDispatchRemapTable[SecondaryColor3sv_remap_index]
   1425 #define _gloffset_SecondaryColor3ub driDispatchRemapTable[SecondaryColor3ub_remap_index]
   1426 #define _gloffset_SecondaryColor3ubv driDispatchRemapTable[SecondaryColor3ubv_remap_index]
   1427 #define _gloffset_SecondaryColor3ui driDispatchRemapTable[SecondaryColor3ui_remap_index]
   1428 #define _gloffset_SecondaryColor3uiv driDispatchRemapTable[SecondaryColor3uiv_remap_index]
   1429 #define _gloffset_SecondaryColor3us driDispatchRemapTable[SecondaryColor3us_remap_index]
   1430 #define _gloffset_SecondaryColor3usv driDispatchRemapTable[SecondaryColor3usv_remap_index]
   1431 #define _gloffset_SecondaryColorPointer driDispatchRemapTable[SecondaryColorPointer_remap_index]
   1432 #define _gloffset_WindowPos2d driDispatchRemapTable[WindowPos2d_remap_index]
   1433 #define _gloffset_WindowPos2dv driDispatchRemapTable[WindowPos2dv_remap_index]
   1434 #define _gloffset_WindowPos2f driDispatchRemapTable[WindowPos2f_remap_index]
   1435 #define _gloffset_WindowPos2fv driDispatchRemapTable[WindowPos2fv_remap_index]
   1436 #define _gloffset_WindowPos2i driDispatchRemapTable[WindowPos2i_remap_index]
   1437 #define _gloffset_WindowPos2iv driDispatchRemapTable[WindowPos2iv_remap_index]
   1438 #define _gloffset_WindowPos2s driDispatchRemapTable[WindowPos2s_remap_index]
   1439 #define _gloffset_WindowPos2sv driDispatchRemapTable[WindowPos2sv_remap_index]
   1440 #define _gloffset_WindowPos3d driDispatchRemapTable[WindowPos3d_remap_index]
   1441 #define _gloffset_WindowPos3dv driDispatchRemapTable[WindowPos3dv_remap_index]
   1442 #define _gloffset_WindowPos3f driDispatchRemapTable[WindowPos3f_remap_index]
   1443 #define _gloffset_WindowPos3fv driDispatchRemapTable[WindowPos3fv_remap_index]
   1444 #define _gloffset_WindowPos3i driDispatchRemapTable[WindowPos3i_remap_index]
   1445 #define _gloffset_WindowPos3iv driDispatchRemapTable[WindowPos3iv_remap_index]
   1446 #define _gloffset_WindowPos3s driDispatchRemapTable[WindowPos3s_remap_index]
   1447 #define _gloffset_WindowPos3sv driDispatchRemapTable[WindowPos3sv_remap_index]
   1448 #define _gloffset_BeginQuery driDispatchRemapTable[BeginQuery_remap_index]
   1449 #define _gloffset_BindBuffer driDispatchRemapTable[BindBuffer_remap_index]
   1450 #define _gloffset_BufferData driDispatchRemapTable[BufferData_remap_index]
   1451 #define _gloffset_BufferSubData driDispatchRemapTable[BufferSubData_remap_index]
   1452 #define _gloffset_DeleteBuffers driDispatchRemapTable[DeleteBuffers_remap_index]
   1453 #define _gloffset_DeleteQueries driDispatchRemapTable[DeleteQueries_remap_index]
   1454 #define _gloffset_EndQuery driDispatchRemapTable[EndQuery_remap_index]
   1455 #define _gloffset_GenBuffers driDispatchRemapTable[GenBuffers_remap_index]
   1456 #define _gloffset_GenQueries driDispatchRemapTable[GenQueries_remap_index]
   1457 #define _gloffset_GetBufferParameteriv driDispatchRemapTable[GetBufferParameteriv_remap_index]
   1458 #define _gloffset_GetBufferPointerv driDispatchRemapTable[GetBufferPointerv_remap_index]
   1459 #define _gloffset_GetBufferSubData driDispatchRemapTable[GetBufferSubData_remap_index]
   1460 #define _gloffset_GetQueryObjectiv driDispatchRemapTable[GetQueryObjectiv_remap_index]
   1461 #define _gloffset_GetQueryObjectuiv driDispatchRemapTable[GetQueryObjectuiv_remap_index]
   1462 #define _gloffset_GetQueryiv driDispatchRemapTable[GetQueryiv_remap_index]
   1463 #define _gloffset_IsBuffer driDispatchRemapTable[IsBuffer_remap_index]
   1464 #define _gloffset_IsQuery driDispatchRemapTable[IsQuery_remap_index]
   1465 #define _gloffset_MapBuffer driDispatchRemapTable[MapBuffer_remap_index]
   1466 #define _gloffset_UnmapBuffer driDispatchRemapTable[UnmapBuffer_remap_index]
   1467 #define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index]
   1468 #define _gloffset_BindAttribLocation driDispatchRemapTable[BindAttribLocation_remap_index]
   1469 #define _gloffset_BlendEquationSeparate driDispatchRemapTable[BlendEquationSeparate_remap_index]
   1470 #define _gloffset_CompileShader driDispatchRemapTable[CompileShader_remap_index]
   1471 #define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index]
   1472 #define _gloffset_CreateShader driDispatchRemapTable[CreateShader_remap_index]
   1473 #define _gloffset_DeleteProgram driDispatchRemapTable[DeleteProgram_remap_index]
   1474 #define _gloffset_DeleteShader driDispatchRemapTable[DeleteShader_remap_index]
   1475 #define _gloffset_DetachShader driDispatchRemapTable[DetachShader_remap_index]
   1476 #define _gloffset_DisableVertexAttribArray driDispatchRemapTable[DisableVertexAttribArray_remap_index]
   1477 #define _gloffset_DrawBuffers driDispatchRemapTable[DrawBuffers_remap_index]
   1478 #define _gloffset_EnableVertexAttribArray driDispatchRemapTable[EnableVertexAttribArray_remap_index]
   1479 #define _gloffset_GetActiveAttrib driDispatchRemapTable[GetActiveAttrib_remap_index]
   1480 #define _gloffset_GetActiveUniform driDispatchRemapTable[GetActiveUniform_remap_index]
   1481 #define _gloffset_GetAttachedShaders driDispatchRemapTable[GetAttachedShaders_remap_index]
   1482 #define _gloffset_GetAttribLocation driDispatchRemapTable[GetAttribLocation_remap_index]
   1483 #define _gloffset_GetProgramInfoLog driDispatchRemapTable[GetProgramInfoLog_remap_index]
   1484 #define _gloffset_GetProgramiv driDispatchRemapTable[GetProgramiv_remap_index]
   1485 #define _gloffset_GetShaderInfoLog driDispatchRemapTable[GetShaderInfoLog_remap_index]
   1486 #define _gloffset_GetShaderSource driDispatchRemapTable[GetShaderSource_remap_index]
   1487 #define _gloffset_GetShaderiv driDispatchRemapTable[GetShaderiv_remap_index]
   1488 #define _gloffset_GetUniformLocation driDispatchRemapTable[GetUniformLocation_remap_index]
   1489 #define _gloffset_GetUniformfv driDispatchRemapTable[GetUniformfv_remap_index]
   1490 #define _gloffset_GetUniformiv driDispatchRemapTable[GetUniformiv_remap_index]
   1491 #define _gloffset_GetVertexAttribPointerv driDispatchRemapTable[GetVertexAttribPointerv_remap_index]
   1492 #define _gloffset_GetVertexAttribdv driDispatchRemapTable[GetVertexAttribdv_remap_index]
   1493 #define _gloffset_GetVertexAttribfv driDispatchRemapTable[GetVertexAttribfv_remap_index]
   1494 #define _gloffset_GetVertexAttribiv driDispatchRemapTable[GetVertexAttribiv_remap_index]
   1495 #define _gloffset_IsProgram driDispatchRemapTable[IsProgram_remap_index]
   1496 #define _gloffset_IsShader driDispatchRemapTable[IsShader_remap_index]
   1497 #define _gloffset_LinkProgram driDispatchRemapTable[LinkProgram_remap_index]
   1498 #define _gloffset_ShaderSource driDispatchRemapTable[ShaderSource_remap_index]
   1499 #define _gloffset_StencilFuncSeparate driDispatchRemapTable[StencilFuncSeparate_remap_index]
   1500 #define _gloffset_StencilMaskSeparate driDispatchRemapTable[StencilMaskSeparate_remap_index]
   1501 #define _gloffset_StencilOpSeparate driDispatchRemapTable[StencilOpSeparate_remap_index]
   1502 #define _gloffset_Uniform1f driDispatchRemapTable[Uniform1f_remap_index]
   1503 #define _gloffset_Uniform1fv driDispatchRemapTable[Uniform1fv_remap_index]
   1504 #define _gloffset_Uniform1i driDispatchRemapTable[Uniform1i_remap_index]
   1505 #define _gloffset_Uniform1iv driDispatchRemapTable[Uniform1iv_remap_index]
   1506 #define _gloffset_Uniform2f driDispatchRemapTable[Uniform2f_remap_index]
   1507 #define _gloffset_Uniform2fv driDispatchRemapTable[Uniform2fv_remap_index]
   1508 #define _gloffset_Uniform2i driDispatchRemapTable[Uniform2i_remap_index]
   1509 #define _gloffset_Uniform2iv driDispatchRemapTable[Uniform2iv_remap_index]
   1510 #define _gloffset_Uniform3f driDispatchRemapTable[Uniform3f_remap_index]
   1511 #define _gloffset_Uniform3fv driDispatchRemapTable[Uniform3fv_remap_index]
   1512 #define _gloffset_Uniform3i driDispatchRemapTable[Uniform3i_remap_index]
   1513 #define _gloffset_Uniform3iv driDispatchRemapTable[Uniform3iv_remap_index]
   1514 #define _gloffset_Uniform4f driDispatchRemapTable[Uniform4f_remap_index]
   1515 #define _gloffset_Uniform4fv driDispatchRemapTable[Uniform4fv_remap_index]
   1516 #define _gloffset_Uniform4i driDispatchRemapTable[Uniform4i_remap_index]
   1517 #define _gloffset_Uniform4iv driDispatchRemapTable[Uniform4iv_remap_index]
   1518 #define _gloffset_UniformMatrix2fv driDispatchRemapTable[UniformMatrix2fv_remap_index]
   1519 #define _gloffset_UniformMatrix3fv driDispatchRemapTable[UniformMatrix3fv_remap_index]
   1520 #define _gloffset_UniformMatrix4fv driDispatchRemapTable[UniformMatrix4fv_remap_index]
   1521 #define _gloffset_UseProgram driDispatchRemapTable[UseProgram_remap_index]
   1522 #define _gloffset_ValidateProgram driDispatchRemapTable[ValidateProgram_remap_index]
   1523 #define _gloffset_VertexAttrib1d driDispatchRemapTable[VertexAttrib1d_remap_index]
   1524 #define _gloffset_VertexAttrib1dv driDispatchRemapTable[VertexAttrib1dv_remap_index]
   1525 #define _gloffset_VertexAttrib1s driDispatchRemapTable[VertexAttrib1s_remap_index]
   1526 #define _gloffset_VertexAttrib1sv driDispatchRemapTable[VertexAttrib1sv_remap_index]
   1527 #define _gloffset_VertexAttrib2d driDispatchRemapTable[VertexAttrib2d_remap_index]
   1528 #define _gloffset_VertexAttrib2dv driDispatchRemapTable[VertexAttrib2dv_remap_index]
   1529 #define _gloffset_VertexAttrib2s driDispatchRemapTable[VertexAttrib2s_remap_index]
   1530 #define _gloffset_VertexAttrib2sv driDispatchRemapTable[VertexAttrib2sv_remap_index]
   1531 #define _gloffset_VertexAttrib3d driDispatchRemapTable[VertexAttrib3d_remap_index]
   1532 #define _gloffset_VertexAttrib3dv driDispatchRemapTable[VertexAttrib3dv_remap_index]
   1533 #define _gloffset_VertexAttrib3s driDispatchRemapTable[VertexAttrib3s_remap_index]
   1534 #define _gloffset_VertexAttrib3sv driDispatchRemapTable[VertexAttrib3sv_remap_index]
   1535 #define _gloffset_VertexAttrib4Nbv driDispatchRemapTable[VertexAttrib4Nbv_remap_index]
   1536 #define _gloffset_VertexAttrib4Niv driDispatchRemapTable[VertexAttrib4Niv_remap_index]
   1537 #define _gloffset_VertexAttrib4Nsv driDispatchRemapTable[VertexAttrib4Nsv_remap_index]
   1538 #define _gloffset_VertexAttrib4Nub driDispatchRemapTable[VertexAttrib4Nub_remap_index]
   1539 #define _gloffset_VertexAttrib4Nubv driDispatchRemapTable[VertexAttrib4Nubv_remap_index]
   1540 #define _gloffset_VertexAttrib4Nuiv driDispatchRemapTable[VertexAttrib4Nuiv_remap_index]
   1541 #define _gloffset_VertexAttrib4Nusv driDispatchRemapTable[VertexAttrib4Nusv_remap_index]
   1542 #define _gloffset_VertexAttrib4bv driDispatchRemapTable[VertexAttrib4bv_remap_index]
   1543 #define _gloffset_VertexAttrib4d driDispatchRemapTable[VertexAttrib4d_remap_index]
   1544 #define _gloffset_VertexAttrib4dv driDispatchRemapTable[VertexAttrib4dv_remap_index]
   1545 #define _gloffset_VertexAttrib4iv driDispatchRemapTable[VertexAttrib4iv_remap_index]
   1546 #define _gloffset_VertexAttrib4s driDispatchRemapTable[VertexAttrib4s_remap_index]
   1547 #define _gloffset_VertexAttrib4sv driDispatchRemapTable[VertexAttrib4sv_remap_index]
   1548 #define _gloffset_VertexAttrib4ubv driDispatchRemapTable[VertexAttrib4ubv_remap_index]
   1549 #define _gloffset_VertexAttrib4uiv driDispatchRemapTable[VertexAttrib4uiv_remap_index]
   1550 #define _gloffset_VertexAttrib4usv driDispatchRemapTable[VertexAttrib4usv_remap_index]
   1551 #define _gloffset_VertexAttribPointer driDispatchRemapTable[VertexAttribPointer_remap_index]
   1552 #define _gloffset_UniformMatrix2x3fv driDispatchRemapTable[UniformMatrix2x3fv_remap_index]
   1553 #define _gloffset_UniformMatrix2x4fv driDispatchRemapTable[UniformMatrix2x4fv_remap_index]
   1554 #define _gloffset_UniformMatrix3x2fv driDispatchRemapTable[UniformMatrix3x2fv_remap_index]
   1555 #define _gloffset_UniformMatrix3x4fv driDispatchRemapTable[UniformMatrix3x4fv_remap_index]
   1556 #define _gloffset_UniformMatrix4x2fv driDispatchRemapTable[UniformMatrix4x2fv_remap_index]
   1557 #define _gloffset_UniformMatrix4x3fv driDispatchRemapTable[UniformMatrix4x3fv_remap_index]
   1558 #define _gloffset_BeginConditionalRender driDispatchRemapTable[BeginConditionalRender_remap_index]
   1559 #define _gloffset_BeginTransformFeedback driDispatchRemapTable[BeginTransformFeedback_remap_index]
   1560 #define _gloffset_BindBufferBase driDispatchRemapTable[BindBufferBase_remap_index]
   1561 #define _gloffset_BindBufferRange driDispatchRemapTable[BindBufferRange_remap_index]
   1562 #define _gloffset_BindFragDataLocation driDispatchRemapTable[BindFragDataLocation_remap_index]
   1563 #define _gloffset_ClampColor driDispatchRemapTable[ClampColor_remap_index]
   1564 #define _gloffset_ClearBufferfi driDispatchRemapTable[ClearBufferfi_remap_index]
   1565 #define _gloffset_ClearBufferfv driDispatchRemapTable[ClearBufferfv_remap_index]
   1566 #define _gloffset_ClearBufferiv driDispatchRemapTable[ClearBufferiv_remap_index]
   1567 #define _gloffset_ClearBufferuiv driDispatchRemapTable[ClearBufferuiv_remap_index]
   1568 #define _gloffset_ColorMaski driDispatchRemapTable[ColorMaski_remap_index]
   1569 #define _gloffset_Disablei driDispatchRemapTable[Disablei_remap_index]
   1570 #define _gloffset_Enablei driDispatchRemapTable[Enablei_remap_index]
   1571 #define _gloffset_EndConditionalRender driDispatchRemapTable[EndConditionalRender_remap_index]
   1572 #define _gloffset_EndTransformFeedback driDispatchRemapTable[EndTransformFeedback_remap_index]
   1573 #define _gloffset_GetBooleani_v driDispatchRemapTable[GetBooleani_v_remap_index]
   1574 #define _gloffset_GetFragDataLocation driDispatchRemapTable[GetFragDataLocation_remap_index]
   1575 #define _gloffset_GetIntegeri_v driDispatchRemapTable[GetIntegeri_v_remap_index]
   1576 #define _gloffset_GetStringi driDispatchRemapTable[GetStringi_remap_index]
   1577 #define _gloffset_GetTexParameterIiv driDispatchRemapTable[GetTexParameterIiv_remap_index]
   1578 #define _gloffset_GetTexParameterIuiv driDispatchRemapTable[GetTexParameterIuiv_remap_index]
   1579 #define _gloffset_GetTransformFeedbackVarying driDispatchRemapTable[GetTransformFeedbackVarying_remap_index]
   1580 #define _gloffset_GetUniformuiv driDispatchRemapTable[GetUniformuiv_remap_index]
   1581 #define _gloffset_GetVertexAttribIiv driDispatchRemapTable[GetVertexAttribIiv_remap_index]
   1582 #define _gloffset_GetVertexAttribIuiv driDispatchRemapTable[GetVertexAttribIuiv_remap_index]
   1583 #define _gloffset_IsEnabledi driDispatchRemapTable[IsEnabledi_remap_index]
   1584 #define _gloffset_TexParameterIiv driDispatchRemapTable[TexParameterIiv_remap_index]
   1585 #define _gloffset_TexParameterIuiv driDispatchRemapTable[TexParameterIuiv_remap_index]
   1586 #define _gloffset_TransformFeedbackVaryings driDispatchRemapTable[TransformFeedbackVaryings_remap_index]
   1587 #define _gloffset_Uniform1ui driDispatchRemapTable[Uniform1ui_remap_index]
   1588 #define _gloffset_Uniform1uiv driDispatchRemapTable[Uniform1uiv_remap_index]
   1589 #define _gloffset_Uniform2ui driDispatchRemapTable[Uniform2ui_remap_index]
   1590 #define _gloffset_Uniform2uiv driDispatchRemapTable[Uniform2uiv_remap_index]
   1591 #define _gloffset_Uniform3ui driDispatchRemapTable[Uniform3ui_remap_index]
   1592 #define _gloffset_Uniform3uiv driDispatchRemapTable[Uniform3uiv_remap_index]
   1593 #define _gloffset_Uniform4ui driDispatchRemapTable[Uniform4ui_remap_index]
   1594 #define _gloffset_Uniform4uiv driDispatchRemapTable[Uniform4uiv_remap_index]
   1595 #define _gloffset_VertexAttribI1iv driDispatchRemapTable[VertexAttribI1iv_remap_index]
   1596 #define _gloffset_VertexAttribI1uiv driDispatchRemapTable[VertexAttribI1uiv_remap_index]
   1597 #define _gloffset_VertexAttribI4bv driDispatchRemapTable[VertexAttribI4bv_remap_index]
   1598 #define _gloffset_VertexAttribI4sv driDispatchRemapTable[VertexAttribI4sv_remap_index]
   1599 #define _gloffset_VertexAttribI4ubv driDispatchRemapTable[VertexAttribI4ubv_remap_index]
   1600 #define _gloffset_VertexAttribI4usv driDispatchRemapTable[VertexAttribI4usv_remap_index]
   1601 #define _gloffset_VertexAttribIPointer driDispatchRemapTable[VertexAttribIPointer_remap_index]
   1602 #define _gloffset_PrimitiveRestartIndex driDispatchRemapTable[PrimitiveRestartIndex_remap_index]
   1603 #define _gloffset_TexBuffer driDispatchRemapTable[TexBuffer_remap_index]
   1604 #define _gloffset_FramebufferTexture driDispatchRemapTable[FramebufferTexture_remap_index]
   1605 #define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index]
   1606 #define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index]
   1607 #define _gloffset_VertexAttribDivisor driDispatchRemapTable[VertexAttribDivisor_remap_index]
   1608 #define _gloffset_MinSampleShading driDispatchRemapTable[MinSampleShading_remap_index]
   1609 #define _gloffset_MemoryBarrierByRegion driDispatchRemapTable[MemoryBarrierByRegion_remap_index]
   1610 #define _gloffset_BindProgramARB driDispatchRemapTable[BindProgramARB_remap_index]
   1611 #define _gloffset_DeleteProgramsARB driDispatchRemapTable[DeleteProgramsARB_remap_index]
   1612 #define _gloffset_GenProgramsARB driDispatchRemapTable[GenProgramsARB_remap_index]
   1613 #define _gloffset_GetProgramEnvParameterdvARB driDispatchRemapTable[GetProgramEnvParameterdvARB_remap_index]
   1614 #define _gloffset_GetProgramEnvParameterfvARB driDispatchRemapTable[GetProgramEnvParameterfvARB_remap_index]
   1615 #define _gloffset_GetProgramLocalParameterdvARB driDispatchRemapTable[GetProgramLocalParameterdvARB_remap_index]
   1616 #define _gloffset_GetProgramLocalParameterfvARB driDispatchRemapTable[GetProgramLocalParameterfvARB_remap_index]
   1617 #define _gloffset_GetProgramStringARB driDispatchRemapTable[GetProgramStringARB_remap_index]
   1618 #define _gloffset_GetProgramivARB driDispatchRemapTable[GetProgramivARB_remap_index]
   1619 #define _gloffset_IsProgramARB driDispatchRemapTable[IsProgramARB_remap_index]
   1620 #define _gloffset_ProgramEnvParameter4dARB driDispatchRemapTable[ProgramEnvParameter4dARB_remap_index]
   1621 #define _gloffset_ProgramEnvParameter4dvARB driDispatchRemapTable[ProgramEnvParameter4dvARB_remap_index]
   1622 #define _gloffset_ProgramEnvParameter4fARB driDispatchRemapTable[ProgramEnvParameter4fARB_remap_index]
   1623 #define _gloffset_ProgramEnvParameter4fvARB driDispatchRemapTable[ProgramEnvParameter4fvARB_remap_index]
   1624 #define _gloffset_ProgramLocalParameter4dARB driDispatchRemapTable[ProgramLocalParameter4dARB_remap_index]
   1625 #define _gloffset_ProgramLocalParameter4dvARB driDispatchRemapTable[ProgramLocalParameter4dvARB_remap_index]
   1626 #define _gloffset_ProgramLocalParameter4fARB driDispatchRemapTable[ProgramLocalParameter4fARB_remap_index]
   1627 #define _gloffset_ProgramLocalParameter4fvARB driDispatchRemapTable[ProgramLocalParameter4fvARB_remap_index]
   1628 #define _gloffset_ProgramStringARB driDispatchRemapTable[ProgramStringARB_remap_index]
   1629 #define _gloffset_VertexAttrib1fARB driDispatchRemapTable[VertexAttrib1fARB_remap_index]
   1630 #define _gloffset_VertexAttrib1fvARB driDispatchRemapTable[VertexAttrib1fvARB_remap_index]
   1631 #define _gloffset_VertexAttrib2fARB driDispatchRemapTable[VertexAttrib2fARB_remap_index]
   1632 #define _gloffset_VertexAttrib2fvARB driDispatchRemapTable[VertexAttrib2fvARB_remap_index]
   1633 #define _gloffset_VertexAttrib3fARB driDispatchRemapTable[VertexAttrib3fARB_remap_index]
   1634 #define _gloffset_VertexAttrib3fvARB driDispatchRemapTable[VertexAttrib3fvARB_remap_index]
   1635 #define _gloffset_VertexAttrib4fARB driDispatchRemapTable[VertexAttrib4fARB_remap_index]
   1636 #define _gloffset_VertexAttrib4fvARB driDispatchRemapTable[VertexAttrib4fvARB_remap_index]
   1637 #define _gloffset_AttachObjectARB driDispatchRemapTable[AttachObjectARB_remap_index]
   1638 #define _gloffset_CreateProgramObjectARB driDispatchRemapTable[CreateProgramObjectARB_remap_index]
   1639 #define _gloffset_CreateShaderObjectARB driDispatchRemapTable[CreateShaderObjectARB_remap_index]
   1640 #define _gloffset_DeleteObjectARB driDispatchRemapTable[DeleteObjectARB_remap_index]
   1641 #define _gloffset_DetachObjectARB driDispatchRemapTable[DetachObjectARB_remap_index]
   1642 #define _gloffset_GetAttachedObjectsARB driDispatchRemapTable[GetAttachedObjectsARB_remap_index]
   1643 #define _gloffset_GetHandleARB driDispatchRemapTable[GetHandleARB_remap_index]
   1644 #define _gloffset_GetInfoLogARB driDispatchRemapTable[GetInfoLogARB_remap_index]
   1645 #define _gloffset_GetObjectParameterfvARB driDispatchRemapTable[GetObjectParameterfvARB_remap_index]
   1646 #define _gloffset_GetObjectParameterivARB driDispatchRemapTable[GetObjectParameterivARB_remap_index]
   1647 #define _gloffset_DrawArraysInstancedARB driDispatchRemapTable[DrawArraysInstancedARB_remap_index]
   1648 #define _gloffset_DrawElementsInstancedARB driDispatchRemapTable[DrawElementsInstancedARB_remap_index]
   1649 #define _gloffset_BindFramebuffer driDispatchRemapTable[BindFramebuffer_remap_index]
   1650 #define _gloffset_BindRenderbuffer driDispatchRemapTable[BindRenderbuffer_remap_index]
   1651 #define _gloffset_BlitFramebuffer driDispatchRemapTable[BlitFramebuffer_remap_index]
   1652 #define _gloffset_CheckFramebufferStatus driDispatchRemapTable[CheckFramebufferStatus_remap_index]
   1653 #define _gloffset_DeleteFramebuffers driDispatchRemapTable[DeleteFramebuffers_remap_index]
   1654 #define _gloffset_DeleteRenderbuffers driDispatchRemapTable[DeleteRenderbuffers_remap_index]
   1655 #define _gloffset_FramebufferRenderbuffer driDispatchRemapTable[FramebufferRenderbuffer_remap_index]
   1656 #define _gloffset_FramebufferTexture1D driDispatchRemapTable[FramebufferTexture1D_remap_index]
   1657 #define _gloffset_FramebufferTexture2D driDispatchRemapTable[FramebufferTexture2D_remap_index]
   1658 #define _gloffset_FramebufferTexture3D driDispatchRemapTable[FramebufferTexture3D_remap_index]
   1659 #define _gloffset_FramebufferTextureLayer driDispatchRemapTable[FramebufferTextureLayer_remap_index]
   1660 #define _gloffset_GenFramebuffers driDispatchRemapTable[GenFramebuffers_remap_index]
   1661 #define _gloffset_GenRenderbuffers driDispatchRemapTable[GenRenderbuffers_remap_index]
   1662 #define _gloffset_GenerateMipmap driDispatchRemapTable[GenerateMipmap_remap_index]
   1663 #define _gloffset_GetFramebufferAttachmentParameteriv driDispatchRemapTable[GetFramebufferAttachmentParameteriv_remap_index]
   1664 #define _gloffset_GetRenderbufferParameteriv driDispatchRemapTable[GetRenderbufferParameteriv_remap_index]
   1665 #define _gloffset_IsFramebuffer driDispatchRemapTable[IsFramebuffer_remap_index]
   1666 #define _gloffset_IsRenderbuffer driDispatchRemapTable[IsRenderbuffer_remap_index]
   1667 #define _gloffset_RenderbufferStorage driDispatchRemapTable[RenderbufferStorage_remap_index]
   1668 #define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index]
   1669 #define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
   1670 #define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
   1671 #define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index]
   1672 #define _gloffset_DeleteVertexArrays driDispatchRemapTable[DeleteVertexArrays_remap_index]
   1673 #define _gloffset_GenVertexArrays driDispatchRemapTable[GenVertexArrays_remap_index]
   1674 #define _gloffset_IsVertexArray driDispatchRemapTable[IsVertexArray_remap_index]
   1675 #define _gloffset_GetActiveUniformBlockName driDispatchRemapTable[GetActiveUniformBlockName_remap_index]
   1676 #define _gloffset_GetActiveUniformBlockiv driDispatchRemapTable[GetActiveUniformBlockiv_remap_index]
   1677 #define _gloffset_GetActiveUniformName driDispatchRemapTable[GetActiveUniformName_remap_index]
   1678 #define _gloffset_GetActiveUniformsiv driDispatchRemapTable[GetActiveUniformsiv_remap_index]
   1679 #define _gloffset_GetUniformBlockIndex driDispatchRemapTable[GetUniformBlockIndex_remap_index]
   1680 #define _gloffset_GetUniformIndices driDispatchRemapTable[GetUniformIndices_remap_index]
   1681 #define _gloffset_UniformBlockBinding driDispatchRemapTable[UniformBlockBinding_remap_index]
   1682 #define _gloffset_CopyBufferSubData driDispatchRemapTable[CopyBufferSubData_remap_index]
   1683 #define _gloffset_ClientWaitSync driDispatchRemapTable[ClientWaitSync_remap_index]
   1684 #define _gloffset_DeleteSync driDispatchRemapTable[DeleteSync_remap_index]
   1685 #define _gloffset_FenceSync driDispatchRemapTable[FenceSync_remap_index]
   1686 #define _gloffset_GetInteger64v driDispatchRemapTable[GetInteger64v_remap_index]
   1687 #define _gloffset_GetSynciv driDispatchRemapTable[GetSynciv_remap_index]
   1688 #define _gloffset_IsSync driDispatchRemapTable[IsSync_remap_index]
   1689 #define _gloffset_WaitSync driDispatchRemapTable[WaitSync_remap_index]
   1690 #define _gloffset_DrawElementsBaseVertex driDispatchRemapTable[DrawElementsBaseVertex_remap_index]
   1691 #define _gloffset_DrawElementsInstancedBaseVertex driDispatchRemapTable[DrawElementsInstancedBaseVertex_remap_index]
   1692 #define _gloffset_DrawRangeElementsBaseVertex driDispatchRemapTable[DrawRangeElementsBaseVertex_remap_index]
   1693 #define _gloffset_MultiDrawElementsBaseVertex driDispatchRemapTable[MultiDrawElementsBaseVertex_remap_index]
   1694 #define _gloffset_ProvokingVertex driDispatchRemapTable[ProvokingVertex_remap_index]
   1695 #define _gloffset_GetMultisamplefv driDispatchRemapTable[GetMultisamplefv_remap_index]
   1696 #define _gloffset_SampleMaski driDispatchRemapTable[SampleMaski_remap_index]
   1697 #define _gloffset_TexImage2DMultisample driDispatchRemapTable[TexImage2DMultisample_remap_index]
   1698 #define _gloffset_TexImage3DMultisample driDispatchRemapTable[TexImage3DMultisample_remap_index]
   1699 #define _gloffset_BlendEquationSeparateiARB driDispatchRemapTable[BlendEquationSeparateiARB_remap_index]
   1700 #define _gloffset_BlendEquationiARB driDispatchRemapTable[BlendEquationiARB_remap_index]
   1701 #define _gloffset_BlendFuncSeparateiARB driDispatchRemapTable[BlendFuncSeparateiARB_remap_index]
   1702 #define _gloffset_BlendFunciARB driDispatchRemapTable[BlendFunciARB_remap_index]
   1703 #define _gloffset_BindFragDataLocationIndexed driDispatchRemapTable[BindFragDataLocationIndexed_remap_index]
   1704 #define _gloffset_GetFragDataIndex driDispatchRemapTable[GetFragDataIndex_remap_index]
   1705 #define _gloffset_BindSampler driDispatchRemapTable[BindSampler_remap_index]
   1706 #define _gloffset_DeleteSamplers driDispatchRemapTable[DeleteSamplers_remap_index]
   1707 #define _gloffset_GenSamplers driDispatchRemapTable[GenSamplers_remap_index]
   1708 #define _gloffset_GetSamplerParameterIiv driDispatchRemapTable[GetSamplerParameterIiv_remap_index]
   1709 #define _gloffset_GetSamplerParameterIuiv driDispatchRemapTable[GetSamplerParameterIuiv_remap_index]
   1710 #define _gloffset_GetSamplerParameterfv driDispatchRemapTable[GetSamplerParameterfv_remap_index]
   1711 #define _gloffset_GetSamplerParameteriv driDispatchRemapTable[GetSamplerParameteriv_remap_index]
   1712 #define _gloffset_IsSampler driDispatchRemapTable[IsSampler_remap_index]
   1713 #define _gloffset_SamplerParameterIiv driDispatchRemapTable[SamplerParameterIiv_remap_index]
   1714 #define _gloffset_SamplerParameterIuiv driDispatchRemapTable[SamplerParameterIuiv_remap_index]
   1715 #define _gloffset_SamplerParameterf driDispatchRemapTable[SamplerParameterf_remap_index]
   1716 #define _gloffset_SamplerParameterfv driDispatchRemapTable[SamplerParameterfv_remap_index]
   1717 #define _gloffset_SamplerParameteri driDispatchRemapTable[SamplerParameteri_remap_index]
   1718 #define _gloffset_SamplerParameteriv driDispatchRemapTable[SamplerParameteriv_remap_index]
   1719 #define _gloffset_GetQueryObjecti64v driDispatchRemapTable[GetQueryObjecti64v_remap_index]
   1720 #define _gloffset_GetQueryObjectui64v driDispatchRemapTable[GetQueryObjectui64v_remap_index]
   1721 #define _gloffset_QueryCounter driDispatchRemapTable[QueryCounter_remap_index]
   1722 #define _gloffset_ColorP3ui driDispatchRemapTable[ColorP3ui_remap_index]
   1723 #define _gloffset_ColorP3uiv driDispatchRemapTable[ColorP3uiv_remap_index]
   1724 #define _gloffset_ColorP4ui driDispatchRemapTable[ColorP4ui_remap_index]
   1725 #define _gloffset_ColorP4uiv driDispatchRemapTable[ColorP4uiv_remap_index]
   1726 #define _gloffset_MultiTexCoordP1ui driDispatchRemapTable[MultiTexCoordP1ui_remap_index]
   1727 #define _gloffset_MultiTexCoordP1uiv driDispatchRemapTable[MultiTexCoordP1uiv_remap_index]
   1728 #define _gloffset_MultiTexCoordP2ui driDispatchRemapTable[MultiTexCoordP2ui_remap_index]
   1729 #define _gloffset_MultiTexCoordP2uiv driDispatchRemapTable[MultiTexCoordP2uiv_remap_index]
   1730 #define _gloffset_MultiTexCoordP3ui driDispatchRemapTable[MultiTexCoordP3ui_remap_index]
   1731 #define _gloffset_MultiTexCoordP3uiv driDispatchRemapTable[MultiTexCoordP3uiv_remap_index]
   1732 #define _gloffset_MultiTexCoordP4ui driDispatchRemapTable[MultiTexCoordP4ui_remap_index]
   1733 #define _gloffset_MultiTexCoordP4uiv driDispatchRemapTable[MultiTexCoordP4uiv_remap_index]
   1734 #define _gloffset_NormalP3ui driDispatchRemapTable[NormalP3ui_remap_index]
   1735 #define _gloffset_NormalP3uiv driDispatchRemapTable[NormalP3uiv_remap_index]
   1736 #define _gloffset_SecondaryColorP3ui driDispatchRemapTable[SecondaryColorP3ui_remap_index]
   1737 #define _gloffset_SecondaryColorP3uiv driDispatchRemapTable[SecondaryColorP3uiv_remap_index]
   1738 #define _gloffset_TexCoordP1ui driDispatchRemapTable[TexCoordP1ui_remap_index]
   1739 #define _gloffset_TexCoordP1uiv driDispatchRemapTable[TexCoordP1uiv_remap_index]
   1740 #define _gloffset_TexCoordP2ui driDispatchRemapTable[TexCoordP2ui_remap_index]
   1741 #define _gloffset_TexCoordP2uiv driDispatchRemapTable[TexCoordP2uiv_remap_index]
   1742 #define _gloffset_TexCoordP3ui driDispatchRemapTable[TexCoordP3ui_remap_index]
   1743 #define _gloffset_TexCoordP3uiv driDispatchRemapTable[TexCoordP3uiv_remap_index]
   1744 #define _gloffset_TexCoordP4ui driDispatchRemapTable[TexCoordP4ui_remap_index]
   1745 #define _gloffset_TexCoordP4uiv driDispatchRemapTable[TexCoordP4uiv_remap_index]
   1746 #define _gloffset_VertexAttribP1ui driDispatchRemapTable[VertexAttribP1ui_remap_index]
   1747 #define _gloffset_VertexAttribP1uiv driDispatchRemapTable[VertexAttribP1uiv_remap_index]
   1748 #define _gloffset_VertexAttribP2ui driDispatchRemapTable[VertexAttribP2ui_remap_index]
   1749 #define _gloffset_VertexAttribP2uiv driDispatchRemapTable[VertexAttribP2uiv_remap_index]
   1750 #define _gloffset_VertexAttribP3ui driDispatchRemapTable[VertexAttribP3ui_remap_index]
   1751 #define _gloffset_VertexAttribP3uiv driDispatchRemapTable[VertexAttribP3uiv_remap_index]
   1752 #define _gloffset_VertexAttribP4ui driDispatchRemapTable[VertexAttribP4ui_remap_index]
   1753 #define _gloffset_VertexAttribP4uiv driDispatchRemapTable[VertexAttribP4uiv_remap_index]
   1754 #define _gloffset_VertexP2ui driDispatchRemapTable[VertexP2ui_remap_index]
   1755 #define _gloffset_VertexP2uiv driDispatchRemapTable[VertexP2uiv_remap_index]
   1756 #define _gloffset_VertexP3ui driDispatchRemapTable[VertexP3ui_remap_index]
   1757 #define _gloffset_VertexP3uiv driDispatchRemapTable[VertexP3uiv_remap_index]
   1758 #define _gloffset_VertexP4ui driDispatchRemapTable[VertexP4ui_remap_index]
   1759 #define _gloffset_VertexP4uiv driDispatchRemapTable[VertexP4uiv_remap_index]
   1760 #define _gloffset_DrawArraysIndirect driDispatchRemapTable[DrawArraysIndirect_remap_index]
   1761 #define _gloffset_DrawElementsIndirect driDispatchRemapTable[DrawElementsIndirect_remap_index]
   1762 #define _gloffset_GetUniformdv driDispatchRemapTable[GetUniformdv_remap_index]
   1763 #define _gloffset_Uniform1d driDispatchRemapTable[Uniform1d_remap_index]
   1764 #define _gloffset_Uniform1dv driDispatchRemapTable[Uniform1dv_remap_index]
   1765 #define _gloffset_Uniform2d driDispatchRemapTable[Uniform2d_remap_index]
   1766 #define _gloffset_Uniform2dv driDispatchRemapTable[Uniform2dv_remap_index]
   1767 #define _gloffset_Uniform3d driDispatchRemapTable[Uniform3d_remap_index]
   1768 #define _gloffset_Uniform3dv driDispatchRemapTable[Uniform3dv_remap_index]
   1769 #define _gloffset_Uniform4d driDispatchRemapTable[Uniform4d_remap_index]
   1770 #define _gloffset_Uniform4dv driDispatchRemapTable[Uniform4dv_remap_index]
   1771 #define _gloffset_UniformMatrix2dv driDispatchRemapTable[UniformMatrix2dv_remap_index]
   1772 #define _gloffset_UniformMatrix2x3dv driDispatchRemapTable[UniformMatrix2x3dv_remap_index]
   1773 #define _gloffset_UniformMatrix2x4dv driDispatchRemapTable[UniformMatrix2x4dv_remap_index]
   1774 #define _gloffset_UniformMatrix3dv driDispatchRemapTable[UniformMatrix3dv_remap_index]
   1775 #define _gloffset_UniformMatrix3x2dv driDispatchRemapTable[UniformMatrix3x2dv_remap_index]
   1776 #define _gloffset_UniformMatrix3x4dv driDispatchRemapTable[UniformMatrix3x4dv_remap_index]
   1777 #define _gloffset_UniformMatrix4dv driDispatchRemapTable[UniformMatrix4dv_remap_index]
   1778 #define _gloffset_UniformMatrix4x2dv driDispatchRemapTable[UniformMatrix4x2dv_remap_index]
   1779 #define _gloffset_UniformMatrix4x3dv driDispatchRemapTable[UniformMatrix4x3dv_remap_index]
   1780 #define _gloffset_GetActiveSubroutineName driDispatchRemapTable[GetActiveSubroutineName_remap_index]
   1781 #define _gloffset_GetActiveSubroutineUniformName driDispatchRemapTable[GetActiveSubroutineUniformName_remap_index]
   1782 #define _gloffset_GetActiveSubroutineUniformiv driDispatchRemapTable[GetActiveSubroutineUniformiv_remap_index]
   1783 #define _gloffset_GetProgramStageiv driDispatchRemapTable[GetProgramStageiv_remap_index]
   1784 #define _gloffset_GetSubroutineIndex driDispatchRemapTable[GetSubroutineIndex_remap_index]
   1785 #define _gloffset_GetSubroutineUniformLocation driDispatchRemapTable[GetSubroutineUniformLocation_remap_index]
   1786 #define _gloffset_GetUniformSubroutineuiv driDispatchRemapTable[GetUniformSubroutineuiv_remap_index]
   1787 #define _gloffset_UniformSubroutinesuiv driDispatchRemapTable[UniformSubroutinesuiv_remap_index]
   1788 #define _gloffset_PatchParameterfv driDispatchRemapTable[PatchParameterfv_remap_index]
   1789 #define _gloffset_PatchParameteri driDispatchRemapTable[PatchParameteri_remap_index]
   1790 #define _gloffset_BindTransformFeedback driDispatchRemapTable[BindTransformFeedback_remap_index]
   1791 #define _gloffset_DeleteTransformFeedbacks driDispatchRemapTable[DeleteTransformFeedbacks_remap_index]
   1792 #define _gloffset_DrawTransformFeedback driDispatchRemapTable[DrawTransformFeedback_remap_index]
   1793 #define _gloffset_GenTransformFeedbacks driDispatchRemapTable[GenTransformFeedbacks_remap_index]
   1794 #define _gloffset_IsTransformFeedback driDispatchRemapTable[IsTransformFeedback_remap_index]
   1795 #define _gloffset_PauseTransformFeedback driDispatchRemapTable[PauseTransformFeedback_remap_index]
   1796 #define _gloffset_ResumeTransformFeedback driDispatchRemapTable[ResumeTransformFeedback_remap_index]
   1797 #define _gloffset_BeginQueryIndexed driDispatchRemapTable[BeginQueryIndexed_remap_index]
   1798 #define _gloffset_DrawTransformFeedbackStream driDispatchRemapTable[DrawTransformFeedbackStream_remap_index]
   1799 #define _gloffset_EndQueryIndexed driDispatchRemapTable[EndQueryIndexed_remap_index]
   1800 #define _gloffset_GetQueryIndexediv driDispatchRemapTable[GetQueryIndexediv_remap_index]
   1801 #define _gloffset_ClearDepthf driDispatchRemapTable[ClearDepthf_remap_index]
   1802 #define _gloffset_DepthRangef driDispatchRemapTable[DepthRangef_remap_index]
   1803 #define _gloffset_GetShaderPrecisionFormat driDispatchRemapTable[GetShaderPrecisionFormat_remap_index]
   1804 #define _gloffset_ReleaseShaderCompiler driDispatchRemapTable[ReleaseShaderCompiler_remap_index]
   1805 #define _gloffset_ShaderBinary driDispatchRemapTable[ShaderBinary_remap_index]
   1806 #define _gloffset_GetProgramBinary driDispatchRemapTable[GetProgramBinary_remap_index]
   1807 #define _gloffset_ProgramBinary driDispatchRemapTable[ProgramBinary_remap_index]
   1808 #define _gloffset_ProgramParameteri driDispatchRemapTable[ProgramParameteri_remap_index]
   1809 #define _gloffset_GetVertexAttribLdv driDispatchRemapTable[GetVertexAttribLdv_remap_index]
   1810 #define _gloffset_VertexAttribL1d driDispatchRemapTable[VertexAttribL1d_remap_index]
   1811 #define _gloffset_VertexAttribL1dv driDispatchRemapTable[VertexAttribL1dv_remap_index]
   1812 #define _gloffset_VertexAttribL2d driDispatchRemapTable[VertexAttribL2d_remap_index]
   1813 #define _gloffset_VertexAttribL2dv driDispatchRemapTable[VertexAttribL2dv_remap_index]
   1814 #define _gloffset_VertexAttribL3d driDispatchRemapTable[VertexAttribL3d_remap_index]
   1815 #define _gloffset_VertexAttribL3dv driDispatchRemapTable[VertexAttribL3dv_remap_index]
   1816 #define _gloffset_VertexAttribL4d driDispatchRemapTable[VertexAttribL4d_remap_index]
   1817 #define _gloffset_VertexAttribL4dv driDispatchRemapTable[VertexAttribL4dv_remap_index]
   1818 #define _gloffset_VertexAttribLPointer driDispatchRemapTable[VertexAttribLPointer_remap_index]
   1819 #define _gloffset_DepthRangeArrayv driDispatchRemapTable[DepthRangeArrayv_remap_index]
   1820 #define _gloffset_DepthRangeIndexed driDispatchRemapTable[DepthRangeIndexed_remap_index]
   1821 #define _gloffset_GetDoublei_v driDispatchRemapTable[GetDoublei_v_remap_index]
   1822 #define _gloffset_GetFloati_v driDispatchRemapTable[GetFloati_v_remap_index]
   1823 #define _gloffset_ScissorArrayv driDispatchRemapTable[ScissorArrayv_remap_index]
   1824 #define _gloffset_ScissorIndexed driDispatchRemapTable[ScissorIndexed_remap_index]
   1825 #define _gloffset_ScissorIndexedv driDispatchRemapTable[ScissorIndexedv_remap_index]
   1826 #define _gloffset_ViewportArrayv driDispatchRemapTable[ViewportArrayv_remap_index]
   1827 #define _gloffset_ViewportIndexedf driDispatchRemapTable[ViewportIndexedf_remap_index]
   1828 #define _gloffset_ViewportIndexedfv driDispatchRemapTable[ViewportIndexedfv_remap_index]
   1829 #define _gloffset_GetGraphicsResetStatusARB driDispatchRemapTable[GetGraphicsResetStatusARB_remap_index]
   1830 #define _gloffset_GetnColorTableARB driDispatchRemapTable[GetnColorTableARB_remap_index]
   1831 #define _gloffset_GetnCompressedTexImageARB driDispatchRemapTable[GetnCompressedTexImageARB_remap_index]
   1832 #define _gloffset_GetnConvolutionFilterARB driDispatchRemapTable[GetnConvolutionFilterARB_remap_index]
   1833 #define _gloffset_GetnHistogramARB driDispatchRemapTable[GetnHistogramARB_remap_index]
   1834 #define _gloffset_GetnMapdvARB driDispatchRemapTable[GetnMapdvARB_remap_index]
   1835 #define _gloffset_GetnMapfvARB driDispatchRemapTable[GetnMapfvARB_remap_index]
   1836 #define _gloffset_GetnMapivARB driDispatchRemapTable[GetnMapivARB_remap_index]
   1837 #define _gloffset_GetnMinmaxARB driDispatchRemapTable[GetnMinmaxARB_remap_index]
   1838 #define _gloffset_GetnPixelMapfvARB driDispatchRemapTable[GetnPixelMapfvARB_remap_index]
   1839 #define _gloffset_GetnPixelMapuivARB driDispatchRemapTable[GetnPixelMapuivARB_remap_index]
   1840 #define _gloffset_GetnPixelMapusvARB driDispatchRemapTable[GetnPixelMapusvARB_remap_index]
   1841 #define _gloffset_GetnPolygonStippleARB driDispatchRemapTable[GetnPolygonStippleARB_remap_index]
   1842 #define _gloffset_GetnSeparableFilterARB driDispatchRemapTable[GetnSeparableFilterARB_remap_index]
   1843 #define _gloffset_GetnTexImageARB driDispatchRemapTable[GetnTexImageARB_remap_index]
   1844 #define _gloffset_GetnUniformdvARB driDispatchRemapTable[GetnUniformdvARB_remap_index]
   1845 #define _gloffset_GetnUniformfvARB driDispatchRemapTable[GetnUniformfvARB_remap_index]
   1846 #define _gloffset_GetnUniformivARB driDispatchRemapTable[GetnUniformivARB_remap_index]
   1847 #define _gloffset_GetnUniformuivARB driDispatchRemapTable[GetnUniformuivARB_remap_index]
   1848 #define _gloffset_ReadnPixelsARB driDispatchRemapTable[ReadnPixelsARB_remap_index]
   1849 #define _gloffset_DrawArraysInstancedBaseInstance driDispatchRemapTable[DrawArraysInstancedBaseInstance_remap_index]
   1850 #define _gloffset_DrawElementsInstancedBaseInstance driDispatchRemapTable[DrawElementsInstancedBaseInstance_remap_index]
   1851 #define _gloffset_DrawElementsInstancedBaseVertexBaseInstance driDispatchRemapTable[DrawElementsInstancedBaseVertexBaseInstance_remap_index]
   1852 #define _gloffset_DrawTransformFeedbackInstanced driDispatchRemapTable[DrawTransformFeedbackInstanced_remap_index]
   1853 #define _gloffset_DrawTransformFeedbackStreamInstanced driDispatchRemapTable[DrawTransformFeedbackStreamInstanced_remap_index]
   1854 #define _gloffset_GetInternalformativ driDispatchRemapTable[GetInternalformativ_remap_index]
   1855 #define _gloffset_GetActiveAtomicCounterBufferiv driDispatchRemapTable[GetActiveAtomicCounterBufferiv_remap_index]
   1856 #define _gloffset_BindImageTexture driDispatchRemapTable[BindImageTexture_remap_index]
   1857 #define _gloffset_MemoryBarrier driDispatchRemapTable[MemoryBarrier_remap_index]
   1858 #define _gloffset_TexStorage1D driDispatchRemapTable[TexStorage1D_remap_index]
   1859 #define _gloffset_TexStorage2D driDispatchRemapTable[TexStorage2D_remap_index]
   1860 #define _gloffset_TexStorage3D driDispatchRemapTable[TexStorage3D_remap_index]
   1861 #define _gloffset_TextureStorage1DEXT driDispatchRemapTable[TextureStorage1DEXT_remap_index]
   1862 #define _gloffset_TextureStorage2DEXT driDispatchRemapTable[TextureStorage2DEXT_remap_index]
   1863 #define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index]
   1864 #define _gloffset_ClearBufferData driDispatchRemapTable[ClearBufferData_remap_index]
   1865 #define _gloffset_ClearBufferSubData driDispatchRemapTable[ClearBufferSubData_remap_index]
   1866 #define _gloffset_DispatchCompute driDispatchRemapTable[DispatchCompute_remap_index]
   1867 #define _gloffset_DispatchComputeIndirect driDispatchRemapTable[DispatchComputeIndirect_remap_index]
   1868 #define _gloffset_CopyImageSubData driDispatchRemapTable[CopyImageSubData_remap_index]
   1869 #define _gloffset_TextureView driDispatchRemapTable[TextureView_remap_index]
   1870 #define _gloffset_BindVertexBuffer driDispatchRemapTable[BindVertexBuffer_remap_index]
   1871 #define _gloffset_VertexAttribBinding driDispatchRemapTable[VertexAttribBinding_remap_index]
   1872 #define _gloffset_VertexAttribFormat driDispatchRemapTable[VertexAttribFormat_remap_index]
   1873 #define _gloffset_VertexAttribIFormat driDispatchRemapTable[VertexAttribIFormat_remap_index]
   1874 #define _gloffset_VertexAttribLFormat driDispatchRemapTable[VertexAttribLFormat_remap_index]
   1875 #define _gloffset_VertexBindingDivisor driDispatchRemapTable[VertexBindingDivisor_remap_index]
   1876 #define _gloffset_FramebufferParameteri driDispatchRemapTable[FramebufferParameteri_remap_index]
   1877 #define _gloffset_GetFramebufferParameteriv driDispatchRemapTable[GetFramebufferParameteriv_remap_index]
   1878 #define _gloffset_GetInternalformati64v driDispatchRemapTable[GetInternalformati64v_remap_index]
   1879 #define _gloffset_MultiDrawArraysIndirect driDispatchRemapTable[MultiDrawArraysIndirect_remap_index]
   1880 #define _gloffset_MultiDrawElementsIndirect driDispatchRemapTable[MultiDrawElementsIndirect_remap_index]
   1881 #define _gloffset_GetProgramInterfaceiv driDispatchRemapTable[GetProgramInterfaceiv_remap_index]
   1882 #define _gloffset_GetProgramResourceIndex driDispatchRemapTable[GetProgramResourceIndex_remap_index]
   1883 #define _gloffset_GetProgramResourceLocation driDispatchRemapTable[GetProgramResourceLocation_remap_index]
   1884 #define _gloffset_GetProgramResourceLocationIndex driDispatchRemapTable[GetProgramResourceLocationIndex_remap_index]
   1885 #define _gloffset_GetProgramResourceName driDispatchRemapTable[GetProgramResourceName_remap_index]
   1886 #define _gloffset_GetProgramResourceiv driDispatchRemapTable[GetProgramResourceiv_remap_index]
   1887 #define _gloffset_ShaderStorageBlockBinding driDispatchRemapTable[ShaderStorageBlockBinding_remap_index]
   1888 #define _gloffset_TexBufferRange driDispatchRemapTable[TexBufferRange_remap_index]
   1889 #define _gloffset_TexStorage2DMultisample driDispatchRemapTable[TexStorage2DMultisample_remap_index]
   1890 #define _gloffset_TexStorage3DMultisample driDispatchRemapTable[TexStorage3DMultisample_remap_index]
   1891 #define _gloffset_BufferStorage driDispatchRemapTable[BufferStorage_remap_index]
   1892 #define _gloffset_ClearTexImage driDispatchRemapTable[ClearTexImage_remap_index]
   1893 #define _gloffset_ClearTexSubImage driDispatchRemapTable[ClearTexSubImage_remap_index]
   1894 #define _gloffset_BindBuffersBase driDispatchRemapTable[BindBuffersBase_remap_index]
   1895 #define _gloffset_BindBuffersRange driDispatchRemapTable[BindBuffersRange_remap_index]
   1896 #define _gloffset_BindImageTextures driDispatchRemapTable[BindImageTextures_remap_index]
   1897 #define _gloffset_BindSamplers driDispatchRemapTable[BindSamplers_remap_index]
   1898 #define _gloffset_BindTextures driDispatchRemapTable[BindTextures_remap_index]
   1899 #define _gloffset_BindVertexBuffers driDispatchRemapTable[BindVertexBuffers_remap_index]
   1900 #define _gloffset_DispatchComputeGroupSizeARB driDispatchRemapTable[DispatchComputeGroupSizeARB_remap_index]
   1901 #define _gloffset_MultiDrawArraysIndirectCountARB driDispatchRemapTable[MultiDrawArraysIndirectCountARB_remap_index]
   1902 #define _gloffset_MultiDrawElementsIndirectCountARB driDispatchRemapTable[MultiDrawElementsIndirectCountARB_remap_index]
   1903 #define _gloffset_ClipControl driDispatchRemapTable[ClipControl_remap_index]
   1904 #define _gloffset_BindTextureUnit driDispatchRemapTable[BindTextureUnit_remap_index]
   1905 #define _gloffset_BlitNamedFramebuffer driDispatchRemapTable[BlitNamedFramebuffer_remap_index]
   1906 #define _gloffset_CheckNamedFramebufferStatus driDispatchRemapTable[CheckNamedFramebufferStatus_remap_index]
   1907 #define _gloffset_ClearNamedBufferData driDispatchRemapTable[ClearNamedBufferData_remap_index]
   1908 #define _gloffset_ClearNamedBufferSubData driDispatchRemapTable[ClearNamedBufferSubData_remap_index]
   1909 #define _gloffset_ClearNamedFramebufferfi driDispatchRemapTable[ClearNamedFramebufferfi_remap_index]
   1910 #define _gloffset_ClearNamedFramebufferfv driDispatchRemapTable[ClearNamedFramebufferfv_remap_index]
   1911 #define _gloffset_ClearNamedFramebufferiv driDispatchRemapTable[ClearNamedFramebufferiv_remap_index]
   1912 #define _gloffset_ClearNamedFramebufferuiv driDispatchRemapTable[ClearNamedFramebufferuiv_remap_index]
   1913 #define _gloffset_CompressedTextureSubImage1D driDispatchRemapTable[CompressedTextureSubImage1D_remap_index]
   1914 #define _gloffset_CompressedTextureSubImage2D driDispatchRemapTable[CompressedTextureSubImage2D_remap_index]
   1915 #define _gloffset_CompressedTextureSubImage3D driDispatchRemapTable[CompressedTextureSubImage3D_remap_index]
   1916 #define _gloffset_CopyNamedBufferSubData driDispatchRemapTable[CopyNamedBufferSubData_remap_index]
   1917 #define _gloffset_CopyTextureSubImage1D driDispatchRemapTable[CopyTextureSubImage1D_remap_index]
   1918 #define _gloffset_CopyTextureSubImage2D driDispatchRemapTable[CopyTextureSubImage2D_remap_index]
   1919 #define _gloffset_CopyTextureSubImage3D driDispatchRemapTable[CopyTextureSubImage3D_remap_index]
   1920 #define _gloffset_CreateBuffers driDispatchRemapTable[CreateBuffers_remap_index]
   1921 #define _gloffset_CreateFramebuffers driDispatchRemapTable[CreateFramebuffers_remap_index]
   1922 #define _gloffset_CreateProgramPipelines driDispatchRemapTable[CreateProgramPipelines_remap_index]
   1923 #define _gloffset_CreateQueries driDispatchRemapTable[CreateQueries_remap_index]
   1924 #define _gloffset_CreateRenderbuffers driDispatchRemapTable[CreateRenderbuffers_remap_index]
   1925 #define _gloffset_CreateSamplers driDispatchRemapTable[CreateSamplers_remap_index]
   1926 #define _gloffset_CreateTextures driDispatchRemapTable[CreateTextures_remap_index]
   1927 #define _gloffset_CreateTransformFeedbacks driDispatchRemapTable[CreateTransformFeedbacks_remap_index]
   1928 #define _gloffset_CreateVertexArrays driDispatchRemapTable[CreateVertexArrays_remap_index]
   1929 #define _gloffset_DisableVertexArrayAttrib driDispatchRemapTable[DisableVertexArrayAttrib_remap_index]
   1930 #define _gloffset_EnableVertexArrayAttrib driDispatchRemapTable[EnableVertexArrayAttrib_remap_index]
   1931 #define _gloffset_FlushMappedNamedBufferRange driDispatchRemapTable[FlushMappedNamedBufferRange_remap_index]
   1932 #define _gloffset_GenerateTextureMipmap driDispatchRemapTable[GenerateTextureMipmap_remap_index]
   1933 #define _gloffset_GetCompressedTextureImage driDispatchRemapTable[GetCompressedTextureImage_remap_index]
   1934 #define _gloffset_GetNamedBufferParameteri64v driDispatchRemapTable[GetNamedBufferParameteri64v_remap_index]
   1935 #define _gloffset_GetNamedBufferParameteriv driDispatchRemapTable[GetNamedBufferParameteriv_remap_index]
   1936 #define _gloffset_GetNamedBufferPointerv driDispatchRemapTable[GetNamedBufferPointerv_remap_index]
   1937 #define _gloffset_GetNamedBufferSubData driDispatchRemapTable[GetNamedBufferSubData_remap_index]
   1938 #define _gloffset_GetNamedFramebufferAttachmentParameteriv driDispatchRemapTable[GetNamedFramebufferAttachmentParameteriv_remap_index]
   1939 #define _gloffset_GetNamedFramebufferParameteriv driDispatchRemapTable[GetNamedFramebufferParameteriv_remap_index]
   1940 #define _gloffset_GetNamedRenderbufferParameteriv driDispatchRemapTable[GetNamedRenderbufferParameteriv_remap_index]
   1941 #define _gloffset_GetQueryBufferObjecti64v driDispatchRemapTable[GetQueryBufferObjecti64v_remap_index]
   1942 #define _gloffset_GetQueryBufferObjectiv driDispatchRemapTable[GetQueryBufferObjectiv_remap_index]
   1943 #define _gloffset_GetQueryBufferObjectui64v driDispatchRemapTable[GetQueryBufferObjectui64v_remap_index]
   1944 #define _gloffset_GetQueryBufferObjectuiv driDispatchRemapTable[GetQueryBufferObjectuiv_remap_index]
   1945 #define _gloffset_GetTextureImage driDispatchRemapTable[GetTextureImage_remap_index]
   1946 #define _gloffset_GetTextureLevelParameterfv driDispatchRemapTable[GetTextureLevelParameterfv_remap_index]
   1947 #define _gloffset_GetTextureLevelParameteriv driDispatchRemapTable[GetTextureLevelParameteriv_remap_index]
   1948 #define _gloffset_GetTextureParameterIiv driDispatchRemapTable[GetTextureParameterIiv_remap_index]
   1949 #define _gloffset_GetTextureParameterIuiv driDispatchRemapTable[GetTextureParameterIuiv_remap_index]
   1950 #define _gloffset_GetTextureParameterfv driDispatchRemapTable[GetTextureParameterfv_remap_index]
   1951 #define _gloffset_GetTextureParameteriv driDispatchRemapTable[GetTextureParameteriv_remap_index]
   1952 #define _gloffset_GetTransformFeedbacki64_v driDispatchRemapTable[GetTransformFeedbacki64_v_remap_index]
   1953 #define _gloffset_GetTransformFeedbacki_v driDispatchRemapTable[GetTransformFeedbacki_v_remap_index]
   1954 #define _gloffset_GetTransformFeedbackiv driDispatchRemapTable[GetTransformFeedbackiv_remap_index]
   1955 #define _gloffset_GetVertexArrayIndexed64iv driDispatchRemapTable[GetVertexArrayIndexed64iv_remap_index]
   1956 #define _gloffset_GetVertexArrayIndexediv driDispatchRemapTable[GetVertexArrayIndexediv_remap_index]
   1957 #define _gloffset_GetVertexArrayiv driDispatchRemapTable[GetVertexArrayiv_remap_index]
   1958 #define _gloffset_InvalidateNamedFramebufferData driDispatchRemapTable[InvalidateNamedFramebufferData_remap_index]
   1959 #define _gloffset_InvalidateNamedFramebufferSubData driDispatchRemapTable[InvalidateNamedFramebufferSubData_remap_index]
   1960 #define _gloffset_MapNamedBuffer driDispatchRemapTable[MapNamedBuffer_remap_index]
   1961 #define _gloffset_MapNamedBufferRange driDispatchRemapTable[MapNamedBufferRange_remap_index]
   1962 #define _gloffset_NamedBufferData driDispatchRemapTable[NamedBufferData_remap_index]
   1963 #define _gloffset_NamedBufferStorage driDispatchRemapTable[NamedBufferStorage_remap_index]
   1964 #define _gloffset_NamedBufferSubData driDispatchRemapTable[NamedBufferSubData_remap_index]
   1965 #define _gloffset_NamedFramebufferDrawBuffer driDispatchRemapTable[NamedFramebufferDrawBuffer_remap_index]
   1966 #define _gloffset_NamedFramebufferDrawBuffers driDispatchRemapTable[NamedFramebufferDrawBuffers_remap_index]
   1967 #define _gloffset_NamedFramebufferParameteri driDispatchRemapTable[NamedFramebufferParameteri_remap_index]
   1968 #define _gloffset_NamedFramebufferReadBuffer driDispatchRemapTable[NamedFramebufferReadBuffer_remap_index]
   1969 #define _gloffset_NamedFramebufferRenderbuffer driDispatchRemapTable[NamedFramebufferRenderbuffer_remap_index]
   1970 #define _gloffset_NamedFramebufferTexture driDispatchRemapTable[NamedFramebufferTexture_remap_index]
   1971 #define _gloffset_NamedFramebufferTextureLayer driDispatchRemapTable[NamedFramebufferTextureLayer_remap_index]
   1972 #define _gloffset_NamedRenderbufferStorage driDispatchRemapTable[NamedRenderbufferStorage_remap_index]
   1973 #define _gloffset_NamedRenderbufferStorageMultisample driDispatchRemapTable[NamedRenderbufferStorageMultisample_remap_index]
   1974 #define _gloffset_TextureBuffer driDispatchRemapTable[TextureBuffer_remap_index]
   1975 #define _gloffset_TextureBufferRange driDispatchRemapTable[TextureBufferRange_remap_index]
   1976 #define _gloffset_TextureParameterIiv driDispatchRemapTable[TextureParameterIiv_remap_index]
   1977 #define _gloffset_TextureParameterIuiv driDispatchRemapTable[TextureParameterIuiv_remap_index]
   1978 #define _gloffset_TextureParameterf driDispatchRemapTable[TextureParameterf_remap_index]
   1979 #define _gloffset_TextureParameterfv driDispatchRemapTable[TextureParameterfv_remap_index]
   1980 #define _gloffset_TextureParameteri driDispatchRemapTable[TextureParameteri_remap_index]
   1981 #define _gloffset_TextureParameteriv driDispatchRemapTable[TextureParameteriv_remap_index]
   1982 #define _gloffset_TextureStorage1D driDispatchRemapTable[TextureStorage1D_remap_index]
   1983 #define _gloffset_TextureStorage2D driDispatchRemapTable[TextureStorage2D_remap_index]
   1984 #define _gloffset_TextureStorage2DMultisample driDispatchRemapTable[TextureStorage2DMultisample_remap_index]
   1985 #define _gloffset_TextureStorage3D driDispatchRemapTable[TextureStorage3D_remap_index]
   1986 #define _gloffset_TextureStorage3DMultisample driDispatchRemapTable[TextureStorage3DMultisample_remap_index]
   1987 #define _gloffset_TextureSubImage1D driDispatchRemapTable[TextureSubImage1D_remap_index]
   1988 #define _gloffset_TextureSubImage2D driDispatchRemapTable[TextureSubImage2D_remap_index]
   1989 #define _gloffset_TextureSubImage3D driDispatchRemapTable[TextureSubImage3D_remap_index]
   1990 #define _gloffset_TransformFeedbackBufferBase driDispatchRemapTable[TransformFeedbackBufferBase_remap_index]
   1991 #define _gloffset_TransformFeedbackBufferRange driDispatchRemapTable[TransformFeedbackBufferRange_remap_index]
   1992 #define _gloffset_UnmapNamedBuffer driDispatchRemapTable[UnmapNamedBuffer_remap_index]
   1993 #define _gloffset_VertexArrayAttribBinding driDispatchRemapTable[VertexArrayAttribBinding_remap_index]
   1994 #define _gloffset_VertexArrayAttribFormat driDispatchRemapTable[VertexArrayAttribFormat_remap_index]
   1995 #define _gloffset_VertexArrayAttribIFormat driDispatchRemapTable[VertexArrayAttribIFormat_remap_index]
   1996 #define _gloffset_VertexArrayAttribLFormat driDispatchRemapTable[VertexArrayAttribLFormat_remap_index]
   1997 #define _gloffset_VertexArrayBindingDivisor driDispatchRemapTable[VertexArrayBindingDivisor_remap_index]
   1998 #define _gloffset_VertexArrayElementBuffer driDispatchRemapTable[VertexArrayElementBuffer_remap_index]
   1999 #define _gloffset_VertexArrayVertexBuffer driDispatchRemapTable[VertexArrayVertexBuffer_remap_index]
   2000 #define _gloffset_VertexArrayVertexBuffers driDispatchRemapTable[VertexArrayVertexBuffers_remap_index]
   2001 #define _gloffset_GetCompressedTextureSubImage driDispatchRemapTable[GetCompressedTextureSubImage_remap_index]
   2002 #define _gloffset_GetTextureSubImage driDispatchRemapTable[GetTextureSubImage_remap_index]
   2003 #define _gloffset_InvalidateBufferData driDispatchRemapTable[InvalidateBufferData_remap_index]
   2004 #define _gloffset_InvalidateBufferSubData driDispatchRemapTable[InvalidateBufferSubData_remap_index]
   2005 #define _gloffset_InvalidateFramebuffer driDispatchRemapTable[InvalidateFramebuffer_remap_index]
   2006 #define _gloffset_InvalidateSubFramebuffer driDispatchRemapTable[InvalidateSubFramebuffer_remap_index]
   2007 #define _gloffset_InvalidateTexImage driDispatchRemapTable[InvalidateTexImage_remap_index]
   2008 #define _gloffset_InvalidateTexSubImage driDispatchRemapTable[InvalidateTexSubImage_remap_index]
   2009 #define _gloffset_PolygonOffsetEXT driDispatchRemapTable[PolygonOffsetEXT_remap_index]
   2010 #define _gloffset_DrawTexfOES driDispatchRemapTable[DrawTexfOES_remap_index]
   2011 #define _gloffset_DrawTexfvOES driDispatchRemapTable[DrawTexfvOES_remap_index]
   2012 #define _gloffset_DrawTexiOES driDispatchRemapTable[DrawTexiOES_remap_index]
   2013 #define _gloffset_DrawTexivOES driDispatchRemapTable[DrawTexivOES_remap_index]
   2014 #define _gloffset_DrawTexsOES driDispatchRemapTable[DrawTexsOES_remap_index]
   2015 #define _gloffset_DrawTexsvOES driDispatchRemapTable[DrawTexsvOES_remap_index]
   2016 #define _gloffset_DrawTexxOES driDispatchRemapTable[DrawTexxOES_remap_index]
   2017 #define _gloffset_DrawTexxvOES driDispatchRemapTable[DrawTexxvOES_remap_index]
   2018 #define _gloffset_PointSizePointerOES driDispatchRemapTable[PointSizePointerOES_remap_index]
   2019 #define _gloffset_QueryMatrixxOES driDispatchRemapTable[QueryMatrixxOES_remap_index]
   2020 #define _gloffset_SampleMaskSGIS driDispatchRemapTable[SampleMaskSGIS_remap_index]
   2021 #define _gloffset_SamplePatternSGIS driDispatchRemapTable[SamplePatternSGIS_remap_index]
   2022 #define _gloffset_ColorPointerEXT driDispatchRemapTable[ColorPointerEXT_remap_index]
   2023 #define _gloffset_EdgeFlagPointerEXT driDispatchRemapTable[EdgeFlagPointerEXT_remap_index]
   2024 #define _gloffset_IndexPointerEXT driDispatchRemapTable[IndexPointerEXT_remap_index]
   2025 #define _gloffset_NormalPointerEXT driDispatchRemapTable[NormalPointerEXT_remap_index]
   2026 #define _gloffset_TexCoordPointerEXT driDispatchRemapTable[TexCoordPointerEXT_remap_index]
   2027 #define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index]
   2028 #define _gloffset_DiscardFramebufferEXT driDispatchRemapTable[DiscardFramebufferEXT_remap_index]
   2029 #define _gloffset_ActiveShaderProgram driDispatchRemapTable[ActiveShaderProgram_remap_index]
   2030 #define _gloffset_BindProgramPipeline driDispatchRemapTable[BindProgramPipeline_remap_index]
   2031 #define _gloffset_CreateShaderProgramv driDispatchRemapTable[CreateShaderProgramv_remap_index]
   2032 #define _gloffset_DeleteProgramPipelines driDispatchRemapTable[DeleteProgramPipelines_remap_index]
   2033 #define _gloffset_GenProgramPipelines driDispatchRemapTable[GenProgramPipelines_remap_index]
   2034 #define _gloffset_GetProgramPipelineInfoLog driDispatchRemapTable[GetProgramPipelineInfoLog_remap_index]
   2035 #define _gloffset_GetProgramPipelineiv driDispatchRemapTable[GetProgramPipelineiv_remap_index]
   2036 #define _gloffset_IsProgramPipeline driDispatchRemapTable[IsProgramPipeline_remap_index]
   2037 #define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index]
   2038 #define _gloffset_ProgramUniform1d driDispatchRemapTable[ProgramUniform1d_remap_index]
   2039 #define _gloffset_ProgramUniform1dv driDispatchRemapTable[ProgramUniform1dv_remap_index]
   2040 #define _gloffset_ProgramUniform1f driDispatchRemapTable[ProgramUniform1f_remap_index]
   2041 #define _gloffset_ProgramUniform1fv driDispatchRemapTable[ProgramUniform1fv_remap_index]
   2042 #define _gloffset_ProgramUniform1i driDispatchRemapTable[ProgramUniform1i_remap_index]
   2043 #define _gloffset_ProgramUniform1iv driDispatchRemapTable[ProgramUniform1iv_remap_index]
   2044 #define _gloffset_ProgramUniform1ui driDispatchRemapTable[ProgramUniform1ui_remap_index]
   2045 #define _gloffset_ProgramUniform1uiv driDispatchRemapTable[ProgramUniform1uiv_remap_index]
   2046 #define _gloffset_ProgramUniform2d driDispatchRemapTable[ProgramUniform2d_remap_index]
   2047 #define _gloffset_ProgramUniform2dv driDispatchRemapTable[ProgramUniform2dv_remap_index]
   2048 #define _gloffset_ProgramUniform2f driDispatchRemapTable[ProgramUniform2f_remap_index]
   2049 #define _gloffset_ProgramUniform2fv driDispatchRemapTable[ProgramUniform2fv_remap_index]
   2050 #define _gloffset_ProgramUniform2i driDispatchRemapTable[ProgramUniform2i_remap_index]
   2051 #define _gloffset_ProgramUniform2iv driDispatchRemapTable[ProgramUniform2iv_remap_index]
   2052 #define _gloffset_ProgramUniform2ui driDispatchRemapTable[ProgramUniform2ui_remap_index]
   2053 #define _gloffset_ProgramUniform2uiv driDispatchRemapTable[ProgramUniform2uiv_remap_index]
   2054 #define _gloffset_ProgramUniform3d driDispatchRemapTable[ProgramUniform3d_remap_index]
   2055 #define _gloffset_ProgramUniform3dv driDispatchRemapTable[ProgramUniform3dv_remap_index]
   2056 #define _gloffset_ProgramUniform3f driDispatchRemapTable[ProgramUniform3f_remap_index]
   2057 #define _gloffset_ProgramUniform3fv driDispatchRemapTable[ProgramUniform3fv_remap_index]
   2058 #define _gloffset_ProgramUniform3i driDispatchRemapTable[ProgramUniform3i_remap_index]
   2059 #define _gloffset_ProgramUniform3iv driDispatchRemapTable[ProgramUniform3iv_remap_index]
   2060 #define _gloffset_ProgramUniform3ui driDispatchRemapTable[ProgramUniform3ui_remap_index]
   2061 #define _gloffset_ProgramUniform3uiv driDispatchRemapTable[ProgramUniform3uiv_remap_index]
   2062 #define _gloffset_ProgramUniform4d driDispatchRemapTable[ProgramUniform4d_remap_index]
   2063 #define _gloffset_ProgramUniform4dv driDispatchRemapTable[ProgramUniform4dv_remap_index]
   2064 #define _gloffset_ProgramUniform4f driDispatchRemapTable[ProgramUniform4f_remap_index]
   2065 #define _gloffset_ProgramUniform4fv driDispatchRemapTable[ProgramUniform4fv_remap_index]
   2066 #define _gloffset_ProgramUniform4i driDispatchRemapTable[ProgramUniform4i_remap_index]
   2067 #define _gloffset_ProgramUniform4iv driDispatchRemapTable[ProgramUniform4iv_remap_index]
   2068 #define _gloffset_ProgramUniform4ui driDispatchRemapTable[ProgramUniform4ui_remap_index]
   2069 #define _gloffset_ProgramUniform4uiv driDispatchRemapTable[ProgramUniform4uiv_remap_index]
   2070 #define _gloffset_ProgramUniformMatrix2dv driDispatchRemapTable[ProgramUniformMatrix2dv_remap_index]
   2071 #define _gloffset_ProgramUniformMatrix2fv driDispatchRemapTable[ProgramUniformMatrix2fv_remap_index]
   2072 #define _gloffset_ProgramUniformMatrix2x3dv driDispatchRemapTable[ProgramUniformMatrix2x3dv_remap_index]
   2073 #define _gloffset_ProgramUniformMatrix2x3fv driDispatchRemapTable[ProgramUniformMatrix2x3fv_remap_index]
   2074 #define _gloffset_ProgramUniformMatrix2x4dv driDispatchRemapTable[ProgramUniformMatrix2x4dv_remap_index]
   2075 #define _gloffset_ProgramUniformMatrix2x4fv driDispatchRemapTable[ProgramUniformMatrix2x4fv_remap_index]
   2076 #define _gloffset_ProgramUniformMatrix3dv driDispatchRemapTable[ProgramUniformMatrix3dv_remap_index]
   2077 #define _gloffset_ProgramUniformMatrix3fv driDispatchRemapTable[ProgramUniformMatrix3fv_remap_index]
   2078 #define _gloffset_ProgramUniformMatrix3x2dv driDispatchRemapTable[ProgramUniformMatrix3x2dv_remap_index]
   2079 #define _gloffset_ProgramUniformMatrix3x2fv driDispatchRemapTable[ProgramUniformMatrix3x2fv_remap_index]
   2080 #define _gloffset_ProgramUniformMatrix3x4dv driDispatchRemapTable[ProgramUniformMatrix3x4dv_remap_index]
   2081 #define _gloffset_ProgramUniformMatrix3x4fv driDispatchRemapTable[ProgramUniformMatrix3x4fv_remap_index]
   2082 #define _gloffset_ProgramUniformMatrix4dv driDispatchRemapTable[ProgramUniformMatrix4dv_remap_index]
   2083 #define _gloffset_ProgramUniformMatrix4fv driDispatchRemapTable[ProgramUniformMatrix4fv_remap_index]
   2084 #define _gloffset_ProgramUniformMatrix4x2dv driDispatchRemapTable[ProgramUniformMatrix4x2dv_remap_index]
   2085 #define _gloffset_ProgramUniformMatrix4x2fv driDispatchRemapTable[ProgramUniformMatrix4x2fv_remap_index]
   2086 #define _gloffset_ProgramUniformMatrix4x3dv driDispatchRemapTable[ProgramUniformMatrix4x3dv_remap_index]
   2087 #define _gloffset_ProgramUniformMatrix4x3fv driDispatchRemapTable[ProgramUniformMatrix4x3fv_remap_index]
   2088 #define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index]
   2089 #define _gloffset_UseProgramStages driDispatchRemapTable[UseProgramStages_remap_index]
   2090 #define _gloffset_ValidateProgramPipeline driDispatchRemapTable[ValidateProgramPipeline_remap_index]
   2091 #define _gloffset_DebugMessageCallback driDispatchRemapTable[DebugMessageCallback_remap_index]
   2092 #define _gloffset_DebugMessageControl driDispatchRemapTable[DebugMessageControl_remap_index]
   2093 #define _gloffset_DebugMessageInsert driDispatchRemapTable[DebugMessageInsert_remap_index]
   2094 #define _gloffset_GetDebugMessageLog driDispatchRemapTable[GetDebugMessageLog_remap_index]
   2095 #define _gloffset_GetObjectLabel driDispatchRemapTable[GetObjectLabel_remap_index]
   2096 #define _gloffset_GetObjectPtrLabel driDispatchRemapTable[GetObjectPtrLabel_remap_index]
   2097 #define _gloffset_ObjectLabel driDispatchRemapTable[ObjectLabel_remap_index]
   2098 #define _gloffset_ObjectPtrLabel driDispatchRemapTable[ObjectPtrLabel_remap_index]
   2099 #define _gloffset_PopDebugGroup driDispatchRemapTable[PopDebugGroup_remap_index]
   2100 #define _gloffset_PushDebugGroup driDispatchRemapTable[PushDebugGroup_remap_index]
   2101 #define _gloffset_SecondaryColor3fEXT driDispatchRemapTable[SecondaryColor3fEXT_remap_index]
   2102 #define _gloffset_SecondaryColor3fvEXT driDispatchRemapTable[SecondaryColor3fvEXT_remap_index]
   2103 #define _gloffset_MultiDrawElementsEXT driDispatchRemapTable[MultiDrawElementsEXT_remap_index]
   2104 #define _gloffset_FogCoordfEXT driDispatchRemapTable[FogCoordfEXT_remap_index]
   2105 #define _gloffset_FogCoordfvEXT driDispatchRemapTable[FogCoordfvEXT_remap_index]
   2106 #define _gloffset_ResizeBuffersMESA driDispatchRemapTable[ResizeBuffersMESA_remap_index]
   2107 #define _gloffset_WindowPos4dMESA driDispatchRemapTable[WindowPos4dMESA_remap_index]
   2108 #define _gloffset_WindowPos4dvMESA driDispatchRemapTable[WindowPos4dvMESA_remap_index]
   2109 #define _gloffset_WindowPos4fMESA driDispatchRemapTable[WindowPos4fMESA_remap_index]
   2110 #define _gloffset_WindowPos4fvMESA driDispatchRemapTable[WindowPos4fvMESA_remap_index]
   2111 #define _gloffset_WindowPos4iMESA driDispatchRemapTable[WindowPos4iMESA_remap_index]
   2112 #define _gloffset_WindowPos4ivMESA driDispatchRemapTable[WindowPos4ivMESA_remap_index]
   2113 #define _gloffset_WindowPos4sMESA driDispatchRemapTable[WindowPos4sMESA_remap_index]
   2114 #define _gloffset_WindowPos4svMESA driDispatchRemapTable[WindowPos4svMESA_remap_index]
   2115 #define _gloffset_MultiModeDrawArraysIBM driDispatchRemapTable[MultiModeDrawArraysIBM_remap_index]
   2116 #define _gloffset_MultiModeDrawElementsIBM driDispatchRemapTable[MultiModeDrawElementsIBM_remap_index]
   2117 #define _gloffset_AreProgramsResidentNV driDispatchRemapTable[AreProgramsResidentNV_remap_index]
   2118 #define _gloffset_ExecuteProgramNV driDispatchRemapTable[ExecuteProgramNV_remap_index]
   2119 #define _gloffset_GetProgramParameterdvNV driDispatchRemapTable[GetProgramParameterdvNV_remap_index]
   2120 #define _gloffset_GetProgramParameterfvNV driDispatchRemapTable[GetProgramParameterfvNV_remap_index]
   2121 #define _gloffset_GetProgramStringNV driDispatchRemapTable[GetProgramStringNV_remap_index]
   2122 #define _gloffset_GetProgramivNV driDispatchRemapTable[GetProgramivNV_remap_index]
   2123 #define _gloffset_GetTrackMatrixivNV driDispatchRemapTable[GetTrackMatrixivNV_remap_index]
   2124 #define _gloffset_GetVertexAttribdvNV driDispatchRemapTable[GetVertexAttribdvNV_remap_index]
   2125 #define _gloffset_GetVertexAttribfvNV driDispatchRemapTable[GetVertexAttribfvNV_remap_index]
   2126 #define _gloffset_GetVertexAttribivNV driDispatchRemapTable[GetVertexAttribivNV_remap_index]
   2127 #define _gloffset_LoadProgramNV driDispatchRemapTable[LoadProgramNV_remap_index]
   2128 #define _gloffset_ProgramParameters4dvNV driDispatchRemapTable[ProgramParameters4dvNV_remap_index]
   2129 #define _gloffset_ProgramParameters4fvNV driDispatchRemapTable[ProgramParameters4fvNV_remap_index]
   2130 #define _gloffset_RequestResidentProgramsNV driDispatchRemapTable[RequestResidentProgramsNV_remap_index]
   2131 #define _gloffset_TrackMatrixNV driDispatchRemapTable[TrackMatrixNV_remap_index]
   2132 #define _gloffset_VertexAttrib1dNV driDispatchRemapTable[VertexAttrib1dNV_remap_index]
   2133 #define _gloffset_VertexAttrib1dvNV driDispatchRemapTable[VertexAttrib1dvNV_remap_index]
   2134 #define _gloffset_VertexAttrib1fNV driDispatchRemapTable[VertexAttrib1fNV_remap_index]
   2135 #define _gloffset_VertexAttrib1fvNV driDispatchRemapTable[VertexAttrib1fvNV_remap_index]
   2136 #define _gloffset_VertexAttrib1sNV driDispatchRemapTable[VertexAttrib1sNV_remap_index]
   2137 #define _gloffset_VertexAttrib1svNV driDispatchRemapTable[VertexAttrib1svNV_remap_index]
   2138 #define _gloffset_VertexAttrib2dNV driDispatchRemapTable[VertexAttrib2dNV_remap_index]
   2139 #define _gloffset_VertexAttrib2dvNV driDispatchRemapTable[VertexAttrib2dvNV_remap_index]
   2140 #define _gloffset_VertexAttrib2fNV driDispatchRemapTable[VertexAttrib2fNV_remap_index]
   2141 #define _gloffset_VertexAttrib2fvNV driDispatchRemapTable[VertexAttrib2fvNV_remap_index]
   2142 #define _gloffset_VertexAttrib2sNV driDispatchRemapTable[VertexAttrib2sNV_remap_index]
   2143 #define _gloffset_VertexAttrib2svNV driDispatchRemapTable[VertexAttrib2svNV_remap_index]
   2144 #define _gloffset_VertexAttrib3dNV driDispatchRemapTable[VertexAttrib3dNV_remap_index]
   2145 #define _gloffset_VertexAttrib3dvNV driDispatchRemapTable[VertexAttrib3dvNV_remap_index]
   2146 #define _gloffset_VertexAttrib3fNV driDispatchRemapTable[VertexAttrib3fNV_remap_index]
   2147 #define _gloffset_VertexAttrib3fvNV driDispatchRemapTable[VertexAttrib3fvNV_remap_index]
   2148 #define _gloffset_VertexAttrib3sNV driDispatchRemapTable[VertexAttrib3sNV_remap_index]
   2149 #define _gloffset_VertexAttrib3svNV driDispatchRemapTable[VertexAttrib3svNV_remap_index]
   2150 #define _gloffset_VertexAttrib4dNV driDispatchRemapTable[VertexAttrib4dNV_remap_index]
   2151 #define _gloffset_VertexAttrib4dvNV driDispatchRemapTable[VertexAttrib4dvNV_remap_index]
   2152 #define _gloffset_VertexAttrib4fNV driDispatchRemapTable[VertexAttrib4fNV_remap_index]
   2153 #define _gloffset_VertexAttrib4fvNV driDispatchRemapTable[VertexAttrib4fvNV_remap_index]
   2154 #define _gloffset_VertexAttrib4sNV driDispatchRemapTable[VertexAttrib4sNV_remap_index]
   2155 #define _gloffset_VertexAttrib4svNV driDispatchRemapTable[VertexAttrib4svNV_remap_index]
   2156 #define _gloffset_VertexAttrib4ubNV driDispatchRemapTable[VertexAttrib4ubNV_remap_index]
   2157 #define _gloffset_VertexAttrib4ubvNV driDispatchRemapTable[VertexAttrib4ubvNV_remap_index]
   2158 #define _gloffset_VertexAttribPointerNV driDispatchRemapTable[VertexAttribPointerNV_remap_index]
   2159 #define _gloffset_VertexAttribs1dvNV driDispatchRemapTable[VertexAttribs1dvNV_remap_index]
   2160 #define _gloffset_VertexAttribs1fvNV driDispatchRemapTable[VertexAttribs1fvNV_remap_index]
   2161 #define _gloffset_VertexAttribs1svNV driDispatchRemapTable[VertexAttribs1svNV_remap_index]
   2162 #define _gloffset_VertexAttribs2dvNV driDispatchRemapTable[VertexAttribs2dvNV_remap_index]
   2163 #define _gloffset_VertexAttribs2fvNV driDispatchRemapTable[VertexAttribs2fvNV_remap_index]
   2164 #define _gloffset_VertexAttribs2svNV driDispatchRemapTable[VertexAttribs2svNV_remap_index]
   2165 #define _gloffset_VertexAttribs3dvNV driDispatchRemapTable[VertexAttribs3dvNV_remap_index]
   2166 #define _gloffset_VertexAttribs3fvNV driDispatchRemapTable[VertexAttribs3fvNV_remap_index]
   2167 #define _gloffset_VertexAttribs3svNV driDispatchRemapTable[VertexAttribs3svNV_remap_index]
   2168 #define _gloffset_VertexAttribs4dvNV driDispatchRemapTable[VertexAttribs4dvNV_remap_index]
   2169 #define _gloffset_VertexAttribs4fvNV driDispatchRemapTable[VertexAttribs4fvNV_remap_index]
   2170 #define _gloffset_VertexAttribs4svNV driDispatchRemapTable[VertexAttribs4svNV_remap_index]
   2171 #define _gloffset_VertexAttribs4ubvNV driDispatchRemapTable[VertexAttribs4ubvNV_remap_index]
   2172 #define _gloffset_GetTexBumpParameterfvATI driDispatchRemapTable[GetTexBumpParameterfvATI_remap_index]
   2173 #define _gloffset_GetTexBumpParameterivATI driDispatchRemapTable[GetTexBumpParameterivATI_remap_index]
   2174 #define _gloffset_TexBumpParameterfvATI driDispatchRemapTable[TexBumpParameterfvATI_remap_index]
   2175 #define _gloffset_TexBumpParameterivATI driDispatchRemapTable[TexBumpParameterivATI_remap_index]
   2176 #define _gloffset_AlphaFragmentOp1ATI driDispatchRemapTable[AlphaFragmentOp1ATI_remap_index]
   2177 #define _gloffset_AlphaFragmentOp2ATI driDispatchRemapTable[AlphaFragmentOp2ATI_remap_index]
   2178 #define _gloffset_AlphaFragmentOp3ATI driDispatchRemapTable[AlphaFragmentOp3ATI_remap_index]
   2179 #define _gloffset_BeginFragmentShaderATI driDispatchRemapTable[BeginFragmentShaderATI_remap_index]
   2180 #define _gloffset_BindFragmentShaderATI driDispatchRemapTable[BindFragmentShaderATI_remap_index]
   2181 #define _gloffset_ColorFragmentOp1ATI driDispatchRemapTable[ColorFragmentOp1ATI_remap_index]
   2182 #define _gloffset_ColorFragmentOp2ATI driDispatchRemapTable[ColorFragmentOp2ATI_remap_index]
   2183 #define _gloffset_ColorFragmentOp3ATI driDispatchRemapTable[ColorFragmentOp3ATI_remap_index]
   2184 #define _gloffset_DeleteFragmentShaderATI driDispatchRemapTable[DeleteFragmentShaderATI_remap_index]
   2185 #define _gloffset_EndFragmentShaderATI driDispatchRemapTable[EndFragmentShaderATI_remap_index]
   2186 #define _gloffset_GenFragmentShadersATI driDispatchRemapTable[GenFragmentShadersATI_remap_index]
   2187 #define _gloffset_PassTexCoordATI driDispatchRemapTable[PassTexCoordATI_remap_index]
   2188 #define _gloffset_SampleMapATI driDispatchRemapTable[SampleMapATI_remap_index]
   2189 #define _gloffset_SetFragmentShaderConstantATI driDispatchRemapTable[SetFragmentShaderConstantATI_remap_index]
   2190 #define _gloffset_DepthRangeArrayfvOES driDispatchRemapTable[DepthRangeArrayfvOES_remap_index]
   2191 #define _gloffset_DepthRangeIndexedfOES driDispatchRemapTable[DepthRangeIndexedfOES_remap_index]
   2192 #define _gloffset_ActiveStencilFaceEXT driDispatchRemapTable[ActiveStencilFaceEXT_remap_index]
   2193 #define _gloffset_BindVertexArrayAPPLE driDispatchRemapTable[BindVertexArrayAPPLE_remap_index]
   2194 #define _gloffset_GenVertexArraysAPPLE driDispatchRemapTable[GenVertexArraysAPPLE_remap_index]
   2195 #define _gloffset_GetProgramNamedParameterdvNV driDispatchRemapTable[GetProgramNamedParameterdvNV_remap_index]
   2196 #define _gloffset_GetProgramNamedParameterfvNV driDispatchRemapTable[GetProgramNamedParameterfvNV_remap_index]
   2197 #define _gloffset_ProgramNamedParameter4dNV driDispatchRemapTable[ProgramNamedParameter4dNV_remap_index]
   2198 #define _gloffset_ProgramNamedParameter4dvNV driDispatchRemapTable[ProgramNamedParameter4dvNV_remap_index]
   2199 #define _gloffset_ProgramNamedParameter4fNV driDispatchRemapTable[ProgramNamedParameter4fNV_remap_index]
   2200 #define _gloffset_ProgramNamedParameter4fvNV driDispatchRemapTable[ProgramNamedParameter4fvNV_remap_index]
   2201 #define _gloffset_PrimitiveRestartNV driDispatchRemapTable[PrimitiveRestartNV_remap_index]
   2202 #define _gloffset_GetTexGenxvOES driDispatchRemapTable[GetTexGenxvOES_remap_index]
   2203 #define _gloffset_TexGenxOES driDispatchRemapTable[TexGenxOES_remap_index]
   2204 #define _gloffset_TexGenxvOES driDispatchRemapTable[TexGenxvOES_remap_index]
   2205 #define _gloffset_DepthBoundsEXT driDispatchRemapTable[DepthBoundsEXT_remap_index]
   2206 #define _gloffset_BindFramebufferEXT driDispatchRemapTable[BindFramebufferEXT_remap_index]
   2207 #define _gloffset_BindRenderbufferEXT driDispatchRemapTable[BindRenderbufferEXT_remap_index]
   2208 #define _gloffset_StringMarkerGREMEDY driDispatchRemapTable[StringMarkerGREMEDY_remap_index]
   2209 #define _gloffset_BufferParameteriAPPLE driDispatchRemapTable[BufferParameteriAPPLE_remap_index]
   2210 #define _gloffset_FlushMappedBufferRangeAPPLE driDispatchRemapTable[FlushMappedBufferRangeAPPLE_remap_index]
   2211 #define _gloffset_VertexAttribI1iEXT driDispatchRemapTable[VertexAttribI1iEXT_remap_index]
   2212 #define _gloffset_VertexAttribI1uiEXT driDispatchRemapTable[VertexAttribI1uiEXT_remap_index]
   2213 #define _gloffset_VertexAttribI2iEXT driDispatchRemapTable[VertexAttribI2iEXT_remap_index]
   2214 #define _gloffset_VertexAttribI2ivEXT driDispatchRemapTable[VertexAttribI2ivEXT_remap_index]
   2215 #define _gloffset_VertexAttribI2uiEXT driDispatchRemapTable[VertexAttribI2uiEXT_remap_index]
   2216 #define _gloffset_VertexAttribI2uivEXT driDispatchRemapTable[VertexAttribI2uivEXT_remap_index]
   2217 #define _gloffset_VertexAttribI3iEXT driDispatchRemapTable[VertexAttribI3iEXT_remap_index]
   2218 #define _gloffset_VertexAttribI3ivEXT driDispatchRemapTable[VertexAttribI3ivEXT_remap_index]
   2219 #define _gloffset_VertexAttribI3uiEXT driDispatchRemapTable[VertexAttribI3uiEXT_remap_index]
   2220 #define _gloffset_VertexAttribI3uivEXT driDispatchRemapTable[VertexAttribI3uivEXT_remap_index]
   2221 #define _gloffset_VertexAttribI4iEXT driDispatchRemapTable[VertexAttribI4iEXT_remap_index]
   2222 #define _gloffset_VertexAttribI4ivEXT driDispatchRemapTable[VertexAttribI4ivEXT_remap_index]
   2223 #define _gloffset_VertexAttribI4uiEXT driDispatchRemapTable[VertexAttribI4uiEXT_remap_index]
   2224 #define _gloffset_VertexAttribI4uivEXT driDispatchRemapTable[VertexAttribI4uivEXT_remap_index]
   2225 #define _gloffset_ClearColorIiEXT driDispatchRemapTable[ClearColorIiEXT_remap_index]
   2226 #define _gloffset_ClearColorIuiEXT driDispatchRemapTable[ClearColorIuiEXT_remap_index]
   2227 #define _gloffset_BindBufferOffsetEXT driDispatchRemapTable[BindBufferOffsetEXT_remap_index]
   2228 #define _gloffset_BeginPerfMonitorAMD driDispatchRemapTable[BeginPerfMonitorAMD_remap_index]
   2229 #define _gloffset_DeletePerfMonitorsAMD driDispatchRemapTable[DeletePerfMonitorsAMD_remap_index]
   2230 #define _gloffset_EndPerfMonitorAMD driDispatchRemapTable[EndPerfMonitorAMD_remap_index]
   2231 #define _gloffset_GenPerfMonitorsAMD driDispatchRemapTable[GenPerfMonitorsAMD_remap_index]
   2232 #define _gloffset_GetPerfMonitorCounterDataAMD driDispatchRemapTable[GetPerfMonitorCounterDataAMD_remap_index]
   2233 #define _gloffset_GetPerfMonitorCounterInfoAMD driDispatchRemapTable[GetPerfMonitorCounterInfoAMD_remap_index]
   2234 #define _gloffset_GetPerfMonitorCounterStringAMD driDispatchRemapTable[GetPerfMonitorCounterStringAMD_remap_index]
   2235 #define _gloffset_GetPerfMonitorCountersAMD driDispatchRemapTable[GetPerfMonitorCountersAMD_remap_index]
   2236 #define _gloffset_GetPerfMonitorGroupStringAMD driDispatchRemapTable[GetPerfMonitorGroupStringAMD_remap_index]
   2237 #define _gloffset_GetPerfMonitorGroupsAMD driDispatchRemapTable[GetPerfMonitorGroupsAMD_remap_index]
   2238 #define _gloffset_SelectPerfMonitorCountersAMD driDispatchRemapTable[SelectPerfMonitorCountersAMD_remap_index]
   2239 #define _gloffset_GetObjectParameterivAPPLE driDispatchRemapTable[GetObjectParameterivAPPLE_remap_index]
   2240 #define _gloffset_ObjectPurgeableAPPLE driDispatchRemapTable[ObjectPurgeableAPPLE_remap_index]
   2241 #define _gloffset_ObjectUnpurgeableAPPLE driDispatchRemapTable[ObjectUnpurgeableAPPLE_remap_index]
   2242 #define _gloffset_ActiveProgramEXT driDispatchRemapTable[ActiveProgramEXT_remap_index]
   2243 #define _gloffset_CreateShaderProgramEXT driDispatchRemapTable[CreateShaderProgramEXT_remap_index]
   2244 #define _gloffset_UseShaderProgramEXT driDispatchRemapTable[UseShaderProgramEXT_remap_index]
   2245 #define _gloffset_TextureBarrierNV driDispatchRemapTable[TextureBarrierNV_remap_index]
   2246 #define _gloffset_VDPAUFiniNV driDispatchRemapTable[VDPAUFiniNV_remap_index]
   2247 #define _gloffset_VDPAUGetSurfaceivNV driDispatchRemapTable[VDPAUGetSurfaceivNV_remap_index]
   2248 #define _gloffset_VDPAUInitNV driDispatchRemapTable[VDPAUInitNV_remap_index]
   2249 #define _gloffset_VDPAUIsSurfaceNV driDispatchRemapTable[VDPAUIsSurfaceNV_remap_index]
   2250 #define _gloffset_VDPAUMapSurfacesNV driDispatchRemapTable[VDPAUMapSurfacesNV_remap_index]
   2251 #define _gloffset_VDPAURegisterOutputSurfaceNV driDispatchRemapTable[VDPAURegisterOutputSurfaceNV_remap_index]
   2252 #define _gloffset_VDPAURegisterVideoSurfaceNV driDispatchRemapTable[VDPAURegisterVideoSurfaceNV_remap_index]
   2253 #define _gloffset_VDPAUSurfaceAccessNV driDispatchRemapTable[VDPAUSurfaceAccessNV_remap_index]
   2254 #define _gloffset_VDPAUUnmapSurfacesNV driDispatchRemapTable[VDPAUUnmapSurfacesNV_remap_index]
   2255 #define _gloffset_VDPAUUnregisterSurfaceNV driDispatchRemapTable[VDPAUUnregisterSurfaceNV_remap_index]
   2256 #define _gloffset_BeginPerfQueryINTEL driDispatchRemapTable[BeginPerfQueryINTEL_remap_index]
   2257 #define _gloffset_CreatePerfQueryINTEL driDispatchRemapTable[CreatePerfQueryINTEL_remap_index]
   2258 #define _gloffset_DeletePerfQueryINTEL driDispatchRemapTable[DeletePerfQueryINTEL_remap_index]
   2259 #define _gloffset_EndPerfQueryINTEL driDispatchRemapTable[EndPerfQueryINTEL_remap_index]
   2260 #define _gloffset_GetFirstPerfQueryIdINTEL driDispatchRemapTable[GetFirstPerfQueryIdINTEL_remap_index]
   2261 #define _gloffset_GetNextPerfQueryIdINTEL driDispatchRemapTable[GetNextPerfQueryIdINTEL_remap_index]
   2262 #define _gloffset_GetPerfCounterInfoINTEL driDispatchRemapTable[GetPerfCounterInfoINTEL_remap_index]
   2263 #define _gloffset_GetPerfQueryDataINTEL driDispatchRemapTable[GetPerfQueryDataINTEL_remap_index]
   2264 #define _gloffset_GetPerfQueryIdByNameINTEL driDispatchRemapTable[GetPerfQueryIdByNameINTEL_remap_index]
   2265 #define _gloffset_GetPerfQueryInfoINTEL driDispatchRemapTable[GetPerfQueryInfoINTEL_remap_index]
   2266 #define _gloffset_PolygonOffsetClampEXT driDispatchRemapTable[PolygonOffsetClampEXT_remap_index]
   2267 #define _gloffset_WindowRectanglesEXT driDispatchRemapTable[WindowRectanglesEXT_remap_index]
   2268 #define _gloffset_StencilFuncSeparateATI driDispatchRemapTable[StencilFuncSeparateATI_remap_index]
   2269 #define _gloffset_ProgramEnvParameters4fvEXT driDispatchRemapTable[ProgramEnvParameters4fvEXT_remap_index]
   2270 #define _gloffset_ProgramLocalParameters4fvEXT driDispatchRemapTable[ProgramLocalParameters4fvEXT_remap_index]
   2271 #define _gloffset_EGLImageTargetRenderbufferStorageOES driDispatchRemapTable[EGLImageTargetRenderbufferStorageOES_remap_index]
   2272 #define _gloffset_EGLImageTargetTexture2DOES driDispatchRemapTable[EGLImageTargetTexture2DOES_remap_index]
   2273 #define _gloffset_AlphaFuncx driDispatchRemapTable[AlphaFuncx_remap_index]
   2274 #define _gloffset_ClearColorx driDispatchRemapTable[ClearColorx_remap_index]
   2275 #define _gloffset_ClearDepthx driDispatchRemapTable[ClearDepthx_remap_index]
   2276 #define _gloffset_Color4x driDispatchRemapTable[Color4x_remap_index]
   2277 #define _gloffset_DepthRangex driDispatchRemapTable[DepthRangex_remap_index]
   2278 #define _gloffset_Fogx driDispatchRemapTable[Fogx_remap_index]
   2279 #define _gloffset_Fogxv driDispatchRemapTable[Fogxv_remap_index]
   2280 #define _gloffset_Frustumf driDispatchRemapTable[Frustumf_remap_index]
   2281 #define _gloffset_Frustumx driDispatchRemapTable[Frustumx_remap_index]
   2282 #define _gloffset_LightModelx driDispatchRemapTable[LightModelx_remap_index]
   2283 #define _gloffset_LightModelxv driDispatchRemapTable[LightModelxv_remap_index]
   2284 #define _gloffset_Lightx driDispatchRemapTable[Lightx_remap_index]
   2285 #define _gloffset_Lightxv driDispatchRemapTable[Lightxv_remap_index]
   2286 #define _gloffset_LineWidthx driDispatchRemapTable[LineWidthx_remap_index]
   2287 #define _gloffset_LoadMatrixx driDispatchRemapTable[LoadMatrixx_remap_index]
   2288 #define _gloffset_Materialx driDispatchRemapTable[Materialx_remap_index]
   2289 #define _gloffset_Materialxv driDispatchRemapTable[Materialxv_remap_index]
   2290 #define _gloffset_MultMatrixx driDispatchRemapTable[MultMatrixx_remap_index]
   2291 #define _gloffset_MultiTexCoord4x driDispatchRemapTable[MultiTexCoord4x_remap_index]
   2292 #define _gloffset_Normal3x driDispatchRemapTable[Normal3x_remap_index]
   2293 #define _gloffset_Orthof driDispatchRemapTable[Orthof_remap_index]
   2294 #define _gloffset_Orthox driDispatchRemapTable[Orthox_remap_index]
   2295 #define _gloffset_PointSizex driDispatchRemapTable[PointSizex_remap_index]
   2296 #define _gloffset_PolygonOffsetx driDispatchRemapTable[PolygonOffsetx_remap_index]
   2297 #define _gloffset_Rotatex driDispatchRemapTable[Rotatex_remap_index]
   2298 #define _gloffset_SampleCoveragex driDispatchRemapTable[SampleCoveragex_remap_index]
   2299 #define _gloffset_Scalex driDispatchRemapTable[Scalex_remap_index]
   2300 #define _gloffset_TexEnvx driDispatchRemapTable[TexEnvx_remap_index]
   2301 #define _gloffset_TexEnvxv driDispatchRemapTable[TexEnvxv_remap_index]
   2302 #define _gloffset_TexParameterx driDispatchRemapTable[TexParameterx_remap_index]
   2303 #define _gloffset_Translatex driDispatchRemapTable[Translatex_remap_index]
   2304 #define _gloffset_ClipPlanef driDispatchRemapTable[ClipPlanef_remap_index]
   2305 #define _gloffset_ClipPlanex driDispatchRemapTable[ClipPlanex_remap_index]
   2306 #define _gloffset_GetClipPlanef driDispatchRemapTable[GetClipPlanef_remap_index]
   2307 #define _gloffset_GetClipPlanex driDispatchRemapTable[GetClipPlanex_remap_index]
   2308 #define _gloffset_GetFixedv driDispatchRemapTable[GetFixedv_remap_index]
   2309 #define _gloffset_GetLightxv driDispatchRemapTable[GetLightxv_remap_index]
   2310 #define _gloffset_GetMaterialxv driDispatchRemapTable[GetMaterialxv_remap_index]
   2311 #define _gloffset_GetTexEnvxv driDispatchRemapTable[GetTexEnvxv_remap_index]
   2312 #define _gloffset_GetTexParameterxv driDispatchRemapTable[GetTexParameterxv_remap_index]
   2313 #define _gloffset_PointParameterx driDispatchRemapTable[PointParameterx_remap_index]
   2314 #define _gloffset_PointParameterxv driDispatchRemapTable[PointParameterxv_remap_index]
   2315 #define _gloffset_TexParameterxv driDispatchRemapTable[TexParameterxv_remap_index]
   2316 #define _gloffset_BlendBarrier driDispatchRemapTable[BlendBarrier_remap_index]
   2317 #define _gloffset_PrimitiveBoundingBox driDispatchRemapTable[PrimitiveBoundingBox_remap_index]
   2318 
   2319 typedef void (GLAPIENTRYP _glptr_NewList)(GLuint, GLenum);
   2320 #define CALL_NewList(disp, parameters) \
   2321     (* GET_NewList(disp)) parameters
   2322 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) {
   2323    return (_glptr_NewList) (GET_by_offset(disp, _gloffset_NewList));
   2324 }
   2325 
   2326 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   2327    SET_by_offset(disp, _gloffset_NewList, fn);
   2328 }
   2329 
   2330 typedef void (GLAPIENTRYP _glptr_EndList)(void);
   2331 #define CALL_EndList(disp, parameters) \
   2332     (* GET_EndList(disp)) parameters
   2333 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) {
   2334    return (_glptr_EndList) (GET_by_offset(disp, _gloffset_EndList));
   2335 }
   2336 
   2337 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   2338    SET_by_offset(disp, _gloffset_EndList, fn);
   2339 }
   2340 
   2341 typedef void (GLAPIENTRYP _glptr_CallList)(GLuint);
   2342 #define CALL_CallList(disp, parameters) \
   2343     (* GET_CallList(disp)) parameters
   2344 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) {
   2345    return (_glptr_CallList) (GET_by_offset(disp, _gloffset_CallList));
   2346 }
   2347 
   2348 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   2349    SET_by_offset(disp, _gloffset_CallList, fn);
   2350 }
   2351 
   2352 typedef void (GLAPIENTRYP _glptr_CallLists)(GLsizei, GLenum, const GLvoid *);
   2353 #define CALL_CallLists(disp, parameters) \
   2354     (* GET_CallLists(disp)) parameters
   2355 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
   2356    return (_glptr_CallLists) (GET_by_offset(disp, _gloffset_CallLists));
   2357 }
   2358 
   2359 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
   2360    SET_by_offset(disp, _gloffset_CallLists, fn);
   2361 }
   2362 
   2363 typedef void (GLAPIENTRYP _glptr_DeleteLists)(GLuint, GLsizei);
   2364 #define CALL_DeleteLists(disp, parameters) \
   2365     (* GET_DeleteLists(disp)) parameters
   2366 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
   2367    return (_glptr_DeleteLists) (GET_by_offset(disp, _gloffset_DeleteLists));
   2368 }
   2369 
   2370 static inline void SET_DeleteLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei)) {
   2371    SET_by_offset(disp, _gloffset_DeleteLists, fn);
   2372 }
   2373 
   2374 typedef GLuint (GLAPIENTRYP _glptr_GenLists)(GLsizei);
   2375 #define CALL_GenLists(disp, parameters) \
   2376     (* GET_GenLists(disp)) parameters
   2377 static inline _glptr_GenLists GET_GenLists(struct _glapi_table *disp) {
   2378    return (_glptr_GenLists) (GET_by_offset(disp, _gloffset_GenLists));
   2379 }
   2380 
   2381 static inline void SET_GenLists(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLsizei)) {
   2382    SET_by_offset(disp, _gloffset_GenLists, fn);
   2383 }
   2384 
   2385 typedef void (GLAPIENTRYP _glptr_ListBase)(GLuint);
   2386 #define CALL_ListBase(disp, parameters) \
   2387     (* GET_ListBase(disp)) parameters
   2388 static inline _glptr_ListBase GET_ListBase(struct _glapi_table *disp) {
   2389    return (_glptr_ListBase) (GET_by_offset(disp, _gloffset_ListBase));
   2390 }
   2391 
   2392 static inline void SET_ListBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   2393    SET_by_offset(disp, _gloffset_ListBase, fn);
   2394 }
   2395 
   2396 typedef void (GLAPIENTRYP _glptr_Begin)(GLenum);
   2397 #define CALL_Begin(disp, parameters) \
   2398     (* GET_Begin(disp)) parameters
   2399 static inline _glptr_Begin GET_Begin(struct _glapi_table *disp) {
   2400    return (_glptr_Begin) (GET_by_offset(disp, _gloffset_Begin));
   2401 }
   2402 
   2403 static inline void SET_Begin(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   2404    SET_by_offset(disp, _gloffset_Begin, fn);
   2405 }
   2406 
   2407 typedef void (GLAPIENTRYP _glptr_Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
   2408 #define CALL_Bitmap(disp, parameters) \
   2409     (* GET_Bitmap(disp)) parameters
   2410 static inline _glptr_Bitmap GET_Bitmap(struct _glapi_table *disp) {
   2411    return (_glptr_Bitmap) (GET_by_offset(disp, _gloffset_Bitmap));
   2412 }
   2413 
   2414 static inline void SET_Bitmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *)) {
   2415    SET_by_offset(disp, _gloffset_Bitmap, fn);
   2416 }
   2417 
   2418 typedef void (GLAPIENTRYP _glptr_Color3b)(GLbyte, GLbyte, GLbyte);
   2419 #define CALL_Color3b(disp, parameters) \
   2420     (* GET_Color3b(disp)) parameters
   2421 static inline _glptr_Color3b GET_Color3b(struct _glapi_table *disp) {
   2422    return (_glptr_Color3b) (GET_by_offset(disp, _gloffset_Color3b));
   2423 }
   2424 
   2425 static inline void SET_Color3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
   2426    SET_by_offset(disp, _gloffset_Color3b, fn);
   2427 }
   2428 
   2429 typedef void (GLAPIENTRYP _glptr_Color3bv)(const GLbyte *);
   2430 #define CALL_Color3bv(disp, parameters) \
   2431     (* GET_Color3bv(disp)) parameters
   2432 static inline _glptr_Color3bv GET_Color3bv(struct _glapi_table *disp) {
   2433    return (_glptr_Color3bv) (GET_by_offset(disp, _gloffset_Color3bv));
   2434 }
   2435 
   2436 static inline void SET_Color3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   2437    SET_by_offset(disp, _gloffset_Color3bv, fn);
   2438 }
   2439 
   2440 typedef void (GLAPIENTRYP _glptr_Color3d)(GLdouble, GLdouble, GLdouble);
   2441 #define CALL_Color3d(disp, parameters) \
   2442     (* GET_Color3d(disp)) parameters
   2443 static inline _glptr_Color3d GET_Color3d(struct _glapi_table *disp) {
   2444    return (_glptr_Color3d) (GET_by_offset(disp, _gloffset_Color3d));
   2445 }
   2446 
   2447 static inline void SET_Color3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   2448    SET_by_offset(disp, _gloffset_Color3d, fn);
   2449 }
   2450 
   2451 typedef void (GLAPIENTRYP _glptr_Color3dv)(const GLdouble *);
   2452 #define CALL_Color3dv(disp, parameters) \
   2453     (* GET_Color3dv(disp)) parameters
   2454 static inline _glptr_Color3dv GET_Color3dv(struct _glapi_table *disp) {
   2455    return (_glptr_Color3dv) (GET_by_offset(disp, _gloffset_Color3dv));
   2456 }
   2457 
   2458 static inline void SET_Color3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2459    SET_by_offset(disp, _gloffset_Color3dv, fn);
   2460 }
   2461 
   2462 typedef void (GLAPIENTRYP _glptr_Color3f)(GLfloat, GLfloat, GLfloat);
   2463 #define CALL_Color3f(disp, parameters) \
   2464     (* GET_Color3f(disp)) parameters
   2465 static inline _glptr_Color3f GET_Color3f(struct _glapi_table *disp) {
   2466    return (_glptr_Color3f) (GET_by_offset(disp, _gloffset_Color3f));
   2467 }
   2468 
   2469 static inline void SET_Color3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   2470    SET_by_offset(disp, _gloffset_Color3f, fn);
   2471 }
   2472 
   2473 typedef void (GLAPIENTRYP _glptr_Color3fv)(const GLfloat *);
   2474 #define CALL_Color3fv(disp, parameters) \
   2475     (* GET_Color3fv(disp)) parameters
   2476 static inline _glptr_Color3fv GET_Color3fv(struct _glapi_table *disp) {
   2477    return (_glptr_Color3fv) (GET_by_offset(disp, _gloffset_Color3fv));
   2478 }
   2479 
   2480 static inline void SET_Color3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   2481    SET_by_offset(disp, _gloffset_Color3fv, fn);
   2482 }
   2483 
   2484 typedef void (GLAPIENTRYP _glptr_Color3i)(GLint, GLint, GLint);
   2485 #define CALL_Color3i(disp, parameters) \
   2486     (* GET_Color3i(disp)) parameters
   2487 static inline _glptr_Color3i GET_Color3i(struct _glapi_table *disp) {
   2488    return (_glptr_Color3i) (GET_by_offset(disp, _gloffset_Color3i));
   2489 }
   2490 
   2491 static inline void SET_Color3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   2492    SET_by_offset(disp, _gloffset_Color3i, fn);
   2493 }
   2494 
   2495 typedef void (GLAPIENTRYP _glptr_Color3iv)(const GLint *);
   2496 #define CALL_Color3iv(disp, parameters) \
   2497     (* GET_Color3iv(disp)) parameters
   2498 static inline _glptr_Color3iv GET_Color3iv(struct _glapi_table *disp) {
   2499    return (_glptr_Color3iv) (GET_by_offset(disp, _gloffset_Color3iv));
   2500 }
   2501 
   2502 static inline void SET_Color3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   2503    SET_by_offset(disp, _gloffset_Color3iv, fn);
   2504 }
   2505 
   2506 typedef void (GLAPIENTRYP _glptr_Color3s)(GLshort, GLshort, GLshort);
   2507 #define CALL_Color3s(disp, parameters) \
   2508     (* GET_Color3s(disp)) parameters
   2509 static inline _glptr_Color3s GET_Color3s(struct _glapi_table *disp) {
   2510    return (_glptr_Color3s) (GET_by_offset(disp, _gloffset_Color3s));
   2511 }
   2512 
   2513 static inline void SET_Color3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   2514    SET_by_offset(disp, _gloffset_Color3s, fn);
   2515 }
   2516 
   2517 typedef void (GLAPIENTRYP _glptr_Color3sv)(const GLshort *);
   2518 #define CALL_Color3sv(disp, parameters) \
   2519     (* GET_Color3sv(disp)) parameters
   2520 static inline _glptr_Color3sv GET_Color3sv(struct _glapi_table *disp) {
   2521    return (_glptr_Color3sv) (GET_by_offset(disp, _gloffset_Color3sv));
   2522 }
   2523 
   2524 static inline void SET_Color3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   2525    SET_by_offset(disp, _gloffset_Color3sv, fn);
   2526 }
   2527 
   2528 typedef void (GLAPIENTRYP _glptr_Color3ub)(GLubyte, GLubyte, GLubyte);
   2529 #define CALL_Color3ub(disp, parameters) \
   2530     (* GET_Color3ub(disp)) parameters
   2531 static inline _glptr_Color3ub GET_Color3ub(struct _glapi_table *disp) {
   2532    return (_glptr_Color3ub) (GET_by_offset(disp, _gloffset_Color3ub));
   2533 }
   2534 
   2535 static inline void SET_Color3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
   2536    SET_by_offset(disp, _gloffset_Color3ub, fn);
   2537 }
   2538 
   2539 typedef void (GLAPIENTRYP _glptr_Color3ubv)(const GLubyte *);
   2540 #define CALL_Color3ubv(disp, parameters) \
   2541     (* GET_Color3ubv(disp)) parameters
   2542 static inline _glptr_Color3ubv GET_Color3ubv(struct _glapi_table *disp) {
   2543    return (_glptr_Color3ubv) (GET_by_offset(disp, _gloffset_Color3ubv));
   2544 }
   2545 
   2546 static inline void SET_Color3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   2547    SET_by_offset(disp, _gloffset_Color3ubv, fn);
   2548 }
   2549 
   2550 typedef void (GLAPIENTRYP _glptr_Color3ui)(GLuint, GLuint, GLuint);
   2551 #define CALL_Color3ui(disp, parameters) \
   2552     (* GET_Color3ui(disp)) parameters
   2553 static inline _glptr_Color3ui GET_Color3ui(struct _glapi_table *disp) {
   2554    return (_glptr_Color3ui) (GET_by_offset(disp, _gloffset_Color3ui));
   2555 }
   2556 
   2557 static inline void SET_Color3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   2558    SET_by_offset(disp, _gloffset_Color3ui, fn);
   2559 }
   2560 
   2561 typedef void (GLAPIENTRYP _glptr_Color3uiv)(const GLuint *);
   2562 #define CALL_Color3uiv(disp, parameters) \
   2563     (* GET_Color3uiv(disp)) parameters
   2564 static inline _glptr_Color3uiv GET_Color3uiv(struct _glapi_table *disp) {
   2565    return (_glptr_Color3uiv) (GET_by_offset(disp, _gloffset_Color3uiv));
   2566 }
   2567 
   2568 static inline void SET_Color3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
   2569    SET_by_offset(disp, _gloffset_Color3uiv, fn);
   2570 }
   2571 
   2572 typedef void (GLAPIENTRYP _glptr_Color3us)(GLushort, GLushort, GLushort);
   2573 #define CALL_Color3us(disp, parameters) \
   2574     (* GET_Color3us(disp)) parameters
   2575 static inline _glptr_Color3us GET_Color3us(struct _glapi_table *disp) {
   2576    return (_glptr_Color3us) (GET_by_offset(disp, _gloffset_Color3us));
   2577 }
   2578 
   2579 static inline void SET_Color3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
   2580    SET_by_offset(disp, _gloffset_Color3us, fn);
   2581 }
   2582 
   2583 typedef void (GLAPIENTRYP _glptr_Color3usv)(const GLushort *);
   2584 #define CALL_Color3usv(disp, parameters) \
   2585     (* GET_Color3usv(disp)) parameters
   2586 static inline _glptr_Color3usv GET_Color3usv(struct _glapi_table *disp) {
   2587    return (_glptr_Color3usv) (GET_by_offset(disp, _gloffset_Color3usv));
   2588 }
   2589 
   2590 static inline void SET_Color3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
   2591    SET_by_offset(disp, _gloffset_Color3usv, fn);
   2592 }
   2593 
   2594 typedef void (GLAPIENTRYP _glptr_Color4b)(GLbyte, GLbyte, GLbyte, GLbyte);
   2595 #define CALL_Color4b(disp, parameters) \
   2596     (* GET_Color4b(disp)) parameters
   2597 static inline _glptr_Color4b GET_Color4b(struct _glapi_table *disp) {
   2598    return (_glptr_Color4b) (GET_by_offset(disp, _gloffset_Color4b));
   2599 }
   2600 
   2601 static inline void SET_Color4b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte, GLbyte)) {
   2602    SET_by_offset(disp, _gloffset_Color4b, fn);
   2603 }
   2604 
   2605 typedef void (GLAPIENTRYP _glptr_Color4bv)(const GLbyte *);
   2606 #define CALL_Color4bv(disp, parameters) \
   2607     (* GET_Color4bv(disp)) parameters
   2608 static inline _glptr_Color4bv GET_Color4bv(struct _glapi_table *disp) {
   2609    return (_glptr_Color4bv) (GET_by_offset(disp, _gloffset_Color4bv));
   2610 }
   2611 
   2612 static inline void SET_Color4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   2613    SET_by_offset(disp, _gloffset_Color4bv, fn);
   2614 }
   2615 
   2616 typedef void (GLAPIENTRYP _glptr_Color4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   2617 #define CALL_Color4d(disp, parameters) \
   2618     (* GET_Color4d(disp)) parameters
   2619 static inline _glptr_Color4d GET_Color4d(struct _glapi_table *disp) {
   2620    return (_glptr_Color4d) (GET_by_offset(disp, _gloffset_Color4d));
   2621 }
   2622 
   2623 static inline void SET_Color4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   2624    SET_by_offset(disp, _gloffset_Color4d, fn);
   2625 }
   2626 
   2627 typedef void (GLAPIENTRYP _glptr_Color4dv)(const GLdouble *);
   2628 #define CALL_Color4dv(disp, parameters) \
   2629     (* GET_Color4dv(disp)) parameters
   2630 static inline _glptr_Color4dv GET_Color4dv(struct _glapi_table *disp) {
   2631    return (_glptr_Color4dv) (GET_by_offset(disp, _gloffset_Color4dv));
   2632 }
   2633 
   2634 static inline void SET_Color4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2635    SET_by_offset(disp, _gloffset_Color4dv, fn);
   2636 }
   2637 
   2638 typedef void (GLAPIENTRYP _glptr_Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   2639 #define CALL_Color4f(disp, parameters) \
   2640     (* GET_Color4f(disp)) parameters
   2641 static inline _glptr_Color4f GET_Color4f(struct _glapi_table *disp) {
   2642    return (_glptr_Color4f) (GET_by_offset(disp, _gloffset_Color4f));
   2643 }
   2644 
   2645 static inline void SET_Color4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   2646    SET_by_offset(disp, _gloffset_Color4f, fn);
   2647 }
   2648 
   2649 typedef void (GLAPIENTRYP _glptr_Color4fv)(const GLfloat *);
   2650 #define CALL_Color4fv(disp, parameters) \
   2651     (* GET_Color4fv(disp)) parameters
   2652 static inline _glptr_Color4fv GET_Color4fv(struct _glapi_table *disp) {
   2653    return (_glptr_Color4fv) (GET_by_offset(disp, _gloffset_Color4fv));
   2654 }
   2655 
   2656 static inline void SET_Color4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   2657    SET_by_offset(disp, _gloffset_Color4fv, fn);
   2658 }
   2659 
   2660 typedef void (GLAPIENTRYP _glptr_Color4i)(GLint, GLint, GLint, GLint);
   2661 #define CALL_Color4i(disp, parameters) \
   2662     (* GET_Color4i(disp)) parameters
   2663 static inline _glptr_Color4i GET_Color4i(struct _glapi_table *disp) {
   2664    return (_glptr_Color4i) (GET_by_offset(disp, _gloffset_Color4i));
   2665 }
   2666 
   2667 static inline void SET_Color4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   2668    SET_by_offset(disp, _gloffset_Color4i, fn);
   2669 }
   2670 
   2671 typedef void (GLAPIENTRYP _glptr_Color4iv)(const GLint *);
   2672 #define CALL_Color4iv(disp, parameters) \
   2673     (* GET_Color4iv(disp)) parameters
   2674 static inline _glptr_Color4iv GET_Color4iv(struct _glapi_table *disp) {
   2675    return (_glptr_Color4iv) (GET_by_offset(disp, _gloffset_Color4iv));
   2676 }
   2677 
   2678 static inline void SET_Color4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   2679    SET_by_offset(disp, _gloffset_Color4iv, fn);
   2680 }
   2681 
   2682 typedef void (GLAPIENTRYP _glptr_Color4s)(GLshort, GLshort, GLshort, GLshort);
   2683 #define CALL_Color4s(disp, parameters) \
   2684     (* GET_Color4s(disp)) parameters
   2685 static inline _glptr_Color4s GET_Color4s(struct _glapi_table *disp) {
   2686    return (_glptr_Color4s) (GET_by_offset(disp, _gloffset_Color4s));
   2687 }
   2688 
   2689 static inline void SET_Color4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   2690    SET_by_offset(disp, _gloffset_Color4s, fn);
   2691 }
   2692 
   2693 typedef void (GLAPIENTRYP _glptr_Color4sv)(const GLshort *);
   2694 #define CALL_Color4sv(disp, parameters) \
   2695     (* GET_Color4sv(disp)) parameters
   2696 static inline _glptr_Color4sv GET_Color4sv(struct _glapi_table *disp) {
   2697    return (_glptr_Color4sv) (GET_by_offset(disp, _gloffset_Color4sv));
   2698 }
   2699 
   2700 static inline void SET_Color4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   2701    SET_by_offset(disp, _gloffset_Color4sv, fn);
   2702 }
   2703 
   2704 typedef void (GLAPIENTRYP _glptr_Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
   2705 #define CALL_Color4ub(disp, parameters) \
   2706     (* GET_Color4ub(disp)) parameters
   2707 static inline _glptr_Color4ub GET_Color4ub(struct _glapi_table *disp) {
   2708    return (_glptr_Color4ub) (GET_by_offset(disp, _gloffset_Color4ub));
   2709 }
   2710 
   2711 static inline void SET_Color4ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte, GLubyte)) {
   2712    SET_by_offset(disp, _gloffset_Color4ub, fn);
   2713 }
   2714 
   2715 typedef void (GLAPIENTRYP _glptr_Color4ubv)(const GLubyte *);
   2716 #define CALL_Color4ubv(disp, parameters) \
   2717     (* GET_Color4ubv(disp)) parameters
   2718 static inline _glptr_Color4ubv GET_Color4ubv(struct _glapi_table *disp) {
   2719    return (_glptr_Color4ubv) (GET_by_offset(disp, _gloffset_Color4ubv));
   2720 }
   2721 
   2722 static inline void SET_Color4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   2723    SET_by_offset(disp, _gloffset_Color4ubv, fn);
   2724 }
   2725 
   2726 typedef void (GLAPIENTRYP _glptr_Color4ui)(GLuint, GLuint, GLuint, GLuint);
   2727 #define CALL_Color4ui(disp, parameters) \
   2728     (* GET_Color4ui(disp)) parameters
   2729 static inline _glptr_Color4ui GET_Color4ui(struct _glapi_table *disp) {
   2730    return (_glptr_Color4ui) (GET_by_offset(disp, _gloffset_Color4ui));
   2731 }
   2732 
   2733 static inline void SET_Color4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
   2734    SET_by_offset(disp, _gloffset_Color4ui, fn);
   2735 }
   2736 
   2737 typedef void (GLAPIENTRYP _glptr_Color4uiv)(const GLuint *);
   2738 #define CALL_Color4uiv(disp, parameters) \
   2739     (* GET_Color4uiv(disp)) parameters
   2740 static inline _glptr_Color4uiv GET_Color4uiv(struct _glapi_table *disp) {
   2741    return (_glptr_Color4uiv) (GET_by_offset(disp, _gloffset_Color4uiv));
   2742 }
   2743 
   2744 static inline void SET_Color4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
   2745    SET_by_offset(disp, _gloffset_Color4uiv, fn);
   2746 }
   2747 
   2748 typedef void (GLAPIENTRYP _glptr_Color4us)(GLushort, GLushort, GLushort, GLushort);
   2749 #define CALL_Color4us(disp, parameters) \
   2750     (* GET_Color4us(disp)) parameters
   2751 static inline _glptr_Color4us GET_Color4us(struct _glapi_table *disp) {
   2752    return (_glptr_Color4us) (GET_by_offset(disp, _gloffset_Color4us));
   2753 }
   2754 
   2755 static inline void SET_Color4us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort, GLushort)) {
   2756    SET_by_offset(disp, _gloffset_Color4us, fn);
   2757 }
   2758 
   2759 typedef void (GLAPIENTRYP _glptr_Color4usv)(const GLushort *);
   2760 #define CALL_Color4usv(disp, parameters) \
   2761     (* GET_Color4usv(disp)) parameters
   2762 static inline _glptr_Color4usv GET_Color4usv(struct _glapi_table *disp) {
   2763    return (_glptr_Color4usv) (GET_by_offset(disp, _gloffset_Color4usv));
   2764 }
   2765 
   2766 static inline void SET_Color4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
   2767    SET_by_offset(disp, _gloffset_Color4usv, fn);
   2768 }
   2769 
   2770 typedef void (GLAPIENTRYP _glptr_EdgeFlag)(GLboolean);
   2771 #define CALL_EdgeFlag(disp, parameters) \
   2772     (* GET_EdgeFlag(disp)) parameters
   2773 static inline _glptr_EdgeFlag GET_EdgeFlag(struct _glapi_table *disp) {
   2774    return (_glptr_EdgeFlag) (GET_by_offset(disp, _gloffset_EdgeFlag));
   2775 }
   2776 
   2777 static inline void SET_EdgeFlag(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
   2778    SET_by_offset(disp, _gloffset_EdgeFlag, fn);
   2779 }
   2780 
   2781 typedef void (GLAPIENTRYP _glptr_EdgeFlagv)(const GLboolean *);
   2782 #define CALL_EdgeFlagv(disp, parameters) \
   2783     (* GET_EdgeFlagv(disp)) parameters
   2784 static inline _glptr_EdgeFlagv GET_EdgeFlagv(struct _glapi_table *disp) {
   2785    return (_glptr_EdgeFlagv) (GET_by_offset(disp, _gloffset_EdgeFlagv));
   2786 }
   2787 
   2788 static inline void SET_EdgeFlagv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLboolean *)) {
   2789    SET_by_offset(disp, _gloffset_EdgeFlagv, fn);
   2790 }
   2791 
   2792 typedef void (GLAPIENTRYP _glptr_End)(void);
   2793 #define CALL_End(disp, parameters) \
   2794     (* GET_End(disp)) parameters
   2795 static inline _glptr_End GET_End(struct _glapi_table *disp) {
   2796    return (_glptr_End) (GET_by_offset(disp, _gloffset_End));
   2797 }
   2798 
   2799 static inline void SET_End(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   2800    SET_by_offset(disp, _gloffset_End, fn);
   2801 }
   2802 
   2803 typedef void (GLAPIENTRYP _glptr_Indexd)(GLdouble);
   2804 #define CALL_Indexd(disp, parameters) \
   2805     (* GET_Indexd(disp)) parameters
   2806 static inline _glptr_Indexd GET_Indexd(struct _glapi_table *disp) {
   2807    return (_glptr_Indexd) (GET_by_offset(disp, _gloffset_Indexd));
   2808 }
   2809 
   2810 static inline void SET_Indexd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   2811    SET_by_offset(disp, _gloffset_Indexd, fn);
   2812 }
   2813 
   2814 typedef void (GLAPIENTRYP _glptr_Indexdv)(const GLdouble *);
   2815 #define CALL_Indexdv(disp, parameters) \
   2816     (* GET_Indexdv(disp)) parameters
   2817 static inline _glptr_Indexdv GET_Indexdv(struct _glapi_table *disp) {
   2818    return (_glptr_Indexdv) (GET_by_offset(disp, _gloffset_Indexdv));
   2819 }
   2820 
   2821 static inline void SET_Indexdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2822    SET_by_offset(disp, _gloffset_Indexdv, fn);
   2823 }
   2824 
   2825 typedef void (GLAPIENTRYP _glptr_Indexf)(GLfloat);
   2826 #define CALL_Indexf(disp, parameters) \
   2827     (* GET_Indexf(disp)) parameters
   2828 static inline _glptr_Indexf GET_Indexf(struct _glapi_table *disp) {
   2829    return (_glptr_Indexf) (GET_by_offset(disp, _gloffset_Indexf));
   2830 }
   2831 
   2832 static inline void SET_Indexf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   2833    SET_by_offset(disp, _gloffset_Indexf, fn);
   2834 }
   2835 
   2836 typedef void (GLAPIENTRYP _glptr_Indexfv)(const GLfloat *);
   2837 #define CALL_Indexfv(disp, parameters) \
   2838     (* GET_Indexfv(disp)) parameters
   2839 static inline _glptr_Indexfv GET_Indexfv(struct _glapi_table *disp) {
   2840    return (_glptr_Indexfv) (GET_by_offset(disp, _gloffset_Indexfv));
   2841 }
   2842 
   2843 static inline void SET_Indexfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   2844    SET_by_offset(disp, _gloffset_Indexfv, fn);
   2845 }
   2846 
   2847 typedef void (GLAPIENTRYP _glptr_Indexi)(GLint);
   2848 #define CALL_Indexi(disp, parameters) \
   2849     (* GET_Indexi(disp)) parameters
   2850 static inline _glptr_Indexi GET_Indexi(struct _glapi_table *disp) {
   2851    return (_glptr_Indexi) (GET_by_offset(disp, _gloffset_Indexi));
   2852 }
   2853 
   2854 static inline void SET_Indexi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   2855    SET_by_offset(disp, _gloffset_Indexi, fn);
   2856 }
   2857 
   2858 typedef void (GLAPIENTRYP _glptr_Indexiv)(const GLint *);
   2859 #define CALL_Indexiv(disp, parameters) \
   2860     (* GET_Indexiv(disp)) parameters
   2861 static inline _glptr_Indexiv GET_Indexiv(struct _glapi_table *disp) {
   2862    return (_glptr_Indexiv) (GET_by_offset(disp, _gloffset_Indexiv));
   2863 }
   2864 
   2865 static inline void SET_Indexiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   2866    SET_by_offset(disp, _gloffset_Indexiv, fn);
   2867 }
   2868 
   2869 typedef void (GLAPIENTRYP _glptr_Indexs)(GLshort);
   2870 #define CALL_Indexs(disp, parameters) \
   2871     (* GET_Indexs(disp)) parameters
   2872 static inline _glptr_Indexs GET_Indexs(struct _glapi_table *disp) {
   2873    return (_glptr_Indexs) (GET_by_offset(disp, _gloffset_Indexs));
   2874 }
   2875 
   2876 static inline void SET_Indexs(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
   2877    SET_by_offset(disp, _gloffset_Indexs, fn);
   2878 }
   2879 
   2880 typedef void (GLAPIENTRYP _glptr_Indexsv)(const GLshort *);
   2881 #define CALL_Indexsv(disp, parameters) \
   2882     (* GET_Indexsv(disp)) parameters
   2883 static inline _glptr_Indexsv GET_Indexsv(struct _glapi_table *disp) {
   2884    return (_glptr_Indexsv) (GET_by_offset(disp, _gloffset_Indexsv));
   2885 }
   2886 
   2887 static inline void SET_Indexsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   2888    SET_by_offset(disp, _gloffset_Indexsv, fn);
   2889 }
   2890 
   2891 typedef void (GLAPIENTRYP _glptr_Normal3b)(GLbyte, GLbyte, GLbyte);
   2892 #define CALL_Normal3b(disp, parameters) \
   2893     (* GET_Normal3b(disp)) parameters
   2894 static inline _glptr_Normal3b GET_Normal3b(struct _glapi_table *disp) {
   2895    return (_glptr_Normal3b) (GET_by_offset(disp, _gloffset_Normal3b));
   2896 }
   2897 
   2898 static inline void SET_Normal3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
   2899    SET_by_offset(disp, _gloffset_Normal3b, fn);
   2900 }
   2901 
   2902 typedef void (GLAPIENTRYP _glptr_Normal3bv)(const GLbyte *);
   2903 #define CALL_Normal3bv(disp, parameters) \
   2904     (* GET_Normal3bv(disp)) parameters
   2905 static inline _glptr_Normal3bv GET_Normal3bv(struct _glapi_table *disp) {
   2906    return (_glptr_Normal3bv) (GET_by_offset(disp, _gloffset_Normal3bv));
   2907 }
   2908 
   2909 static inline void SET_Normal3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   2910    SET_by_offset(disp, _gloffset_Normal3bv, fn);
   2911 }
   2912 
   2913 typedef void (GLAPIENTRYP _glptr_Normal3d)(GLdouble, GLdouble, GLdouble);
   2914 #define CALL_Normal3d(disp, parameters) \
   2915     (* GET_Normal3d(disp)) parameters
   2916 static inline _glptr_Normal3d GET_Normal3d(struct _glapi_table *disp) {
   2917    return (_glptr_Normal3d) (GET_by_offset(disp, _gloffset_Normal3d));
   2918 }
   2919 
   2920 static inline void SET_Normal3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   2921    SET_by_offset(disp, _gloffset_Normal3d, fn);
   2922 }
   2923 
   2924 typedef void (GLAPIENTRYP _glptr_Normal3dv)(const GLdouble *);
   2925 #define CALL_Normal3dv(disp, parameters) \
   2926     (* GET_Normal3dv(disp)) parameters
   2927 static inline _glptr_Normal3dv GET_Normal3dv(struct _glapi_table *disp) {
   2928    return (_glptr_Normal3dv) (GET_by_offset(disp, _gloffset_Normal3dv));
   2929 }
   2930 
   2931 static inline void SET_Normal3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2932    SET_by_offset(disp, _gloffset_Normal3dv, fn);
   2933 }
   2934 
   2935 typedef void (GLAPIENTRYP _glptr_Normal3f)(GLfloat, GLfloat, GLfloat);
   2936 #define CALL_Normal3f(disp, parameters) \
   2937     (* GET_Normal3f(disp)) parameters
   2938 static inline _glptr_Normal3f GET_Normal3f(struct _glapi_table *disp) {
   2939    return (_glptr_Normal3f) (GET_by_offset(disp, _gloffset_Normal3f));
   2940 }
   2941 
   2942 static inline void SET_Normal3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   2943    SET_by_offset(disp, _gloffset_Normal3f, fn);
   2944 }
   2945 
   2946 typedef void (GLAPIENTRYP _glptr_Normal3fv)(const GLfloat *);
   2947 #define CALL_Normal3fv(disp, parameters) \
   2948     (* GET_Normal3fv(disp)) parameters
   2949 static inline _glptr_Normal3fv GET_Normal3fv(struct _glapi_table *disp) {
   2950    return (_glptr_Normal3fv) (GET_by_offset(disp, _gloffset_Normal3fv));
   2951 }
   2952 
   2953 static inline void SET_Normal3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   2954    SET_by_offset(disp, _gloffset_Normal3fv, fn);
   2955 }
   2956 
   2957 typedef void (GLAPIENTRYP _glptr_Normal3i)(GLint, GLint, GLint);
   2958 #define CALL_Normal3i(disp, parameters) \
   2959     (* GET_Normal3i(disp)) parameters
   2960 static inline _glptr_Normal3i GET_Normal3i(struct _glapi_table *disp) {
   2961    return (_glptr_Normal3i) (GET_by_offset(disp, _gloffset_Normal3i));
   2962 }
   2963 
   2964 static inline void SET_Normal3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   2965    SET_by_offset(disp, _gloffset_Normal3i, fn);
   2966 }
   2967 
   2968 typedef void (GLAPIENTRYP _glptr_Normal3iv)(const GLint *);
   2969 #define CALL_Normal3iv(disp, parameters) \
   2970     (* GET_Normal3iv(disp)) parameters
   2971 static inline _glptr_Normal3iv GET_Normal3iv(struct _glapi_table *disp) {
   2972    return (_glptr_Normal3iv) (GET_by_offset(disp, _gloffset_Normal3iv));
   2973 }
   2974 
   2975 static inline void SET_Normal3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   2976    SET_by_offset(disp, _gloffset_Normal3iv, fn);
   2977 }
   2978 
   2979 typedef void (GLAPIENTRYP _glptr_Normal3s)(GLshort, GLshort, GLshort);
   2980 #define CALL_Normal3s(disp, parameters) \
   2981     (* GET_Normal3s(disp)) parameters
   2982 static inline _glptr_Normal3s GET_Normal3s(struct _glapi_table *disp) {
   2983    return (_glptr_Normal3s) (GET_by_offset(disp, _gloffset_Normal3s));
   2984 }
   2985 
   2986 static inline void SET_Normal3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   2987    SET_by_offset(disp, _gloffset_Normal3s, fn);
   2988 }
   2989 
   2990 typedef void (GLAPIENTRYP _glptr_Normal3sv)(const GLshort *);
   2991 #define CALL_Normal3sv(disp, parameters) \
   2992     (* GET_Normal3sv(disp)) parameters
   2993 static inline _glptr_Normal3sv GET_Normal3sv(struct _glapi_table *disp) {
   2994    return (_glptr_Normal3sv) (GET_by_offset(disp, _gloffset_Normal3sv));
   2995 }
   2996 
   2997 static inline void SET_Normal3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   2998    SET_by_offset(disp, _gloffset_Normal3sv, fn);
   2999 }
   3000 
   3001 typedef void (GLAPIENTRYP _glptr_RasterPos2d)(GLdouble, GLdouble);
   3002 #define CALL_RasterPos2d(disp, parameters) \
   3003     (* GET_RasterPos2d(disp)) parameters
   3004 static inline _glptr_RasterPos2d GET_RasterPos2d(struct _glapi_table *disp) {
   3005    return (_glptr_RasterPos2d) (GET_by_offset(disp, _gloffset_RasterPos2d));
   3006 }
   3007 
   3008 static inline void SET_RasterPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   3009    SET_by_offset(disp, _gloffset_RasterPos2d, fn);
   3010 }
   3011 
   3012 typedef void (GLAPIENTRYP _glptr_RasterPos2dv)(const GLdouble *);
   3013 #define CALL_RasterPos2dv(disp, parameters) \
   3014     (* GET_RasterPos2dv(disp)) parameters
   3015 static inline _glptr_RasterPos2dv GET_RasterPos2dv(struct _glapi_table *disp) {
   3016    return (_glptr_RasterPos2dv) (GET_by_offset(disp, _gloffset_RasterPos2dv));
   3017 }
   3018 
   3019 static inline void SET_RasterPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3020    SET_by_offset(disp, _gloffset_RasterPos2dv, fn);
   3021 }
   3022 
   3023 typedef void (GLAPIENTRYP _glptr_RasterPos2f)(GLfloat, GLfloat);
   3024 #define CALL_RasterPos2f(disp, parameters) \
   3025     (* GET_RasterPos2f(disp)) parameters
   3026 static inline _glptr_RasterPos2f GET_RasterPos2f(struct _glapi_table *disp) {
   3027    return (_glptr_RasterPos2f) (GET_by_offset(disp, _gloffset_RasterPos2f));
   3028 }
   3029 
   3030 static inline void SET_RasterPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   3031    SET_by_offset(disp, _gloffset_RasterPos2f, fn);
   3032 }
   3033 
   3034 typedef void (GLAPIENTRYP _glptr_RasterPos2fv)(const GLfloat *);
   3035 #define CALL_RasterPos2fv(disp, parameters) \
   3036     (* GET_RasterPos2fv(disp)) parameters
   3037 static inline _glptr_RasterPos2fv GET_RasterPos2fv(struct _glapi_table *disp) {
   3038    return (_glptr_RasterPos2fv) (GET_by_offset(disp, _gloffset_RasterPos2fv));
   3039 }
   3040 
   3041 static inline void SET_RasterPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3042    SET_by_offset(disp, _gloffset_RasterPos2fv, fn);
   3043 }
   3044 
   3045 typedef void (GLAPIENTRYP _glptr_RasterPos2i)(GLint, GLint);
   3046 #define CALL_RasterPos2i(disp, parameters) \
   3047     (* GET_RasterPos2i(disp)) parameters
   3048 static inline _glptr_RasterPos2i GET_RasterPos2i(struct _glapi_table *disp) {
   3049    return (_glptr_RasterPos2i) (GET_by_offset(disp, _gloffset_RasterPos2i));
   3050 }
   3051 
   3052 static inline void SET_RasterPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   3053    SET_by_offset(disp, _gloffset_RasterPos2i, fn);
   3054 }
   3055 
   3056 typedef void (GLAPIENTRYP _glptr_RasterPos2iv)(const GLint *);
   3057 #define CALL_RasterPos2iv(disp, parameters) \
   3058     (* GET_RasterPos2iv(disp)) parameters
   3059 static inline _glptr_RasterPos2iv GET_RasterPos2iv(struct _glapi_table *disp) {
   3060    return (_glptr_RasterPos2iv) (GET_by_offset(disp, _gloffset_RasterPos2iv));
   3061 }
   3062 
   3063 static inline void SET_RasterPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3064    SET_by_offset(disp, _gloffset_RasterPos2iv, fn);
   3065 }
   3066 
   3067 typedef void (GLAPIENTRYP _glptr_RasterPos2s)(GLshort, GLshort);
   3068 #define CALL_RasterPos2s(disp, parameters) \
   3069     (* GET_RasterPos2s(disp)) parameters
   3070 static inline _glptr_RasterPos2s GET_RasterPos2s(struct _glapi_table *disp) {
   3071    return (_glptr_RasterPos2s) (GET_by_offset(disp, _gloffset_RasterPos2s));
   3072 }
   3073 
   3074 static inline void SET_RasterPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   3075    SET_by_offset(disp, _gloffset_RasterPos2s, fn);
   3076 }
   3077 
   3078 typedef void (GLAPIENTRYP _glptr_RasterPos2sv)(const GLshort *);
   3079 #define CALL_RasterPos2sv(disp, parameters) \
   3080     (* GET_RasterPos2sv(disp)) parameters
   3081 static inline _glptr_RasterPos2sv GET_RasterPos2sv(struct _glapi_table *disp) {
   3082    return (_glptr_RasterPos2sv) (GET_by_offset(disp, _gloffset_RasterPos2sv));
   3083 }
   3084 
   3085 static inline void SET_RasterPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3086    SET_by_offset(disp, _gloffset_RasterPos2sv, fn);
   3087 }
   3088 
   3089 typedef void (GLAPIENTRYP _glptr_RasterPos3d)(GLdouble, GLdouble, GLdouble);
   3090 #define CALL_RasterPos3d(disp, parameters) \
   3091     (* GET_RasterPos3d(disp)) parameters
   3092 static inline _glptr_RasterPos3d GET_RasterPos3d(struct _glapi_table *disp) {
   3093    return (_glptr_RasterPos3d) (GET_by_offset(disp, _gloffset_RasterPos3d));
   3094 }
   3095 
   3096 static inline void SET_RasterPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3097    SET_by_offset(disp, _gloffset_RasterPos3d, fn);
   3098 }
   3099 
   3100 typedef void (GLAPIENTRYP _glptr_RasterPos3dv)(const GLdouble *);
   3101 #define CALL_RasterPos3dv(disp, parameters) \
   3102     (* GET_RasterPos3dv(disp)) parameters
   3103 static inline _glptr_RasterPos3dv GET_RasterPos3dv(struct _glapi_table *disp) {
   3104    return (_glptr_RasterPos3dv) (GET_by_offset(disp, _gloffset_RasterPos3dv));
   3105 }
   3106 
   3107 static inline void SET_RasterPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3108    SET_by_offset(disp, _gloffset_RasterPos3dv, fn);
   3109 }
   3110 
   3111 typedef void (GLAPIENTRYP _glptr_RasterPos3f)(GLfloat, GLfloat, GLfloat);
   3112 #define CALL_RasterPos3f(disp, parameters) \
   3113     (* GET_RasterPos3f(disp)) parameters
   3114 static inline _glptr_RasterPos3f GET_RasterPos3f(struct _glapi_table *disp) {
   3115    return (_glptr_RasterPos3f) (GET_by_offset(disp, _gloffset_RasterPos3f));
   3116 }
   3117 
   3118 static inline void SET_RasterPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3119    SET_by_offset(disp, _gloffset_RasterPos3f, fn);
   3120 }
   3121 
   3122 typedef void (GLAPIENTRYP _glptr_RasterPos3fv)(const GLfloat *);
   3123 #define CALL_RasterPos3fv(disp, parameters) \
   3124     (* GET_RasterPos3fv(disp)) parameters
   3125 static inline _glptr_RasterPos3fv GET_RasterPos3fv(struct _glapi_table *disp) {
   3126    return (_glptr_RasterPos3fv) (GET_by_offset(disp, _gloffset_RasterPos3fv));
   3127 }
   3128 
   3129 static inline void SET_RasterPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3130    SET_by_offset(disp, _gloffset_RasterPos3fv, fn);
   3131 }
   3132 
   3133 typedef void (GLAPIENTRYP _glptr_RasterPos3i)(GLint, GLint, GLint);
   3134 #define CALL_RasterPos3i(disp, parameters) \
   3135     (* GET_RasterPos3i(disp)) parameters
   3136 static inline _glptr_RasterPos3i GET_RasterPos3i(struct _glapi_table *disp) {
   3137    return (_glptr_RasterPos3i) (GET_by_offset(disp, _gloffset_RasterPos3i));
   3138 }
   3139 
   3140 static inline void SET_RasterPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   3141    SET_by_offset(disp, _gloffset_RasterPos3i, fn);
   3142 }
   3143 
   3144 typedef void (GLAPIENTRYP _glptr_RasterPos3iv)(const GLint *);
   3145 #define CALL_RasterPos3iv(disp, parameters) \
   3146     (* GET_RasterPos3iv(disp)) parameters
   3147 static inline _glptr_RasterPos3iv GET_RasterPos3iv(struct _glapi_table *disp) {
   3148    return (_glptr_RasterPos3iv) (GET_by_offset(disp, _gloffset_RasterPos3iv));
   3149 }
   3150 
   3151 static inline void SET_RasterPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3152    SET_by_offset(disp, _gloffset_RasterPos3iv, fn);
   3153 }
   3154 
   3155 typedef void (GLAPIENTRYP _glptr_RasterPos3s)(GLshort, GLshort, GLshort);
   3156 #define CALL_RasterPos3s(disp, parameters) \
   3157     (* GET_RasterPos3s(disp)) parameters
   3158 static inline _glptr_RasterPos3s GET_RasterPos3s(struct _glapi_table *disp) {
   3159    return (_glptr_RasterPos3s) (GET_by_offset(disp, _gloffset_RasterPos3s));
   3160 }
   3161 
   3162 static inline void SET_RasterPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   3163    SET_by_offset(disp, _gloffset_RasterPos3s, fn);
   3164 }
   3165 
   3166 typedef void (GLAPIENTRYP _glptr_RasterPos3sv)(const GLshort *);
   3167 #define CALL_RasterPos3sv(disp, parameters) \
   3168     (* GET_RasterPos3sv(disp)) parameters
   3169 static inline _glptr_RasterPos3sv GET_RasterPos3sv(struct _glapi_table *disp) {
   3170    return (_glptr_RasterPos3sv) (GET_by_offset(disp, _gloffset_RasterPos3sv));
   3171 }
   3172 
   3173 static inline void SET_RasterPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3174    SET_by_offset(disp, _gloffset_RasterPos3sv, fn);
   3175 }
   3176 
   3177 typedef void (GLAPIENTRYP _glptr_RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   3178 #define CALL_RasterPos4d(disp, parameters) \
   3179     (* GET_RasterPos4d(disp)) parameters
   3180 static inline _glptr_RasterPos4d GET_RasterPos4d(struct _glapi_table *disp) {
   3181    return (_glptr_RasterPos4d) (GET_by_offset(disp, _gloffset_RasterPos4d));
   3182 }
   3183 
   3184 static inline void SET_RasterPos4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3185    SET_by_offset(disp, _gloffset_RasterPos4d, fn);
   3186 }
   3187 
   3188 typedef void (GLAPIENTRYP _glptr_RasterPos4dv)(const GLdouble *);
   3189 #define CALL_RasterPos4dv(disp, parameters) \
   3190     (* GET_RasterPos4dv(disp)) parameters
   3191 static inline _glptr_RasterPos4dv GET_RasterPos4dv(struct _glapi_table *disp) {
   3192    return (_glptr_RasterPos4dv) (GET_by_offset(disp, _gloffset_RasterPos4dv));
   3193 }
   3194 
   3195 static inline void SET_RasterPos4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3196    SET_by_offset(disp, _gloffset_RasterPos4dv, fn);
   3197 }
   3198 
   3199 typedef void (GLAPIENTRYP _glptr_RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   3200 #define CALL_RasterPos4f(disp, parameters) \
   3201     (* GET_RasterPos4f(disp)) parameters
   3202 static inline _glptr_RasterPos4f GET_RasterPos4f(struct _glapi_table *disp) {
   3203    return (_glptr_RasterPos4f) (GET_by_offset(disp, _gloffset_RasterPos4f));
   3204 }
   3205 
   3206 static inline void SET_RasterPos4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3207    SET_by_offset(disp, _gloffset_RasterPos4f, fn);
   3208 }
   3209 
   3210 typedef void (GLAPIENTRYP _glptr_RasterPos4fv)(const GLfloat *);
   3211 #define CALL_RasterPos4fv(disp, parameters) \
   3212     (* GET_RasterPos4fv(disp)) parameters
   3213 static inline _glptr_RasterPos4fv GET_RasterPos4fv(struct _glapi_table *disp) {
   3214    return (_glptr_RasterPos4fv) (GET_by_offset(disp, _gloffset_RasterPos4fv));
   3215 }
   3216 
   3217 static inline void SET_RasterPos4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3218    SET_by_offset(disp, _gloffset_RasterPos4fv, fn);
   3219 }
   3220 
   3221 typedef void (GLAPIENTRYP _glptr_RasterPos4i)(GLint, GLint, GLint, GLint);
   3222 #define CALL_RasterPos4i(disp, parameters) \
   3223     (* GET_RasterPos4i(disp)) parameters
   3224 static inline _glptr_RasterPos4i GET_RasterPos4i(struct _glapi_table *disp) {
   3225    return (_glptr_RasterPos4i) (GET_by_offset(disp, _gloffset_RasterPos4i));
   3226 }
   3227 
   3228 static inline void SET_RasterPos4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3229    SET_by_offset(disp, _gloffset_RasterPos4i, fn);
   3230 }
   3231 
   3232 typedef void (GLAPIENTRYP _glptr_RasterPos4iv)(const GLint *);
   3233 #define CALL_RasterPos4iv(disp, parameters) \
   3234     (* GET_RasterPos4iv(disp)) parameters
   3235 static inline _glptr_RasterPos4iv GET_RasterPos4iv(struct _glapi_table *disp) {
   3236    return (_glptr_RasterPos4iv) (GET_by_offset(disp, _gloffset_RasterPos4iv));
   3237 }
   3238 
   3239 static inline void SET_RasterPos4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3240    SET_by_offset(disp, _gloffset_RasterPos4iv, fn);
   3241 }
   3242 
   3243 typedef void (GLAPIENTRYP _glptr_RasterPos4s)(GLshort, GLshort, GLshort, GLshort);
   3244 #define CALL_RasterPos4s(disp, parameters) \
   3245     (* GET_RasterPos4s(disp)) parameters
   3246 static inline _glptr_RasterPos4s GET_RasterPos4s(struct _glapi_table *disp) {
   3247    return (_glptr_RasterPos4s) (GET_by_offset(disp, _gloffset_RasterPos4s));
   3248 }
   3249 
   3250 static inline void SET_RasterPos4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3251    SET_by_offset(disp, _gloffset_RasterPos4s, fn);
   3252 }
   3253 
   3254 typedef void (GLAPIENTRYP _glptr_RasterPos4sv)(const GLshort *);
   3255 #define CALL_RasterPos4sv(disp, parameters) \
   3256     (* GET_RasterPos4sv(disp)) parameters
   3257 static inline _glptr_RasterPos4sv GET_RasterPos4sv(struct _glapi_table *disp) {
   3258    return (_glptr_RasterPos4sv) (GET_by_offset(disp, _gloffset_RasterPos4sv));
   3259 }
   3260 
   3261 static inline void SET_RasterPos4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3262    SET_by_offset(disp, _gloffset_RasterPos4sv, fn);
   3263 }
   3264 
   3265 typedef void (GLAPIENTRYP _glptr_Rectd)(GLdouble, GLdouble, GLdouble, GLdouble);
   3266 #define CALL_Rectd(disp, parameters) \
   3267     (* GET_Rectd(disp)) parameters
   3268 static inline _glptr_Rectd GET_Rectd(struct _glapi_table *disp) {
   3269    return (_glptr_Rectd) (GET_by_offset(disp, _gloffset_Rectd));
   3270 }
   3271 
   3272 static inline void SET_Rectd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3273    SET_by_offset(disp, _gloffset_Rectd, fn);
   3274 }
   3275 
   3276 typedef void (GLAPIENTRYP _glptr_Rectdv)(const GLdouble *, const GLdouble *);
   3277 #define CALL_Rectdv(disp, parameters) \
   3278     (* GET_Rectdv(disp)) parameters
   3279 static inline _glptr_Rectdv GET_Rectdv(struct _glapi_table *disp) {
   3280    return (_glptr_Rectdv) (GET_by_offset(disp, _gloffset_Rectdv));
   3281 }
   3282 
   3283 static inline void SET_Rectdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *, const GLdouble *)) {
   3284    SET_by_offset(disp, _gloffset_Rectdv, fn);
   3285 }
   3286 
   3287 typedef void (GLAPIENTRYP _glptr_Rectf)(GLfloat, GLfloat, GLfloat, GLfloat);
   3288 #define CALL_Rectf(disp, parameters) \
   3289     (* GET_Rectf(disp)) parameters
   3290 static inline _glptr_Rectf GET_Rectf(struct _glapi_table *disp) {
   3291    return (_glptr_Rectf) (GET_by_offset(disp, _gloffset_Rectf));
   3292 }
   3293 
   3294 static inline void SET_Rectf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3295    SET_by_offset(disp, _gloffset_Rectf, fn);
   3296 }
   3297 
   3298 typedef void (GLAPIENTRYP _glptr_Rectfv)(const GLfloat *, const GLfloat *);
   3299 #define CALL_Rectfv(disp, parameters) \
   3300     (* GET_Rectfv(disp)) parameters
   3301 static inline _glptr_Rectfv GET_Rectfv(struct _glapi_table *disp) {
   3302    return (_glptr_Rectfv) (GET_by_offset(disp, _gloffset_Rectfv));
   3303 }
   3304 
   3305 static inline void SET_Rectfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *, const GLfloat *)) {
   3306    SET_by_offset(disp, _gloffset_Rectfv, fn);
   3307 }
   3308 
   3309 typedef void (GLAPIENTRYP _glptr_Recti)(GLint, GLint, GLint, GLint);
   3310 #define CALL_Recti(disp, parameters) \
   3311     (* GET_Recti(disp)) parameters
   3312 static inline _glptr_Recti GET_Recti(struct _glapi_table *disp) {
   3313    return (_glptr_Recti) (GET_by_offset(disp, _gloffset_Recti));
   3314 }
   3315 
   3316 static inline void SET_Recti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3317    SET_by_offset(disp, _gloffset_Recti, fn);
   3318 }
   3319 
   3320 typedef void (GLAPIENTRYP _glptr_Rectiv)(const GLint *, const GLint *);
   3321 #define CALL_Rectiv(disp, parameters) \
   3322     (* GET_Rectiv(disp)) parameters
   3323 static inline _glptr_Rectiv GET_Rectiv(struct _glapi_table *disp) {
   3324    return (_glptr_Rectiv) (GET_by_offset(disp, _gloffset_Rectiv));
   3325 }
   3326 
   3327 static inline void SET_Rectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *, const GLint *)) {
   3328    SET_by_offset(disp, _gloffset_Rectiv, fn);
   3329 }
   3330 
   3331 typedef void (GLAPIENTRYP _glptr_Rects)(GLshort, GLshort, GLshort, GLshort);
   3332 #define CALL_Rects(disp, parameters) \
   3333     (* GET_Rects(disp)) parameters
   3334 static inline _glptr_Rects GET_Rects(struct _glapi_table *disp) {
   3335    return (_glptr_Rects) (GET_by_offset(disp, _gloffset_Rects));
   3336 }
   3337 
   3338 static inline void SET_Rects(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3339    SET_by_offset(disp, _gloffset_Rects, fn);
   3340 }
   3341 
   3342 typedef void (GLAPIENTRYP _glptr_Rectsv)(const GLshort *, const GLshort *);
   3343 #define CALL_Rectsv(disp, parameters) \
   3344     (* GET_Rectsv(disp)) parameters
   3345 static inline _glptr_Rectsv GET_Rectsv(struct _glapi_table *disp) {
   3346    return (_glptr_Rectsv) (GET_by_offset(disp, _gloffset_Rectsv));
   3347 }
   3348 
   3349 static inline void SET_Rectsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *, const GLshort *)) {
   3350    SET_by_offset(disp, _gloffset_Rectsv, fn);
   3351 }
   3352 
   3353 typedef void (GLAPIENTRYP _glptr_TexCoord1d)(GLdouble);
   3354 #define CALL_TexCoord1d(disp, parameters) \
   3355     (* GET_TexCoord1d(disp)) parameters
   3356 static inline _glptr_TexCoord1d GET_TexCoord1d(struct _glapi_table *disp) {
   3357    return (_glptr_TexCoord1d) (GET_by_offset(disp, _gloffset_TexCoord1d));
   3358 }
   3359 
   3360 static inline void SET_TexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   3361    SET_by_offset(disp, _gloffset_TexCoord1d, fn);
   3362 }
   3363 
   3364 typedef void (GLAPIENTRYP _glptr_TexCoord1dv)(const GLdouble *);
   3365 #define CALL_TexCoord1dv(disp, parameters) \
   3366     (* GET_TexCoord1dv(disp)) parameters
   3367 static inline _glptr_TexCoord1dv GET_TexCoord1dv(struct _glapi_table *disp) {
   3368    return (_glptr_TexCoord1dv) (GET_by_offset(disp, _gloffset_TexCoord1dv));
   3369 }
   3370 
   3371 static inline void SET_TexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3372    SET_by_offset(disp, _gloffset_TexCoord1dv, fn);
   3373 }
   3374 
   3375 typedef void (GLAPIENTRYP _glptr_TexCoord1f)(GLfloat);
   3376 #define CALL_TexCoord1f(disp, parameters) \
   3377     (* GET_TexCoord1f(disp)) parameters
   3378 static inline _glptr_TexCoord1f GET_TexCoord1f(struct _glapi_table *disp) {
   3379    return (_glptr_TexCoord1f) (GET_by_offset(disp, _gloffset_TexCoord1f));
   3380 }
   3381 
   3382 static inline void SET_TexCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   3383    SET_by_offset(disp, _gloffset_TexCoord1f, fn);
   3384 }
   3385 
   3386 typedef void (GLAPIENTRYP _glptr_TexCoord1fv)(const GLfloat *);
   3387 #define CALL_TexCoord1fv(disp, parameters) \
   3388     (* GET_TexCoord1fv(disp)) parameters
   3389 static inline _glptr_TexCoord1fv GET_TexCoord1fv(struct _glapi_table *disp) {
   3390    return (_glptr_TexCoord1fv) (GET_by_offset(disp, _gloffset_TexCoord1fv));
   3391 }
   3392 
   3393 static inline void SET_TexCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3394    SET_by_offset(disp, _gloffset_TexCoord1fv, fn);
   3395 }
   3396 
   3397 typedef void (GLAPIENTRYP _glptr_TexCoord1i)(GLint);
   3398 #define CALL_TexCoord1i(disp, parameters) \
   3399     (* GET_TexCoord1i(disp)) parameters
   3400 static inline _glptr_TexCoord1i GET_TexCoord1i(struct _glapi_table *disp) {
   3401    return (_glptr_TexCoord1i) (GET_by_offset(disp, _gloffset_TexCoord1i));
   3402 }
   3403 
   3404 static inline void SET_TexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   3405    SET_by_offset(disp, _gloffset_TexCoord1i, fn);
   3406 }
   3407 
   3408 typedef void (GLAPIENTRYP _glptr_TexCoord1iv)(const GLint *);
   3409 #define CALL_TexCoord1iv(disp, parameters) \
   3410     (* GET_TexCoord1iv(disp)) parameters
   3411 static inline _glptr_TexCoord1iv GET_TexCoord1iv(struct _glapi_table *disp) {
   3412    return (_glptr_TexCoord1iv) (GET_by_offset(disp, _gloffset_TexCoord1iv));
   3413 }
   3414 
   3415 static inline void SET_TexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3416    SET_by_offset(disp, _gloffset_TexCoord1iv, fn);
   3417 }
   3418 
   3419 typedef void (GLAPIENTRYP _glptr_TexCoord1s)(GLshort);
   3420 #define CALL_TexCoord1s(disp, parameters) \
   3421     (* GET_TexCoord1s(disp)) parameters
   3422 static inline _glptr_TexCoord1s GET_TexCoord1s(struct _glapi_table *disp) {
   3423    return (_glptr_TexCoord1s) (GET_by_offset(disp, _gloffset_TexCoord1s));
   3424 }
   3425 
   3426 static inline void SET_TexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
   3427    SET_by_offset(disp, _gloffset_TexCoord1s, fn);
   3428 }
   3429 
   3430 typedef void (GLAPIENTRYP _glptr_TexCoord1sv)(const GLshort *);
   3431 #define CALL_TexCoord1sv(disp, parameters) \
   3432     (* GET_TexCoord1sv(disp)) parameters
   3433 static inline _glptr_TexCoord1sv GET_TexCoord1sv(struct _glapi_table *disp) {
   3434    return (_glptr_TexCoord1sv) (GET_by_offset(disp, _gloffset_TexCoord1sv));
   3435 }
   3436 
   3437 static inline void SET_TexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3438    SET_by_offset(disp, _gloffset_TexCoord1sv, fn);
   3439 }
   3440 
   3441 typedef void (GLAPIENTRYP _glptr_TexCoord2d)(GLdouble, GLdouble);
   3442 #define CALL_TexCoord2d(disp, parameters) \
   3443     (* GET_TexCoord2d(disp)) parameters
   3444 static inline _glptr_TexCoord2d GET_TexCoord2d(struct _glapi_table *disp) {
   3445    return (_glptr_TexCoord2d) (GET_by_offset(disp, _gloffset_TexCoord2d));
   3446 }
   3447 
   3448 static inline void SET_TexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   3449    SET_by_offset(disp, _gloffset_TexCoord2d, fn);
   3450 }
   3451 
   3452 typedef void (GLAPIENTRYP _glptr_TexCoord2dv)(const GLdouble *);
   3453 #define CALL_TexCoord2dv(disp, parameters) \
   3454     (* GET_TexCoord2dv(disp)) parameters
   3455 static inline _glptr_TexCoord2dv GET_TexCoord2dv(struct _glapi_table *disp) {
   3456    return (_glptr_TexCoord2dv) (GET_by_offset(disp, _gloffset_TexCoord2dv));
   3457 }
   3458 
   3459 static inline void SET_TexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3460    SET_by_offset(disp, _gloffset_TexCoord2dv, fn);
   3461 }
   3462 
   3463 typedef void (GLAPIENTRYP _glptr_TexCoord2f)(GLfloat, GLfloat);
   3464 #define CALL_TexCoord2f(disp, parameters) \
   3465     (* GET_TexCoord2f(disp)) parameters
   3466 static inline _glptr_TexCoord2f GET_TexCoord2f(struct _glapi_table *disp) {
   3467    return (_glptr_TexCoord2f) (GET_by_offset(disp, _gloffset_TexCoord2f));
   3468 }
   3469 
   3470 static inline void SET_TexCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   3471    SET_by_offset(disp, _gloffset_TexCoord2f, fn);
   3472 }
   3473 
   3474 typedef void (GLAPIENTRYP _glptr_TexCoord2fv)(const GLfloat *);
   3475 #define CALL_TexCoord2fv(disp, parameters) \
   3476     (* GET_TexCoord2fv(disp)) parameters
   3477 static inline _glptr_TexCoord2fv GET_TexCoord2fv(struct _glapi_table *disp) {
   3478    return (_glptr_TexCoord2fv) (GET_by_offset(disp, _gloffset_TexCoord2fv));
   3479 }
   3480 
   3481 static inline void SET_TexCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3482    SET_by_offset(disp, _gloffset_TexCoord2fv, fn);
   3483 }
   3484 
   3485 typedef void (GLAPIENTRYP _glptr_TexCoord2i)(GLint, GLint);
   3486 #define CALL_TexCoord2i(disp, parameters) \
   3487     (* GET_TexCoord2i(disp)) parameters
   3488 static inline _glptr_TexCoord2i GET_TexCoord2i(struct _glapi_table *disp) {
   3489    return (_glptr_TexCoord2i) (GET_by_offset(disp, _gloffset_TexCoord2i));
   3490 }
   3491 
   3492 static inline void SET_TexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   3493    SET_by_offset(disp, _gloffset_TexCoord2i, fn);
   3494 }
   3495 
   3496 typedef void (GLAPIENTRYP _glptr_TexCoord2iv)(const GLint *);
   3497 #define CALL_TexCoord2iv(disp, parameters) \
   3498     (* GET_TexCoord2iv(disp)) parameters
   3499 static inline _glptr_TexCoord2iv GET_TexCoord2iv(struct _glapi_table *disp) {
   3500    return (_glptr_TexCoord2iv) (GET_by_offset(disp, _gloffset_TexCoord2iv));
   3501 }
   3502 
   3503 static inline void SET_TexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3504    SET_by_offset(disp, _gloffset_TexCoord2iv, fn);
   3505 }
   3506 
   3507 typedef void (GLAPIENTRYP _glptr_TexCoord2s)(GLshort, GLshort);
   3508 #define CALL_TexCoord2s(disp, parameters) \
   3509     (* GET_TexCoord2s(disp)) parameters
   3510 static inline _glptr_TexCoord2s GET_TexCoord2s(struct _glapi_table *disp) {
   3511    return (_glptr_TexCoord2s) (GET_by_offset(disp, _gloffset_TexCoord2s));
   3512 }
   3513 
   3514 static inline void SET_TexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   3515    SET_by_offset(disp, _gloffset_TexCoord2s, fn);
   3516 }
   3517 
   3518 typedef void (GLAPIENTRYP _glptr_TexCoord2sv)(const GLshort *);
   3519 #define CALL_TexCoord2sv(disp, parameters) \
   3520     (* GET_TexCoord2sv(disp)) parameters
   3521 static inline _glptr_TexCoord2sv GET_TexCoord2sv(struct _glapi_table *disp) {
   3522    return (_glptr_TexCoord2sv) (GET_by_offset(disp, _gloffset_TexCoord2sv));
   3523 }
   3524 
   3525 static inline void SET_TexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3526    SET_by_offset(disp, _gloffset_TexCoord2sv, fn);
   3527 }
   3528 
   3529 typedef void (GLAPIENTRYP _glptr_TexCoord3d)(GLdouble, GLdouble, GLdouble);
   3530 #define CALL_TexCoord3d(disp, parameters) \
   3531     (* GET_TexCoord3d(disp)) parameters
   3532 static inline _glptr_TexCoord3d GET_TexCoord3d(struct _glapi_table *disp) {
   3533    return (_glptr_TexCoord3d) (GET_by_offset(disp, _gloffset_TexCoord3d));
   3534 }
   3535 
   3536 static inline void SET_TexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3537    SET_by_offset(disp, _gloffset_TexCoord3d, fn);
   3538 }
   3539 
   3540 typedef void (GLAPIENTRYP _glptr_TexCoord3dv)(const GLdouble *);
   3541 #define CALL_TexCoord3dv(disp, parameters) \
   3542     (* GET_TexCoord3dv(disp)) parameters
   3543 static inline _glptr_TexCoord3dv GET_TexCoord3dv(struct _glapi_table *disp) {
   3544    return (_glptr_TexCoord3dv) (GET_by_offset(disp, _gloffset_TexCoord3dv));
   3545 }
   3546 
   3547 static inline void SET_TexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3548    SET_by_offset(disp, _gloffset_TexCoord3dv, fn);
   3549 }
   3550 
   3551 typedef void (GLAPIENTRYP _glptr_TexCoord3f)(GLfloat, GLfloat, GLfloat);
   3552 #define CALL_TexCoord3f(disp, parameters) \
   3553     (* GET_TexCoord3f(disp)) parameters
   3554 static inline _glptr_TexCoord3f GET_TexCoord3f(struct _glapi_table *disp) {
   3555    return (_glptr_TexCoord3f) (GET_by_offset(disp, _gloffset_TexCoord3f));
   3556 }
   3557 
   3558 static inline void SET_TexCoord3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3559    SET_by_offset(disp, _gloffset_TexCoord3f, fn);
   3560 }
   3561 
   3562 typedef void (GLAPIENTRYP _glptr_TexCoord3fv)(const GLfloat *);
   3563 #define CALL_TexCoord3fv(disp, parameters) \
   3564     (* GET_TexCoord3fv(disp)) parameters
   3565 static inline _glptr_TexCoord3fv GET_TexCoord3fv(struct _glapi_table *disp) {
   3566    return (_glptr_TexCoord3fv) (GET_by_offset(disp, _gloffset_TexCoord3fv));
   3567 }
   3568 
   3569 static inline void SET_TexCoord3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3570    SET_by_offset(disp, _gloffset_TexCoord3fv, fn);
   3571 }
   3572 
   3573 typedef void (GLAPIENTRYP _glptr_TexCoord3i)(GLint, GLint, GLint);
   3574 #define CALL_TexCoord3i(disp, parameters) \
   3575     (* GET_TexCoord3i(disp)) parameters
   3576 static inline _glptr_TexCoord3i GET_TexCoord3i(struct _glapi_table *disp) {
   3577    return (_glptr_TexCoord3i) (GET_by_offset(disp, _gloffset_TexCoord3i));
   3578 }
   3579 
   3580 static inline void SET_TexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   3581    SET_by_offset(disp, _gloffset_TexCoord3i, fn);
   3582 }
   3583 
   3584 typedef void (GLAPIENTRYP _glptr_TexCoord3iv)(const GLint *);
   3585 #define CALL_TexCoord3iv(disp, parameters) \
   3586     (* GET_TexCoord3iv(disp)) parameters
   3587 static inline _glptr_TexCoord3iv GET_TexCoord3iv(struct _glapi_table *disp) {
   3588    return (_glptr_TexCoord3iv) (GET_by_offset(disp, _gloffset_TexCoord3iv));
   3589 }
   3590 
   3591 static inline void SET_TexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3592    SET_by_offset(disp, _gloffset_TexCoord3iv, fn);
   3593 }
   3594 
   3595 typedef void (GLAPIENTRYP _glptr_TexCoord3s)(GLshort, GLshort, GLshort);
   3596 #define CALL_TexCoord3s(disp, parameters) \
   3597     (* GET_TexCoord3s(disp)) parameters
   3598 static inline _glptr_TexCoord3s GET_TexCoord3s(struct _glapi_table *disp) {
   3599    return (_glptr_TexCoord3s) (GET_by_offset(disp, _gloffset_TexCoord3s));
   3600 }
   3601 
   3602 static inline void SET_TexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   3603    SET_by_offset(disp, _gloffset_TexCoord3s, fn);
   3604 }
   3605 
   3606 typedef void (GLAPIENTRYP _glptr_TexCoord3sv)(const GLshort *);
   3607 #define CALL_TexCoord3sv(disp, parameters) \
   3608     (* GET_TexCoord3sv(disp)) parameters
   3609 static inline _glptr_TexCoord3sv GET_TexCoord3sv(struct _glapi_table *disp) {
   3610    return (_glptr_TexCoord3sv) (GET_by_offset(disp, _gloffset_TexCoord3sv));
   3611 }
   3612 
   3613 static inline void SET_TexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3614    SET_by_offset(disp, _gloffset_TexCoord3sv, fn);
   3615 }
   3616 
   3617 typedef void (GLAPIENTRYP _glptr_TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   3618 #define CALL_TexCoord4d(disp, parameters) \
   3619     (* GET_TexCoord4d(disp)) parameters
   3620 static inline _glptr_TexCoord4d GET_TexCoord4d(struct _glapi_table *disp) {
   3621    return (_glptr_TexCoord4d) (GET_by_offset(disp, _gloffset_TexCoord4d));
   3622 }
   3623 
   3624 static inline void SET_TexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3625    SET_by_offset(disp, _gloffset_TexCoord4d, fn);
   3626 }
   3627 
   3628 typedef void (GLAPIENTRYP _glptr_TexCoord4dv)(const GLdouble *);
   3629 #define CALL_TexCoord4dv(disp, parameters) \
   3630     (* GET_TexCoord4dv(disp)) parameters
   3631 static inline _glptr_TexCoord4dv GET_TexCoord4dv(struct _glapi_table *disp) {
   3632    return (_glptr_TexCoord4dv) (GET_by_offset(disp, _gloffset_TexCoord4dv));
   3633 }
   3634 
   3635 static inline void SET_TexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3636    SET_by_offset(disp, _gloffset_TexCoord4dv, fn);
   3637 }
   3638 
   3639 typedef void (GLAPIENTRYP _glptr_TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   3640 #define CALL_TexCoord4f(disp, parameters) \
   3641     (* GET_TexCoord4f(disp)) parameters
   3642 static inline _glptr_TexCoord4f GET_TexCoord4f(struct _glapi_table *disp) {
   3643    return (_glptr_TexCoord4f) (GET_by_offset(disp, _gloffset_TexCoord4f));
   3644 }
   3645 
   3646 static inline void SET_TexCoord4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3647    SET_by_offset(disp, _gloffset_TexCoord4f, fn);
   3648 }
   3649 
   3650 typedef void (GLAPIENTRYP _glptr_TexCoord4fv)(const GLfloat *);
   3651 #define CALL_TexCoord4fv(disp, parameters) \
   3652     (* GET_TexCoord4fv(disp)) parameters
   3653 static inline _glptr_TexCoord4fv GET_TexCoord4fv(struct _glapi_table *disp) {
   3654    return (_glptr_TexCoord4fv) (GET_by_offset(disp, _gloffset_TexCoord4fv));
   3655 }
   3656 
   3657 static inline void SET_TexCoord4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3658    SET_by_offset(disp, _gloffset_TexCoord4fv, fn);
   3659 }
   3660 
   3661 typedef void (GLAPIENTRYP _glptr_TexCoord4i)(GLint, GLint, GLint, GLint);
   3662 #define CALL_TexCoord4i(disp, parameters) \
   3663     (* GET_TexCoord4i(disp)) parameters
   3664 static inline _glptr_TexCoord4i GET_TexCoord4i(struct _glapi_table *disp) {
   3665    return (_glptr_TexCoord4i) (GET_by_offset(disp, _gloffset_TexCoord4i));
   3666 }
   3667 
   3668 static inline void SET_TexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3669    SET_by_offset(disp, _gloffset_TexCoord4i, fn);
   3670 }
   3671 
   3672 typedef void (GLAPIENTRYP _glptr_TexCoord4iv)(const GLint *);
   3673 #define CALL_TexCoord4iv(disp, parameters) \
   3674     (* GET_TexCoord4iv(disp)) parameters
   3675 static inline _glptr_TexCoord4iv GET_TexCoord4iv(struct _glapi_table *disp) {
   3676    return (_glptr_TexCoord4iv) (GET_by_offset(disp, _gloffset_TexCoord4iv));
   3677 }
   3678 
   3679 static inline void SET_TexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3680    SET_by_offset(disp, _gloffset_TexCoord4iv, fn);
   3681 }
   3682 
   3683 typedef void (GLAPIENTRYP _glptr_TexCoord4s)(GLshort, GLshort, GLshort, GLshort);
   3684 #define CALL_TexCoord4s(disp, parameters) \
   3685     (* GET_TexCoord4s(disp)) parameters
   3686 static inline _glptr_TexCoord4s GET_TexCoord4s(struct _glapi_table *disp) {
   3687    return (_glptr_TexCoord4s) (GET_by_offset(disp, _gloffset_TexCoord4s));
   3688 }
   3689 
   3690 static inline void SET_TexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3691    SET_by_offset(disp, _gloffset_TexCoord4s, fn);
   3692 }
   3693 
   3694 typedef void (GLAPIENTRYP _glptr_TexCoord4sv)(const GLshort *);
   3695 #define CALL_TexCoord4sv(disp, parameters) \
   3696     (* GET_TexCoord4sv(disp)) parameters
   3697 static inline _glptr_TexCoord4sv GET_TexCoord4sv(struct _glapi_table *disp) {
   3698    return (_glptr_TexCoord4sv) (GET_by_offset(disp, _gloffset_TexCoord4sv));
   3699 }
   3700 
   3701 static inline void SET_TexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3702    SET_by_offset(disp, _gloffset_TexCoord4sv, fn);
   3703 }
   3704 
   3705 typedef void (GLAPIENTRYP _glptr_Vertex2d)(GLdouble, GLdouble);
   3706 #define CALL_Vertex2d(disp, parameters) \
   3707     (* GET_Vertex2d(disp)) parameters
   3708 static inline _glptr_Vertex2d GET_Vertex2d(struct _glapi_table *disp) {
   3709    return (_glptr_Vertex2d) (GET_by_offset(disp, _gloffset_Vertex2d));
   3710 }
   3711 
   3712 static inline void SET_Vertex2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   3713    SET_by_offset(disp, _gloffset_Vertex2d, fn);
   3714 }
   3715 
   3716 typedef void (GLAPIENTRYP _glptr_Vertex2dv)(const GLdouble *);
   3717 #define CALL_Vertex2dv(disp, parameters) \
   3718     (* GET_Vertex2dv(disp)) parameters
   3719 static inline _glptr_Vertex2dv GET_Vertex2dv(struct _glapi_table *disp) {
   3720    return (_glptr_Vertex2dv) (GET_by_offset(disp, _gloffset_Vertex2dv));
   3721 }
   3722 
   3723 static inline void SET_Vertex2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3724    SET_by_offset(disp, _gloffset_Vertex2dv, fn);
   3725 }
   3726 
   3727 typedef void (GLAPIENTRYP _glptr_Vertex2f)(GLfloat, GLfloat);
   3728 #define CALL_Vertex2f(disp, parameters) \
   3729     (* GET_Vertex2f(disp)) parameters
   3730 static inline _glptr_Vertex2f GET_Vertex2f(struct _glapi_table *disp) {
   3731    return (_glptr_Vertex2f) (GET_by_offset(disp, _gloffset_Vertex2f));
   3732 }
   3733 
   3734 static inline void SET_Vertex2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   3735    SET_by_offset(disp, _gloffset_Vertex2f, fn);
   3736 }
   3737 
   3738 typedef void (GLAPIENTRYP _glptr_Vertex2fv)(const GLfloat *);
   3739 #define CALL_Vertex2fv(disp, parameters) \
   3740     (* GET_Vertex2fv(disp)) parameters
   3741 static inline _glptr_Vertex2fv GET_Vertex2fv(struct _glapi_table *disp) {
   3742    return (_glptr_Vertex2fv) (GET_by_offset(disp, _gloffset_Vertex2fv));
   3743 }
   3744 
   3745 static inline void SET_Vertex2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3746    SET_by_offset(disp, _gloffset_Vertex2fv, fn);
   3747 }
   3748 
   3749 typedef void (GLAPIENTRYP _glptr_Vertex2i)(GLint, GLint);
   3750 #define CALL_Vertex2i(disp, parameters) \
   3751     (* GET_Vertex2i(disp)) parameters
   3752 static inline _glptr_Vertex2i GET_Vertex2i(struct _glapi_table *disp) {
   3753    return (_glptr_Vertex2i) (GET_by_offset(disp, _gloffset_Vertex2i));
   3754 }
   3755 
   3756 static inline void SET_Vertex2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   3757    SET_by_offset(disp, _gloffset_Vertex2i, fn);
   3758 }
   3759 
   3760 typedef void (GLAPIENTRYP _glptr_Vertex2iv)(const GLint *);
   3761 #define CALL_Vertex2iv(disp, parameters) \
   3762     (* GET_Vertex2iv(disp)) parameters
   3763 static inline _glptr_Vertex2iv GET_Vertex2iv(struct _glapi_table *disp) {
   3764    return (_glptr_Vertex2iv) (GET_by_offset(disp, _gloffset_Vertex2iv));
   3765 }
   3766 
   3767 static inline void SET_Vertex2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3768    SET_by_offset(disp, _gloffset_Vertex2iv, fn);
   3769 }
   3770 
   3771 typedef void (GLAPIENTRYP _glptr_Vertex2s)(GLshort, GLshort);
   3772 #define CALL_Vertex2s(disp, parameters) \
   3773     (* GET_Vertex2s(disp)) parameters
   3774 static inline _glptr_Vertex2s GET_Vertex2s(struct _glapi_table *disp) {
   3775    return (_glptr_Vertex2s) (GET_by_offset(disp, _gloffset_Vertex2s));
   3776 }
   3777 
   3778 static inline void SET_Vertex2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   3779    SET_by_offset(disp, _gloffset_Vertex2s, fn);
   3780 }
   3781 
   3782 typedef void (GLAPIENTRYP _glptr_Vertex2sv)(const GLshort *);
   3783 #define CALL_Vertex2sv(disp, parameters) \
   3784     (* GET_Vertex2sv(disp)) parameters
   3785 static inline _glptr_Vertex2sv GET_Vertex2sv(struct _glapi_table *disp) {
   3786    return (_glptr_Vertex2sv) (GET_by_offset(disp, _gloffset_Vertex2sv));
   3787 }
   3788 
   3789 static inline void SET_Vertex2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3790    SET_by_offset(disp, _gloffset_Vertex2sv, fn);
   3791 }
   3792 
   3793 typedef void (GLAPIENTRYP _glptr_Vertex3d)(GLdouble, GLdouble, GLdouble);
   3794 #define CALL_Vertex3d(disp, parameters) \
   3795     (* GET_Vertex3d(disp)) parameters
   3796 static inline _glptr_Vertex3d GET_Vertex3d(struct _glapi_table *disp) {
   3797    return (_glptr_Vertex3d) (GET_by_offset(disp, _gloffset_Vertex3d));
   3798 }
   3799 
   3800 static inline void SET_Vertex3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3801    SET_by_offset(disp, _gloffset_Vertex3d, fn);
   3802 }
   3803 
   3804 typedef void (GLAPIENTRYP _glptr_Vertex3dv)(const GLdouble *);
   3805 #define CALL_Vertex3dv(disp, parameters) \
   3806     (* GET_Vertex3dv(disp)) parameters
   3807 static inline _glptr_Vertex3dv GET_Vertex3dv(struct _glapi_table *disp) {
   3808    return (_glptr_Vertex3dv) (GET_by_offset(disp, _gloffset_Vertex3dv));
   3809 }
   3810 
   3811 static inline void SET_Vertex3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3812    SET_by_offset(disp, _gloffset_Vertex3dv, fn);
   3813 }
   3814 
   3815 typedef void (GLAPIENTRYP _glptr_Vertex3f)(GLfloat, GLfloat, GLfloat);
   3816 #define CALL_Vertex3f(disp, parameters) \
   3817     (* GET_Vertex3f(disp)) parameters
   3818 static inline _glptr_Vertex3f GET_Vertex3f(struct _glapi_table *disp) {
   3819    return (_glptr_Vertex3f) (GET_by_offset(disp, _gloffset_Vertex3f));
   3820 }
   3821 
   3822 static inline void SET_Vertex3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3823    SET_by_offset(disp, _gloffset_Vertex3f, fn);
   3824 }
   3825 
   3826 typedef void (GLAPIENTRYP _glptr_Vertex3fv)(const GLfloat *);
   3827 #define CALL_Vertex3fv(disp, parameters) \
   3828     (* GET_Vertex3fv(disp)) parameters
   3829 static inline _glptr_Vertex3fv GET_Vertex3fv(struct _glapi_table *disp) {
   3830    return (_glptr_Vertex3fv) (GET_by_offset(disp, _gloffset_Vertex3fv));
   3831 }
   3832 
   3833 static inline void SET_Vertex3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3834    SET_by_offset(disp, _gloffset_Vertex3fv, fn);
   3835 }
   3836 
   3837 typedef void (GLAPIENTRYP _glptr_Vertex3i)(GLint, GLint, GLint);
   3838 #define CALL_Vertex3i(disp, parameters) \
   3839     (* GET_Vertex3i(disp)) parameters
   3840 static inline _glptr_Vertex3i GET_Vertex3i(struct _glapi_table *disp) {
   3841    return (_glptr_Vertex3i) (GET_by_offset(disp, _gloffset_Vertex3i));
   3842 }
   3843 
   3844 static inline void SET_Vertex3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   3845    SET_by_offset(disp, _gloffset_Vertex3i, fn);
   3846 }
   3847 
   3848 typedef void (GLAPIENTRYP _glptr_Vertex3iv)(const GLint *);
   3849 #define CALL_Vertex3iv(disp, parameters) \
   3850     (* GET_Vertex3iv(disp)) parameters
   3851 static inline _glptr_Vertex3iv GET_Vertex3iv(struct _glapi_table *disp) {
   3852    return (_glptr_Vertex3iv) (GET_by_offset(disp, _gloffset_Vertex3iv));
   3853 }
   3854 
   3855 static inline void SET_Vertex3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3856    SET_by_offset(disp, _gloffset_Vertex3iv, fn);
   3857 }
   3858 
   3859 typedef void (GLAPIENTRYP _glptr_Vertex3s)(GLshort, GLshort, GLshort);
   3860 #define CALL_Vertex3s(disp, parameters) \
   3861     (* GET_Vertex3s(disp)) parameters
   3862 static inline _glptr_Vertex3s GET_Vertex3s(struct _glapi_table *disp) {
   3863    return (_glptr_Vertex3s) (GET_by_offset(disp, _gloffset_Vertex3s));
   3864 }
   3865 
   3866 static inline void SET_Vertex3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   3867    SET_by_offset(disp, _gloffset_Vertex3s, fn);
   3868 }
   3869 
   3870 typedef void (GLAPIENTRYP _glptr_Vertex3sv)(const GLshort *);
   3871 #define CALL_Vertex3sv(disp, parameters) \
   3872     (* GET_Vertex3sv(disp)) parameters
   3873 static inline _glptr_Vertex3sv GET_Vertex3sv(struct _glapi_table *disp) {
   3874    return (_glptr_Vertex3sv) (GET_by_offset(disp, _gloffset_Vertex3sv));
   3875 }
   3876 
   3877 static inline void SET_Vertex3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3878    SET_by_offset(disp, _gloffset_Vertex3sv, fn);
   3879 }
   3880 
   3881 typedef void (GLAPIENTRYP _glptr_Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   3882 #define CALL_Vertex4d(disp, parameters) \
   3883     (* GET_Vertex4d(disp)) parameters
   3884 static inline _glptr_Vertex4d GET_Vertex4d(struct _glapi_table *disp) {
   3885    return (_glptr_Vertex4d) (GET_by_offset(disp, _gloffset_Vertex4d));
   3886 }
   3887 
   3888 static inline void SET_Vertex4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3889    SET_by_offset(disp, _gloffset_Vertex4d, fn);
   3890 }
   3891 
   3892 typedef void (GLAPIENTRYP _glptr_Vertex4dv)(const GLdouble *);
   3893 #define CALL_Vertex4dv(disp, parameters) \
   3894     (* GET_Vertex4dv(disp)) parameters
   3895 static inline _glptr_Vertex4dv GET_Vertex4dv(struct _glapi_table *disp) {
   3896    return (_glptr_Vertex4dv) (GET_by_offset(disp, _gloffset_Vertex4dv));
   3897 }
   3898 
   3899 static inline void SET_Vertex4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3900    SET_by_offset(disp, _gloffset_Vertex4dv, fn);
   3901 }
   3902 
   3903 typedef void (GLAPIENTRYP _glptr_Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   3904 #define CALL_Vertex4f(disp, parameters) \
   3905     (* GET_Vertex4f(disp)) parameters
   3906 static inline _glptr_Vertex4f GET_Vertex4f(struct _glapi_table *disp) {
   3907    return (_glptr_Vertex4f) (GET_by_offset(disp, _gloffset_Vertex4f));
   3908 }
   3909 
   3910 static inline void SET_Vertex4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3911    SET_by_offset(disp, _gloffset_Vertex4f, fn);
   3912 }
   3913 
   3914 typedef void (GLAPIENTRYP _glptr_Vertex4fv)(const GLfloat *);
   3915 #define CALL_Vertex4fv(disp, parameters) \
   3916     (* GET_Vertex4fv(disp)) parameters
   3917 static inline _glptr_Vertex4fv GET_Vertex4fv(struct _glapi_table *disp) {
   3918    return (_glptr_Vertex4fv) (GET_by_offset(disp, _gloffset_Vertex4fv));
   3919 }
   3920 
   3921 static inline void SET_Vertex4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3922    SET_by_offset(disp, _gloffset_Vertex4fv, fn);
   3923 }
   3924 
   3925 typedef void (GLAPIENTRYP _glptr_Vertex4i)(GLint, GLint, GLint, GLint);
   3926 #define CALL_Vertex4i(disp, parameters) \
   3927     (* GET_Vertex4i(disp)) parameters
   3928 static inline _glptr_Vertex4i GET_Vertex4i(struct _glapi_table *disp) {
   3929    return (_glptr_Vertex4i) (GET_by_offset(disp, _gloffset_Vertex4i));
   3930 }
   3931 
   3932 static inline void SET_Vertex4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3933    SET_by_offset(disp, _gloffset_Vertex4i, fn);
   3934 }
   3935 
   3936 typedef void (GLAPIENTRYP _glptr_Vertex4iv)(const GLint *);
   3937 #define CALL_Vertex4iv(disp, parameters) \
   3938     (* GET_Vertex4iv(disp)) parameters
   3939 static inline _glptr_Vertex4iv GET_Vertex4iv(struct _glapi_table *disp) {
   3940    return (_glptr_Vertex4iv) (GET_by_offset(disp, _gloffset_Vertex4iv));
   3941 }
   3942 
   3943 static inline void SET_Vertex4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3944    SET_by_offset(disp, _gloffset_Vertex4iv, fn);
   3945 }
   3946 
   3947 typedef void (GLAPIENTRYP _glptr_Vertex4s)(GLshort, GLshort, GLshort, GLshort);
   3948 #define CALL_Vertex4s(disp, parameters) \
   3949     (* GET_Vertex4s(disp)) parameters
   3950 static inline _glptr_Vertex4s GET_Vertex4s(struct _glapi_table *disp) {
   3951    return (_glptr_Vertex4s) (GET_by_offset(disp, _gloffset_Vertex4s));
   3952 }
   3953 
   3954 static inline void SET_Vertex4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3955    SET_by_offset(disp, _gloffset_Vertex4s, fn);
   3956 }
   3957 
   3958 typedef void (GLAPIENTRYP _glptr_Vertex4sv)(const GLshort *);
   3959 #define CALL_Vertex4sv(disp, parameters) \
   3960     (* GET_Vertex4sv(disp)) parameters
   3961 static inline _glptr_Vertex4sv GET_Vertex4sv(struct _glapi_table *disp) {
   3962    return (_glptr_Vertex4sv) (GET_by_offset(disp, _gloffset_Vertex4sv));
   3963 }
   3964 
   3965 static inline void SET_Vertex4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3966    SET_by_offset(disp, _gloffset_Vertex4sv, fn);
   3967 }
   3968 
   3969 typedef void (GLAPIENTRYP _glptr_ClipPlane)(GLenum, const GLdouble *);
   3970 #define CALL_ClipPlane(disp, parameters) \
   3971     (* GET_ClipPlane(disp)) parameters
   3972 static inline _glptr_ClipPlane GET_ClipPlane(struct _glapi_table *disp) {
   3973    return (_glptr_ClipPlane) (GET_by_offset(disp, _gloffset_ClipPlane));
   3974 }
   3975 
   3976 static inline void SET_ClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   3977    SET_by_offset(disp, _gloffset_ClipPlane, fn);
   3978 }
   3979 
   3980 typedef void (GLAPIENTRYP _glptr_ColorMaterial)(GLenum, GLenum);
   3981 #define CALL_ColorMaterial(disp, parameters) \
   3982     (* GET_ColorMaterial(disp)) parameters
   3983 static inline _glptr_ColorMaterial GET_ColorMaterial(struct _glapi_table *disp) {
   3984    return (_glptr_ColorMaterial) (GET_by_offset(disp, _gloffset_ColorMaterial));
   3985 }
   3986 
   3987 static inline void SET_ColorMaterial(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   3988    SET_by_offset(disp, _gloffset_ColorMaterial, fn);
   3989 }
   3990 
   3991 typedef void (GLAPIENTRYP _glptr_CullFace)(GLenum);
   3992 #define CALL_CullFace(disp, parameters) \
   3993     (* GET_CullFace(disp)) parameters
   3994 static inline _glptr_CullFace GET_CullFace(struct _glapi_table *disp) {
   3995    return (_glptr_CullFace) (GET_by_offset(disp, _gloffset_CullFace));
   3996 }
   3997 
   3998 static inline void SET_CullFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   3999    SET_by_offset(disp, _gloffset_CullFace, fn);
   4000 }
   4001 
   4002 typedef void (GLAPIENTRYP _glptr_Fogf)(GLenum, GLfloat);
   4003 #define CALL_Fogf(disp, parameters) \
   4004     (* GET_Fogf(disp)) parameters
   4005 static inline _glptr_Fogf GET_Fogf(struct _glapi_table *disp) {
   4006    return (_glptr_Fogf) (GET_by_offset(disp, _gloffset_Fogf));
   4007 }
   4008 
   4009 static inline void SET_Fogf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   4010    SET_by_offset(disp, _gloffset_Fogf, fn);
   4011 }
   4012 
   4013 typedef void (GLAPIENTRYP _glptr_Fogfv)(GLenum, const GLfloat *);
   4014 #define CALL_Fogfv(disp, parameters) \
   4015     (* GET_Fogfv(disp)) parameters
   4016 static inline _glptr_Fogfv GET_Fogfv(struct _glapi_table *disp) {
   4017    return (_glptr_Fogfv) (GET_by_offset(disp, _gloffset_Fogfv));
   4018 }
   4019 
   4020 static inline void SET_Fogfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   4021    SET_by_offset(disp, _gloffset_Fogfv, fn);
   4022 }
   4023 
   4024 typedef void (GLAPIENTRYP _glptr_Fogi)(GLenum, GLint);
   4025 #define CALL_Fogi(disp, parameters) \
   4026     (* GET_Fogi(disp)) parameters
   4027 static inline _glptr_Fogi GET_Fogi(struct _glapi_table *disp) {
   4028    return (_glptr_Fogi) (GET_by_offset(disp, _gloffset_Fogi));
   4029 }
   4030 
   4031 static inline void SET_Fogi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   4032    SET_by_offset(disp, _gloffset_Fogi, fn);
   4033 }
   4034 
   4035 typedef void (GLAPIENTRYP _glptr_Fogiv)(GLenum, const GLint *);
   4036 #define CALL_Fogiv(disp, parameters) \
   4037     (* GET_Fogiv(disp)) parameters
   4038 static inline _glptr_Fogiv GET_Fogiv(struct _glapi_table *disp) {
   4039    return (_glptr_Fogiv) (GET_by_offset(disp, _gloffset_Fogiv));
   4040 }
   4041 
   4042 static inline void SET_Fogiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   4043    SET_by_offset(disp, _gloffset_Fogiv, fn);
   4044 }
   4045 
   4046 typedef void (GLAPIENTRYP _glptr_FrontFace)(GLenum);
   4047 #define CALL_FrontFace(disp, parameters) \
   4048     (* GET_FrontFace(disp)) parameters
   4049 static inline _glptr_FrontFace GET_FrontFace(struct _glapi_table *disp) {
   4050    return (_glptr_FrontFace) (GET_by_offset(disp, _gloffset_FrontFace));
   4051 }
   4052 
   4053 static inline void SET_FrontFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4054    SET_by_offset(disp, _gloffset_FrontFace, fn);
   4055 }
   4056 
   4057 typedef void (GLAPIENTRYP _glptr_Hint)(GLenum, GLenum);
   4058 #define CALL_Hint(disp, parameters) \
   4059     (* GET_Hint(disp)) parameters
   4060 static inline _glptr_Hint GET_Hint(struct _glapi_table *disp) {
   4061    return (_glptr_Hint) (GET_by_offset(disp, _gloffset_Hint));
   4062 }
   4063 
   4064 static inline void SET_Hint(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   4065    SET_by_offset(disp, _gloffset_Hint, fn);
   4066 }
   4067 
   4068 typedef void (GLAPIENTRYP _glptr_Lightf)(GLenum, GLenum, GLfloat);
   4069 #define CALL_Lightf(disp, parameters) \
   4070     (* GET_Lightf(disp)) parameters
   4071 static inline _glptr_Lightf GET_Lightf(struct _glapi_table *disp) {
   4072    return (_glptr_Lightf) (GET_by_offset(disp, _gloffset_Lightf));
   4073 }
   4074 
   4075 static inline void SET_Lightf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4076    SET_by_offset(disp, _gloffset_Lightf, fn);
   4077 }
   4078 
   4079 typedef void (GLAPIENTRYP _glptr_Lightfv)(GLenum, GLenum, const GLfloat *);
   4080 #define CALL_Lightfv(disp, parameters) \
   4081     (* GET_Lightfv(disp)) parameters
   4082 static inline _glptr_Lightfv GET_Lightfv(struct _glapi_table *disp) {
   4083    return (_glptr_Lightfv) (GET_by_offset(disp, _gloffset_Lightfv));
   4084 }
   4085 
   4086 static inline void SET_Lightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4087    SET_by_offset(disp, _gloffset_Lightfv, fn);
   4088 }
   4089 
   4090 typedef void (GLAPIENTRYP _glptr_Lighti)(GLenum, GLenum, GLint);
   4091 #define CALL_Lighti(disp, parameters) \
   4092     (* GET_Lighti(disp)) parameters
   4093 static inline _glptr_Lighti GET_Lighti(struct _glapi_table *disp) {
   4094    return (_glptr_Lighti) (GET_by_offset(disp, _gloffset_Lighti));
   4095 }
   4096 
   4097 static inline void SET_Lighti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4098    SET_by_offset(disp, _gloffset_Lighti, fn);
   4099 }
   4100 
   4101 typedef void (GLAPIENTRYP _glptr_Lightiv)(GLenum, GLenum, const GLint *);
   4102 #define CALL_Lightiv(disp, parameters) \
   4103     (* GET_Lightiv(disp)) parameters
   4104 static inline _glptr_Lightiv GET_Lightiv(struct _glapi_table *disp) {
   4105    return (_glptr_Lightiv) (GET_by_offset(disp, _gloffset_Lightiv));
   4106 }
   4107 
   4108 static inline void SET_Lightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4109    SET_by_offset(disp, _gloffset_Lightiv, fn);
   4110 }
   4111 
   4112 typedef void (GLAPIENTRYP _glptr_LightModelf)(GLenum, GLfloat);
   4113 #define CALL_LightModelf(disp, parameters) \
   4114     (* GET_LightModelf(disp)) parameters
   4115 static inline _glptr_LightModelf GET_LightModelf(struct _glapi_table *disp) {
   4116    return (_glptr_LightModelf) (GET_by_offset(disp, _gloffset_LightModelf));
   4117 }
   4118 
   4119 static inline void SET_LightModelf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   4120    SET_by_offset(disp, _gloffset_LightModelf, fn);
   4121 }
   4122 
   4123 typedef void (GLAPIENTRYP _glptr_LightModelfv)(GLenum, const GLfloat *);
   4124 #define CALL_LightModelfv(disp, parameters) \
   4125     (* GET_LightModelfv(disp)) parameters
   4126 static inline _glptr_LightModelfv GET_LightModelfv(struct _glapi_table *disp) {
   4127    return (_glptr_LightModelfv) (GET_by_offset(disp, _gloffset_LightModelfv));
   4128 }
   4129 
   4130 static inline void SET_LightModelfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   4131    SET_by_offset(disp, _gloffset_LightModelfv, fn);
   4132 }
   4133 
   4134 typedef void (GLAPIENTRYP _glptr_LightModeli)(GLenum, GLint);
   4135 #define CALL_LightModeli(disp, parameters) \
   4136     (* GET_LightModeli(disp)) parameters
   4137 static inline _glptr_LightModeli GET_LightModeli(struct _glapi_table *disp) {
   4138    return (_glptr_LightModeli) (GET_by_offset(disp, _gloffset_LightModeli));
   4139 }
   4140 
   4141 static inline void SET_LightModeli(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   4142    SET_by_offset(disp, _gloffset_LightModeli, fn);
   4143 }
   4144 
   4145 typedef void (GLAPIENTRYP _glptr_LightModeliv)(GLenum, const GLint *);
   4146 #define CALL_LightModeliv(disp, parameters) \
   4147     (* GET_LightModeliv(disp)) parameters
   4148 static inline _glptr_LightModeliv GET_LightModeliv(struct _glapi_table *disp) {
   4149    return (_glptr_LightModeliv) (GET_by_offset(disp, _gloffset_LightModeliv));
   4150 }
   4151 
   4152 static inline void SET_LightModeliv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   4153    SET_by_offset(disp, _gloffset_LightModeliv, fn);
   4154 }
   4155 
   4156 typedef void (GLAPIENTRYP _glptr_LineStipple)(GLint, GLushort);
   4157 #define CALL_LineStipple(disp, parameters) \
   4158     (* GET_LineStipple(disp)) parameters
   4159 static inline _glptr_LineStipple GET_LineStipple(struct _glapi_table *disp) {
   4160    return (_glptr_LineStipple) (GET_by_offset(disp, _gloffset_LineStipple));
   4161 }
   4162 
   4163 static inline void SET_LineStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLushort)) {
   4164    SET_by_offset(disp, _gloffset_LineStipple, fn);
   4165 }
   4166 
   4167 typedef void (GLAPIENTRYP _glptr_LineWidth)(GLfloat);
   4168 #define CALL_LineWidth(disp, parameters) \
   4169     (* GET_LineWidth(disp)) parameters
   4170 static inline _glptr_LineWidth GET_LineWidth(struct _glapi_table *disp) {
   4171    return (_glptr_LineWidth) (GET_by_offset(disp, _gloffset_LineWidth));
   4172 }
   4173 
   4174 static inline void SET_LineWidth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4175    SET_by_offset(disp, _gloffset_LineWidth, fn);
   4176 }
   4177 
   4178 typedef void (GLAPIENTRYP _glptr_Materialf)(GLenum, GLenum, GLfloat);
   4179 #define CALL_Materialf(disp, parameters) \
   4180     (* GET_Materialf(disp)) parameters
   4181 static inline _glptr_Materialf GET_Materialf(struct _glapi_table *disp) {
   4182    return (_glptr_Materialf) (GET_by_offset(disp, _gloffset_Materialf));
   4183 }
   4184 
   4185 static inline void SET_Materialf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4186    SET_by_offset(disp, _gloffset_Materialf, fn);
   4187 }
   4188 
   4189 typedef void (GLAPIENTRYP _glptr_Materialfv)(GLenum, GLenum, const GLfloat *);
   4190 #define CALL_Materialfv(disp, parameters) \
   4191     (* GET_Materialfv(disp)) parameters
   4192 static inline _glptr_Materialfv GET_Materialfv(struct _glapi_table *disp) {
   4193    return (_glptr_Materialfv) (GET_by_offset(disp, _gloffset_Materialfv));
   4194 }
   4195 
   4196 static inline void SET_Materialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4197    SET_by_offset(disp, _gloffset_Materialfv, fn);
   4198 }
   4199 
   4200 typedef void (GLAPIENTRYP _glptr_Materiali)(GLenum, GLenum, GLint);
   4201 #define CALL_Materiali(disp, parameters) \
   4202     (* GET_Materiali(disp)) parameters
   4203 static inline _glptr_Materiali GET_Materiali(struct _glapi_table *disp) {
   4204    return (_glptr_Materiali) (GET_by_offset(disp, _gloffset_Materiali));
   4205 }
   4206 
   4207 static inline void SET_Materiali(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4208    SET_by_offset(disp, _gloffset_Materiali, fn);
   4209 }
   4210 
   4211 typedef void (GLAPIENTRYP _glptr_Materialiv)(GLenum, GLenum, const GLint *);
   4212 #define CALL_Materialiv(disp, parameters) \
   4213     (* GET_Materialiv(disp)) parameters
   4214 static inline _glptr_Materialiv GET_Materialiv(struct _glapi_table *disp) {
   4215    return (_glptr_Materialiv) (GET_by_offset(disp, _gloffset_Materialiv));
   4216 }
   4217 
   4218 static inline void SET_Materialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4219    SET_by_offset(disp, _gloffset_Materialiv, fn);
   4220 }
   4221 
   4222 typedef void (GLAPIENTRYP _glptr_PointSize)(GLfloat);
   4223 #define CALL_PointSize(disp, parameters) \
   4224     (* GET_PointSize(disp)) parameters
   4225 static inline _glptr_PointSize GET_PointSize(struct _glapi_table *disp) {
   4226    return (_glptr_PointSize) (GET_by_offset(disp, _gloffset_PointSize));
   4227 }
   4228 
   4229 static inline void SET_PointSize(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4230    SET_by_offset(disp, _gloffset_PointSize, fn);
   4231 }
   4232 
   4233 typedef void (GLAPIENTRYP _glptr_PolygonMode)(GLenum, GLenum);
   4234 #define CALL_PolygonMode(disp, parameters) \
   4235     (* GET_PolygonMode(disp)) parameters
   4236 static inline _glptr_PolygonMode GET_PolygonMode(struct _glapi_table *disp) {
   4237    return (_glptr_PolygonMode) (GET_by_offset(disp, _gloffset_PolygonMode));
   4238 }
   4239 
   4240 static inline void SET_PolygonMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   4241    SET_by_offset(disp, _gloffset_PolygonMode, fn);
   4242 }
   4243 
   4244 typedef void (GLAPIENTRYP _glptr_PolygonStipple)(const GLubyte *);
   4245 #define CALL_PolygonStipple(disp, parameters) \
   4246     (* GET_PolygonStipple(disp)) parameters
   4247 static inline _glptr_PolygonStipple GET_PolygonStipple(struct _glapi_table *disp) {
   4248    return (_glptr_PolygonStipple) (GET_by_offset(disp, _gloffset_PolygonStipple));
   4249 }
   4250 
   4251 static inline void SET_PolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   4252    SET_by_offset(disp, _gloffset_PolygonStipple, fn);
   4253 }
   4254 
   4255 typedef void (GLAPIENTRYP _glptr_Scissor)(GLint, GLint, GLsizei, GLsizei);
   4256 #define CALL_Scissor(disp, parameters) \
   4257     (* GET_Scissor(disp)) parameters
   4258 static inline _glptr_Scissor GET_Scissor(struct _glapi_table *disp) {
   4259    return (_glptr_Scissor) (GET_by_offset(disp, _gloffset_Scissor));
   4260 }
   4261 
   4262 static inline void SET_Scissor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
   4263    SET_by_offset(disp, _gloffset_Scissor, fn);
   4264 }
   4265 
   4266 typedef void (GLAPIENTRYP _glptr_ShadeModel)(GLenum);
   4267 #define CALL_ShadeModel(disp, parameters) \
   4268     (* GET_ShadeModel(disp)) parameters
   4269 static inline _glptr_ShadeModel GET_ShadeModel(struct _glapi_table *disp) {
   4270    return (_glptr_ShadeModel) (GET_by_offset(disp, _gloffset_ShadeModel));
   4271 }
   4272 
   4273 static inline void SET_ShadeModel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4274    SET_by_offset(disp, _gloffset_ShadeModel, fn);
   4275 }
   4276 
   4277 typedef void (GLAPIENTRYP _glptr_TexParameterf)(GLenum, GLenum, GLfloat);
   4278 #define CALL_TexParameterf(disp, parameters) \
   4279     (* GET_TexParameterf(disp)) parameters
   4280 static inline _glptr_TexParameterf GET_TexParameterf(struct _glapi_table *disp) {
   4281    return (_glptr_TexParameterf) (GET_by_offset(disp, _gloffset_TexParameterf));
   4282 }
   4283 
   4284 static inline void SET_TexParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4285    SET_by_offset(disp, _gloffset_TexParameterf, fn);
   4286 }
   4287 
   4288 typedef void (GLAPIENTRYP _glptr_TexParameterfv)(GLenum, GLenum, const GLfloat *);
   4289 #define CALL_TexParameterfv(disp, parameters) \
   4290     (* GET_TexParameterfv(disp)) parameters
   4291 static inline _glptr_TexParameterfv GET_TexParameterfv(struct _glapi_table *disp) {
   4292    return (_glptr_TexParameterfv) (GET_by_offset(disp, _gloffset_TexParameterfv));
   4293 }
   4294 
   4295 static inline void SET_TexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4296    SET_by_offset(disp, _gloffset_TexParameterfv, fn);
   4297 }
   4298 
   4299 typedef void (GLAPIENTRYP _glptr_TexParameteri)(GLenum, GLenum, GLint);
   4300 #define CALL_TexParameteri(disp, parameters) \
   4301     (* GET_TexParameteri(disp)) parameters
   4302 static inline _glptr_TexParameteri GET_TexParameteri(struct _glapi_table *disp) {
   4303    return (_glptr_TexParameteri) (GET_by_offset(disp, _gloffset_TexParameteri));
   4304 }
   4305 
   4306 static inline void SET_TexParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4307    SET_by_offset(disp, _gloffset_TexParameteri, fn);
   4308 }
   4309 
   4310 typedef void (GLAPIENTRYP _glptr_TexParameteriv)(GLenum, GLenum, const GLint *);
   4311 #define CALL_TexParameteriv(disp, parameters) \
   4312     (* GET_TexParameteriv(disp)) parameters
   4313 static inline _glptr_TexParameteriv GET_TexParameteriv(struct _glapi_table *disp) {
   4314    return (_glptr_TexParameteriv) (GET_by_offset(disp, _gloffset_TexParameteriv));
   4315 }
   4316 
   4317 static inline void SET_TexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4318    SET_by_offset(disp, _gloffset_TexParameteriv, fn);
   4319 }
   4320 
   4321 typedef void (GLAPIENTRYP _glptr_TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
   4322 #define CALL_TexImage1D(disp, parameters) \
   4323     (* GET_TexImage1D(disp)) parameters
   4324 static inline _glptr_TexImage1D GET_TexImage1D(struct _glapi_table *disp) {
   4325    return (_glptr_TexImage1D) (GET_by_offset(disp, _gloffset_TexImage1D));
   4326 }
   4327 
   4328 static inline void SET_TexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
   4329    SET_by_offset(disp, _gloffset_TexImage1D, fn);
   4330 }
   4331 
   4332 typedef void (GLAPIENTRYP _glptr_TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
   4333 #define CALL_TexImage2D(disp, parameters) \
   4334     (* GET_TexImage2D(disp)) parameters
   4335 static inline _glptr_TexImage2D GET_TexImage2D(struct _glapi_table *disp) {
   4336    return (_glptr_TexImage2D) (GET_by_offset(disp, _gloffset_TexImage2D));
   4337 }
   4338 
   4339 static inline void SET_TexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
   4340    SET_by_offset(disp, _gloffset_TexImage2D, fn);
   4341 }
   4342 
   4343 typedef void (GLAPIENTRYP _glptr_TexEnvf)(GLenum, GLenum, GLfloat);
   4344 #define CALL_TexEnvf(disp, parameters) \
   4345     (* GET_TexEnvf(disp)) parameters
   4346 static inline _glptr_TexEnvf GET_TexEnvf(struct _glapi_table *disp) {
   4347    return (_glptr_TexEnvf) (GET_by_offset(disp, _gloffset_TexEnvf));
   4348 }
   4349 
   4350 static inline void SET_TexEnvf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4351    SET_by_offset(disp, _gloffset_TexEnvf, fn);
   4352 }
   4353 
   4354 typedef void (GLAPIENTRYP _glptr_TexEnvfv)(GLenum, GLenum, const GLfloat *);
   4355 #define CALL_TexEnvfv(disp, parameters) \
   4356     (* GET_TexEnvfv(disp)) parameters
   4357 static inline _glptr_TexEnvfv GET_TexEnvfv(struct _glapi_table *disp) {
   4358    return (_glptr_TexEnvfv) (GET_by_offset(disp, _gloffset_TexEnvfv));
   4359 }
   4360 
   4361 static inline void SET_TexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4362    SET_by_offset(disp, _gloffset_TexEnvfv, fn);
   4363 }
   4364 
   4365 typedef void (GLAPIENTRYP _glptr_TexEnvi)(GLenum, GLenum, GLint);
   4366 #define CALL_TexEnvi(disp, parameters) \
   4367     (* GET_TexEnvi(disp)) parameters
   4368 static inline _glptr_TexEnvi GET_TexEnvi(struct _glapi_table *disp) {
   4369    return (_glptr_TexEnvi) (GET_by_offset(disp, _gloffset_TexEnvi));
   4370 }
   4371 
   4372 static inline void SET_TexEnvi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4373    SET_by_offset(disp, _gloffset_TexEnvi, fn);
   4374 }
   4375 
   4376 typedef void (GLAPIENTRYP _glptr_TexEnviv)(GLenum, GLenum, const GLint *);
   4377 #define CALL_TexEnviv(disp, parameters) \
   4378     (* GET_TexEnviv(disp)) parameters
   4379 static inline _glptr_TexEnviv GET_TexEnviv(struct _glapi_table *disp) {
   4380    return (_glptr_TexEnviv) (GET_by_offset(disp, _gloffset_TexEnviv));
   4381 }
   4382 
   4383 static inline void SET_TexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4384    SET_by_offset(disp, _gloffset_TexEnviv, fn);
   4385 }
   4386 
   4387 typedef void (GLAPIENTRYP _glptr_TexGend)(GLenum, GLenum, GLdouble);
   4388 #define CALL_TexGend(disp, parameters) \
   4389     (* GET_TexGend(disp)) parameters
   4390 static inline _glptr_TexGend GET_TexGend(struct _glapi_table *disp) {
   4391    return (_glptr_TexGend) (GET_by_offset(disp, _gloffset_TexGend));
   4392 }
   4393 
   4394 static inline void SET_TexGend(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble)) {
   4395    SET_by_offset(disp, _gloffset_TexGend, fn);
   4396 }
   4397 
   4398 typedef void (GLAPIENTRYP _glptr_TexGendv)(GLenum, GLenum, const GLdouble *);
   4399 #define CALL_TexGendv(disp, parameters) \
   4400     (* GET_TexGendv(disp)) parameters
   4401 static inline _glptr_TexGendv GET_TexGendv(struct _glapi_table *disp) {
   4402    return (_glptr_TexGendv) (GET_by_offset(disp, _gloffset_TexGendv));
   4403 }
   4404 
   4405 static inline void SET_TexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLdouble *)) {
   4406    SET_by_offset(disp, _gloffset_TexGendv, fn);
   4407 }
   4408 
   4409 typedef void (GLAPIENTRYP _glptr_TexGenf)(GLenum, GLenum, GLfloat);
   4410 #define CALL_TexGenf(disp, parameters) \
   4411     (* GET_TexGenf(disp)) parameters
   4412 static inline _glptr_TexGenf GET_TexGenf(struct _glapi_table *disp) {
   4413    return (_glptr_TexGenf) (GET_by_offset(disp, _gloffset_TexGenf));
   4414 }
   4415 
   4416 static inline void SET_TexGenf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4417    SET_by_offset(disp, _gloffset_TexGenf, fn);
   4418 }
   4419 
   4420 typedef void (GLAPIENTRYP _glptr_TexGenfv)(GLenum, GLenum, const GLfloat *);
   4421 #define CALL_TexGenfv(disp, parameters) \
   4422     (* GET_TexGenfv(disp)) parameters
   4423 static inline _glptr_TexGenfv GET_TexGenfv(struct _glapi_table *disp) {
   4424    return (_glptr_TexGenfv) (GET_by_offset(disp, _gloffset_TexGenfv));
   4425 }
   4426 
   4427 static inline void SET_TexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4428    SET_by_offset(disp, _gloffset_TexGenfv, fn);
   4429 }
   4430 
   4431 typedef void (GLAPIENTRYP _glptr_TexGeni)(GLenum, GLenum, GLint);
   4432 #define CALL_TexGeni(disp, parameters) \
   4433     (* GET_TexGeni(disp)) parameters
   4434 static inline _glptr_TexGeni GET_TexGeni(struct _glapi_table *disp) {
   4435    return (_glptr_TexGeni) (GET_by_offset(disp, _gloffset_TexGeni));
   4436 }
   4437 
   4438 static inline void SET_TexGeni(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4439    SET_by_offset(disp, _gloffset_TexGeni, fn);
   4440 }
   4441 
   4442 typedef void (GLAPIENTRYP _glptr_TexGeniv)(GLenum, GLenum, const GLint *);
   4443 #define CALL_TexGeniv(disp, parameters) \
   4444     (* GET_TexGeniv(disp)) parameters
   4445 static inline _glptr_TexGeniv GET_TexGeniv(struct _glapi_table *disp) {
   4446    return (_glptr_TexGeniv) (GET_by_offset(disp, _gloffset_TexGeniv));
   4447 }
   4448 
   4449 static inline void SET_TexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4450    SET_by_offset(disp, _gloffset_TexGeniv, fn);
   4451 }
   4452 
   4453 typedef void (GLAPIENTRYP _glptr_FeedbackBuffer)(GLsizei, GLenum, GLfloat *);
   4454 #define CALL_FeedbackBuffer(disp, parameters) \
   4455     (* GET_FeedbackBuffer(disp)) parameters
   4456 static inline _glptr_FeedbackBuffer GET_FeedbackBuffer(struct _glapi_table *disp) {
   4457    return (_glptr_FeedbackBuffer) (GET_by_offset(disp, _gloffset_FeedbackBuffer));
   4458 }
   4459 
   4460 static inline void SET_FeedbackBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, GLfloat *)) {
   4461    SET_by_offset(disp, _gloffset_FeedbackBuffer, fn);
   4462 }
   4463 
   4464 typedef void (GLAPIENTRYP _glptr_SelectBuffer)(GLsizei, GLuint *);
   4465 #define CALL_SelectBuffer(disp, parameters) \
   4466     (* GET_SelectBuffer(disp)) parameters
   4467 static inline _glptr_SelectBuffer GET_SelectBuffer(struct _glapi_table *disp) {
   4468    return (_glptr_SelectBuffer) (GET_by_offset(disp, _gloffset_SelectBuffer));
   4469 }
   4470 
   4471 static inline void SET_SelectBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   4472    SET_by_offset(disp, _gloffset_SelectBuffer, fn);
   4473 }
   4474 
   4475 typedef GLint (GLAPIENTRYP _glptr_RenderMode)(GLenum);
   4476 #define CALL_RenderMode(disp, parameters) \
   4477     (* GET_RenderMode(disp)) parameters
   4478 static inline _glptr_RenderMode GET_RenderMode(struct _glapi_table *disp) {
   4479    return (_glptr_RenderMode) (GET_by_offset(disp, _gloffset_RenderMode));
   4480 }
   4481 
   4482 static inline void SET_RenderMode(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLenum)) {
   4483    SET_by_offset(disp, _gloffset_RenderMode, fn);
   4484 }
   4485 
   4486 typedef void (GLAPIENTRYP _glptr_InitNames)(void);
   4487 #define CALL_InitNames(disp, parameters) \
   4488     (* GET_InitNames(disp)) parameters
   4489 static inline _glptr_InitNames GET_InitNames(struct _glapi_table *disp) {
   4490    return (_glptr_InitNames) (GET_by_offset(disp, _gloffset_InitNames));
   4491 }
   4492 
   4493 static inline void SET_InitNames(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4494    SET_by_offset(disp, _gloffset_InitNames, fn);
   4495 }
   4496 
   4497 typedef void (GLAPIENTRYP _glptr_LoadName)(GLuint);
   4498 #define CALL_LoadName(disp, parameters) \
   4499     (* GET_LoadName(disp)) parameters
   4500 static inline _glptr_LoadName GET_LoadName(struct _glapi_table *disp) {
   4501    return (_glptr_LoadName) (GET_by_offset(disp, _gloffset_LoadName));
   4502 }
   4503 
   4504 static inline void SET_LoadName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4505    SET_by_offset(disp, _gloffset_LoadName, fn);
   4506 }
   4507 
   4508 typedef void (GLAPIENTRYP _glptr_PassThrough)(GLfloat);
   4509 #define CALL_PassThrough(disp, parameters) \
   4510     (* GET_PassThrough(disp)) parameters
   4511 static inline _glptr_PassThrough GET_PassThrough(struct _glapi_table *disp) {
   4512    return (_glptr_PassThrough) (GET_by_offset(disp, _gloffset_PassThrough));
   4513 }
   4514 
   4515 static inline void SET_PassThrough(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4516    SET_by_offset(disp, _gloffset_PassThrough, fn);
   4517 }
   4518 
   4519 typedef void (GLAPIENTRYP _glptr_PopName)(void);
   4520 #define CALL_PopName(disp, parameters) \
   4521     (* GET_PopName(disp)) parameters
   4522 static inline _glptr_PopName GET_PopName(struct _glapi_table *disp) {
   4523    return (_glptr_PopName) (GET_by_offset(disp, _gloffset_PopName));
   4524 }
   4525 
   4526 static inline void SET_PopName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4527    SET_by_offset(disp, _gloffset_PopName, fn);
   4528 }
   4529 
   4530 typedef void (GLAPIENTRYP _glptr_PushName)(GLuint);
   4531 #define CALL_PushName(disp, parameters) \
   4532     (* GET_PushName(disp)) parameters
   4533 static inline _glptr_PushName GET_PushName(struct _glapi_table *disp) {
   4534    return (_glptr_PushName) (GET_by_offset(disp, _gloffset_PushName));
   4535 }
   4536 
   4537 static inline void SET_PushName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4538    SET_by_offset(disp, _gloffset_PushName, fn);
   4539 }
   4540 
   4541 typedef void (GLAPIENTRYP _glptr_DrawBuffer)(GLenum);
   4542 #define CALL_DrawBuffer(disp, parameters) \
   4543     (* GET_DrawBuffer(disp)) parameters
   4544 static inline _glptr_DrawBuffer GET_DrawBuffer(struct _glapi_table *disp) {
   4545    return (_glptr_DrawBuffer) (GET_by_offset(disp, _gloffset_DrawBuffer));
   4546 }
   4547 
   4548 static inline void SET_DrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4549    SET_by_offset(disp, _gloffset_DrawBuffer, fn);
   4550 }
   4551 
   4552 typedef void (GLAPIENTRYP _glptr_Clear)(GLbitfield);
   4553 #define CALL_Clear(disp, parameters) \
   4554     (* GET_Clear(disp)) parameters
   4555 static inline _glptr_Clear GET_Clear(struct _glapi_table *disp) {
   4556    return (_glptr_Clear) (GET_by_offset(disp, _gloffset_Clear));
   4557 }
   4558 
   4559 static inline void SET_Clear(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   4560    SET_by_offset(disp, _gloffset_Clear, fn);
   4561 }
   4562 
   4563 typedef void (GLAPIENTRYP _glptr_ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat);
   4564 #define CALL_ClearAccum(disp, parameters) \
   4565     (* GET_ClearAccum(disp)) parameters
   4566 static inline _glptr_ClearAccum GET_ClearAccum(struct _glapi_table *disp) {
   4567    return (_glptr_ClearAccum) (GET_by_offset(disp, _gloffset_ClearAccum));
   4568 }
   4569 
   4570 static inline void SET_ClearAccum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   4571    SET_by_offset(disp, _gloffset_ClearAccum, fn);
   4572 }
   4573 
   4574 typedef void (GLAPIENTRYP _glptr_ClearIndex)(GLfloat);
   4575 #define CALL_ClearIndex(disp, parameters) \
   4576     (* GET_ClearIndex(disp)) parameters
   4577 static inline _glptr_ClearIndex GET_ClearIndex(struct _glapi_table *disp) {
   4578    return (_glptr_ClearIndex) (GET_by_offset(disp, _gloffset_ClearIndex));
   4579 }
   4580 
   4581 static inline void SET_ClearIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4582    SET_by_offset(disp, _gloffset_ClearIndex, fn);
   4583 }
   4584 
   4585 typedef void (GLAPIENTRYP _glptr_ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
   4586 #define CALL_ClearColor(disp, parameters) \
   4587     (* GET_ClearColor(disp)) parameters
   4588 static inline _glptr_ClearColor GET_ClearColor(struct _glapi_table *disp) {
   4589    return (_glptr_ClearColor) (GET_by_offset(disp, _gloffset_ClearColor));
   4590 }
   4591 
   4592 static inline void SET_ClearColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
   4593    SET_by_offset(disp, _gloffset_ClearColor, fn);
   4594 }
   4595 
   4596 typedef void (GLAPIENTRYP _glptr_ClearStencil)(GLint);
   4597 #define CALL_ClearStencil(disp, parameters) \
   4598     (* GET_ClearStencil(disp)) parameters
   4599 static inline _glptr_ClearStencil GET_ClearStencil(struct _glapi_table *disp) {
   4600    return (_glptr_ClearStencil) (GET_by_offset(disp, _gloffset_ClearStencil));
   4601 }
   4602 
   4603 static inline void SET_ClearStencil(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   4604    SET_by_offset(disp, _gloffset_ClearStencil, fn);
   4605 }
   4606 
   4607 typedef void (GLAPIENTRYP _glptr_ClearDepth)(GLclampd);
   4608 #define CALL_ClearDepth(disp, parameters) \
   4609     (* GET_ClearDepth(disp)) parameters
   4610 static inline _glptr_ClearDepth GET_ClearDepth(struct _glapi_table *disp) {
   4611    return (_glptr_ClearDepth) (GET_by_offset(disp, _gloffset_ClearDepth));
   4612 }
   4613 
   4614 static inline void SET_ClearDepth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd)) {
   4615    SET_by_offset(disp, _gloffset_ClearDepth, fn);
   4616 }
   4617 
   4618 typedef void (GLAPIENTRYP _glptr_StencilMask)(GLuint);
   4619 #define CALL_StencilMask(disp, parameters) \
   4620     (* GET_StencilMask(disp)) parameters
   4621 static inline _glptr_StencilMask GET_StencilMask(struct _glapi_table *disp) {
   4622    return (_glptr_StencilMask) (GET_by_offset(disp, _gloffset_StencilMask));
   4623 }
   4624 
   4625 static inline void SET_StencilMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4626    SET_by_offset(disp, _gloffset_StencilMask, fn);
   4627 }
   4628 
   4629 typedef void (GLAPIENTRYP _glptr_ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean);
   4630 #define CALL_ColorMask(disp, parameters) \
   4631     (* GET_ColorMask(disp)) parameters
   4632 static inline _glptr_ColorMask GET_ColorMask(struct _glapi_table *disp) {
   4633    return (_glptr_ColorMask) (GET_by_offset(disp, _gloffset_ColorMask));
   4634 }
   4635 
   4636 static inline void SET_ColorMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean, GLboolean, GLboolean, GLboolean)) {
   4637    SET_by_offset(disp, _gloffset_ColorMask, fn);
   4638 }
   4639 
   4640 typedef void (GLAPIENTRYP _glptr_DepthMask)(GLboolean);
   4641 #define CALL_DepthMask(disp, parameters) \
   4642     (* GET_DepthMask(disp)) parameters
   4643 static inline _glptr_DepthMask GET_DepthMask(struct _glapi_table *disp) {
   4644    return (_glptr_DepthMask) (GET_by_offset(disp, _gloffset_DepthMask));
   4645 }
   4646 
   4647 static inline void SET_DepthMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
   4648    SET_by_offset(disp, _gloffset_DepthMask, fn);
   4649 }
   4650 
   4651 typedef void (GLAPIENTRYP _glptr_IndexMask)(GLuint);
   4652 #define CALL_IndexMask(disp, parameters) \
   4653     (* GET_IndexMask(disp)) parameters
   4654 static inline _glptr_IndexMask GET_IndexMask(struct _glapi_table *disp) {
   4655    return (_glptr_IndexMask) (GET_by_offset(disp, _gloffset_IndexMask));
   4656 }
   4657 
   4658 static inline void SET_IndexMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4659    SET_by_offset(disp, _gloffset_IndexMask, fn);
   4660 }
   4661 
   4662 typedef void (GLAPIENTRYP _glptr_Accum)(GLenum, GLfloat);
   4663 #define CALL_Accum(disp, parameters) \
   4664     (* GET_Accum(disp)) parameters
   4665 static inline _glptr_Accum GET_Accum(struct _glapi_table *disp) {
   4666    return (_glptr_Accum) (GET_by_offset(disp, _gloffset_Accum));
   4667 }
   4668 
   4669 static inline void SET_Accum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   4670    SET_by_offset(disp, _gloffset_Accum, fn);
   4671 }
   4672 
   4673 typedef void (GLAPIENTRYP _glptr_Disable)(GLenum);
   4674 #define CALL_Disable(disp, parameters) \
   4675     (* GET_Disable(disp)) parameters
   4676 static inline _glptr_Disable GET_Disable(struct _glapi_table *disp) {
   4677    return (_glptr_Disable) (GET_by_offset(disp, _gloffset_Disable));
   4678 }
   4679 
   4680 static inline void SET_Disable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4681    SET_by_offset(disp, _gloffset_Disable, fn);
   4682 }
   4683 
   4684 typedef void (GLAPIENTRYP _glptr_Enable)(GLenum);
   4685 #define CALL_Enable(disp, parameters) \
   4686     (* GET_Enable(disp)) parameters
   4687 static inline _glptr_Enable GET_Enable(struct _glapi_table *disp) {
   4688    return (_glptr_Enable) (GET_by_offset(disp, _gloffset_Enable));
   4689 }
   4690 
   4691 static inline void SET_Enable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4692    SET_by_offset(disp, _gloffset_Enable, fn);
   4693 }
   4694 
   4695 typedef void (GLAPIENTRYP _glptr_Finish)(void);
   4696 #define CALL_Finish(disp, parameters) \
   4697     (* GET_Finish(disp)) parameters
   4698 static inline _glptr_Finish GET_Finish(struct _glapi_table *disp) {
   4699    return (_glptr_Finish) (GET_by_offset(disp, _gloffset_Finish));
   4700 }
   4701 
   4702 static inline void SET_Finish(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4703    SET_by_offset(disp, _gloffset_Finish, fn);
   4704 }
   4705 
   4706 typedef void (GLAPIENTRYP _glptr_Flush)(void);
   4707 #define CALL_Flush(disp, parameters) \
   4708     (* GET_Flush(disp)) parameters
   4709 static inline _glptr_Flush GET_Flush(struct _glapi_table *disp) {
   4710    return (_glptr_Flush) (GET_by_offset(disp, _gloffset_Flush));
   4711 }
   4712 
   4713 static inline void SET_Flush(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4714    SET_by_offset(disp, _gloffset_Flush, fn);
   4715 }
   4716 
   4717 typedef void (GLAPIENTRYP _glptr_PopAttrib)(void);
   4718 #define CALL_PopAttrib(disp, parameters) \
   4719     (* GET_PopAttrib(disp)) parameters
   4720 static inline _glptr_PopAttrib GET_PopAttrib(struct _glapi_table *disp) {
   4721    return (_glptr_PopAttrib) (GET_by_offset(disp, _gloffset_PopAttrib));
   4722 }
   4723 
   4724 static inline void SET_PopAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4725    SET_by_offset(disp, _gloffset_PopAttrib, fn);
   4726 }
   4727 
   4728 typedef void (GLAPIENTRYP _glptr_PushAttrib)(GLbitfield);
   4729 #define CALL_PushAttrib(disp, parameters) \
   4730     (* GET_PushAttrib(disp)) parameters
   4731 static inline _glptr_PushAttrib GET_PushAttrib(struct _glapi_table *disp) {
   4732    return (_glptr_PushAttrib) (GET_by_offset(disp, _gloffset_PushAttrib));
   4733 }
   4734 
   4735 static inline void SET_PushAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   4736    SET_by_offset(disp, _gloffset_PushAttrib, fn);
   4737 }
   4738 
   4739 typedef void (GLAPIENTRYP _glptr_Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
   4740 #define CALL_Map1d(disp, parameters) \
   4741     (* GET_Map1d(disp)) parameters
   4742 static inline _glptr_Map1d GET_Map1d(struct _glapi_table *disp) {
   4743    return (_glptr_Map1d) (GET_by_offset(disp, _gloffset_Map1d));
   4744 }
   4745 
   4746 static inline void SET_Map1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
   4747    SET_by_offset(disp, _gloffset_Map1d, fn);
   4748 }
   4749 
   4750 typedef void (GLAPIENTRYP _glptr_Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
   4751 #define CALL_Map1f(disp, parameters) \
   4752     (* GET_Map1f(disp)) parameters
   4753 static inline _glptr_Map1f GET_Map1f(struct _glapi_table *disp) {
   4754    return (_glptr_Map1f) (GET_by_offset(disp, _gloffset_Map1f));
   4755 }
   4756 
   4757 static inline void SET_Map1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
   4758    SET_by_offset(disp, _gloffset_Map1f, fn);
   4759 }
   4760 
   4761 typedef void (GLAPIENTRYP _glptr_Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
   4762 #define CALL_Map2d(disp, parameters) \
   4763     (* GET_Map2d(disp)) parameters
   4764 static inline _glptr_Map2d GET_Map2d(struct _glapi_table *disp) {
   4765    return (_glptr_Map2d) (GET_by_offset(disp, _gloffset_Map2d));
   4766 }
   4767 
   4768 static inline void SET_Map2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
   4769    SET_by_offset(disp, _gloffset_Map2d, fn);
   4770 }
   4771 
   4772 typedef void (GLAPIENTRYP _glptr_Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
   4773 #define CALL_Map2f(disp, parameters) \
   4774     (* GET_Map2f(disp)) parameters
   4775 static inline _glptr_Map2f GET_Map2f(struct _glapi_table *disp) {
   4776    return (_glptr_Map2f) (GET_by_offset(disp, _gloffset_Map2f));
   4777 }
   4778 
   4779 static inline void SET_Map2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
   4780    SET_by_offset(disp, _gloffset_Map2f, fn);
   4781 }
   4782 
   4783 typedef void (GLAPIENTRYP _glptr_MapGrid1d)(GLint, GLdouble, GLdouble);
   4784 #define CALL_MapGrid1d(disp, parameters) \
   4785     (* GET_MapGrid1d(disp)) parameters
   4786 static inline _glptr_MapGrid1d GET_MapGrid1d(struct _glapi_table *disp) {
   4787    return (_glptr_MapGrid1d) (GET_by_offset(disp, _gloffset_MapGrid1d));
   4788 }
   4789 
   4790 static inline void SET_MapGrid1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) {
   4791    SET_by_offset(disp, _gloffset_MapGrid1d, fn);
   4792 }
   4793 
   4794 typedef void (GLAPIENTRYP _glptr_MapGrid1f)(GLint, GLfloat, GLfloat);
   4795 #define CALL_MapGrid1f(disp, parameters) \
   4796     (* GET_MapGrid1f(disp)) parameters
   4797 static inline _glptr_MapGrid1f GET_MapGrid1f(struct _glapi_table *disp) {
   4798    return (_glptr_MapGrid1f) (GET_by_offset(disp, _gloffset_MapGrid1f));
   4799 }
   4800 
   4801 static inline void SET_MapGrid1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
   4802    SET_by_offset(disp, _gloffset_MapGrid1f, fn);
   4803 }
   4804 
   4805 typedef void (GLAPIENTRYP _glptr_MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
   4806 #define CALL_MapGrid2d(disp, parameters) \
   4807     (* GET_MapGrid2d(disp)) parameters
   4808 static inline _glptr_MapGrid2d GET_MapGrid2d(struct _glapi_table *disp) {
   4809    return (_glptr_MapGrid2d) (GET_by_offset(disp, _gloffset_MapGrid2d));
   4810 }
   4811 
   4812 static inline void SET_MapGrid2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble)) {
   4813    SET_by_offset(disp, _gloffset_MapGrid2d, fn);
   4814 }
   4815 
   4816 typedef void (GLAPIENTRYP _glptr_MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
   4817 #define CALL_MapGrid2f(disp, parameters) \
   4818     (* GET_MapGrid2f(disp)) parameters
   4819 static inline _glptr_MapGrid2f GET_MapGrid2f(struct _glapi_table *disp) {
   4820    return (_glptr_MapGrid2f) (GET_by_offset(disp, _gloffset_MapGrid2f));
   4821 }
   4822 
   4823 static inline void SET_MapGrid2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat)) {
   4824    SET_by_offset(disp, _gloffset_MapGrid2f, fn);
   4825 }
   4826 
   4827 typedef void (GLAPIENTRYP _glptr_EvalCoord1d)(GLdouble);
   4828 #define CALL_EvalCoord1d(disp, parameters) \
   4829     (* GET_EvalCoord1d(disp)) parameters
   4830 static inline _glptr_EvalCoord1d GET_EvalCoord1d(struct _glapi_table *disp) {
   4831    return (_glptr_EvalCoord1d) (GET_by_offset(disp, _gloffset_EvalCoord1d));
   4832 }
   4833 
   4834 static inline void SET_EvalCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   4835    SET_by_offset(disp, _gloffset_EvalCoord1d, fn);
   4836 }
   4837 
   4838 typedef void (GLAPIENTRYP _glptr_EvalCoord1dv)(const GLdouble *);
   4839 #define CALL_EvalCoord1dv(disp, parameters) \
   4840     (* GET_EvalCoord1dv(disp)) parameters
   4841 static inline _glptr_EvalCoord1dv GET_EvalCoord1dv(struct _glapi_table *disp) {
   4842    return (_glptr_EvalCoord1dv) (GET_by_offset(disp, _gloffset_EvalCoord1dv));
   4843 }
   4844 
   4845 static inline void SET_EvalCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   4846    SET_by_offset(disp, _gloffset_EvalCoord1dv, fn);
   4847 }
   4848 
   4849 typedef void (GLAPIENTRYP _glptr_EvalCoord1f)(GLfloat);
   4850 #define CALL_EvalCoord1f(disp, parameters) \
   4851     (* GET_EvalCoord1f(disp)) parameters
   4852 static inline _glptr_EvalCoord1f GET_EvalCoord1f(struct _glapi_table *disp) {
   4853    return (_glptr_EvalCoord1f) (GET_by_offset(disp, _gloffset_EvalCoord1f));
   4854 }
   4855 
   4856 static inline void SET_EvalCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4857    SET_by_offset(disp, _gloffset_EvalCoord1f, fn);
   4858 }
   4859 
   4860 typedef void (GLAPIENTRYP _glptr_EvalCoord1fv)(const GLfloat *);
   4861 #define CALL_EvalCoord1fv(disp, parameters) \
   4862     (* GET_EvalCoord1fv(disp)) parameters
   4863 static inline _glptr_EvalCoord1fv GET_EvalCoord1fv(struct _glapi_table *disp) {
   4864    return (_glptr_EvalCoord1fv) (GET_by_offset(disp, _gloffset_EvalCoord1fv));
   4865 }
   4866 
   4867 static inline void SET_EvalCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   4868    SET_by_offset(disp, _gloffset_EvalCoord1fv, fn);
   4869 }
   4870 
   4871 typedef void (GLAPIENTRYP _glptr_EvalCoord2d)(GLdouble, GLdouble);
   4872 #define CALL_EvalCoord2d(disp, parameters) \
   4873     (* GET_EvalCoord2d(disp)) parameters
   4874 static inline _glptr_EvalCoord2d GET_EvalCoord2d(struct _glapi_table *disp) {
   4875    return (_glptr_EvalCoord2d) (GET_by_offset(disp, _gloffset_EvalCoord2d));
   4876 }
   4877 
   4878 static inline void SET_EvalCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   4879    SET_by_offset(disp, _gloffset_EvalCoord2d, fn);
   4880 }
   4881 
   4882 typedef void (GLAPIENTRYP _glptr_EvalCoord2dv)(const GLdouble *);
   4883 #define CALL_EvalCoord2dv(disp, parameters) \
   4884     (* GET_EvalCoord2dv(disp)) parameters
   4885 static inline _glptr_EvalCoord2dv GET_EvalCoord2dv(struct _glapi_table *disp) {
   4886    return (_glptr_EvalCoord2dv) (GET_by_offset(disp, _gloffset_EvalCoord2dv));
   4887 }
   4888 
   4889 static inline void SET_EvalCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   4890    SET_by_offset(disp, _gloffset_EvalCoord2dv, fn);
   4891 }
   4892 
   4893 typedef void (GLAPIENTRYP _glptr_EvalCoord2f)(GLfloat, GLfloat);
   4894 #define CALL_EvalCoord2f(disp, parameters) \
   4895     (* GET_EvalCoord2f(disp)) parameters
   4896 static inline _glptr_EvalCoord2f GET_EvalCoord2f(struct _glapi_table *disp) {
   4897    return (_glptr_EvalCoord2f) (GET_by_offset(disp, _gloffset_EvalCoord2f));
   4898 }
   4899 
   4900 static inline void SET_EvalCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   4901    SET_by_offset(disp, _gloffset_EvalCoord2f, fn);
   4902 }
   4903 
   4904 typedef void (GLAPIENTRYP _glptr_EvalCoord2fv)(const GLfloat *);
   4905 #define CALL_EvalCoord2fv(disp, parameters) \
   4906     (* GET_EvalCoord2fv(disp)) parameters
   4907 static inline _glptr_EvalCoord2fv GET_EvalCoord2fv(struct _glapi_table *disp) {
   4908    return (_glptr_EvalCoord2fv) (GET_by_offset(disp, _gloffset_EvalCoord2fv));
   4909 }
   4910 
   4911 static inline void SET_EvalCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   4912    SET_by_offset(disp, _gloffset_EvalCoord2fv, fn);
   4913 }
   4914 
   4915 typedef void (GLAPIENTRYP _glptr_EvalMesh1)(GLenum, GLint, GLint);
   4916 #define CALL_EvalMesh1(disp, parameters) \
   4917     (* GET_EvalMesh1(disp)) parameters
   4918 static inline _glptr_EvalMesh1 GET_EvalMesh1(struct _glapi_table *disp) {
   4919    return (_glptr_EvalMesh1) (GET_by_offset(disp, _gloffset_EvalMesh1));
   4920 }
   4921 
   4922 static inline void SET_EvalMesh1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
   4923    SET_by_offset(disp, _gloffset_EvalMesh1, fn);
   4924 }
   4925 
   4926 typedef void (GLAPIENTRYP _glptr_EvalPoint1)(GLint);
   4927 #define CALL_EvalPoint1(disp, parameters) \
   4928     (* GET_EvalPoint1(disp)) parameters
   4929 static inline _glptr_EvalPoint1 GET_EvalPoint1(struct _glapi_table *disp) {
   4930    return (_glptr_EvalPoint1) (GET_by_offset(disp, _gloffset_EvalPoint1));
   4931 }
   4932 
   4933 static inline void SET_EvalPoint1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   4934    SET_by_offset(disp, _gloffset_EvalPoint1, fn);
   4935 }
   4936 
   4937 typedef void (GLAPIENTRYP _glptr_EvalMesh2)(GLenum, GLint, GLint, GLint, GLint);
   4938 #define CALL_EvalMesh2(disp, parameters) \
   4939     (* GET_EvalMesh2(disp)) parameters
   4940 static inline _glptr_EvalMesh2 GET_EvalMesh2(struct _glapi_table *disp) {
   4941    return (_glptr_EvalMesh2) (GET_by_offset(disp, _gloffset_EvalMesh2));
   4942 }
   4943 
   4944 static inline void SET_EvalMesh2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
   4945    SET_by_offset(disp, _gloffset_EvalMesh2, fn);
   4946 }
   4947 
   4948 typedef void (GLAPIENTRYP _glptr_EvalPoint2)(GLint, GLint);
   4949 #define CALL_EvalPoint2(disp, parameters) \
   4950     (* GET_EvalPoint2(disp)) parameters
   4951 static inline _glptr_EvalPoint2 GET_EvalPoint2(struct _glapi_table *disp) {
   4952    return (_glptr_EvalPoint2) (GET_by_offset(disp, _gloffset_EvalPoint2));
   4953 }
   4954 
   4955 static inline void SET_EvalPoint2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   4956    SET_by_offset(disp, _gloffset_EvalPoint2, fn);
   4957 }
   4958 
   4959 typedef void (GLAPIENTRYP _glptr_AlphaFunc)(GLenum, GLclampf);
   4960 #define CALL_AlphaFunc(disp, parameters) \
   4961     (* GET_AlphaFunc(disp)) parameters
   4962 static inline _glptr_AlphaFunc GET_AlphaFunc(struct _glapi_table *disp) {
   4963    return (_glptr_AlphaFunc) (GET_by_offset(disp, _gloffset_AlphaFunc));
   4964 }
   4965 
   4966 static inline void SET_AlphaFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampf)) {
   4967    SET_by_offset(disp, _gloffset_AlphaFunc, fn);
   4968 }
   4969 
   4970 typedef void (GLAPIENTRYP _glptr_BlendFunc)(GLenum, GLenum);
   4971 #define CALL_BlendFunc(disp, parameters) \
   4972     (* GET_BlendFunc(disp)) parameters
   4973 static inline _glptr_BlendFunc GET_BlendFunc(struct _glapi_table *disp) {
   4974    return (_glptr_BlendFunc) (GET_by_offset(disp, _gloffset_BlendFunc));
   4975 }
   4976 
   4977 static inline void SET_BlendFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   4978    SET_by_offset(disp, _gloffset_BlendFunc, fn);
   4979 }
   4980 
   4981 typedef void (GLAPIENTRYP _glptr_LogicOp)(GLenum);
   4982 #define CALL_LogicOp(disp, parameters) \
   4983     (* GET_LogicOp(disp)) parameters
   4984 static inline _glptr_LogicOp GET_LogicOp(struct _glapi_table *disp) {
   4985    return (_glptr_LogicOp) (GET_by_offset(disp, _gloffset_LogicOp));
   4986 }
   4987 
   4988 static inline void SET_LogicOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4989    SET_by_offset(disp, _gloffset_LogicOp, fn);
   4990 }
   4991 
   4992 typedef void (GLAPIENTRYP _glptr_StencilFunc)(GLenum, GLint, GLuint);
   4993 #define CALL_StencilFunc(disp, parameters) \
   4994     (* GET_StencilFunc(disp)) parameters
   4995 static inline _glptr_StencilFunc GET_StencilFunc(struct _glapi_table *disp) {
   4996    return (_glptr_StencilFunc) (GET_by_offset(disp, _gloffset_StencilFunc));
   4997 }
   4998 
   4999 static inline void SET_StencilFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint)) {
   5000    SET_by_offset(disp, _gloffset_StencilFunc, fn);
   5001 }
   5002 
   5003 typedef void (GLAPIENTRYP _glptr_StencilOp)(GLenum, GLenum, GLenum);
   5004 #define CALL_StencilOp(disp, parameters) \
   5005     (* GET_StencilOp(disp)) parameters
   5006 static inline _glptr_StencilOp GET_StencilOp(struct _glapi_table *disp) {
   5007    return (_glptr_StencilOp) (GET_by_offset(disp, _gloffset_StencilOp));
   5008 }
   5009 
   5010 static inline void SET_StencilOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum)) {
   5011    SET_by_offset(disp, _gloffset_StencilOp, fn);
   5012 }
   5013 
   5014 typedef void (GLAPIENTRYP _glptr_DepthFunc)(GLenum);
   5015 #define CALL_DepthFunc(disp, parameters) \
   5016     (* GET_DepthFunc(disp)) parameters
   5017 static inline _glptr_DepthFunc GET_DepthFunc(struct _glapi_table *disp) {
   5018    return (_glptr_DepthFunc) (GET_by_offset(disp, _gloffset_DepthFunc));
   5019 }
   5020 
   5021 static inline void SET_DepthFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5022    SET_by_offset(disp, _gloffset_DepthFunc, fn);
   5023 }
   5024 
   5025 typedef void (GLAPIENTRYP _glptr_PixelZoom)(GLfloat, GLfloat);
   5026 #define CALL_PixelZoom(disp, parameters) \
   5027     (* GET_PixelZoom(disp)) parameters
   5028 static inline _glptr_PixelZoom GET_PixelZoom(struct _glapi_table *disp) {
   5029    return (_glptr_PixelZoom) (GET_by_offset(disp, _gloffset_PixelZoom));
   5030 }
   5031 
   5032 static inline void SET_PixelZoom(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   5033    SET_by_offset(disp, _gloffset_PixelZoom, fn);
   5034 }
   5035 
   5036 typedef void (GLAPIENTRYP _glptr_PixelTransferf)(GLenum, GLfloat);
   5037 #define CALL_PixelTransferf(disp, parameters) \
   5038     (* GET_PixelTransferf(disp)) parameters
   5039 static inline _glptr_PixelTransferf GET_PixelTransferf(struct _glapi_table *disp) {
   5040    return (_glptr_PixelTransferf) (GET_by_offset(disp, _gloffset_PixelTransferf));
   5041 }
   5042 
   5043 static inline void SET_PixelTransferf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   5044    SET_by_offset(disp, _gloffset_PixelTransferf, fn);
   5045 }
   5046 
   5047 typedef void (GLAPIENTRYP _glptr_PixelTransferi)(GLenum, GLint);
   5048 #define CALL_PixelTransferi(disp, parameters) \
   5049     (* GET_PixelTransferi(disp)) parameters
   5050 static inline _glptr_PixelTransferi GET_PixelTransferi(struct _glapi_table *disp) {
   5051    return (_glptr_PixelTransferi) (GET_by_offset(disp, _gloffset_PixelTransferi));
   5052 }
   5053 
   5054 static inline void SET_PixelTransferi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   5055    SET_by_offset(disp, _gloffset_PixelTransferi, fn);
   5056 }
   5057 
   5058 typedef void (GLAPIENTRYP _glptr_PixelStoref)(GLenum, GLfloat);
   5059 #define CALL_PixelStoref(disp, parameters) \
   5060     (* GET_PixelStoref(disp)) parameters
   5061 static inline _glptr_PixelStoref GET_PixelStoref(struct _glapi_table *disp) {
   5062    return (_glptr_PixelStoref) (GET_by_offset(disp, _gloffset_PixelStoref));
   5063 }
   5064 
   5065 static inline void SET_PixelStoref(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   5066    SET_by_offset(disp, _gloffset_PixelStoref, fn);
   5067 }
   5068 
   5069 typedef void (GLAPIENTRYP _glptr_PixelStorei)(GLenum, GLint);
   5070 #define CALL_PixelStorei(disp, parameters) \
   5071     (* GET_PixelStorei(disp)) parameters
   5072 static inline _glptr_PixelStorei GET_PixelStorei(struct _glapi_table *disp) {
   5073    return (_glptr_PixelStorei) (GET_by_offset(disp, _gloffset_PixelStorei));
   5074 }
   5075 
   5076 static inline void SET_PixelStorei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   5077    SET_by_offset(disp, _gloffset_PixelStorei, fn);
   5078 }
   5079 
   5080 typedef void (GLAPIENTRYP _glptr_PixelMapfv)(GLenum, GLsizei, const GLfloat *);
   5081 #define CALL_PixelMapfv(disp, parameters) \
   5082     (* GET_PixelMapfv(disp)) parameters
   5083 static inline _glptr_PixelMapfv GET_PixelMapfv(struct _glapi_table *disp) {
   5084    return (_glptr_PixelMapfv) (GET_by_offset(disp, _gloffset_PixelMapfv));
   5085 }
   5086 
   5087 static inline void SET_PixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLfloat *)) {
   5088    SET_by_offset(disp, _gloffset_PixelMapfv, fn);
   5089 }
   5090 
   5091 typedef void (GLAPIENTRYP _glptr_PixelMapuiv)(GLenum, GLsizei, const GLuint *);
   5092 #define CALL_PixelMapuiv(disp, parameters) \
   5093     (* GET_PixelMapuiv(disp)) parameters
   5094 static inline _glptr_PixelMapuiv GET_PixelMapuiv(struct _glapi_table *disp) {
   5095    return (_glptr_PixelMapuiv) (GET_by_offset(disp, _gloffset_PixelMapuiv));
   5096 }
   5097 
   5098 static inline void SET_PixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) {
   5099    SET_by_offset(disp, _gloffset_PixelMapuiv, fn);
   5100 }
   5101 
   5102 typedef void (GLAPIENTRYP _glptr_PixelMapusv)(GLenum, GLsizei, const GLushort *);
   5103 #define CALL_PixelMapusv(disp, parameters) \
   5104     (* GET_PixelMapusv(disp)) parameters
   5105 static inline _glptr_PixelMapusv GET_PixelMapusv(struct _glapi_table *disp) {
   5106    return (_glptr_PixelMapusv) (GET_by_offset(disp, _gloffset_PixelMapusv));
   5107 }
   5108 
   5109 static inline void SET_PixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLushort *)) {
   5110    SET_by_offset(disp, _gloffset_PixelMapusv, fn);
   5111 }
   5112 
   5113 typedef void (GLAPIENTRYP _glptr_ReadBuffer)(GLenum);
   5114 #define CALL_ReadBuffer(disp, parameters) \
   5115     (* GET_ReadBuffer(disp)) parameters
   5116 static inline _glptr_ReadBuffer GET_ReadBuffer(struct _glapi_table *disp) {
   5117    return (_glptr_ReadBuffer) (GET_by_offset(disp, _gloffset_ReadBuffer));
   5118 }
   5119 
   5120 static inline void SET_ReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5121    SET_by_offset(disp, _gloffset_ReadBuffer, fn);
   5122 }
   5123 
   5124 typedef void (GLAPIENTRYP _glptr_CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum);
   5125 #define CALL_CopyPixels(disp, parameters) \
   5126     (* GET_CopyPixels(disp)) parameters
   5127 static inline _glptr_CopyPixels GET_CopyPixels(struct _glapi_table *disp) {
   5128    return (_glptr_CopyPixels) (GET_by_offset(disp, _gloffset_CopyPixels));
   5129 }
   5130 
   5131 static inline void SET_CopyPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum)) {
   5132    SET_by_offset(disp, _gloffset_CopyPixels, fn);
   5133 }
   5134 
   5135 typedef void (GLAPIENTRYP _glptr_ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
   5136 #define CALL_ReadPixels(disp, parameters) \
   5137     (* GET_ReadPixels(disp)) parameters
   5138 static inline _glptr_ReadPixels GET_ReadPixels(struct _glapi_table *disp) {
   5139    return (_glptr_ReadPixels) (GET_by_offset(disp, _gloffset_ReadPixels));
   5140 }
   5141 
   5142 static inline void SET_ReadPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *)) {
   5143    SET_by_offset(disp, _gloffset_ReadPixels, fn);
   5144 }
   5145 
   5146 typedef void (GLAPIENTRYP _glptr_DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   5147 #define CALL_DrawPixels(disp, parameters) \
   5148     (* GET_DrawPixels(disp)) parameters
   5149 static inline _glptr_DrawPixels GET_DrawPixels(struct _glapi_table *disp) {
   5150    return (_glptr_DrawPixels) (GET_by_offset(disp, _gloffset_DrawPixels));
   5151 }
   5152 
   5153 static inline void SET_DrawPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   5154    SET_by_offset(disp, _gloffset_DrawPixels, fn);
   5155 }
   5156 
   5157 typedef void (GLAPIENTRYP _glptr_GetBooleanv)(GLenum, GLboolean *);
   5158 #define CALL_GetBooleanv(disp, parameters) \
   5159     (* GET_GetBooleanv(disp)) parameters
   5160 static inline _glptr_GetBooleanv GET_GetBooleanv(struct _glapi_table *disp) {
   5161    return (_glptr_GetBooleanv) (GET_by_offset(disp, _gloffset_GetBooleanv));
   5162 }
   5163 
   5164 static inline void SET_GetBooleanv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean *)) {
   5165    SET_by_offset(disp, _gloffset_GetBooleanv, fn);
   5166 }
   5167 
   5168 typedef void (GLAPIENTRYP _glptr_GetClipPlane)(GLenum, GLdouble *);
   5169 #define CALL_GetClipPlane(disp, parameters) \
   5170     (* GET_GetClipPlane(disp)) parameters
   5171 static inline _glptr_GetClipPlane GET_GetClipPlane(struct _glapi_table *disp) {
   5172    return (_glptr_GetClipPlane) (GET_by_offset(disp, _gloffset_GetClipPlane));
   5173 }
   5174 
   5175 static inline void SET_GetClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
   5176    SET_by_offset(disp, _gloffset_GetClipPlane, fn);
   5177 }
   5178 
   5179 typedef void (GLAPIENTRYP _glptr_GetDoublev)(GLenum, GLdouble *);
   5180 #define CALL_GetDoublev(disp, parameters) \
   5181     (* GET_GetDoublev(disp)) parameters
   5182 static inline _glptr_GetDoublev GET_GetDoublev(struct _glapi_table *disp) {
   5183    return (_glptr_GetDoublev) (GET_by_offset(disp, _gloffset_GetDoublev));
   5184 }
   5185 
   5186 static inline void SET_GetDoublev(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
   5187    SET_by_offset(disp, _gloffset_GetDoublev, fn);
   5188 }
   5189 
   5190 typedef GLenum (GLAPIENTRYP _glptr_GetError)(void);
   5191 #define CALL_GetError(disp, parameters) \
   5192     (* GET_GetError(disp)) parameters
   5193 static inline _glptr_GetError GET_GetError(struct _glapi_table *disp) {
   5194    return (_glptr_GetError) (GET_by_offset(disp, _gloffset_GetError));
   5195 }
   5196 
   5197 static inline void SET_GetError(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
   5198    SET_by_offset(disp, _gloffset_GetError, fn);
   5199 }
   5200 
   5201 typedef void (GLAPIENTRYP _glptr_GetFloatv)(GLenum, GLfloat *);
   5202 #define CALL_GetFloatv(disp, parameters) \
   5203     (* GET_GetFloatv(disp)) parameters
   5204 static inline _glptr_GetFloatv GET_GetFloatv(struct _glapi_table *disp) {
   5205    return (_glptr_GetFloatv) (GET_by_offset(disp, _gloffset_GetFloatv));
   5206 }
   5207 
   5208 static inline void SET_GetFloatv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
   5209    SET_by_offset(disp, _gloffset_GetFloatv, fn);
   5210 }
   5211 
   5212 typedef void (GLAPIENTRYP _glptr_GetIntegerv)(GLenum, GLint *);
   5213 #define CALL_GetIntegerv(disp, parameters) \
   5214     (* GET_GetIntegerv(disp)) parameters
   5215 static inline _glptr_GetIntegerv GET_GetIntegerv(struct _glapi_table *disp) {
   5216    return (_glptr_GetIntegerv) (GET_by_offset(disp, _gloffset_GetIntegerv));
   5217 }
   5218 
   5219 static inline void SET_GetIntegerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
   5220    SET_by_offset(disp, _gloffset_GetIntegerv, fn);
   5221 }
   5222 
   5223 typedef void (GLAPIENTRYP _glptr_GetLightfv)(GLenum, GLenum, GLfloat *);
   5224 #define CALL_GetLightfv(disp, parameters) \
   5225     (* GET_GetLightfv(disp)) parameters
   5226 static inline _glptr_GetLightfv GET_GetLightfv(struct _glapi_table *disp) {
   5227    return (_glptr_GetLightfv) (GET_by_offset(disp, _gloffset_GetLightfv));
   5228 }
   5229 
   5230 static inline void SET_GetLightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5231    SET_by_offset(disp, _gloffset_GetLightfv, fn);
   5232 }
   5233 
   5234 typedef void (GLAPIENTRYP _glptr_GetLightiv)(GLenum, GLenum, GLint *);
   5235 #define CALL_GetLightiv(disp, parameters) \
   5236     (* GET_GetLightiv(disp)) parameters
   5237 static inline _glptr_GetLightiv GET_GetLightiv(struct _glapi_table *disp) {
   5238    return (_glptr_GetLightiv) (GET_by_offset(disp, _gloffset_GetLightiv));
   5239 }
   5240 
   5241 static inline void SET_GetLightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5242    SET_by_offset(disp, _gloffset_GetLightiv, fn);
   5243 }
   5244 
   5245 typedef void (GLAPIENTRYP _glptr_GetMapdv)(GLenum, GLenum, GLdouble *);
   5246 #define CALL_GetMapdv(disp, parameters) \
   5247     (* GET_GetMapdv(disp)) parameters
   5248 static inline _glptr_GetMapdv GET_GetMapdv(struct _glapi_table *disp) {
   5249    return (_glptr_GetMapdv) (GET_by_offset(disp, _gloffset_GetMapdv));
   5250 }
   5251 
   5252 static inline void SET_GetMapdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
   5253    SET_by_offset(disp, _gloffset_GetMapdv, fn);
   5254 }
   5255 
   5256 typedef void (GLAPIENTRYP _glptr_GetMapfv)(GLenum, GLenum, GLfloat *);
   5257 #define CALL_GetMapfv(disp, parameters) \
   5258     (* GET_GetMapfv(disp)) parameters
   5259 static inline _glptr_GetMapfv GET_GetMapfv(struct _glapi_table *disp) {
   5260    return (_glptr_GetMapfv) (GET_by_offset(disp, _gloffset_GetMapfv));
   5261 }
   5262 
   5263 static inline void SET_GetMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5264    SET_by_offset(disp, _gloffset_GetMapfv, fn);
   5265 }
   5266 
   5267 typedef void (GLAPIENTRYP _glptr_GetMapiv)(GLenum, GLenum, GLint *);
   5268 #define CALL_GetMapiv(disp, parameters) \
   5269     (* GET_GetMapiv(disp)) parameters
   5270 static inline _glptr_GetMapiv GET_GetMapiv(struct _glapi_table *disp) {
   5271    return (_glptr_GetMapiv) (GET_by_offset(disp, _gloffset_GetMapiv));
   5272 }
   5273 
   5274 static inline void SET_GetMapiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5275    SET_by_offset(disp, _gloffset_GetMapiv, fn);
   5276 }
   5277 
   5278 typedef void (GLAPIENTRYP _glptr_GetMaterialfv)(GLenum, GLenum, GLfloat *);
   5279 #define CALL_GetMaterialfv(disp, parameters) \
   5280     (* GET_GetMaterialfv(disp)) parameters
   5281 static inline _glptr_GetMaterialfv GET_GetMaterialfv(struct _glapi_table *disp) {
   5282    return (_glptr_GetMaterialfv) (GET_by_offset(disp, _gloffset_GetMaterialfv));
   5283 }
   5284 
   5285 static inline void SET_GetMaterialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5286    SET_by_offset(disp, _gloffset_GetMaterialfv, fn);
   5287 }
   5288 
   5289 typedef void (GLAPIENTRYP _glptr_GetMaterialiv)(GLenum, GLenum, GLint *);
   5290 #define CALL_GetMaterialiv(disp, parameters) \
   5291     (* GET_GetMaterialiv(disp)) parameters
   5292 static inline _glptr_GetMaterialiv GET_GetMaterialiv(struct _glapi_table *disp) {
   5293    return (_glptr_GetMaterialiv) (GET_by_offset(disp, _gloffset_GetMaterialiv));
   5294 }
   5295 
   5296 static inline void SET_GetMaterialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5297    SET_by_offset(disp, _gloffset_GetMaterialiv, fn);
   5298 }
   5299 
   5300 typedef void (GLAPIENTRYP _glptr_GetPixelMapfv)(GLenum, GLfloat *);
   5301 #define CALL_GetPixelMapfv(disp, parameters) \
   5302     (* GET_GetPixelMapfv(disp)) parameters
   5303 static inline _glptr_GetPixelMapfv GET_GetPixelMapfv(struct _glapi_table *disp) {
   5304    return (_glptr_GetPixelMapfv) (GET_by_offset(disp, _gloffset_GetPixelMapfv));
   5305 }
   5306 
   5307 static inline void SET_GetPixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
   5308    SET_by_offset(disp, _gloffset_GetPixelMapfv, fn);
   5309 }
   5310 
   5311 typedef void (GLAPIENTRYP _glptr_GetPixelMapuiv)(GLenum, GLuint *);
   5312 #define CALL_GetPixelMapuiv(disp, parameters) \
   5313     (* GET_GetPixelMapuiv(disp)) parameters
   5314 static inline _glptr_GetPixelMapuiv GET_GetPixelMapuiv(struct _glapi_table *disp) {
   5315    return (_glptr_GetPixelMapuiv) (GET_by_offset(disp, _gloffset_GetPixelMapuiv));
   5316 }
   5317 
   5318 static inline void SET_GetPixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint *)) {
   5319    SET_by_offset(disp, _gloffset_GetPixelMapuiv, fn);
   5320 }
   5321 
   5322 typedef void (GLAPIENTRYP _glptr_GetPixelMapusv)(GLenum, GLushort *);
   5323 #define CALL_GetPixelMapusv(disp, parameters) \
   5324     (* GET_GetPixelMapusv(disp)) parameters
   5325 static inline _glptr_GetPixelMapusv GET_GetPixelMapusv(struct _glapi_table *disp) {
   5326    return (_glptr_GetPixelMapusv) (GET_by_offset(disp, _gloffset_GetPixelMapusv));
   5327 }
   5328 
   5329 static inline void SET_GetPixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLushort *)) {
   5330    SET_by_offset(disp, _gloffset_GetPixelMapusv, fn);
   5331 }
   5332 
   5333 typedef void (GLAPIENTRYP _glptr_GetPolygonStipple)(GLubyte *);
   5334 #define CALL_GetPolygonStipple(disp, parameters) \
   5335     (* GET_GetPolygonStipple(disp)) parameters
   5336 static inline _glptr_GetPolygonStipple GET_GetPolygonStipple(struct _glapi_table *disp) {
   5337    return (_glptr_GetPolygonStipple) (GET_by_offset(disp, _gloffset_GetPolygonStipple));
   5338 }
   5339 
   5340 static inline void SET_GetPolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte *)) {
   5341    SET_by_offset(disp, _gloffset_GetPolygonStipple, fn);
   5342 }
   5343 
   5344 typedef const GLubyte * (GLAPIENTRYP _glptr_GetString)(GLenum);
   5345 #define CALL_GetString(disp, parameters) \
   5346     (* GET_GetString(disp)) parameters
   5347 static inline _glptr_GetString GET_GetString(struct _glapi_table *disp) {
   5348    return (_glptr_GetString) (GET_by_offset(disp, _gloffset_GetString));
   5349 }
   5350 
   5351 static inline void SET_GetString(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum)) {
   5352    SET_by_offset(disp, _gloffset_GetString, fn);
   5353 }
   5354 
   5355 typedef void (GLAPIENTRYP _glptr_GetTexEnvfv)(GLenum, GLenum, GLfloat *);
   5356 #define CALL_GetTexEnvfv(disp, parameters) \
   5357     (* GET_GetTexEnvfv(disp)) parameters
   5358 static inline _glptr_GetTexEnvfv GET_GetTexEnvfv(struct _glapi_table *disp) {
   5359    return (_glptr_GetTexEnvfv) (GET_by_offset(disp, _gloffset_GetTexEnvfv));
   5360 }
   5361 
   5362 static inline void SET_GetTexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5363    SET_by_offset(disp, _gloffset_GetTexEnvfv, fn);
   5364 }
   5365 
   5366 typedef void (GLAPIENTRYP _glptr_GetTexEnviv)(GLenum, GLenum, GLint *);
   5367 #define CALL_GetTexEnviv(disp, parameters) \
   5368     (* GET_GetTexEnviv(disp)) parameters
   5369 static inline _glptr_GetTexEnviv GET_GetTexEnviv(struct _glapi_table *disp) {
   5370    return (_glptr_GetTexEnviv) (GET_by_offset(disp, _gloffset_GetTexEnviv));
   5371 }
   5372 
   5373 static inline void SET_GetTexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5374    SET_by_offset(disp, _gloffset_GetTexEnviv, fn);
   5375 }
   5376 
   5377 typedef void (GLAPIENTRYP _glptr_GetTexGendv)(GLenum, GLenum, GLdouble *);
   5378 #define CALL_GetTexGendv(disp, parameters) \
   5379     (* GET_GetTexGendv(disp)) parameters
   5380 static inline _glptr_GetTexGendv GET_GetTexGendv(struct _glapi_table *disp) {
   5381    return (_glptr_GetTexGendv) (GET_by_offset(disp, _gloffset_GetTexGendv));
   5382 }
   5383 
   5384 static inline void SET_GetTexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
   5385    SET_by_offset(disp, _gloffset_GetTexGendv, fn);
   5386 }
   5387 
   5388 typedef void (GLAPIENTRYP _glptr_GetTexGenfv)(GLenum, GLenum, GLfloat *);
   5389 #define CALL_GetTexGenfv(disp, parameters) \
   5390     (* GET_GetTexGenfv(disp)) parameters
   5391 static inline _glptr_GetTexGenfv GET_GetTexGenfv(struct _glapi_table *disp) {
   5392    return (_glptr_GetTexGenfv) (GET_by_offset(disp, _gloffset_GetTexGenfv));
   5393 }
   5394 
   5395 static inline void SET_GetTexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5396    SET_by_offset(disp, _gloffset_GetTexGenfv, fn);
   5397 }
   5398 
   5399 typedef void (GLAPIENTRYP _glptr_GetTexGeniv)(GLenum, GLenum, GLint *);
   5400 #define CALL_GetTexGeniv(disp, parameters) \
   5401     (* GET_GetTexGeniv(disp)) parameters
   5402 static inline _glptr_GetTexGeniv GET_GetTexGeniv(struct _glapi_table *disp) {
   5403    return (_glptr_GetTexGeniv) (GET_by_offset(disp, _gloffset_GetTexGeniv));
   5404 }
   5405 
   5406 static inline void SET_GetTexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5407    SET_by_offset(disp, _gloffset_GetTexGeniv, fn);
   5408 }
   5409 
   5410 typedef void (GLAPIENTRYP _glptr_GetTexImage)(GLenum, GLint, GLenum, GLenum, GLvoid *);
   5411 #define CALL_GetTexImage(disp, parameters) \
   5412     (* GET_GetTexImage(disp)) parameters
   5413 static inline _glptr_GetTexImage GET_GetTexImage(struct _glapi_table *disp) {
   5414    return (_glptr_GetTexImage) (GET_by_offset(disp, _gloffset_GetTexImage));
   5415 }
   5416 
   5417 static inline void SET_GetTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLvoid *)) {
   5418    SET_by_offset(disp, _gloffset_GetTexImage, fn);
   5419 }
   5420 
   5421 typedef void (GLAPIENTRYP _glptr_GetTexParameterfv)(GLenum, GLenum, GLfloat *);
   5422 #define CALL_GetTexParameterfv(disp, parameters) \
   5423     (* GET_GetTexParameterfv(disp)) parameters
   5424 static inline _glptr_GetTexParameterfv GET_GetTexParameterfv(struct _glapi_table *disp) {
   5425    return (_glptr_GetTexParameterfv) (GET_by_offset(disp, _gloffset_GetTexParameterfv));
   5426 }
   5427 
   5428 static inline void SET_GetTexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5429    SET_by_offset(disp, _gloffset_GetTexParameterfv, fn);
   5430 }
   5431 
   5432 typedef void (GLAPIENTRYP _glptr_GetTexParameteriv)(GLenum, GLenum, GLint *);
   5433 #define CALL_GetTexParameteriv(disp, parameters) \
   5434     (* GET_GetTexParameteriv(disp)) parameters
   5435 static inline _glptr_GetTexParameteriv GET_GetTexParameteriv(struct _glapi_table *disp) {
   5436    return (_glptr_GetTexParameteriv) (GET_by_offset(disp, _gloffset_GetTexParameteriv));
   5437 }
   5438 
   5439 static inline void SET_GetTexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5440    SET_by_offset(disp, _gloffset_GetTexParameteriv, fn);
   5441 }
   5442 
   5443 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *);
   5444 #define CALL_GetTexLevelParameterfv(disp, parameters) \
   5445     (* GET_GetTexLevelParameterfv(disp)) parameters
   5446 static inline _glptr_GetTexLevelParameterfv GET_GetTexLevelParameterfv(struct _glapi_table *disp) {
   5447    return (_glptr_GetTexLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTexLevelParameterfv));
   5448 }
   5449 
   5450 static inline void SET_GetTexLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLfloat *)) {
   5451    SET_by_offset(disp, _gloffset_GetTexLevelParameterfv, fn);
   5452 }
   5453 
   5454 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *);
   5455 #define CALL_GetTexLevelParameteriv(disp, parameters) \
   5456     (* GET_GetTexLevelParameteriv(disp)) parameters
   5457 static inline _glptr_GetTexLevelParameteriv GET_GetTexLevelParameteriv(struct _glapi_table *disp) {
   5458    return (_glptr_GetTexLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTexLevelParameteriv));
   5459 }
   5460 
   5461 static inline void SET_GetTexLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint *)) {
   5462    SET_by_offset(disp, _gloffset_GetTexLevelParameteriv, fn);
   5463 }
   5464 
   5465 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabled)(GLenum);
   5466 #define CALL_IsEnabled(disp, parameters) \
   5467     (* GET_IsEnabled(disp)) parameters
   5468 static inline _glptr_IsEnabled GET_IsEnabled(struct _glapi_table *disp) {
   5469    return (_glptr_IsEnabled) (GET_by_offset(disp, _gloffset_IsEnabled));
   5470 }
   5471 
   5472 static inline void SET_IsEnabled(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
   5473    SET_by_offset(disp, _gloffset_IsEnabled, fn);
   5474 }
   5475 
   5476 typedef GLboolean (GLAPIENTRYP _glptr_IsList)(GLuint);
   5477 #define CALL_IsList(disp, parameters) \
   5478     (* GET_IsList(disp)) parameters
   5479 static inline _glptr_IsList GET_IsList(struct _glapi_table *disp) {
   5480    return (_glptr_IsList) (GET_by_offset(disp, _gloffset_IsList));
   5481 }
   5482 
   5483 static inline void SET_IsList(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   5484    SET_by_offset(disp, _gloffset_IsList, fn);
   5485 }
   5486 
   5487 typedef void (GLAPIENTRYP _glptr_DepthRange)(GLclampd, GLclampd);
   5488 #define CALL_DepthRange(disp, parameters) \
   5489     (* GET_DepthRange(disp)) parameters
   5490 static inline _glptr_DepthRange GET_DepthRange(struct _glapi_table *disp) {
   5491    return (_glptr_DepthRange) (GET_by_offset(disp, _gloffset_DepthRange));
   5492 }
   5493 
   5494 static inline void SET_DepthRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
   5495    SET_by_offset(disp, _gloffset_DepthRange, fn);
   5496 }
   5497 
   5498 typedef void (GLAPIENTRYP _glptr_Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
   5499 #define CALL_Frustum(disp, parameters) \
   5500     (* GET_Frustum(disp)) parameters
   5501 static inline _glptr_Frustum GET_Frustum(struct _glapi_table *disp) {
   5502    return (_glptr_Frustum) (GET_by_offset(disp, _gloffset_Frustum));
   5503 }
   5504 
   5505 static inline void SET_Frustum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
   5506    SET_by_offset(disp, _gloffset_Frustum, fn);
   5507 }
   5508 
   5509 typedef void (GLAPIENTRYP _glptr_LoadIdentity)(void);
   5510 #define CALL_LoadIdentity(disp, parameters) \
   5511     (* GET_LoadIdentity(disp)) parameters
   5512 static inline _glptr_LoadIdentity GET_LoadIdentity(struct _glapi_table *disp) {
   5513    return (_glptr_LoadIdentity) (GET_by_offset(disp, _gloffset_LoadIdentity));
   5514 }
   5515 
   5516 static inline void SET_LoadIdentity(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   5517    SET_by_offset(disp, _gloffset_LoadIdentity, fn);
   5518 }
   5519 
   5520 typedef void (GLAPIENTRYP _glptr_LoadMatrixf)(const GLfloat *);
   5521 #define CALL_LoadMatrixf(disp, parameters) \
   5522     (* GET_LoadMatrixf(disp)) parameters
   5523 static inline _glptr_LoadMatrixf GET_LoadMatrixf(struct _glapi_table *disp) {
   5524    return (_glptr_LoadMatrixf) (GET_by_offset(disp, _gloffset_LoadMatrixf));
   5525 }
   5526 
   5527 static inline void SET_LoadMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   5528    SET_by_offset(disp, _gloffset_LoadMatrixf, fn);
   5529 }
   5530 
   5531 typedef void (GLAPIENTRYP _glptr_LoadMatrixd)(const GLdouble *);
   5532 #define CALL_LoadMatrixd(disp, parameters) \
   5533     (* GET_LoadMatrixd(disp)) parameters
   5534 static inline _glptr_LoadMatrixd GET_LoadMatrixd(struct _glapi_table *disp) {
   5535    return (_glptr_LoadMatrixd) (GET_by_offset(disp, _gloffset_LoadMatrixd));
   5536 }
   5537 
   5538 static inline void SET_LoadMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   5539    SET_by_offset(disp, _gloffset_LoadMatrixd, fn);
   5540 }
   5541 
   5542 typedef void (GLAPIENTRYP _glptr_MatrixMode)(GLenum);
   5543 #define CALL_MatrixMode(disp, parameters) \
   5544     (* GET_MatrixMode(disp)) parameters
   5545 static inline _glptr_MatrixMode GET_MatrixMode(struct _glapi_table *disp) {
   5546    return (_glptr_MatrixMode) (GET_by_offset(disp, _gloffset_MatrixMode));
   5547 }
   5548 
   5549 static inline void SET_MatrixMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5550    SET_by_offset(disp, _gloffset_MatrixMode, fn);
   5551 }
   5552 
   5553 typedef void (GLAPIENTRYP _glptr_MultMatrixf)(const GLfloat *);
   5554 #define CALL_MultMatrixf(disp, parameters) \
   5555     (* GET_MultMatrixf(disp)) parameters
   5556 static inline _glptr_MultMatrixf GET_MultMatrixf(struct _glapi_table *disp) {
   5557    return (_glptr_MultMatrixf) (GET_by_offset(disp, _gloffset_MultMatrixf));
   5558 }
   5559 
   5560 static inline void SET_MultMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   5561    SET_by_offset(disp, _gloffset_MultMatrixf, fn);
   5562 }
   5563 
   5564 typedef void (GLAPIENTRYP _glptr_MultMatrixd)(const GLdouble *);
   5565 #define CALL_MultMatrixd(disp, parameters) \
   5566     (* GET_MultMatrixd(disp)) parameters
   5567 static inline _glptr_MultMatrixd GET_MultMatrixd(struct _glapi_table *disp) {
   5568    return (_glptr_MultMatrixd) (GET_by_offset(disp, _gloffset_MultMatrixd));
   5569 }
   5570 
   5571 static inline void SET_MultMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   5572    SET_by_offset(disp, _gloffset_MultMatrixd, fn);
   5573 }
   5574 
   5575 typedef void (GLAPIENTRYP _glptr_Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
   5576 #define CALL_Ortho(disp, parameters) \
   5577     (* GET_Ortho(disp)) parameters
   5578 static inline _glptr_Ortho GET_Ortho(struct _glapi_table *disp) {
   5579    return (_glptr_Ortho) (GET_by_offset(disp, _gloffset_Ortho));
   5580 }
   5581 
   5582 static inline void SET_Ortho(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
   5583    SET_by_offset(disp, _gloffset_Ortho, fn);
   5584 }
   5585 
   5586 typedef void (GLAPIENTRYP _glptr_PopMatrix)(void);
   5587 #define CALL_PopMatrix(disp, parameters) \
   5588     (* GET_PopMatrix(disp)) parameters
   5589 static inline _glptr_PopMatrix GET_PopMatrix(struct _glapi_table *disp) {
   5590    return (_glptr_PopMatrix) (GET_by_offset(disp, _gloffset_PopMatrix));
   5591 }
   5592 
   5593 static inline void SET_PopMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   5594    SET_by_offset(disp, _gloffset_PopMatrix, fn);
   5595 }
   5596 
   5597 typedef void (GLAPIENTRYP _glptr_PushMatrix)(void);
   5598 #define CALL_PushMatrix(disp, parameters) \
   5599     (* GET_PushMatrix(disp)) parameters
   5600 static inline _glptr_PushMatrix GET_PushMatrix(struct _glapi_table *disp) {
   5601    return (_glptr_PushMatrix) (GET_by_offset(disp, _gloffset_PushMatrix));
   5602 }
   5603 
   5604 static inline void SET_PushMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   5605    SET_by_offset(disp, _gloffset_PushMatrix, fn);
   5606 }
   5607 
   5608 typedef void (GLAPIENTRYP _glptr_Rotated)(GLdouble, GLdouble, GLdouble, GLdouble);
   5609 #define CALL_Rotated(disp, parameters) \
   5610     (* GET_Rotated(disp)) parameters
   5611 static inline _glptr_Rotated GET_Rotated(struct _glapi_table *disp) {
   5612    return (_glptr_Rotated) (GET_by_offset(disp, _gloffset_Rotated));
   5613 }
   5614 
   5615 static inline void SET_Rotated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   5616    SET_by_offset(disp, _gloffset_Rotated, fn);
   5617 }
   5618 
   5619 typedef void (GLAPIENTRYP _glptr_Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat);
   5620 #define CALL_Rotatef(disp, parameters) \
   5621     (* GET_Rotatef(disp)) parameters
   5622 static inline _glptr_Rotatef GET_Rotatef(struct _glapi_table *disp) {
   5623    return (_glptr_Rotatef) (GET_by_offset(disp, _gloffset_Rotatef));
   5624 }
   5625 
   5626 static inline void SET_Rotatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   5627    SET_by_offset(disp, _gloffset_Rotatef, fn);
   5628 }
   5629 
   5630 typedef void (GLAPIENTRYP _glptr_Scaled)(GLdouble, GLdouble, GLdouble);
   5631 #define CALL_Scaled(disp, parameters) \
   5632     (* GET_Scaled(disp)) parameters
   5633 static inline _glptr_Scaled GET_Scaled(struct _glapi_table *disp) {
   5634    return (_glptr_Scaled) (GET_by_offset(disp, _gloffset_Scaled));
   5635 }
   5636 
   5637 static inline void SET_Scaled(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   5638    SET_by_offset(disp, _gloffset_Scaled, fn);
   5639 }
   5640 
   5641 typedef void (GLAPIENTRYP _glptr_Scalef)(GLfloat, GLfloat, GLfloat);
   5642 #define CALL_Scalef(disp, parameters) \
   5643     (* GET_Scalef(disp)) parameters
   5644 static inline _glptr_Scalef GET_Scalef(struct _glapi_table *disp) {
   5645    return (_glptr_Scalef) (GET_by_offset(disp, _gloffset_Scalef));
   5646 }
   5647 
   5648 static inline void SET_Scalef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   5649    SET_by_offset(disp, _gloffset_Scalef, fn);
   5650 }
   5651 
   5652 typedef void (GLAPIENTRYP _glptr_Translated)(GLdouble, GLdouble, GLdouble);
   5653 #define CALL_Translated(disp, parameters) \
   5654     (* GET_Translated(disp)) parameters
   5655 static inline _glptr_Translated GET_Translated(struct _glapi_table *disp) {
   5656    return (_glptr_Translated) (GET_by_offset(disp, _gloffset_Translated));
   5657 }
   5658 
   5659 static inline void SET_Translated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   5660    SET_by_offset(disp, _gloffset_Translated, fn);
   5661 }
   5662 
   5663 typedef void (GLAPIENTRYP _glptr_Translatef)(GLfloat, GLfloat, GLfloat);
   5664 #define CALL_Translatef(disp, parameters) \
   5665     (* GET_Translatef(disp)) parameters
   5666 static inline _glptr_Translatef GET_Translatef(struct _glapi_table *disp) {
   5667    return (_glptr_Translatef) (GET_by_offset(disp, _gloffset_Translatef));
   5668 }
   5669 
   5670 static inline void SET_Translatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   5671    SET_by_offset(disp, _gloffset_Translatef, fn);
   5672 }
   5673 
   5674 typedef void (GLAPIENTRYP _glptr_Viewport)(GLint, GLint, GLsizei, GLsizei);
   5675 #define CALL_Viewport(disp, parameters) \
   5676     (* GET_Viewport(disp)) parameters
   5677 static inline _glptr_Viewport GET_Viewport(struct _glapi_table *disp) {
   5678    return (_glptr_Viewport) (GET_by_offset(disp, _gloffset_Viewport));
   5679 }
   5680 
   5681 static inline void SET_Viewport(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
   5682    SET_by_offset(disp, _gloffset_Viewport, fn);
   5683 }
   5684 
   5685 typedef void (GLAPIENTRYP _glptr_ArrayElement)(GLint);
   5686 #define CALL_ArrayElement(disp, parameters) \
   5687     (* GET_ArrayElement(disp)) parameters
   5688 static inline _glptr_ArrayElement GET_ArrayElement(struct _glapi_table *disp) {
   5689    return (_glptr_ArrayElement) (GET_by_offset(disp, _gloffset_ArrayElement));
   5690 }
   5691 
   5692 static inline void SET_ArrayElement(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   5693    SET_by_offset(disp, _gloffset_ArrayElement, fn);
   5694 }
   5695 
   5696 typedef void (GLAPIENTRYP _glptr_BindTexture)(GLenum, GLuint);
   5697 #define CALL_BindTexture(disp, parameters) \
   5698     (* GET_BindTexture(disp)) parameters
   5699 static inline _glptr_BindTexture GET_BindTexture(struct _glapi_table *disp) {
   5700    return (_glptr_BindTexture) (GET_by_offset(disp, _gloffset_BindTexture));
   5701 }
   5702 
   5703 static inline void SET_BindTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   5704    SET_by_offset(disp, _gloffset_BindTexture, fn);
   5705 }
   5706 
   5707 typedef void (GLAPIENTRYP _glptr_ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   5708 #define CALL_ColorPointer(disp, parameters) \
   5709     (* GET_ColorPointer(disp)) parameters
   5710 static inline _glptr_ColorPointer GET_ColorPointer(struct _glapi_table *disp) {
   5711    return (_glptr_ColorPointer) (GET_by_offset(disp, _gloffset_ColorPointer));
   5712 }
   5713 
   5714 static inline void SET_ColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   5715    SET_by_offset(disp, _gloffset_ColorPointer, fn);
   5716 }
   5717 
   5718 typedef void (GLAPIENTRYP _glptr_DisableClientState)(GLenum);
   5719 #define CALL_DisableClientState(disp, parameters) \
   5720     (* GET_DisableClientState(disp)) parameters
   5721 static inline _glptr_DisableClientState GET_DisableClientState(struct _glapi_table *disp) {
   5722    return (_glptr_DisableClientState) (GET_by_offset(disp, _gloffset_DisableClientState));
   5723 }
   5724 
   5725 static inline void SET_DisableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5726    SET_by_offset(disp, _gloffset_DisableClientState, fn);
   5727 }
   5728 
   5729 typedef void (GLAPIENTRYP _glptr_DrawArrays)(GLenum, GLint, GLsizei);
   5730 #define CALL_DrawArrays(disp, parameters) \
   5731     (* GET_DrawArrays(disp)) parameters
   5732 static inline _glptr_DrawArrays GET_DrawArrays(struct _glapi_table *disp) {
   5733    return (_glptr_DrawArrays) (GET_by_offset(disp, _gloffset_DrawArrays));
   5734 }
   5735 
   5736 static inline void SET_DrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei)) {
   5737    SET_by_offset(disp, _gloffset_DrawArrays, fn);
   5738 }
   5739 
   5740 typedef void (GLAPIENTRYP _glptr_DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *);
   5741 #define CALL_DrawElements(disp, parameters) \
   5742     (* GET_DrawElements(disp)) parameters
   5743 static inline _glptr_DrawElements GET_DrawElements(struct _glapi_table *disp) {
   5744    return (_glptr_DrawElements) (GET_by_offset(disp, _gloffset_DrawElements));
   5745 }
   5746 
   5747 static inline void SET_DrawElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *)) {
   5748    SET_by_offset(disp, _gloffset_DrawElements, fn);
   5749 }
   5750 
   5751 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointer)(GLsizei, const GLvoid *);
   5752 #define CALL_EdgeFlagPointer(disp, parameters) \
   5753     (* GET_EdgeFlagPointer(disp)) parameters
   5754 static inline _glptr_EdgeFlagPointer GET_EdgeFlagPointer(struct _glapi_table *disp) {
   5755    return (_glptr_EdgeFlagPointer) (GET_by_offset(disp, _gloffset_EdgeFlagPointer));
   5756 }
   5757 
   5758 static inline void SET_EdgeFlagPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
   5759    SET_by_offset(disp, _gloffset_EdgeFlagPointer, fn);
   5760 }
   5761 
   5762 typedef void (GLAPIENTRYP _glptr_EnableClientState)(GLenum);
   5763 #define CALL_EnableClientState(disp, parameters) \
   5764     (* GET_EnableClientState(disp)) parameters
   5765 static inline _glptr_EnableClientState GET_EnableClientState(struct _glapi_table *disp) {
   5766    return (_glptr_EnableClientState) (GET_by_offset(disp, _gloffset_EnableClientState));
   5767 }
   5768 
   5769 static inline void SET_EnableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5770    SET_by_offset(disp, _gloffset_EnableClientState, fn);
   5771 }
   5772 
   5773 typedef void (GLAPIENTRYP _glptr_IndexPointer)(GLenum, GLsizei, const GLvoid *);
   5774 #define CALL_IndexPointer(disp, parameters) \
   5775     (* GET_IndexPointer(disp)) parameters
   5776 static inline _glptr_IndexPointer GET_IndexPointer(struct _glapi_table *disp) {
   5777    return (_glptr_IndexPointer) (GET_by_offset(disp, _gloffset_IndexPointer));
   5778 }
   5779 
   5780 static inline void SET_IndexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   5781    SET_by_offset(disp, _gloffset_IndexPointer, fn);
   5782 }
   5783 
   5784 typedef void (GLAPIENTRYP _glptr_Indexub)(GLubyte);
   5785 #define CALL_Indexub(disp, parameters) \
   5786     (* GET_Indexub(disp)) parameters
   5787 static inline _glptr_Indexub GET_Indexub(struct _glapi_table *disp) {
   5788    return (_glptr_Indexub) (GET_by_offset(disp, _gloffset_Indexub));
   5789 }
   5790 
   5791 static inline void SET_Indexub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte)) {
   5792    SET_by_offset(disp, _gloffset_Indexub, fn);
   5793 }
   5794 
   5795 typedef void (GLAPIENTRYP _glptr_Indexubv)(const GLubyte *);
   5796 #define CALL_Indexubv(disp, parameters) \
   5797     (* GET_Indexubv(disp)) parameters
   5798 static inline _glptr_Indexubv GET_Indexubv(struct _glapi_table *disp) {
   5799    return (_glptr_Indexubv) (GET_by_offset(disp, _gloffset_Indexubv));
   5800 }
   5801 
   5802 static inline void SET_Indexubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   5803    SET_by_offset(disp, _gloffset_Indexubv, fn);
   5804 }
   5805 
   5806 typedef void (GLAPIENTRYP _glptr_InterleavedArrays)(GLenum, GLsizei, const GLvoid *);
   5807 #define CALL_InterleavedArrays(disp, parameters) \
   5808     (* GET_InterleavedArrays(disp)) parameters
   5809 static inline _glptr_InterleavedArrays GET_InterleavedArrays(struct _glapi_table *disp) {
   5810    return (_glptr_InterleavedArrays) (GET_by_offset(disp, _gloffset_InterleavedArrays));
   5811 }
   5812 
   5813 static inline void SET_InterleavedArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   5814    SET_by_offset(disp, _gloffset_InterleavedArrays, fn);
   5815 }
   5816 
   5817 typedef void (GLAPIENTRYP _glptr_NormalPointer)(GLenum, GLsizei, const GLvoid *);
   5818 #define CALL_NormalPointer(disp, parameters) \
   5819     (* GET_NormalPointer(disp)) parameters
   5820 static inline _glptr_NormalPointer GET_NormalPointer(struct _glapi_table *disp) {
   5821    return (_glptr_NormalPointer) (GET_by_offset(disp, _gloffset_NormalPointer));
   5822 }
   5823 
   5824 static inline void SET_NormalPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   5825    SET_by_offset(disp, _gloffset_NormalPointer, fn);
   5826 }
   5827 
   5828 typedef void (GLAPIENTRYP _glptr_PolygonOffset)(GLfloat, GLfloat);
   5829 #define CALL_PolygonOffset(disp, parameters) \
   5830     (* GET_PolygonOffset(disp)) parameters
   5831 static inline _glptr_PolygonOffset GET_PolygonOffset(struct _glapi_table *disp) {
   5832    return (_glptr_PolygonOffset) (GET_by_offset(disp, _gloffset_PolygonOffset));
   5833 }
   5834 
   5835 static inline void SET_PolygonOffset(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   5836    SET_by_offset(disp, _gloffset_PolygonOffset, fn);
   5837 }
   5838 
   5839 typedef void (GLAPIENTRYP _glptr_TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   5840 #define CALL_TexCoordPointer(disp, parameters) \
   5841     (* GET_TexCoordPointer(disp)) parameters
   5842 static inline _glptr_TexCoordPointer GET_TexCoordPointer(struct _glapi_table *disp) {
   5843    return (_glptr_TexCoordPointer) (GET_by_offset(disp, _gloffset_TexCoordPointer));
   5844 }
   5845 
   5846 static inline void SET_TexCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   5847    SET_by_offset(disp, _gloffset_TexCoordPointer, fn);
   5848 }
   5849 
   5850 typedef void (GLAPIENTRYP _glptr_VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   5851 #define CALL_VertexPointer(disp, parameters) \
   5852     (* GET_VertexPointer(disp)) parameters
   5853 static inline _glptr_VertexPointer GET_VertexPointer(struct _glapi_table *disp) {
   5854    return (_glptr_VertexPointer) (GET_by_offset(disp, _gloffset_VertexPointer));
   5855 }
   5856 
   5857 static inline void SET_VertexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   5858    SET_by_offset(disp, _gloffset_VertexPointer, fn);
   5859 }
   5860 
   5861 typedef GLboolean (GLAPIENTRYP _glptr_AreTexturesResident)(GLsizei, const GLuint *, GLboolean *);
   5862 #define CALL_AreTexturesResident(disp, parameters) \
   5863     (* GET_AreTexturesResident(disp)) parameters
   5864 static inline _glptr_AreTexturesResident GET_AreTexturesResident(struct _glapi_table *disp) {
   5865    return (_glptr_AreTexturesResident) (GET_by_offset(disp, _gloffset_AreTexturesResident));
   5866 }
   5867 
   5868 static inline void SET_AreTexturesResident(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
   5869    SET_by_offset(disp, _gloffset_AreTexturesResident, fn);
   5870 }
   5871 
   5872 typedef void (GLAPIENTRYP _glptr_CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
   5873 #define CALL_CopyTexImage1D(disp, parameters) \
   5874     (* GET_CopyTexImage1D(disp)) parameters
   5875 static inline _glptr_CopyTexImage1D GET_CopyTexImage1D(struct _glapi_table *disp) {
   5876    return (_glptr_CopyTexImage1D) (GET_by_offset(disp, _gloffset_CopyTexImage1D));
   5877 }
   5878 
   5879 static inline void SET_CopyTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint)) {
   5880    SET_by_offset(disp, _gloffset_CopyTexImage1D, fn);
   5881 }
   5882 
   5883 typedef void (GLAPIENTRYP _glptr_CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
   5884 #define CALL_CopyTexImage2D(disp, parameters) \
   5885     (* GET_CopyTexImage2D(disp)) parameters
   5886 static inline _glptr_CopyTexImage2D GET_CopyTexImage2D(struct _glapi_table *disp) {
   5887    return (_glptr_CopyTexImage2D) (GET_by_offset(disp, _gloffset_CopyTexImage2D));
   5888 }
   5889 
   5890 static inline void SET_CopyTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint)) {
   5891    SET_by_offset(disp, _gloffset_CopyTexImage2D, fn);
   5892 }
   5893 
   5894 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
   5895 #define CALL_CopyTexSubImage1D(disp, parameters) \
   5896     (* GET_CopyTexSubImage1D(disp)) parameters
   5897 static inline _glptr_CopyTexSubImage1D GET_CopyTexSubImage1D(struct _glapi_table *disp) {
   5898    return (_glptr_CopyTexSubImage1D) (GET_by_offset(disp, _gloffset_CopyTexSubImage1D));
   5899 }
   5900 
   5901 static inline void SET_CopyTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei)) {
   5902    SET_by_offset(disp, _gloffset_CopyTexSubImage1D, fn);
   5903 }
   5904 
   5905 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
   5906 #define CALL_CopyTexSubImage2D(disp, parameters) \
   5907     (* GET_CopyTexSubImage2D(disp)) parameters
   5908 static inline _glptr_CopyTexSubImage2D GET_CopyTexSubImage2D(struct _glapi_table *disp) {
   5909    return (_glptr_CopyTexSubImage2D) (GET_by_offset(disp, _gloffset_CopyTexSubImage2D));
   5910 }
   5911 
   5912 static inline void SET_CopyTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
   5913    SET_by_offset(disp, _gloffset_CopyTexSubImage2D, fn);
   5914 }
   5915 
   5916 typedef void (GLAPIENTRYP _glptr_DeleteTextures)(GLsizei, const GLuint *);
   5917 #define CALL_DeleteTextures(disp, parameters) \
   5918     (* GET_DeleteTextures(disp)) parameters
   5919 static inline _glptr_DeleteTextures GET_DeleteTextures(struct _glapi_table *disp) {
   5920    return (_glptr_DeleteTextures) (GET_by_offset(disp, _gloffset_DeleteTextures));
   5921 }
   5922 
   5923 static inline void SET_DeleteTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   5924    SET_by_offset(disp, _gloffset_DeleteTextures, fn);
   5925 }
   5926 
   5927 typedef void (GLAPIENTRYP _glptr_GenTextures)(GLsizei, GLuint *);
   5928 #define CALL_GenTextures(disp, parameters) \
   5929     (* GET_GenTextures(disp)) parameters
   5930 static inline _glptr_GenTextures GET_GenTextures(struct _glapi_table *disp) {
   5931    return (_glptr_GenTextures) (GET_by_offset(disp, _gloffset_GenTextures));
   5932 }
   5933 
   5934 static inline void SET_GenTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   5935    SET_by_offset(disp, _gloffset_GenTextures, fn);
   5936 }
   5937 
   5938 typedef void (GLAPIENTRYP _glptr_GetPointerv)(GLenum, GLvoid **);
   5939 #define CALL_GetPointerv(disp, parameters) \
   5940     (* GET_GetPointerv(disp)) parameters
   5941 static inline _glptr_GetPointerv GET_GetPointerv(struct _glapi_table *disp) {
   5942    return (_glptr_GetPointerv) (GET_by_offset(disp, _gloffset_GetPointerv));
   5943 }
   5944 
   5945 static inline void SET_GetPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid **)) {
   5946    SET_by_offset(disp, _gloffset_GetPointerv, fn);
   5947 }
   5948 
   5949 typedef GLboolean (GLAPIENTRYP _glptr_IsTexture)(GLuint);
   5950 #define CALL_IsTexture(disp, parameters) \
   5951     (* GET_IsTexture(disp)) parameters
   5952 static inline _glptr_IsTexture GET_IsTexture(struct _glapi_table *disp) {
   5953    return (_glptr_IsTexture) (GET_by_offset(disp, _gloffset_IsTexture));
   5954 }
   5955 
   5956 static inline void SET_IsTexture(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   5957    SET_by_offset(disp, _gloffset_IsTexture, fn);
   5958 }
   5959 
   5960 typedef void (GLAPIENTRYP _glptr_PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *);
   5961 #define CALL_PrioritizeTextures(disp, parameters) \
   5962     (* GET_PrioritizeTextures(disp)) parameters
   5963 static inline _glptr_PrioritizeTextures GET_PrioritizeTextures(struct _glapi_table *disp) {
   5964    return (_glptr_PrioritizeTextures) (GET_by_offset(disp, _gloffset_PrioritizeTextures));
   5965 }
   5966 
   5967 static inline void SET_PrioritizeTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, const GLclampf *)) {
   5968    SET_by_offset(disp, _gloffset_PrioritizeTextures, fn);
   5969 }
   5970 
   5971 typedef void (GLAPIENTRYP _glptr_TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
   5972 #define CALL_TexSubImage1D(disp, parameters) \
   5973     (* GET_TexSubImage1D(disp)) parameters
   5974 static inline _glptr_TexSubImage1D GET_TexSubImage1D(struct _glapi_table *disp) {
   5975    return (_glptr_TexSubImage1D) (GET_by_offset(disp, _gloffset_TexSubImage1D));
   5976 }
   5977 
   5978 static inline void SET_TexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) {
   5979    SET_by_offset(disp, _gloffset_TexSubImage1D, fn);
   5980 }
   5981 
   5982 typedef void (GLAPIENTRYP _glptr_TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   5983 #define CALL_TexSubImage2D(disp, parameters) \
   5984     (* GET_TexSubImage2D(disp)) parameters
   5985 static inline _glptr_TexSubImage2D GET_TexSubImage2D(struct _glapi_table *disp) {
   5986    return (_glptr_TexSubImage2D) (GET_by_offset(disp, _gloffset_TexSubImage2D));
   5987 }
   5988 
   5989 static inline void SET_TexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   5990    SET_by_offset(disp, _gloffset_TexSubImage2D, fn);
   5991 }
   5992 
   5993 typedef void (GLAPIENTRYP _glptr_PopClientAttrib)(void);
   5994 #define CALL_PopClientAttrib(disp, parameters) \
   5995     (* GET_PopClientAttrib(disp)) parameters
   5996 static inline _glptr_PopClientAttrib GET_PopClientAttrib(struct _glapi_table *disp) {
   5997    return (_glptr_PopClientAttrib) (GET_by_offset(disp, _gloffset_PopClientAttrib));
   5998 }
   5999 
   6000 static inline void SET_PopClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   6001    SET_by_offset(disp, _gloffset_PopClientAttrib, fn);
   6002 }
   6003 
   6004 typedef void (GLAPIENTRYP _glptr_PushClientAttrib)(GLbitfield);
   6005 #define CALL_PushClientAttrib(disp, parameters) \
   6006     (* GET_PushClientAttrib(disp)) parameters
   6007 static inline _glptr_PushClientAttrib GET_PushClientAttrib(struct _glapi_table *disp) {
   6008    return (_glptr_PushClientAttrib) (GET_by_offset(disp, _gloffset_PushClientAttrib));
   6009 }
   6010 
   6011 static inline void SET_PushClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   6012    SET_by_offset(disp, _gloffset_PushClientAttrib, fn);
   6013 }
   6014 
   6015 typedef void (GLAPIENTRYP _glptr_BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf);
   6016 #define CALL_BlendColor(disp, parameters) \
   6017     (* GET_BlendColor(disp)) parameters
   6018 static inline _glptr_BlendColor GET_BlendColor(struct _glapi_table *disp) {
   6019    return (_glptr_BlendColor) (GET_by_offset(disp, _gloffset_BlendColor));
   6020 }
   6021 
   6022 static inline void SET_BlendColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
   6023    SET_by_offset(disp, _gloffset_BlendColor, fn);
   6024 }
   6025 
   6026 typedef void (GLAPIENTRYP _glptr_BlendEquation)(GLenum);
   6027 #define CALL_BlendEquation(disp, parameters) \
   6028     (* GET_BlendEquation(disp)) parameters
   6029 static inline _glptr_BlendEquation GET_BlendEquation(struct _glapi_table *disp) {
   6030    return (_glptr_BlendEquation) (GET_by_offset(disp, _gloffset_BlendEquation));
   6031 }
   6032 
   6033 static inline void SET_BlendEquation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6034    SET_by_offset(disp, _gloffset_BlendEquation, fn);
   6035 }
   6036 
   6037 typedef void (GLAPIENTRYP _glptr_DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
   6038 #define CALL_DrawRangeElements(disp, parameters) \
   6039     (* GET_DrawRangeElements(disp)) parameters
   6040 static inline _glptr_DrawRangeElements GET_DrawRangeElements(struct _glapi_table *disp) {
   6041    return (_glptr_DrawRangeElements) (GET_by_offset(disp, _gloffset_DrawRangeElements));
   6042 }
   6043 
   6044 static inline void SET_DrawRangeElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *)) {
   6045    SET_by_offset(disp, _gloffset_DrawRangeElements, fn);
   6046 }
   6047 
   6048 typedef void (GLAPIENTRYP _glptr_ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
   6049 #define CALL_ColorTable(disp, parameters) \
   6050     (* GET_ColorTable(disp)) parameters
   6051 static inline _glptr_ColorTable GET_ColorTable(struct _glapi_table *disp) {
   6052    return (_glptr_ColorTable) (GET_by_offset(disp, _gloffset_ColorTable));
   6053 }
   6054 
   6055 static inline void SET_ColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6056    SET_by_offset(disp, _gloffset_ColorTable, fn);
   6057 }
   6058 
   6059 typedef void (GLAPIENTRYP _glptr_ColorTableParameterfv)(GLenum, GLenum, const GLfloat *);
   6060 #define CALL_ColorTableParameterfv(disp, parameters) \
   6061     (* GET_ColorTableParameterfv(disp)) parameters
   6062 static inline _glptr_ColorTableParameterfv GET_ColorTableParameterfv(struct _glapi_table *disp) {
   6063    return (_glptr_ColorTableParameterfv) (GET_by_offset(disp, _gloffset_ColorTableParameterfv));
   6064 }
   6065 
   6066 static inline void SET_ColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   6067    SET_by_offset(disp, _gloffset_ColorTableParameterfv, fn);
   6068 }
   6069 
   6070 typedef void (GLAPIENTRYP _glptr_ColorTableParameteriv)(GLenum, GLenum, const GLint *);
   6071 #define CALL_ColorTableParameteriv(disp, parameters) \
   6072     (* GET_ColorTableParameteriv(disp)) parameters
   6073 static inline _glptr_ColorTableParameteriv GET_ColorTableParameteriv(struct _glapi_table *disp) {
   6074    return (_glptr_ColorTableParameteriv) (GET_by_offset(disp, _gloffset_ColorTableParameteriv));
   6075 }
   6076 
   6077 static inline void SET_ColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   6078    SET_by_offset(disp, _gloffset_ColorTableParameteriv, fn);
   6079 }
   6080 
   6081 typedef void (GLAPIENTRYP _glptr_CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei);
   6082 #define CALL_CopyColorTable(disp, parameters) \
   6083     (* GET_CopyColorTable(disp)) parameters
   6084 static inline _glptr_CopyColorTable GET_CopyColorTable(struct _glapi_table *disp) {
   6085    return (_glptr_CopyColorTable) (GET_by_offset(disp, _gloffset_CopyColorTable));
   6086 }
   6087 
   6088 static inline void SET_CopyColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
   6089    SET_by_offset(disp, _gloffset_CopyColorTable, fn);
   6090 }
   6091 
   6092 typedef void (GLAPIENTRYP _glptr_GetColorTable)(GLenum, GLenum, GLenum, GLvoid *);
   6093 #define CALL_GetColorTable(disp, parameters) \
   6094     (* GET_GetColorTable(disp)) parameters
   6095 static inline _glptr_GetColorTable GET_GetColorTable(struct _glapi_table *disp) {
   6096    return (_glptr_GetColorTable) (GET_by_offset(disp, _gloffset_GetColorTable));
   6097 }
   6098 
   6099 static inline void SET_GetColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
   6100    SET_by_offset(disp, _gloffset_GetColorTable, fn);
   6101 }
   6102 
   6103 typedef void (GLAPIENTRYP _glptr_GetColorTableParameterfv)(GLenum, GLenum, GLfloat *);
   6104 #define CALL_GetColorTableParameterfv(disp, parameters) \
   6105     (* GET_GetColorTableParameterfv(disp)) parameters
   6106 static inline _glptr_GetColorTableParameterfv GET_GetColorTableParameterfv(struct _glapi_table *disp) {
   6107    return (_glptr_GetColorTableParameterfv) (GET_by_offset(disp, _gloffset_GetColorTableParameterfv));
   6108 }
   6109 
   6110 static inline void SET_GetColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6111    SET_by_offset(disp, _gloffset_GetColorTableParameterfv, fn);
   6112 }
   6113 
   6114 typedef void (GLAPIENTRYP _glptr_GetColorTableParameteriv)(GLenum, GLenum, GLint *);
   6115 #define CALL_GetColorTableParameteriv(disp, parameters) \
   6116     (* GET_GetColorTableParameteriv(disp)) parameters
   6117 static inline _glptr_GetColorTableParameteriv GET_GetColorTableParameteriv(struct _glapi_table *disp) {
   6118    return (_glptr_GetColorTableParameteriv) (GET_by_offset(disp, _gloffset_GetColorTableParameteriv));
   6119 }
   6120 
   6121 static inline void SET_GetColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6122    SET_by_offset(disp, _gloffset_GetColorTableParameteriv, fn);
   6123 }
   6124 
   6125 typedef void (GLAPIENTRYP _glptr_ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6126 #define CALL_ColorSubTable(disp, parameters) \
   6127     (* GET_ColorSubTable(disp)) parameters
   6128 static inline _glptr_ColorSubTable GET_ColorSubTable(struct _glapi_table *disp) {
   6129    return (_glptr_ColorSubTable) (GET_by_offset(disp, _gloffset_ColorSubTable));
   6130 }
   6131 
   6132 static inline void SET_ColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6133    SET_by_offset(disp, _gloffset_ColorSubTable, fn);
   6134 }
   6135 
   6136 typedef void (GLAPIENTRYP _glptr_CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei);
   6137 #define CALL_CopyColorSubTable(disp, parameters) \
   6138     (* GET_CopyColorSubTable(disp)) parameters
   6139 static inline _glptr_CopyColorSubTable GET_CopyColorSubTable(struct _glapi_table *disp) {
   6140    return (_glptr_CopyColorSubTable) (GET_by_offset(disp, _gloffset_CopyColorSubTable));
   6141 }
   6142 
   6143 static inline void SET_CopyColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLint, GLint, GLsizei)) {
   6144    SET_by_offset(disp, _gloffset_CopyColorSubTable, fn);
   6145 }
   6146 
   6147 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
   6148 #define CALL_ConvolutionFilter1D(disp, parameters) \
   6149     (* GET_ConvolutionFilter1D(disp)) parameters
   6150 static inline _glptr_ConvolutionFilter1D GET_ConvolutionFilter1D(struct _glapi_table *disp) {
   6151    return (_glptr_ConvolutionFilter1D) (GET_by_offset(disp, _gloffset_ConvolutionFilter1D));
   6152 }
   6153 
   6154 static inline void SET_ConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6155    SET_by_offset(disp, _gloffset_ConvolutionFilter1D, fn);
   6156 }
   6157 
   6158 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6159 #define CALL_ConvolutionFilter2D(disp, parameters) \
   6160     (* GET_ConvolutionFilter2D(disp)) parameters
   6161 static inline _glptr_ConvolutionFilter2D GET_ConvolutionFilter2D(struct _glapi_table *disp) {
   6162    return (_glptr_ConvolutionFilter2D) (GET_by_offset(disp, _gloffset_ConvolutionFilter2D));
   6163 }
   6164 
   6165 static inline void SET_ConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6166    SET_by_offset(disp, _gloffset_ConvolutionFilter2D, fn);
   6167 }
   6168 
   6169 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterf)(GLenum, GLenum, GLfloat);
   6170 #define CALL_ConvolutionParameterf(disp, parameters) \
   6171     (* GET_ConvolutionParameterf(disp)) parameters
   6172 static inline _glptr_ConvolutionParameterf GET_ConvolutionParameterf(struct _glapi_table *disp) {
   6173    return (_glptr_ConvolutionParameterf) (GET_by_offset(disp, _gloffset_ConvolutionParameterf));
   6174 }
   6175 
   6176 static inline void SET_ConvolutionParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   6177    SET_by_offset(disp, _gloffset_ConvolutionParameterf, fn);
   6178 }
   6179 
   6180 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *);
   6181 #define CALL_ConvolutionParameterfv(disp, parameters) \
   6182     (* GET_ConvolutionParameterfv(disp)) parameters
   6183 static inline _glptr_ConvolutionParameterfv GET_ConvolutionParameterfv(struct _glapi_table *disp) {
   6184    return (_glptr_ConvolutionParameterfv) (GET_by_offset(disp, _gloffset_ConvolutionParameterfv));
   6185 }
   6186 
   6187 static inline void SET_ConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   6188    SET_by_offset(disp, _gloffset_ConvolutionParameterfv, fn);
   6189 }
   6190 
   6191 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteri)(GLenum, GLenum, GLint);
   6192 #define CALL_ConvolutionParameteri(disp, parameters) \
   6193     (* GET_ConvolutionParameteri(disp)) parameters
   6194 static inline _glptr_ConvolutionParameteri GET_ConvolutionParameteri(struct _glapi_table *disp) {
   6195    return (_glptr_ConvolutionParameteri) (GET_by_offset(disp, _gloffset_ConvolutionParameteri));
   6196 }
   6197 
   6198 static inline void SET_ConvolutionParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   6199    SET_by_offset(disp, _gloffset_ConvolutionParameteri, fn);
   6200 }
   6201 
   6202 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteriv)(GLenum, GLenum, const GLint *);
   6203 #define CALL_ConvolutionParameteriv(disp, parameters) \
   6204     (* GET_ConvolutionParameteriv(disp)) parameters
   6205 static inline _glptr_ConvolutionParameteriv GET_ConvolutionParameteriv(struct _glapi_table *disp) {
   6206    return (_glptr_ConvolutionParameteriv) (GET_by_offset(disp, _gloffset_ConvolutionParameteriv));
   6207 }
   6208 
   6209 static inline void SET_ConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   6210    SET_by_offset(disp, _gloffset_ConvolutionParameteriv, fn);
   6211 }
   6212 
   6213 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter1D)(GLenum, GLenum, GLint, GLint, GLsizei);
   6214 #define CALL_CopyConvolutionFilter1D(disp, parameters) \
   6215     (* GET_CopyConvolutionFilter1D(disp)) parameters
   6216 static inline _glptr_CopyConvolutionFilter1D GET_CopyConvolutionFilter1D(struct _glapi_table *disp) {
   6217    return (_glptr_CopyConvolutionFilter1D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter1D));
   6218 }
   6219 
   6220 static inline void SET_CopyConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
   6221    SET_by_offset(disp, _gloffset_CopyConvolutionFilter1D, fn);
   6222 }
   6223 
   6224 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter2D)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
   6225 #define CALL_CopyConvolutionFilter2D(disp, parameters) \
   6226     (* GET_CopyConvolutionFilter2D(disp)) parameters
   6227 static inline _glptr_CopyConvolutionFilter2D GET_CopyConvolutionFilter2D(struct _glapi_table *disp) {
   6228    return (_glptr_CopyConvolutionFilter2D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter2D));
   6229 }
   6230 
   6231 static inline void SET_CopyConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei)) {
   6232    SET_by_offset(disp, _gloffset_CopyConvolutionFilter2D, fn);
   6233 }
   6234 
   6235 typedef void (GLAPIENTRYP _glptr_GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *);
   6236 #define CALL_GetConvolutionFilter(disp, parameters) \
   6237     (* GET_GetConvolutionFilter(disp)) parameters
   6238 static inline _glptr_GetConvolutionFilter GET_GetConvolutionFilter(struct _glapi_table *disp) {
   6239    return (_glptr_GetConvolutionFilter) (GET_by_offset(disp, _gloffset_GetConvolutionFilter));
   6240 }
   6241 
   6242 static inline void SET_GetConvolutionFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
   6243    SET_by_offset(disp, _gloffset_GetConvolutionFilter, fn);
   6244 }
   6245 
   6246 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *);
   6247 #define CALL_GetConvolutionParameterfv(disp, parameters) \
   6248     (* GET_GetConvolutionParameterfv(disp)) parameters
   6249 static inline _glptr_GetConvolutionParameterfv GET_GetConvolutionParameterfv(struct _glapi_table *disp) {
   6250    return (_glptr_GetConvolutionParameterfv) (GET_by_offset(disp, _gloffset_GetConvolutionParameterfv));
   6251 }
   6252 
   6253 static inline void SET_GetConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6254    SET_by_offset(disp, _gloffset_GetConvolutionParameterfv, fn);
   6255 }
   6256 
   6257 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameteriv)(GLenum, GLenum, GLint *);
   6258 #define CALL_GetConvolutionParameteriv(disp, parameters) \
   6259     (* GET_GetConvolutionParameteriv(disp)) parameters
   6260 static inline _glptr_GetConvolutionParameteriv GET_GetConvolutionParameteriv(struct _glapi_table *disp) {
   6261    return (_glptr_GetConvolutionParameteriv) (GET_by_offset(disp, _gloffset_GetConvolutionParameteriv));
   6262 }
   6263 
   6264 static inline void SET_GetConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6265    SET_by_offset(disp, _gloffset_GetConvolutionParameteriv, fn);
   6266 }
   6267 
   6268 typedef void (GLAPIENTRYP _glptr_GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
   6269 #define CALL_GetSeparableFilter(disp, parameters) \
   6270     (* GET_GetSeparableFilter(disp)) parameters
   6271 static inline _glptr_GetSeparableFilter GET_GetSeparableFilter(struct _glapi_table *disp) {
   6272    return (_glptr_GetSeparableFilter) (GET_by_offset(disp, _gloffset_GetSeparableFilter));
   6273 }
   6274 
   6275 static inline void SET_GetSeparableFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *)) {
   6276    SET_by_offset(disp, _gloffset_GetSeparableFilter, fn);
   6277 }
   6278 
   6279 typedef void (GLAPIENTRYP _glptr_SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
   6280 #define CALL_SeparableFilter2D(disp, parameters) \
   6281     (* GET_SeparableFilter2D(disp)) parameters
   6282 static inline _glptr_SeparableFilter2D GET_SeparableFilter2D(struct _glapi_table *disp) {
   6283    return (_glptr_SeparableFilter2D) (GET_by_offset(disp, _gloffset_SeparableFilter2D));
   6284 }
   6285 
   6286 static inline void SET_SeparableFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *)) {
   6287    SET_by_offset(disp, _gloffset_SeparableFilter2D, fn);
   6288 }
   6289 
   6290 typedef void (GLAPIENTRYP _glptr_GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
   6291 #define CALL_GetHistogram(disp, parameters) \
   6292     (* GET_GetHistogram(disp)) parameters
   6293 static inline _glptr_GetHistogram GET_GetHistogram(struct _glapi_table *disp) {
   6294    return (_glptr_GetHistogram) (GET_by_offset(disp, _gloffset_GetHistogram));
   6295 }
   6296 
   6297 static inline void SET_GetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
   6298    SET_by_offset(disp, _gloffset_GetHistogram, fn);
   6299 }
   6300 
   6301 typedef void (GLAPIENTRYP _glptr_GetHistogramParameterfv)(GLenum, GLenum, GLfloat *);
   6302 #define CALL_GetHistogramParameterfv(disp, parameters) \
   6303     (* GET_GetHistogramParameterfv(disp)) parameters
   6304 static inline _glptr_GetHistogramParameterfv GET_GetHistogramParameterfv(struct _glapi_table *disp) {
   6305    return (_glptr_GetHistogramParameterfv) (GET_by_offset(disp, _gloffset_GetHistogramParameterfv));
   6306 }
   6307 
   6308 static inline void SET_GetHistogramParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6309    SET_by_offset(disp, _gloffset_GetHistogramParameterfv, fn);
   6310 }
   6311 
   6312 typedef void (GLAPIENTRYP _glptr_GetHistogramParameteriv)(GLenum, GLenum, GLint *);
   6313 #define CALL_GetHistogramParameteriv(disp, parameters) \
   6314     (* GET_GetHistogramParameteriv(disp)) parameters
   6315 static inline _glptr_GetHistogramParameteriv GET_GetHistogramParameteriv(struct _glapi_table *disp) {
   6316    return (_glptr_GetHistogramParameteriv) (GET_by_offset(disp, _gloffset_GetHistogramParameteriv));
   6317 }
   6318 
   6319 static inline void SET_GetHistogramParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6320    SET_by_offset(disp, _gloffset_GetHistogramParameteriv, fn);
   6321 }
   6322 
   6323 typedef void (GLAPIENTRYP _glptr_GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
   6324 #define CALL_GetMinmax(disp, parameters) \
   6325     (* GET_GetMinmax(disp)) parameters
   6326 static inline _glptr_GetMinmax GET_GetMinmax(struct _glapi_table *disp) {
   6327    return (_glptr_GetMinmax) (GET_by_offset(disp, _gloffset_GetMinmax));
   6328 }
   6329 
   6330 static inline void SET_GetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
   6331    SET_by_offset(disp, _gloffset_GetMinmax, fn);
   6332 }
   6333 
   6334 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *);
   6335 #define CALL_GetMinmaxParameterfv(disp, parameters) \
   6336     (* GET_GetMinmaxParameterfv(disp)) parameters
   6337 static inline _glptr_GetMinmaxParameterfv GET_GetMinmaxParameterfv(struct _glapi_table *disp) {
   6338    return (_glptr_GetMinmaxParameterfv) (GET_by_offset(disp, _gloffset_GetMinmaxParameterfv));
   6339 }
   6340 
   6341 static inline void SET_GetMinmaxParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6342    SET_by_offset(disp, _gloffset_GetMinmaxParameterfv, fn);
   6343 }
   6344 
   6345 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameteriv)(GLenum, GLenum, GLint *);
   6346 #define CALL_GetMinmaxParameteriv(disp, parameters) \
   6347     (* GET_GetMinmaxParameteriv(disp)) parameters
   6348 static inline _glptr_GetMinmaxParameteriv GET_GetMinmaxParameteriv(struct _glapi_table *disp) {
   6349    return (_glptr_GetMinmaxParameteriv) (GET_by_offset(disp, _gloffset_GetMinmaxParameteriv));
   6350 }
   6351 
   6352 static inline void SET_GetMinmaxParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6353    SET_by_offset(disp, _gloffset_GetMinmaxParameteriv, fn);
   6354 }
   6355 
   6356 typedef void (GLAPIENTRYP _glptr_Histogram)(GLenum, GLsizei, GLenum, GLboolean);
   6357 #define CALL_Histogram(disp, parameters) \
   6358     (* GET_Histogram(disp)) parameters
   6359 static inline _glptr_Histogram GET_Histogram(struct _glapi_table *disp) {
   6360    return (_glptr_Histogram) (GET_by_offset(disp, _gloffset_Histogram));
   6361 }
   6362 
   6363 static inline void SET_Histogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLboolean)) {
   6364    SET_by_offset(disp, _gloffset_Histogram, fn);
   6365 }
   6366 
   6367 typedef void (GLAPIENTRYP _glptr_Minmax)(GLenum, GLenum, GLboolean);
   6368 #define CALL_Minmax(disp, parameters) \
   6369     (* GET_Minmax(disp)) parameters
   6370 static inline _glptr_Minmax GET_Minmax(struct _glapi_table *disp) {
   6371    return (_glptr_Minmax) (GET_by_offset(disp, _gloffset_Minmax));
   6372 }
   6373 
   6374 static inline void SET_Minmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLboolean)) {
   6375    SET_by_offset(disp, _gloffset_Minmax, fn);
   6376 }
   6377 
   6378 typedef void (GLAPIENTRYP _glptr_ResetHistogram)(GLenum);
   6379 #define CALL_ResetHistogram(disp, parameters) \
   6380     (* GET_ResetHistogram(disp)) parameters
   6381 static inline _glptr_ResetHistogram GET_ResetHistogram(struct _glapi_table *disp) {
   6382    return (_glptr_ResetHistogram) (GET_by_offset(disp, _gloffset_ResetHistogram));
   6383 }
   6384 
   6385 static inline void SET_ResetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6386    SET_by_offset(disp, _gloffset_ResetHistogram, fn);
   6387 }
   6388 
   6389 typedef void (GLAPIENTRYP _glptr_ResetMinmax)(GLenum);
   6390 #define CALL_ResetMinmax(disp, parameters) \
   6391     (* GET_ResetMinmax(disp)) parameters
   6392 static inline _glptr_ResetMinmax GET_ResetMinmax(struct _glapi_table *disp) {
   6393    return (_glptr_ResetMinmax) (GET_by_offset(disp, _gloffset_ResetMinmax));
   6394 }
   6395 
   6396 static inline void SET_ResetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6397    SET_by_offset(disp, _gloffset_ResetMinmax, fn);
   6398 }
   6399 
   6400 typedef void (GLAPIENTRYP _glptr_TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
   6401 #define CALL_TexImage3D(disp, parameters) \
   6402     (* GET_TexImage3D(disp)) parameters
   6403 static inline _glptr_TexImage3D GET_TexImage3D(struct _glapi_table *disp) {
   6404    return (_glptr_TexImage3D) (GET_by_offset(disp, _gloffset_TexImage3D));
   6405 }
   6406 
   6407 static inline void SET_TexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
   6408    SET_by_offset(disp, _gloffset_TexImage3D, fn);
   6409 }
   6410 
   6411 typedef void (GLAPIENTRYP _glptr_TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6412 #define CALL_TexSubImage3D(disp, parameters) \
   6413     (* GET_TexSubImage3D(disp)) parameters
   6414 static inline _glptr_TexSubImage3D GET_TexSubImage3D(struct _glapi_table *disp) {
   6415    return (_glptr_TexSubImage3D) (GET_by_offset(disp, _gloffset_TexSubImage3D));
   6416 }
   6417 
   6418 static inline void SET_TexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6419    SET_by_offset(disp, _gloffset_TexSubImage3D, fn);
   6420 }
   6421 
   6422 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
   6423 #define CALL_CopyTexSubImage3D(disp, parameters) \
   6424     (* GET_CopyTexSubImage3D(disp)) parameters
   6425 static inline _glptr_CopyTexSubImage3D GET_CopyTexSubImage3D(struct _glapi_table *disp) {
   6426    return (_glptr_CopyTexSubImage3D) (GET_by_offset(disp, _gloffset_CopyTexSubImage3D));
   6427 }
   6428 
   6429 static inline void SET_CopyTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
   6430    SET_by_offset(disp, _gloffset_CopyTexSubImage3D, fn);
   6431 }
   6432 
   6433 typedef void (GLAPIENTRYP _glptr_ActiveTexture)(GLenum);
   6434 #define CALL_ActiveTexture(disp, parameters) \
   6435     (* GET_ActiveTexture(disp)) parameters
   6436 static inline _glptr_ActiveTexture GET_ActiveTexture(struct _glapi_table *disp) {
   6437    return (_glptr_ActiveTexture) (GET_by_offset(disp, _gloffset_ActiveTexture));
   6438 }
   6439 
   6440 static inline void SET_ActiveTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6441    SET_by_offset(disp, _gloffset_ActiveTexture, fn);
   6442 }
   6443 
   6444 typedef void (GLAPIENTRYP _glptr_ClientActiveTexture)(GLenum);
   6445 #define CALL_ClientActiveTexture(disp, parameters) \
   6446     (* GET_ClientActiveTexture(disp)) parameters
   6447 static inline _glptr_ClientActiveTexture GET_ClientActiveTexture(struct _glapi_table *disp) {
   6448    return (_glptr_ClientActiveTexture) (GET_by_offset(disp, _gloffset_ClientActiveTexture));
   6449 }
   6450 
   6451 static inline void SET_ClientActiveTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6452    SET_by_offset(disp, _gloffset_ClientActiveTexture, fn);
   6453 }
   6454 
   6455 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1d)(GLenum, GLdouble);
   6456 #define CALL_MultiTexCoord1d(disp, parameters) \
   6457     (* GET_MultiTexCoord1d(disp)) parameters
   6458 static inline _glptr_MultiTexCoord1d GET_MultiTexCoord1d(struct _glapi_table *disp) {
   6459    return (_glptr_MultiTexCoord1d) (GET_by_offset(disp, _gloffset_MultiTexCoord1d));
   6460 }
   6461 
   6462 static inline void SET_MultiTexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble)) {
   6463    SET_by_offset(disp, _gloffset_MultiTexCoord1d, fn);
   6464 }
   6465 
   6466 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dv)(GLenum, const GLdouble *);
   6467 #define CALL_MultiTexCoord1dv(disp, parameters) \
   6468     (* GET_MultiTexCoord1dv(disp)) parameters
   6469 static inline _glptr_MultiTexCoord1dv GET_MultiTexCoord1dv(struct _glapi_table *disp) {
   6470    return (_glptr_MultiTexCoord1dv) (GET_by_offset(disp, _gloffset_MultiTexCoord1dv));
   6471 }
   6472 
   6473 static inline void SET_MultiTexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6474    SET_by_offset(disp, _gloffset_MultiTexCoord1dv, fn);
   6475 }
   6476 
   6477 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fARB)(GLenum, GLfloat);
   6478 #define CALL_MultiTexCoord1fARB(disp, parameters) \
   6479     (* GET_MultiTexCoord1fARB(disp)) parameters
   6480 static inline _glptr_MultiTexCoord1fARB GET_MultiTexCoord1fARB(struct _glapi_table *disp) {
   6481    return (_glptr_MultiTexCoord1fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fARB));
   6482 }
   6483 
   6484 static inline void SET_MultiTexCoord1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   6485    SET_by_offset(disp, _gloffset_MultiTexCoord1fARB, fn);
   6486 }
   6487 
   6488 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fvARB)(GLenum, const GLfloat *);
   6489 #define CALL_MultiTexCoord1fvARB(disp, parameters) \
   6490     (* GET_MultiTexCoord1fvARB(disp)) parameters
   6491 static inline _glptr_MultiTexCoord1fvARB GET_MultiTexCoord1fvARB(struct _glapi_table *disp) {
   6492    return (_glptr_MultiTexCoord1fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fvARB));
   6493 }
   6494 
   6495 static inline void SET_MultiTexCoord1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6496    SET_by_offset(disp, _gloffset_MultiTexCoord1fvARB, fn);
   6497 }
   6498 
   6499 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1i)(GLenum, GLint);
   6500 #define CALL_MultiTexCoord1i(disp, parameters) \
   6501     (* GET_MultiTexCoord1i(disp)) parameters
   6502 static inline _glptr_MultiTexCoord1i GET_MultiTexCoord1i(struct _glapi_table *disp) {
   6503    return (_glptr_MultiTexCoord1i) (GET_by_offset(disp, _gloffset_MultiTexCoord1i));
   6504 }
   6505 
   6506 static inline void SET_MultiTexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   6507    SET_by_offset(disp, _gloffset_MultiTexCoord1i, fn);
   6508 }
   6509 
   6510 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1iv)(GLenum, const GLint *);
   6511 #define CALL_MultiTexCoord1iv(disp, parameters) \
   6512     (* GET_MultiTexCoord1iv(disp)) parameters
   6513 static inline _glptr_MultiTexCoord1iv GET_MultiTexCoord1iv(struct _glapi_table *disp) {
   6514    return (_glptr_MultiTexCoord1iv) (GET_by_offset(disp, _gloffset_MultiTexCoord1iv));
   6515 }
   6516 
   6517 static inline void SET_MultiTexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6518    SET_by_offset(disp, _gloffset_MultiTexCoord1iv, fn);
   6519 }
   6520 
   6521 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1s)(GLenum, GLshort);
   6522 #define CALL_MultiTexCoord1s(disp, parameters) \
   6523     (* GET_MultiTexCoord1s(disp)) parameters
   6524 static inline _glptr_MultiTexCoord1s GET_MultiTexCoord1s(struct _glapi_table *disp) {
   6525    return (_glptr_MultiTexCoord1s) (GET_by_offset(disp, _gloffset_MultiTexCoord1s));
   6526 }
   6527 
   6528 static inline void SET_MultiTexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort)) {
   6529    SET_by_offset(disp, _gloffset_MultiTexCoord1s, fn);
   6530 }
   6531 
   6532 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1sv)(GLenum, const GLshort *);
   6533 #define CALL_MultiTexCoord1sv(disp, parameters) \
   6534     (* GET_MultiTexCoord1sv(disp)) parameters
   6535 static inline _glptr_MultiTexCoord1sv GET_MultiTexCoord1sv(struct _glapi_table *disp) {
   6536    return (_glptr_MultiTexCoord1sv) (GET_by_offset(disp, _gloffset_MultiTexCoord1sv));
   6537 }
   6538 
   6539 static inline void SET_MultiTexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6540    SET_by_offset(disp, _gloffset_MultiTexCoord1sv, fn);
   6541 }
   6542 
   6543 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2d)(GLenum, GLdouble, GLdouble);
   6544 #define CALL_MultiTexCoord2d(disp, parameters) \
   6545     (* GET_MultiTexCoord2d(disp)) parameters
   6546 static inline _glptr_MultiTexCoord2d GET_MultiTexCoord2d(struct _glapi_table *disp) {
   6547    return (_glptr_MultiTexCoord2d) (GET_by_offset(disp, _gloffset_MultiTexCoord2d));
   6548 }
   6549 
   6550 static inline void SET_MultiTexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble)) {
   6551    SET_by_offset(disp, _gloffset_MultiTexCoord2d, fn);
   6552 }
   6553 
   6554 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dv)(GLenum, const GLdouble *);
   6555 #define CALL_MultiTexCoord2dv(disp, parameters) \
   6556     (* GET_MultiTexCoord2dv(disp)) parameters
   6557 static inline _glptr_MultiTexCoord2dv GET_MultiTexCoord2dv(struct _glapi_table *disp) {
   6558    return (_glptr_MultiTexCoord2dv) (GET_by_offset(disp, _gloffset_MultiTexCoord2dv));
   6559 }
   6560 
   6561 static inline void SET_MultiTexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6562    SET_by_offset(disp, _gloffset_MultiTexCoord2dv, fn);
   6563 }
   6564 
   6565 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fARB)(GLenum, GLfloat, GLfloat);
   6566 #define CALL_MultiTexCoord2fARB(disp, parameters) \
   6567     (* GET_MultiTexCoord2fARB(disp)) parameters
   6568 static inline _glptr_MultiTexCoord2fARB GET_MultiTexCoord2fARB(struct _glapi_table *disp) {
   6569    return (_glptr_MultiTexCoord2fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fARB));
   6570 }
   6571 
   6572 static inline void SET_MultiTexCoord2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat)) {
   6573    SET_by_offset(disp, _gloffset_MultiTexCoord2fARB, fn);
   6574 }
   6575 
   6576 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fvARB)(GLenum, const GLfloat *);
   6577 #define CALL_MultiTexCoord2fvARB(disp, parameters) \
   6578     (* GET_MultiTexCoord2fvARB(disp)) parameters
   6579 static inline _glptr_MultiTexCoord2fvARB GET_MultiTexCoord2fvARB(struct _glapi_table *disp) {
   6580    return (_glptr_MultiTexCoord2fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fvARB));
   6581 }
   6582 
   6583 static inline void SET_MultiTexCoord2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6584    SET_by_offset(disp, _gloffset_MultiTexCoord2fvARB, fn);
   6585 }
   6586 
   6587 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2i)(GLenum, GLint, GLint);
   6588 #define CALL_MultiTexCoord2i(disp, parameters) \
   6589     (* GET_MultiTexCoord2i(disp)) parameters
   6590 static inline _glptr_MultiTexCoord2i GET_MultiTexCoord2i(struct _glapi_table *disp) {
   6591    return (_glptr_MultiTexCoord2i) (GET_by_offset(disp, _gloffset_MultiTexCoord2i));
   6592 }
   6593 
   6594 static inline void SET_MultiTexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
   6595    SET_by_offset(disp, _gloffset_MultiTexCoord2i, fn);
   6596 }
   6597 
   6598 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2iv)(GLenum, const GLint *);
   6599 #define CALL_MultiTexCoord2iv(disp, parameters) \
   6600     (* GET_MultiTexCoord2iv(disp)) parameters
   6601 static inline _glptr_MultiTexCoord2iv GET_MultiTexCoord2iv(struct _glapi_table *disp) {
   6602    return (_glptr_MultiTexCoord2iv) (GET_by_offset(disp, _gloffset_MultiTexCoord2iv));
   6603 }
   6604 
   6605 static inline void SET_MultiTexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6606    SET_by_offset(disp, _gloffset_MultiTexCoord2iv, fn);
   6607 }
   6608 
   6609 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2s)(GLenum, GLshort, GLshort);
   6610 #define CALL_MultiTexCoord2s(disp, parameters) \
   6611     (* GET_MultiTexCoord2s(disp)) parameters
   6612 static inline _glptr_MultiTexCoord2s GET_MultiTexCoord2s(struct _glapi_table *disp) {
   6613    return (_glptr_MultiTexCoord2s) (GET_by_offset(disp, _gloffset_MultiTexCoord2s));
   6614 }
   6615 
   6616 static inline void SET_MultiTexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort)) {
   6617    SET_by_offset(disp, _gloffset_MultiTexCoord2s, fn);
   6618 }
   6619 
   6620 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2sv)(GLenum, const GLshort *);
   6621 #define CALL_MultiTexCoord2sv(disp, parameters) \
   6622     (* GET_MultiTexCoord2sv(disp)) parameters
   6623 static inline _glptr_MultiTexCoord2sv GET_MultiTexCoord2sv(struct _glapi_table *disp) {
   6624    return (_glptr_MultiTexCoord2sv) (GET_by_offset(disp, _gloffset_MultiTexCoord2sv));
   6625 }
   6626 
   6627 static inline void SET_MultiTexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6628    SET_by_offset(disp, _gloffset_MultiTexCoord2sv, fn);
   6629 }
   6630 
   6631 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3d)(GLenum, GLdouble, GLdouble, GLdouble);
   6632 #define CALL_MultiTexCoord3d(disp, parameters) \
   6633     (* GET_MultiTexCoord3d(disp)) parameters
   6634 static inline _glptr_MultiTexCoord3d GET_MultiTexCoord3d(struct _glapi_table *disp) {
   6635    return (_glptr_MultiTexCoord3d) (GET_by_offset(disp, _gloffset_MultiTexCoord3d));
   6636 }
   6637 
   6638 static inline void SET_MultiTexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble)) {
   6639    SET_by_offset(disp, _gloffset_MultiTexCoord3d, fn);
   6640 }
   6641 
   6642 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dv)(GLenum, const GLdouble *);
   6643 #define CALL_MultiTexCoord3dv(disp, parameters) \
   6644     (* GET_MultiTexCoord3dv(disp)) parameters
   6645 static inline _glptr_MultiTexCoord3dv GET_MultiTexCoord3dv(struct _glapi_table *disp) {
   6646    return (_glptr_MultiTexCoord3dv) (GET_by_offset(disp, _gloffset_MultiTexCoord3dv));
   6647 }
   6648 
   6649 static inline void SET_MultiTexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6650    SET_by_offset(disp, _gloffset_MultiTexCoord3dv, fn);
   6651 }
   6652 
   6653 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fARB)(GLenum, GLfloat, GLfloat, GLfloat);
   6654 #define CALL_MultiTexCoord3fARB(disp, parameters) \
   6655     (* GET_MultiTexCoord3fARB(disp)) parameters
   6656 static inline _glptr_MultiTexCoord3fARB GET_MultiTexCoord3fARB(struct _glapi_table *disp) {
   6657    return (_glptr_MultiTexCoord3fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fARB));
   6658 }
   6659 
   6660 static inline void SET_MultiTexCoord3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat)) {
   6661    SET_by_offset(disp, _gloffset_MultiTexCoord3fARB, fn);
   6662 }
   6663 
   6664 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fvARB)(GLenum, const GLfloat *);
   6665 #define CALL_MultiTexCoord3fvARB(disp, parameters) \
   6666     (* GET_MultiTexCoord3fvARB(disp)) parameters
   6667 static inline _glptr_MultiTexCoord3fvARB GET_MultiTexCoord3fvARB(struct _glapi_table *disp) {
   6668    return (_glptr_MultiTexCoord3fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fvARB));
   6669 }
   6670 
   6671 static inline void SET_MultiTexCoord3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6672    SET_by_offset(disp, _gloffset_MultiTexCoord3fvARB, fn);
   6673 }
   6674 
   6675 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3i)(GLenum, GLint, GLint, GLint);
   6676 #define CALL_MultiTexCoord3i(disp, parameters) \
   6677     (* GET_MultiTexCoord3i(disp)) parameters
   6678 static inline _glptr_MultiTexCoord3i GET_MultiTexCoord3i(struct _glapi_table *disp) {
   6679    return (_glptr_MultiTexCoord3i) (GET_by_offset(disp, _gloffset_MultiTexCoord3i));
   6680 }
   6681 
   6682 static inline void SET_MultiTexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint)) {
   6683    SET_by_offset(disp, _gloffset_MultiTexCoord3i, fn);
   6684 }
   6685 
   6686 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3iv)(GLenum, const GLint *);
   6687 #define CALL_MultiTexCoord3iv(disp, parameters) \
   6688     (* GET_MultiTexCoord3iv(disp)) parameters
   6689 static inline _glptr_MultiTexCoord3iv GET_MultiTexCoord3iv(struct _glapi_table *disp) {
   6690    return (_glptr_MultiTexCoord3iv) (GET_by_offset(disp, _gloffset_MultiTexCoord3iv));
   6691 }
   6692 
   6693 static inline void SET_MultiTexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6694    SET_by_offset(disp, _gloffset_MultiTexCoord3iv, fn);
   6695 }
   6696 
   6697 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3s)(GLenum, GLshort, GLshort, GLshort);
   6698 #define CALL_MultiTexCoord3s(disp, parameters) \
   6699     (* GET_MultiTexCoord3s(disp)) parameters
   6700 static inline _glptr_MultiTexCoord3s GET_MultiTexCoord3s(struct _glapi_table *disp) {
   6701    return (_glptr_MultiTexCoord3s) (GET_by_offset(disp, _gloffset_MultiTexCoord3s));
   6702 }
   6703 
   6704 static inline void SET_MultiTexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort)) {
   6705    SET_by_offset(disp, _gloffset_MultiTexCoord3s, fn);
   6706 }
   6707 
   6708 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3sv)(GLenum, const GLshort *);
   6709 #define CALL_MultiTexCoord3sv(disp, parameters) \
   6710     (* GET_MultiTexCoord3sv(disp)) parameters
   6711 static inline _glptr_MultiTexCoord3sv GET_MultiTexCoord3sv(struct _glapi_table *disp) {
   6712    return (_glptr_MultiTexCoord3sv) (GET_by_offset(disp, _gloffset_MultiTexCoord3sv));
   6713 }
   6714 
   6715 static inline void SET_MultiTexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6716    SET_by_offset(disp, _gloffset_MultiTexCoord3sv, fn);
   6717 }
   6718 
   6719 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4d)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
   6720 #define