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 1411
     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 1003
    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 GetImageHandleARB_remap_index 504
    978 #define GetTextureHandleARB_remap_index 505
    979 #define GetTextureSamplerHandleARB_remap_index 506
    980 #define GetVertexAttribLui64vARB_remap_index 507
    981 #define IsImageHandleResidentARB_remap_index 508
    982 #define IsTextureHandleResidentARB_remap_index 509
    983 #define MakeImageHandleNonResidentARB_remap_index 510
    984 #define MakeImageHandleResidentARB_remap_index 511
    985 #define MakeTextureHandleNonResidentARB_remap_index 512
    986 #define MakeTextureHandleResidentARB_remap_index 513
    987 #define ProgramUniformHandleui64ARB_remap_index 514
    988 #define ProgramUniformHandleui64vARB_remap_index 515
    989 #define UniformHandleui64ARB_remap_index 516
    990 #define UniformHandleui64vARB_remap_index 517
    991 #define VertexAttribL1ui64ARB_remap_index 518
    992 #define VertexAttribL1ui64vARB_remap_index 519
    993 #define DispatchComputeGroupSizeARB_remap_index 520
    994 #define MultiDrawArraysIndirectCountARB_remap_index 521
    995 #define MultiDrawElementsIndirectCountARB_remap_index 522
    996 #define ClipControl_remap_index 523
    997 #define BindTextureUnit_remap_index 524
    998 #define BlitNamedFramebuffer_remap_index 525
    999 #define CheckNamedFramebufferStatus_remap_index 526
   1000 #define ClearNamedBufferData_remap_index 527
   1001 #define ClearNamedBufferSubData_remap_index 528
   1002 #define ClearNamedFramebufferfi_remap_index 529
   1003 #define ClearNamedFramebufferfv_remap_index 530
   1004 #define ClearNamedFramebufferiv_remap_index 531
   1005 #define ClearNamedFramebufferuiv_remap_index 532
   1006 #define CompressedTextureSubImage1D_remap_index 533
   1007 #define CompressedTextureSubImage2D_remap_index 534
   1008 #define CompressedTextureSubImage3D_remap_index 535
   1009 #define CopyNamedBufferSubData_remap_index 536
   1010 #define CopyTextureSubImage1D_remap_index 537
   1011 #define CopyTextureSubImage2D_remap_index 538
   1012 #define CopyTextureSubImage3D_remap_index 539
   1013 #define CreateBuffers_remap_index 540
   1014 #define CreateFramebuffers_remap_index 541
   1015 #define CreateProgramPipelines_remap_index 542
   1016 #define CreateQueries_remap_index 543
   1017 #define CreateRenderbuffers_remap_index 544
   1018 #define CreateSamplers_remap_index 545
   1019 #define CreateTextures_remap_index 546
   1020 #define CreateTransformFeedbacks_remap_index 547
   1021 #define CreateVertexArrays_remap_index 548
   1022 #define DisableVertexArrayAttrib_remap_index 549
   1023 #define EnableVertexArrayAttrib_remap_index 550
   1024 #define FlushMappedNamedBufferRange_remap_index 551
   1025 #define GenerateTextureMipmap_remap_index 552
   1026 #define GetCompressedTextureImage_remap_index 553
   1027 #define GetNamedBufferParameteri64v_remap_index 554
   1028 #define GetNamedBufferParameteriv_remap_index 555
   1029 #define GetNamedBufferPointerv_remap_index 556
   1030 #define GetNamedBufferSubData_remap_index 557
   1031 #define GetNamedFramebufferAttachmentParameteriv_remap_index 558
   1032 #define GetNamedFramebufferParameteriv_remap_index 559
   1033 #define GetNamedRenderbufferParameteriv_remap_index 560
   1034 #define GetQueryBufferObjecti64v_remap_index 561
   1035 #define GetQueryBufferObjectiv_remap_index 562
   1036 #define GetQueryBufferObjectui64v_remap_index 563
   1037 #define GetQueryBufferObjectuiv_remap_index 564
   1038 #define GetTextureImage_remap_index 565
   1039 #define GetTextureLevelParameterfv_remap_index 566
   1040 #define GetTextureLevelParameteriv_remap_index 567
   1041 #define GetTextureParameterIiv_remap_index 568
   1042 #define GetTextureParameterIuiv_remap_index 569
   1043 #define GetTextureParameterfv_remap_index 570
   1044 #define GetTextureParameteriv_remap_index 571
   1045 #define GetTransformFeedbacki64_v_remap_index 572
   1046 #define GetTransformFeedbacki_v_remap_index 573
   1047 #define GetTransformFeedbackiv_remap_index 574
   1048 #define GetVertexArrayIndexed64iv_remap_index 575
   1049 #define GetVertexArrayIndexediv_remap_index 576
   1050 #define GetVertexArrayiv_remap_index 577
   1051 #define InvalidateNamedFramebufferData_remap_index 578
   1052 #define InvalidateNamedFramebufferSubData_remap_index 579
   1053 #define MapNamedBuffer_remap_index 580
   1054 #define MapNamedBufferRange_remap_index 581
   1055 #define NamedBufferData_remap_index 582
   1056 #define NamedBufferStorage_remap_index 583
   1057 #define NamedBufferSubData_remap_index 584
   1058 #define NamedFramebufferDrawBuffer_remap_index 585
   1059 #define NamedFramebufferDrawBuffers_remap_index 586
   1060 #define NamedFramebufferParameteri_remap_index 587
   1061 #define NamedFramebufferReadBuffer_remap_index 588
   1062 #define NamedFramebufferRenderbuffer_remap_index 589
   1063 #define NamedFramebufferTexture_remap_index 590
   1064 #define NamedFramebufferTextureLayer_remap_index 591
   1065 #define NamedRenderbufferStorage_remap_index 592
   1066 #define NamedRenderbufferStorageMultisample_remap_index 593
   1067 #define TextureBuffer_remap_index 594
   1068 #define TextureBufferRange_remap_index 595
   1069 #define TextureParameterIiv_remap_index 596
   1070 #define TextureParameterIuiv_remap_index 597
   1071 #define TextureParameterf_remap_index 598
   1072 #define TextureParameterfv_remap_index 599
   1073 #define TextureParameteri_remap_index 600
   1074 #define TextureParameteriv_remap_index 601
   1075 #define TextureStorage1D_remap_index 602
   1076 #define TextureStorage2D_remap_index 603
   1077 #define TextureStorage2DMultisample_remap_index 604
   1078 #define TextureStorage3D_remap_index 605
   1079 #define TextureStorage3DMultisample_remap_index 606
   1080 #define TextureSubImage1D_remap_index 607
   1081 #define TextureSubImage2D_remap_index 608
   1082 #define TextureSubImage3D_remap_index 609
   1083 #define TransformFeedbackBufferBase_remap_index 610
   1084 #define TransformFeedbackBufferRange_remap_index 611
   1085 #define UnmapNamedBuffer_remap_index 612
   1086 #define VertexArrayAttribBinding_remap_index 613
   1087 #define VertexArrayAttribFormat_remap_index 614
   1088 #define VertexArrayAttribIFormat_remap_index 615
   1089 #define VertexArrayAttribLFormat_remap_index 616
   1090 #define VertexArrayBindingDivisor_remap_index 617
   1091 #define VertexArrayElementBuffer_remap_index 618
   1092 #define VertexArrayVertexBuffer_remap_index 619
   1093 #define VertexArrayVertexBuffers_remap_index 620
   1094 #define GetCompressedTextureSubImage_remap_index 621
   1095 #define GetTextureSubImage_remap_index 622
   1096 #define BufferPageCommitmentARB_remap_index 623
   1097 #define NamedBufferPageCommitmentARB_remap_index 624
   1098 #define GetUniformi64vARB_remap_index 625
   1099 #define GetUniformui64vARB_remap_index 626
   1100 #define GetnUniformi64vARB_remap_index 627
   1101 #define GetnUniformui64vARB_remap_index 628
   1102 #define ProgramUniform1i64ARB_remap_index 629
   1103 #define ProgramUniform1i64vARB_remap_index 630
   1104 #define ProgramUniform1ui64ARB_remap_index 631
   1105 #define ProgramUniform1ui64vARB_remap_index 632
   1106 #define ProgramUniform2i64ARB_remap_index 633
   1107 #define ProgramUniform2i64vARB_remap_index 634
   1108 #define ProgramUniform2ui64ARB_remap_index 635
   1109 #define ProgramUniform2ui64vARB_remap_index 636
   1110 #define ProgramUniform3i64ARB_remap_index 637
   1111 #define ProgramUniform3i64vARB_remap_index 638
   1112 #define ProgramUniform3ui64ARB_remap_index 639
   1113 #define ProgramUniform3ui64vARB_remap_index 640
   1114 #define ProgramUniform4i64ARB_remap_index 641
   1115 #define ProgramUniform4i64vARB_remap_index 642
   1116 #define ProgramUniform4ui64ARB_remap_index 643
   1117 #define ProgramUniform4ui64vARB_remap_index 644
   1118 #define Uniform1i64ARB_remap_index 645
   1119 #define Uniform1i64vARB_remap_index 646
   1120 #define Uniform1ui64ARB_remap_index 647
   1121 #define Uniform1ui64vARB_remap_index 648
   1122 #define Uniform2i64ARB_remap_index 649
   1123 #define Uniform2i64vARB_remap_index 650
   1124 #define Uniform2ui64ARB_remap_index 651
   1125 #define Uniform2ui64vARB_remap_index 652
   1126 #define Uniform3i64ARB_remap_index 653
   1127 #define Uniform3i64vARB_remap_index 654
   1128 #define Uniform3ui64ARB_remap_index 655
   1129 #define Uniform3ui64vARB_remap_index 656
   1130 #define Uniform4i64ARB_remap_index 657
   1131 #define Uniform4i64vARB_remap_index 658
   1132 #define Uniform4ui64ARB_remap_index 659
   1133 #define Uniform4ui64vARB_remap_index 660
   1134 #define SpecializeShaderARB_remap_index 661
   1135 #define InvalidateBufferData_remap_index 662
   1136 #define InvalidateBufferSubData_remap_index 663
   1137 #define InvalidateFramebuffer_remap_index 664
   1138 #define InvalidateSubFramebuffer_remap_index 665
   1139 #define InvalidateTexImage_remap_index 666
   1140 #define InvalidateTexSubImage_remap_index 667
   1141 #define PolygonOffsetEXT_remap_index 668
   1142 #define DrawTexfOES_remap_index 669
   1143 #define DrawTexfvOES_remap_index 670
   1144 #define DrawTexiOES_remap_index 671
   1145 #define DrawTexivOES_remap_index 672
   1146 #define DrawTexsOES_remap_index 673
   1147 #define DrawTexsvOES_remap_index 674
   1148 #define DrawTexxOES_remap_index 675
   1149 #define DrawTexxvOES_remap_index 676
   1150 #define PointSizePointerOES_remap_index 677
   1151 #define QueryMatrixxOES_remap_index 678
   1152 #define SampleMaskSGIS_remap_index 679
   1153 #define SamplePatternSGIS_remap_index 680
   1154 #define ColorPointerEXT_remap_index 681
   1155 #define EdgeFlagPointerEXT_remap_index 682
   1156 #define IndexPointerEXT_remap_index 683
   1157 #define NormalPointerEXT_remap_index 684
   1158 #define TexCoordPointerEXT_remap_index 685
   1159 #define VertexPointerEXT_remap_index 686
   1160 #define DiscardFramebufferEXT_remap_index 687
   1161 #define ActiveShaderProgram_remap_index 688
   1162 #define BindProgramPipeline_remap_index 689
   1163 #define CreateShaderProgramv_remap_index 690
   1164 #define DeleteProgramPipelines_remap_index 691
   1165 #define GenProgramPipelines_remap_index 692
   1166 #define GetProgramPipelineInfoLog_remap_index 693
   1167 #define GetProgramPipelineiv_remap_index 694
   1168 #define IsProgramPipeline_remap_index 695
   1169 #define LockArraysEXT_remap_index 696
   1170 #define ProgramUniform1d_remap_index 697
   1171 #define ProgramUniform1dv_remap_index 698
   1172 #define ProgramUniform1f_remap_index 699
   1173 #define ProgramUniform1fv_remap_index 700
   1174 #define ProgramUniform1i_remap_index 701
   1175 #define ProgramUniform1iv_remap_index 702
   1176 #define ProgramUniform1ui_remap_index 703
   1177 #define ProgramUniform1uiv_remap_index 704
   1178 #define ProgramUniform2d_remap_index 705
   1179 #define ProgramUniform2dv_remap_index 706
   1180 #define ProgramUniform2f_remap_index 707
   1181 #define ProgramUniform2fv_remap_index 708
   1182 #define ProgramUniform2i_remap_index 709
   1183 #define ProgramUniform2iv_remap_index 710
   1184 #define ProgramUniform2ui_remap_index 711
   1185 #define ProgramUniform2uiv_remap_index 712
   1186 #define ProgramUniform3d_remap_index 713
   1187 #define ProgramUniform3dv_remap_index 714
   1188 #define ProgramUniform3f_remap_index 715
   1189 #define ProgramUniform3fv_remap_index 716
   1190 #define ProgramUniform3i_remap_index 717
   1191 #define ProgramUniform3iv_remap_index 718
   1192 #define ProgramUniform3ui_remap_index 719
   1193 #define ProgramUniform3uiv_remap_index 720
   1194 #define ProgramUniform4d_remap_index 721
   1195 #define ProgramUniform4dv_remap_index 722
   1196 #define ProgramUniform4f_remap_index 723
   1197 #define ProgramUniform4fv_remap_index 724
   1198 #define ProgramUniform4i_remap_index 725
   1199 #define ProgramUniform4iv_remap_index 726
   1200 #define ProgramUniform4ui_remap_index 727
   1201 #define ProgramUniform4uiv_remap_index 728
   1202 #define ProgramUniformMatrix2dv_remap_index 729
   1203 #define ProgramUniformMatrix2fv_remap_index 730
   1204 #define ProgramUniformMatrix2x3dv_remap_index 731
   1205 #define ProgramUniformMatrix2x3fv_remap_index 732
   1206 #define ProgramUniformMatrix2x4dv_remap_index 733
   1207 #define ProgramUniformMatrix2x4fv_remap_index 734
   1208 #define ProgramUniformMatrix3dv_remap_index 735
   1209 #define ProgramUniformMatrix3fv_remap_index 736
   1210 #define ProgramUniformMatrix3x2dv_remap_index 737
   1211 #define ProgramUniformMatrix3x2fv_remap_index 738
   1212 #define ProgramUniformMatrix3x4dv_remap_index 739
   1213 #define ProgramUniformMatrix3x4fv_remap_index 740
   1214 #define ProgramUniformMatrix4dv_remap_index 741
   1215 #define ProgramUniformMatrix4fv_remap_index 742
   1216 #define ProgramUniformMatrix4x2dv_remap_index 743
   1217 #define ProgramUniformMatrix4x2fv_remap_index 744
   1218 #define ProgramUniformMatrix4x3dv_remap_index 745
   1219 #define ProgramUniformMatrix4x3fv_remap_index 746
   1220 #define UnlockArraysEXT_remap_index 747
   1221 #define UseProgramStages_remap_index 748
   1222 #define ValidateProgramPipeline_remap_index 749
   1223 #define DebugMessageCallback_remap_index 750
   1224 #define DebugMessageControl_remap_index 751
   1225 #define DebugMessageInsert_remap_index 752
   1226 #define GetDebugMessageLog_remap_index 753
   1227 #define GetObjectLabel_remap_index 754
   1228 #define GetObjectPtrLabel_remap_index 755
   1229 #define ObjectLabel_remap_index 756
   1230 #define ObjectPtrLabel_remap_index 757
   1231 #define PopDebugGroup_remap_index 758
   1232 #define PushDebugGroup_remap_index 759
   1233 #define SecondaryColor3fEXT_remap_index 760
   1234 #define SecondaryColor3fvEXT_remap_index 761
   1235 #define MultiDrawElementsEXT_remap_index 762
   1236 #define FogCoordfEXT_remap_index 763
   1237 #define FogCoordfvEXT_remap_index 764
   1238 #define ResizeBuffersMESA_remap_index 765
   1239 #define WindowPos4dMESA_remap_index 766
   1240 #define WindowPos4dvMESA_remap_index 767
   1241 #define WindowPos4fMESA_remap_index 768
   1242 #define WindowPos4fvMESA_remap_index 769
   1243 #define WindowPos4iMESA_remap_index 770
   1244 #define WindowPos4ivMESA_remap_index 771
   1245 #define WindowPos4sMESA_remap_index 772
   1246 #define WindowPos4svMESA_remap_index 773
   1247 #define MultiModeDrawArraysIBM_remap_index 774
   1248 #define MultiModeDrawElementsIBM_remap_index 775
   1249 #define AreProgramsResidentNV_remap_index 776
   1250 #define ExecuteProgramNV_remap_index 777
   1251 #define GetProgramParameterdvNV_remap_index 778
   1252 #define GetProgramParameterfvNV_remap_index 779
   1253 #define GetProgramStringNV_remap_index 780
   1254 #define GetProgramivNV_remap_index 781
   1255 #define GetTrackMatrixivNV_remap_index 782
   1256 #define GetVertexAttribdvNV_remap_index 783
   1257 #define GetVertexAttribfvNV_remap_index 784
   1258 #define GetVertexAttribivNV_remap_index 785
   1259 #define LoadProgramNV_remap_index 786
   1260 #define ProgramParameters4dvNV_remap_index 787
   1261 #define ProgramParameters4fvNV_remap_index 788
   1262 #define RequestResidentProgramsNV_remap_index 789
   1263 #define TrackMatrixNV_remap_index 790
   1264 #define VertexAttrib1dNV_remap_index 791
   1265 #define VertexAttrib1dvNV_remap_index 792
   1266 #define VertexAttrib1fNV_remap_index 793
   1267 #define VertexAttrib1fvNV_remap_index 794
   1268 #define VertexAttrib1sNV_remap_index 795
   1269 #define VertexAttrib1svNV_remap_index 796
   1270 #define VertexAttrib2dNV_remap_index 797
   1271 #define VertexAttrib2dvNV_remap_index 798
   1272 #define VertexAttrib2fNV_remap_index 799
   1273 #define VertexAttrib2fvNV_remap_index 800
   1274 #define VertexAttrib2sNV_remap_index 801
   1275 #define VertexAttrib2svNV_remap_index 802
   1276 #define VertexAttrib3dNV_remap_index 803
   1277 #define VertexAttrib3dvNV_remap_index 804
   1278 #define VertexAttrib3fNV_remap_index 805
   1279 #define VertexAttrib3fvNV_remap_index 806
   1280 #define VertexAttrib3sNV_remap_index 807
   1281 #define VertexAttrib3svNV_remap_index 808
   1282 #define VertexAttrib4dNV_remap_index 809
   1283 #define VertexAttrib4dvNV_remap_index 810
   1284 #define VertexAttrib4fNV_remap_index 811
   1285 #define VertexAttrib4fvNV_remap_index 812
   1286 #define VertexAttrib4sNV_remap_index 813
   1287 #define VertexAttrib4svNV_remap_index 814
   1288 #define VertexAttrib4ubNV_remap_index 815
   1289 #define VertexAttrib4ubvNV_remap_index 816
   1290 #define VertexAttribPointerNV_remap_index 817
   1291 #define VertexAttribs1dvNV_remap_index 818
   1292 #define VertexAttribs1fvNV_remap_index 819
   1293 #define VertexAttribs1svNV_remap_index 820
   1294 #define VertexAttribs2dvNV_remap_index 821
   1295 #define VertexAttribs2fvNV_remap_index 822
   1296 #define VertexAttribs2svNV_remap_index 823
   1297 #define VertexAttribs3dvNV_remap_index 824
   1298 #define VertexAttribs3fvNV_remap_index 825
   1299 #define VertexAttribs3svNV_remap_index 826
   1300 #define VertexAttribs4dvNV_remap_index 827
   1301 #define VertexAttribs4fvNV_remap_index 828
   1302 #define VertexAttribs4svNV_remap_index 829
   1303 #define VertexAttribs4ubvNV_remap_index 830
   1304 #define GetTexBumpParameterfvATI_remap_index 831
   1305 #define GetTexBumpParameterivATI_remap_index 832
   1306 #define TexBumpParameterfvATI_remap_index 833
   1307 #define TexBumpParameterivATI_remap_index 834
   1308 #define AlphaFragmentOp1ATI_remap_index 835
   1309 #define AlphaFragmentOp2ATI_remap_index 836
   1310 #define AlphaFragmentOp3ATI_remap_index 837
   1311 #define BeginFragmentShaderATI_remap_index 838
   1312 #define BindFragmentShaderATI_remap_index 839
   1313 #define ColorFragmentOp1ATI_remap_index 840
   1314 #define ColorFragmentOp2ATI_remap_index 841
   1315 #define ColorFragmentOp3ATI_remap_index 842
   1316 #define DeleteFragmentShaderATI_remap_index 843
   1317 #define EndFragmentShaderATI_remap_index 844
   1318 #define GenFragmentShadersATI_remap_index 845
   1319 #define PassTexCoordATI_remap_index 846
   1320 #define SampleMapATI_remap_index 847
   1321 #define SetFragmentShaderConstantATI_remap_index 848
   1322 #define DepthRangeArrayfvOES_remap_index 849
   1323 #define DepthRangeIndexedfOES_remap_index 850
   1324 #define ActiveStencilFaceEXT_remap_index 851
   1325 #define GetProgramNamedParameterdvNV_remap_index 852
   1326 #define GetProgramNamedParameterfvNV_remap_index 853
   1327 #define ProgramNamedParameter4dNV_remap_index 854
   1328 #define ProgramNamedParameter4dvNV_remap_index 855
   1329 #define ProgramNamedParameter4fNV_remap_index 856
   1330 #define ProgramNamedParameter4fvNV_remap_index 857
   1331 #define PrimitiveRestartNV_remap_index 858
   1332 #define GetTexGenxvOES_remap_index 859
   1333 #define TexGenxOES_remap_index 860
   1334 #define TexGenxvOES_remap_index 861
   1335 #define DepthBoundsEXT_remap_index 862
   1336 #define BindFramebufferEXT_remap_index 863
   1337 #define BindRenderbufferEXT_remap_index 864
   1338 #define StringMarkerGREMEDY_remap_index 865
   1339 #define BufferParameteriAPPLE_remap_index 866
   1340 #define FlushMappedBufferRangeAPPLE_remap_index 867
   1341 #define VertexAttribI1iEXT_remap_index 868
   1342 #define VertexAttribI1uiEXT_remap_index 869
   1343 #define VertexAttribI2iEXT_remap_index 870
   1344 #define VertexAttribI2ivEXT_remap_index 871
   1345 #define VertexAttribI2uiEXT_remap_index 872
   1346 #define VertexAttribI2uivEXT_remap_index 873
   1347 #define VertexAttribI3iEXT_remap_index 874
   1348 #define VertexAttribI3ivEXT_remap_index 875
   1349 #define VertexAttribI3uiEXT_remap_index 876
   1350 #define VertexAttribI3uivEXT_remap_index 877
   1351 #define VertexAttribI4iEXT_remap_index 878
   1352 #define VertexAttribI4ivEXT_remap_index 879
   1353 #define VertexAttribI4uiEXT_remap_index 880
   1354 #define VertexAttribI4uivEXT_remap_index 881
   1355 #define ClearColorIiEXT_remap_index 882
   1356 #define ClearColorIuiEXT_remap_index 883
   1357 #define BindBufferOffsetEXT_remap_index 884
   1358 #define BeginPerfMonitorAMD_remap_index 885
   1359 #define DeletePerfMonitorsAMD_remap_index 886
   1360 #define EndPerfMonitorAMD_remap_index 887
   1361 #define GenPerfMonitorsAMD_remap_index 888
   1362 #define GetPerfMonitorCounterDataAMD_remap_index 889
   1363 #define GetPerfMonitorCounterInfoAMD_remap_index 890
   1364 #define GetPerfMonitorCounterStringAMD_remap_index 891
   1365 #define GetPerfMonitorCountersAMD_remap_index 892
   1366 #define GetPerfMonitorGroupStringAMD_remap_index 893
   1367 #define GetPerfMonitorGroupsAMD_remap_index 894
   1368 #define SelectPerfMonitorCountersAMD_remap_index 895
   1369 #define GetObjectParameterivAPPLE_remap_index 896
   1370 #define ObjectPurgeableAPPLE_remap_index 897
   1371 #define ObjectUnpurgeableAPPLE_remap_index 898
   1372 #define ActiveProgramEXT_remap_index 899
   1373 #define CreateShaderProgramEXT_remap_index 900
   1374 #define UseShaderProgramEXT_remap_index 901
   1375 #define TextureBarrierNV_remap_index 902
   1376 #define VDPAUFiniNV_remap_index 903
   1377 #define VDPAUGetSurfaceivNV_remap_index 904
   1378 #define VDPAUInitNV_remap_index 905
   1379 #define VDPAUIsSurfaceNV_remap_index 906
   1380 #define VDPAUMapSurfacesNV_remap_index 907
   1381 #define VDPAURegisterOutputSurfaceNV_remap_index 908
   1382 #define VDPAURegisterVideoSurfaceNV_remap_index 909
   1383 #define VDPAUSurfaceAccessNV_remap_index 910
   1384 #define VDPAUUnmapSurfacesNV_remap_index 911
   1385 #define VDPAUUnregisterSurfaceNV_remap_index 912
   1386 #define BeginPerfQueryINTEL_remap_index 913
   1387 #define CreatePerfQueryINTEL_remap_index 914
   1388 #define DeletePerfQueryINTEL_remap_index 915
   1389 #define EndPerfQueryINTEL_remap_index 916
   1390 #define GetFirstPerfQueryIdINTEL_remap_index 917
   1391 #define GetNextPerfQueryIdINTEL_remap_index 918
   1392 #define GetPerfCounterInfoINTEL_remap_index 919
   1393 #define GetPerfQueryDataINTEL_remap_index 920
   1394 #define GetPerfQueryIdByNameINTEL_remap_index 921
   1395 #define GetPerfQueryInfoINTEL_remap_index 922
   1396 #define PolygonOffsetClampEXT_remap_index 923
   1397 #define WindowRectanglesEXT_remap_index 924
   1398 #define BufferStorageMemEXT_remap_index 925
   1399 #define CreateMemoryObjectsEXT_remap_index 926
   1400 #define DeleteMemoryObjectsEXT_remap_index 927
   1401 #define DeleteSemaphoresEXT_remap_index 928
   1402 #define GenSemaphoresEXT_remap_index 929
   1403 #define GetMemoryObjectParameterivEXT_remap_index 930
   1404 #define GetSemaphoreParameterui64vEXT_remap_index 931
   1405 #define GetUnsignedBytei_vEXT_remap_index 932
   1406 #define GetUnsignedBytevEXT_remap_index 933
   1407 #define IsMemoryObjectEXT_remap_index 934
   1408 #define IsSemaphoreEXT_remap_index 935
   1409 #define MemoryObjectParameterivEXT_remap_index 936
   1410 #define NamedBufferStorageMemEXT_remap_index 937
   1411 #define SemaphoreParameterui64vEXT_remap_index 938
   1412 #define SignalSemaphoreEXT_remap_index 939
   1413 #define TexStorageMem1DEXT_remap_index 940
   1414 #define TexStorageMem2DEXT_remap_index 941
   1415 #define TexStorageMem2DMultisampleEXT_remap_index 942
   1416 #define TexStorageMem3DEXT_remap_index 943
   1417 #define TexStorageMem3DMultisampleEXT_remap_index 944
   1418 #define TextureStorageMem1DEXT_remap_index 945
   1419 #define TextureStorageMem2DEXT_remap_index 946
   1420 #define TextureStorageMem2DMultisampleEXT_remap_index 947
   1421 #define TextureStorageMem3DEXT_remap_index 948
   1422 #define TextureStorageMem3DMultisampleEXT_remap_index 949
   1423 #define WaitSemaphoreEXT_remap_index 950
   1424 #define ImportMemoryFdEXT_remap_index 951
   1425 #define ImportSemaphoreFdEXT_remap_index 952
   1426 #define StencilFuncSeparateATI_remap_index 953
   1427 #define ProgramEnvParameters4fvEXT_remap_index 954
   1428 #define ProgramLocalParameters4fvEXT_remap_index 955
   1429 #define EGLImageTargetRenderbufferStorageOES_remap_index 956
   1430 #define EGLImageTargetTexture2DOES_remap_index 957
   1431 #define AlphaFuncx_remap_index 958
   1432 #define ClearColorx_remap_index 959
   1433 #define ClearDepthx_remap_index 960
   1434 #define Color4x_remap_index 961
   1435 #define DepthRangex_remap_index 962
   1436 #define Fogx_remap_index 963
   1437 #define Fogxv_remap_index 964
   1438 #define Frustumf_remap_index 965
   1439 #define Frustumx_remap_index 966
   1440 #define LightModelx_remap_index 967
   1441 #define LightModelxv_remap_index 968
   1442 #define Lightx_remap_index 969
   1443 #define Lightxv_remap_index 970
   1444 #define LineWidthx_remap_index 971
   1445 #define LoadMatrixx_remap_index 972
   1446 #define Materialx_remap_index 973
   1447 #define Materialxv_remap_index 974
   1448 #define MultMatrixx_remap_index 975
   1449 #define MultiTexCoord4x_remap_index 976
   1450 #define Normal3x_remap_index 977
   1451 #define Orthof_remap_index 978
   1452 #define Orthox_remap_index 979
   1453 #define PointSizex_remap_index 980
   1454 #define PolygonOffsetx_remap_index 981
   1455 #define Rotatex_remap_index 982
   1456 #define SampleCoveragex_remap_index 983
   1457 #define Scalex_remap_index 984
   1458 #define TexEnvx_remap_index 985
   1459 #define TexEnvxv_remap_index 986
   1460 #define TexParameterx_remap_index 987
   1461 #define Translatex_remap_index 988
   1462 #define ClipPlanef_remap_index 989
   1463 #define ClipPlanex_remap_index 990
   1464 #define GetClipPlanef_remap_index 991
   1465 #define GetClipPlanex_remap_index 992
   1466 #define GetFixedv_remap_index 993
   1467 #define GetLightxv_remap_index 994
   1468 #define GetMaterialxv_remap_index 995
   1469 #define GetTexEnvxv_remap_index 996
   1470 #define GetTexParameterxv_remap_index 997
   1471 #define PointParameterx_remap_index 998
   1472 #define PointParameterxv_remap_index 999
   1473 #define TexParameterxv_remap_index 1000
   1474 #define BlendBarrier_remap_index 1001
   1475 #define PrimitiveBoundingBox_remap_index 1002
   1476 
   1477 #define _gloffset_CompressedTexImage1D driDispatchRemapTable[CompressedTexImage1D_remap_index]
   1478 #define _gloffset_CompressedTexImage2D driDispatchRemapTable[CompressedTexImage2D_remap_index]
   1479 #define _gloffset_CompressedTexImage3D driDispatchRemapTable[CompressedTexImage3D_remap_index]
   1480 #define _gloffset_CompressedTexSubImage1D driDispatchRemapTable[CompressedTexSubImage1D_remap_index]
   1481 #define _gloffset_CompressedTexSubImage2D driDispatchRemapTable[CompressedTexSubImage2D_remap_index]
   1482 #define _gloffset_CompressedTexSubImage3D driDispatchRemapTable[CompressedTexSubImage3D_remap_index]
   1483 #define _gloffset_GetCompressedTexImage driDispatchRemapTable[GetCompressedTexImage_remap_index]
   1484 #define _gloffset_LoadTransposeMatrixd driDispatchRemapTable[LoadTransposeMatrixd_remap_index]
   1485 #define _gloffset_LoadTransposeMatrixf driDispatchRemapTable[LoadTransposeMatrixf_remap_index]
   1486 #define _gloffset_MultTransposeMatrixd driDispatchRemapTable[MultTransposeMatrixd_remap_index]
   1487 #define _gloffset_MultTransposeMatrixf driDispatchRemapTable[MultTransposeMatrixf_remap_index]
   1488 #define _gloffset_SampleCoverage driDispatchRemapTable[SampleCoverage_remap_index]
   1489 #define _gloffset_BlendFuncSeparate driDispatchRemapTable[BlendFuncSeparate_remap_index]
   1490 #define _gloffset_FogCoordPointer driDispatchRemapTable[FogCoordPointer_remap_index]
   1491 #define _gloffset_FogCoordd driDispatchRemapTable[FogCoordd_remap_index]
   1492 #define _gloffset_FogCoorddv driDispatchRemapTable[FogCoorddv_remap_index]
   1493 #define _gloffset_MultiDrawArrays driDispatchRemapTable[MultiDrawArrays_remap_index]
   1494 #define _gloffset_PointParameterf driDispatchRemapTable[PointParameterf_remap_index]
   1495 #define _gloffset_PointParameterfv driDispatchRemapTable[PointParameterfv_remap_index]
   1496 #define _gloffset_PointParameteri driDispatchRemapTable[PointParameteri_remap_index]
   1497 #define _gloffset_PointParameteriv driDispatchRemapTable[PointParameteriv_remap_index]
   1498 #define _gloffset_SecondaryColor3b driDispatchRemapTable[SecondaryColor3b_remap_index]
   1499 #define _gloffset_SecondaryColor3bv driDispatchRemapTable[SecondaryColor3bv_remap_index]
   1500 #define _gloffset_SecondaryColor3d driDispatchRemapTable[SecondaryColor3d_remap_index]
   1501 #define _gloffset_SecondaryColor3dv driDispatchRemapTable[SecondaryColor3dv_remap_index]
   1502 #define _gloffset_SecondaryColor3i driDispatchRemapTable[SecondaryColor3i_remap_index]
   1503 #define _gloffset_SecondaryColor3iv driDispatchRemapTable[SecondaryColor3iv_remap_index]
   1504 #define _gloffset_SecondaryColor3s driDispatchRemapTable[SecondaryColor3s_remap_index]
   1505 #define _gloffset_SecondaryColor3sv driDispatchRemapTable[SecondaryColor3sv_remap_index]
   1506 #define _gloffset_SecondaryColor3ub driDispatchRemapTable[SecondaryColor3ub_remap_index]
   1507 #define _gloffset_SecondaryColor3ubv driDispatchRemapTable[SecondaryColor3ubv_remap_index]
   1508 #define _gloffset_SecondaryColor3ui driDispatchRemapTable[SecondaryColor3ui_remap_index]
   1509 #define _gloffset_SecondaryColor3uiv driDispatchRemapTable[SecondaryColor3uiv_remap_index]
   1510 #define _gloffset_SecondaryColor3us driDispatchRemapTable[SecondaryColor3us_remap_index]
   1511 #define _gloffset_SecondaryColor3usv driDispatchRemapTable[SecondaryColor3usv_remap_index]
   1512 #define _gloffset_SecondaryColorPointer driDispatchRemapTable[SecondaryColorPointer_remap_index]
   1513 #define _gloffset_WindowPos2d driDispatchRemapTable[WindowPos2d_remap_index]
   1514 #define _gloffset_WindowPos2dv driDispatchRemapTable[WindowPos2dv_remap_index]
   1515 #define _gloffset_WindowPos2f driDispatchRemapTable[WindowPos2f_remap_index]
   1516 #define _gloffset_WindowPos2fv driDispatchRemapTable[WindowPos2fv_remap_index]
   1517 #define _gloffset_WindowPos2i driDispatchRemapTable[WindowPos2i_remap_index]
   1518 #define _gloffset_WindowPos2iv driDispatchRemapTable[WindowPos2iv_remap_index]
   1519 #define _gloffset_WindowPos2s driDispatchRemapTable[WindowPos2s_remap_index]
   1520 #define _gloffset_WindowPos2sv driDispatchRemapTable[WindowPos2sv_remap_index]
   1521 #define _gloffset_WindowPos3d driDispatchRemapTable[WindowPos3d_remap_index]
   1522 #define _gloffset_WindowPos3dv driDispatchRemapTable[WindowPos3dv_remap_index]
   1523 #define _gloffset_WindowPos3f driDispatchRemapTable[WindowPos3f_remap_index]
   1524 #define _gloffset_WindowPos3fv driDispatchRemapTable[WindowPos3fv_remap_index]
   1525 #define _gloffset_WindowPos3i driDispatchRemapTable[WindowPos3i_remap_index]
   1526 #define _gloffset_WindowPos3iv driDispatchRemapTable[WindowPos3iv_remap_index]
   1527 #define _gloffset_WindowPos3s driDispatchRemapTable[WindowPos3s_remap_index]
   1528 #define _gloffset_WindowPos3sv driDispatchRemapTable[WindowPos3sv_remap_index]
   1529 #define _gloffset_BeginQuery driDispatchRemapTable[BeginQuery_remap_index]
   1530 #define _gloffset_BindBuffer driDispatchRemapTable[BindBuffer_remap_index]
   1531 #define _gloffset_BufferData driDispatchRemapTable[BufferData_remap_index]
   1532 #define _gloffset_BufferSubData driDispatchRemapTable[BufferSubData_remap_index]
   1533 #define _gloffset_DeleteBuffers driDispatchRemapTable[DeleteBuffers_remap_index]
   1534 #define _gloffset_DeleteQueries driDispatchRemapTable[DeleteQueries_remap_index]
   1535 #define _gloffset_EndQuery driDispatchRemapTable[EndQuery_remap_index]
   1536 #define _gloffset_GenBuffers driDispatchRemapTable[GenBuffers_remap_index]
   1537 #define _gloffset_GenQueries driDispatchRemapTable[GenQueries_remap_index]
   1538 #define _gloffset_GetBufferParameteriv driDispatchRemapTable[GetBufferParameteriv_remap_index]
   1539 #define _gloffset_GetBufferPointerv driDispatchRemapTable[GetBufferPointerv_remap_index]
   1540 #define _gloffset_GetBufferSubData driDispatchRemapTable[GetBufferSubData_remap_index]
   1541 #define _gloffset_GetQueryObjectiv driDispatchRemapTable[GetQueryObjectiv_remap_index]
   1542 #define _gloffset_GetQueryObjectuiv driDispatchRemapTable[GetQueryObjectuiv_remap_index]
   1543 #define _gloffset_GetQueryiv driDispatchRemapTable[GetQueryiv_remap_index]
   1544 #define _gloffset_IsBuffer driDispatchRemapTable[IsBuffer_remap_index]
   1545 #define _gloffset_IsQuery driDispatchRemapTable[IsQuery_remap_index]
   1546 #define _gloffset_MapBuffer driDispatchRemapTable[MapBuffer_remap_index]
   1547 #define _gloffset_UnmapBuffer driDispatchRemapTable[UnmapBuffer_remap_index]
   1548 #define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index]
   1549 #define _gloffset_BindAttribLocation driDispatchRemapTable[BindAttribLocation_remap_index]
   1550 #define _gloffset_BlendEquationSeparate driDispatchRemapTable[BlendEquationSeparate_remap_index]
   1551 #define _gloffset_CompileShader driDispatchRemapTable[CompileShader_remap_index]
   1552 #define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index]
   1553 #define _gloffset_CreateShader driDispatchRemapTable[CreateShader_remap_index]
   1554 #define _gloffset_DeleteProgram driDispatchRemapTable[DeleteProgram_remap_index]
   1555 #define _gloffset_DeleteShader driDispatchRemapTable[DeleteShader_remap_index]
   1556 #define _gloffset_DetachShader driDispatchRemapTable[DetachShader_remap_index]
   1557 #define _gloffset_DisableVertexAttribArray driDispatchRemapTable[DisableVertexAttribArray_remap_index]
   1558 #define _gloffset_DrawBuffers driDispatchRemapTable[DrawBuffers_remap_index]
   1559 #define _gloffset_EnableVertexAttribArray driDispatchRemapTable[EnableVertexAttribArray_remap_index]
   1560 #define _gloffset_GetActiveAttrib driDispatchRemapTable[GetActiveAttrib_remap_index]
   1561 #define _gloffset_GetActiveUniform driDispatchRemapTable[GetActiveUniform_remap_index]
   1562 #define _gloffset_GetAttachedShaders driDispatchRemapTable[GetAttachedShaders_remap_index]
   1563 #define _gloffset_GetAttribLocation driDispatchRemapTable[GetAttribLocation_remap_index]
   1564 #define _gloffset_GetProgramInfoLog driDispatchRemapTable[GetProgramInfoLog_remap_index]
   1565 #define _gloffset_GetProgramiv driDispatchRemapTable[GetProgramiv_remap_index]
   1566 #define _gloffset_GetShaderInfoLog driDispatchRemapTable[GetShaderInfoLog_remap_index]
   1567 #define _gloffset_GetShaderSource driDispatchRemapTable[GetShaderSource_remap_index]
   1568 #define _gloffset_GetShaderiv driDispatchRemapTable[GetShaderiv_remap_index]
   1569 #define _gloffset_GetUniformLocation driDispatchRemapTable[GetUniformLocation_remap_index]
   1570 #define _gloffset_GetUniformfv driDispatchRemapTable[GetUniformfv_remap_index]
   1571 #define _gloffset_GetUniformiv driDispatchRemapTable[GetUniformiv_remap_index]
   1572 #define _gloffset_GetVertexAttribPointerv driDispatchRemapTable[GetVertexAttribPointerv_remap_index]
   1573 #define _gloffset_GetVertexAttribdv driDispatchRemapTable[GetVertexAttribdv_remap_index]
   1574 #define _gloffset_GetVertexAttribfv driDispatchRemapTable[GetVertexAttribfv_remap_index]
   1575 #define _gloffset_GetVertexAttribiv driDispatchRemapTable[GetVertexAttribiv_remap_index]
   1576 #define _gloffset_IsProgram driDispatchRemapTable[IsProgram_remap_index]
   1577 #define _gloffset_IsShader driDispatchRemapTable[IsShader_remap_index]
   1578 #define _gloffset_LinkProgram driDispatchRemapTable[LinkProgram_remap_index]
   1579 #define _gloffset_ShaderSource driDispatchRemapTable[ShaderSource_remap_index]
   1580 #define _gloffset_StencilFuncSeparate driDispatchRemapTable[StencilFuncSeparate_remap_index]
   1581 #define _gloffset_StencilMaskSeparate driDispatchRemapTable[StencilMaskSeparate_remap_index]
   1582 #define _gloffset_StencilOpSeparate driDispatchRemapTable[StencilOpSeparate_remap_index]
   1583 #define _gloffset_Uniform1f driDispatchRemapTable[Uniform1f_remap_index]
   1584 #define _gloffset_Uniform1fv driDispatchRemapTable[Uniform1fv_remap_index]
   1585 #define _gloffset_Uniform1i driDispatchRemapTable[Uniform1i_remap_index]
   1586 #define _gloffset_Uniform1iv driDispatchRemapTable[Uniform1iv_remap_index]
   1587 #define _gloffset_Uniform2f driDispatchRemapTable[Uniform2f_remap_index]
   1588 #define _gloffset_Uniform2fv driDispatchRemapTable[Uniform2fv_remap_index]
   1589 #define _gloffset_Uniform2i driDispatchRemapTable[Uniform2i_remap_index]
   1590 #define _gloffset_Uniform2iv driDispatchRemapTable[Uniform2iv_remap_index]
   1591 #define _gloffset_Uniform3f driDispatchRemapTable[Uniform3f_remap_index]
   1592 #define _gloffset_Uniform3fv driDispatchRemapTable[Uniform3fv_remap_index]
   1593 #define _gloffset_Uniform3i driDispatchRemapTable[Uniform3i_remap_index]
   1594 #define _gloffset_Uniform3iv driDispatchRemapTable[Uniform3iv_remap_index]
   1595 #define _gloffset_Uniform4f driDispatchRemapTable[Uniform4f_remap_index]
   1596 #define _gloffset_Uniform4fv driDispatchRemapTable[Uniform4fv_remap_index]
   1597 #define _gloffset_Uniform4i driDispatchRemapTable[Uniform4i_remap_index]
   1598 #define _gloffset_Uniform4iv driDispatchRemapTable[Uniform4iv_remap_index]
   1599 #define _gloffset_UniformMatrix2fv driDispatchRemapTable[UniformMatrix2fv_remap_index]
   1600 #define _gloffset_UniformMatrix3fv driDispatchRemapTable[UniformMatrix3fv_remap_index]
   1601 #define _gloffset_UniformMatrix4fv driDispatchRemapTable[UniformMatrix4fv_remap_index]
   1602 #define _gloffset_UseProgram driDispatchRemapTable[UseProgram_remap_index]
   1603 #define _gloffset_ValidateProgram driDispatchRemapTable[ValidateProgram_remap_index]
   1604 #define _gloffset_VertexAttrib1d driDispatchRemapTable[VertexAttrib1d_remap_index]
   1605 #define _gloffset_VertexAttrib1dv driDispatchRemapTable[VertexAttrib1dv_remap_index]
   1606 #define _gloffset_VertexAttrib1s driDispatchRemapTable[VertexAttrib1s_remap_index]
   1607 #define _gloffset_VertexAttrib1sv driDispatchRemapTable[VertexAttrib1sv_remap_index]
   1608 #define _gloffset_VertexAttrib2d driDispatchRemapTable[VertexAttrib2d_remap_index]
   1609 #define _gloffset_VertexAttrib2dv driDispatchRemapTable[VertexAttrib2dv_remap_index]
   1610 #define _gloffset_VertexAttrib2s driDispatchRemapTable[VertexAttrib2s_remap_index]
   1611 #define _gloffset_VertexAttrib2sv driDispatchRemapTable[VertexAttrib2sv_remap_index]
   1612 #define _gloffset_VertexAttrib3d driDispatchRemapTable[VertexAttrib3d_remap_index]
   1613 #define _gloffset_VertexAttrib3dv driDispatchRemapTable[VertexAttrib3dv_remap_index]
   1614 #define _gloffset_VertexAttrib3s driDispatchRemapTable[VertexAttrib3s_remap_index]
   1615 #define _gloffset_VertexAttrib3sv driDispatchRemapTable[VertexAttrib3sv_remap_index]
   1616 #define _gloffset_VertexAttrib4Nbv driDispatchRemapTable[VertexAttrib4Nbv_remap_index]
   1617 #define _gloffset_VertexAttrib4Niv driDispatchRemapTable[VertexAttrib4Niv_remap_index]
   1618 #define _gloffset_VertexAttrib4Nsv driDispatchRemapTable[VertexAttrib4Nsv_remap_index]
   1619 #define _gloffset_VertexAttrib4Nub driDispatchRemapTable[VertexAttrib4Nub_remap_index]
   1620 #define _gloffset_VertexAttrib4Nubv driDispatchRemapTable[VertexAttrib4Nubv_remap_index]
   1621 #define _gloffset_VertexAttrib4Nuiv driDispatchRemapTable[VertexAttrib4Nuiv_remap_index]
   1622 #define _gloffset_VertexAttrib4Nusv driDispatchRemapTable[VertexAttrib4Nusv_remap_index]
   1623 #define _gloffset_VertexAttrib4bv driDispatchRemapTable[VertexAttrib4bv_remap_index]
   1624 #define _gloffset_VertexAttrib4d driDispatchRemapTable[VertexAttrib4d_remap_index]
   1625 #define _gloffset_VertexAttrib4dv driDispatchRemapTable[VertexAttrib4dv_remap_index]
   1626 #define _gloffset_VertexAttrib4iv driDispatchRemapTable[VertexAttrib4iv_remap_index]
   1627 #define _gloffset_VertexAttrib4s driDispatchRemapTable[VertexAttrib4s_remap_index]
   1628 #define _gloffset_VertexAttrib4sv driDispatchRemapTable[VertexAttrib4sv_remap_index]
   1629 #define _gloffset_VertexAttrib4ubv driDispatchRemapTable[VertexAttrib4ubv_remap_index]
   1630 #define _gloffset_VertexAttrib4uiv driDispatchRemapTable[VertexAttrib4uiv_remap_index]
   1631 #define _gloffset_VertexAttrib4usv driDispatchRemapTable[VertexAttrib4usv_remap_index]
   1632 #define _gloffset_VertexAttribPointer driDispatchRemapTable[VertexAttribPointer_remap_index]
   1633 #define _gloffset_UniformMatrix2x3fv driDispatchRemapTable[UniformMatrix2x3fv_remap_index]
   1634 #define _gloffset_UniformMatrix2x4fv driDispatchRemapTable[UniformMatrix2x4fv_remap_index]
   1635 #define _gloffset_UniformMatrix3x2fv driDispatchRemapTable[UniformMatrix3x2fv_remap_index]
   1636 #define _gloffset_UniformMatrix3x4fv driDispatchRemapTable[UniformMatrix3x4fv_remap_index]
   1637 #define _gloffset_UniformMatrix4x2fv driDispatchRemapTable[UniformMatrix4x2fv_remap_index]
   1638 #define _gloffset_UniformMatrix4x3fv driDispatchRemapTable[UniformMatrix4x3fv_remap_index]
   1639 #define _gloffset_BeginConditionalRender driDispatchRemapTable[BeginConditionalRender_remap_index]
   1640 #define _gloffset_BeginTransformFeedback driDispatchRemapTable[BeginTransformFeedback_remap_index]
   1641 #define _gloffset_BindBufferBase driDispatchRemapTable[BindBufferBase_remap_index]
   1642 #define _gloffset_BindBufferRange driDispatchRemapTable[BindBufferRange_remap_index]
   1643 #define _gloffset_BindFragDataLocation driDispatchRemapTable[BindFragDataLocation_remap_index]
   1644 #define _gloffset_ClampColor driDispatchRemapTable[ClampColor_remap_index]
   1645 #define _gloffset_ClearBufferfi driDispatchRemapTable[ClearBufferfi_remap_index]
   1646 #define _gloffset_ClearBufferfv driDispatchRemapTable[ClearBufferfv_remap_index]
   1647 #define _gloffset_ClearBufferiv driDispatchRemapTable[ClearBufferiv_remap_index]
   1648 #define _gloffset_ClearBufferuiv driDispatchRemapTable[ClearBufferuiv_remap_index]
   1649 #define _gloffset_ColorMaski driDispatchRemapTable[ColorMaski_remap_index]
   1650 #define _gloffset_Disablei driDispatchRemapTable[Disablei_remap_index]
   1651 #define _gloffset_Enablei driDispatchRemapTable[Enablei_remap_index]
   1652 #define _gloffset_EndConditionalRender driDispatchRemapTable[EndConditionalRender_remap_index]
   1653 #define _gloffset_EndTransformFeedback driDispatchRemapTable[EndTransformFeedback_remap_index]
   1654 #define _gloffset_GetBooleani_v driDispatchRemapTable[GetBooleani_v_remap_index]
   1655 #define _gloffset_GetFragDataLocation driDispatchRemapTable[GetFragDataLocation_remap_index]
   1656 #define _gloffset_GetIntegeri_v driDispatchRemapTable[GetIntegeri_v_remap_index]
   1657 #define _gloffset_GetStringi driDispatchRemapTable[GetStringi_remap_index]
   1658 #define _gloffset_GetTexParameterIiv driDispatchRemapTable[GetTexParameterIiv_remap_index]
   1659 #define _gloffset_GetTexParameterIuiv driDispatchRemapTable[GetTexParameterIuiv_remap_index]
   1660 #define _gloffset_GetTransformFeedbackVarying driDispatchRemapTable[GetTransformFeedbackVarying_remap_index]
   1661 #define _gloffset_GetUniformuiv driDispatchRemapTable[GetUniformuiv_remap_index]
   1662 #define _gloffset_GetVertexAttribIiv driDispatchRemapTable[GetVertexAttribIiv_remap_index]
   1663 #define _gloffset_GetVertexAttribIuiv driDispatchRemapTable[GetVertexAttribIuiv_remap_index]
   1664 #define _gloffset_IsEnabledi driDispatchRemapTable[IsEnabledi_remap_index]
   1665 #define _gloffset_TexParameterIiv driDispatchRemapTable[TexParameterIiv_remap_index]
   1666 #define _gloffset_TexParameterIuiv driDispatchRemapTable[TexParameterIuiv_remap_index]
   1667 #define _gloffset_TransformFeedbackVaryings driDispatchRemapTable[TransformFeedbackVaryings_remap_index]
   1668 #define _gloffset_Uniform1ui driDispatchRemapTable[Uniform1ui_remap_index]
   1669 #define _gloffset_Uniform1uiv driDispatchRemapTable[Uniform1uiv_remap_index]
   1670 #define _gloffset_Uniform2ui driDispatchRemapTable[Uniform2ui_remap_index]
   1671 #define _gloffset_Uniform2uiv driDispatchRemapTable[Uniform2uiv_remap_index]
   1672 #define _gloffset_Uniform3ui driDispatchRemapTable[Uniform3ui_remap_index]
   1673 #define _gloffset_Uniform3uiv driDispatchRemapTable[Uniform3uiv_remap_index]
   1674 #define _gloffset_Uniform4ui driDispatchRemapTable[Uniform4ui_remap_index]
   1675 #define _gloffset_Uniform4uiv driDispatchRemapTable[Uniform4uiv_remap_index]
   1676 #define _gloffset_VertexAttribI1iv driDispatchRemapTable[VertexAttribI1iv_remap_index]
   1677 #define _gloffset_VertexAttribI1uiv driDispatchRemapTable[VertexAttribI1uiv_remap_index]
   1678 #define _gloffset_VertexAttribI4bv driDispatchRemapTable[VertexAttribI4bv_remap_index]
   1679 #define _gloffset_VertexAttribI4sv driDispatchRemapTable[VertexAttribI4sv_remap_index]
   1680 #define _gloffset_VertexAttribI4ubv driDispatchRemapTable[VertexAttribI4ubv_remap_index]
   1681 #define _gloffset_VertexAttribI4usv driDispatchRemapTable[VertexAttribI4usv_remap_index]
   1682 #define _gloffset_VertexAttribIPointer driDispatchRemapTable[VertexAttribIPointer_remap_index]
   1683 #define _gloffset_PrimitiveRestartIndex driDispatchRemapTable[PrimitiveRestartIndex_remap_index]
   1684 #define _gloffset_TexBuffer driDispatchRemapTable[TexBuffer_remap_index]
   1685 #define _gloffset_FramebufferTexture driDispatchRemapTable[FramebufferTexture_remap_index]
   1686 #define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index]
   1687 #define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index]
   1688 #define _gloffset_VertexAttribDivisor driDispatchRemapTable[VertexAttribDivisor_remap_index]
   1689 #define _gloffset_MinSampleShading driDispatchRemapTable[MinSampleShading_remap_index]
   1690 #define _gloffset_MemoryBarrierByRegion driDispatchRemapTable[MemoryBarrierByRegion_remap_index]
   1691 #define _gloffset_BindProgramARB driDispatchRemapTable[BindProgramARB_remap_index]
   1692 #define _gloffset_DeleteProgramsARB driDispatchRemapTable[DeleteProgramsARB_remap_index]
   1693 #define _gloffset_GenProgramsARB driDispatchRemapTable[GenProgramsARB_remap_index]
   1694 #define _gloffset_GetProgramEnvParameterdvARB driDispatchRemapTable[GetProgramEnvParameterdvARB_remap_index]
   1695 #define _gloffset_GetProgramEnvParameterfvARB driDispatchRemapTable[GetProgramEnvParameterfvARB_remap_index]
   1696 #define _gloffset_GetProgramLocalParameterdvARB driDispatchRemapTable[GetProgramLocalParameterdvARB_remap_index]
   1697 #define _gloffset_GetProgramLocalParameterfvARB driDispatchRemapTable[GetProgramLocalParameterfvARB_remap_index]
   1698 #define _gloffset_GetProgramStringARB driDispatchRemapTable[GetProgramStringARB_remap_index]
   1699 #define _gloffset_GetProgramivARB driDispatchRemapTable[GetProgramivARB_remap_index]
   1700 #define _gloffset_IsProgramARB driDispatchRemapTable[IsProgramARB_remap_index]
   1701 #define _gloffset_ProgramEnvParameter4dARB driDispatchRemapTable[ProgramEnvParameter4dARB_remap_index]
   1702 #define _gloffset_ProgramEnvParameter4dvARB driDispatchRemapTable[ProgramEnvParameter4dvARB_remap_index]
   1703 #define _gloffset_ProgramEnvParameter4fARB driDispatchRemapTable[ProgramEnvParameter4fARB_remap_index]
   1704 #define _gloffset_ProgramEnvParameter4fvARB driDispatchRemapTable[ProgramEnvParameter4fvARB_remap_index]
   1705 #define _gloffset_ProgramLocalParameter4dARB driDispatchRemapTable[ProgramLocalParameter4dARB_remap_index]
   1706 #define _gloffset_ProgramLocalParameter4dvARB driDispatchRemapTable[ProgramLocalParameter4dvARB_remap_index]
   1707 #define _gloffset_ProgramLocalParameter4fARB driDispatchRemapTable[ProgramLocalParameter4fARB_remap_index]
   1708 #define _gloffset_ProgramLocalParameter4fvARB driDispatchRemapTable[ProgramLocalParameter4fvARB_remap_index]
   1709 #define _gloffset_ProgramStringARB driDispatchRemapTable[ProgramStringARB_remap_index]
   1710 #define _gloffset_VertexAttrib1fARB driDispatchRemapTable[VertexAttrib1fARB_remap_index]
   1711 #define _gloffset_VertexAttrib1fvARB driDispatchRemapTable[VertexAttrib1fvARB_remap_index]
   1712 #define _gloffset_VertexAttrib2fARB driDispatchRemapTable[VertexAttrib2fARB_remap_index]
   1713 #define _gloffset_VertexAttrib2fvARB driDispatchRemapTable[VertexAttrib2fvARB_remap_index]
   1714 #define _gloffset_VertexAttrib3fARB driDispatchRemapTable[VertexAttrib3fARB_remap_index]
   1715 #define _gloffset_VertexAttrib3fvARB driDispatchRemapTable[VertexAttrib3fvARB_remap_index]
   1716 #define _gloffset_VertexAttrib4fARB driDispatchRemapTable[VertexAttrib4fARB_remap_index]
   1717 #define _gloffset_VertexAttrib4fvARB driDispatchRemapTable[VertexAttrib4fvARB_remap_index]
   1718 #define _gloffset_AttachObjectARB driDispatchRemapTable[AttachObjectARB_remap_index]
   1719 #define _gloffset_CreateProgramObjectARB driDispatchRemapTable[CreateProgramObjectARB_remap_index]
   1720 #define _gloffset_CreateShaderObjectARB driDispatchRemapTable[CreateShaderObjectARB_remap_index]
   1721 #define _gloffset_DeleteObjectARB driDispatchRemapTable[DeleteObjectARB_remap_index]
   1722 #define _gloffset_DetachObjectARB driDispatchRemapTable[DetachObjectARB_remap_index]
   1723 #define _gloffset_GetAttachedObjectsARB driDispatchRemapTable[GetAttachedObjectsARB_remap_index]
   1724 #define _gloffset_GetHandleARB driDispatchRemapTable[GetHandleARB_remap_index]
   1725 #define _gloffset_GetInfoLogARB driDispatchRemapTable[GetInfoLogARB_remap_index]
   1726 #define _gloffset_GetObjectParameterfvARB driDispatchRemapTable[GetObjectParameterfvARB_remap_index]
   1727 #define _gloffset_GetObjectParameterivARB driDispatchRemapTable[GetObjectParameterivARB_remap_index]
   1728 #define _gloffset_DrawArraysInstancedARB driDispatchRemapTable[DrawArraysInstancedARB_remap_index]
   1729 #define _gloffset_DrawElementsInstancedARB driDispatchRemapTable[DrawElementsInstancedARB_remap_index]
   1730 #define _gloffset_BindFramebuffer driDispatchRemapTable[BindFramebuffer_remap_index]
   1731 #define _gloffset_BindRenderbuffer driDispatchRemapTable[BindRenderbuffer_remap_index]
   1732 #define _gloffset_BlitFramebuffer driDispatchRemapTable[BlitFramebuffer_remap_index]
   1733 #define _gloffset_CheckFramebufferStatus driDispatchRemapTable[CheckFramebufferStatus_remap_index]
   1734 #define _gloffset_DeleteFramebuffers driDispatchRemapTable[DeleteFramebuffers_remap_index]
   1735 #define _gloffset_DeleteRenderbuffers driDispatchRemapTable[DeleteRenderbuffers_remap_index]
   1736 #define _gloffset_FramebufferRenderbuffer driDispatchRemapTable[FramebufferRenderbuffer_remap_index]
   1737 #define _gloffset_FramebufferTexture1D driDispatchRemapTable[FramebufferTexture1D_remap_index]
   1738 #define _gloffset_FramebufferTexture2D driDispatchRemapTable[FramebufferTexture2D_remap_index]
   1739 #define _gloffset_FramebufferTexture3D driDispatchRemapTable[FramebufferTexture3D_remap_index]
   1740 #define _gloffset_FramebufferTextureLayer driDispatchRemapTable[FramebufferTextureLayer_remap_index]
   1741 #define _gloffset_GenFramebuffers driDispatchRemapTable[GenFramebuffers_remap_index]
   1742 #define _gloffset_GenRenderbuffers driDispatchRemapTable[GenRenderbuffers_remap_index]
   1743 #define _gloffset_GenerateMipmap driDispatchRemapTable[GenerateMipmap_remap_index]
   1744 #define _gloffset_GetFramebufferAttachmentParameteriv driDispatchRemapTable[GetFramebufferAttachmentParameteriv_remap_index]
   1745 #define _gloffset_GetRenderbufferParameteriv driDispatchRemapTable[GetRenderbufferParameteriv_remap_index]
   1746 #define _gloffset_IsFramebuffer driDispatchRemapTable[IsFramebuffer_remap_index]
   1747 #define _gloffset_IsRenderbuffer driDispatchRemapTable[IsRenderbuffer_remap_index]
   1748 #define _gloffset_RenderbufferStorage driDispatchRemapTable[RenderbufferStorage_remap_index]
   1749 #define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index]
   1750 #define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
   1751 #define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
   1752 #define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index]
   1753 #define _gloffset_DeleteVertexArrays driDispatchRemapTable[DeleteVertexArrays_remap_index]
   1754 #define _gloffset_GenVertexArrays driDispatchRemapTable[GenVertexArrays_remap_index]
   1755 #define _gloffset_IsVertexArray driDispatchRemapTable[IsVertexArray_remap_index]
   1756 #define _gloffset_GetActiveUniformBlockName driDispatchRemapTable[GetActiveUniformBlockName_remap_index]
   1757 #define _gloffset_GetActiveUniformBlockiv driDispatchRemapTable[GetActiveUniformBlockiv_remap_index]
   1758 #define _gloffset_GetActiveUniformName driDispatchRemapTable[GetActiveUniformName_remap_index]
   1759 #define _gloffset_GetActiveUniformsiv driDispatchRemapTable[GetActiveUniformsiv_remap_index]
   1760 #define _gloffset_GetUniformBlockIndex driDispatchRemapTable[GetUniformBlockIndex_remap_index]
   1761 #define _gloffset_GetUniformIndices driDispatchRemapTable[GetUniformIndices_remap_index]
   1762 #define _gloffset_UniformBlockBinding driDispatchRemapTable[UniformBlockBinding_remap_index]
   1763 #define _gloffset_CopyBufferSubData driDispatchRemapTable[CopyBufferSubData_remap_index]
   1764 #define _gloffset_ClientWaitSync driDispatchRemapTable[ClientWaitSync_remap_index]
   1765 #define _gloffset_DeleteSync driDispatchRemapTable[DeleteSync_remap_index]
   1766 #define _gloffset_FenceSync driDispatchRemapTable[FenceSync_remap_index]
   1767 #define _gloffset_GetInteger64v driDispatchRemapTable[GetInteger64v_remap_index]
   1768 #define _gloffset_GetSynciv driDispatchRemapTable[GetSynciv_remap_index]
   1769 #define _gloffset_IsSync driDispatchRemapTable[IsSync_remap_index]
   1770 #define _gloffset_WaitSync driDispatchRemapTable[WaitSync_remap_index]
   1771 #define _gloffset_DrawElementsBaseVertex driDispatchRemapTable[DrawElementsBaseVertex_remap_index]
   1772 #define _gloffset_DrawElementsInstancedBaseVertex driDispatchRemapTable[DrawElementsInstancedBaseVertex_remap_index]
   1773 #define _gloffset_DrawRangeElementsBaseVertex driDispatchRemapTable[DrawRangeElementsBaseVertex_remap_index]
   1774 #define _gloffset_MultiDrawElementsBaseVertex driDispatchRemapTable[MultiDrawElementsBaseVertex_remap_index]
   1775 #define _gloffset_ProvokingVertex driDispatchRemapTable[ProvokingVertex_remap_index]
   1776 #define _gloffset_GetMultisamplefv driDispatchRemapTable[GetMultisamplefv_remap_index]
   1777 #define _gloffset_SampleMaski driDispatchRemapTable[SampleMaski_remap_index]
   1778 #define _gloffset_TexImage2DMultisample driDispatchRemapTable[TexImage2DMultisample_remap_index]
   1779 #define _gloffset_TexImage3DMultisample driDispatchRemapTable[TexImage3DMultisample_remap_index]
   1780 #define _gloffset_BlendEquationSeparateiARB driDispatchRemapTable[BlendEquationSeparateiARB_remap_index]
   1781 #define _gloffset_BlendEquationiARB driDispatchRemapTable[BlendEquationiARB_remap_index]
   1782 #define _gloffset_BlendFuncSeparateiARB driDispatchRemapTable[BlendFuncSeparateiARB_remap_index]
   1783 #define _gloffset_BlendFunciARB driDispatchRemapTable[BlendFunciARB_remap_index]
   1784 #define _gloffset_BindFragDataLocationIndexed driDispatchRemapTable[BindFragDataLocationIndexed_remap_index]
   1785 #define _gloffset_GetFragDataIndex driDispatchRemapTable[GetFragDataIndex_remap_index]
   1786 #define _gloffset_BindSampler driDispatchRemapTable[BindSampler_remap_index]
   1787 #define _gloffset_DeleteSamplers driDispatchRemapTable[DeleteSamplers_remap_index]
   1788 #define _gloffset_GenSamplers driDispatchRemapTable[GenSamplers_remap_index]
   1789 #define _gloffset_GetSamplerParameterIiv driDispatchRemapTable[GetSamplerParameterIiv_remap_index]
   1790 #define _gloffset_GetSamplerParameterIuiv driDispatchRemapTable[GetSamplerParameterIuiv_remap_index]
   1791 #define _gloffset_GetSamplerParameterfv driDispatchRemapTable[GetSamplerParameterfv_remap_index]
   1792 #define _gloffset_GetSamplerParameteriv driDispatchRemapTable[GetSamplerParameteriv_remap_index]
   1793 #define _gloffset_IsSampler driDispatchRemapTable[IsSampler_remap_index]
   1794 #define _gloffset_SamplerParameterIiv driDispatchRemapTable[SamplerParameterIiv_remap_index]
   1795 #define _gloffset_SamplerParameterIuiv driDispatchRemapTable[SamplerParameterIuiv_remap_index]
   1796 #define _gloffset_SamplerParameterf driDispatchRemapTable[SamplerParameterf_remap_index]
   1797 #define _gloffset_SamplerParameterfv driDispatchRemapTable[SamplerParameterfv_remap_index]
   1798 #define _gloffset_SamplerParameteri driDispatchRemapTable[SamplerParameteri_remap_index]
   1799 #define _gloffset_SamplerParameteriv driDispatchRemapTable[SamplerParameteriv_remap_index]
   1800 #define _gloffset_GetQueryObjecti64v driDispatchRemapTable[GetQueryObjecti64v_remap_index]
   1801 #define _gloffset_GetQueryObjectui64v driDispatchRemapTable[GetQueryObjectui64v_remap_index]
   1802 #define _gloffset_QueryCounter driDispatchRemapTable[QueryCounter_remap_index]
   1803 #define _gloffset_ColorP3ui driDispatchRemapTable[ColorP3ui_remap_index]
   1804 #define _gloffset_ColorP3uiv driDispatchRemapTable[ColorP3uiv_remap_index]
   1805 #define _gloffset_ColorP4ui driDispatchRemapTable[ColorP4ui_remap_index]
   1806 #define _gloffset_ColorP4uiv driDispatchRemapTable[ColorP4uiv_remap_index]
   1807 #define _gloffset_MultiTexCoordP1ui driDispatchRemapTable[MultiTexCoordP1ui_remap_index]
   1808 #define _gloffset_MultiTexCoordP1uiv driDispatchRemapTable[MultiTexCoordP1uiv_remap_index]
   1809 #define _gloffset_MultiTexCoordP2ui driDispatchRemapTable[MultiTexCoordP2ui_remap_index]
   1810 #define _gloffset_MultiTexCoordP2uiv driDispatchRemapTable[MultiTexCoordP2uiv_remap_index]
   1811 #define _gloffset_MultiTexCoordP3ui driDispatchRemapTable[MultiTexCoordP3ui_remap_index]
   1812 #define _gloffset_MultiTexCoordP3uiv driDispatchRemapTable[MultiTexCoordP3uiv_remap_index]
   1813 #define _gloffset_MultiTexCoordP4ui driDispatchRemapTable[MultiTexCoordP4ui_remap_index]
   1814 #define _gloffset_MultiTexCoordP4uiv driDispatchRemapTable[MultiTexCoordP4uiv_remap_index]
   1815 #define _gloffset_NormalP3ui driDispatchRemapTable[NormalP3ui_remap_index]
   1816 #define _gloffset_NormalP3uiv driDispatchRemapTable[NormalP3uiv_remap_index]
   1817 #define _gloffset_SecondaryColorP3ui driDispatchRemapTable[SecondaryColorP3ui_remap_index]
   1818 #define _gloffset_SecondaryColorP3uiv driDispatchRemapTable[SecondaryColorP3uiv_remap_index]
   1819 #define _gloffset_TexCoordP1ui driDispatchRemapTable[TexCoordP1ui_remap_index]
   1820 #define _gloffset_TexCoordP1uiv driDispatchRemapTable[TexCoordP1uiv_remap_index]
   1821 #define _gloffset_TexCoordP2ui driDispatchRemapTable[TexCoordP2ui_remap_index]
   1822 #define _gloffset_TexCoordP2uiv driDispatchRemapTable[TexCoordP2uiv_remap_index]
   1823 #define _gloffset_TexCoordP3ui driDispatchRemapTable[TexCoordP3ui_remap_index]
   1824 #define _gloffset_TexCoordP3uiv driDispatchRemapTable[TexCoordP3uiv_remap_index]
   1825 #define _gloffset_TexCoordP4ui driDispatchRemapTable[TexCoordP4ui_remap_index]
   1826 #define _gloffset_TexCoordP4uiv driDispatchRemapTable[TexCoordP4uiv_remap_index]
   1827 #define _gloffset_VertexAttribP1ui driDispatchRemapTable[VertexAttribP1ui_remap_index]
   1828 #define _gloffset_VertexAttribP1uiv driDispatchRemapTable[VertexAttribP1uiv_remap_index]
   1829 #define _gloffset_VertexAttribP2ui driDispatchRemapTable[VertexAttribP2ui_remap_index]
   1830 #define _gloffset_VertexAttribP2uiv driDispatchRemapTable[VertexAttribP2uiv_remap_index]
   1831 #define _gloffset_VertexAttribP3ui driDispatchRemapTable[VertexAttribP3ui_remap_index]
   1832 #define _gloffset_VertexAttribP3uiv driDispatchRemapTable[VertexAttribP3uiv_remap_index]
   1833 #define _gloffset_VertexAttribP4ui driDispatchRemapTable[VertexAttribP4ui_remap_index]
   1834 #define _gloffset_VertexAttribP4uiv driDispatchRemapTable[VertexAttribP4uiv_remap_index]
   1835 #define _gloffset_VertexP2ui driDispatchRemapTable[VertexP2ui_remap_index]
   1836 #define _gloffset_VertexP2uiv driDispatchRemapTable[VertexP2uiv_remap_index]
   1837 #define _gloffset_VertexP3ui driDispatchRemapTable[VertexP3ui_remap_index]
   1838 #define _gloffset_VertexP3uiv driDispatchRemapTable[VertexP3uiv_remap_index]
   1839 #define _gloffset_VertexP4ui driDispatchRemapTable[VertexP4ui_remap_index]
   1840 #define _gloffset_VertexP4uiv driDispatchRemapTable[VertexP4uiv_remap_index]
   1841 #define _gloffset_DrawArraysIndirect driDispatchRemapTable[DrawArraysIndirect_remap_index]
   1842 #define _gloffset_DrawElementsIndirect driDispatchRemapTable[DrawElementsIndirect_remap_index]
   1843 #define _gloffset_GetUniformdv driDispatchRemapTable[GetUniformdv_remap_index]
   1844 #define _gloffset_Uniform1d driDispatchRemapTable[Uniform1d_remap_index]
   1845 #define _gloffset_Uniform1dv driDispatchRemapTable[Uniform1dv_remap_index]
   1846 #define _gloffset_Uniform2d driDispatchRemapTable[Uniform2d_remap_index]
   1847 #define _gloffset_Uniform2dv driDispatchRemapTable[Uniform2dv_remap_index]
   1848 #define _gloffset_Uniform3d driDispatchRemapTable[Uniform3d_remap_index]
   1849 #define _gloffset_Uniform3dv driDispatchRemapTable[Uniform3dv_remap_index]
   1850 #define _gloffset_Uniform4d driDispatchRemapTable[Uniform4d_remap_index]
   1851 #define _gloffset_Uniform4dv driDispatchRemapTable[Uniform4dv_remap_index]
   1852 #define _gloffset_UniformMatrix2dv driDispatchRemapTable[UniformMatrix2dv_remap_index]
   1853 #define _gloffset_UniformMatrix2x3dv driDispatchRemapTable[UniformMatrix2x3dv_remap_index]
   1854 #define _gloffset_UniformMatrix2x4dv driDispatchRemapTable[UniformMatrix2x4dv_remap_index]
   1855 #define _gloffset_UniformMatrix3dv driDispatchRemapTable[UniformMatrix3dv_remap_index]
   1856 #define _gloffset_UniformMatrix3x2dv driDispatchRemapTable[UniformMatrix3x2dv_remap_index]
   1857 #define _gloffset_UniformMatrix3x4dv driDispatchRemapTable[UniformMatrix3x4dv_remap_index]
   1858 #define _gloffset_UniformMatrix4dv driDispatchRemapTable[UniformMatrix4dv_remap_index]
   1859 #define _gloffset_UniformMatrix4x2dv driDispatchRemapTable[UniformMatrix4x2dv_remap_index]
   1860 #define _gloffset_UniformMatrix4x3dv driDispatchRemapTable[UniformMatrix4x3dv_remap_index]
   1861 #define _gloffset_GetActiveSubroutineName driDispatchRemapTable[GetActiveSubroutineName_remap_index]
   1862 #define _gloffset_GetActiveSubroutineUniformName driDispatchRemapTable[GetActiveSubroutineUniformName_remap_index]
   1863 #define _gloffset_GetActiveSubroutineUniformiv driDispatchRemapTable[GetActiveSubroutineUniformiv_remap_index]
   1864 #define _gloffset_GetProgramStageiv driDispatchRemapTable[GetProgramStageiv_remap_index]
   1865 #define _gloffset_GetSubroutineIndex driDispatchRemapTable[GetSubroutineIndex_remap_index]
   1866 #define _gloffset_GetSubroutineUniformLocation driDispatchRemapTable[GetSubroutineUniformLocation_remap_index]
   1867 #define _gloffset_GetUniformSubroutineuiv driDispatchRemapTable[GetUniformSubroutineuiv_remap_index]
   1868 #define _gloffset_UniformSubroutinesuiv driDispatchRemapTable[UniformSubroutinesuiv_remap_index]
   1869 #define _gloffset_PatchParameterfv driDispatchRemapTable[PatchParameterfv_remap_index]
   1870 #define _gloffset_PatchParameteri driDispatchRemapTable[PatchParameteri_remap_index]
   1871 #define _gloffset_BindTransformFeedback driDispatchRemapTable[BindTransformFeedback_remap_index]
   1872 #define _gloffset_DeleteTransformFeedbacks driDispatchRemapTable[DeleteTransformFeedbacks_remap_index]
   1873 #define _gloffset_DrawTransformFeedback driDispatchRemapTable[DrawTransformFeedback_remap_index]
   1874 #define _gloffset_GenTransformFeedbacks driDispatchRemapTable[GenTransformFeedbacks_remap_index]
   1875 #define _gloffset_IsTransformFeedback driDispatchRemapTable[IsTransformFeedback_remap_index]
   1876 #define _gloffset_PauseTransformFeedback driDispatchRemapTable[PauseTransformFeedback_remap_index]
   1877 #define _gloffset_ResumeTransformFeedback driDispatchRemapTable[ResumeTransformFeedback_remap_index]
   1878 #define _gloffset_BeginQueryIndexed driDispatchRemapTable[BeginQueryIndexed_remap_index]
   1879 #define _gloffset_DrawTransformFeedbackStream driDispatchRemapTable[DrawTransformFeedbackStream_remap_index]
   1880 #define _gloffset_EndQueryIndexed driDispatchRemapTable[EndQueryIndexed_remap_index]
   1881 #define _gloffset_GetQueryIndexediv driDispatchRemapTable[GetQueryIndexediv_remap_index]
   1882 #define _gloffset_ClearDepthf driDispatchRemapTable[ClearDepthf_remap_index]
   1883 #define _gloffset_DepthRangef driDispatchRemapTable[DepthRangef_remap_index]
   1884 #define _gloffset_GetShaderPrecisionFormat driDispatchRemapTable[GetShaderPrecisionFormat_remap_index]
   1885 #define _gloffset_ReleaseShaderCompiler driDispatchRemapTable[ReleaseShaderCompiler_remap_index]
   1886 #define _gloffset_ShaderBinary driDispatchRemapTable[ShaderBinary_remap_index]
   1887 #define _gloffset_GetProgramBinary driDispatchRemapTable[GetProgramBinary_remap_index]
   1888 #define _gloffset_ProgramBinary driDispatchRemapTable[ProgramBinary_remap_index]
   1889 #define _gloffset_ProgramParameteri driDispatchRemapTable[ProgramParameteri_remap_index]
   1890 #define _gloffset_GetVertexAttribLdv driDispatchRemapTable[GetVertexAttribLdv_remap_index]
   1891 #define _gloffset_VertexAttribL1d driDispatchRemapTable[VertexAttribL1d_remap_index]
   1892 #define _gloffset_VertexAttribL1dv driDispatchRemapTable[VertexAttribL1dv_remap_index]
   1893 #define _gloffset_VertexAttribL2d driDispatchRemapTable[VertexAttribL2d_remap_index]
   1894 #define _gloffset_VertexAttribL2dv driDispatchRemapTable[VertexAttribL2dv_remap_index]
   1895 #define _gloffset_VertexAttribL3d driDispatchRemapTable[VertexAttribL3d_remap_index]
   1896 #define _gloffset_VertexAttribL3dv driDispatchRemapTable[VertexAttribL3dv_remap_index]
   1897 #define _gloffset_VertexAttribL4d driDispatchRemapTable[VertexAttribL4d_remap_index]
   1898 #define _gloffset_VertexAttribL4dv driDispatchRemapTable[VertexAttribL4dv_remap_index]
   1899 #define _gloffset_VertexAttribLPointer driDispatchRemapTable[VertexAttribLPointer_remap_index]
   1900 #define _gloffset_DepthRangeArrayv driDispatchRemapTable[DepthRangeArrayv_remap_index]
   1901 #define _gloffset_DepthRangeIndexed driDispatchRemapTable[DepthRangeIndexed_remap_index]
   1902 #define _gloffset_GetDoublei_v driDispatchRemapTable[GetDoublei_v_remap_index]
   1903 #define _gloffset_GetFloati_v driDispatchRemapTable[GetFloati_v_remap_index]
   1904 #define _gloffset_ScissorArrayv driDispatchRemapTable[ScissorArrayv_remap_index]
   1905 #define _gloffset_ScissorIndexed driDispatchRemapTable[ScissorIndexed_remap_index]
   1906 #define _gloffset_ScissorIndexedv driDispatchRemapTable[ScissorIndexedv_remap_index]
   1907 #define _gloffset_ViewportArrayv driDispatchRemapTable[ViewportArrayv_remap_index]
   1908 #define _gloffset_ViewportIndexedf driDispatchRemapTable[ViewportIndexedf_remap_index]
   1909 #define _gloffset_ViewportIndexedfv driDispatchRemapTable[ViewportIndexedfv_remap_index]
   1910 #define _gloffset_GetGraphicsResetStatusARB driDispatchRemapTable[GetGraphicsResetStatusARB_remap_index]
   1911 #define _gloffset_GetnColorTableARB driDispatchRemapTable[GetnColorTableARB_remap_index]
   1912 #define _gloffset_GetnCompressedTexImageARB driDispatchRemapTable[GetnCompressedTexImageARB_remap_index]
   1913 #define _gloffset_GetnConvolutionFilterARB driDispatchRemapTable[GetnConvolutionFilterARB_remap_index]
   1914 #define _gloffset_GetnHistogramARB driDispatchRemapTable[GetnHistogramARB_remap_index]
   1915 #define _gloffset_GetnMapdvARB driDispatchRemapTable[GetnMapdvARB_remap_index]
   1916 #define _gloffset_GetnMapfvARB driDispatchRemapTable[GetnMapfvARB_remap_index]
   1917 #define _gloffset_GetnMapivARB driDispatchRemapTable[GetnMapivARB_remap_index]
   1918 #define _gloffset_GetnMinmaxARB driDispatchRemapTable[GetnMinmaxARB_remap_index]
   1919 #define _gloffset_GetnPixelMapfvARB driDispatchRemapTable[GetnPixelMapfvARB_remap_index]
   1920 #define _gloffset_GetnPixelMapuivARB driDispatchRemapTable[GetnPixelMapuivARB_remap_index]
   1921 #define _gloffset_GetnPixelMapusvARB driDispatchRemapTable[GetnPixelMapusvARB_remap_index]
   1922 #define _gloffset_GetnPolygonStippleARB driDispatchRemapTable[GetnPolygonStippleARB_remap_index]
   1923 #define _gloffset_GetnSeparableFilterARB driDispatchRemapTable[GetnSeparableFilterARB_remap_index]
   1924 #define _gloffset_GetnTexImageARB driDispatchRemapTable[GetnTexImageARB_remap_index]
   1925 #define _gloffset_GetnUniformdvARB driDispatchRemapTable[GetnUniformdvARB_remap_index]
   1926 #define _gloffset_GetnUniformfvARB driDispatchRemapTable[GetnUniformfvARB_remap_index]
   1927 #define _gloffset_GetnUniformivARB driDispatchRemapTable[GetnUniformivARB_remap_index]
   1928 #define _gloffset_GetnUniformuivARB driDispatchRemapTable[GetnUniformuivARB_remap_index]
   1929 #define _gloffset_ReadnPixelsARB driDispatchRemapTable[ReadnPixelsARB_remap_index]
   1930 #define _gloffset_DrawArraysInstancedBaseInstance driDispatchRemapTable[DrawArraysInstancedBaseInstance_remap_index]
   1931 #define _gloffset_DrawElementsInstancedBaseInstance driDispatchRemapTable[DrawElementsInstancedBaseInstance_remap_index]
   1932 #define _gloffset_DrawElementsInstancedBaseVertexBaseInstance driDispatchRemapTable[DrawElementsInstancedBaseVertexBaseInstance_remap_index]
   1933 #define _gloffset_DrawTransformFeedbackInstanced driDispatchRemapTable[DrawTransformFeedbackInstanced_remap_index]
   1934 #define _gloffset_DrawTransformFeedbackStreamInstanced driDispatchRemapTable[DrawTransformFeedbackStreamInstanced_remap_index]
   1935 #define _gloffset_GetInternalformativ driDispatchRemapTable[GetInternalformativ_remap_index]
   1936 #define _gloffset_GetActiveAtomicCounterBufferiv driDispatchRemapTable[GetActiveAtomicCounterBufferiv_remap_index]
   1937 #define _gloffset_BindImageTexture driDispatchRemapTable[BindImageTexture_remap_index]
   1938 #define _gloffset_MemoryBarrier driDispatchRemapTable[MemoryBarrier_remap_index]
   1939 #define _gloffset_TexStorage1D driDispatchRemapTable[TexStorage1D_remap_index]
   1940 #define _gloffset_TexStorage2D driDispatchRemapTable[TexStorage2D_remap_index]
   1941 #define _gloffset_TexStorage3D driDispatchRemapTable[TexStorage3D_remap_index]
   1942 #define _gloffset_TextureStorage1DEXT driDispatchRemapTable[TextureStorage1DEXT_remap_index]
   1943 #define _gloffset_TextureStorage2DEXT driDispatchRemapTable[TextureStorage2DEXT_remap_index]
   1944 #define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index]
   1945 #define _gloffset_ClearBufferData driDispatchRemapTable[ClearBufferData_remap_index]
   1946 #define _gloffset_ClearBufferSubData driDispatchRemapTable[ClearBufferSubData_remap_index]
   1947 #define _gloffset_DispatchCompute driDispatchRemapTable[DispatchCompute_remap_index]
   1948 #define _gloffset_DispatchComputeIndirect driDispatchRemapTable[DispatchComputeIndirect_remap_index]
   1949 #define _gloffset_CopyImageSubData driDispatchRemapTable[CopyImageSubData_remap_index]
   1950 #define _gloffset_TextureView driDispatchRemapTable[TextureView_remap_index]
   1951 #define _gloffset_BindVertexBuffer driDispatchRemapTable[BindVertexBuffer_remap_index]
   1952 #define _gloffset_VertexAttribBinding driDispatchRemapTable[VertexAttribBinding_remap_index]
   1953 #define _gloffset_VertexAttribFormat driDispatchRemapTable[VertexAttribFormat_remap_index]
   1954 #define _gloffset_VertexAttribIFormat driDispatchRemapTable[VertexAttribIFormat_remap_index]
   1955 #define _gloffset_VertexAttribLFormat driDispatchRemapTable[VertexAttribLFormat_remap_index]
   1956 #define _gloffset_VertexBindingDivisor driDispatchRemapTable[VertexBindingDivisor_remap_index]
   1957 #define _gloffset_FramebufferParameteri driDispatchRemapTable[FramebufferParameteri_remap_index]
   1958 #define _gloffset_GetFramebufferParameteriv driDispatchRemapTable[GetFramebufferParameteriv_remap_index]
   1959 #define _gloffset_GetInternalformati64v driDispatchRemapTable[GetInternalformati64v_remap_index]
   1960 #define _gloffset_MultiDrawArraysIndirect driDispatchRemapTable[MultiDrawArraysIndirect_remap_index]
   1961 #define _gloffset_MultiDrawElementsIndirect driDispatchRemapTable[MultiDrawElementsIndirect_remap_index]
   1962 #define _gloffset_GetProgramInterfaceiv driDispatchRemapTable[GetProgramInterfaceiv_remap_index]
   1963 #define _gloffset_GetProgramResourceIndex driDispatchRemapTable[GetProgramResourceIndex_remap_index]
   1964 #define _gloffset_GetProgramResourceLocation driDispatchRemapTable[GetProgramResourceLocation_remap_index]
   1965 #define _gloffset_GetProgramResourceLocationIndex driDispatchRemapTable[GetProgramResourceLocationIndex_remap_index]
   1966 #define _gloffset_GetProgramResourceName driDispatchRemapTable[GetProgramResourceName_remap_index]
   1967 #define _gloffset_GetProgramResourceiv driDispatchRemapTable[GetProgramResourceiv_remap_index]
   1968 #define _gloffset_ShaderStorageBlockBinding driDispatchRemapTable[ShaderStorageBlockBinding_remap_index]
   1969 #define _gloffset_TexBufferRange driDispatchRemapTable[TexBufferRange_remap_index]
   1970 #define _gloffset_TexStorage2DMultisample driDispatchRemapTable[TexStorage2DMultisample_remap_index]
   1971 #define _gloffset_TexStorage3DMultisample driDispatchRemapTable[TexStorage3DMultisample_remap_index]
   1972 #define _gloffset_BufferStorage driDispatchRemapTable[BufferStorage_remap_index]
   1973 #define _gloffset_ClearTexImage driDispatchRemapTable[ClearTexImage_remap_index]
   1974 #define _gloffset_ClearTexSubImage driDispatchRemapTable[ClearTexSubImage_remap_index]
   1975 #define _gloffset_BindBuffersBase driDispatchRemapTable[BindBuffersBase_remap_index]
   1976 #define _gloffset_BindBuffersRange driDispatchRemapTable[BindBuffersRange_remap_index]
   1977 #define _gloffset_BindImageTextures driDispatchRemapTable[BindImageTextures_remap_index]
   1978 #define _gloffset_BindSamplers driDispatchRemapTable[BindSamplers_remap_index]
   1979 #define _gloffset_BindTextures driDispatchRemapTable[BindTextures_remap_index]
   1980 #define _gloffset_BindVertexBuffers driDispatchRemapTable[BindVertexBuffers_remap_index]
   1981 #define _gloffset_GetImageHandleARB driDispatchRemapTable[GetImageHandleARB_remap_index]
   1982 #define _gloffset_GetTextureHandleARB driDispatchRemapTable[GetTextureHandleARB_remap_index]
   1983 #define _gloffset_GetTextureSamplerHandleARB driDispatchRemapTable[GetTextureSamplerHandleARB_remap_index]
   1984 #define _gloffset_GetVertexAttribLui64vARB driDispatchRemapTable[GetVertexAttribLui64vARB_remap_index]
   1985 #define _gloffset_IsImageHandleResidentARB driDispatchRemapTable[IsImageHandleResidentARB_remap_index]
   1986 #define _gloffset_IsTextureHandleResidentARB driDispatchRemapTable[IsTextureHandleResidentARB_remap_index]
   1987 #define _gloffset_MakeImageHandleNonResidentARB driDispatchRemapTable[MakeImageHandleNonResidentARB_remap_index]
   1988 #define _gloffset_MakeImageHandleResidentARB driDispatchRemapTable[MakeImageHandleResidentARB_remap_index]
   1989 #define _gloffset_MakeTextureHandleNonResidentARB driDispatchRemapTable[MakeTextureHandleNonResidentARB_remap_index]
   1990 #define _gloffset_MakeTextureHandleResidentARB driDispatchRemapTable[MakeTextureHandleResidentARB_remap_index]
   1991 #define _gloffset_ProgramUniformHandleui64ARB driDispatchRemapTable[ProgramUniformHandleui64ARB_remap_index]
   1992 #define _gloffset_ProgramUniformHandleui64vARB driDispatchRemapTable[ProgramUniformHandleui64vARB_remap_index]
   1993 #define _gloffset_UniformHandleui64ARB driDispatchRemapTable[UniformHandleui64ARB_remap_index]
   1994 #define _gloffset_UniformHandleui64vARB driDispatchRemapTable[UniformHandleui64vARB_remap_index]
   1995 #define _gloffset_VertexAttribL1ui64ARB driDispatchRemapTable[VertexAttribL1ui64ARB_remap_index]
   1996 #define _gloffset_VertexAttribL1ui64vARB driDispatchRemapTable[VertexAttribL1ui64vARB_remap_index]
   1997 #define _gloffset_DispatchComputeGroupSizeARB driDispatchRemapTable[DispatchComputeGroupSizeARB_remap_index]
   1998 #define _gloffset_MultiDrawArraysIndirectCountARB driDispatchRemapTable[MultiDrawArraysIndirectCountARB_remap_index]
   1999 #define _gloffset_MultiDrawElementsIndirectCountARB driDispatchRemapTable[MultiDrawElementsIndirectCountARB_remap_index]
   2000 #define _gloffset_ClipControl driDispatchRemapTable[ClipControl_remap_index]
   2001 #define _gloffset_BindTextureUnit driDispatchRemapTable[BindTextureUnit_remap_index]
   2002 #define _gloffset_BlitNamedFramebuffer driDispatchRemapTable[BlitNamedFramebuffer_remap_index]
   2003 #define _gloffset_CheckNamedFramebufferStatus driDispatchRemapTable[CheckNamedFramebufferStatus_remap_index]
   2004 #define _gloffset_ClearNamedBufferData driDispatchRemapTable[ClearNamedBufferData_remap_index]
   2005 #define _gloffset_ClearNamedBufferSubData driDispatchRemapTable[ClearNamedBufferSubData_remap_index]
   2006 #define _gloffset_ClearNamedFramebufferfi driDispatchRemapTable[ClearNamedFramebufferfi_remap_index]
   2007 #define _gloffset_ClearNamedFramebufferfv driDispatchRemapTable[ClearNamedFramebufferfv_remap_index]
   2008 #define _gloffset_ClearNamedFramebufferiv driDispatchRemapTable[ClearNamedFramebufferiv_remap_index]
   2009 #define _gloffset_ClearNamedFramebufferuiv driDispatchRemapTable[ClearNamedFramebufferuiv_remap_index]
   2010 #define _gloffset_CompressedTextureSubImage1D driDispatchRemapTable[CompressedTextureSubImage1D_remap_index]
   2011 #define _gloffset_CompressedTextureSubImage2D driDispatchRemapTable[CompressedTextureSubImage2D_remap_index]
   2012 #define _gloffset_CompressedTextureSubImage3D driDispatchRemapTable[CompressedTextureSubImage3D_remap_index]
   2013 #define _gloffset_CopyNamedBufferSubData driDispatchRemapTable[CopyNamedBufferSubData_remap_index]
   2014 #define _gloffset_CopyTextureSubImage1D driDispatchRemapTable[CopyTextureSubImage1D_remap_index]
   2015 #define _gloffset_CopyTextureSubImage2D driDispatchRemapTable[CopyTextureSubImage2D_remap_index]
   2016 #define _gloffset_CopyTextureSubImage3D driDispatchRemapTable[CopyTextureSubImage3D_remap_index]
   2017 #define _gloffset_CreateBuffers driDispatchRemapTable[CreateBuffers_remap_index]
   2018 #define _gloffset_CreateFramebuffers driDispatchRemapTable[CreateFramebuffers_remap_index]
   2019 #define _gloffset_CreateProgramPipelines driDispatchRemapTable[CreateProgramPipelines_remap_index]
   2020 #define _gloffset_CreateQueries driDispatchRemapTable[CreateQueries_remap_index]
   2021 #define _gloffset_CreateRenderbuffers driDispatchRemapTable[CreateRenderbuffers_remap_index]
   2022 #define _gloffset_CreateSamplers driDispatchRemapTable[CreateSamplers_remap_index]
   2023 #define _gloffset_CreateTextures driDispatchRemapTable[CreateTextures_remap_index]
   2024 #define _gloffset_CreateTransformFeedbacks driDispatchRemapTable[CreateTransformFeedbacks_remap_index]
   2025 #define _gloffset_CreateVertexArrays driDispatchRemapTable[CreateVertexArrays_remap_index]
   2026 #define _gloffset_DisableVertexArrayAttrib driDispatchRemapTable[DisableVertexArrayAttrib_remap_index]
   2027 #define _gloffset_EnableVertexArrayAttrib driDispatchRemapTable[EnableVertexArrayAttrib_remap_index]
   2028 #define _gloffset_FlushMappedNamedBufferRange driDispatchRemapTable[FlushMappedNamedBufferRange_remap_index]
   2029 #define _gloffset_GenerateTextureMipmap driDispatchRemapTable[GenerateTextureMipmap_remap_index]
   2030 #define _gloffset_GetCompressedTextureImage driDispatchRemapTable[GetCompressedTextureImage_remap_index]
   2031 #define _gloffset_GetNamedBufferParameteri64v driDispatchRemapTable[GetNamedBufferParameteri64v_remap_index]
   2032 #define _gloffset_GetNamedBufferParameteriv driDispatchRemapTable[GetNamedBufferParameteriv_remap_index]
   2033 #define _gloffset_GetNamedBufferPointerv driDispatchRemapTable[GetNamedBufferPointerv_remap_index]
   2034 #define _gloffset_GetNamedBufferSubData driDispatchRemapTable[GetNamedBufferSubData_remap_index]
   2035 #define _gloffset_GetNamedFramebufferAttachmentParameteriv driDispatchRemapTable[GetNamedFramebufferAttachmentParameteriv_remap_index]
   2036 #define _gloffset_GetNamedFramebufferParameteriv driDispatchRemapTable[GetNamedFramebufferParameteriv_remap_index]
   2037 #define _gloffset_GetNamedRenderbufferParameteriv driDispatchRemapTable[GetNamedRenderbufferParameteriv_remap_index]
   2038 #define _gloffset_GetQueryBufferObjecti64v driDispatchRemapTable[GetQueryBufferObjecti64v_remap_index]
   2039 #define _gloffset_GetQueryBufferObjectiv driDispatchRemapTable[GetQueryBufferObjectiv_remap_index]
   2040 #define _gloffset_GetQueryBufferObjectui64v driDispatchRemapTable[GetQueryBufferObjectui64v_remap_index]
   2041 #define _gloffset_GetQueryBufferObjectuiv driDispatchRemapTable[GetQueryBufferObjectuiv_remap_index]
   2042 #define _gloffset_GetTextureImage driDispatchRemapTable[GetTextureImage_remap_index]
   2043 #define _gloffset_GetTextureLevelParameterfv driDispatchRemapTable[GetTextureLevelParameterfv_remap_index]
   2044 #define _gloffset_GetTextureLevelParameteriv driDispatchRemapTable[GetTextureLevelParameteriv_remap_index]
   2045 #define _gloffset_GetTextureParameterIiv driDispatchRemapTable[GetTextureParameterIiv_remap_index]
   2046 #define _gloffset_GetTextureParameterIuiv driDispatchRemapTable[GetTextureParameterIuiv_remap_index]
   2047 #define _gloffset_GetTextureParameterfv driDispatchRemapTable[GetTextureParameterfv_remap_index]
   2048 #define _gloffset_GetTextureParameteriv driDispatchRemapTable[GetTextureParameteriv_remap_index]
   2049 #define _gloffset_GetTransformFeedbacki64_v driDispatchRemapTable[GetTransformFeedbacki64_v_remap_index]
   2050 #define _gloffset_GetTransformFeedbacki_v driDispatchRemapTable[GetTransformFeedbacki_v_remap_index]
   2051 #define _gloffset_GetTransformFeedbackiv driDispatchRemapTable[GetTransformFeedbackiv_remap_index]
   2052 #define _gloffset_GetVertexArrayIndexed64iv driDispatchRemapTable[GetVertexArrayIndexed64iv_remap_index]
   2053 #define _gloffset_GetVertexArrayIndexediv driDispatchRemapTable[GetVertexArrayIndexediv_remap_index]
   2054 #define _gloffset_GetVertexArrayiv driDispatchRemapTable[GetVertexArrayiv_remap_index]
   2055 #define _gloffset_InvalidateNamedFramebufferData driDispatchRemapTable[InvalidateNamedFramebufferData_remap_index]
   2056 #define _gloffset_InvalidateNamedFramebufferSubData driDispatchRemapTable[InvalidateNamedFramebufferSubData_remap_index]
   2057 #define _gloffset_MapNamedBuffer driDispatchRemapTable[MapNamedBuffer_remap_index]
   2058 #define _gloffset_MapNamedBufferRange driDispatchRemapTable[MapNamedBufferRange_remap_index]
   2059 #define _gloffset_NamedBufferData driDispatchRemapTable[NamedBufferData_remap_index]
   2060 #define _gloffset_NamedBufferStorage driDispatchRemapTable[NamedBufferStorage_remap_index]
   2061 #define _gloffset_NamedBufferSubData driDispatchRemapTable[NamedBufferSubData_remap_index]
   2062 #define _gloffset_NamedFramebufferDrawBuffer driDispatchRemapTable[NamedFramebufferDrawBuffer_remap_index]
   2063 #define _gloffset_NamedFramebufferDrawBuffers driDispatchRemapTable[NamedFramebufferDrawBuffers_remap_index]
   2064 #define _gloffset_NamedFramebufferParameteri driDispatchRemapTable[NamedFramebufferParameteri_remap_index]
   2065 #define _gloffset_NamedFramebufferReadBuffer driDispatchRemapTable[NamedFramebufferReadBuffer_remap_index]
   2066 #define _gloffset_NamedFramebufferRenderbuffer driDispatchRemapTable[NamedFramebufferRenderbuffer_remap_index]
   2067 #define _gloffset_NamedFramebufferTexture driDispatchRemapTable[NamedFramebufferTexture_remap_index]
   2068 #define _gloffset_NamedFramebufferTextureLayer driDispatchRemapTable[NamedFramebufferTextureLayer_remap_index]
   2069 #define _gloffset_NamedRenderbufferStorage driDispatchRemapTable[NamedRenderbufferStorage_remap_index]
   2070 #define _gloffset_NamedRenderbufferStorageMultisample driDispatchRemapTable[NamedRenderbufferStorageMultisample_remap_index]
   2071 #define _gloffset_TextureBuffer driDispatchRemapTable[TextureBuffer_remap_index]
   2072 #define _gloffset_TextureBufferRange driDispatchRemapTable[TextureBufferRange_remap_index]
   2073 #define _gloffset_TextureParameterIiv driDispatchRemapTable[TextureParameterIiv_remap_index]
   2074 #define _gloffset_TextureParameterIuiv driDispatchRemapTable[TextureParameterIuiv_remap_index]
   2075 #define _gloffset_TextureParameterf driDispatchRemapTable[TextureParameterf_remap_index]
   2076 #define _gloffset_TextureParameterfv driDispatchRemapTable[TextureParameterfv_remap_index]
   2077 #define _gloffset_TextureParameteri driDispatchRemapTable[TextureParameteri_remap_index]
   2078 #define _gloffset_TextureParameteriv driDispatchRemapTable[TextureParameteriv_remap_index]
   2079 #define _gloffset_TextureStorage1D driDispatchRemapTable[TextureStorage1D_remap_index]
   2080 #define _gloffset_TextureStorage2D driDispatchRemapTable[TextureStorage2D_remap_index]
   2081 #define _gloffset_TextureStorage2DMultisample driDispatchRemapTable[TextureStorage2DMultisample_remap_index]
   2082 #define _gloffset_TextureStorage3D driDispatchRemapTable[TextureStorage3D_remap_index]
   2083 #define _gloffset_TextureStorage3DMultisample driDispatchRemapTable[TextureStorage3DMultisample_remap_index]
   2084 #define _gloffset_TextureSubImage1D driDispatchRemapTable[TextureSubImage1D_remap_index]
   2085 #define _gloffset_TextureSubImage2D driDispatchRemapTable[TextureSubImage2D_remap_index]
   2086 #define _gloffset_TextureSubImage3D driDispatchRemapTable[TextureSubImage3D_remap_index]
   2087 #define _gloffset_TransformFeedbackBufferBase driDispatchRemapTable[TransformFeedbackBufferBase_remap_index]
   2088 #define _gloffset_TransformFeedbackBufferRange driDispatchRemapTable[TransformFeedbackBufferRange_remap_index]
   2089 #define _gloffset_UnmapNamedBuffer driDispatchRemapTable[UnmapNamedBuffer_remap_index]
   2090 #define _gloffset_VertexArrayAttribBinding driDispatchRemapTable[VertexArrayAttribBinding_remap_index]
   2091 #define _gloffset_VertexArrayAttribFormat driDispatchRemapTable[VertexArrayAttribFormat_remap_index]
   2092 #define _gloffset_VertexArrayAttribIFormat driDispatchRemapTable[VertexArrayAttribIFormat_remap_index]
   2093 #define _gloffset_VertexArrayAttribLFormat driDispatchRemapTable[VertexArrayAttribLFormat_remap_index]
   2094 #define _gloffset_VertexArrayBindingDivisor driDispatchRemapTable[VertexArrayBindingDivisor_remap_index]
   2095 #define _gloffset_VertexArrayElementBuffer driDispatchRemapTable[VertexArrayElementBuffer_remap_index]
   2096 #define _gloffset_VertexArrayVertexBuffer driDispatchRemapTable[VertexArrayVertexBuffer_remap_index]
   2097 #define _gloffset_VertexArrayVertexBuffers driDispatchRemapTable[VertexArrayVertexBuffers_remap_index]
   2098 #define _gloffset_GetCompressedTextureSubImage driDispatchRemapTable[GetCompressedTextureSubImage_remap_index]
   2099 #define _gloffset_GetTextureSubImage driDispatchRemapTable[GetTextureSubImage_remap_index]
   2100 #define _gloffset_BufferPageCommitmentARB driDispatchRemapTable[BufferPageCommitmentARB_remap_index]
   2101 #define _gloffset_NamedBufferPageCommitmentARB driDispatchRemapTable[NamedBufferPageCommitmentARB_remap_index]
   2102 #define _gloffset_GetUniformi64vARB driDispatchRemapTable[GetUniformi64vARB_remap_index]
   2103 #define _gloffset_GetUniformui64vARB driDispatchRemapTable[GetUniformui64vARB_remap_index]
   2104 #define _gloffset_GetnUniformi64vARB driDispatchRemapTable[GetnUniformi64vARB_remap_index]
   2105 #define _gloffset_GetnUniformui64vARB driDispatchRemapTable[GetnUniformui64vARB_remap_index]
   2106 #define _gloffset_ProgramUniform1i64ARB driDispatchRemapTable[ProgramUniform1i64ARB_remap_index]
   2107 #define _gloffset_ProgramUniform1i64vARB driDispatchRemapTable[ProgramUniform1i64vARB_remap_index]
   2108 #define _gloffset_ProgramUniform1ui64ARB driDispatchRemapTable[ProgramUniform1ui64ARB_remap_index]
   2109 #define _gloffset_ProgramUniform1ui64vARB driDispatchRemapTable[ProgramUniform1ui64vARB_remap_index]
   2110 #define _gloffset_ProgramUniform2i64ARB driDispatchRemapTable[ProgramUniform2i64ARB_remap_index]
   2111 #define _gloffset_ProgramUniform2i64vARB driDispatchRemapTable[ProgramUniform2i64vARB_remap_index]
   2112 #define _gloffset_ProgramUniform2ui64ARB driDispatchRemapTable[ProgramUniform2ui64ARB_remap_index]
   2113 #define _gloffset_ProgramUniform2ui64vARB driDispatchRemapTable[ProgramUniform2ui64vARB_remap_index]
   2114 #define _gloffset_ProgramUniform3i64ARB driDispatchRemapTable[ProgramUniform3i64ARB_remap_index]
   2115 #define _gloffset_ProgramUniform3i64vARB driDispatchRemapTable[ProgramUniform3i64vARB_remap_index]
   2116 #define _gloffset_ProgramUniform3ui64ARB driDispatchRemapTable[ProgramUniform3ui64ARB_remap_index]
   2117 #define _gloffset_ProgramUniform3ui64vARB driDispatchRemapTable[ProgramUniform3ui64vARB_remap_index]
   2118 #define _gloffset_ProgramUniform4i64ARB driDispatchRemapTable[ProgramUniform4i64ARB_remap_index]
   2119 #define _gloffset_ProgramUniform4i64vARB driDispatchRemapTable[ProgramUniform4i64vARB_remap_index]
   2120 #define _gloffset_ProgramUniform4ui64ARB driDispatchRemapTable[ProgramUniform4ui64ARB_remap_index]
   2121 #define _gloffset_ProgramUniform4ui64vARB driDispatchRemapTable[ProgramUniform4ui64vARB_remap_index]
   2122 #define _gloffset_Uniform1i64ARB driDispatchRemapTable[Uniform1i64ARB_remap_index]
   2123 #define _gloffset_Uniform1i64vARB driDispatchRemapTable[Uniform1i64vARB_remap_index]
   2124 #define _gloffset_Uniform1ui64ARB driDispatchRemapTable[Uniform1ui64ARB_remap_index]
   2125 #define _gloffset_Uniform1ui64vARB driDispatchRemapTable[Uniform1ui64vARB_remap_index]
   2126 #define _gloffset_Uniform2i64ARB driDispatchRemapTable[Uniform2i64ARB_remap_index]
   2127 #define _gloffset_Uniform2i64vARB driDispatchRemapTable[Uniform2i64vARB_remap_index]
   2128 #define _gloffset_Uniform2ui64ARB driDispatchRemapTable[Uniform2ui64ARB_remap_index]
   2129 #define _gloffset_Uniform2ui64vARB driDispatchRemapTable[Uniform2ui64vARB_remap_index]
   2130 #define _gloffset_Uniform3i64ARB driDispatchRemapTable[Uniform3i64ARB_remap_index]
   2131 #define _gloffset_Uniform3i64vARB driDispatchRemapTable[Uniform3i64vARB_remap_index]
   2132 #define _gloffset_Uniform3ui64ARB driDispatchRemapTable[Uniform3ui64ARB_remap_index]
   2133 #define _gloffset_Uniform3ui64vARB driDispatchRemapTable[Uniform3ui64vARB_remap_index]
   2134 #define _gloffset_Uniform4i64ARB driDispatchRemapTable[Uniform4i64ARB_remap_index]
   2135 #define _gloffset_Uniform4i64vARB driDispatchRemapTable[Uniform4i64vARB_remap_index]
   2136 #define _gloffset_Uniform4ui64ARB driDispatchRemapTable[Uniform4ui64ARB_remap_index]
   2137 #define _gloffset_Uniform4ui64vARB driDispatchRemapTable[Uniform4ui64vARB_remap_index]
   2138 #define _gloffset_SpecializeShaderARB driDispatchRemapTable[SpecializeShaderARB_remap_index]
   2139 #define _gloffset_InvalidateBufferData driDispatchRemapTable[InvalidateBufferData_remap_index]
   2140 #define _gloffset_InvalidateBufferSubData driDispatchRemapTable[InvalidateBufferSubData_remap_index]
   2141 #define _gloffset_InvalidateFramebuffer driDispatchRemapTable[InvalidateFramebuffer_remap_index]
   2142 #define _gloffset_InvalidateSubFramebuffer driDispatchRemapTable[InvalidateSubFramebuffer_remap_index]
   2143 #define _gloffset_InvalidateTexImage driDispatchRemapTable[InvalidateTexImage_remap_index]
   2144 #define _gloffset_InvalidateTexSubImage driDispatchRemapTable[InvalidateTexSubImage_remap_index]
   2145 #define _gloffset_PolygonOffsetEXT driDispatchRemapTable[PolygonOffsetEXT_remap_index]
   2146 #define _gloffset_DrawTexfOES driDispatchRemapTable[DrawTexfOES_remap_index]
   2147 #define _gloffset_DrawTexfvOES driDispatchRemapTable[DrawTexfvOES_remap_index]
   2148 #define _gloffset_DrawTexiOES driDispatchRemapTable[DrawTexiOES_remap_index]
   2149 #define _gloffset_DrawTexivOES driDispatchRemapTable[DrawTexivOES_remap_index]
   2150 #define _gloffset_DrawTexsOES driDispatchRemapTable[DrawTexsOES_remap_index]
   2151 #define _gloffset_DrawTexsvOES driDispatchRemapTable[DrawTexsvOES_remap_index]
   2152 #define _gloffset_DrawTexxOES driDispatchRemapTable[DrawTexxOES_remap_index]
   2153 #define _gloffset_DrawTexxvOES driDispatchRemapTable[DrawTexxvOES_remap_index]
   2154 #define _gloffset_PointSizePointerOES driDispatchRemapTable[PointSizePointerOES_remap_index]
   2155 #define _gloffset_QueryMatrixxOES driDispatchRemapTable[QueryMatrixxOES_remap_index]
   2156 #define _gloffset_SampleMaskSGIS driDispatchRemapTable[SampleMaskSGIS_remap_index]
   2157 #define _gloffset_SamplePatternSGIS driDispatchRemapTable[SamplePatternSGIS_remap_index]
   2158 #define _gloffset_ColorPointerEXT driDispatchRemapTable[ColorPointerEXT_remap_index]
   2159 #define _gloffset_EdgeFlagPointerEXT driDispatchRemapTable[EdgeFlagPointerEXT_remap_index]
   2160 #define _gloffset_IndexPointerEXT driDispatchRemapTable[IndexPointerEXT_remap_index]
   2161 #define _gloffset_NormalPointerEXT driDispatchRemapTable[NormalPointerEXT_remap_index]
   2162 #define _gloffset_TexCoordPointerEXT driDispatchRemapTable[TexCoordPointerEXT_remap_index]
   2163 #define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index]
   2164 #define _gloffset_DiscardFramebufferEXT driDispatchRemapTable[DiscardFramebufferEXT_remap_index]
   2165 #define _gloffset_ActiveShaderProgram driDispatchRemapTable[ActiveShaderProgram_remap_index]
   2166 #define _gloffset_BindProgramPipeline driDispatchRemapTable[BindProgramPipeline_remap_index]
   2167 #define _gloffset_CreateShaderProgramv driDispatchRemapTable[CreateShaderProgramv_remap_index]
   2168 #define _gloffset_DeleteProgramPipelines driDispatchRemapTable[DeleteProgramPipelines_remap_index]
   2169 #define _gloffset_GenProgramPipelines driDispatchRemapTable[GenProgramPipelines_remap_index]
   2170 #define _gloffset_GetProgramPipelineInfoLog driDispatchRemapTable[GetProgramPipelineInfoLog_remap_index]
   2171 #define _gloffset_GetProgramPipelineiv driDispatchRemapTable[GetProgramPipelineiv_remap_index]
   2172 #define _gloffset_IsProgramPipeline driDispatchRemapTable[IsProgramPipeline_remap_index]
   2173 #define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index]
   2174 #define _gloffset_ProgramUniform1d driDispatchRemapTable[ProgramUniform1d_remap_index]
   2175 #define _gloffset_ProgramUniform1dv driDispatchRemapTable[ProgramUniform1dv_remap_index]
   2176 #define _gloffset_ProgramUniform1f driDispatchRemapTable[ProgramUniform1f_remap_index]
   2177 #define _gloffset_ProgramUniform1fv driDispatchRemapTable[ProgramUniform1fv_remap_index]
   2178 #define _gloffset_ProgramUniform1i driDispatchRemapTable[ProgramUniform1i_remap_index]
   2179 #define _gloffset_ProgramUniform1iv driDispatchRemapTable[ProgramUniform1iv_remap_index]
   2180 #define _gloffset_ProgramUniform1ui driDispatchRemapTable[ProgramUniform1ui_remap_index]
   2181 #define _gloffset_ProgramUniform1uiv driDispatchRemapTable[ProgramUniform1uiv_remap_index]
   2182 #define _gloffset_ProgramUniform2d driDispatchRemapTable[ProgramUniform2d_remap_index]
   2183 #define _gloffset_ProgramUniform2dv driDispatchRemapTable[ProgramUniform2dv_remap_index]
   2184 #define _gloffset_ProgramUniform2f driDispatchRemapTable[ProgramUniform2f_remap_index]
   2185 #define _gloffset_ProgramUniform2fv driDispatchRemapTable[ProgramUniform2fv_remap_index]
   2186 #define _gloffset_ProgramUniform2i driDispatchRemapTable[ProgramUniform2i_remap_index]
   2187 #define _gloffset_ProgramUniform2iv driDispatchRemapTable[ProgramUniform2iv_remap_index]
   2188 #define _gloffset_ProgramUniform2ui driDispatchRemapTable[ProgramUniform2ui_remap_index]
   2189 #define _gloffset_ProgramUniform2uiv driDispatchRemapTable[ProgramUniform2uiv_remap_index]
   2190 #define _gloffset_ProgramUniform3d driDispatchRemapTable[ProgramUniform3d_remap_index]
   2191 #define _gloffset_ProgramUniform3dv driDispatchRemapTable[ProgramUniform3dv_remap_index]
   2192 #define _gloffset_ProgramUniform3f driDispatchRemapTable[ProgramUniform3f_remap_index]
   2193 #define _gloffset_ProgramUniform3fv driDispatchRemapTable[ProgramUniform3fv_remap_index]
   2194 #define _gloffset_ProgramUniform3i driDispatchRemapTable[ProgramUniform3i_remap_index]
   2195 #define _gloffset_ProgramUniform3iv driDispatchRemapTable[ProgramUniform3iv_remap_index]
   2196 #define _gloffset_ProgramUniform3ui driDispatchRemapTable[ProgramUniform3ui_remap_index]
   2197 #define _gloffset_ProgramUniform3uiv driDispatchRemapTable[ProgramUniform3uiv_remap_index]
   2198 #define _gloffset_ProgramUniform4d driDispatchRemapTable[ProgramUniform4d_remap_index]
   2199 #define _gloffset_ProgramUniform4dv driDispatchRemapTable[ProgramUniform4dv_remap_index]
   2200 #define _gloffset_ProgramUniform4f driDispatchRemapTable[ProgramUniform4f_remap_index]
   2201 #define _gloffset_ProgramUniform4fv driDispatchRemapTable[ProgramUniform4fv_remap_index]
   2202 #define _gloffset_ProgramUniform4i driDispatchRemapTable[ProgramUniform4i_remap_index]
   2203 #define _gloffset_ProgramUniform4iv driDispatchRemapTable[ProgramUniform4iv_remap_index]
   2204 #define _gloffset_ProgramUniform4ui driDispatchRemapTable[ProgramUniform4ui_remap_index]
   2205 #define _gloffset_ProgramUniform4uiv driDispatchRemapTable[ProgramUniform4uiv_remap_index]
   2206 #define _gloffset_ProgramUniformMatrix2dv driDispatchRemapTable[ProgramUniformMatrix2dv_remap_index]
   2207 #define _gloffset_ProgramUniformMatrix2fv driDispatchRemapTable[ProgramUniformMatrix2fv_remap_index]
   2208 #define _gloffset_ProgramUniformMatrix2x3dv driDispatchRemapTable[ProgramUniformMatrix2x3dv_remap_index]
   2209 #define _gloffset_ProgramUniformMatrix2x3fv driDispatchRemapTable[ProgramUniformMatrix2x3fv_remap_index]
   2210 #define _gloffset_ProgramUniformMatrix2x4dv driDispatchRemapTable[ProgramUniformMatrix2x4dv_remap_index]
   2211 #define _gloffset_ProgramUniformMatrix2x4fv driDispatchRemapTable[ProgramUniformMatrix2x4fv_remap_index]
   2212 #define _gloffset_ProgramUniformMatrix3dv driDispatchRemapTable[ProgramUniformMatrix3dv_remap_index]
   2213 #define _gloffset_ProgramUniformMatrix3fv driDispatchRemapTable[ProgramUniformMatrix3fv_remap_index]
   2214 #define _gloffset_ProgramUniformMatrix3x2dv driDispatchRemapTable[ProgramUniformMatrix3x2dv_remap_index]
   2215 #define _gloffset_ProgramUniformMatrix3x2fv driDispatchRemapTable[ProgramUniformMatrix3x2fv_remap_index]
   2216 #define _gloffset_ProgramUniformMatrix3x4dv driDispatchRemapTable[ProgramUniformMatrix3x4dv_remap_index]
   2217 #define _gloffset_ProgramUniformMatrix3x4fv driDispatchRemapTable[ProgramUniformMatrix3x4fv_remap_index]
   2218 #define _gloffset_ProgramUniformMatrix4dv driDispatchRemapTable[ProgramUniformMatrix4dv_remap_index]
   2219 #define _gloffset_ProgramUniformMatrix4fv driDispatchRemapTable[ProgramUniformMatrix4fv_remap_index]
   2220 #define _gloffset_ProgramUniformMatrix4x2dv driDispatchRemapTable[ProgramUniformMatrix4x2dv_remap_index]
   2221 #define _gloffset_ProgramUniformMatrix4x2fv driDispatchRemapTable[ProgramUniformMatrix4x2fv_remap_index]
   2222 #define _gloffset_ProgramUniformMatrix4x3dv driDispatchRemapTable[ProgramUniformMatrix4x3dv_remap_index]
   2223 #define _gloffset_ProgramUniformMatrix4x3fv driDispatchRemapTable[ProgramUniformMatrix4x3fv_remap_index]
   2224 #define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index]
   2225 #define _gloffset_UseProgramStages driDispatchRemapTable[UseProgramStages_remap_index]
   2226 #define _gloffset_ValidateProgramPipeline driDispatchRemapTable[ValidateProgramPipeline_remap_index]
   2227 #define _gloffset_DebugMessageCallback driDispatchRemapTable[DebugMessageCallback_remap_index]
   2228 #define _gloffset_DebugMessageControl driDispatchRemapTable[DebugMessageControl_remap_index]
   2229 #define _gloffset_DebugMessageInsert driDispatchRemapTable[DebugMessageInsert_remap_index]
   2230 #define _gloffset_GetDebugMessageLog driDispatchRemapTable[GetDebugMessageLog_remap_index]
   2231 #define _gloffset_GetObjectLabel driDispatchRemapTable[GetObjectLabel_remap_index]
   2232 #define _gloffset_GetObjectPtrLabel driDispatchRemapTable[GetObjectPtrLabel_remap_index]
   2233 #define _gloffset_ObjectLabel driDispatchRemapTable[ObjectLabel_remap_index]
   2234 #define _gloffset_ObjectPtrLabel driDispatchRemapTable[ObjectPtrLabel_remap_index]
   2235 #define _gloffset_PopDebugGroup driDispatchRemapTable[PopDebugGroup_remap_index]
   2236 #define _gloffset_PushDebugGroup driDispatchRemapTable[PushDebugGroup_remap_index]
   2237 #define _gloffset_SecondaryColor3fEXT driDispatchRemapTable[SecondaryColor3fEXT_remap_index]
   2238 #define _gloffset_SecondaryColor3fvEXT driDispatchRemapTable[SecondaryColor3fvEXT_remap_index]
   2239 #define _gloffset_MultiDrawElementsEXT driDispatchRemapTable[MultiDrawElementsEXT_remap_index]
   2240 #define _gloffset_FogCoordfEXT driDispatchRemapTable[FogCoordfEXT_remap_index]
   2241 #define _gloffset_FogCoordfvEXT driDispatchRemapTable[FogCoordfvEXT_remap_index]
   2242 #define _gloffset_ResizeBuffersMESA driDispatchRemapTable[ResizeBuffersMESA_remap_index]
   2243 #define _gloffset_WindowPos4dMESA driDispatchRemapTable[WindowPos4dMESA_remap_index]
   2244 #define _gloffset_WindowPos4dvMESA driDispatchRemapTable[WindowPos4dvMESA_remap_index]
   2245 #define _gloffset_WindowPos4fMESA driDispatchRemapTable[WindowPos4fMESA_remap_index]
   2246 #define _gloffset_WindowPos4fvMESA driDispatchRemapTable[WindowPos4fvMESA_remap_index]
   2247 #define _gloffset_WindowPos4iMESA driDispatchRemapTable[WindowPos4iMESA_remap_index]
   2248 #define _gloffset_WindowPos4ivMESA driDispatchRemapTable[WindowPos4ivMESA_remap_index]
   2249 #define _gloffset_WindowPos4sMESA driDispatchRemapTable[WindowPos4sMESA_remap_index]
   2250 #define _gloffset_WindowPos4svMESA driDispatchRemapTable[WindowPos4svMESA_remap_index]
   2251 #define _gloffset_MultiModeDrawArraysIBM driDispatchRemapTable[MultiModeDrawArraysIBM_remap_index]
   2252 #define _gloffset_MultiModeDrawElementsIBM driDispatchRemapTable[MultiModeDrawElementsIBM_remap_index]
   2253 #define _gloffset_AreProgramsResidentNV driDispatchRemapTable[AreProgramsResidentNV_remap_index]
   2254 #define _gloffset_ExecuteProgramNV driDispatchRemapTable[ExecuteProgramNV_remap_index]
   2255 #define _gloffset_GetProgramParameterdvNV driDispatchRemapTable[GetProgramParameterdvNV_remap_index]
   2256 #define _gloffset_GetProgramParameterfvNV driDispatchRemapTable[GetProgramParameterfvNV_remap_index]
   2257 #define _gloffset_GetProgramStringNV driDispatchRemapTable[GetProgramStringNV_remap_index]
   2258 #define _gloffset_GetProgramivNV driDispatchRemapTable[GetProgramivNV_remap_index]
   2259 #define _gloffset_GetTrackMatrixivNV driDispatchRemapTable[GetTrackMatrixivNV_remap_index]
   2260 #define _gloffset_GetVertexAttribdvNV driDispatchRemapTable[GetVertexAttribdvNV_remap_index]
   2261 #define _gloffset_GetVertexAttribfvNV driDispatchRemapTable[GetVertexAttribfvNV_remap_index]
   2262 #define _gloffset_GetVertexAttribivNV driDispatchRemapTable[GetVertexAttribivNV_remap_index]
   2263 #define _gloffset_LoadProgramNV driDispatchRemapTable[LoadProgramNV_remap_index]
   2264 #define _gloffset_ProgramParameters4dvNV driDispatchRemapTable[ProgramParameters4dvNV_remap_index]
   2265 #define _gloffset_ProgramParameters4fvNV driDispatchRemapTable[ProgramParameters4fvNV_remap_index]
   2266 #define _gloffset_RequestResidentProgramsNV driDispatchRemapTable[RequestResidentProgramsNV_remap_index]
   2267 #define _gloffset_TrackMatrixNV driDispatchRemapTable[TrackMatrixNV_remap_index]
   2268 #define _gloffset_VertexAttrib1dNV driDispatchRemapTable[VertexAttrib1dNV_remap_index]
   2269 #define _gloffset_VertexAttrib1dvNV driDispatchRemapTable[VertexAttrib1dvNV_remap_index]
   2270 #define _gloffset_VertexAttrib1fNV driDispatchRemapTable[VertexAttrib1fNV_remap_index]
   2271 #define _gloffset_VertexAttrib1fvNV driDispatchRemapTable[VertexAttrib1fvNV_remap_index]
   2272 #define _gloffset_VertexAttrib1sNV driDispatchRemapTable[VertexAttrib1sNV_remap_index]
   2273 #define _gloffset_VertexAttrib1svNV driDispatchRemapTable[VertexAttrib1svNV_remap_index]
   2274 #define _gloffset_VertexAttrib2dNV driDispatchRemapTable[VertexAttrib2dNV_remap_index]
   2275 #define _gloffset_VertexAttrib2dvNV driDispatchRemapTable[VertexAttrib2dvNV_remap_index]
   2276 #define _gloffset_VertexAttrib2fNV driDispatchRemapTable[VertexAttrib2fNV_remap_index]
   2277 #define _gloffset_VertexAttrib2fvNV driDispatchRemapTable[VertexAttrib2fvNV_remap_index]
   2278 #define _gloffset_VertexAttrib2sNV driDispatchRemapTable[VertexAttrib2sNV_remap_index]
   2279 #define _gloffset_VertexAttrib2svNV driDispatchRemapTable[VertexAttrib2svNV_remap_index]
   2280 #define _gloffset_VertexAttrib3dNV driDispatchRemapTable[VertexAttrib3dNV_remap_index]
   2281 #define _gloffset_VertexAttrib3dvNV driDispatchRemapTable[VertexAttrib3dvNV_remap_index]
   2282 #define _gloffset_VertexAttrib3fNV driDispatchRemapTable[VertexAttrib3fNV_remap_index]
   2283 #define _gloffset_VertexAttrib3fvNV driDispatchRemapTable[VertexAttrib3fvNV_remap_index]
   2284 #define _gloffset_VertexAttrib3sNV driDispatchRemapTable[VertexAttrib3sNV_remap_index]
   2285 #define _gloffset_VertexAttrib3svNV driDispatchRemapTable[VertexAttrib3svNV_remap_index]
   2286 #define _gloffset_VertexAttrib4dNV driDispatchRemapTable[VertexAttrib4dNV_remap_index]
   2287 #define _gloffset_VertexAttrib4dvNV driDispatchRemapTable[VertexAttrib4dvNV_remap_index]
   2288 #define _gloffset_VertexAttrib4fNV driDispatchRemapTable[VertexAttrib4fNV_remap_index]
   2289 #define _gloffset_VertexAttrib4fvNV driDispatchRemapTable[VertexAttrib4fvNV_remap_index]
   2290 #define _gloffset_VertexAttrib4sNV driDispatchRemapTable[VertexAttrib4sNV_remap_index]
   2291 #define _gloffset_VertexAttrib4svNV driDispatchRemapTable[VertexAttrib4svNV_remap_index]
   2292 #define _gloffset_VertexAttrib4ubNV driDispatchRemapTable[VertexAttrib4ubNV_remap_index]
   2293 #define _gloffset_VertexAttrib4ubvNV driDispatchRemapTable[VertexAttrib4ubvNV_remap_index]
   2294 #define _gloffset_VertexAttribPointerNV driDispatchRemapTable[VertexAttribPointerNV_remap_index]
   2295 #define _gloffset_VertexAttribs1dvNV driDispatchRemapTable[VertexAttribs1dvNV_remap_index]
   2296 #define _gloffset_VertexAttribs1fvNV driDispatchRemapTable[VertexAttribs1fvNV_remap_index]
   2297 #define _gloffset_VertexAttribs1svNV driDispatchRemapTable[VertexAttribs1svNV_remap_index]
   2298 #define _gloffset_VertexAttribs2dvNV driDispatchRemapTable[VertexAttribs2dvNV_remap_index]
   2299 #define _gloffset_VertexAttribs2fvNV driDispatchRemapTable[VertexAttribs2fvNV_remap_index]
   2300 #define _gloffset_VertexAttribs2svNV driDispatchRemapTable[VertexAttribs2svNV_remap_index]
   2301 #define _gloffset_VertexAttribs3dvNV driDispatchRemapTable[VertexAttribs3dvNV_remap_index]
   2302 #define _gloffset_VertexAttribs3fvNV driDispatchRemapTable[VertexAttribs3fvNV_remap_index]
   2303 #define _gloffset_VertexAttribs3svNV driDispatchRemapTable[VertexAttribs3svNV_remap_index]
   2304 #define _gloffset_VertexAttribs4dvNV driDispatchRemapTable[VertexAttribs4dvNV_remap_index]
   2305 #define _gloffset_VertexAttribs4fvNV driDispatchRemapTable[VertexAttribs4fvNV_remap_index]
   2306 #define _gloffset_VertexAttribs4svNV driDispatchRemapTable[VertexAttribs4svNV_remap_index]
   2307 #define _gloffset_VertexAttribs4ubvNV driDispatchRemapTable[VertexAttribs4ubvNV_remap_index]
   2308 #define _gloffset_GetTexBumpParameterfvATI driDispatchRemapTable[GetTexBumpParameterfvATI_remap_index]
   2309 #define _gloffset_GetTexBumpParameterivATI driDispatchRemapTable[GetTexBumpParameterivATI_remap_index]
   2310 #define _gloffset_TexBumpParameterfvATI driDispatchRemapTable[TexBumpParameterfvATI_remap_index]
   2311 #define _gloffset_TexBumpParameterivATI driDispatchRemapTable[TexBumpParameterivATI_remap_index]
   2312 #define _gloffset_AlphaFragmentOp1ATI driDispatchRemapTable[AlphaFragmentOp1ATI_remap_index]
   2313 #define _gloffset_AlphaFragmentOp2ATI driDispatchRemapTable[AlphaFragmentOp2ATI_remap_index]
   2314 #define _gloffset_AlphaFragmentOp3ATI driDispatchRemapTable[AlphaFragmentOp3ATI_remap_index]
   2315 #define _gloffset_BeginFragmentShaderATI driDispatchRemapTable[BeginFragmentShaderATI_remap_index]
   2316 #define _gloffset_BindFragmentShaderATI driDispatchRemapTable[BindFragmentShaderATI_remap_index]
   2317 #define _gloffset_ColorFragmentOp1ATI driDispatchRemapTable[ColorFragmentOp1ATI_remap_index]
   2318 #define _gloffset_ColorFragmentOp2ATI driDispatchRemapTable[ColorFragmentOp2ATI_remap_index]
   2319 #define _gloffset_ColorFragmentOp3ATI driDispatchRemapTable[ColorFragmentOp3ATI_remap_index]
   2320 #define _gloffset_DeleteFragmentShaderATI driDispatchRemapTable[DeleteFragmentShaderATI_remap_index]
   2321 #define _gloffset_EndFragmentShaderATI driDispatchRemapTable[EndFragmentShaderATI_remap_index]
   2322 #define _gloffset_GenFragmentShadersATI driDispatchRemapTable[GenFragmentShadersATI_remap_index]
   2323 #define _gloffset_PassTexCoordATI driDispatchRemapTable[PassTexCoordATI_remap_index]
   2324 #define _gloffset_SampleMapATI driDispatchRemapTable[SampleMapATI_remap_index]
   2325 #define _gloffset_SetFragmentShaderConstantATI driDispatchRemapTable[SetFragmentShaderConstantATI_remap_index]
   2326 #define _gloffset_DepthRangeArrayfvOES driDispatchRemapTable[DepthRangeArrayfvOES_remap_index]
   2327 #define _gloffset_DepthRangeIndexedfOES driDispatchRemapTable[DepthRangeIndexedfOES_remap_index]
   2328 #define _gloffset_ActiveStencilFaceEXT driDispatchRemapTable[ActiveStencilFaceEXT_remap_index]
   2329 #define _gloffset_GetProgramNamedParameterdvNV driDispatchRemapTable[GetProgramNamedParameterdvNV_remap_index]
   2330 #define _gloffset_GetProgramNamedParameterfvNV driDispatchRemapTable[GetProgramNamedParameterfvNV_remap_index]
   2331 #define _gloffset_ProgramNamedParameter4dNV driDispatchRemapTable[ProgramNamedParameter4dNV_remap_index]
   2332 #define _gloffset_ProgramNamedParameter4dvNV driDispatchRemapTable[ProgramNamedParameter4dvNV_remap_index]
   2333 #define _gloffset_ProgramNamedParameter4fNV driDispatchRemapTable[ProgramNamedParameter4fNV_remap_index]
   2334 #define _gloffset_ProgramNamedParameter4fvNV driDispatchRemapTable[ProgramNamedParameter4fvNV_remap_index]
   2335 #define _gloffset_PrimitiveRestartNV driDispatchRemapTable[PrimitiveRestartNV_remap_index]
   2336 #define _gloffset_GetTexGenxvOES driDispatchRemapTable[GetTexGenxvOES_remap_index]
   2337 #define _gloffset_TexGenxOES driDispatchRemapTable[TexGenxOES_remap_index]
   2338 #define _gloffset_TexGenxvOES driDispatchRemapTable[TexGenxvOES_remap_index]
   2339 #define _gloffset_DepthBoundsEXT driDispatchRemapTable[DepthBoundsEXT_remap_index]
   2340 #define _gloffset_BindFramebufferEXT driDispatchRemapTable[BindFramebufferEXT_remap_index]
   2341 #define _gloffset_BindRenderbufferEXT driDispatchRemapTable[BindRenderbufferEXT_remap_index]
   2342 #define _gloffset_StringMarkerGREMEDY driDispatchRemapTable[StringMarkerGREMEDY_remap_index]
   2343 #define _gloffset_BufferParameteriAPPLE driDispatchRemapTable[BufferParameteriAPPLE_remap_index]
   2344 #define _gloffset_FlushMappedBufferRangeAPPLE driDispatchRemapTable[FlushMappedBufferRangeAPPLE_remap_index]
   2345 #define _gloffset_VertexAttribI1iEXT driDispatchRemapTable[VertexAttribI1iEXT_remap_index]
   2346 #define _gloffset_VertexAttribI1uiEXT driDispatchRemapTable[VertexAttribI1uiEXT_remap_index]
   2347 #define _gloffset_VertexAttribI2iEXT driDispatchRemapTable[VertexAttribI2iEXT_remap_index]
   2348 #define _gloffset_VertexAttribI2ivEXT driDispatchRemapTable[VertexAttribI2ivEXT_remap_index]
   2349 #define _gloffset_VertexAttribI2uiEXT driDispatchRemapTable[VertexAttribI2uiEXT_remap_index]
   2350 #define _gloffset_VertexAttribI2uivEXT driDispatchRemapTable[VertexAttribI2uivEXT_remap_index]
   2351 #define _gloffset_VertexAttribI3iEXT driDispatchRemapTable[VertexAttribI3iEXT_remap_index]
   2352 #define _gloffset_VertexAttribI3ivEXT driDispatchRemapTable[VertexAttribI3ivEXT_remap_index]
   2353 #define _gloffset_VertexAttribI3uiEXT driDispatchRemapTable[VertexAttribI3uiEXT_remap_index]
   2354 #define _gloffset_VertexAttribI3uivEXT driDispatchRemapTable[VertexAttribI3uivEXT_remap_index]
   2355 #define _gloffset_VertexAttribI4iEXT driDispatchRemapTable[VertexAttribI4iEXT_remap_index]
   2356 #define _gloffset_VertexAttribI4ivEXT driDispatchRemapTable[VertexAttribI4ivEXT_remap_index]
   2357 #define _gloffset_VertexAttribI4uiEXT driDispatchRemapTable[VertexAttribI4uiEXT_remap_index]
   2358 #define _gloffset_VertexAttribI4uivEXT driDispatchRemapTable[VertexAttribI4uivEXT_remap_index]
   2359 #define _gloffset_ClearColorIiEXT driDispatchRemapTable[ClearColorIiEXT_remap_index]
   2360 #define _gloffset_ClearColorIuiEXT driDispatchRemapTable[ClearColorIuiEXT_remap_index]
   2361 #define _gloffset_BindBufferOffsetEXT driDispatchRemapTable[BindBufferOffsetEXT_remap_index]
   2362 #define _gloffset_BeginPerfMonitorAMD driDispatchRemapTable[BeginPerfMonitorAMD_remap_index]
   2363 #define _gloffset_DeletePerfMonitorsAMD driDispatchRemapTable[DeletePerfMonitorsAMD_remap_index]
   2364 #define _gloffset_EndPerfMonitorAMD driDispatchRemapTable[EndPerfMonitorAMD_remap_index]
   2365 #define _gloffset_GenPerfMonitorsAMD driDispatchRemapTable[GenPerfMonitorsAMD_remap_index]
   2366 #define _gloffset_GetPerfMonitorCounterDataAMD driDispatchRemapTable[GetPerfMonitorCounterDataAMD_remap_index]
   2367 #define _gloffset_GetPerfMonitorCounterInfoAMD driDispatchRemapTable[GetPerfMonitorCounterInfoAMD_remap_index]
   2368 #define _gloffset_GetPerfMonitorCounterStringAMD driDispatchRemapTable[GetPerfMonitorCounterStringAMD_remap_index]
   2369 #define _gloffset_GetPerfMonitorCountersAMD driDispatchRemapTable[GetPerfMonitorCountersAMD_remap_index]
   2370 #define _gloffset_GetPerfMonitorGroupStringAMD driDispatchRemapTable[GetPerfMonitorGroupStringAMD_remap_index]
   2371 #define _gloffset_GetPerfMonitorGroupsAMD driDispatchRemapTable[GetPerfMonitorGroupsAMD_remap_index]
   2372 #define _gloffset_SelectPerfMonitorCountersAMD driDispatchRemapTable[SelectPerfMonitorCountersAMD_remap_index]
   2373 #define _gloffset_GetObjectParameterivAPPLE driDispatchRemapTable[GetObjectParameterivAPPLE_remap_index]
   2374 #define _gloffset_ObjectPurgeableAPPLE driDispatchRemapTable[ObjectPurgeableAPPLE_remap_index]
   2375 #define _gloffset_ObjectUnpurgeableAPPLE driDispatchRemapTable[ObjectUnpurgeableAPPLE_remap_index]
   2376 #define _gloffset_ActiveProgramEXT driDispatchRemapTable[ActiveProgramEXT_remap_index]
   2377 #define _gloffset_CreateShaderProgramEXT driDispatchRemapTable[CreateShaderProgramEXT_remap_index]
   2378 #define _gloffset_UseShaderProgramEXT driDispatchRemapTable[UseShaderProgramEXT_remap_index]
   2379 #define _gloffset_TextureBarrierNV driDispatchRemapTable[TextureBarrierNV_remap_index]
   2380 #define _gloffset_VDPAUFiniNV driDispatchRemapTable[VDPAUFiniNV_remap_index]
   2381 #define _gloffset_VDPAUGetSurfaceivNV driDispatchRemapTable[VDPAUGetSurfaceivNV_remap_index]
   2382 #define _gloffset_VDPAUInitNV driDispatchRemapTable[VDPAUInitNV_remap_index]
   2383 #define _gloffset_VDPAUIsSurfaceNV driDispatchRemapTable[VDPAUIsSurfaceNV_remap_index]
   2384 #define _gloffset_VDPAUMapSurfacesNV driDispatchRemapTable[VDPAUMapSurfacesNV_remap_index]
   2385 #define _gloffset_VDPAURegisterOutputSurfaceNV driDispatchRemapTable[VDPAURegisterOutputSurfaceNV_remap_index]
   2386 #define _gloffset_VDPAURegisterVideoSurfaceNV driDispatchRemapTable[VDPAURegisterVideoSurfaceNV_remap_index]
   2387 #define _gloffset_VDPAUSurfaceAccessNV driDispatchRemapTable[VDPAUSurfaceAccessNV_remap_index]
   2388 #define _gloffset_VDPAUUnmapSurfacesNV driDispatchRemapTable[VDPAUUnmapSurfacesNV_remap_index]
   2389 #define _gloffset_VDPAUUnregisterSurfaceNV driDispatchRemapTable[VDPAUUnregisterSurfaceNV_remap_index]
   2390 #define _gloffset_BeginPerfQueryINTEL driDispatchRemapTable[BeginPerfQueryINTEL_remap_index]
   2391 #define _gloffset_CreatePerfQueryINTEL driDispatchRemapTable[CreatePerfQueryINTEL_remap_index]
   2392 #define _gloffset_DeletePerfQueryINTEL driDispatchRemapTable[DeletePerfQueryINTEL_remap_index]
   2393 #define _gloffset_EndPerfQueryINTEL driDispatchRemapTable[EndPerfQueryINTEL_remap_index]
   2394 #define _gloffset_GetFirstPerfQueryIdINTEL driDispatchRemapTable[GetFirstPerfQueryIdINTEL_remap_index]
   2395 #define _gloffset_GetNextPerfQueryIdINTEL driDispatchRemapTable[GetNextPerfQueryIdINTEL_remap_index]
   2396 #define _gloffset_GetPerfCounterInfoINTEL driDispatchRemapTable[GetPerfCounterInfoINTEL_remap_index]
   2397 #define _gloffset_GetPerfQueryDataINTEL driDispatchRemapTable[GetPerfQueryDataINTEL_remap_index]
   2398 #define _gloffset_GetPerfQueryIdByNameINTEL driDispatchRemapTable[GetPerfQueryIdByNameINTEL_remap_index]
   2399 #define _gloffset_GetPerfQueryInfoINTEL driDispatchRemapTable[GetPerfQueryInfoINTEL_remap_index]
   2400 #define _gloffset_PolygonOffsetClampEXT driDispatchRemapTable[PolygonOffsetClampEXT_remap_index]
   2401 #define _gloffset_WindowRectanglesEXT driDispatchRemapTable[WindowRectanglesEXT_remap_index]
   2402 #define _gloffset_BufferStorageMemEXT driDispatchRemapTable[BufferStorageMemEXT_remap_index]
   2403 #define _gloffset_CreateMemoryObjectsEXT driDispatchRemapTable[CreateMemoryObjectsEXT_remap_index]
   2404 #define _gloffset_DeleteMemoryObjectsEXT driDispatchRemapTable[DeleteMemoryObjectsEXT_remap_index]
   2405 #define _gloffset_DeleteSemaphoresEXT driDispatchRemapTable[DeleteSemaphoresEXT_remap_index]
   2406 #define _gloffset_GenSemaphoresEXT driDispatchRemapTable[GenSemaphoresEXT_remap_index]
   2407 #define _gloffset_GetMemoryObjectParameterivEXT driDispatchRemapTable[GetMemoryObjectParameterivEXT_remap_index]
   2408 #define _gloffset_GetSemaphoreParameterui64vEXT driDispatchRemapTable[GetSemaphoreParameterui64vEXT_remap_index]
   2409 #define _gloffset_GetUnsignedBytei_vEXT driDispatchRemapTable[GetUnsignedBytei_vEXT_remap_index]
   2410 #define _gloffset_GetUnsignedBytevEXT driDispatchRemapTable[GetUnsignedBytevEXT_remap_index]
   2411 #define _gloffset_IsMemoryObjectEXT driDispatchRemapTable[IsMemoryObjectEXT_remap_index]
   2412 #define _gloffset_IsSemaphoreEXT driDispatchRemapTable[IsSemaphoreEXT_remap_index]
   2413 #define _gloffset_MemoryObjectParameterivEXT driDispatchRemapTable[MemoryObjectParameterivEXT_remap_index]
   2414 #define _gloffset_NamedBufferStorageMemEXT driDispatchRemapTable[NamedBufferStorageMemEXT_remap_index]
   2415 #define _gloffset_SemaphoreParameterui64vEXT driDispatchRemapTable[SemaphoreParameterui64vEXT_remap_index]
   2416 #define _gloffset_SignalSemaphoreEXT driDispatchRemapTable[SignalSemaphoreEXT_remap_index]
   2417 #define _gloffset_TexStorageMem1DEXT driDispatchRemapTable[TexStorageMem1DEXT_remap_index]
   2418 #define _gloffset_TexStorageMem2DEXT driDispatchRemapTable[TexStorageMem2DEXT_remap_index]
   2419 #define _gloffset_TexStorageMem2DMultisampleEXT driDispatchRemapTable[TexStorageMem2DMultisampleEXT_remap_index]
   2420 #define _gloffset_TexStorageMem3DEXT driDispatchRemapTable[TexStorageMem3DEXT_remap_index]
   2421 #define _gloffset_TexStorageMem3DMultisampleEXT driDispatchRemapTable[TexStorageMem3DMultisampleEXT_remap_index]
   2422 #define _gloffset_TextureStorageMem1DEXT driDispatchRemapTable[TextureStorageMem1DEXT_remap_index]
   2423 #define _gloffset_TextureStorageMem2DEXT driDispatchRemapTable[TextureStorageMem2DEXT_remap_index]
   2424 #define _gloffset_TextureStorageMem2DMultisampleEXT driDispatchRemapTable[TextureStorageMem2DMultisampleEXT_remap_index]
   2425 #define _gloffset_TextureStorageMem3DEXT driDispatchRemapTable[TextureStorageMem3DEXT_remap_index]
   2426 #define _gloffset_TextureStorageMem3DMultisampleEXT driDispatchRemapTable[TextureStorageMem3DMultisampleEXT_remap_index]
   2427 #define _gloffset_WaitSemaphoreEXT driDispatchRemapTable[WaitSemaphoreEXT_remap_index]
   2428 #define _gloffset_ImportMemoryFdEXT driDispatchRemapTable[ImportMemoryFdEXT_remap_index]
   2429 #define _gloffset_ImportSemaphoreFdEXT driDispatchRemapTable[ImportSemaphoreFdEXT_remap_index]
   2430 #define _gloffset_StencilFuncSeparateATI driDispatchRemapTable[StencilFuncSeparateATI_remap_index]
   2431 #define _gloffset_ProgramEnvParameters4fvEXT driDispatchRemapTable[ProgramEnvParameters4fvEXT_remap_index]
   2432 #define _gloffset_ProgramLocalParameters4fvEXT driDispatchRemapTable[ProgramLocalParameters4fvEXT_remap_index]
   2433 #define _gloffset_EGLImageTargetRenderbufferStorageOES driDispatchRemapTable[EGLImageTargetRenderbufferStorageOES_remap_index]
   2434 #define _gloffset_EGLImageTargetTexture2DOES driDispatchRemapTable[EGLImageTargetTexture2DOES_remap_index]
   2435 #define _gloffset_AlphaFuncx driDispatchRemapTable[AlphaFuncx_remap_index]
   2436 #define _gloffset_ClearColorx driDispatchRemapTable[ClearColorx_remap_index]
   2437 #define _gloffset_ClearDepthx driDispatchRemapTable[ClearDepthx_remap_index]
   2438 #define _gloffset_Color4x driDispatchRemapTable[Color4x_remap_index]
   2439 #define _gloffset_DepthRangex driDispatchRemapTable[DepthRangex_remap_index]
   2440 #define _gloffset_Fogx driDispatchRemapTable[Fogx_remap_index]
   2441 #define _gloffset_Fogxv driDispatchRemapTable[Fogxv_remap_index]
   2442 #define _gloffset_Frustumf driDispatchRemapTable[Frustumf_remap_index]
   2443 #define _gloffset_Frustumx driDispatchRemapTable[Frustumx_remap_index]
   2444 #define _gloffset_LightModelx driDispatchRemapTable[LightModelx_remap_index]
   2445 #define _gloffset_LightModelxv driDispatchRemapTable[LightModelxv_remap_index]
   2446 #define _gloffset_Lightx driDispatchRemapTable[Lightx_remap_index]
   2447 #define _gloffset_Lightxv driDispatchRemapTable[Lightxv_remap_index]
   2448 #define _gloffset_LineWidthx driDispatchRemapTable[LineWidthx_remap_index]
   2449 #define _gloffset_LoadMatrixx driDispatchRemapTable[LoadMatrixx_remap_index]
   2450 #define _gloffset_Materialx driDispatchRemapTable[Materialx_remap_index]
   2451 #define _gloffset_Materialxv driDispatchRemapTable[Materialxv_remap_index]
   2452 #define _gloffset_MultMatrixx driDispatchRemapTable[MultMatrixx_remap_index]
   2453 #define _gloffset_MultiTexCoord4x driDispatchRemapTable[MultiTexCoord4x_remap_index]
   2454 #define _gloffset_Normal3x driDispatchRemapTable[Normal3x_remap_index]
   2455 #define _gloffset_Orthof driDispatchRemapTable[Orthof_remap_index]
   2456 #define _gloffset_Orthox driDispatchRemapTable[Orthox_remap_index]
   2457 #define _gloffset_PointSizex driDispatchRemapTable[PointSizex_remap_index]
   2458 #define _gloffset_PolygonOffsetx driDispatchRemapTable[PolygonOffsetx_remap_index]
   2459 #define _gloffset_Rotatex driDispatchRemapTable[Rotatex_remap_index]
   2460 #define _gloffset_SampleCoveragex driDispatchRemapTable[SampleCoveragex_remap_index]
   2461 #define _gloffset_Scalex driDispatchRemapTable[Scalex_remap_index]
   2462 #define _gloffset_TexEnvx driDispatchRemapTable[TexEnvx_remap_index]
   2463 #define _gloffset_TexEnvxv driDispatchRemapTable[TexEnvxv_remap_index]
   2464 #define _gloffset_TexParameterx driDispatchRemapTable[TexParameterx_remap_index]
   2465 #define _gloffset_Translatex driDispatchRemapTable[Translatex_remap_index]
   2466 #define _gloffset_ClipPlanef driDispatchRemapTable[ClipPlanef_remap_index]
   2467 #define _gloffset_ClipPlanex driDispatchRemapTable[ClipPlanex_remap_index]
   2468 #define _gloffset_GetClipPlanef driDispatchRemapTable[GetClipPlanef_remap_index]
   2469 #define _gloffset_GetClipPlanex driDispatchRemapTable[GetClipPlanex_remap_index]
   2470 #define _gloffset_GetFixedv driDispatchRemapTable[GetFixedv_remap_index]
   2471 #define _gloffset_GetLightxv driDispatchRemapTable[GetLightxv_remap_index]
   2472 #define _gloffset_GetMaterialxv driDispatchRemapTable[GetMaterialxv_remap_index]
   2473 #define _gloffset_GetTexEnvxv driDispatchRemapTable[GetTexEnvxv_remap_index]
   2474 #define _gloffset_GetTexParameterxv driDispatchRemapTable[GetTexParameterxv_remap_index]
   2475 #define _gloffset_PointParameterx driDispatchRemapTable[PointParameterx_remap_index]
   2476 #define _gloffset_PointParameterxv driDispatchRemapTable[PointParameterxv_remap_index]
   2477 #define _gloffset_TexParameterxv driDispatchRemapTable[TexParameterxv_remap_index]
   2478 #define _gloffset_BlendBarrier driDispatchRemapTable[BlendBarrier_remap_index]
   2479 #define _gloffset_PrimitiveBoundingBox driDispatchRemapTable[PrimitiveBoundingBox_remap_index]
   2480 
   2481 typedef void (GLAPIENTRYP _glptr_NewList)(GLuint, GLenum);
   2482 #define CALL_NewList(disp, parameters) \
   2483     (* GET_NewList(disp)) parameters
   2484 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) {
   2485    return (_glptr_NewList) (GET_by_offset(disp, _gloffset_NewList));
   2486 }
   2487 
   2488 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   2489    SET_by_offset(disp, _gloffset_NewList, fn);
   2490 }
   2491 
   2492 typedef void (GLAPIENTRYP _glptr_EndList)(void);
   2493 #define CALL_EndList(disp, parameters) \
   2494     (* GET_EndList(disp)) parameters
   2495 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) {
   2496    return (_glptr_EndList) (GET_by_offset(disp, _gloffset_EndList));
   2497 }
   2498 
   2499 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   2500    SET_by_offset(disp, _gloffset_EndList, fn);
   2501 }
   2502 
   2503 typedef void (GLAPIENTRYP _glptr_CallList)(GLuint);
   2504 #define CALL_CallList(disp, parameters) \
   2505     (* GET_CallList(disp)) parameters
   2506 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) {
   2507    return (_glptr_CallList) (GET_by_offset(disp, _gloffset_CallList));
   2508 }
   2509 
   2510 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   2511    SET_by_offset(disp, _gloffset_CallList, fn);
   2512 }
   2513 
   2514 typedef void (GLAPIENTRYP _glptr_CallLists)(GLsizei, GLenum, const GLvoid *);
   2515 #define CALL_CallLists(disp, parameters) \
   2516     (* GET_CallLists(disp)) parameters
   2517 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
   2518    return (_glptr_CallLists) (GET_by_offset(disp, _gloffset_CallLists));
   2519 }
   2520 
   2521 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
   2522    SET_by_offset(disp, _gloffset_CallLists, fn);
   2523 }
   2524 
   2525 typedef void (GLAPIENTRYP _glptr_DeleteLists)(GLuint, GLsizei);
   2526 #define CALL_DeleteLists(disp, parameters) \
   2527     (* GET_DeleteLists(disp)) parameters
   2528 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
   2529    return (_glptr_DeleteLists) (GET_by_offset(disp, _gloffset_DeleteLists));
   2530 }
   2531 
   2532 static inline void SET_DeleteLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei)) {
   2533    SET_by_offset(disp, _gloffset_DeleteLists, fn);
   2534 }
   2535 
   2536 typedef GLuint (GLAPIENTRYP _glptr_GenLists)(GLsizei);
   2537 #define CALL_GenLists(disp, parameters) \
   2538     (* GET_GenLists(disp)) parameters
   2539 static inline _glptr_GenLists GET_GenLists(struct _glapi_table *disp) {
   2540    return (_glptr_GenLists) (GET_by_offset(disp, _gloffset_GenLists));
   2541 }
   2542 
   2543 static inline void SET_GenLists(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLsizei)) {
   2544    SET_by_offset(disp, _gloffset_GenLists, fn);
   2545 }
   2546 
   2547 typedef void (GLAPIENTRYP _glptr_ListBase)(GLuint);
   2548 #define CALL_ListBase(disp, parameters) \
   2549     (* GET_ListBase(disp)) parameters
   2550 static inline _glptr_ListBase GET_ListBase(struct _glapi_table *disp) {
   2551    return (_glptr_ListBase) (GET_by_offset(disp, _gloffset_ListBase));
   2552 }
   2553 
   2554 static inline void SET_ListBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   2555    SET_by_offset(disp, _gloffset_ListBase, fn);
   2556 }
   2557 
   2558 typedef void (GLAPIENTRYP _glptr_Begin)(GLenum);
   2559 #define CALL_Begin(disp, parameters) \
   2560     (* GET_Begin(disp)) parameters
   2561 static inline _glptr_Begin GET_Begin(struct _glapi_table *disp) {
   2562    return (_glptr_Begin) (GET_by_offset(disp, _gloffset_Begin));
   2563 }
   2564 
   2565 static inline void SET_Begin(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   2566    SET_by_offset(disp, _gloffset_Begin, fn);
   2567 }
   2568 
   2569 typedef void (GLAPIENTRYP _glptr_Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
   2570 #define CALL_Bitmap(disp, parameters) \
   2571     (* GET_Bitmap(disp)) parameters
   2572 static inline _glptr_Bitmap GET_Bitmap(struct _glapi_table *disp) {
   2573    return (_glptr_Bitmap) (GET_by_offset(disp, _gloffset_Bitmap));
   2574 }
   2575 
   2576 static inline void SET_Bitmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *)) {
   2577    SET_by_offset(disp, _gloffset_Bitmap, fn);
   2578 }
   2579 
   2580 typedef void (GLAPIENTRYP _glptr_Color3b)(GLbyte, GLbyte, GLbyte);
   2581 #define CALL_Color3b(disp, parameters) \
   2582     (* GET_Color3b(disp)) parameters
   2583 static inline _glptr_Color3b GET_Color3b(struct _glapi_table *disp) {
   2584    return (_glptr_Color3b) (GET_by_offset(disp, _gloffset_Color3b));
   2585 }
   2586 
   2587 static inline void SET_Color3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
   2588    SET_by_offset(disp, _gloffset_Color3b, fn);
   2589 }
   2590 
   2591 typedef void (GLAPIENTRYP _glptr_Color3bv)(const GLbyte *);
   2592 #define CALL_Color3bv(disp, parameters) \
   2593     (* GET_Color3bv(disp)) parameters
   2594 static inline _glptr_Color3bv GET_Color3bv(struct _glapi_table *disp) {
   2595    return (_glptr_Color3bv) (GET_by_offset(disp, _gloffset_Color3bv));
   2596 }
   2597 
   2598 static inline void SET_Color3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   2599    SET_by_offset(disp, _gloffset_Color3bv, fn);
   2600 }
   2601 
   2602 typedef void (GLAPIENTRYP _glptr_Color3d)(GLdouble, GLdouble, GLdouble);
   2603 #define CALL_Color3d(disp, parameters) \
   2604     (* GET_Color3d(disp)) parameters
   2605 static inline _glptr_Color3d GET_Color3d(struct _glapi_table *disp) {
   2606    return (_glptr_Color3d) (GET_by_offset(disp, _gloffset_Color3d));
   2607 }
   2608 
   2609 static inline void SET_Color3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   2610    SET_by_offset(disp, _gloffset_Color3d, fn);
   2611 }
   2612 
   2613 typedef void (GLAPIENTRYP _glptr_Color3dv)(const GLdouble *);
   2614 #define CALL_Color3dv(disp, parameters) \
   2615     (* GET_Color3dv(disp)) parameters
   2616 static inline _glptr_Color3dv GET_Color3dv(struct _glapi_table *disp) {
   2617    return (_glptr_Color3dv) (GET_by_offset(disp, _gloffset_Color3dv));
   2618 }
   2619 
   2620 static inline void SET_Color3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2621    SET_by_offset(disp, _gloffset_Color3dv, fn);
   2622 }
   2623 
   2624 typedef void (GLAPIENTRYP _glptr_Color3f)(GLfloat, GLfloat, GLfloat);
   2625 #define CALL_Color3f(disp, parameters) \
   2626     (* GET_Color3f(disp)) parameters
   2627 static inline _glptr_Color3f GET_Color3f(struct _glapi_table *disp) {
   2628    return (_glptr_Color3f) (GET_by_offset(disp, _gloffset_Color3f));
   2629 }
   2630 
   2631 static inline void SET_Color3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   2632    SET_by_offset(disp, _gloffset_Color3f, fn);
   2633 }
   2634 
   2635 typedef void (GLAPIENTRYP _glptr_Color3fv)(const GLfloat *);
   2636 #define CALL_Color3fv(disp, parameters) \
   2637     (* GET_Color3fv(disp)) parameters
   2638 static inline _glptr_Color3fv GET_Color3fv(struct _glapi_table *disp) {
   2639    return (_glptr_Color3fv) (GET_by_offset(disp, _gloffset_Color3fv));
   2640 }
   2641 
   2642 static inline void SET_Color3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   2643    SET_by_offset(disp, _gloffset_Color3fv, fn);
   2644 }
   2645 
   2646 typedef void (GLAPIENTRYP _glptr_Color3i)(GLint, GLint, GLint);
   2647 #define CALL_Color3i(disp, parameters) \
   2648     (* GET_Color3i(disp)) parameters
   2649 static inline _glptr_Color3i GET_Color3i(struct _glapi_table *disp) {
   2650    return (_glptr_Color3i) (GET_by_offset(disp, _gloffset_Color3i));
   2651 }
   2652 
   2653 static inline void SET_Color3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   2654    SET_by_offset(disp, _gloffset_Color3i, fn);
   2655 }
   2656 
   2657 typedef void (GLAPIENTRYP _glptr_Color3iv)(const GLint *);
   2658 #define CALL_Color3iv(disp, parameters) \
   2659     (* GET_Color3iv(disp)) parameters
   2660 static inline _glptr_Color3iv GET_Color3iv(struct _glapi_table *disp) {
   2661    return (_glptr_Color3iv) (GET_by_offset(disp, _gloffset_Color3iv));
   2662 }
   2663 
   2664 static inline void SET_Color3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   2665    SET_by_offset(disp, _gloffset_Color3iv, fn);
   2666 }
   2667 
   2668 typedef void (GLAPIENTRYP _glptr_Color3s)(GLshort, GLshort, GLshort);
   2669 #define CALL_Color3s(disp, parameters) \
   2670     (* GET_Color3s(disp)) parameters
   2671 static inline _glptr_Color3s GET_Color3s(struct _glapi_table *disp) {
   2672    return (_glptr_Color3s) (GET_by_offset(disp, _gloffset_Color3s));
   2673 }
   2674 
   2675 static inline void SET_Color3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   2676    SET_by_offset(disp, _gloffset_Color3s, fn);
   2677 }
   2678 
   2679 typedef void (GLAPIENTRYP _glptr_Color3sv)(const GLshort *);
   2680 #define CALL_Color3sv(disp, parameters) \
   2681     (* GET_Color3sv(disp)) parameters
   2682 static inline _glptr_Color3sv GET_Color3sv(struct _glapi_table *disp) {
   2683    return (_glptr_Color3sv) (GET_by_offset(disp, _gloffset_Color3sv));
   2684 }
   2685 
   2686 static inline void SET_Color3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   2687    SET_by_offset(disp, _gloffset_Color3sv, fn);
   2688 }
   2689 
   2690 typedef void (GLAPIENTRYP _glptr_Color3ub)(GLubyte, GLubyte, GLubyte);
   2691 #define CALL_Color3ub(disp, parameters) \
   2692     (* GET_Color3ub(disp)) parameters
   2693 static inline _glptr_Color3ub GET_Color3ub(struct _glapi_table *disp) {
   2694    return (_glptr_Color3ub) (GET_by_offset(disp, _gloffset_Color3ub));
   2695 }
   2696 
   2697 static inline void SET_Color3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
   2698    SET_by_offset(disp, _gloffset_Color3ub, fn);
   2699 }
   2700 
   2701 typedef void (GLAPIENTRYP _glptr_Color3ubv)(const GLubyte *);
   2702 #define CALL_Color3ubv(disp, parameters) \
   2703     (* GET_Color3ubv(disp)) parameters
   2704 static inline _glptr_Color3ubv GET_Color3ubv(struct _glapi_table *disp) {
   2705    return (_glptr_Color3ubv) (GET_by_offset(disp, _gloffset_Color3ubv));
   2706 }
   2707 
   2708 static inline void SET_Color3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   2709    SET_by_offset(disp, _gloffset_Color3ubv, fn);
   2710 }
   2711 
   2712 typedef void (GLAPIENTRYP _glptr_Color3ui)(GLuint, GLuint, GLuint);
   2713 #define CALL_Color3ui(disp, parameters) \
   2714     (* GET_Color3ui(disp)) parameters
   2715 static inline _glptr_Color3ui GET_Color3ui(struct _glapi_table *disp) {
   2716    return (_glptr_Color3ui) (GET_by_offset(disp, _gloffset_Color3ui));
   2717 }
   2718 
   2719 static inline void SET_Color3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   2720    SET_by_offset(disp, _gloffset_Color3ui, fn);
   2721 }
   2722 
   2723 typedef void (GLAPIENTRYP _glptr_Color3uiv)(const GLuint *);
   2724 #define CALL_Color3uiv(disp, parameters) \
   2725     (* GET_Color3uiv(disp)) parameters
   2726 static inline _glptr_Color3uiv GET_Color3uiv(struct _glapi_table *disp) {
   2727    return (_glptr_Color3uiv) (GET_by_offset(disp, _gloffset_Color3uiv));
   2728 }
   2729 
   2730 static inline void SET_Color3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
   2731    SET_by_offset(disp, _gloffset_Color3uiv, fn);
   2732 }
   2733 
   2734 typedef void (GLAPIENTRYP _glptr_Color3us)(GLushort, GLushort, GLushort);
   2735 #define CALL_Color3us(disp, parameters) \
   2736     (* GET_Color3us(disp)) parameters
   2737 static inline _glptr_Color3us GET_Color3us(struct _glapi_table *disp) {
   2738    return (_glptr_Color3us) (GET_by_offset(disp, _gloffset_Color3us));
   2739 }
   2740 
   2741 static inline void SET_Color3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
   2742    SET_by_offset(disp, _gloffset_Color3us, fn);
   2743 }
   2744 
   2745 typedef void (GLAPIENTRYP _glptr_Color3usv)(const GLushort *);
   2746 #define CALL_Color3usv(disp, parameters) \
   2747     (* GET_Color3usv(disp)) parameters
   2748 static inline _glptr_Color3usv GET_Color3usv(struct _glapi_table *disp) {
   2749    return (_glptr_Color3usv) (GET_by_offset(disp, _gloffset_Color3usv));
   2750 }
   2751 
   2752 static inline void SET_Color3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
   2753    SET_by_offset(disp, _gloffset_Color3usv, fn);
   2754 }
   2755 
   2756 typedef void (GLAPIENTRYP _glptr_Color4b)(GLbyte, GLbyte, GLbyte, GLbyte);
   2757 #define CALL_Color4b(disp, parameters) \
   2758     (* GET_Color4b(disp)) parameters
   2759 static inline _glptr_Color4b GET_Color4b(struct _glapi_table *disp) {
   2760    return (_glptr_Color4b) (GET_by_offset(disp, _gloffset_Color4b));
   2761 }
   2762 
   2763 static inline void SET_Color4b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte, GLbyte)) {
   2764    SET_by_offset(disp, _gloffset_Color4b, fn);
   2765 }
   2766 
   2767 typedef void (GLAPIENTRYP _glptr_Color4bv)(const GLbyte *);
   2768 #define CALL_Color4bv(disp, parameters) \
   2769     (* GET_Color4bv(disp)) parameters
   2770 static inline _glptr_Color4bv GET_Color4bv(struct _glapi_table *disp) {
   2771    return (_glptr_Color4bv) (GET_by_offset(disp, _gloffset_Color4bv));
   2772 }
   2773 
   2774 static inline void SET_Color4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   2775    SET_by_offset(disp, _gloffset_Color4bv, fn);
   2776 }
   2777 
   2778 typedef void (GLAPIENTRYP _glptr_Color4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   2779 #define CALL_Color4d(disp, parameters) \
   2780     (* GET_Color4d(disp)) parameters
   2781 static inline _glptr_Color4d GET_Color4d(struct _glapi_table *disp) {
   2782    return (_glptr_Color4d) (GET_by_offset(disp, _gloffset_Color4d));
   2783 }
   2784 
   2785 static inline void SET_Color4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   2786    SET_by_offset(disp, _gloffset_Color4d, fn);
   2787 }
   2788 
   2789 typedef void (GLAPIENTRYP _glptr_Color4dv)(const GLdouble *);
   2790 #define CALL_Color4dv(disp, parameters) \
   2791     (* GET_Color4dv(disp)) parameters
   2792 static inline _glptr_Color4dv GET_Color4dv(struct _glapi_table *disp) {
   2793    return (_glptr_Color4dv) (GET_by_offset(disp, _gloffset_Color4dv));
   2794 }
   2795 
   2796 static inline void SET_Color4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2797    SET_by_offset(disp, _gloffset_Color4dv, fn);
   2798 }
   2799 
   2800 typedef void (GLAPIENTRYP _glptr_Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   2801 #define CALL_Color4f(disp, parameters) \
   2802     (* GET_Color4f(disp)) parameters
   2803 static inline _glptr_Color4f GET_Color4f(struct _glapi_table *disp) {
   2804    return (_glptr_Color4f) (GET_by_offset(disp, _gloffset_Color4f));
   2805 }
   2806 
   2807 static inline void SET_Color4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   2808    SET_by_offset(disp, _gloffset_Color4f, fn);
   2809 }
   2810 
   2811 typedef void (GLAPIENTRYP _glptr_Color4fv)(const GLfloat *);
   2812 #define CALL_Color4fv(disp, parameters) \
   2813     (* GET_Color4fv(disp)) parameters
   2814 static inline _glptr_Color4fv GET_Color4fv(struct _glapi_table *disp) {
   2815    return (_glptr_Color4fv) (GET_by_offset(disp, _gloffset_Color4fv));
   2816 }
   2817 
   2818 static inline void SET_Color4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   2819    SET_by_offset(disp, _gloffset_Color4fv, fn);
   2820 }
   2821 
   2822 typedef void (GLAPIENTRYP _glptr_Color4i)(GLint, GLint, GLint, GLint);
   2823 #define CALL_Color4i(disp, parameters) \
   2824     (* GET_Color4i(disp)) parameters
   2825 static inline _glptr_Color4i GET_Color4i(struct _glapi_table *disp) {
   2826    return (_glptr_Color4i) (GET_by_offset(disp, _gloffset_Color4i));
   2827 }
   2828 
   2829 static inline void SET_Color4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   2830    SET_by_offset(disp, _gloffset_Color4i, fn);
   2831 }
   2832 
   2833 typedef void (GLAPIENTRYP _glptr_Color4iv)(const GLint *);
   2834 #define CALL_Color4iv(disp, parameters) \
   2835     (* GET_Color4iv(disp)) parameters
   2836 static inline _glptr_Color4iv GET_Color4iv(struct _glapi_table *disp) {
   2837    return (_glptr_Color4iv) (GET_by_offset(disp, _gloffset_Color4iv));
   2838 }
   2839 
   2840 static inline void SET_Color4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   2841    SET_by_offset(disp, _gloffset_Color4iv, fn);
   2842 }
   2843 
   2844 typedef void (GLAPIENTRYP _glptr_Color4s)(GLshort, GLshort, GLshort, GLshort);
   2845 #define CALL_Color4s(disp, parameters) \
   2846     (* GET_Color4s(disp)) parameters
   2847 static inline _glptr_Color4s GET_Color4s(struct _glapi_table *disp) {
   2848    return (_glptr_Color4s) (GET_by_offset(disp, _gloffset_Color4s));
   2849 }
   2850 
   2851 static inline void SET_Color4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   2852    SET_by_offset(disp, _gloffset_Color4s, fn);
   2853 }
   2854 
   2855 typedef void (GLAPIENTRYP _glptr_Color4sv)(const GLshort *);
   2856 #define CALL_Color4sv(disp, parameters) \
   2857     (* GET_Color4sv(disp)) parameters
   2858 static inline _glptr_Color4sv GET_Color4sv(struct _glapi_table *disp) {
   2859    return (_glptr_Color4sv) (GET_by_offset(disp, _gloffset_Color4sv));
   2860 }
   2861 
   2862 static inline void SET_Color4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   2863    SET_by_offset(disp, _gloffset_Color4sv, fn);
   2864 }
   2865 
   2866 typedef void (GLAPIENTRYP _glptr_Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
   2867 #define CALL_Color4ub(disp, parameters) \
   2868     (* GET_Color4ub(disp)) parameters
   2869 static inline _glptr_Color4ub GET_Color4ub(struct _glapi_table *disp) {
   2870    return (_glptr_Color4ub) (GET_by_offset(disp, _gloffset_Color4ub));
   2871 }
   2872 
   2873 static inline void SET_Color4ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte, GLubyte)) {
   2874    SET_by_offset(disp, _gloffset_Color4ub, fn);
   2875 }
   2876 
   2877 typedef void (GLAPIENTRYP _glptr_Color4ubv)(const GLubyte *);
   2878 #define CALL_Color4ubv(disp, parameters) \
   2879     (* GET_Color4ubv(disp)) parameters
   2880 static inline _glptr_Color4ubv GET_Color4ubv(struct _glapi_table *disp) {
   2881    return (_glptr_Color4ubv) (GET_by_offset(disp, _gloffset_Color4ubv));
   2882 }
   2883 
   2884 static inline void SET_Color4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   2885    SET_by_offset(disp, _gloffset_Color4ubv, fn);
   2886 }
   2887 
   2888 typedef void (GLAPIENTRYP _glptr_Color4ui)(GLuint, GLuint, GLuint, GLuint);
   2889 #define CALL_Color4ui(disp, parameters) \
   2890     (* GET_Color4ui(disp)) parameters
   2891 static inline _glptr_Color4ui GET_Color4ui(struct _glapi_table *disp) {
   2892    return (_glptr_Color4ui) (GET_by_offset(disp, _gloffset_Color4ui));
   2893 }
   2894 
   2895 static inline void SET_Color4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
   2896    SET_by_offset(disp, _gloffset_Color4ui, fn);
   2897 }
   2898 
   2899 typedef void (GLAPIENTRYP _glptr_Color4uiv)(const GLuint *);
   2900 #define CALL_Color4uiv(disp, parameters) \
   2901     (* GET_Color4uiv(disp)) parameters
   2902 static inline _glptr_Color4uiv GET_Color4uiv(struct _glapi_table *disp) {
   2903    return (_glptr_Color4uiv) (GET_by_offset(disp, _gloffset_Color4uiv));
   2904 }
   2905 
   2906 static inline void SET_Color4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
   2907    SET_by_offset(disp, _gloffset_Color4uiv, fn);
   2908 }
   2909 
   2910 typedef void (GLAPIENTRYP _glptr_Color4us)(GLushort, GLushort, GLushort, GLushort);
   2911 #define CALL_Color4us(disp, parameters) \
   2912     (* GET_Color4us(disp)) parameters
   2913 static inline _glptr_Color4us GET_Color4us(struct _glapi_table *disp) {
   2914    return (_glptr_Color4us) (GET_by_offset(disp, _gloffset_Color4us));
   2915 }
   2916 
   2917 static inline void SET_Color4us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort, GLushort)) {
   2918    SET_by_offset(disp, _gloffset_Color4us, fn);
   2919 }
   2920 
   2921 typedef void (GLAPIENTRYP _glptr_Color4usv)(const GLushort *);
   2922 #define CALL_Color4usv(disp, parameters) \
   2923     (* GET_Color4usv(disp)) parameters
   2924 static inline _glptr_Color4usv GET_Color4usv(struct _glapi_table *disp) {
   2925    return (_glptr_Color4usv) (GET_by_offset(disp, _gloffset_Color4usv));
   2926 }
   2927 
   2928 static inline void SET_Color4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
   2929    SET_by_offset(disp, _gloffset_Color4usv, fn);
   2930 }
   2931 
   2932 typedef void (GLAPIENTRYP _glptr_EdgeFlag)(GLboolean);
   2933 #define CALL_EdgeFlag(disp, parameters) \
   2934     (* GET_EdgeFlag(disp)) parameters
   2935 static inline _glptr_EdgeFlag GET_EdgeFlag(struct _glapi_table *disp) {
   2936    return (_glptr_EdgeFlag) (GET_by_offset(disp, _gloffset_EdgeFlag));
   2937 }
   2938 
   2939 static inline void SET_EdgeFlag(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
   2940    SET_by_offset(disp, _gloffset_EdgeFlag, fn);
   2941 }
   2942 
   2943 typedef void (GLAPIENTRYP _glptr_EdgeFlagv)(const GLboolean *);
   2944 #define CALL_EdgeFlagv(disp, parameters) \
   2945     (* GET_EdgeFlagv(disp)) parameters
   2946 static inline _glptr_EdgeFlagv GET_EdgeFlagv(struct _glapi_table *disp) {
   2947    return (_glptr_EdgeFlagv) (GET_by_offset(disp, _gloffset_EdgeFlagv));
   2948 }
   2949 
   2950 static inline void SET_EdgeFlagv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLboolean *)) {
   2951    SET_by_offset(disp, _gloffset_EdgeFlagv, fn);
   2952 }
   2953 
   2954 typedef void (GLAPIENTRYP _glptr_End)(void);
   2955 #define CALL_End(disp, parameters) \
   2956     (* GET_End(disp)) parameters
   2957 static inline _glptr_End GET_End(struct _glapi_table *disp) {
   2958    return (_glptr_End) (GET_by_offset(disp, _gloffset_End));
   2959 }
   2960 
   2961 static inline void SET_End(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   2962    SET_by_offset(disp, _gloffset_End, fn);
   2963 }
   2964 
   2965 typedef void (GLAPIENTRYP _glptr_Indexd)(GLdouble);
   2966 #define CALL_Indexd(disp, parameters) \
   2967     (* GET_Indexd(disp)) parameters
   2968 static inline _glptr_Indexd GET_Indexd(struct _glapi_table *disp) {
   2969    return (_glptr_Indexd) (GET_by_offset(disp, _gloffset_Indexd));
   2970 }
   2971 
   2972 static inline void SET_Indexd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   2973    SET_by_offset(disp, _gloffset_Indexd, fn);
   2974 }
   2975 
   2976 typedef void (GLAPIENTRYP _glptr_Indexdv)(const GLdouble *);
   2977 #define CALL_Indexdv(disp, parameters) \
   2978     (* GET_Indexdv(disp)) parameters
   2979 static inline _glptr_Indexdv GET_Indexdv(struct _glapi_table *disp) {
   2980    return (_glptr_Indexdv) (GET_by_offset(disp, _gloffset_Indexdv));
   2981 }
   2982 
   2983 static inline void SET_Indexdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   2984    SET_by_offset(disp, _gloffset_Indexdv, fn);
   2985 }
   2986 
   2987 typedef void (GLAPIENTRYP _glptr_Indexf)(GLfloat);
   2988 #define CALL_Indexf(disp, parameters) \
   2989     (* GET_Indexf(disp)) parameters
   2990 static inline _glptr_Indexf GET_Indexf(struct _glapi_table *disp) {
   2991    return (_glptr_Indexf) (GET_by_offset(disp, _gloffset_Indexf));
   2992 }
   2993 
   2994 static inline void SET_Indexf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   2995    SET_by_offset(disp, _gloffset_Indexf, fn);
   2996 }
   2997 
   2998 typedef void (GLAPIENTRYP _glptr_Indexfv)(const GLfloat *);
   2999 #define CALL_Indexfv(disp, parameters) \
   3000     (* GET_Indexfv(disp)) parameters
   3001 static inline _glptr_Indexfv GET_Indexfv(struct _glapi_table *disp) {
   3002    return (_glptr_Indexfv) (GET_by_offset(disp, _gloffset_Indexfv));
   3003 }
   3004 
   3005 static inline void SET_Indexfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3006    SET_by_offset(disp, _gloffset_Indexfv, fn);
   3007 }
   3008 
   3009 typedef void (GLAPIENTRYP _glptr_Indexi)(GLint);
   3010 #define CALL_Indexi(disp, parameters) \
   3011     (* GET_Indexi(disp)) parameters
   3012 static inline _glptr_Indexi GET_Indexi(struct _glapi_table *disp) {
   3013    return (_glptr_Indexi) (GET_by_offset(disp, _gloffset_Indexi));
   3014 }
   3015 
   3016 static inline void SET_Indexi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   3017    SET_by_offset(disp, _gloffset_Indexi, fn);
   3018 }
   3019 
   3020 typedef void (GLAPIENTRYP _glptr_Indexiv)(const GLint *);
   3021 #define CALL_Indexiv(disp, parameters) \
   3022     (* GET_Indexiv(disp)) parameters
   3023 static inline _glptr_Indexiv GET_Indexiv(struct _glapi_table *disp) {
   3024    return (_glptr_Indexiv) (GET_by_offset(disp, _gloffset_Indexiv));
   3025 }
   3026 
   3027 static inline void SET_Indexiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3028    SET_by_offset(disp, _gloffset_Indexiv, fn);
   3029 }
   3030 
   3031 typedef void (GLAPIENTRYP _glptr_Indexs)(GLshort);
   3032 #define CALL_Indexs(disp, parameters) \
   3033     (* GET_Indexs(disp)) parameters
   3034 static inline _glptr_Indexs GET_Indexs(struct _glapi_table *disp) {
   3035    return (_glptr_Indexs) (GET_by_offset(disp, _gloffset_Indexs));
   3036 }
   3037 
   3038 static inline void SET_Indexs(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
   3039    SET_by_offset(disp, _gloffset_Indexs, fn);
   3040 }
   3041 
   3042 typedef void (GLAPIENTRYP _glptr_Indexsv)(const GLshort *);
   3043 #define CALL_Indexsv(disp, parameters) \
   3044     (* GET_Indexsv(disp)) parameters
   3045 static inline _glptr_Indexsv GET_Indexsv(struct _glapi_table *disp) {
   3046    return (_glptr_Indexsv) (GET_by_offset(disp, _gloffset_Indexsv));
   3047 }
   3048 
   3049 static inline void SET_Indexsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3050    SET_by_offset(disp, _gloffset_Indexsv, fn);
   3051 }
   3052 
   3053 typedef void (GLAPIENTRYP _glptr_Normal3b)(GLbyte, GLbyte, GLbyte);
   3054 #define CALL_Normal3b(disp, parameters) \
   3055     (* GET_Normal3b(disp)) parameters
   3056 static inline _glptr_Normal3b GET_Normal3b(struct _glapi_table *disp) {
   3057    return (_glptr_Normal3b) (GET_by_offset(disp, _gloffset_Normal3b));
   3058 }
   3059 
   3060 static inline void SET_Normal3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
   3061    SET_by_offset(disp, _gloffset_Normal3b, fn);
   3062 }
   3063 
   3064 typedef void (GLAPIENTRYP _glptr_Normal3bv)(const GLbyte *);
   3065 #define CALL_Normal3bv(disp, parameters) \
   3066     (* GET_Normal3bv(disp)) parameters
   3067 static inline _glptr_Normal3bv GET_Normal3bv(struct _glapi_table *disp) {
   3068    return (_glptr_Normal3bv) (GET_by_offset(disp, _gloffset_Normal3bv));
   3069 }
   3070 
   3071 static inline void SET_Normal3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   3072    SET_by_offset(disp, _gloffset_Normal3bv, fn);
   3073 }
   3074 
   3075 typedef void (GLAPIENTRYP _glptr_Normal3d)(GLdouble, GLdouble, GLdouble);
   3076 #define CALL_Normal3d(disp, parameters) \
   3077     (* GET_Normal3d(disp)) parameters
   3078 static inline _glptr_Normal3d GET_Normal3d(struct _glapi_table *disp) {
   3079    return (_glptr_Normal3d) (GET_by_offset(disp, _gloffset_Normal3d));
   3080 }
   3081 
   3082 static inline void SET_Normal3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3083    SET_by_offset(disp, _gloffset_Normal3d, fn);
   3084 }
   3085 
   3086 typedef void (GLAPIENTRYP _glptr_Normal3dv)(const GLdouble *);
   3087 #define CALL_Normal3dv(disp, parameters) \
   3088     (* GET_Normal3dv(disp)) parameters
   3089 static inline _glptr_Normal3dv GET_Normal3dv(struct _glapi_table *disp) {
   3090    return (_glptr_Normal3dv) (GET_by_offset(disp, _gloffset_Normal3dv));
   3091 }
   3092 
   3093 static inline void SET_Normal3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3094    SET_by_offset(disp, _gloffset_Normal3dv, fn);
   3095 }
   3096 
   3097 typedef void (GLAPIENTRYP _glptr_Normal3f)(GLfloat, GLfloat, GLfloat);
   3098 #define CALL_Normal3f(disp, parameters) \
   3099     (* GET_Normal3f(disp)) parameters
   3100 static inline _glptr_Normal3f GET_Normal3f(struct _glapi_table *disp) {
   3101    return (_glptr_Normal3f) (GET_by_offset(disp, _gloffset_Normal3f));
   3102 }
   3103 
   3104 static inline void SET_Normal3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3105    SET_by_offset(disp, _gloffset_Normal3f, fn);
   3106 }
   3107 
   3108 typedef void (GLAPIENTRYP _glptr_Normal3fv)(const GLfloat *);
   3109 #define CALL_Normal3fv(disp, parameters) \
   3110     (* GET_Normal3fv(disp)) parameters
   3111 static inline _glptr_Normal3fv GET_Normal3fv(struct _glapi_table *disp) {
   3112    return (_glptr_Normal3fv) (GET_by_offset(disp, _gloffset_Normal3fv));
   3113 }
   3114 
   3115 static inline void SET_Normal3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3116    SET_by_offset(disp, _gloffset_Normal3fv, fn);
   3117 }
   3118 
   3119 typedef void (GLAPIENTRYP _glptr_Normal3i)(GLint, GLint, GLint);
   3120 #define CALL_Normal3i(disp, parameters) \
   3121     (* GET_Normal3i(disp)) parameters
   3122 static inline _glptr_Normal3i GET_Normal3i(struct _glapi_table *disp) {
   3123    return (_glptr_Normal3i) (GET_by_offset(disp, _gloffset_Normal3i));
   3124 }
   3125 
   3126 static inline void SET_Normal3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   3127    SET_by_offset(disp, _gloffset_Normal3i, fn);
   3128 }
   3129 
   3130 typedef void (GLAPIENTRYP _glptr_Normal3iv)(const GLint *);
   3131 #define CALL_Normal3iv(disp, parameters) \
   3132     (* GET_Normal3iv(disp)) parameters
   3133 static inline _glptr_Normal3iv GET_Normal3iv(struct _glapi_table *disp) {
   3134    return (_glptr_Normal3iv) (GET_by_offset(disp, _gloffset_Normal3iv));
   3135 }
   3136 
   3137 static inline void SET_Normal3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3138    SET_by_offset(disp, _gloffset_Normal3iv, fn);
   3139 }
   3140 
   3141 typedef void (GLAPIENTRYP _glptr_Normal3s)(GLshort, GLshort, GLshort);
   3142 #define CALL_Normal3s(disp, parameters) \
   3143     (* GET_Normal3s(disp)) parameters
   3144 static inline _glptr_Normal3s GET_Normal3s(struct _glapi_table *disp) {
   3145    return (_glptr_Normal3s) (GET_by_offset(disp, _gloffset_Normal3s));
   3146 }
   3147 
   3148 static inline void SET_Normal3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   3149    SET_by_offset(disp, _gloffset_Normal3s, fn);
   3150 }
   3151 
   3152 typedef void (GLAPIENTRYP _glptr_Normal3sv)(const GLshort *);
   3153 #define CALL_Normal3sv(disp, parameters) \
   3154     (* GET_Normal3sv(disp)) parameters
   3155 static inline _glptr_Normal3sv GET_Normal3sv(struct _glapi_table *disp) {
   3156    return (_glptr_Normal3sv) (GET_by_offset(disp, _gloffset_Normal3sv));
   3157 }
   3158 
   3159 static inline void SET_Normal3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3160    SET_by_offset(disp, _gloffset_Normal3sv, fn);
   3161 }
   3162 
   3163 typedef void (GLAPIENTRYP _glptr_RasterPos2d)(GLdouble, GLdouble);
   3164 #define CALL_RasterPos2d(disp, parameters) \
   3165     (* GET_RasterPos2d(disp)) parameters
   3166 static inline _glptr_RasterPos2d GET_RasterPos2d(struct _glapi_table *disp) {
   3167    return (_glptr_RasterPos2d) (GET_by_offset(disp, _gloffset_RasterPos2d));
   3168 }
   3169 
   3170 static inline void SET_RasterPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   3171    SET_by_offset(disp, _gloffset_RasterPos2d, fn);
   3172 }
   3173 
   3174 typedef void (GLAPIENTRYP _glptr_RasterPos2dv)(const GLdouble *);
   3175 #define CALL_RasterPos2dv(disp, parameters) \
   3176     (* GET_RasterPos2dv(disp)) parameters
   3177 static inline _glptr_RasterPos2dv GET_RasterPos2dv(struct _glapi_table *disp) {
   3178    return (_glptr_RasterPos2dv) (GET_by_offset(disp, _gloffset_RasterPos2dv));
   3179 }
   3180 
   3181 static inline void SET_RasterPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3182    SET_by_offset(disp, _gloffset_RasterPos2dv, fn);
   3183 }
   3184 
   3185 typedef void (GLAPIENTRYP _glptr_RasterPos2f)(GLfloat, GLfloat);
   3186 #define CALL_RasterPos2f(disp, parameters) \
   3187     (* GET_RasterPos2f(disp)) parameters
   3188 static inline _glptr_RasterPos2f GET_RasterPos2f(struct _glapi_table *disp) {
   3189    return (_glptr_RasterPos2f) (GET_by_offset(disp, _gloffset_RasterPos2f));
   3190 }
   3191 
   3192 static inline void SET_RasterPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   3193    SET_by_offset(disp, _gloffset_RasterPos2f, fn);
   3194 }
   3195 
   3196 typedef void (GLAPIENTRYP _glptr_RasterPos2fv)(const GLfloat *);
   3197 #define CALL_RasterPos2fv(disp, parameters) \
   3198     (* GET_RasterPos2fv(disp)) parameters
   3199 static inline _glptr_RasterPos2fv GET_RasterPos2fv(struct _glapi_table *disp) {
   3200    return (_glptr_RasterPos2fv) (GET_by_offset(disp, _gloffset_RasterPos2fv));
   3201 }
   3202 
   3203 static inline void SET_RasterPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3204    SET_by_offset(disp, _gloffset_RasterPos2fv, fn);
   3205 }
   3206 
   3207 typedef void (GLAPIENTRYP _glptr_RasterPos2i)(GLint, GLint);
   3208 #define CALL_RasterPos2i(disp, parameters) \
   3209     (* GET_RasterPos2i(disp)) parameters
   3210 static inline _glptr_RasterPos2i GET_RasterPos2i(struct _glapi_table *disp) {
   3211    return (_glptr_RasterPos2i) (GET_by_offset(disp, _gloffset_RasterPos2i));
   3212 }
   3213 
   3214 static inline void SET_RasterPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   3215    SET_by_offset(disp, _gloffset_RasterPos2i, fn);
   3216 }
   3217 
   3218 typedef void (GLAPIENTRYP _glptr_RasterPos2iv)(const GLint *);
   3219 #define CALL_RasterPos2iv(disp, parameters) \
   3220     (* GET_RasterPos2iv(disp)) parameters
   3221 static inline _glptr_RasterPos2iv GET_RasterPos2iv(struct _glapi_table *disp) {
   3222    return (_glptr_RasterPos2iv) (GET_by_offset(disp, _gloffset_RasterPos2iv));
   3223 }
   3224 
   3225 static inline void SET_RasterPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3226    SET_by_offset(disp, _gloffset_RasterPos2iv, fn);
   3227 }
   3228 
   3229 typedef void (GLAPIENTRYP _glptr_RasterPos2s)(GLshort, GLshort);
   3230 #define CALL_RasterPos2s(disp, parameters) \
   3231     (* GET_RasterPos2s(disp)) parameters
   3232 static inline _glptr_RasterPos2s GET_RasterPos2s(struct _glapi_table *disp) {
   3233    return (_glptr_RasterPos2s) (GET_by_offset(disp, _gloffset_RasterPos2s));
   3234 }
   3235 
   3236 static inline void SET_RasterPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   3237    SET_by_offset(disp, _gloffset_RasterPos2s, fn);
   3238 }
   3239 
   3240 typedef void (GLAPIENTRYP _glptr_RasterPos2sv)(const GLshort *);
   3241 #define CALL_RasterPos2sv(disp, parameters) \
   3242     (* GET_RasterPos2sv(disp)) parameters
   3243 static inline _glptr_RasterPos2sv GET_RasterPos2sv(struct _glapi_table *disp) {
   3244    return (_glptr_RasterPos2sv) (GET_by_offset(disp, _gloffset_RasterPos2sv));
   3245 }
   3246 
   3247 static inline void SET_RasterPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3248    SET_by_offset(disp, _gloffset_RasterPos2sv, fn);
   3249 }
   3250 
   3251 typedef void (GLAPIENTRYP _glptr_RasterPos3d)(GLdouble, GLdouble, GLdouble);
   3252 #define CALL_RasterPos3d(disp, parameters) \
   3253     (* GET_RasterPos3d(disp)) parameters
   3254 static inline _glptr_RasterPos3d GET_RasterPos3d(struct _glapi_table *disp) {
   3255    return (_glptr_RasterPos3d) (GET_by_offset(disp, _gloffset_RasterPos3d));
   3256 }
   3257 
   3258 static inline void SET_RasterPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3259    SET_by_offset(disp, _gloffset_RasterPos3d, fn);
   3260 }
   3261 
   3262 typedef void (GLAPIENTRYP _glptr_RasterPos3dv)(const GLdouble *);
   3263 #define CALL_RasterPos3dv(disp, parameters) \
   3264     (* GET_RasterPos3dv(disp)) parameters
   3265 static inline _glptr_RasterPos3dv GET_RasterPos3dv(struct _glapi_table *disp) {
   3266    return (_glptr_RasterPos3dv) (GET_by_offset(disp, _gloffset_RasterPos3dv));
   3267 }
   3268 
   3269 static inline void SET_RasterPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3270    SET_by_offset(disp, _gloffset_RasterPos3dv, fn);
   3271 }
   3272 
   3273 typedef void (GLAPIENTRYP _glptr_RasterPos3f)(GLfloat, GLfloat, GLfloat);
   3274 #define CALL_RasterPos3f(disp, parameters) \
   3275     (* GET_RasterPos3f(disp)) parameters
   3276 static inline _glptr_RasterPos3f GET_RasterPos3f(struct _glapi_table *disp) {
   3277    return (_glptr_RasterPos3f) (GET_by_offset(disp, _gloffset_RasterPos3f));
   3278 }
   3279 
   3280 static inline void SET_RasterPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3281    SET_by_offset(disp, _gloffset_RasterPos3f, fn);
   3282 }
   3283 
   3284 typedef void (GLAPIENTRYP _glptr_RasterPos3fv)(const GLfloat *);
   3285 #define CALL_RasterPos3fv(disp, parameters) \
   3286     (* GET_RasterPos3fv(disp)) parameters
   3287 static inline _glptr_RasterPos3fv GET_RasterPos3fv(struct _glapi_table *disp) {
   3288    return (_glptr_RasterPos3fv) (GET_by_offset(disp, _gloffset_RasterPos3fv));
   3289 }
   3290 
   3291 static inline void SET_RasterPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3292    SET_by_offset(disp, _gloffset_RasterPos3fv, fn);
   3293 }
   3294 
   3295 typedef void (GLAPIENTRYP _glptr_RasterPos3i)(GLint, GLint, GLint);
   3296 #define CALL_RasterPos3i(disp, parameters) \
   3297     (* GET_RasterPos3i(disp)) parameters
   3298 static inline _glptr_RasterPos3i GET_RasterPos3i(struct _glapi_table *disp) {
   3299    return (_glptr_RasterPos3i) (GET_by_offset(disp, _gloffset_RasterPos3i));
   3300 }
   3301 
   3302 static inline void SET_RasterPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   3303    SET_by_offset(disp, _gloffset_RasterPos3i, fn);
   3304 }
   3305 
   3306 typedef void (GLAPIENTRYP _glptr_RasterPos3iv)(const GLint *);
   3307 #define CALL_RasterPos3iv(disp, parameters) \
   3308     (* GET_RasterPos3iv(disp)) parameters
   3309 static inline _glptr_RasterPos3iv GET_RasterPos3iv(struct _glapi_table *disp) {
   3310    return (_glptr_RasterPos3iv) (GET_by_offset(disp, _gloffset_RasterPos3iv));
   3311 }
   3312 
   3313 static inline void SET_RasterPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3314    SET_by_offset(disp, _gloffset_RasterPos3iv, fn);
   3315 }
   3316 
   3317 typedef void (GLAPIENTRYP _glptr_RasterPos3s)(GLshort, GLshort, GLshort);
   3318 #define CALL_RasterPos3s(disp, parameters) \
   3319     (* GET_RasterPos3s(disp)) parameters
   3320 static inline _glptr_RasterPos3s GET_RasterPos3s(struct _glapi_table *disp) {
   3321    return (_glptr_RasterPos3s) (GET_by_offset(disp, _gloffset_RasterPos3s));
   3322 }
   3323 
   3324 static inline void SET_RasterPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   3325    SET_by_offset(disp, _gloffset_RasterPos3s, fn);
   3326 }
   3327 
   3328 typedef void (GLAPIENTRYP _glptr_RasterPos3sv)(const GLshort *);
   3329 #define CALL_RasterPos3sv(disp, parameters) \
   3330     (* GET_RasterPos3sv(disp)) parameters
   3331 static inline _glptr_RasterPos3sv GET_RasterPos3sv(struct _glapi_table *disp) {
   3332    return (_glptr_RasterPos3sv) (GET_by_offset(disp, _gloffset_RasterPos3sv));
   3333 }
   3334 
   3335 static inline void SET_RasterPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3336    SET_by_offset(disp, _gloffset_RasterPos3sv, fn);
   3337 }
   3338 
   3339 typedef void (GLAPIENTRYP _glptr_RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   3340 #define CALL_RasterPos4d(disp, parameters) \
   3341     (* GET_RasterPos4d(disp)) parameters
   3342 static inline _glptr_RasterPos4d GET_RasterPos4d(struct _glapi_table *disp) {
   3343    return (_glptr_RasterPos4d) (GET_by_offset(disp, _gloffset_RasterPos4d));
   3344 }
   3345 
   3346 static inline void SET_RasterPos4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3347    SET_by_offset(disp, _gloffset_RasterPos4d, fn);
   3348 }
   3349 
   3350 typedef void (GLAPIENTRYP _glptr_RasterPos4dv)(const GLdouble *);
   3351 #define CALL_RasterPos4dv(disp, parameters) \
   3352     (* GET_RasterPos4dv(disp)) parameters
   3353 static inline _glptr_RasterPos4dv GET_RasterPos4dv(struct _glapi_table *disp) {
   3354    return (_glptr_RasterPos4dv) (GET_by_offset(disp, _gloffset_RasterPos4dv));
   3355 }
   3356 
   3357 static inline void SET_RasterPos4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3358    SET_by_offset(disp, _gloffset_RasterPos4dv, fn);
   3359 }
   3360 
   3361 typedef void (GLAPIENTRYP _glptr_RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   3362 #define CALL_RasterPos4f(disp, parameters) \
   3363     (* GET_RasterPos4f(disp)) parameters
   3364 static inline _glptr_RasterPos4f GET_RasterPos4f(struct _glapi_table *disp) {
   3365    return (_glptr_RasterPos4f) (GET_by_offset(disp, _gloffset_RasterPos4f));
   3366 }
   3367 
   3368 static inline void SET_RasterPos4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3369    SET_by_offset(disp, _gloffset_RasterPos4f, fn);
   3370 }
   3371 
   3372 typedef void (GLAPIENTRYP _glptr_RasterPos4fv)(const GLfloat *);
   3373 #define CALL_RasterPos4fv(disp, parameters) \
   3374     (* GET_RasterPos4fv(disp)) parameters
   3375 static inline _glptr_RasterPos4fv GET_RasterPos4fv(struct _glapi_table *disp) {
   3376    return (_glptr_RasterPos4fv) (GET_by_offset(disp, _gloffset_RasterPos4fv));
   3377 }
   3378 
   3379 static inline void SET_RasterPos4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3380    SET_by_offset(disp, _gloffset_RasterPos4fv, fn);
   3381 }
   3382 
   3383 typedef void (GLAPIENTRYP _glptr_RasterPos4i)(GLint, GLint, GLint, GLint);
   3384 #define CALL_RasterPos4i(disp, parameters) \
   3385     (* GET_RasterPos4i(disp)) parameters
   3386 static inline _glptr_RasterPos4i GET_RasterPos4i(struct _glapi_table *disp) {
   3387    return (_glptr_RasterPos4i) (GET_by_offset(disp, _gloffset_RasterPos4i));
   3388 }
   3389 
   3390 static inline void SET_RasterPos4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3391    SET_by_offset(disp, _gloffset_RasterPos4i, fn);
   3392 }
   3393 
   3394 typedef void (GLAPIENTRYP _glptr_RasterPos4iv)(const GLint *);
   3395 #define CALL_RasterPos4iv(disp, parameters) \
   3396     (* GET_RasterPos4iv(disp)) parameters
   3397 static inline _glptr_RasterPos4iv GET_RasterPos4iv(struct _glapi_table *disp) {
   3398    return (_glptr_RasterPos4iv) (GET_by_offset(disp, _gloffset_RasterPos4iv));
   3399 }
   3400 
   3401 static inline void SET_RasterPos4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3402    SET_by_offset(disp, _gloffset_RasterPos4iv, fn);
   3403 }
   3404 
   3405 typedef void (GLAPIENTRYP _glptr_RasterPos4s)(GLshort, GLshort, GLshort, GLshort);
   3406 #define CALL_RasterPos4s(disp, parameters) \
   3407     (* GET_RasterPos4s(disp)) parameters
   3408 static inline _glptr_RasterPos4s GET_RasterPos4s(struct _glapi_table *disp) {
   3409    return (_glptr_RasterPos4s) (GET_by_offset(disp, _gloffset_RasterPos4s));
   3410 }
   3411 
   3412 static inline void SET_RasterPos4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3413    SET_by_offset(disp, _gloffset_RasterPos4s, fn);
   3414 }
   3415 
   3416 typedef void (GLAPIENTRYP _glptr_RasterPos4sv)(const GLshort *);
   3417 #define CALL_RasterPos4sv(disp, parameters) \
   3418     (* GET_RasterPos4sv(disp)) parameters
   3419 static inline _glptr_RasterPos4sv GET_RasterPos4sv(struct _glapi_table *disp) {
   3420    return (_glptr_RasterPos4sv) (GET_by_offset(disp, _gloffset_RasterPos4sv));
   3421 }
   3422 
   3423 static inline void SET_RasterPos4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3424    SET_by_offset(disp, _gloffset_RasterPos4sv, fn);
   3425 }
   3426 
   3427 typedef void (GLAPIENTRYP _glptr_Rectd)(GLdouble, GLdouble, GLdouble, GLdouble);
   3428 #define CALL_Rectd(disp, parameters) \
   3429     (* GET_Rectd(disp)) parameters
   3430 static inline _glptr_Rectd GET_Rectd(struct _glapi_table *disp) {
   3431    return (_glptr_Rectd) (GET_by_offset(disp, _gloffset_Rectd));
   3432 }
   3433 
   3434 static inline void SET_Rectd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3435    SET_by_offset(disp, _gloffset_Rectd, fn);
   3436 }
   3437 
   3438 typedef void (GLAPIENTRYP _glptr_Rectdv)(const GLdouble *, const GLdouble *);
   3439 #define CALL_Rectdv(disp, parameters) \
   3440     (* GET_Rectdv(disp)) parameters
   3441 static inline _glptr_Rectdv GET_Rectdv(struct _glapi_table *disp) {
   3442    return (_glptr_Rectdv) (GET_by_offset(disp, _gloffset_Rectdv));
   3443 }
   3444 
   3445 static inline void SET_Rectdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *, const GLdouble *)) {
   3446    SET_by_offset(disp, _gloffset_Rectdv, fn);
   3447 }
   3448 
   3449 typedef void (GLAPIENTRYP _glptr_Rectf)(GLfloat, GLfloat, GLfloat, GLfloat);
   3450 #define CALL_Rectf(disp, parameters) \
   3451     (* GET_Rectf(disp)) parameters
   3452 static inline _glptr_Rectf GET_Rectf(struct _glapi_table *disp) {
   3453    return (_glptr_Rectf) (GET_by_offset(disp, _gloffset_Rectf));
   3454 }
   3455 
   3456 static inline void SET_Rectf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3457    SET_by_offset(disp, _gloffset_Rectf, fn);
   3458 }
   3459 
   3460 typedef void (GLAPIENTRYP _glptr_Rectfv)(const GLfloat *, const GLfloat *);
   3461 #define CALL_Rectfv(disp, parameters) \
   3462     (* GET_Rectfv(disp)) parameters
   3463 static inline _glptr_Rectfv GET_Rectfv(struct _glapi_table *disp) {
   3464    return (_glptr_Rectfv) (GET_by_offset(disp, _gloffset_Rectfv));
   3465 }
   3466 
   3467 static inline void SET_Rectfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *, const GLfloat *)) {
   3468    SET_by_offset(disp, _gloffset_Rectfv, fn);
   3469 }
   3470 
   3471 typedef void (GLAPIENTRYP _glptr_Recti)(GLint, GLint, GLint, GLint);
   3472 #define CALL_Recti(disp, parameters) \
   3473     (* GET_Recti(disp)) parameters
   3474 static inline _glptr_Recti GET_Recti(struct _glapi_table *disp) {
   3475    return (_glptr_Recti) (GET_by_offset(disp, _gloffset_Recti));
   3476 }
   3477 
   3478 static inline void SET_Recti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3479    SET_by_offset(disp, _gloffset_Recti, fn);
   3480 }
   3481 
   3482 typedef void (GLAPIENTRYP _glptr_Rectiv)(const GLint *, const GLint *);
   3483 #define CALL_Rectiv(disp, parameters) \
   3484     (* GET_Rectiv(disp)) parameters
   3485 static inline _glptr_Rectiv GET_Rectiv(struct _glapi_table *disp) {
   3486    return (_glptr_Rectiv) (GET_by_offset(disp, _gloffset_Rectiv));
   3487 }
   3488 
   3489 static inline void SET_Rectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *, const GLint *)) {
   3490    SET_by_offset(disp, _gloffset_Rectiv, fn);
   3491 }
   3492 
   3493 typedef void (GLAPIENTRYP _glptr_Rects)(GLshort, GLshort, GLshort, GLshort);
   3494 #define CALL_Rects(disp, parameters) \
   3495     (* GET_Rects(disp)) parameters
   3496 static inline _glptr_Rects GET_Rects(struct _glapi_table *disp) {
   3497    return (_glptr_Rects) (GET_by_offset(disp, _gloffset_Rects));
   3498 }
   3499 
   3500 static inline void SET_Rects(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3501    SET_by_offset(disp, _gloffset_Rects, fn);
   3502 }
   3503 
   3504 typedef void (GLAPIENTRYP _glptr_Rectsv)(const GLshort *, const GLshort *);
   3505 #define CALL_Rectsv(disp, parameters) \
   3506     (* GET_Rectsv(disp)) parameters
   3507 static inline _glptr_Rectsv GET_Rectsv(struct _glapi_table *disp) {
   3508    return (_glptr_Rectsv) (GET_by_offset(disp, _gloffset_Rectsv));
   3509 }
   3510 
   3511 static inline void SET_Rectsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *, const GLshort *)) {
   3512    SET_by_offset(disp, _gloffset_Rectsv, fn);
   3513 }
   3514 
   3515 typedef void (GLAPIENTRYP _glptr_TexCoord1d)(GLdouble);
   3516 #define CALL_TexCoord1d(disp, parameters) \
   3517     (* GET_TexCoord1d(disp)) parameters
   3518 static inline _glptr_TexCoord1d GET_TexCoord1d(struct _glapi_table *disp) {
   3519    return (_glptr_TexCoord1d) (GET_by_offset(disp, _gloffset_TexCoord1d));
   3520 }
   3521 
   3522 static inline void SET_TexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   3523    SET_by_offset(disp, _gloffset_TexCoord1d, fn);
   3524 }
   3525 
   3526 typedef void (GLAPIENTRYP _glptr_TexCoord1dv)(const GLdouble *);
   3527 #define CALL_TexCoord1dv(disp, parameters) \
   3528     (* GET_TexCoord1dv(disp)) parameters
   3529 static inline _glptr_TexCoord1dv GET_TexCoord1dv(struct _glapi_table *disp) {
   3530    return (_glptr_TexCoord1dv) (GET_by_offset(disp, _gloffset_TexCoord1dv));
   3531 }
   3532 
   3533 static inline void SET_TexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3534    SET_by_offset(disp, _gloffset_TexCoord1dv, fn);
   3535 }
   3536 
   3537 typedef void (GLAPIENTRYP _glptr_TexCoord1f)(GLfloat);
   3538 #define CALL_TexCoord1f(disp, parameters) \
   3539     (* GET_TexCoord1f(disp)) parameters
   3540 static inline _glptr_TexCoord1f GET_TexCoord1f(struct _glapi_table *disp) {
   3541    return (_glptr_TexCoord1f) (GET_by_offset(disp, _gloffset_TexCoord1f));
   3542 }
   3543 
   3544 static inline void SET_TexCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   3545    SET_by_offset(disp, _gloffset_TexCoord1f, fn);
   3546 }
   3547 
   3548 typedef void (GLAPIENTRYP _glptr_TexCoord1fv)(const GLfloat *);
   3549 #define CALL_TexCoord1fv(disp, parameters) \
   3550     (* GET_TexCoord1fv(disp)) parameters
   3551 static inline _glptr_TexCoord1fv GET_TexCoord1fv(struct _glapi_table *disp) {
   3552    return (_glptr_TexCoord1fv) (GET_by_offset(disp, _gloffset_TexCoord1fv));
   3553 }
   3554 
   3555 static inline void SET_TexCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3556    SET_by_offset(disp, _gloffset_TexCoord1fv, fn);
   3557 }
   3558 
   3559 typedef void (GLAPIENTRYP _glptr_TexCoord1i)(GLint);
   3560 #define CALL_TexCoord1i(disp, parameters) \
   3561     (* GET_TexCoord1i(disp)) parameters
   3562 static inline _glptr_TexCoord1i GET_TexCoord1i(struct _glapi_table *disp) {
   3563    return (_glptr_TexCoord1i) (GET_by_offset(disp, _gloffset_TexCoord1i));
   3564 }
   3565 
   3566 static inline void SET_TexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   3567    SET_by_offset(disp, _gloffset_TexCoord1i, fn);
   3568 }
   3569 
   3570 typedef void (GLAPIENTRYP _glptr_TexCoord1iv)(const GLint *);
   3571 #define CALL_TexCoord1iv(disp, parameters) \
   3572     (* GET_TexCoord1iv(disp)) parameters
   3573 static inline _glptr_TexCoord1iv GET_TexCoord1iv(struct _glapi_table *disp) {
   3574    return (_glptr_TexCoord1iv) (GET_by_offset(disp, _gloffset_TexCoord1iv));
   3575 }
   3576 
   3577 static inline void SET_TexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3578    SET_by_offset(disp, _gloffset_TexCoord1iv, fn);
   3579 }
   3580 
   3581 typedef void (GLAPIENTRYP _glptr_TexCoord1s)(GLshort);
   3582 #define CALL_TexCoord1s(disp, parameters) \
   3583     (* GET_TexCoord1s(disp)) parameters
   3584 static inline _glptr_TexCoord1s GET_TexCoord1s(struct _glapi_table *disp) {
   3585    return (_glptr_TexCoord1s) (GET_by_offset(disp, _gloffset_TexCoord1s));
   3586 }
   3587 
   3588 static inline void SET_TexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
   3589    SET_by_offset(disp, _gloffset_TexCoord1s, fn);
   3590 }
   3591 
   3592 typedef void (GLAPIENTRYP _glptr_TexCoord1sv)(const GLshort *);
   3593 #define CALL_TexCoord1sv(disp, parameters) \
   3594     (* GET_TexCoord1sv(disp)) parameters
   3595 static inline _glptr_TexCoord1sv GET_TexCoord1sv(struct _glapi_table *disp) {
   3596    return (_glptr_TexCoord1sv) (GET_by_offset(disp, _gloffset_TexCoord1sv));
   3597 }
   3598 
   3599 static inline void SET_TexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3600    SET_by_offset(disp, _gloffset_TexCoord1sv, fn);
   3601 }
   3602 
   3603 typedef void (GLAPIENTRYP _glptr_TexCoord2d)(GLdouble, GLdouble);
   3604 #define CALL_TexCoord2d(disp, parameters) \
   3605     (* GET_TexCoord2d(disp)) parameters
   3606 static inline _glptr_TexCoord2d GET_TexCoord2d(struct _glapi_table *disp) {
   3607    return (_glptr_TexCoord2d) (GET_by_offset(disp, _gloffset_TexCoord2d));
   3608 }
   3609 
   3610 static inline void SET_TexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   3611    SET_by_offset(disp, _gloffset_TexCoord2d, fn);
   3612 }
   3613 
   3614 typedef void (GLAPIENTRYP _glptr_TexCoord2dv)(const GLdouble *);
   3615 #define CALL_TexCoord2dv(disp, parameters) \
   3616     (* GET_TexCoord2dv(disp)) parameters
   3617 static inline _glptr_TexCoord2dv GET_TexCoord2dv(struct _glapi_table *disp) {
   3618    return (_glptr_TexCoord2dv) (GET_by_offset(disp, _gloffset_TexCoord2dv));
   3619 }
   3620 
   3621 static inline void SET_TexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3622    SET_by_offset(disp, _gloffset_TexCoord2dv, fn);
   3623 }
   3624 
   3625 typedef void (GLAPIENTRYP _glptr_TexCoord2f)(GLfloat, GLfloat);
   3626 #define CALL_TexCoord2f(disp, parameters) \
   3627     (* GET_TexCoord2f(disp)) parameters
   3628 static inline _glptr_TexCoord2f GET_TexCoord2f(struct _glapi_table *disp) {
   3629    return (_glptr_TexCoord2f) (GET_by_offset(disp, _gloffset_TexCoord2f));
   3630 }
   3631 
   3632 static inline void SET_TexCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   3633    SET_by_offset(disp, _gloffset_TexCoord2f, fn);
   3634 }
   3635 
   3636 typedef void (GLAPIENTRYP _glptr_TexCoord2fv)(const GLfloat *);
   3637 #define CALL_TexCoord2fv(disp, parameters) \
   3638     (* GET_TexCoord2fv(disp)) parameters
   3639 static inline _glptr_TexCoord2fv GET_TexCoord2fv(struct _glapi_table *disp) {
   3640    return (_glptr_TexCoord2fv) (GET_by_offset(disp, _gloffset_TexCoord2fv));
   3641 }
   3642 
   3643 static inline void SET_TexCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3644    SET_by_offset(disp, _gloffset_TexCoord2fv, fn);
   3645 }
   3646 
   3647 typedef void (GLAPIENTRYP _glptr_TexCoord2i)(GLint, GLint);
   3648 #define CALL_TexCoord2i(disp, parameters) \
   3649     (* GET_TexCoord2i(disp)) parameters
   3650 static inline _glptr_TexCoord2i GET_TexCoord2i(struct _glapi_table *disp) {
   3651    return (_glptr_TexCoord2i) (GET_by_offset(disp, _gloffset_TexCoord2i));
   3652 }
   3653 
   3654 static inline void SET_TexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   3655    SET_by_offset(disp, _gloffset_TexCoord2i, fn);
   3656 }
   3657 
   3658 typedef void (GLAPIENTRYP _glptr_TexCoord2iv)(const GLint *);
   3659 #define CALL_TexCoord2iv(disp, parameters) \
   3660     (* GET_TexCoord2iv(disp)) parameters
   3661 static inline _glptr_TexCoord2iv GET_TexCoord2iv(struct _glapi_table *disp) {
   3662    return (_glptr_TexCoord2iv) (GET_by_offset(disp, _gloffset_TexCoord2iv));
   3663 }
   3664 
   3665 static inline void SET_TexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3666    SET_by_offset(disp, _gloffset_TexCoord2iv, fn);
   3667 }
   3668 
   3669 typedef void (GLAPIENTRYP _glptr_TexCoord2s)(GLshort, GLshort);
   3670 #define CALL_TexCoord2s(disp, parameters) \
   3671     (* GET_TexCoord2s(disp)) parameters
   3672 static inline _glptr_TexCoord2s GET_TexCoord2s(struct _glapi_table *disp) {
   3673    return (_glptr_TexCoord2s) (GET_by_offset(disp, _gloffset_TexCoord2s));
   3674 }
   3675 
   3676 static inline void SET_TexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   3677    SET_by_offset(disp, _gloffset_TexCoord2s, fn);
   3678 }
   3679 
   3680 typedef void (GLAPIENTRYP _glptr_TexCoord2sv)(const GLshort *);
   3681 #define CALL_TexCoord2sv(disp, parameters) \
   3682     (* GET_TexCoord2sv(disp)) parameters
   3683 static inline _glptr_TexCoord2sv GET_TexCoord2sv(struct _glapi_table *disp) {
   3684    return (_glptr_TexCoord2sv) (GET_by_offset(disp, _gloffset_TexCoord2sv));
   3685 }
   3686 
   3687 static inline void SET_TexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3688    SET_by_offset(disp, _gloffset_TexCoord2sv, fn);
   3689 }
   3690 
   3691 typedef void (GLAPIENTRYP _glptr_TexCoord3d)(GLdouble, GLdouble, GLdouble);
   3692 #define CALL_TexCoord3d(disp, parameters) \
   3693     (* GET_TexCoord3d(disp)) parameters
   3694 static inline _glptr_TexCoord3d GET_TexCoord3d(struct _glapi_table *disp) {
   3695    return (_glptr_TexCoord3d) (GET_by_offset(disp, _gloffset_TexCoord3d));
   3696 }
   3697 
   3698 static inline void SET_TexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3699    SET_by_offset(disp, _gloffset_TexCoord3d, fn);
   3700 }
   3701 
   3702 typedef void (GLAPIENTRYP _glptr_TexCoord3dv)(const GLdouble *);
   3703 #define CALL_TexCoord3dv(disp, parameters) \
   3704     (* GET_TexCoord3dv(disp)) parameters
   3705 static inline _glptr_TexCoord3dv GET_TexCoord3dv(struct _glapi_table *disp) {
   3706    return (_glptr_TexCoord3dv) (GET_by_offset(disp, _gloffset_TexCoord3dv));
   3707 }
   3708 
   3709 static inline void SET_TexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3710    SET_by_offset(disp, _gloffset_TexCoord3dv, fn);
   3711 }
   3712 
   3713 typedef void (GLAPIENTRYP _glptr_TexCoord3f)(GLfloat, GLfloat, GLfloat);
   3714 #define CALL_TexCoord3f(disp, parameters) \
   3715     (* GET_TexCoord3f(disp)) parameters
   3716 static inline _glptr_TexCoord3f GET_TexCoord3f(struct _glapi_table *disp) {
   3717    return (_glptr_TexCoord3f) (GET_by_offset(disp, _gloffset_TexCoord3f));
   3718 }
   3719 
   3720 static inline void SET_TexCoord3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3721    SET_by_offset(disp, _gloffset_TexCoord3f, fn);
   3722 }
   3723 
   3724 typedef void (GLAPIENTRYP _glptr_TexCoord3fv)(const GLfloat *);
   3725 #define CALL_TexCoord3fv(disp, parameters) \
   3726     (* GET_TexCoord3fv(disp)) parameters
   3727 static inline _glptr_TexCoord3fv GET_TexCoord3fv(struct _glapi_table *disp) {
   3728    return (_glptr_TexCoord3fv) (GET_by_offset(disp, _gloffset_TexCoord3fv));
   3729 }
   3730 
   3731 static inline void SET_TexCoord3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3732    SET_by_offset(disp, _gloffset_TexCoord3fv, fn);
   3733 }
   3734 
   3735 typedef void (GLAPIENTRYP _glptr_TexCoord3i)(GLint, GLint, GLint);
   3736 #define CALL_TexCoord3i(disp, parameters) \
   3737     (* GET_TexCoord3i(disp)) parameters
   3738 static inline _glptr_TexCoord3i GET_TexCoord3i(struct _glapi_table *disp) {
   3739    return (_glptr_TexCoord3i) (GET_by_offset(disp, _gloffset_TexCoord3i));
   3740 }
   3741 
   3742 static inline void SET_TexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   3743    SET_by_offset(disp, _gloffset_TexCoord3i, fn);
   3744 }
   3745 
   3746 typedef void (GLAPIENTRYP _glptr_TexCoord3iv)(const GLint *);
   3747 #define CALL_TexCoord3iv(disp, parameters) \
   3748     (* GET_TexCoord3iv(disp)) parameters
   3749 static inline _glptr_TexCoord3iv GET_TexCoord3iv(struct _glapi_table *disp) {
   3750    return (_glptr_TexCoord3iv) (GET_by_offset(disp, _gloffset_TexCoord3iv));
   3751 }
   3752 
   3753 static inline void SET_TexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3754    SET_by_offset(disp, _gloffset_TexCoord3iv, fn);
   3755 }
   3756 
   3757 typedef void (GLAPIENTRYP _glptr_TexCoord3s)(GLshort, GLshort, GLshort);
   3758 #define CALL_TexCoord3s(disp, parameters) \
   3759     (* GET_TexCoord3s(disp)) parameters
   3760 static inline _glptr_TexCoord3s GET_TexCoord3s(struct _glapi_table *disp) {
   3761    return (_glptr_TexCoord3s) (GET_by_offset(disp, _gloffset_TexCoord3s));
   3762 }
   3763 
   3764 static inline void SET_TexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   3765    SET_by_offset(disp, _gloffset_TexCoord3s, fn);
   3766 }
   3767 
   3768 typedef void (GLAPIENTRYP _glptr_TexCoord3sv)(const GLshort *);
   3769 #define CALL_TexCoord3sv(disp, parameters) \
   3770     (* GET_TexCoord3sv(disp)) parameters
   3771 static inline _glptr_TexCoord3sv GET_TexCoord3sv(struct _glapi_table *disp) {
   3772    return (_glptr_TexCoord3sv) (GET_by_offset(disp, _gloffset_TexCoord3sv));
   3773 }
   3774 
   3775 static inline void SET_TexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3776    SET_by_offset(disp, _gloffset_TexCoord3sv, fn);
   3777 }
   3778 
   3779 typedef void (GLAPIENTRYP _glptr_TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   3780 #define CALL_TexCoord4d(disp, parameters) \
   3781     (* GET_TexCoord4d(disp)) parameters
   3782 static inline _glptr_TexCoord4d GET_TexCoord4d(struct _glapi_table *disp) {
   3783    return (_glptr_TexCoord4d) (GET_by_offset(disp, _gloffset_TexCoord4d));
   3784 }
   3785 
   3786 static inline void SET_TexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   3787    SET_by_offset(disp, _gloffset_TexCoord4d, fn);
   3788 }
   3789 
   3790 typedef void (GLAPIENTRYP _glptr_TexCoord4dv)(const GLdouble *);
   3791 #define CALL_TexCoord4dv(disp, parameters) \
   3792     (* GET_TexCoord4dv(disp)) parameters
   3793 static inline _glptr_TexCoord4dv GET_TexCoord4dv(struct _glapi_table *disp) {
   3794    return (_glptr_TexCoord4dv) (GET_by_offset(disp, _gloffset_TexCoord4dv));
   3795 }
   3796 
   3797 static inline void SET_TexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3798    SET_by_offset(disp, _gloffset_TexCoord4dv, fn);
   3799 }
   3800 
   3801 typedef void (GLAPIENTRYP _glptr_TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   3802 #define CALL_TexCoord4f(disp, parameters) \
   3803     (* GET_TexCoord4f(disp)) parameters
   3804 static inline _glptr_TexCoord4f GET_TexCoord4f(struct _glapi_table *disp) {
   3805    return (_glptr_TexCoord4f) (GET_by_offset(disp, _gloffset_TexCoord4f));
   3806 }
   3807 
   3808 static inline void SET_TexCoord4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   3809    SET_by_offset(disp, _gloffset_TexCoord4f, fn);
   3810 }
   3811 
   3812 typedef void (GLAPIENTRYP _glptr_TexCoord4fv)(const GLfloat *);
   3813 #define CALL_TexCoord4fv(disp, parameters) \
   3814     (* GET_TexCoord4fv(disp)) parameters
   3815 static inline _glptr_TexCoord4fv GET_TexCoord4fv(struct _glapi_table *disp) {
   3816    return (_glptr_TexCoord4fv) (GET_by_offset(disp, _gloffset_TexCoord4fv));
   3817 }
   3818 
   3819 static inline void SET_TexCoord4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3820    SET_by_offset(disp, _gloffset_TexCoord4fv, fn);
   3821 }
   3822 
   3823 typedef void (GLAPIENTRYP _glptr_TexCoord4i)(GLint, GLint, GLint, GLint);
   3824 #define CALL_TexCoord4i(disp, parameters) \
   3825     (* GET_TexCoord4i(disp)) parameters
   3826 static inline _glptr_TexCoord4i GET_TexCoord4i(struct _glapi_table *disp) {
   3827    return (_glptr_TexCoord4i) (GET_by_offset(disp, _gloffset_TexCoord4i));
   3828 }
   3829 
   3830 static inline void SET_TexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   3831    SET_by_offset(disp, _gloffset_TexCoord4i, fn);
   3832 }
   3833 
   3834 typedef void (GLAPIENTRYP _glptr_TexCoord4iv)(const GLint *);
   3835 #define CALL_TexCoord4iv(disp, parameters) \
   3836     (* GET_TexCoord4iv(disp)) parameters
   3837 static inline _glptr_TexCoord4iv GET_TexCoord4iv(struct _glapi_table *disp) {
   3838    return (_glptr_TexCoord4iv) (GET_by_offset(disp, _gloffset_TexCoord4iv));
   3839 }
   3840 
   3841 static inline void SET_TexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3842    SET_by_offset(disp, _gloffset_TexCoord4iv, fn);
   3843 }
   3844 
   3845 typedef void (GLAPIENTRYP _glptr_TexCoord4s)(GLshort, GLshort, GLshort, GLshort);
   3846 #define CALL_TexCoord4s(disp, parameters) \
   3847     (* GET_TexCoord4s(disp)) parameters
   3848 static inline _glptr_TexCoord4s GET_TexCoord4s(struct _glapi_table *disp) {
   3849    return (_glptr_TexCoord4s) (GET_by_offset(disp, _gloffset_TexCoord4s));
   3850 }
   3851 
   3852 static inline void SET_TexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   3853    SET_by_offset(disp, _gloffset_TexCoord4s, fn);
   3854 }
   3855 
   3856 typedef void (GLAPIENTRYP _glptr_TexCoord4sv)(const GLshort *);
   3857 #define CALL_TexCoord4sv(disp, parameters) \
   3858     (* GET_TexCoord4sv(disp)) parameters
   3859 static inline _glptr_TexCoord4sv GET_TexCoord4sv(struct _glapi_table *disp) {
   3860    return (_glptr_TexCoord4sv) (GET_by_offset(disp, _gloffset_TexCoord4sv));
   3861 }
   3862 
   3863 static inline void SET_TexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3864    SET_by_offset(disp, _gloffset_TexCoord4sv, fn);
   3865 }
   3866 
   3867 typedef void (GLAPIENTRYP _glptr_Vertex2d)(GLdouble, GLdouble);
   3868 #define CALL_Vertex2d(disp, parameters) \
   3869     (* GET_Vertex2d(disp)) parameters
   3870 static inline _glptr_Vertex2d GET_Vertex2d(struct _glapi_table *disp) {
   3871    return (_glptr_Vertex2d) (GET_by_offset(disp, _gloffset_Vertex2d));
   3872 }
   3873 
   3874 static inline void SET_Vertex2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   3875    SET_by_offset(disp, _gloffset_Vertex2d, fn);
   3876 }
   3877 
   3878 typedef void (GLAPIENTRYP _glptr_Vertex2dv)(const GLdouble *);
   3879 #define CALL_Vertex2dv(disp, parameters) \
   3880     (* GET_Vertex2dv(disp)) parameters
   3881 static inline _glptr_Vertex2dv GET_Vertex2dv(struct _glapi_table *disp) {
   3882    return (_glptr_Vertex2dv) (GET_by_offset(disp, _gloffset_Vertex2dv));
   3883 }
   3884 
   3885 static inline void SET_Vertex2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3886    SET_by_offset(disp, _gloffset_Vertex2dv, fn);
   3887 }
   3888 
   3889 typedef void (GLAPIENTRYP _glptr_Vertex2f)(GLfloat, GLfloat);
   3890 #define CALL_Vertex2f(disp, parameters) \
   3891     (* GET_Vertex2f(disp)) parameters
   3892 static inline _glptr_Vertex2f GET_Vertex2f(struct _glapi_table *disp) {
   3893    return (_glptr_Vertex2f) (GET_by_offset(disp, _gloffset_Vertex2f));
   3894 }
   3895 
   3896 static inline void SET_Vertex2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   3897    SET_by_offset(disp, _gloffset_Vertex2f, fn);
   3898 }
   3899 
   3900 typedef void (GLAPIENTRYP _glptr_Vertex2fv)(const GLfloat *);
   3901 #define CALL_Vertex2fv(disp, parameters) \
   3902     (* GET_Vertex2fv(disp)) parameters
   3903 static inline _glptr_Vertex2fv GET_Vertex2fv(struct _glapi_table *disp) {
   3904    return (_glptr_Vertex2fv) (GET_by_offset(disp, _gloffset_Vertex2fv));
   3905 }
   3906 
   3907 static inline void SET_Vertex2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3908    SET_by_offset(disp, _gloffset_Vertex2fv, fn);
   3909 }
   3910 
   3911 typedef void (GLAPIENTRYP _glptr_Vertex2i)(GLint, GLint);
   3912 #define CALL_Vertex2i(disp, parameters) \
   3913     (* GET_Vertex2i(disp)) parameters
   3914 static inline _glptr_Vertex2i GET_Vertex2i(struct _glapi_table *disp) {
   3915    return (_glptr_Vertex2i) (GET_by_offset(disp, _gloffset_Vertex2i));
   3916 }
   3917 
   3918 static inline void SET_Vertex2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   3919    SET_by_offset(disp, _gloffset_Vertex2i, fn);
   3920 }
   3921 
   3922 typedef void (GLAPIENTRYP _glptr_Vertex2iv)(const GLint *);
   3923 #define CALL_Vertex2iv(disp, parameters) \
   3924     (* GET_Vertex2iv(disp)) parameters
   3925 static inline _glptr_Vertex2iv GET_Vertex2iv(struct _glapi_table *disp) {
   3926    return (_glptr_Vertex2iv) (GET_by_offset(disp, _gloffset_Vertex2iv));
   3927 }
   3928 
   3929 static inline void SET_Vertex2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   3930    SET_by_offset(disp, _gloffset_Vertex2iv, fn);
   3931 }
   3932 
   3933 typedef void (GLAPIENTRYP _glptr_Vertex2s)(GLshort, GLshort);
   3934 #define CALL_Vertex2s(disp, parameters) \
   3935     (* GET_Vertex2s(disp)) parameters
   3936 static inline _glptr_Vertex2s GET_Vertex2s(struct _glapi_table *disp) {
   3937    return (_glptr_Vertex2s) (GET_by_offset(disp, _gloffset_Vertex2s));
   3938 }
   3939 
   3940 static inline void SET_Vertex2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   3941    SET_by_offset(disp, _gloffset_Vertex2s, fn);
   3942 }
   3943 
   3944 typedef void (GLAPIENTRYP _glptr_Vertex2sv)(const GLshort *);
   3945 #define CALL_Vertex2sv(disp, parameters) \
   3946     (* GET_Vertex2sv(disp)) parameters
   3947 static inline _glptr_Vertex2sv GET_Vertex2sv(struct _glapi_table *disp) {
   3948    return (_glptr_Vertex2sv) (GET_by_offset(disp, _gloffset_Vertex2sv));
   3949 }
   3950 
   3951 static inline void SET_Vertex2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   3952    SET_by_offset(disp, _gloffset_Vertex2sv, fn);
   3953 }
   3954 
   3955 typedef void (GLAPIENTRYP _glptr_Vertex3d)(GLdouble, GLdouble, GLdouble);
   3956 #define CALL_Vertex3d(disp, parameters) \
   3957     (* GET_Vertex3d(disp)) parameters
   3958 static inline _glptr_Vertex3d GET_Vertex3d(struct _glapi_table *disp) {
   3959    return (_glptr_Vertex3d) (GET_by_offset(disp, _gloffset_Vertex3d));
   3960 }
   3961 
   3962 static inline void SET_Vertex3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   3963    SET_by_offset(disp, _gloffset_Vertex3d, fn);
   3964 }
   3965 
   3966 typedef void (GLAPIENTRYP _glptr_Vertex3dv)(const GLdouble *);
   3967 #define CALL_Vertex3dv(disp, parameters) \
   3968     (* GET_Vertex3dv(disp)) parameters
   3969 static inline _glptr_Vertex3dv GET_Vertex3dv(struct _glapi_table *disp) {
   3970    return (_glptr_Vertex3dv) (GET_by_offset(disp, _gloffset_Vertex3dv));
   3971 }
   3972 
   3973 static inline void SET_Vertex3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   3974    SET_by_offset(disp, _gloffset_Vertex3dv, fn);
   3975 }
   3976 
   3977 typedef void (GLAPIENTRYP _glptr_Vertex3f)(GLfloat, GLfloat, GLfloat);
   3978 #define CALL_Vertex3f(disp, parameters) \
   3979     (* GET_Vertex3f(disp)) parameters
   3980 static inline _glptr_Vertex3f GET_Vertex3f(struct _glapi_table *disp) {
   3981    return (_glptr_Vertex3f) (GET_by_offset(disp, _gloffset_Vertex3f));
   3982 }
   3983 
   3984 static inline void SET_Vertex3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   3985    SET_by_offset(disp, _gloffset_Vertex3f, fn);
   3986 }
   3987 
   3988 typedef void (GLAPIENTRYP _glptr_Vertex3fv)(const GLfloat *);
   3989 #define CALL_Vertex3fv(disp, parameters) \
   3990     (* GET_Vertex3fv(disp)) parameters
   3991 static inline _glptr_Vertex3fv GET_Vertex3fv(struct _glapi_table *disp) {
   3992    return (_glptr_Vertex3fv) (GET_by_offset(disp, _gloffset_Vertex3fv));
   3993 }
   3994 
   3995 static inline void SET_Vertex3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   3996    SET_by_offset(disp, _gloffset_Vertex3fv, fn);
   3997 }
   3998 
   3999 typedef void (GLAPIENTRYP _glptr_Vertex3i)(GLint, GLint, GLint);
   4000 #define CALL_Vertex3i(disp, parameters) \
   4001     (* GET_Vertex3i(disp)) parameters
   4002 static inline _glptr_Vertex3i GET_Vertex3i(struct _glapi_table *disp) {
   4003    return (_glptr_Vertex3i) (GET_by_offset(disp, _gloffset_Vertex3i));
   4004 }
   4005 
   4006 static inline void SET_Vertex3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   4007    SET_by_offset(disp, _gloffset_Vertex3i, fn);
   4008 }
   4009 
   4010 typedef void (GLAPIENTRYP _glptr_Vertex3iv)(const GLint *);
   4011 #define CALL_Vertex3iv(disp, parameters) \
   4012     (* GET_Vertex3iv(disp)) parameters
   4013 static inline _glptr_Vertex3iv GET_Vertex3iv(struct _glapi_table *disp) {
   4014    return (_glptr_Vertex3iv) (GET_by_offset(disp, _gloffset_Vertex3iv));
   4015 }
   4016 
   4017 static inline void SET_Vertex3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   4018    SET_by_offset(disp, _gloffset_Vertex3iv, fn);
   4019 }
   4020 
   4021 typedef void (GLAPIENTRYP _glptr_Vertex3s)(GLshort, GLshort, GLshort);
   4022 #define CALL_Vertex3s(disp, parameters) \
   4023     (* GET_Vertex3s(disp)) parameters
   4024 static inline _glptr_Vertex3s GET_Vertex3s(struct _glapi_table *disp) {
   4025    return (_glptr_Vertex3s) (GET_by_offset(disp, _gloffset_Vertex3s));
   4026 }
   4027 
   4028 static inline void SET_Vertex3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   4029    SET_by_offset(disp, _gloffset_Vertex3s, fn);
   4030 }
   4031 
   4032 typedef void (GLAPIENTRYP _glptr_Vertex3sv)(const GLshort *);
   4033 #define CALL_Vertex3sv(disp, parameters) \
   4034     (* GET_Vertex3sv(disp)) parameters
   4035 static inline _glptr_Vertex3sv GET_Vertex3sv(struct _glapi_table *disp) {
   4036    return (_glptr_Vertex3sv) (GET_by_offset(disp, _gloffset_Vertex3sv));
   4037 }
   4038 
   4039 static inline void SET_Vertex3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   4040    SET_by_offset(disp, _gloffset_Vertex3sv, fn);
   4041 }
   4042 
   4043 typedef void (GLAPIENTRYP _glptr_Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble);
   4044 #define CALL_Vertex4d(disp, parameters) \
   4045     (* GET_Vertex4d(disp)) parameters
   4046 static inline _glptr_Vertex4d GET_Vertex4d(struct _glapi_table *disp) {
   4047    return (_glptr_Vertex4d) (GET_by_offset(disp, _gloffset_Vertex4d));
   4048 }
   4049 
   4050 static inline void SET_Vertex4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   4051    SET_by_offset(disp, _gloffset_Vertex4d, fn);
   4052 }
   4053 
   4054 typedef void (GLAPIENTRYP _glptr_Vertex4dv)(const GLdouble *);
   4055 #define CALL_Vertex4dv(disp, parameters) \
   4056     (* GET_Vertex4dv(disp)) parameters
   4057 static inline _glptr_Vertex4dv GET_Vertex4dv(struct _glapi_table *disp) {
   4058    return (_glptr_Vertex4dv) (GET_by_offset(disp, _gloffset_Vertex4dv));
   4059 }
   4060 
   4061 static inline void SET_Vertex4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   4062    SET_by_offset(disp, _gloffset_Vertex4dv, fn);
   4063 }
   4064 
   4065 typedef void (GLAPIENTRYP _glptr_Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat);
   4066 #define CALL_Vertex4f(disp, parameters) \
   4067     (* GET_Vertex4f(disp)) parameters
   4068 static inline _glptr_Vertex4f GET_Vertex4f(struct _glapi_table *disp) {
   4069    return (_glptr_Vertex4f) (GET_by_offset(disp, _gloffset_Vertex4f));
   4070 }
   4071 
   4072 static inline void SET_Vertex4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   4073    SET_by_offset(disp, _gloffset_Vertex4f, fn);
   4074 }
   4075 
   4076 typedef void (GLAPIENTRYP _glptr_Vertex4fv)(const GLfloat *);
   4077 #define CALL_Vertex4fv(disp, parameters) \
   4078     (* GET_Vertex4fv(disp)) parameters
   4079 static inline _glptr_Vertex4fv GET_Vertex4fv(struct _glapi_table *disp) {
   4080    return (_glptr_Vertex4fv) (GET_by_offset(disp, _gloffset_Vertex4fv));
   4081 }
   4082 
   4083 static inline void SET_Vertex4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   4084    SET_by_offset(disp, _gloffset_Vertex4fv, fn);
   4085 }
   4086 
   4087 typedef void (GLAPIENTRYP _glptr_Vertex4i)(GLint, GLint, GLint, GLint);
   4088 #define CALL_Vertex4i(disp, parameters) \
   4089     (* GET_Vertex4i(disp)) parameters
   4090 static inline _glptr_Vertex4i GET_Vertex4i(struct _glapi_table *disp) {
   4091    return (_glptr_Vertex4i) (GET_by_offset(disp, _gloffset_Vertex4i));
   4092 }
   4093 
   4094 static inline void SET_Vertex4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   4095    SET_by_offset(disp, _gloffset_Vertex4i, fn);
   4096 }
   4097 
   4098 typedef void (GLAPIENTRYP _glptr_Vertex4iv)(const GLint *);
   4099 #define CALL_Vertex4iv(disp, parameters) \
   4100     (* GET_Vertex4iv(disp)) parameters
   4101 static inline _glptr_Vertex4iv GET_Vertex4iv(struct _glapi_table *disp) {
   4102    return (_glptr_Vertex4iv) (GET_by_offset(disp, _gloffset_Vertex4iv));
   4103 }
   4104 
   4105 static inline void SET_Vertex4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   4106    SET_by_offset(disp, _gloffset_Vertex4iv, fn);
   4107 }
   4108 
   4109 typedef void (GLAPIENTRYP _glptr_Vertex4s)(GLshort, GLshort, GLshort, GLshort);
   4110 #define CALL_Vertex4s(disp, parameters) \
   4111     (* GET_Vertex4s(disp)) parameters
   4112 static inline _glptr_Vertex4s GET_Vertex4s(struct _glapi_table *disp) {
   4113    return (_glptr_Vertex4s) (GET_by_offset(disp, _gloffset_Vertex4s));
   4114 }
   4115 
   4116 static inline void SET_Vertex4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   4117    SET_by_offset(disp, _gloffset_Vertex4s, fn);
   4118 }
   4119 
   4120 typedef void (GLAPIENTRYP _glptr_Vertex4sv)(const GLshort *);
   4121 #define CALL_Vertex4sv(disp, parameters) \
   4122     (* GET_Vertex4sv(disp)) parameters
   4123 static inline _glptr_Vertex4sv GET_Vertex4sv(struct _glapi_table *disp) {
   4124    return (_glptr_Vertex4sv) (GET_by_offset(disp, _gloffset_Vertex4sv));
   4125 }
   4126 
   4127 static inline void SET_Vertex4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   4128    SET_by_offset(disp, _gloffset_Vertex4sv, fn);
   4129 }
   4130 
   4131 typedef void (GLAPIENTRYP _glptr_ClipPlane)(GLenum, const GLdouble *);
   4132 #define CALL_ClipPlane(disp, parameters) \
   4133     (* GET_ClipPlane(disp)) parameters
   4134 static inline _glptr_ClipPlane GET_ClipPlane(struct _glapi_table *disp) {
   4135    return (_glptr_ClipPlane) (GET_by_offset(disp, _gloffset_ClipPlane));
   4136 }
   4137 
   4138 static inline void SET_ClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   4139    SET_by_offset(disp, _gloffset_ClipPlane, fn);
   4140 }
   4141 
   4142 typedef void (GLAPIENTRYP _glptr_ColorMaterial)(GLenum, GLenum);
   4143 #define CALL_ColorMaterial(disp, parameters) \
   4144     (* GET_ColorMaterial(disp)) parameters
   4145 static inline _glptr_ColorMaterial GET_ColorMaterial(struct _glapi_table *disp) {
   4146    return (_glptr_ColorMaterial) (GET_by_offset(disp, _gloffset_ColorMaterial));
   4147 }
   4148 
   4149 static inline void SET_ColorMaterial(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   4150    SET_by_offset(disp, _gloffset_ColorMaterial, fn);
   4151 }
   4152 
   4153 typedef void (GLAPIENTRYP _glptr_CullFace)(GLenum);
   4154 #define CALL_CullFace(disp, parameters) \
   4155     (* GET_CullFace(disp)) parameters
   4156 static inline _glptr_CullFace GET_CullFace(struct _glapi_table *disp) {
   4157    return (_glptr_CullFace) (GET_by_offset(disp, _gloffset_CullFace));
   4158 }
   4159 
   4160 static inline void SET_CullFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4161    SET_by_offset(disp, _gloffset_CullFace, fn);
   4162 }
   4163 
   4164 typedef void (GLAPIENTRYP _glptr_Fogf)(GLenum, GLfloat);
   4165 #define CALL_Fogf(disp, parameters) \
   4166     (* GET_Fogf(disp)) parameters
   4167 static inline _glptr_Fogf GET_Fogf(struct _glapi_table *disp) {
   4168    return (_glptr_Fogf) (GET_by_offset(disp, _gloffset_Fogf));
   4169 }
   4170 
   4171 static inline void SET_Fogf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   4172    SET_by_offset(disp, _gloffset_Fogf, fn);
   4173 }
   4174 
   4175 typedef void (GLAPIENTRYP _glptr_Fogfv)(GLenum, const GLfloat *);
   4176 #define CALL_Fogfv(disp, parameters) \
   4177     (* GET_Fogfv(disp)) parameters
   4178 static inline _glptr_Fogfv GET_Fogfv(struct _glapi_table *disp) {
   4179    return (_glptr_Fogfv) (GET_by_offset(disp, _gloffset_Fogfv));
   4180 }
   4181 
   4182 static inline void SET_Fogfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   4183    SET_by_offset(disp, _gloffset_Fogfv, fn);
   4184 }
   4185 
   4186 typedef void (GLAPIENTRYP _glptr_Fogi)(GLenum, GLint);
   4187 #define CALL_Fogi(disp, parameters) \
   4188     (* GET_Fogi(disp)) parameters
   4189 static inline _glptr_Fogi GET_Fogi(struct _glapi_table *disp) {
   4190    return (_glptr_Fogi) (GET_by_offset(disp, _gloffset_Fogi));
   4191 }
   4192 
   4193 static inline void SET_Fogi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   4194    SET_by_offset(disp, _gloffset_Fogi, fn);
   4195 }
   4196 
   4197 typedef void (GLAPIENTRYP _glptr_Fogiv)(GLenum, const GLint *);
   4198 #define CALL_Fogiv(disp, parameters) \
   4199     (* GET_Fogiv(disp)) parameters
   4200 static inline _glptr_Fogiv GET_Fogiv(struct _glapi_table *disp) {
   4201    return (_glptr_Fogiv) (GET_by_offset(disp, _gloffset_Fogiv));
   4202 }
   4203 
   4204 static inline void SET_Fogiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   4205    SET_by_offset(disp, _gloffset_Fogiv, fn);
   4206 }
   4207 
   4208 typedef void (GLAPIENTRYP _glptr_FrontFace)(GLenum);
   4209 #define CALL_FrontFace(disp, parameters) \
   4210     (* GET_FrontFace(disp)) parameters
   4211 static inline _glptr_FrontFace GET_FrontFace(struct _glapi_table *disp) {
   4212    return (_glptr_FrontFace) (GET_by_offset(disp, _gloffset_FrontFace));
   4213 }
   4214 
   4215 static inline void SET_FrontFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4216    SET_by_offset(disp, _gloffset_FrontFace, fn);
   4217 }
   4218 
   4219 typedef void (GLAPIENTRYP _glptr_Hint)(GLenum, GLenum);
   4220 #define CALL_Hint(disp, parameters) \
   4221     (* GET_Hint(disp)) parameters
   4222 static inline _glptr_Hint GET_Hint(struct _glapi_table *disp) {
   4223    return (_glptr_Hint) (GET_by_offset(disp, _gloffset_Hint));
   4224 }
   4225 
   4226 static inline void SET_Hint(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   4227    SET_by_offset(disp, _gloffset_Hint, fn);
   4228 }
   4229 
   4230 typedef void (GLAPIENTRYP _glptr_Lightf)(GLenum, GLenum, GLfloat);
   4231 #define CALL_Lightf(disp, parameters) \
   4232     (* GET_Lightf(disp)) parameters
   4233 static inline _glptr_Lightf GET_Lightf(struct _glapi_table *disp) {
   4234    return (_glptr_Lightf) (GET_by_offset(disp, _gloffset_Lightf));
   4235 }
   4236 
   4237 static inline void SET_Lightf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4238    SET_by_offset(disp, _gloffset_Lightf, fn);
   4239 }
   4240 
   4241 typedef void (GLAPIENTRYP _glptr_Lightfv)(GLenum, GLenum, const GLfloat *);
   4242 #define CALL_Lightfv(disp, parameters) \
   4243     (* GET_Lightfv(disp)) parameters
   4244 static inline _glptr_Lightfv GET_Lightfv(struct _glapi_table *disp) {
   4245    return (_glptr_Lightfv) (GET_by_offset(disp, _gloffset_Lightfv));
   4246 }
   4247 
   4248 static inline void SET_Lightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4249    SET_by_offset(disp, _gloffset_Lightfv, fn);
   4250 }
   4251 
   4252 typedef void (GLAPIENTRYP _glptr_Lighti)(GLenum, GLenum, GLint);
   4253 #define CALL_Lighti(disp, parameters) \
   4254     (* GET_Lighti(disp)) parameters
   4255 static inline _glptr_Lighti GET_Lighti(struct _glapi_table *disp) {
   4256    return (_glptr_Lighti) (GET_by_offset(disp, _gloffset_Lighti));
   4257 }
   4258 
   4259 static inline void SET_Lighti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4260    SET_by_offset(disp, _gloffset_Lighti, fn);
   4261 }
   4262 
   4263 typedef void (GLAPIENTRYP _glptr_Lightiv)(GLenum, GLenum, const GLint *);
   4264 #define CALL_Lightiv(disp, parameters) \
   4265     (* GET_Lightiv(disp)) parameters
   4266 static inline _glptr_Lightiv GET_Lightiv(struct _glapi_table *disp) {
   4267    return (_glptr_Lightiv) (GET_by_offset(disp, _gloffset_Lightiv));
   4268 }
   4269 
   4270 static inline void SET_Lightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4271    SET_by_offset(disp, _gloffset_Lightiv, fn);
   4272 }
   4273 
   4274 typedef void (GLAPIENTRYP _glptr_LightModelf)(GLenum, GLfloat);
   4275 #define CALL_LightModelf(disp, parameters) \
   4276     (* GET_LightModelf(disp)) parameters
   4277 static inline _glptr_LightModelf GET_LightModelf(struct _glapi_table *disp) {
   4278    return (_glptr_LightModelf) (GET_by_offset(disp, _gloffset_LightModelf));
   4279 }
   4280 
   4281 static inline void SET_LightModelf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   4282    SET_by_offset(disp, _gloffset_LightModelf, fn);
   4283 }
   4284 
   4285 typedef void (GLAPIENTRYP _glptr_LightModelfv)(GLenum, const GLfloat *);
   4286 #define CALL_LightModelfv(disp, parameters) \
   4287     (* GET_LightModelfv(disp)) parameters
   4288 static inline _glptr_LightModelfv GET_LightModelfv(struct _glapi_table *disp) {
   4289    return (_glptr_LightModelfv) (GET_by_offset(disp, _gloffset_LightModelfv));
   4290 }
   4291 
   4292 static inline void SET_LightModelfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   4293    SET_by_offset(disp, _gloffset_LightModelfv, fn);
   4294 }
   4295 
   4296 typedef void (GLAPIENTRYP _glptr_LightModeli)(GLenum, GLint);
   4297 #define CALL_LightModeli(disp, parameters) \
   4298     (* GET_LightModeli(disp)) parameters
   4299 static inline _glptr_LightModeli GET_LightModeli(struct _glapi_table *disp) {
   4300    return (_glptr_LightModeli) (GET_by_offset(disp, _gloffset_LightModeli));
   4301 }
   4302 
   4303 static inline void SET_LightModeli(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   4304    SET_by_offset(disp, _gloffset_LightModeli, fn);
   4305 }
   4306 
   4307 typedef void (GLAPIENTRYP _glptr_LightModeliv)(GLenum, const GLint *);
   4308 #define CALL_LightModeliv(disp, parameters) \
   4309     (* GET_LightModeliv(disp)) parameters
   4310 static inline _glptr_LightModeliv GET_LightModeliv(struct _glapi_table *disp) {
   4311    return (_glptr_LightModeliv) (GET_by_offset(disp, _gloffset_LightModeliv));
   4312 }
   4313 
   4314 static inline void SET_LightModeliv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   4315    SET_by_offset(disp, _gloffset_LightModeliv, fn);
   4316 }
   4317 
   4318 typedef void (GLAPIENTRYP _glptr_LineStipple)(GLint, GLushort);
   4319 #define CALL_LineStipple(disp, parameters) \
   4320     (* GET_LineStipple(disp)) parameters
   4321 static inline _glptr_LineStipple GET_LineStipple(struct _glapi_table *disp) {
   4322    return (_glptr_LineStipple) (GET_by_offset(disp, _gloffset_LineStipple));
   4323 }
   4324 
   4325 static inline void SET_LineStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLushort)) {
   4326    SET_by_offset(disp, _gloffset_LineStipple, fn);
   4327 }
   4328 
   4329 typedef void (GLAPIENTRYP _glptr_LineWidth)(GLfloat);
   4330 #define CALL_LineWidth(disp, parameters) \
   4331     (* GET_LineWidth(disp)) parameters
   4332 static inline _glptr_LineWidth GET_LineWidth(struct _glapi_table *disp) {
   4333    return (_glptr_LineWidth) (GET_by_offset(disp, _gloffset_LineWidth));
   4334 }
   4335 
   4336 static inline void SET_LineWidth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4337    SET_by_offset(disp, _gloffset_LineWidth, fn);
   4338 }
   4339 
   4340 typedef void (GLAPIENTRYP _glptr_Materialf)(GLenum, GLenum, GLfloat);
   4341 #define CALL_Materialf(disp, parameters) \
   4342     (* GET_Materialf(disp)) parameters
   4343 static inline _glptr_Materialf GET_Materialf(struct _glapi_table *disp) {
   4344    return (_glptr_Materialf) (GET_by_offset(disp, _gloffset_Materialf));
   4345 }
   4346 
   4347 static inline void SET_Materialf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4348    SET_by_offset(disp, _gloffset_Materialf, fn);
   4349 }
   4350 
   4351 typedef void (GLAPIENTRYP _glptr_Materialfv)(GLenum, GLenum, const GLfloat *);
   4352 #define CALL_Materialfv(disp, parameters) \
   4353     (* GET_Materialfv(disp)) parameters
   4354 static inline _glptr_Materialfv GET_Materialfv(struct _glapi_table *disp) {
   4355    return (_glptr_Materialfv) (GET_by_offset(disp, _gloffset_Materialfv));
   4356 }
   4357 
   4358 static inline void SET_Materialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4359    SET_by_offset(disp, _gloffset_Materialfv, fn);
   4360 }
   4361 
   4362 typedef void (GLAPIENTRYP _glptr_Materiali)(GLenum, GLenum, GLint);
   4363 #define CALL_Materiali(disp, parameters) \
   4364     (* GET_Materiali(disp)) parameters
   4365 static inline _glptr_Materiali GET_Materiali(struct _glapi_table *disp) {
   4366    return (_glptr_Materiali) (GET_by_offset(disp, _gloffset_Materiali));
   4367 }
   4368 
   4369 static inline void SET_Materiali(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4370    SET_by_offset(disp, _gloffset_Materiali, fn);
   4371 }
   4372 
   4373 typedef void (GLAPIENTRYP _glptr_Materialiv)(GLenum, GLenum, const GLint *);
   4374 #define CALL_Materialiv(disp, parameters) \
   4375     (* GET_Materialiv(disp)) parameters
   4376 static inline _glptr_Materialiv GET_Materialiv(struct _glapi_table *disp) {
   4377    return (_glptr_Materialiv) (GET_by_offset(disp, _gloffset_Materialiv));
   4378 }
   4379 
   4380 static inline void SET_Materialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4381    SET_by_offset(disp, _gloffset_Materialiv, fn);
   4382 }
   4383 
   4384 typedef void (GLAPIENTRYP _glptr_PointSize)(GLfloat);
   4385 #define CALL_PointSize(disp, parameters) \
   4386     (* GET_PointSize(disp)) parameters
   4387 static inline _glptr_PointSize GET_PointSize(struct _glapi_table *disp) {
   4388    return (_glptr_PointSize) (GET_by_offset(disp, _gloffset_PointSize));
   4389 }
   4390 
   4391 static inline void SET_PointSize(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4392    SET_by_offset(disp, _gloffset_PointSize, fn);
   4393 }
   4394 
   4395 typedef void (GLAPIENTRYP _glptr_PolygonMode)(GLenum, GLenum);
   4396 #define CALL_PolygonMode(disp, parameters) \
   4397     (* GET_PolygonMode(disp)) parameters
   4398 static inline _glptr_PolygonMode GET_PolygonMode(struct _glapi_table *disp) {
   4399    return (_glptr_PolygonMode) (GET_by_offset(disp, _gloffset_PolygonMode));
   4400 }
   4401 
   4402 static inline void SET_PolygonMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   4403    SET_by_offset(disp, _gloffset_PolygonMode, fn);
   4404 }
   4405 
   4406 typedef void (GLAPIENTRYP _glptr_PolygonStipple)(const GLubyte *);
   4407 #define CALL_PolygonStipple(disp, parameters) \
   4408     (* GET_PolygonStipple(disp)) parameters
   4409 static inline _glptr_PolygonStipple GET_PolygonStipple(struct _glapi_table *disp) {
   4410    return (_glptr_PolygonStipple) (GET_by_offset(disp, _gloffset_PolygonStipple));
   4411 }
   4412 
   4413 static inline void SET_PolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   4414    SET_by_offset(disp, _gloffset_PolygonStipple, fn);
   4415 }
   4416 
   4417 typedef void (GLAPIENTRYP _glptr_Scissor)(GLint, GLint, GLsizei, GLsizei);
   4418 #define CALL_Scissor(disp, parameters) \
   4419     (* GET_Scissor(disp)) parameters
   4420 static inline _glptr_Scissor GET_Scissor(struct _glapi_table *disp) {
   4421    return (_glptr_Scissor) (GET_by_offset(disp, _gloffset_Scissor));
   4422 }
   4423 
   4424 static inline void SET_Scissor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
   4425    SET_by_offset(disp, _gloffset_Scissor, fn);
   4426 }
   4427 
   4428 typedef void (GLAPIENTRYP _glptr_ShadeModel)(GLenum);
   4429 #define CALL_ShadeModel(disp, parameters) \
   4430     (* GET_ShadeModel(disp)) parameters
   4431 static inline _glptr_ShadeModel GET_ShadeModel(struct _glapi_table *disp) {
   4432    return (_glptr_ShadeModel) (GET_by_offset(disp, _gloffset_ShadeModel));
   4433 }
   4434 
   4435 static inline void SET_ShadeModel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4436    SET_by_offset(disp, _gloffset_ShadeModel, fn);
   4437 }
   4438 
   4439 typedef void (GLAPIENTRYP _glptr_TexParameterf)(GLenum, GLenum, GLfloat);
   4440 #define CALL_TexParameterf(disp, parameters) \
   4441     (* GET_TexParameterf(disp)) parameters
   4442 static inline _glptr_TexParameterf GET_TexParameterf(struct _glapi_table *disp) {
   4443    return (_glptr_TexParameterf) (GET_by_offset(disp, _gloffset_TexParameterf));
   4444 }
   4445 
   4446 static inline void SET_TexParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4447    SET_by_offset(disp, _gloffset_TexParameterf, fn);
   4448 }
   4449 
   4450 typedef void (GLAPIENTRYP _glptr_TexParameterfv)(GLenum, GLenum, const GLfloat *);
   4451 #define CALL_TexParameterfv(disp, parameters) \
   4452     (* GET_TexParameterfv(disp)) parameters
   4453 static inline _glptr_TexParameterfv GET_TexParameterfv(struct _glapi_table *disp) {
   4454    return (_glptr_TexParameterfv) (GET_by_offset(disp, _gloffset_TexParameterfv));
   4455 }
   4456 
   4457 static inline void SET_TexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4458    SET_by_offset(disp, _gloffset_TexParameterfv, fn);
   4459 }
   4460 
   4461 typedef void (GLAPIENTRYP _glptr_TexParameteri)(GLenum, GLenum, GLint);
   4462 #define CALL_TexParameteri(disp, parameters) \
   4463     (* GET_TexParameteri(disp)) parameters
   4464 static inline _glptr_TexParameteri GET_TexParameteri(struct _glapi_table *disp) {
   4465    return (_glptr_TexParameteri) (GET_by_offset(disp, _gloffset_TexParameteri));
   4466 }
   4467 
   4468 static inline void SET_TexParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4469    SET_by_offset(disp, _gloffset_TexParameteri, fn);
   4470 }
   4471 
   4472 typedef void (GLAPIENTRYP _glptr_TexParameteriv)(GLenum, GLenum, const GLint *);
   4473 #define CALL_TexParameteriv(disp, parameters) \
   4474     (* GET_TexParameteriv(disp)) parameters
   4475 static inline _glptr_TexParameteriv GET_TexParameteriv(struct _glapi_table *disp) {
   4476    return (_glptr_TexParameteriv) (GET_by_offset(disp, _gloffset_TexParameteriv));
   4477 }
   4478 
   4479 static inline void SET_TexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4480    SET_by_offset(disp, _gloffset_TexParameteriv, fn);
   4481 }
   4482 
   4483 typedef void (GLAPIENTRYP _glptr_TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
   4484 #define CALL_TexImage1D(disp, parameters) \
   4485     (* GET_TexImage1D(disp)) parameters
   4486 static inline _glptr_TexImage1D GET_TexImage1D(struct _glapi_table *disp) {
   4487    return (_glptr_TexImage1D) (GET_by_offset(disp, _gloffset_TexImage1D));
   4488 }
   4489 
   4490 static inline void SET_TexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
   4491    SET_by_offset(disp, _gloffset_TexImage1D, fn);
   4492 }
   4493 
   4494 typedef void (GLAPIENTRYP _glptr_TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
   4495 #define CALL_TexImage2D(disp, parameters) \
   4496     (* GET_TexImage2D(disp)) parameters
   4497 static inline _glptr_TexImage2D GET_TexImage2D(struct _glapi_table *disp) {
   4498    return (_glptr_TexImage2D) (GET_by_offset(disp, _gloffset_TexImage2D));
   4499 }
   4500 
   4501 static inline void SET_TexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
   4502    SET_by_offset(disp, _gloffset_TexImage2D, fn);
   4503 }
   4504 
   4505 typedef void (GLAPIENTRYP _glptr_TexEnvf)(GLenum, GLenum, GLfloat);
   4506 #define CALL_TexEnvf(disp, parameters) \
   4507     (* GET_TexEnvf(disp)) parameters
   4508 static inline _glptr_TexEnvf GET_TexEnvf(struct _glapi_table *disp) {
   4509    return (_glptr_TexEnvf) (GET_by_offset(disp, _gloffset_TexEnvf));
   4510 }
   4511 
   4512 static inline void SET_TexEnvf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4513    SET_by_offset(disp, _gloffset_TexEnvf, fn);
   4514 }
   4515 
   4516 typedef void (GLAPIENTRYP _glptr_TexEnvfv)(GLenum, GLenum, const GLfloat *);
   4517 #define CALL_TexEnvfv(disp, parameters) \
   4518     (* GET_TexEnvfv(disp)) parameters
   4519 static inline _glptr_TexEnvfv GET_TexEnvfv(struct _glapi_table *disp) {
   4520    return (_glptr_TexEnvfv) (GET_by_offset(disp, _gloffset_TexEnvfv));
   4521 }
   4522 
   4523 static inline void SET_TexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4524    SET_by_offset(disp, _gloffset_TexEnvfv, fn);
   4525 }
   4526 
   4527 typedef void (GLAPIENTRYP _glptr_TexEnvi)(GLenum, GLenum, GLint);
   4528 #define CALL_TexEnvi(disp, parameters) \
   4529     (* GET_TexEnvi(disp)) parameters
   4530 static inline _glptr_TexEnvi GET_TexEnvi(struct _glapi_table *disp) {
   4531    return (_glptr_TexEnvi) (GET_by_offset(disp, _gloffset_TexEnvi));
   4532 }
   4533 
   4534 static inline void SET_TexEnvi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4535    SET_by_offset(disp, _gloffset_TexEnvi, fn);
   4536 }
   4537 
   4538 typedef void (GLAPIENTRYP _glptr_TexEnviv)(GLenum, GLenum, const GLint *);
   4539 #define CALL_TexEnviv(disp, parameters) \
   4540     (* GET_TexEnviv(disp)) parameters
   4541 static inline _glptr_TexEnviv GET_TexEnviv(struct _glapi_table *disp) {
   4542    return (_glptr_TexEnviv) (GET_by_offset(disp, _gloffset_TexEnviv));
   4543 }
   4544 
   4545 static inline void SET_TexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4546    SET_by_offset(disp, _gloffset_TexEnviv, fn);
   4547 }
   4548 
   4549 typedef void (GLAPIENTRYP _glptr_TexGend)(GLenum, GLenum, GLdouble);
   4550 #define CALL_TexGend(disp, parameters) \
   4551     (* GET_TexGend(disp)) parameters
   4552 static inline _glptr_TexGend GET_TexGend(struct _glapi_table *disp) {
   4553    return (_glptr_TexGend) (GET_by_offset(disp, _gloffset_TexGend));
   4554 }
   4555 
   4556 static inline void SET_TexGend(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble)) {
   4557    SET_by_offset(disp, _gloffset_TexGend, fn);
   4558 }
   4559 
   4560 typedef void (GLAPIENTRYP _glptr_TexGendv)(GLenum, GLenum, const GLdouble *);
   4561 #define CALL_TexGendv(disp, parameters) \
   4562     (* GET_TexGendv(disp)) parameters
   4563 static inline _glptr_TexGendv GET_TexGendv(struct _glapi_table *disp) {
   4564    return (_glptr_TexGendv) (GET_by_offset(disp, _gloffset_TexGendv));
   4565 }
   4566 
   4567 static inline void SET_TexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLdouble *)) {
   4568    SET_by_offset(disp, _gloffset_TexGendv, fn);
   4569 }
   4570 
   4571 typedef void (GLAPIENTRYP _glptr_TexGenf)(GLenum, GLenum, GLfloat);
   4572 #define CALL_TexGenf(disp, parameters) \
   4573     (* GET_TexGenf(disp)) parameters
   4574 static inline _glptr_TexGenf GET_TexGenf(struct _glapi_table *disp) {
   4575    return (_glptr_TexGenf) (GET_by_offset(disp, _gloffset_TexGenf));
   4576 }
   4577 
   4578 static inline void SET_TexGenf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   4579    SET_by_offset(disp, _gloffset_TexGenf, fn);
   4580 }
   4581 
   4582 typedef void (GLAPIENTRYP _glptr_TexGenfv)(GLenum, GLenum, const GLfloat *);
   4583 #define CALL_TexGenfv(disp, parameters) \
   4584     (* GET_TexGenfv(disp)) parameters
   4585 static inline _glptr_TexGenfv GET_TexGenfv(struct _glapi_table *disp) {
   4586    return (_glptr_TexGenfv) (GET_by_offset(disp, _gloffset_TexGenfv));
   4587 }
   4588 
   4589 static inline void SET_TexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   4590    SET_by_offset(disp, _gloffset_TexGenfv, fn);
   4591 }
   4592 
   4593 typedef void (GLAPIENTRYP _glptr_TexGeni)(GLenum, GLenum, GLint);
   4594 #define CALL_TexGeni(disp, parameters) \
   4595     (* GET_TexGeni(disp)) parameters
   4596 static inline _glptr_TexGeni GET_TexGeni(struct _glapi_table *disp) {
   4597    return (_glptr_TexGeni) (GET_by_offset(disp, _gloffset_TexGeni));
   4598 }
   4599 
   4600 static inline void SET_TexGeni(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   4601    SET_by_offset(disp, _gloffset_TexGeni, fn);
   4602 }
   4603 
   4604 typedef void (GLAPIENTRYP _glptr_TexGeniv)(GLenum, GLenum, const GLint *);
   4605 #define CALL_TexGeniv(disp, parameters) \
   4606     (* GET_TexGeniv(disp)) parameters
   4607 static inline _glptr_TexGeniv GET_TexGeniv(struct _glapi_table *disp) {
   4608    return (_glptr_TexGeniv) (GET_by_offset(disp, _gloffset_TexGeniv));
   4609 }
   4610 
   4611 static inline void SET_TexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   4612    SET_by_offset(disp, _gloffset_TexGeniv, fn);
   4613 }
   4614 
   4615 typedef void (GLAPIENTRYP _glptr_FeedbackBuffer)(GLsizei, GLenum, GLfloat *);
   4616 #define CALL_FeedbackBuffer(disp, parameters) \
   4617     (* GET_FeedbackBuffer(disp)) parameters
   4618 static inline _glptr_FeedbackBuffer GET_FeedbackBuffer(struct _glapi_table *disp) {
   4619    return (_glptr_FeedbackBuffer) (GET_by_offset(disp, _gloffset_FeedbackBuffer));
   4620 }
   4621 
   4622 static inline void SET_FeedbackBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, GLfloat *)) {
   4623    SET_by_offset(disp, _gloffset_FeedbackBuffer, fn);
   4624 }
   4625 
   4626 typedef void (GLAPIENTRYP _glptr_SelectBuffer)(GLsizei, GLuint *);
   4627 #define CALL_SelectBuffer(disp, parameters) \
   4628     (* GET_SelectBuffer(disp)) parameters
   4629 static inline _glptr_SelectBuffer GET_SelectBuffer(struct _glapi_table *disp) {
   4630    return (_glptr_SelectBuffer) (GET_by_offset(disp, _gloffset_SelectBuffer));
   4631 }
   4632 
   4633 static inline void SET_SelectBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   4634    SET_by_offset(disp, _gloffset_SelectBuffer, fn);
   4635 }
   4636 
   4637 typedef GLint (GLAPIENTRYP _glptr_RenderMode)(GLenum);
   4638 #define CALL_RenderMode(disp, parameters) \
   4639     (* GET_RenderMode(disp)) parameters
   4640 static inline _glptr_RenderMode GET_RenderMode(struct _glapi_table *disp) {
   4641    return (_glptr_RenderMode) (GET_by_offset(disp, _gloffset_RenderMode));
   4642 }
   4643 
   4644 static inline void SET_RenderMode(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLenum)) {
   4645    SET_by_offset(disp, _gloffset_RenderMode, fn);
   4646 }
   4647 
   4648 typedef void (GLAPIENTRYP _glptr_InitNames)(void);
   4649 #define CALL_InitNames(disp, parameters) \
   4650     (* GET_InitNames(disp)) parameters
   4651 static inline _glptr_InitNames GET_InitNames(struct _glapi_table *disp) {
   4652    return (_glptr_InitNames) (GET_by_offset(disp, _gloffset_InitNames));
   4653 }
   4654 
   4655 static inline void SET_InitNames(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4656    SET_by_offset(disp, _gloffset_InitNames, fn);
   4657 }
   4658 
   4659 typedef void (GLAPIENTRYP _glptr_LoadName)(GLuint);
   4660 #define CALL_LoadName(disp, parameters) \
   4661     (* GET_LoadName(disp)) parameters
   4662 static inline _glptr_LoadName GET_LoadName(struct _glapi_table *disp) {
   4663    return (_glptr_LoadName) (GET_by_offset(disp, _gloffset_LoadName));
   4664 }
   4665 
   4666 static inline void SET_LoadName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4667    SET_by_offset(disp, _gloffset_LoadName, fn);
   4668 }
   4669 
   4670 typedef void (GLAPIENTRYP _glptr_PassThrough)(GLfloat);
   4671 #define CALL_PassThrough(disp, parameters) \
   4672     (* GET_PassThrough(disp)) parameters
   4673 static inline _glptr_PassThrough GET_PassThrough(struct _glapi_table *disp) {
   4674    return (_glptr_PassThrough) (GET_by_offset(disp, _gloffset_PassThrough));
   4675 }
   4676 
   4677 static inline void SET_PassThrough(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4678    SET_by_offset(disp, _gloffset_PassThrough, fn);
   4679 }
   4680 
   4681 typedef void (GLAPIENTRYP _glptr_PopName)(void);
   4682 #define CALL_PopName(disp, parameters) \
   4683     (* GET_PopName(disp)) parameters
   4684 static inline _glptr_PopName GET_PopName(struct _glapi_table *disp) {
   4685    return (_glptr_PopName) (GET_by_offset(disp, _gloffset_PopName));
   4686 }
   4687 
   4688 static inline void SET_PopName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4689    SET_by_offset(disp, _gloffset_PopName, fn);
   4690 }
   4691 
   4692 typedef void (GLAPIENTRYP _glptr_PushName)(GLuint);
   4693 #define CALL_PushName(disp, parameters) \
   4694     (* GET_PushName(disp)) parameters
   4695 static inline _glptr_PushName GET_PushName(struct _glapi_table *disp) {
   4696    return (_glptr_PushName) (GET_by_offset(disp, _gloffset_PushName));
   4697 }
   4698 
   4699 static inline void SET_PushName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4700    SET_by_offset(disp, _gloffset_PushName, fn);
   4701 }
   4702 
   4703 typedef void (GLAPIENTRYP _glptr_DrawBuffer)(GLenum);
   4704 #define CALL_DrawBuffer(disp, parameters) \
   4705     (* GET_DrawBuffer(disp)) parameters
   4706 static inline _glptr_DrawBuffer GET_DrawBuffer(struct _glapi_table *disp) {
   4707    return (_glptr_DrawBuffer) (GET_by_offset(disp, _gloffset_DrawBuffer));
   4708 }
   4709 
   4710 static inline void SET_DrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4711    SET_by_offset(disp, _gloffset_DrawBuffer, fn);
   4712 }
   4713 
   4714 typedef void (GLAPIENTRYP _glptr_Clear)(GLbitfield);
   4715 #define CALL_Clear(disp, parameters) \
   4716     (* GET_Clear(disp)) parameters
   4717 static inline _glptr_Clear GET_Clear(struct _glapi_table *disp) {
   4718    return (_glptr_Clear) (GET_by_offset(disp, _gloffset_Clear));
   4719 }
   4720 
   4721 static inline void SET_Clear(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   4722    SET_by_offset(disp, _gloffset_Clear, fn);
   4723 }
   4724 
   4725 typedef void (GLAPIENTRYP _glptr_ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat);
   4726 #define CALL_ClearAccum(disp, parameters) \
   4727     (* GET_ClearAccum(disp)) parameters
   4728 static inline _glptr_ClearAccum GET_ClearAccum(struct _glapi_table *disp) {
   4729    return (_glptr_ClearAccum) (GET_by_offset(disp, _gloffset_ClearAccum));
   4730 }
   4731 
   4732 static inline void SET_ClearAccum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   4733    SET_by_offset(disp, _gloffset_ClearAccum, fn);
   4734 }
   4735 
   4736 typedef void (GLAPIENTRYP _glptr_ClearIndex)(GLfloat);
   4737 #define CALL_ClearIndex(disp, parameters) \
   4738     (* GET_ClearIndex(disp)) parameters
   4739 static inline _glptr_ClearIndex GET_ClearIndex(struct _glapi_table *disp) {
   4740    return (_glptr_ClearIndex) (GET_by_offset(disp, _gloffset_ClearIndex));
   4741 }
   4742 
   4743 static inline void SET_ClearIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   4744    SET_by_offset(disp, _gloffset_ClearIndex, fn);
   4745 }
   4746 
   4747 typedef void (GLAPIENTRYP _glptr_ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
   4748 #define CALL_ClearColor(disp, parameters) \
   4749     (* GET_ClearColor(disp)) parameters
   4750 static inline _glptr_ClearColor GET_ClearColor(struct _glapi_table *disp) {
   4751    return (_glptr_ClearColor) (GET_by_offset(disp, _gloffset_ClearColor));
   4752 }
   4753 
   4754 static inline void SET_ClearColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
   4755    SET_by_offset(disp, _gloffset_ClearColor, fn);
   4756 }
   4757 
   4758 typedef void (GLAPIENTRYP _glptr_ClearStencil)(GLint);
   4759 #define CALL_ClearStencil(disp, parameters) \
   4760     (* GET_ClearStencil(disp)) parameters
   4761 static inline _glptr_ClearStencil GET_ClearStencil(struct _glapi_table *disp) {
   4762    return (_glptr_ClearStencil) (GET_by_offset(disp, _gloffset_ClearStencil));
   4763 }
   4764 
   4765 static inline void SET_ClearStencil(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   4766    SET_by_offset(disp, _gloffset_ClearStencil, fn);
   4767 }
   4768 
   4769 typedef void (GLAPIENTRYP _glptr_ClearDepth)(GLclampd);
   4770 #define CALL_ClearDepth(disp, parameters) \
   4771     (* GET_ClearDepth(disp)) parameters
   4772 static inline _glptr_ClearDepth GET_ClearDepth(struct _glapi_table *disp) {
   4773    return (_glptr_ClearDepth) (GET_by_offset(disp, _gloffset_ClearDepth));
   4774 }
   4775 
   4776 static inline void SET_ClearDepth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd)) {
   4777    SET_by_offset(disp, _gloffset_ClearDepth, fn);
   4778 }
   4779 
   4780 typedef void (GLAPIENTRYP _glptr_StencilMask)(GLuint);
   4781 #define CALL_StencilMask(disp, parameters) \
   4782     (* GET_StencilMask(disp)) parameters
   4783 static inline _glptr_StencilMask GET_StencilMask(struct _glapi_table *disp) {
   4784    return (_glptr_StencilMask) (GET_by_offset(disp, _gloffset_StencilMask));
   4785 }
   4786 
   4787 static inline void SET_StencilMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4788    SET_by_offset(disp, _gloffset_StencilMask, fn);
   4789 }
   4790 
   4791 typedef void (GLAPIENTRYP _glptr_ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean);
   4792 #define CALL_ColorMask(disp, parameters) \
   4793     (* GET_ColorMask(disp)) parameters
   4794 static inline _glptr_ColorMask GET_ColorMask(struct _glapi_table *disp) {
   4795    return (_glptr_ColorMask) (GET_by_offset(disp, _gloffset_ColorMask));
   4796 }
   4797 
   4798 static inline void SET_ColorMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean, GLboolean, GLboolean, GLboolean)) {
   4799    SET_by_offset(disp, _gloffset_ColorMask, fn);
   4800 }
   4801 
   4802 typedef void (GLAPIENTRYP _glptr_DepthMask)(GLboolean);
   4803 #define CALL_DepthMask(disp, parameters) \
   4804     (* GET_DepthMask(disp)) parameters
   4805 static inline _glptr_DepthMask GET_DepthMask(struct _glapi_table *disp) {
   4806    return (_glptr_DepthMask) (GET_by_offset(disp, _gloffset_DepthMask));
   4807 }
   4808 
   4809 static inline void SET_DepthMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
   4810    SET_by_offset(disp, _gloffset_DepthMask, fn);
   4811 }
   4812 
   4813 typedef void (GLAPIENTRYP _glptr_IndexMask)(GLuint);
   4814 #define CALL_IndexMask(disp, parameters) \
   4815     (* GET_IndexMask(disp)) parameters
   4816 static inline _glptr_IndexMask GET_IndexMask(struct _glapi_table *disp) {
   4817    return (_glptr_IndexMask) (GET_by_offset(disp, _gloffset_IndexMask));
   4818 }
   4819 
   4820 static inline void SET_IndexMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   4821    SET_by_offset(disp, _gloffset_IndexMask, fn);
   4822 }
   4823 
   4824 typedef void (GLAPIENTRYP _glptr_Accum)(GLenum, GLfloat);
   4825 #define CALL_Accum(disp, parameters) \
   4826     (* GET_Accum(disp)) parameters
   4827 static inline _glptr_Accum GET_Accum(struct _glapi_table *disp) {
   4828    return (_glptr_Accum) (GET_by_offset(disp, _gloffset_Accum));
   4829 }
   4830 
   4831 static inline void SET_Accum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   4832    SET_by_offset(disp, _gloffset_Accum, fn);
   4833 }
   4834 
   4835 typedef void (GLAPIENTRYP _glptr_Disable)(GLenum);
   4836 #define CALL_Disable(disp, parameters) \
   4837     (* GET_Disable(disp)) parameters
   4838 static inline _glptr_Disable GET_Disable(struct _glapi_table *disp) {
   4839    return (_glptr_Disable) (GET_by_offset(disp, _gloffset_Disable));
   4840 }
   4841 
   4842 static inline void SET_Disable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4843    SET_by_offset(disp, _gloffset_Disable, fn);
   4844 }
   4845 
   4846 typedef void (GLAPIENTRYP _glptr_Enable)(GLenum);
   4847 #define CALL_Enable(disp, parameters) \
   4848     (* GET_Enable(disp)) parameters
   4849 static inline _glptr_Enable GET_Enable(struct _glapi_table *disp) {
   4850    return (_glptr_Enable) (GET_by_offset(disp, _gloffset_Enable));
   4851 }
   4852 
   4853 static inline void SET_Enable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   4854    SET_by_offset(disp, _gloffset_Enable, fn);
   4855 }
   4856 
   4857 typedef void (GLAPIENTRYP _glptr_Finish)(void);
   4858 #define CALL_Finish(disp, parameters) \
   4859     (* GET_Finish(disp)) parameters
   4860 static inline _glptr_Finish GET_Finish(struct _glapi_table *disp) {
   4861    return (_glptr_Finish) (GET_by_offset(disp, _gloffset_Finish));
   4862 }
   4863 
   4864 static inline void SET_Finish(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4865    SET_by_offset(disp, _gloffset_Finish, fn);
   4866 }
   4867 
   4868 typedef void (GLAPIENTRYP _glptr_Flush)(void);
   4869 #define CALL_Flush(disp, parameters) \
   4870     (* GET_Flush(disp)) parameters
   4871 static inline _glptr_Flush GET_Flush(struct _glapi_table *disp) {
   4872    return (_glptr_Flush) (GET_by_offset(disp, _gloffset_Flush));
   4873 }
   4874 
   4875 static inline void SET_Flush(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4876    SET_by_offset(disp, _gloffset_Flush, fn);
   4877 }
   4878 
   4879 typedef void (GLAPIENTRYP _glptr_PopAttrib)(void);
   4880 #define CALL_PopAttrib(disp, parameters) \
   4881     (* GET_PopAttrib(disp)) parameters
   4882 static inline _glptr_PopAttrib GET_PopAttrib(struct _glapi_table *disp) {
   4883    return (_glptr_PopAttrib) (GET_by_offset(disp, _gloffset_PopAttrib));
   4884 }
   4885 
   4886 static inline void SET_PopAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   4887    SET_by_offset(disp, _gloffset_PopAttrib, fn);
   4888 }
   4889 
   4890 typedef void (GLAPIENTRYP _glptr_PushAttrib)(GLbitfield);
   4891 #define CALL_PushAttrib(disp, parameters) \
   4892     (* GET_PushAttrib(disp)) parameters
   4893 static inline _glptr_PushAttrib GET_PushAttrib(struct _glapi_table *disp) {
   4894    return (_glptr_PushAttrib) (GET_by_offset(disp, _gloffset_PushAttrib));
   4895 }
   4896 
   4897 static inline void SET_PushAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   4898    SET_by_offset(disp, _gloffset_PushAttrib, fn);
   4899 }
   4900 
   4901 typedef void (GLAPIENTRYP _glptr_Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
   4902 #define CALL_Map1d(disp, parameters) \
   4903     (* GET_Map1d(disp)) parameters
   4904 static inline _glptr_Map1d GET_Map1d(struct _glapi_table *disp) {
   4905    return (_glptr_Map1d) (GET_by_offset(disp, _gloffset_Map1d));
   4906 }
   4907 
   4908 static inline void SET_Map1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
   4909    SET_by_offset(disp, _gloffset_Map1d, fn);
   4910 }
   4911 
   4912 typedef void (GLAPIENTRYP _glptr_Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
   4913 #define CALL_Map1f(disp, parameters) \
   4914     (* GET_Map1f(disp)) parameters
   4915 static inline _glptr_Map1f GET_Map1f(struct _glapi_table *disp) {
   4916    return (_glptr_Map1f) (GET_by_offset(disp, _gloffset_Map1f));
   4917 }
   4918 
   4919 static inline void SET_Map1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
   4920    SET_by_offset(disp, _gloffset_Map1f, fn);
   4921 }
   4922 
   4923 typedef void (GLAPIENTRYP _glptr_Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
   4924 #define CALL_Map2d(disp, parameters) \
   4925     (* GET_Map2d(disp)) parameters
   4926 static inline _glptr_Map2d GET_Map2d(struct _glapi_table *disp) {
   4927    return (_glptr_Map2d) (GET_by_offset(disp, _gloffset_Map2d));
   4928 }
   4929 
   4930 static inline void SET_Map2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
   4931    SET_by_offset(disp, _gloffset_Map2d, fn);
   4932 }
   4933 
   4934 typedef void (GLAPIENTRYP _glptr_Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
   4935 #define CALL_Map2f(disp, parameters) \
   4936     (* GET_Map2f(disp)) parameters
   4937 static inline _glptr_Map2f GET_Map2f(struct _glapi_table *disp) {
   4938    return (_glptr_Map2f) (GET_by_offset(disp, _gloffset_Map2f));
   4939 }
   4940 
   4941 static inline void SET_Map2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
   4942    SET_by_offset(disp, _gloffset_Map2f, fn);
   4943 }
   4944 
   4945 typedef void (GLAPIENTRYP _glptr_MapGrid1d)(GLint, GLdouble, GLdouble);
   4946 #define CALL_MapGrid1d(disp, parameters) \
   4947     (* GET_MapGrid1d(disp)) parameters
   4948 static inline _glptr_MapGrid1d GET_MapGrid1d(struct _glapi_table *disp) {
   4949    return (_glptr_MapGrid1d) (GET_by_offset(disp, _gloffset_MapGrid1d));
   4950 }
   4951 
   4952 static inline void SET_MapGrid1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) {
   4953    SET_by_offset(disp, _gloffset_MapGrid1d, fn);
   4954 }
   4955 
   4956 typedef void (GLAPIENTRYP _glptr_MapGrid1f)(GLint, GLfloat, GLfloat);
   4957 #define CALL_MapGrid1f(disp, parameters) \
   4958     (* GET_MapGrid1f(disp)) parameters
   4959 static inline _glptr_MapGrid1f GET_MapGrid1f(struct _glapi_table *disp) {
   4960    return (_glptr_MapGrid1f) (GET_by_offset(disp, _gloffset_MapGrid1f));
   4961 }
   4962 
   4963 static inline void SET_MapGrid1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
   4964    SET_by_offset(disp, _gloffset_MapGrid1f, fn);
   4965 }
   4966 
   4967 typedef void (GLAPIENTRYP _glptr_MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
   4968 #define CALL_MapGrid2d(disp, parameters) \
   4969     (* GET_MapGrid2d(disp)) parameters
   4970 static inline _glptr_MapGrid2d GET_MapGrid2d(struct _glapi_table *disp) {
   4971    return (_glptr_MapGrid2d) (GET_by_offset(disp, _gloffset_MapGrid2d));
   4972 }
   4973 
   4974 static inline void SET_MapGrid2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble)) {
   4975    SET_by_offset(disp, _gloffset_MapGrid2d, fn);
   4976 }
   4977 
   4978 typedef void (GLAPIENTRYP _glptr_MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
   4979 #define CALL_MapGrid2f(disp, parameters) \
   4980     (* GET_MapGrid2f(disp)) parameters
   4981 static inline _glptr_MapGrid2f GET_MapGrid2f(struct _glapi_table *disp) {
   4982    return (_glptr_MapGrid2f) (GET_by_offset(disp, _gloffset_MapGrid2f));
   4983 }
   4984 
   4985 static inline void SET_MapGrid2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat)) {
   4986    SET_by_offset(disp, _gloffset_MapGrid2f, fn);
   4987 }
   4988 
   4989 typedef void (GLAPIENTRYP _glptr_EvalCoord1d)(GLdouble);
   4990 #define CALL_EvalCoord1d(disp, parameters) \
   4991     (* GET_EvalCoord1d(disp)) parameters
   4992 static inline _glptr_EvalCoord1d GET_EvalCoord1d(struct _glapi_table *disp) {
   4993    return (_glptr_EvalCoord1d) (GET_by_offset(disp, _gloffset_EvalCoord1d));
   4994 }
   4995 
   4996 static inline void SET_EvalCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   4997    SET_by_offset(disp, _gloffset_EvalCoord1d, fn);
   4998 }
   4999 
   5000 typedef void (GLAPIENTRYP _glptr_EvalCoord1dv)(const GLdouble *);
   5001 #define CALL_EvalCoord1dv(disp, parameters) \
   5002     (* GET_EvalCoord1dv(disp)) parameters
   5003 static inline _glptr_EvalCoord1dv GET_EvalCoord1dv(struct _glapi_table *disp) {
   5004    return (_glptr_EvalCoord1dv) (GET_by_offset(disp, _gloffset_EvalCoord1dv));
   5005 }
   5006 
   5007 static inline void SET_EvalCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   5008    SET_by_offset(disp, _gloffset_EvalCoord1dv, fn);
   5009 }
   5010 
   5011 typedef void (GLAPIENTRYP _glptr_EvalCoord1f)(GLfloat);
   5012 #define CALL_EvalCoord1f(disp, parameters) \
   5013     (* GET_EvalCoord1f(disp)) parameters
   5014 static inline _glptr_EvalCoord1f GET_EvalCoord1f(struct _glapi_table *disp) {
   5015    return (_glptr_EvalCoord1f) (GET_by_offset(disp, _gloffset_EvalCoord1f));
   5016 }
   5017 
   5018 static inline void SET_EvalCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   5019    SET_by_offset(disp, _gloffset_EvalCoord1f, fn);
   5020 }
   5021 
   5022 typedef void (GLAPIENTRYP _glptr_EvalCoord1fv)(const GLfloat *);
   5023 #define CALL_EvalCoord1fv(disp, parameters) \
   5024     (* GET_EvalCoord1fv(disp)) parameters
   5025 static inline _glptr_EvalCoord1fv GET_EvalCoord1fv(struct _glapi_table *disp) {
   5026    return (_glptr_EvalCoord1fv) (GET_by_offset(disp, _gloffset_EvalCoord1fv));
   5027 }
   5028 
   5029 static inline void SET_EvalCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   5030    SET_by_offset(disp, _gloffset_EvalCoord1fv, fn);
   5031 }
   5032 
   5033 typedef void (GLAPIENTRYP _glptr_EvalCoord2d)(GLdouble, GLdouble);
   5034 #define CALL_EvalCoord2d(disp, parameters) \
   5035     (* GET_EvalCoord2d(disp)) parameters
   5036 static inline _glptr_EvalCoord2d GET_EvalCoord2d(struct _glapi_table *disp) {
   5037    return (_glptr_EvalCoord2d) (GET_by_offset(disp, _gloffset_EvalCoord2d));
   5038 }
   5039 
   5040 static inline void SET_EvalCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   5041    SET_by_offset(disp, _gloffset_EvalCoord2d, fn);
   5042 }
   5043 
   5044 typedef void (GLAPIENTRYP _glptr_EvalCoord2dv)(const GLdouble *);
   5045 #define CALL_EvalCoord2dv(disp, parameters) \
   5046     (* GET_EvalCoord2dv(disp)) parameters
   5047 static inline _glptr_EvalCoord2dv GET_EvalCoord2dv(struct _glapi_table *disp) {
   5048    return (_glptr_EvalCoord2dv) (GET_by_offset(disp, _gloffset_EvalCoord2dv));
   5049 }
   5050 
   5051 static inline void SET_EvalCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   5052    SET_by_offset(disp, _gloffset_EvalCoord2dv, fn);
   5053 }
   5054 
   5055 typedef void (GLAPIENTRYP _glptr_EvalCoord2f)(GLfloat, GLfloat);
   5056 #define CALL_EvalCoord2f(disp, parameters) \
   5057     (* GET_EvalCoord2f(disp)) parameters
   5058 static inline _glptr_EvalCoord2f GET_EvalCoord2f(struct _glapi_table *disp) {
   5059    return (_glptr_EvalCoord2f) (GET_by_offset(disp, _gloffset_EvalCoord2f));
   5060 }
   5061 
   5062 static inline void SET_EvalCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   5063    SET_by_offset(disp, _gloffset_EvalCoord2f, fn);
   5064 }
   5065 
   5066 typedef void (GLAPIENTRYP _glptr_EvalCoord2fv)(const GLfloat *);
   5067 #define CALL_EvalCoord2fv(disp, parameters) \
   5068     (* GET_EvalCoord2fv(disp)) parameters
   5069 static inline _glptr_EvalCoord2fv GET_EvalCoord2fv(struct _glapi_table *disp) {
   5070    return (_glptr_EvalCoord2fv) (GET_by_offset(disp, _gloffset_EvalCoord2fv));
   5071 }
   5072 
   5073 static inline void SET_EvalCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   5074    SET_by_offset(disp, _gloffset_EvalCoord2fv, fn);
   5075 }
   5076 
   5077 typedef void (GLAPIENTRYP _glptr_EvalMesh1)(GLenum, GLint, GLint);
   5078 #define CALL_EvalMesh1(disp, parameters) \
   5079     (* GET_EvalMesh1(disp)) parameters
   5080 static inline _glptr_EvalMesh1 GET_EvalMesh1(struct _glapi_table *disp) {
   5081    return (_glptr_EvalMesh1) (GET_by_offset(disp, _gloffset_EvalMesh1));
   5082 }
   5083 
   5084 static inline void SET_EvalMesh1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
   5085    SET_by_offset(disp, _gloffset_EvalMesh1, fn);
   5086 }
   5087 
   5088 typedef void (GLAPIENTRYP _glptr_EvalPoint1)(GLint);
   5089 #define CALL_EvalPoint1(disp, parameters) \
   5090     (* GET_EvalPoint1(disp)) parameters
   5091 static inline _glptr_EvalPoint1 GET_EvalPoint1(struct _glapi_table *disp) {
   5092    return (_glptr_EvalPoint1) (GET_by_offset(disp, _gloffset_EvalPoint1));
   5093 }
   5094 
   5095 static inline void SET_EvalPoint1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   5096    SET_by_offset(disp, _gloffset_EvalPoint1, fn);
   5097 }
   5098 
   5099 typedef void (GLAPIENTRYP _glptr_EvalMesh2)(GLenum, GLint, GLint, GLint, GLint);
   5100 #define CALL_EvalMesh2(disp, parameters) \
   5101     (* GET_EvalMesh2(disp)) parameters
   5102 static inline _glptr_EvalMesh2 GET_EvalMesh2(struct _glapi_table *disp) {
   5103    return (_glptr_EvalMesh2) (GET_by_offset(disp, _gloffset_EvalMesh2));
   5104 }
   5105 
   5106 static inline void SET_EvalMesh2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
   5107    SET_by_offset(disp, _gloffset_EvalMesh2, fn);
   5108 }
   5109 
   5110 typedef void (GLAPIENTRYP _glptr_EvalPoint2)(GLint, GLint);
   5111 #define CALL_EvalPoint2(disp, parameters) \
   5112     (* GET_EvalPoint2(disp)) parameters
   5113 static inline _glptr_EvalPoint2 GET_EvalPoint2(struct _glapi_table *disp) {
   5114    return (_glptr_EvalPoint2) (GET_by_offset(disp, _gloffset_EvalPoint2));
   5115 }
   5116 
   5117 static inline void SET_EvalPoint2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   5118    SET_by_offset(disp, _gloffset_EvalPoint2, fn);
   5119 }
   5120 
   5121 typedef void (GLAPIENTRYP _glptr_AlphaFunc)(GLenum, GLclampf);
   5122 #define CALL_AlphaFunc(disp, parameters) \
   5123     (* GET_AlphaFunc(disp)) parameters
   5124 static inline _glptr_AlphaFunc GET_AlphaFunc(struct _glapi_table *disp) {
   5125    return (_glptr_AlphaFunc) (GET_by_offset(disp, _gloffset_AlphaFunc));
   5126 }
   5127 
   5128 static inline void SET_AlphaFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampf)) {
   5129    SET_by_offset(disp, _gloffset_AlphaFunc, fn);
   5130 }
   5131 
   5132 typedef void (GLAPIENTRYP _glptr_BlendFunc)(GLenum, GLenum);
   5133 #define CALL_BlendFunc(disp, parameters) \
   5134     (* GET_BlendFunc(disp)) parameters
   5135 static inline _glptr_BlendFunc GET_BlendFunc(struct _glapi_table *disp) {
   5136    return (_glptr_BlendFunc) (GET_by_offset(disp, _gloffset_BlendFunc));
   5137 }
   5138 
   5139 static inline void SET_BlendFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   5140    SET_by_offset(disp, _gloffset_BlendFunc, fn);
   5141 }
   5142 
   5143 typedef void (GLAPIENTRYP _glptr_LogicOp)(GLenum);
   5144 #define CALL_LogicOp(disp, parameters) \
   5145     (* GET_LogicOp(disp)) parameters
   5146 static inline _glptr_LogicOp GET_LogicOp(struct _glapi_table *disp) {
   5147    return (_glptr_LogicOp) (GET_by_offset(disp, _gloffset_LogicOp));
   5148 }
   5149 
   5150 static inline void SET_LogicOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5151    SET_by_offset(disp, _gloffset_LogicOp, fn);
   5152 }
   5153 
   5154 typedef void (GLAPIENTRYP _glptr_StencilFunc)(GLenum, GLint, GLuint);
   5155 #define CALL_StencilFunc(disp, parameters) \
   5156     (* GET_StencilFunc(disp)) parameters
   5157 static inline _glptr_StencilFunc GET_StencilFunc(struct _glapi_table *disp) {
   5158    return (_glptr_StencilFunc) (GET_by_offset(disp, _gloffset_StencilFunc));
   5159 }
   5160 
   5161 static inline void SET_StencilFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint)) {
   5162    SET_by_offset(disp, _gloffset_StencilFunc, fn);
   5163 }
   5164 
   5165 typedef void (GLAPIENTRYP _glptr_StencilOp)(GLenum, GLenum, GLenum);
   5166 #define CALL_StencilOp(disp, parameters) \
   5167     (* GET_StencilOp(disp)) parameters
   5168 static inline _glptr_StencilOp GET_StencilOp(struct _glapi_table *disp) {
   5169    return (_glptr_StencilOp) (GET_by_offset(disp, _gloffset_StencilOp));
   5170 }
   5171 
   5172 static inline void SET_StencilOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum)) {
   5173    SET_by_offset(disp, _gloffset_StencilOp, fn);
   5174 }
   5175 
   5176 typedef void (GLAPIENTRYP _glptr_DepthFunc)(GLenum);
   5177 #define CALL_DepthFunc(disp, parameters) \
   5178     (* GET_DepthFunc(disp)) parameters
   5179 static inline _glptr_DepthFunc GET_DepthFunc(struct _glapi_table *disp) {
   5180    return (_glptr_DepthFunc) (GET_by_offset(disp, _gloffset_DepthFunc));
   5181 }
   5182 
   5183 static inline void SET_DepthFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5184    SET_by_offset(disp, _gloffset_DepthFunc, fn);
   5185 }
   5186 
   5187 typedef void (GLAPIENTRYP _glptr_PixelZoom)(GLfloat, GLfloat);
   5188 #define CALL_PixelZoom(disp, parameters) \
   5189     (* GET_PixelZoom(disp)) parameters
   5190 static inline _glptr_PixelZoom GET_PixelZoom(struct _glapi_table *disp) {
   5191    return (_glptr_PixelZoom) (GET_by_offset(disp, _gloffset_PixelZoom));
   5192 }
   5193 
   5194 static inline void SET_PixelZoom(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   5195    SET_by_offset(disp, _gloffset_PixelZoom, fn);
   5196 }
   5197 
   5198 typedef void (GLAPIENTRYP _glptr_PixelTransferf)(GLenum, GLfloat);
   5199 #define CALL_PixelTransferf(disp, parameters) \
   5200     (* GET_PixelTransferf(disp)) parameters
   5201 static inline _glptr_PixelTransferf GET_PixelTransferf(struct _glapi_table *disp) {
   5202    return (_glptr_PixelTransferf) (GET_by_offset(disp, _gloffset_PixelTransferf));
   5203 }
   5204 
   5205 static inline void SET_PixelTransferf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   5206    SET_by_offset(disp, _gloffset_PixelTransferf, fn);
   5207 }
   5208 
   5209 typedef void (GLAPIENTRYP _glptr_PixelTransferi)(GLenum, GLint);
   5210 #define CALL_PixelTransferi(disp, parameters) \
   5211     (* GET_PixelTransferi(disp)) parameters
   5212 static inline _glptr_PixelTransferi GET_PixelTransferi(struct _glapi_table *disp) {
   5213    return (_glptr_PixelTransferi) (GET_by_offset(disp, _gloffset_PixelTransferi));
   5214 }
   5215 
   5216 static inline void SET_PixelTransferi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   5217    SET_by_offset(disp, _gloffset_PixelTransferi, fn);
   5218 }
   5219 
   5220 typedef void (GLAPIENTRYP _glptr_PixelStoref)(GLenum, GLfloat);
   5221 #define CALL_PixelStoref(disp, parameters) \
   5222     (* GET_PixelStoref(disp)) parameters
   5223 static inline _glptr_PixelStoref GET_PixelStoref(struct _glapi_table *disp) {
   5224    return (_glptr_PixelStoref) (GET_by_offset(disp, _gloffset_PixelStoref));
   5225 }
   5226 
   5227 static inline void SET_PixelStoref(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   5228    SET_by_offset(disp, _gloffset_PixelStoref, fn);
   5229 }
   5230 
   5231 typedef void (GLAPIENTRYP _glptr_PixelStorei)(GLenum, GLint);
   5232 #define CALL_PixelStorei(disp, parameters) \
   5233     (* GET_PixelStorei(disp)) parameters
   5234 static inline _glptr_PixelStorei GET_PixelStorei(struct _glapi_table *disp) {
   5235    return (_glptr_PixelStorei) (GET_by_offset(disp, _gloffset_PixelStorei));
   5236 }
   5237 
   5238 static inline void SET_PixelStorei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   5239    SET_by_offset(disp, _gloffset_PixelStorei, fn);
   5240 }
   5241 
   5242 typedef void (GLAPIENTRYP _glptr_PixelMapfv)(GLenum, GLsizei, const GLfloat *);
   5243 #define CALL_PixelMapfv(disp, parameters) \
   5244     (* GET_PixelMapfv(disp)) parameters
   5245 static inline _glptr_PixelMapfv GET_PixelMapfv(struct _glapi_table *disp) {
   5246    return (_glptr_PixelMapfv) (GET_by_offset(disp, _gloffset_PixelMapfv));
   5247 }
   5248 
   5249 static inline void SET_PixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLfloat *)) {
   5250    SET_by_offset(disp, _gloffset_PixelMapfv, fn);
   5251 }
   5252 
   5253 typedef void (GLAPIENTRYP _glptr_PixelMapuiv)(GLenum, GLsizei, const GLuint *);
   5254 #define CALL_PixelMapuiv(disp, parameters) \
   5255     (* GET_PixelMapuiv(disp)) parameters
   5256 static inline _glptr_PixelMapuiv GET_PixelMapuiv(struct _glapi_table *disp) {
   5257    return (_glptr_PixelMapuiv) (GET_by_offset(disp, _gloffset_PixelMapuiv));
   5258 }
   5259 
   5260 static inline void SET_PixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) {
   5261    SET_by_offset(disp, _gloffset_PixelMapuiv, fn);
   5262 }
   5263 
   5264 typedef void (GLAPIENTRYP _glptr_PixelMapusv)(GLenum, GLsizei, const GLushort *);
   5265 #define CALL_PixelMapusv(disp, parameters) \
   5266     (* GET_PixelMapusv(disp)) parameters
   5267 static inline _glptr_PixelMapusv GET_PixelMapusv(struct _glapi_table *disp) {
   5268    return (_glptr_PixelMapusv) (GET_by_offset(disp, _gloffset_PixelMapusv));
   5269 }
   5270 
   5271 static inline void SET_PixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLushort *)) {
   5272    SET_by_offset(disp, _gloffset_PixelMapusv, fn);
   5273 }
   5274 
   5275 typedef void (GLAPIENTRYP _glptr_ReadBuffer)(GLenum);
   5276 #define CALL_ReadBuffer(disp, parameters) \
   5277     (* GET_ReadBuffer(disp)) parameters
   5278 static inline _glptr_ReadBuffer GET_ReadBuffer(struct _glapi_table *disp) {
   5279    return (_glptr_ReadBuffer) (GET_by_offset(disp, _gloffset_ReadBuffer));
   5280 }
   5281 
   5282 static inline void SET_ReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5283    SET_by_offset(disp, _gloffset_ReadBuffer, fn);
   5284 }
   5285 
   5286 typedef void (GLAPIENTRYP _glptr_CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum);
   5287 #define CALL_CopyPixels(disp, parameters) \
   5288     (* GET_CopyPixels(disp)) parameters
   5289 static inline _glptr_CopyPixels GET_CopyPixels(struct _glapi_table *disp) {
   5290    return (_glptr_CopyPixels) (GET_by_offset(disp, _gloffset_CopyPixels));
   5291 }
   5292 
   5293 static inline void SET_CopyPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum)) {
   5294    SET_by_offset(disp, _gloffset_CopyPixels, fn);
   5295 }
   5296 
   5297 typedef void (GLAPIENTRYP _glptr_ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
   5298 #define CALL_ReadPixels(disp, parameters) \
   5299     (* GET_ReadPixels(disp)) parameters
   5300 static inline _glptr_ReadPixels GET_ReadPixels(struct _glapi_table *disp) {
   5301    return (_glptr_ReadPixels) (GET_by_offset(disp, _gloffset_ReadPixels));
   5302 }
   5303 
   5304 static inline void SET_ReadPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *)) {
   5305    SET_by_offset(disp, _gloffset_ReadPixels, fn);
   5306 }
   5307 
   5308 typedef void (GLAPIENTRYP _glptr_DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   5309 #define CALL_DrawPixels(disp, parameters) \
   5310     (* GET_DrawPixels(disp)) parameters
   5311 static inline _glptr_DrawPixels GET_DrawPixels(struct _glapi_table *disp) {
   5312    return (_glptr_DrawPixels) (GET_by_offset(disp, _gloffset_DrawPixels));
   5313 }
   5314 
   5315 static inline void SET_DrawPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   5316    SET_by_offset(disp, _gloffset_DrawPixels, fn);
   5317 }
   5318 
   5319 typedef void (GLAPIENTRYP _glptr_GetBooleanv)(GLenum, GLboolean *);
   5320 #define CALL_GetBooleanv(disp, parameters) \
   5321     (* GET_GetBooleanv(disp)) parameters
   5322 static inline _glptr_GetBooleanv GET_GetBooleanv(struct _glapi_table *disp) {
   5323    return (_glptr_GetBooleanv) (GET_by_offset(disp, _gloffset_GetBooleanv));
   5324 }
   5325 
   5326 static inline void SET_GetBooleanv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean *)) {
   5327    SET_by_offset(disp, _gloffset_GetBooleanv, fn);
   5328 }
   5329 
   5330 typedef void (GLAPIENTRYP _glptr_GetClipPlane)(GLenum, GLdouble *);
   5331 #define CALL_GetClipPlane(disp, parameters) \
   5332     (* GET_GetClipPlane(disp)) parameters
   5333 static inline _glptr_GetClipPlane GET_GetClipPlane(struct _glapi_table *disp) {
   5334    return (_glptr_GetClipPlane) (GET_by_offset(disp, _gloffset_GetClipPlane));
   5335 }
   5336 
   5337 static inline void SET_GetClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
   5338    SET_by_offset(disp, _gloffset_GetClipPlane, fn);
   5339 }
   5340 
   5341 typedef void (GLAPIENTRYP _glptr_GetDoublev)(GLenum, GLdouble *);
   5342 #define CALL_GetDoublev(disp, parameters) \
   5343     (* GET_GetDoublev(disp)) parameters
   5344 static inline _glptr_GetDoublev GET_GetDoublev(struct _glapi_table *disp) {
   5345    return (_glptr_GetDoublev) (GET_by_offset(disp, _gloffset_GetDoublev));
   5346 }
   5347 
   5348 static inline void SET_GetDoublev(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
   5349    SET_by_offset(disp, _gloffset_GetDoublev, fn);
   5350 }
   5351 
   5352 typedef GLenum (GLAPIENTRYP _glptr_GetError)(void);
   5353 #define CALL_GetError(disp, parameters) \
   5354     (* GET_GetError(disp)) parameters
   5355 static inline _glptr_GetError GET_GetError(struct _glapi_table *disp) {
   5356    return (_glptr_GetError) (GET_by_offset(disp, _gloffset_GetError));
   5357 }
   5358 
   5359 static inline void SET_GetError(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
   5360    SET_by_offset(disp, _gloffset_GetError, fn);
   5361 }
   5362 
   5363 typedef void (GLAPIENTRYP _glptr_GetFloatv)(GLenum, GLfloat *);
   5364 #define CALL_GetFloatv(disp, parameters) \
   5365     (* GET_GetFloatv(disp)) parameters
   5366 static inline _glptr_GetFloatv GET_GetFloatv(struct _glapi_table *disp) {
   5367    return (_glptr_GetFloatv) (GET_by_offset(disp, _gloffset_GetFloatv));
   5368 }
   5369 
   5370 static inline void SET_GetFloatv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
   5371    SET_by_offset(disp, _gloffset_GetFloatv, fn);
   5372 }
   5373 
   5374 typedef void (GLAPIENTRYP _glptr_GetIntegerv)(GLenum, GLint *);
   5375 #define CALL_GetIntegerv(disp, parameters) \
   5376     (* GET_GetIntegerv(disp)) parameters
   5377 static inline _glptr_GetIntegerv GET_GetIntegerv(struct _glapi_table *disp) {
   5378    return (_glptr_GetIntegerv) (GET_by_offset(disp, _gloffset_GetIntegerv));
   5379 }
   5380 
   5381 static inline void SET_GetIntegerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
   5382    SET_by_offset(disp, _gloffset_GetIntegerv, fn);
   5383 }
   5384 
   5385 typedef void (GLAPIENTRYP _glptr_GetLightfv)(GLenum, GLenum, GLfloat *);
   5386 #define CALL_GetLightfv(disp, parameters) \
   5387     (* GET_GetLightfv(disp)) parameters
   5388 static inline _glptr_GetLightfv GET_GetLightfv(struct _glapi_table *disp) {
   5389    return (_glptr_GetLightfv) (GET_by_offset(disp, _gloffset_GetLightfv));
   5390 }
   5391 
   5392 static inline void SET_GetLightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5393    SET_by_offset(disp, _gloffset_GetLightfv, fn);
   5394 }
   5395 
   5396 typedef void (GLAPIENTRYP _glptr_GetLightiv)(GLenum, GLenum, GLint *);
   5397 #define CALL_GetLightiv(disp, parameters) \
   5398     (* GET_GetLightiv(disp)) parameters
   5399 static inline _glptr_GetLightiv GET_GetLightiv(struct _glapi_table *disp) {
   5400    return (_glptr_GetLightiv) (GET_by_offset(disp, _gloffset_GetLightiv));
   5401 }
   5402 
   5403 static inline void SET_GetLightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5404    SET_by_offset(disp, _gloffset_GetLightiv, fn);
   5405 }
   5406 
   5407 typedef void (GLAPIENTRYP _glptr_GetMapdv)(GLenum, GLenum, GLdouble *);
   5408 #define CALL_GetMapdv(disp, parameters) \
   5409     (* GET_GetMapdv(disp)) parameters
   5410 static inline _glptr_GetMapdv GET_GetMapdv(struct _glapi_table *disp) {
   5411    return (_glptr_GetMapdv) (GET_by_offset(disp, _gloffset_GetMapdv));
   5412 }
   5413 
   5414 static inline void SET_GetMapdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
   5415    SET_by_offset(disp, _gloffset_GetMapdv, fn);
   5416 }
   5417 
   5418 typedef void (GLAPIENTRYP _glptr_GetMapfv)(GLenum, GLenum, GLfloat *);
   5419 #define CALL_GetMapfv(disp, parameters) \
   5420     (* GET_GetMapfv(disp)) parameters
   5421 static inline _glptr_GetMapfv GET_GetMapfv(struct _glapi_table *disp) {
   5422    return (_glptr_GetMapfv) (GET_by_offset(disp, _gloffset_GetMapfv));
   5423 }
   5424 
   5425 static inline void SET_GetMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5426    SET_by_offset(disp, _gloffset_GetMapfv, fn);
   5427 }
   5428 
   5429 typedef void (GLAPIENTRYP _glptr_GetMapiv)(GLenum, GLenum, GLint *);
   5430 #define CALL_GetMapiv(disp, parameters) \
   5431     (* GET_GetMapiv(disp)) parameters
   5432 static inline _glptr_GetMapiv GET_GetMapiv(struct _glapi_table *disp) {
   5433    return (_glptr_GetMapiv) (GET_by_offset(disp, _gloffset_GetMapiv));
   5434 }
   5435 
   5436 static inline void SET_GetMapiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5437    SET_by_offset(disp, _gloffset_GetMapiv, fn);
   5438 }
   5439 
   5440 typedef void (GLAPIENTRYP _glptr_GetMaterialfv)(GLenum, GLenum, GLfloat *);
   5441 #define CALL_GetMaterialfv(disp, parameters) \
   5442     (* GET_GetMaterialfv(disp)) parameters
   5443 static inline _glptr_GetMaterialfv GET_GetMaterialfv(struct _glapi_table *disp) {
   5444    return (_glptr_GetMaterialfv) (GET_by_offset(disp, _gloffset_GetMaterialfv));
   5445 }
   5446 
   5447 static inline void SET_GetMaterialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5448    SET_by_offset(disp, _gloffset_GetMaterialfv, fn);
   5449 }
   5450 
   5451 typedef void (GLAPIENTRYP _glptr_GetMaterialiv)(GLenum, GLenum, GLint *);
   5452 #define CALL_GetMaterialiv(disp, parameters) \
   5453     (* GET_GetMaterialiv(disp)) parameters
   5454 static inline _glptr_GetMaterialiv GET_GetMaterialiv(struct _glapi_table *disp) {
   5455    return (_glptr_GetMaterialiv) (GET_by_offset(disp, _gloffset_GetMaterialiv));
   5456 }
   5457 
   5458 static inline void SET_GetMaterialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5459    SET_by_offset(disp, _gloffset_GetMaterialiv, fn);
   5460 }
   5461 
   5462 typedef void (GLAPIENTRYP _glptr_GetPixelMapfv)(GLenum, GLfloat *);
   5463 #define CALL_GetPixelMapfv(disp, parameters) \
   5464     (* GET_GetPixelMapfv(disp)) parameters
   5465 static inline _glptr_GetPixelMapfv GET_GetPixelMapfv(struct _glapi_table *disp) {
   5466    return (_glptr_GetPixelMapfv) (GET_by_offset(disp, _gloffset_GetPixelMapfv));
   5467 }
   5468 
   5469 static inline void SET_GetPixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
   5470    SET_by_offset(disp, _gloffset_GetPixelMapfv, fn);
   5471 }
   5472 
   5473 typedef void (GLAPIENTRYP _glptr_GetPixelMapuiv)(GLenum, GLuint *);
   5474 #define CALL_GetPixelMapuiv(disp, parameters) \
   5475     (* GET_GetPixelMapuiv(disp)) parameters
   5476 static inline _glptr_GetPixelMapuiv GET_GetPixelMapuiv(struct _glapi_table *disp) {
   5477    return (_glptr_GetPixelMapuiv) (GET_by_offset(disp, _gloffset_GetPixelMapuiv));
   5478 }
   5479 
   5480 static inline void SET_GetPixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint *)) {
   5481    SET_by_offset(disp, _gloffset_GetPixelMapuiv, fn);
   5482 }
   5483 
   5484 typedef void (GLAPIENTRYP _glptr_GetPixelMapusv)(GLenum, GLushort *);
   5485 #define CALL_GetPixelMapusv(disp, parameters) \
   5486     (* GET_GetPixelMapusv(disp)) parameters
   5487 static inline _glptr_GetPixelMapusv GET_GetPixelMapusv(struct _glapi_table *disp) {
   5488    return (_glptr_GetPixelMapusv) (GET_by_offset(disp, _gloffset_GetPixelMapusv));
   5489 }
   5490 
   5491 static inline void SET_GetPixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLushort *)) {
   5492    SET_by_offset(disp, _gloffset_GetPixelMapusv, fn);
   5493 }
   5494 
   5495 typedef void (GLAPIENTRYP _glptr_GetPolygonStipple)(GLubyte *);
   5496 #define CALL_GetPolygonStipple(disp, parameters) \
   5497     (* GET_GetPolygonStipple(disp)) parameters
   5498 static inline _glptr_GetPolygonStipple GET_GetPolygonStipple(struct _glapi_table *disp) {
   5499    return (_glptr_GetPolygonStipple) (GET_by_offset(disp, _gloffset_GetPolygonStipple));
   5500 }
   5501 
   5502 static inline void SET_GetPolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte *)) {
   5503    SET_by_offset(disp, _gloffset_GetPolygonStipple, fn);
   5504 }
   5505 
   5506 typedef const GLubyte * (GLAPIENTRYP _glptr_GetString)(GLenum);
   5507 #define CALL_GetString(disp, parameters) \
   5508     (* GET_GetString(disp)) parameters
   5509 static inline _glptr_GetString GET_GetString(struct _glapi_table *disp) {
   5510    return (_glptr_GetString) (GET_by_offset(disp, _gloffset_GetString));
   5511 }
   5512 
   5513 static inline void SET_GetString(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum)) {
   5514    SET_by_offset(disp, _gloffset_GetString, fn);
   5515 }
   5516 
   5517 typedef void (GLAPIENTRYP _glptr_GetTexEnvfv)(GLenum, GLenum, GLfloat *);
   5518 #define CALL_GetTexEnvfv(disp, parameters) \
   5519     (* GET_GetTexEnvfv(disp)) parameters
   5520 static inline _glptr_GetTexEnvfv GET_GetTexEnvfv(struct _glapi_table *disp) {
   5521    return (_glptr_GetTexEnvfv) (GET_by_offset(disp, _gloffset_GetTexEnvfv));
   5522 }
   5523 
   5524 static inline void SET_GetTexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5525    SET_by_offset(disp, _gloffset_GetTexEnvfv, fn);
   5526 }
   5527 
   5528 typedef void (GLAPIENTRYP _glptr_GetTexEnviv)(GLenum, GLenum, GLint *);
   5529 #define CALL_GetTexEnviv(disp, parameters) \
   5530     (* GET_GetTexEnviv(disp)) parameters
   5531 static inline _glptr_GetTexEnviv GET_GetTexEnviv(struct _glapi_table *disp) {
   5532    return (_glptr_GetTexEnviv) (GET_by_offset(disp, _gloffset_GetTexEnviv));
   5533 }
   5534 
   5535 static inline void SET_GetTexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5536    SET_by_offset(disp, _gloffset_GetTexEnviv, fn);
   5537 }
   5538 
   5539 typedef void (GLAPIENTRYP _glptr_GetTexGendv)(GLenum, GLenum, GLdouble *);
   5540 #define CALL_GetTexGendv(disp, parameters) \
   5541     (* GET_GetTexGendv(disp)) parameters
   5542 static inline _glptr_GetTexGendv GET_GetTexGendv(struct _glapi_table *disp) {
   5543    return (_glptr_GetTexGendv) (GET_by_offset(disp, _gloffset_GetTexGendv));
   5544 }
   5545 
   5546 static inline void SET_GetTexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
   5547    SET_by_offset(disp, _gloffset_GetTexGendv, fn);
   5548 }
   5549 
   5550 typedef void (GLAPIENTRYP _glptr_GetTexGenfv)(GLenum, GLenum, GLfloat *);
   5551 #define CALL_GetTexGenfv(disp, parameters) \
   5552     (* GET_GetTexGenfv(disp)) parameters
   5553 static inline _glptr_GetTexGenfv GET_GetTexGenfv(struct _glapi_table *disp) {
   5554    return (_glptr_GetTexGenfv) (GET_by_offset(disp, _gloffset_GetTexGenfv));
   5555 }
   5556 
   5557 static inline void SET_GetTexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5558    SET_by_offset(disp, _gloffset_GetTexGenfv, fn);
   5559 }
   5560 
   5561 typedef void (GLAPIENTRYP _glptr_GetTexGeniv)(GLenum, GLenum, GLint *);
   5562 #define CALL_GetTexGeniv(disp, parameters) \
   5563     (* GET_GetTexGeniv(disp)) parameters
   5564 static inline _glptr_GetTexGeniv GET_GetTexGeniv(struct _glapi_table *disp) {
   5565    return (_glptr_GetTexGeniv) (GET_by_offset(disp, _gloffset_GetTexGeniv));
   5566 }
   5567 
   5568 static inline void SET_GetTexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5569    SET_by_offset(disp, _gloffset_GetTexGeniv, fn);
   5570 }
   5571 
   5572 typedef void (GLAPIENTRYP _glptr_GetTexImage)(GLenum, GLint, GLenum, GLenum, GLvoid *);
   5573 #define CALL_GetTexImage(disp, parameters) \
   5574     (* GET_GetTexImage(disp)) parameters
   5575 static inline _glptr_GetTexImage GET_GetTexImage(struct _glapi_table *disp) {
   5576    return (_glptr_GetTexImage) (GET_by_offset(disp, _gloffset_GetTexImage));
   5577 }
   5578 
   5579 static inline void SET_GetTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLvoid *)) {
   5580    SET_by_offset(disp, _gloffset_GetTexImage, fn);
   5581 }
   5582 
   5583 typedef void (GLAPIENTRYP _glptr_GetTexParameterfv)(GLenum, GLenum, GLfloat *);
   5584 #define CALL_GetTexParameterfv(disp, parameters) \
   5585     (* GET_GetTexParameterfv(disp)) parameters
   5586 static inline _glptr_GetTexParameterfv GET_GetTexParameterfv(struct _glapi_table *disp) {
   5587    return (_glptr_GetTexParameterfv) (GET_by_offset(disp, _gloffset_GetTexParameterfv));
   5588 }
   5589 
   5590 static inline void SET_GetTexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   5591    SET_by_offset(disp, _gloffset_GetTexParameterfv, fn);
   5592 }
   5593 
   5594 typedef void (GLAPIENTRYP _glptr_GetTexParameteriv)(GLenum, GLenum, GLint *);
   5595 #define CALL_GetTexParameteriv(disp, parameters) \
   5596     (* GET_GetTexParameteriv(disp)) parameters
   5597 static inline _glptr_GetTexParameteriv GET_GetTexParameteriv(struct _glapi_table *disp) {
   5598    return (_glptr_GetTexParameteriv) (GET_by_offset(disp, _gloffset_GetTexParameteriv));
   5599 }
   5600 
   5601 static inline void SET_GetTexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   5602    SET_by_offset(disp, _gloffset_GetTexParameteriv, fn);
   5603 }
   5604 
   5605 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *);
   5606 #define CALL_GetTexLevelParameterfv(disp, parameters) \
   5607     (* GET_GetTexLevelParameterfv(disp)) parameters
   5608 static inline _glptr_GetTexLevelParameterfv GET_GetTexLevelParameterfv(struct _glapi_table *disp) {
   5609    return (_glptr_GetTexLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTexLevelParameterfv));
   5610 }
   5611 
   5612 static inline void SET_GetTexLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLfloat *)) {
   5613    SET_by_offset(disp, _gloffset_GetTexLevelParameterfv, fn);
   5614 }
   5615 
   5616 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *);
   5617 #define CALL_GetTexLevelParameteriv(disp, parameters) \
   5618     (* GET_GetTexLevelParameteriv(disp)) parameters
   5619 static inline _glptr_GetTexLevelParameteriv GET_GetTexLevelParameteriv(struct _glapi_table *disp) {
   5620    return (_glptr_GetTexLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTexLevelParameteriv));
   5621 }
   5622 
   5623 static inline void SET_GetTexLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint *)) {
   5624    SET_by_offset(disp, _gloffset_GetTexLevelParameteriv, fn);
   5625 }
   5626 
   5627 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabled)(GLenum);
   5628 #define CALL_IsEnabled(disp, parameters) \
   5629     (* GET_IsEnabled(disp)) parameters
   5630 static inline _glptr_IsEnabled GET_IsEnabled(struct _glapi_table *disp) {
   5631    return (_glptr_IsEnabled) (GET_by_offset(disp, _gloffset_IsEnabled));
   5632 }
   5633 
   5634 static inline void SET_IsEnabled(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
   5635    SET_by_offset(disp, _gloffset_IsEnabled, fn);
   5636 }
   5637 
   5638 typedef GLboolean (GLAPIENTRYP _glptr_IsList)(GLuint);
   5639 #define CALL_IsList(disp, parameters) \
   5640     (* GET_IsList(disp)) parameters
   5641 static inline _glptr_IsList GET_IsList(struct _glapi_table *disp) {
   5642    return (_glptr_IsList) (GET_by_offset(disp, _gloffset_IsList));
   5643 }
   5644 
   5645 static inline void SET_IsList(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   5646    SET_by_offset(disp, _gloffset_IsList, fn);
   5647 }
   5648 
   5649 typedef void (GLAPIENTRYP _glptr_DepthRange)(GLclampd, GLclampd);
   5650 #define CALL_DepthRange(disp, parameters) \
   5651     (* GET_DepthRange(disp)) parameters
   5652 static inline _glptr_DepthRange GET_DepthRange(struct _glapi_table *disp) {
   5653    return (_glptr_DepthRange) (GET_by_offset(disp, _gloffset_DepthRange));
   5654 }
   5655 
   5656 static inline void SET_DepthRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
   5657    SET_by_offset(disp, _gloffset_DepthRange, fn);
   5658 }
   5659 
   5660 typedef void (GLAPIENTRYP _glptr_Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
   5661 #define CALL_Frustum(disp, parameters) \
   5662     (* GET_Frustum(disp)) parameters
   5663 static inline _glptr_Frustum GET_Frustum(struct _glapi_table *disp) {
   5664    return (_glptr_Frustum) (GET_by_offset(disp, _gloffset_Frustum));
   5665 }
   5666 
   5667 static inline void SET_Frustum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
   5668    SET_by_offset(disp, _gloffset_Frustum, fn);
   5669 }
   5670 
   5671 typedef void (GLAPIENTRYP _glptr_LoadIdentity)(void);
   5672 #define CALL_LoadIdentity(disp, parameters) \
   5673     (* GET_LoadIdentity(disp)) parameters
   5674 static inline _glptr_LoadIdentity GET_LoadIdentity(struct _glapi_table *disp) {
   5675    return (_glptr_LoadIdentity) (GET_by_offset(disp, _gloffset_LoadIdentity));
   5676 }
   5677 
   5678 static inline void SET_LoadIdentity(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   5679    SET_by_offset(disp, _gloffset_LoadIdentity, fn);
   5680 }
   5681 
   5682 typedef void (GLAPIENTRYP _glptr_LoadMatrixf)(const GLfloat *);
   5683 #define CALL_LoadMatrixf(disp, parameters) \
   5684     (* GET_LoadMatrixf(disp)) parameters
   5685 static inline _glptr_LoadMatrixf GET_LoadMatrixf(struct _glapi_table *disp) {
   5686    return (_glptr_LoadMatrixf) (GET_by_offset(disp, _gloffset_LoadMatrixf));
   5687 }
   5688 
   5689 static inline void SET_LoadMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   5690    SET_by_offset(disp, _gloffset_LoadMatrixf, fn);
   5691 }
   5692 
   5693 typedef void (GLAPIENTRYP _glptr_LoadMatrixd)(const GLdouble *);
   5694 #define CALL_LoadMatrixd(disp, parameters) \
   5695     (* GET_LoadMatrixd(disp)) parameters
   5696 static inline _glptr_LoadMatrixd GET_LoadMatrixd(struct _glapi_table *disp) {
   5697    return (_glptr_LoadMatrixd) (GET_by_offset(disp, _gloffset_LoadMatrixd));
   5698 }
   5699 
   5700 static inline void SET_LoadMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   5701    SET_by_offset(disp, _gloffset_LoadMatrixd, fn);
   5702 }
   5703 
   5704 typedef void (GLAPIENTRYP _glptr_MatrixMode)(GLenum);
   5705 #define CALL_MatrixMode(disp, parameters) \
   5706     (* GET_MatrixMode(disp)) parameters
   5707 static inline _glptr_MatrixMode GET_MatrixMode(struct _glapi_table *disp) {
   5708    return (_glptr_MatrixMode) (GET_by_offset(disp, _gloffset_MatrixMode));
   5709 }
   5710 
   5711 static inline void SET_MatrixMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5712    SET_by_offset(disp, _gloffset_MatrixMode, fn);
   5713 }
   5714 
   5715 typedef void (GLAPIENTRYP _glptr_MultMatrixf)(const GLfloat *);
   5716 #define CALL_MultMatrixf(disp, parameters) \
   5717     (* GET_MultMatrixf(disp)) parameters
   5718 static inline _glptr_MultMatrixf GET_MultMatrixf(struct _glapi_table *disp) {
   5719    return (_glptr_MultMatrixf) (GET_by_offset(disp, _gloffset_MultMatrixf));
   5720 }
   5721 
   5722 static inline void SET_MultMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   5723    SET_by_offset(disp, _gloffset_MultMatrixf, fn);
   5724 }
   5725 
   5726 typedef void (GLAPIENTRYP _glptr_MultMatrixd)(const GLdouble *);
   5727 #define CALL_MultMatrixd(disp, parameters) \
   5728     (* GET_MultMatrixd(disp)) parameters
   5729 static inline _glptr_MultMatrixd GET_MultMatrixd(struct _glapi_table *disp) {
   5730    return (_glptr_MultMatrixd) (GET_by_offset(disp, _gloffset_MultMatrixd));
   5731 }
   5732 
   5733 static inline void SET_MultMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   5734    SET_by_offset(disp, _gloffset_MultMatrixd, fn);
   5735 }
   5736 
   5737 typedef void (GLAPIENTRYP _glptr_Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
   5738 #define CALL_Ortho(disp, parameters) \
   5739     (* GET_Ortho(disp)) parameters
   5740 static inline _glptr_Ortho GET_Ortho(struct _glapi_table *disp) {
   5741    return (_glptr_Ortho) (GET_by_offset(disp, _gloffset_Ortho));
   5742 }
   5743 
   5744 static inline void SET_Ortho(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
   5745    SET_by_offset(disp, _gloffset_Ortho, fn);
   5746 }
   5747 
   5748 typedef void (GLAPIENTRYP _glptr_PopMatrix)(void);
   5749 #define CALL_PopMatrix(disp, parameters) \
   5750     (* GET_PopMatrix(disp)) parameters
   5751 static inline _glptr_PopMatrix GET_PopMatrix(struct _glapi_table *disp) {
   5752    return (_glptr_PopMatrix) (GET_by_offset(disp, _gloffset_PopMatrix));
   5753 }
   5754 
   5755 static inline void SET_PopMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   5756    SET_by_offset(disp, _gloffset_PopMatrix, fn);
   5757 }
   5758 
   5759 typedef void (GLAPIENTRYP _glptr_PushMatrix)(void);
   5760 #define CALL_PushMatrix(disp, parameters) \
   5761     (* GET_PushMatrix(disp)) parameters
   5762 static inline _glptr_PushMatrix GET_PushMatrix(struct _glapi_table *disp) {
   5763    return (_glptr_PushMatrix) (GET_by_offset(disp, _gloffset_PushMatrix));
   5764 }
   5765 
   5766 static inline void SET_PushMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   5767    SET_by_offset(disp, _gloffset_PushMatrix, fn);
   5768 }
   5769 
   5770 typedef void (GLAPIENTRYP _glptr_Rotated)(GLdouble, GLdouble, GLdouble, GLdouble);
   5771 #define CALL_Rotated(disp, parameters) \
   5772     (* GET_Rotated(disp)) parameters
   5773 static inline _glptr_Rotated GET_Rotated(struct _glapi_table *disp) {
   5774    return (_glptr_Rotated) (GET_by_offset(disp, _gloffset_Rotated));
   5775 }
   5776 
   5777 static inline void SET_Rotated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   5778    SET_by_offset(disp, _gloffset_Rotated, fn);
   5779 }
   5780 
   5781 typedef void (GLAPIENTRYP _glptr_Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat);
   5782 #define CALL_Rotatef(disp, parameters) \
   5783     (* GET_Rotatef(disp)) parameters
   5784 static inline _glptr_Rotatef GET_Rotatef(struct _glapi_table *disp) {
   5785    return (_glptr_Rotatef) (GET_by_offset(disp, _gloffset_Rotatef));
   5786 }
   5787 
   5788 static inline void SET_Rotatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   5789    SET_by_offset(disp, _gloffset_Rotatef, fn);
   5790 }
   5791 
   5792 typedef void (GLAPIENTRYP _glptr_Scaled)(GLdouble, GLdouble, GLdouble);
   5793 #define CALL_Scaled(disp, parameters) \
   5794     (* GET_Scaled(disp)) parameters
   5795 static inline _glptr_Scaled GET_Scaled(struct _glapi_table *disp) {
   5796    return (_glptr_Scaled) (GET_by_offset(disp, _gloffset_Scaled));
   5797 }
   5798 
   5799 static inline void SET_Scaled(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   5800    SET_by_offset(disp, _gloffset_Scaled, fn);
   5801 }
   5802 
   5803 typedef void (GLAPIENTRYP _glptr_Scalef)(GLfloat, GLfloat, GLfloat);
   5804 #define CALL_Scalef(disp, parameters) \
   5805     (* GET_Scalef(disp)) parameters
   5806 static inline _glptr_Scalef GET_Scalef(struct _glapi_table *disp) {
   5807    return (_glptr_Scalef) (GET_by_offset(disp, _gloffset_Scalef));
   5808 }
   5809 
   5810 static inline void SET_Scalef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   5811    SET_by_offset(disp, _gloffset_Scalef, fn);
   5812 }
   5813 
   5814 typedef void (GLAPIENTRYP _glptr_Translated)(GLdouble, GLdouble, GLdouble);
   5815 #define CALL_Translated(disp, parameters) \
   5816     (* GET_Translated(disp)) parameters
   5817 static inline _glptr_Translated GET_Translated(struct _glapi_table *disp) {
   5818    return (_glptr_Translated) (GET_by_offset(disp, _gloffset_Translated));
   5819 }
   5820 
   5821 static inline void SET_Translated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   5822    SET_by_offset(disp, _gloffset_Translated, fn);
   5823 }
   5824 
   5825 typedef void (GLAPIENTRYP _glptr_Translatef)(GLfloat, GLfloat, GLfloat);
   5826 #define CALL_Translatef(disp, parameters) \
   5827     (* GET_Translatef(disp)) parameters
   5828 static inline _glptr_Translatef GET_Translatef(struct _glapi_table *disp) {
   5829    return (_glptr_Translatef) (GET_by_offset(disp, _gloffset_Translatef));
   5830 }
   5831 
   5832 static inline void SET_Translatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   5833    SET_by_offset(disp, _gloffset_Translatef, fn);
   5834 }
   5835 
   5836 typedef void (GLAPIENTRYP _glptr_Viewport)(GLint, GLint, GLsizei, GLsizei);
   5837 #define CALL_Viewport(disp, parameters) \
   5838     (* GET_Viewport(disp)) parameters
   5839 static inline _glptr_Viewport GET_Viewport(struct _glapi_table *disp) {
   5840    return (_glptr_Viewport) (GET_by_offset(disp, _gloffset_Viewport));
   5841 }
   5842 
   5843 static inline void SET_Viewport(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
   5844    SET_by_offset(disp, _gloffset_Viewport, fn);
   5845 }
   5846 
   5847 typedef void (GLAPIENTRYP _glptr_ArrayElement)(GLint);
   5848 #define CALL_ArrayElement(disp, parameters) \
   5849     (* GET_ArrayElement(disp)) parameters
   5850 static inline _glptr_ArrayElement GET_ArrayElement(struct _glapi_table *disp) {
   5851    return (_glptr_ArrayElement) (GET_by_offset(disp, _gloffset_ArrayElement));
   5852 }
   5853 
   5854 static inline void SET_ArrayElement(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
   5855    SET_by_offset(disp, _gloffset_ArrayElement, fn);
   5856 }
   5857 
   5858 typedef void (GLAPIENTRYP _glptr_BindTexture)(GLenum, GLuint);
   5859 #define CALL_BindTexture(disp, parameters) \
   5860     (* GET_BindTexture(disp)) parameters
   5861 static inline _glptr_BindTexture GET_BindTexture(struct _glapi_table *disp) {
   5862    return (_glptr_BindTexture) (GET_by_offset(disp, _gloffset_BindTexture));
   5863 }
   5864 
   5865 static inline void SET_BindTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   5866    SET_by_offset(disp, _gloffset_BindTexture, fn);
   5867 }
   5868 
   5869 typedef void (GLAPIENTRYP _glptr_ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   5870 #define CALL_ColorPointer(disp, parameters) \
   5871     (* GET_ColorPointer(disp)) parameters
   5872 static inline _glptr_ColorPointer GET_ColorPointer(struct _glapi_table *disp) {
   5873    return (_glptr_ColorPointer) (GET_by_offset(disp, _gloffset_ColorPointer));
   5874 }
   5875 
   5876 static inline void SET_ColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   5877    SET_by_offset(disp, _gloffset_ColorPointer, fn);
   5878 }
   5879 
   5880 typedef void (GLAPIENTRYP _glptr_DisableClientState)(GLenum);
   5881 #define CALL_DisableClientState(disp, parameters) \
   5882     (* GET_DisableClientState(disp)) parameters
   5883 static inline _glptr_DisableClientState GET_DisableClientState(struct _glapi_table *disp) {
   5884    return (_glptr_DisableClientState) (GET_by_offset(disp, _gloffset_DisableClientState));
   5885 }
   5886 
   5887 static inline void SET_DisableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5888    SET_by_offset(disp, _gloffset_DisableClientState, fn);
   5889 }
   5890 
   5891 typedef void (GLAPIENTRYP _glptr_DrawArrays)(GLenum, GLint, GLsizei);
   5892 #define CALL_DrawArrays(disp, parameters) \
   5893     (* GET_DrawArrays(disp)) parameters
   5894 static inline _glptr_DrawArrays GET_DrawArrays(struct _glapi_table *disp) {
   5895    return (_glptr_DrawArrays) (GET_by_offset(disp, _gloffset_DrawArrays));
   5896 }
   5897 
   5898 static inline void SET_DrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei)) {
   5899    SET_by_offset(disp, _gloffset_DrawArrays, fn);
   5900 }
   5901 
   5902 typedef void (GLAPIENTRYP _glptr_DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *);
   5903 #define CALL_DrawElements(disp, parameters) \
   5904     (* GET_DrawElements(disp)) parameters
   5905 static inline _glptr_DrawElements GET_DrawElements(struct _glapi_table *disp) {
   5906    return (_glptr_DrawElements) (GET_by_offset(disp, _gloffset_DrawElements));
   5907 }
   5908 
   5909 static inline void SET_DrawElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *)) {
   5910    SET_by_offset(disp, _gloffset_DrawElements, fn);
   5911 }
   5912 
   5913 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointer)(GLsizei, const GLvoid *);
   5914 #define CALL_EdgeFlagPointer(disp, parameters) \
   5915     (* GET_EdgeFlagPointer(disp)) parameters
   5916 static inline _glptr_EdgeFlagPointer GET_EdgeFlagPointer(struct _glapi_table *disp) {
   5917    return (_glptr_EdgeFlagPointer) (GET_by_offset(disp, _gloffset_EdgeFlagPointer));
   5918 }
   5919 
   5920 static inline void SET_EdgeFlagPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
   5921    SET_by_offset(disp, _gloffset_EdgeFlagPointer, fn);
   5922 }
   5923 
   5924 typedef void (GLAPIENTRYP _glptr_EnableClientState)(GLenum);
   5925 #define CALL_EnableClientState(disp, parameters) \
   5926     (* GET_EnableClientState(disp)) parameters
   5927 static inline _glptr_EnableClientState GET_EnableClientState(struct _glapi_table *disp) {
   5928    return (_glptr_EnableClientState) (GET_by_offset(disp, _gloffset_EnableClientState));
   5929 }
   5930 
   5931 static inline void SET_EnableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   5932    SET_by_offset(disp, _gloffset_EnableClientState, fn);
   5933 }
   5934 
   5935 typedef void (GLAPIENTRYP _glptr_IndexPointer)(GLenum, GLsizei, const GLvoid *);
   5936 #define CALL_IndexPointer(disp, parameters) \
   5937     (* GET_IndexPointer(disp)) parameters
   5938 static inline _glptr_IndexPointer GET_IndexPointer(struct _glapi_table *disp) {
   5939    return (_glptr_IndexPointer) (GET_by_offset(disp, _gloffset_IndexPointer));
   5940 }
   5941 
   5942 static inline void SET_IndexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   5943    SET_by_offset(disp, _gloffset_IndexPointer, fn);
   5944 }
   5945 
   5946 typedef void (GLAPIENTRYP _glptr_Indexub)(GLubyte);
   5947 #define CALL_Indexub(disp, parameters) \
   5948     (* GET_Indexub(disp)) parameters
   5949 static inline _glptr_Indexub GET_Indexub(struct _glapi_table *disp) {
   5950    return (_glptr_Indexub) (GET_by_offset(disp, _gloffset_Indexub));
   5951 }
   5952 
   5953 static inline void SET_Indexub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte)) {
   5954    SET_by_offset(disp, _gloffset_Indexub, fn);
   5955 }
   5956 
   5957 typedef void (GLAPIENTRYP _glptr_Indexubv)(const GLubyte *);
   5958 #define CALL_Indexubv(disp, parameters) \
   5959     (* GET_Indexubv(disp)) parameters
   5960 static inline _glptr_Indexubv GET_Indexubv(struct _glapi_table *disp) {
   5961    return (_glptr_Indexubv) (GET_by_offset(disp, _gloffset_Indexubv));
   5962 }
   5963 
   5964 static inline void SET_Indexubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   5965    SET_by_offset(disp, _gloffset_Indexubv, fn);
   5966 }
   5967 
   5968 typedef void (GLAPIENTRYP _glptr_InterleavedArrays)(GLenum, GLsizei, const GLvoid *);
   5969 #define CALL_InterleavedArrays(disp, parameters) \
   5970     (* GET_InterleavedArrays(disp)) parameters
   5971 static inline _glptr_InterleavedArrays GET_InterleavedArrays(struct _glapi_table *disp) {
   5972    return (_glptr_InterleavedArrays) (GET_by_offset(disp, _gloffset_InterleavedArrays));
   5973 }
   5974 
   5975 static inline void SET_InterleavedArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   5976    SET_by_offset(disp, _gloffset_InterleavedArrays, fn);
   5977 }
   5978 
   5979 typedef void (GLAPIENTRYP _glptr_NormalPointer)(GLenum, GLsizei, const GLvoid *);
   5980 #define CALL_NormalPointer(disp, parameters) \
   5981     (* GET_NormalPointer(disp)) parameters
   5982 static inline _glptr_NormalPointer GET_NormalPointer(struct _glapi_table *disp) {
   5983    return (_glptr_NormalPointer) (GET_by_offset(disp, _gloffset_NormalPointer));
   5984 }
   5985 
   5986 static inline void SET_NormalPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   5987    SET_by_offset(disp, _gloffset_NormalPointer, fn);
   5988 }
   5989 
   5990 typedef void (GLAPIENTRYP _glptr_PolygonOffset)(GLfloat, GLfloat);
   5991 #define CALL_PolygonOffset(disp, parameters) \
   5992     (* GET_PolygonOffset(disp)) parameters
   5993 static inline _glptr_PolygonOffset GET_PolygonOffset(struct _glapi_table *disp) {
   5994    return (_glptr_PolygonOffset) (GET_by_offset(disp, _gloffset_PolygonOffset));
   5995 }
   5996 
   5997 static inline void SET_PolygonOffset(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   5998    SET_by_offset(disp, _gloffset_PolygonOffset, fn);
   5999 }
   6000 
   6001 typedef void (GLAPIENTRYP _glptr_TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   6002 #define CALL_TexCoordPointer(disp, parameters) \
   6003     (* GET_TexCoordPointer(disp)) parameters
   6004 static inline _glptr_TexCoordPointer GET_TexCoordPointer(struct _glapi_table *disp) {
   6005    return (_glptr_TexCoordPointer) (GET_by_offset(disp, _gloffset_TexCoordPointer));
   6006 }
   6007 
   6008 static inline void SET_TexCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   6009    SET_by_offset(disp, _gloffset_TexCoordPointer, fn);
   6010 }
   6011 
   6012 typedef void (GLAPIENTRYP _glptr_VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   6013 #define CALL_VertexPointer(disp, parameters) \
   6014     (* GET_VertexPointer(disp)) parameters
   6015 static inline _glptr_VertexPointer GET_VertexPointer(struct _glapi_table *disp) {
   6016    return (_glptr_VertexPointer) (GET_by_offset(disp, _gloffset_VertexPointer));
   6017 }
   6018 
   6019 static inline void SET_VertexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   6020    SET_by_offset(disp, _gloffset_VertexPointer, fn);
   6021 }
   6022 
   6023 typedef GLboolean (GLAPIENTRYP _glptr_AreTexturesResident)(GLsizei, const GLuint *, GLboolean *);
   6024 #define CALL_AreTexturesResident(disp, parameters) \
   6025     (* GET_AreTexturesResident(disp)) parameters
   6026 static inline _glptr_AreTexturesResident GET_AreTexturesResident(struct _glapi_table *disp) {
   6027    return (_glptr_AreTexturesResident) (GET_by_offset(disp, _gloffset_AreTexturesResident));
   6028 }
   6029 
   6030 static inline void SET_AreTexturesResident(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
   6031    SET_by_offset(disp, _gloffset_AreTexturesResident, fn);
   6032 }
   6033 
   6034 typedef void (GLAPIENTRYP _glptr_CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
   6035 #define CALL_CopyTexImage1D(disp, parameters) \
   6036     (* GET_CopyTexImage1D(disp)) parameters
   6037 static inline _glptr_CopyTexImage1D GET_CopyTexImage1D(struct _glapi_table *disp) {
   6038    return (_glptr_CopyTexImage1D) (GET_by_offset(disp, _gloffset_CopyTexImage1D));
   6039 }
   6040 
   6041 static inline void SET_CopyTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint)) {
   6042    SET_by_offset(disp, _gloffset_CopyTexImage1D, fn);
   6043 }
   6044 
   6045 typedef void (GLAPIENTRYP _glptr_CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
   6046 #define CALL_CopyTexImage2D(disp, parameters) \
   6047     (* GET_CopyTexImage2D(disp)) parameters
   6048 static inline _glptr_CopyTexImage2D GET_CopyTexImage2D(struct _glapi_table *disp) {
   6049    return (_glptr_CopyTexImage2D) (GET_by_offset(disp, _gloffset_CopyTexImage2D));
   6050 }
   6051 
   6052 static inline void SET_CopyTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint)) {
   6053    SET_by_offset(disp, _gloffset_CopyTexImage2D, fn);
   6054 }
   6055 
   6056 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
   6057 #define CALL_CopyTexSubImage1D(disp, parameters) \
   6058     (* GET_CopyTexSubImage1D(disp)) parameters
   6059 static inline _glptr_CopyTexSubImage1D GET_CopyTexSubImage1D(struct _glapi_table *disp) {
   6060    return (_glptr_CopyTexSubImage1D) (GET_by_offset(disp, _gloffset_CopyTexSubImage1D));
   6061 }
   6062 
   6063 static inline void SET_CopyTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei)) {
   6064    SET_by_offset(disp, _gloffset_CopyTexSubImage1D, fn);
   6065 }
   6066 
   6067 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
   6068 #define CALL_CopyTexSubImage2D(disp, parameters) \
   6069     (* GET_CopyTexSubImage2D(disp)) parameters
   6070 static inline _glptr_CopyTexSubImage2D GET_CopyTexSubImage2D(struct _glapi_table *disp) {
   6071    return (_glptr_CopyTexSubImage2D) (GET_by_offset(disp, _gloffset_CopyTexSubImage2D));
   6072 }
   6073 
   6074 static inline void SET_CopyTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
   6075    SET_by_offset(disp, _gloffset_CopyTexSubImage2D, fn);
   6076 }
   6077 
   6078 typedef void (GLAPIENTRYP _glptr_DeleteTextures)(GLsizei, const GLuint *);
   6079 #define CALL_DeleteTextures(disp, parameters) \
   6080     (* GET_DeleteTextures(disp)) parameters
   6081 static inline _glptr_DeleteTextures GET_DeleteTextures(struct _glapi_table *disp) {
   6082    return (_glptr_DeleteTextures) (GET_by_offset(disp, _gloffset_DeleteTextures));
   6083 }
   6084 
   6085 static inline void SET_DeleteTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   6086    SET_by_offset(disp, _gloffset_DeleteTextures, fn);
   6087 }
   6088 
   6089 typedef void (GLAPIENTRYP _glptr_GenTextures)(GLsizei, GLuint *);
   6090 #define CALL_GenTextures(disp, parameters) \
   6091     (* GET_GenTextures(disp)) parameters
   6092 static inline _glptr_GenTextures GET_GenTextures(struct _glapi_table *disp) {
   6093    return (_glptr_GenTextures) (GET_by_offset(disp, _gloffset_GenTextures));
   6094 }
   6095 
   6096 static inline void SET_GenTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   6097    SET_by_offset(disp, _gloffset_GenTextures, fn);
   6098 }
   6099 
   6100 typedef void (GLAPIENTRYP _glptr_GetPointerv)(GLenum, GLvoid **);
   6101 #define CALL_GetPointerv(disp, parameters) \
   6102     (* GET_GetPointerv(disp)) parameters
   6103 static inline _glptr_GetPointerv GET_GetPointerv(struct _glapi_table *disp) {
   6104    return (_glptr_GetPointerv) (GET_by_offset(disp, _gloffset_GetPointerv));
   6105 }
   6106 
   6107 static inline void SET_GetPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid **)) {
   6108    SET_by_offset(disp, _gloffset_GetPointerv, fn);
   6109 }
   6110 
   6111 typedef GLboolean (GLAPIENTRYP _glptr_IsTexture)(GLuint);
   6112 #define CALL_IsTexture(disp, parameters) \
   6113     (* GET_IsTexture(disp)) parameters
   6114 static inline _glptr_IsTexture GET_IsTexture(struct _glapi_table *disp) {
   6115    return (_glptr_IsTexture) (GET_by_offset(disp, _gloffset_IsTexture));
   6116 }
   6117 
   6118 static inline void SET_IsTexture(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   6119    SET_by_offset(disp, _gloffset_IsTexture, fn);
   6120 }
   6121 
   6122 typedef void (GLAPIENTRYP _glptr_PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *);
   6123 #define CALL_PrioritizeTextures(disp, parameters) \
   6124     (* GET_PrioritizeTextures(disp)) parameters
   6125 static inline _glptr_PrioritizeTextures GET_PrioritizeTextures(struct _glapi_table *disp) {
   6126    return (_glptr_PrioritizeTextures) (GET_by_offset(disp, _gloffset_PrioritizeTextures));
   6127 }
   6128 
   6129 static inline void SET_PrioritizeTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, const GLclampf *)) {
   6130    SET_by_offset(disp, _gloffset_PrioritizeTextures, fn);
   6131 }
   6132 
   6133 typedef void (GLAPIENTRYP _glptr_TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
   6134 #define CALL_TexSubImage1D(disp, parameters) \
   6135     (* GET_TexSubImage1D(disp)) parameters
   6136 static inline _glptr_TexSubImage1D GET_TexSubImage1D(struct _glapi_table *disp) {
   6137    return (_glptr_TexSubImage1D) (GET_by_offset(disp, _gloffset_TexSubImage1D));
   6138 }
   6139 
   6140 static inline void SET_TexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6141    SET_by_offset(disp, _gloffset_TexSubImage1D, fn);
   6142 }
   6143 
   6144 typedef void (GLAPIENTRYP _glptr_TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6145 #define CALL_TexSubImage2D(disp, parameters) \
   6146     (* GET_TexSubImage2D(disp)) parameters
   6147 static inline _glptr_TexSubImage2D GET_TexSubImage2D(struct _glapi_table *disp) {
   6148    return (_glptr_TexSubImage2D) (GET_by_offset(disp, _gloffset_TexSubImage2D));
   6149 }
   6150 
   6151 static inline void SET_TexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6152    SET_by_offset(disp, _gloffset_TexSubImage2D, fn);
   6153 }
   6154 
   6155 typedef void (GLAPIENTRYP _glptr_PopClientAttrib)(void);
   6156 #define CALL_PopClientAttrib(disp, parameters) \
   6157     (* GET_PopClientAttrib(disp)) parameters
   6158 static inline _glptr_PopClientAttrib GET_PopClientAttrib(struct _glapi_table *disp) {
   6159    return (_glptr_PopClientAttrib) (GET_by_offset(disp, _gloffset_PopClientAttrib));
   6160 }
   6161 
   6162 static inline void SET_PopClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   6163    SET_by_offset(disp, _gloffset_PopClientAttrib, fn);
   6164 }
   6165 
   6166 typedef void (GLAPIENTRYP _glptr_PushClientAttrib)(GLbitfield);
   6167 #define CALL_PushClientAttrib(disp, parameters) \
   6168     (* GET_PushClientAttrib(disp)) parameters
   6169 static inline _glptr_PushClientAttrib GET_PushClientAttrib(struct _glapi_table *disp) {
   6170    return (_glptr_PushClientAttrib) (GET_by_offset(disp, _gloffset_PushClientAttrib));
   6171 }
   6172 
   6173 static inline void SET_PushClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   6174    SET_by_offset(disp, _gloffset_PushClientAttrib, fn);
   6175 }
   6176 
   6177 typedef void (GLAPIENTRYP _glptr_BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf);
   6178 #define CALL_BlendColor(disp, parameters) \
   6179     (* GET_BlendColor(disp)) parameters
   6180 static inline _glptr_BlendColor GET_BlendColor(struct _glapi_table *disp) {
   6181    return (_glptr_BlendColor) (GET_by_offset(disp, _gloffset_BlendColor));
   6182 }
   6183 
   6184 static inline void SET_BlendColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
   6185    SET_by_offset(disp, _gloffset_BlendColor, fn);
   6186 }
   6187 
   6188 typedef void (GLAPIENTRYP _glptr_BlendEquation)(GLenum);
   6189 #define CALL_BlendEquation(disp, parameters) \
   6190     (* GET_BlendEquation(disp)) parameters
   6191 static inline _glptr_BlendEquation GET_BlendEquation(struct _glapi_table *disp) {
   6192    return (_glptr_BlendEquation) (GET_by_offset(disp, _gloffset_BlendEquation));
   6193 }
   6194 
   6195 static inline void SET_BlendEquation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6196    SET_by_offset(disp, _gloffset_BlendEquation, fn);
   6197 }
   6198 
   6199 typedef void (GLAPIENTRYP _glptr_DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
   6200 #define CALL_DrawRangeElements(disp, parameters) \
   6201     (* GET_DrawRangeElements(disp)) parameters
   6202 static inline _glptr_DrawRangeElements GET_DrawRangeElements(struct _glapi_table *disp) {
   6203    return (_glptr_DrawRangeElements) (GET_by_offset(disp, _gloffset_DrawRangeElements));
   6204 }
   6205 
   6206 static inline void SET_DrawRangeElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *)) {
   6207    SET_by_offset(disp, _gloffset_DrawRangeElements, fn);
   6208 }
   6209 
   6210 typedef void (GLAPIENTRYP _glptr_ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
   6211 #define CALL_ColorTable(disp, parameters) \
   6212     (* GET_ColorTable(disp)) parameters
   6213 static inline _glptr_ColorTable GET_ColorTable(struct _glapi_table *disp) {
   6214    return (_glptr_ColorTable) (GET_by_offset(disp, _gloffset_ColorTable));
   6215 }
   6216 
   6217 static inline void SET_ColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6218    SET_by_offset(disp, _gloffset_ColorTable, fn);
   6219 }
   6220 
   6221 typedef void (GLAPIENTRYP _glptr_ColorTableParameterfv)(GLenum, GLenum, const GLfloat *);
   6222 #define CALL_ColorTableParameterfv(disp, parameters) \
   6223     (* GET_ColorTableParameterfv(disp)) parameters
   6224 static inline _glptr_ColorTableParameterfv GET_ColorTableParameterfv(struct _glapi_table *disp) {
   6225    return (_glptr_ColorTableParameterfv) (GET_by_offset(disp, _gloffset_ColorTableParameterfv));
   6226 }
   6227 
   6228 static inline void SET_ColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   6229    SET_by_offset(disp, _gloffset_ColorTableParameterfv, fn);
   6230 }
   6231 
   6232 typedef void (GLAPIENTRYP _glptr_ColorTableParameteriv)(GLenum, GLenum, const GLint *);
   6233 #define CALL_ColorTableParameteriv(disp, parameters) \
   6234     (* GET_ColorTableParameteriv(disp)) parameters
   6235 static inline _glptr_ColorTableParameteriv GET_ColorTableParameteriv(struct _glapi_table *disp) {
   6236    return (_glptr_ColorTableParameteriv) (GET_by_offset(disp, _gloffset_ColorTableParameteriv));
   6237 }
   6238 
   6239 static inline void SET_ColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   6240    SET_by_offset(disp, _gloffset_ColorTableParameteriv, fn);
   6241 }
   6242 
   6243 typedef void (GLAPIENTRYP _glptr_CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei);
   6244 #define CALL_CopyColorTable(disp, parameters) \
   6245     (* GET_CopyColorTable(disp)) parameters
   6246 static inline _glptr_CopyColorTable GET_CopyColorTable(struct _glapi_table *disp) {
   6247    return (_glptr_CopyColorTable) (GET_by_offset(disp, _gloffset_CopyColorTable));
   6248 }
   6249 
   6250 static inline void SET_CopyColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
   6251    SET_by_offset(disp, _gloffset_CopyColorTable, fn);
   6252 }
   6253 
   6254 typedef void (GLAPIENTRYP _glptr_GetColorTable)(GLenum, GLenum, GLenum, GLvoid *);
   6255 #define CALL_GetColorTable(disp, parameters) \
   6256     (* GET_GetColorTable(disp)) parameters
   6257 static inline _glptr_GetColorTable GET_GetColorTable(struct _glapi_table *disp) {
   6258    return (_glptr_GetColorTable) (GET_by_offset(disp, _gloffset_GetColorTable));
   6259 }
   6260 
   6261 static inline void SET_GetColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
   6262    SET_by_offset(disp, _gloffset_GetColorTable, fn);
   6263 }
   6264 
   6265 typedef void (GLAPIENTRYP _glptr_GetColorTableParameterfv)(GLenum, GLenum, GLfloat *);
   6266 #define CALL_GetColorTableParameterfv(disp, parameters) \
   6267     (* GET_GetColorTableParameterfv(disp)) parameters
   6268 static inline _glptr_GetColorTableParameterfv GET_GetColorTableParameterfv(struct _glapi_table *disp) {
   6269    return (_glptr_GetColorTableParameterfv) (GET_by_offset(disp, _gloffset_GetColorTableParameterfv));
   6270 }
   6271 
   6272 static inline void SET_GetColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6273    SET_by_offset(disp, _gloffset_GetColorTableParameterfv, fn);
   6274 }
   6275 
   6276 typedef void (GLAPIENTRYP _glptr_GetColorTableParameteriv)(GLenum, GLenum, GLint *);
   6277 #define CALL_GetColorTableParameteriv(disp, parameters) \
   6278     (* GET_GetColorTableParameteriv(disp)) parameters
   6279 static inline _glptr_GetColorTableParameteriv GET_GetColorTableParameteriv(struct _glapi_table *disp) {
   6280    return (_glptr_GetColorTableParameteriv) (GET_by_offset(disp, _gloffset_GetColorTableParameteriv));
   6281 }
   6282 
   6283 static inline void SET_GetColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6284    SET_by_offset(disp, _gloffset_GetColorTableParameteriv, fn);
   6285 }
   6286 
   6287 typedef void (GLAPIENTRYP _glptr_ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6288 #define CALL_ColorSubTable(disp, parameters) \
   6289     (* GET_ColorSubTable(disp)) parameters
   6290 static inline _glptr_ColorSubTable GET_ColorSubTable(struct _glapi_table *disp) {
   6291    return (_glptr_ColorSubTable) (GET_by_offset(disp, _gloffset_ColorSubTable));
   6292 }
   6293 
   6294 static inline void SET_ColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6295    SET_by_offset(disp, _gloffset_ColorSubTable, fn);
   6296 }
   6297 
   6298 typedef void (GLAPIENTRYP _glptr_CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei);
   6299 #define CALL_CopyColorSubTable(disp, parameters) \
   6300     (* GET_CopyColorSubTable(disp)) parameters
   6301 static inline _glptr_CopyColorSubTable GET_CopyColorSubTable(struct _glapi_table *disp) {
   6302    return (_glptr_CopyColorSubTable) (GET_by_offset(disp, _gloffset_CopyColorSubTable));
   6303 }
   6304 
   6305 static inline void SET_CopyColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLint, GLint, GLsizei)) {
   6306    SET_by_offset(disp, _gloffset_CopyColorSubTable, fn);
   6307 }
   6308 
   6309 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
   6310 #define CALL_ConvolutionFilter1D(disp, parameters) \
   6311     (* GET_ConvolutionFilter1D(disp)) parameters
   6312 static inline _glptr_ConvolutionFilter1D GET_ConvolutionFilter1D(struct _glapi_table *disp) {
   6313    return (_glptr_ConvolutionFilter1D) (GET_by_offset(disp, _gloffset_ConvolutionFilter1D));
   6314 }
   6315 
   6316 static inline void SET_ConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6317    SET_by_offset(disp, _gloffset_ConvolutionFilter1D, fn);
   6318 }
   6319 
   6320 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6321 #define CALL_ConvolutionFilter2D(disp, parameters) \
   6322     (* GET_ConvolutionFilter2D(disp)) parameters
   6323 static inline _glptr_ConvolutionFilter2D GET_ConvolutionFilter2D(struct _glapi_table *disp) {
   6324    return (_glptr_ConvolutionFilter2D) (GET_by_offset(disp, _gloffset_ConvolutionFilter2D));
   6325 }
   6326 
   6327 static inline void SET_ConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6328    SET_by_offset(disp, _gloffset_ConvolutionFilter2D, fn);
   6329 }
   6330 
   6331 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterf)(GLenum, GLenum, GLfloat);
   6332 #define CALL_ConvolutionParameterf(disp, parameters) \
   6333     (* GET_ConvolutionParameterf(disp)) parameters
   6334 static inline _glptr_ConvolutionParameterf GET_ConvolutionParameterf(struct _glapi_table *disp) {
   6335    return (_glptr_ConvolutionParameterf) (GET_by_offset(disp, _gloffset_ConvolutionParameterf));
   6336 }
   6337 
   6338 static inline void SET_ConvolutionParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
   6339    SET_by_offset(disp, _gloffset_ConvolutionParameterf, fn);
   6340 }
   6341 
   6342 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *);
   6343 #define CALL_ConvolutionParameterfv(disp, parameters) \
   6344     (* GET_ConvolutionParameterfv(disp)) parameters
   6345 static inline _glptr_ConvolutionParameterfv GET_ConvolutionParameterfv(struct _glapi_table *disp) {
   6346    return (_glptr_ConvolutionParameterfv) (GET_by_offset(disp, _gloffset_ConvolutionParameterfv));
   6347 }
   6348 
   6349 static inline void SET_ConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
   6350    SET_by_offset(disp, _gloffset_ConvolutionParameterfv, fn);
   6351 }
   6352 
   6353 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteri)(GLenum, GLenum, GLint);
   6354 #define CALL_ConvolutionParameteri(disp, parameters) \
   6355     (* GET_ConvolutionParameteri(disp)) parameters
   6356 static inline _glptr_ConvolutionParameteri GET_ConvolutionParameteri(struct _glapi_table *disp) {
   6357    return (_glptr_ConvolutionParameteri) (GET_by_offset(disp, _gloffset_ConvolutionParameteri));
   6358 }
   6359 
   6360 static inline void SET_ConvolutionParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   6361    SET_by_offset(disp, _gloffset_ConvolutionParameteri, fn);
   6362 }
   6363 
   6364 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteriv)(GLenum, GLenum, const GLint *);
   6365 #define CALL_ConvolutionParameteriv(disp, parameters) \
   6366     (* GET_ConvolutionParameteriv(disp)) parameters
   6367 static inline _glptr_ConvolutionParameteriv GET_ConvolutionParameteriv(struct _glapi_table *disp) {
   6368    return (_glptr_ConvolutionParameteriv) (GET_by_offset(disp, _gloffset_ConvolutionParameteriv));
   6369 }
   6370 
   6371 static inline void SET_ConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   6372    SET_by_offset(disp, _gloffset_ConvolutionParameteriv, fn);
   6373 }
   6374 
   6375 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter1D)(GLenum, GLenum, GLint, GLint, GLsizei);
   6376 #define CALL_CopyConvolutionFilter1D(disp, parameters) \
   6377     (* GET_CopyConvolutionFilter1D(disp)) parameters
   6378 static inline _glptr_CopyConvolutionFilter1D GET_CopyConvolutionFilter1D(struct _glapi_table *disp) {
   6379    return (_glptr_CopyConvolutionFilter1D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter1D));
   6380 }
   6381 
   6382 static inline void SET_CopyConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
   6383    SET_by_offset(disp, _gloffset_CopyConvolutionFilter1D, fn);
   6384 }
   6385 
   6386 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter2D)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
   6387 #define CALL_CopyConvolutionFilter2D(disp, parameters) \
   6388     (* GET_CopyConvolutionFilter2D(disp)) parameters
   6389 static inline _glptr_CopyConvolutionFilter2D GET_CopyConvolutionFilter2D(struct _glapi_table *disp) {
   6390    return (_glptr_CopyConvolutionFilter2D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter2D));
   6391 }
   6392 
   6393 static inline void SET_CopyConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei)) {
   6394    SET_by_offset(disp, _gloffset_CopyConvolutionFilter2D, fn);
   6395 }
   6396 
   6397 typedef void (GLAPIENTRYP _glptr_GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *);
   6398 #define CALL_GetConvolutionFilter(disp, parameters) \
   6399     (* GET_GetConvolutionFilter(disp)) parameters
   6400 static inline _glptr_GetConvolutionFilter GET_GetConvolutionFilter(struct _glapi_table *disp) {
   6401    return (_glptr_GetConvolutionFilter) (GET_by_offset(disp, _gloffset_GetConvolutionFilter));
   6402 }
   6403 
   6404 static inline void SET_GetConvolutionFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
   6405    SET_by_offset(disp, _gloffset_GetConvolutionFilter, fn);
   6406 }
   6407 
   6408 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *);
   6409 #define CALL_GetConvolutionParameterfv(disp, parameters) \
   6410     (* GET_GetConvolutionParameterfv(disp)) parameters
   6411 static inline _glptr_GetConvolutionParameterfv GET_GetConvolutionParameterfv(struct _glapi_table *disp) {
   6412    return (_glptr_GetConvolutionParameterfv) (GET_by_offset(disp, _gloffset_GetConvolutionParameterfv));
   6413 }
   6414 
   6415 static inline void SET_GetConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6416    SET_by_offset(disp, _gloffset_GetConvolutionParameterfv, fn);
   6417 }
   6418 
   6419 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameteriv)(GLenum, GLenum, GLint *);
   6420 #define CALL_GetConvolutionParameteriv(disp, parameters) \
   6421     (* GET_GetConvolutionParameteriv(disp)) parameters
   6422 static inline _glptr_GetConvolutionParameteriv GET_GetConvolutionParameteriv(struct _glapi_table *disp) {
   6423    return (_glptr_GetConvolutionParameteriv) (GET_by_offset(disp, _gloffset_GetConvolutionParameteriv));
   6424 }
   6425 
   6426 static inline void SET_GetConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6427    SET_by_offset(disp, _gloffset_GetConvolutionParameteriv, fn);
   6428 }
   6429 
   6430 typedef void (GLAPIENTRYP _glptr_GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
   6431 #define CALL_GetSeparableFilter(disp, parameters) \
   6432     (* GET_GetSeparableFilter(disp)) parameters
   6433 static inline _glptr_GetSeparableFilter GET_GetSeparableFilter(struct _glapi_table *disp) {
   6434    return (_glptr_GetSeparableFilter) (GET_by_offset(disp, _gloffset_GetSeparableFilter));
   6435 }
   6436 
   6437 static inline void SET_GetSeparableFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *)) {
   6438    SET_by_offset(disp, _gloffset_GetSeparableFilter, fn);
   6439 }
   6440 
   6441 typedef void (GLAPIENTRYP _glptr_SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
   6442 #define CALL_SeparableFilter2D(disp, parameters) \
   6443     (* GET_SeparableFilter2D(disp)) parameters
   6444 static inline _glptr_SeparableFilter2D GET_SeparableFilter2D(struct _glapi_table *disp) {
   6445    return (_glptr_SeparableFilter2D) (GET_by_offset(disp, _gloffset_SeparableFilter2D));
   6446 }
   6447 
   6448 static inline void SET_SeparableFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *)) {
   6449    SET_by_offset(disp, _gloffset_SeparableFilter2D, fn);
   6450 }
   6451 
   6452 typedef void (GLAPIENTRYP _glptr_GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
   6453 #define CALL_GetHistogram(disp, parameters) \
   6454     (* GET_GetHistogram(disp)) parameters
   6455 static inline _glptr_GetHistogram GET_GetHistogram(struct _glapi_table *disp) {
   6456    return (_glptr_GetHistogram) (GET_by_offset(disp, _gloffset_GetHistogram));
   6457 }
   6458 
   6459 static inline void SET_GetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
   6460    SET_by_offset(disp, _gloffset_GetHistogram, fn);
   6461 }
   6462 
   6463 typedef void (GLAPIENTRYP _glptr_GetHistogramParameterfv)(GLenum, GLenum, GLfloat *);
   6464 #define CALL_GetHistogramParameterfv(disp, parameters) \
   6465     (* GET_GetHistogramParameterfv(disp)) parameters
   6466 static inline _glptr_GetHistogramParameterfv GET_GetHistogramParameterfv(struct _glapi_table *disp) {
   6467    return (_glptr_GetHistogramParameterfv) (GET_by_offset(disp, _gloffset_GetHistogramParameterfv));
   6468 }
   6469 
   6470 static inline void SET_GetHistogramParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6471    SET_by_offset(disp, _gloffset_GetHistogramParameterfv, fn);
   6472 }
   6473 
   6474 typedef void (GLAPIENTRYP _glptr_GetHistogramParameteriv)(GLenum, GLenum, GLint *);
   6475 #define CALL_GetHistogramParameteriv(disp, parameters) \
   6476     (* GET_GetHistogramParameteriv(disp)) parameters
   6477 static inline _glptr_GetHistogramParameteriv GET_GetHistogramParameteriv(struct _glapi_table *disp) {
   6478    return (_glptr_GetHistogramParameteriv) (GET_by_offset(disp, _gloffset_GetHistogramParameteriv));
   6479 }
   6480 
   6481 static inline void SET_GetHistogramParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6482    SET_by_offset(disp, _gloffset_GetHistogramParameteriv, fn);
   6483 }
   6484 
   6485 typedef void (GLAPIENTRYP _glptr_GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
   6486 #define CALL_GetMinmax(disp, parameters) \
   6487     (* GET_GetMinmax(disp)) parameters
   6488 static inline _glptr_GetMinmax GET_GetMinmax(struct _glapi_table *disp) {
   6489    return (_glptr_GetMinmax) (GET_by_offset(disp, _gloffset_GetMinmax));
   6490 }
   6491 
   6492 static inline void SET_GetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
   6493    SET_by_offset(disp, _gloffset_GetMinmax, fn);
   6494 }
   6495 
   6496 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *);
   6497 #define CALL_GetMinmaxParameterfv(disp, parameters) \
   6498     (* GET_GetMinmaxParameterfv(disp)) parameters
   6499 static inline _glptr_GetMinmaxParameterfv GET_GetMinmaxParameterfv(struct _glapi_table *disp) {
   6500    return (_glptr_GetMinmaxParameterfv) (GET_by_offset(disp, _gloffset_GetMinmaxParameterfv));
   6501 }
   6502 
   6503 static inline void SET_GetMinmaxParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
   6504    SET_by_offset(disp, _gloffset_GetMinmaxParameterfv, fn);
   6505 }
   6506 
   6507 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameteriv)(GLenum, GLenum, GLint *);
   6508 #define CALL_GetMinmaxParameteriv(disp, parameters) \
   6509     (* GET_GetMinmaxParameteriv(disp)) parameters
   6510 static inline _glptr_GetMinmaxParameteriv GET_GetMinmaxParameteriv(struct _glapi_table *disp) {
   6511    return (_glptr_GetMinmaxParameteriv) (GET_by_offset(disp, _gloffset_GetMinmaxParameteriv));
   6512 }
   6513 
   6514 static inline void SET_GetMinmaxParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   6515    SET_by_offset(disp, _gloffset_GetMinmaxParameteriv, fn);
   6516 }
   6517 
   6518 typedef void (GLAPIENTRYP _glptr_Histogram)(GLenum, GLsizei, GLenum, GLboolean);
   6519 #define CALL_Histogram(disp, parameters) \
   6520     (* GET_Histogram(disp)) parameters
   6521 static inline _glptr_Histogram GET_Histogram(struct _glapi_table *disp) {
   6522    return (_glptr_Histogram) (GET_by_offset(disp, _gloffset_Histogram));
   6523 }
   6524 
   6525 static inline void SET_Histogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLboolean)) {
   6526    SET_by_offset(disp, _gloffset_Histogram, fn);
   6527 }
   6528 
   6529 typedef void (GLAPIENTRYP _glptr_Minmax)(GLenum, GLenum, GLboolean);
   6530 #define CALL_Minmax(disp, parameters) \
   6531     (* GET_Minmax(disp)) parameters
   6532 static inline _glptr_Minmax GET_Minmax(struct _glapi_table *disp) {
   6533    return (_glptr_Minmax) (GET_by_offset(disp, _gloffset_Minmax));
   6534 }
   6535 
   6536 static inline void SET_Minmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLboolean)) {
   6537    SET_by_offset(disp, _gloffset_Minmax, fn);
   6538 }
   6539 
   6540 typedef void (GLAPIENTRYP _glptr_ResetHistogram)(GLenum);
   6541 #define CALL_ResetHistogram(disp, parameters) \
   6542     (* GET_ResetHistogram(disp)) parameters
   6543 static inline _glptr_ResetHistogram GET_ResetHistogram(struct _glapi_table *disp) {
   6544    return (_glptr_ResetHistogram) (GET_by_offset(disp, _gloffset_ResetHistogram));
   6545 }
   6546 
   6547 static inline void SET_ResetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6548    SET_by_offset(disp, _gloffset_ResetHistogram, fn);
   6549 }
   6550 
   6551 typedef void (GLAPIENTRYP _glptr_ResetMinmax)(GLenum);
   6552 #define CALL_ResetMinmax(disp, parameters) \
   6553     (* GET_ResetMinmax(disp)) parameters
   6554 static inline _glptr_ResetMinmax GET_ResetMinmax(struct _glapi_table *disp) {
   6555    return (_glptr_ResetMinmax) (GET_by_offset(disp, _gloffset_ResetMinmax));
   6556 }
   6557 
   6558 static inline void SET_ResetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6559    SET_by_offset(disp, _gloffset_ResetMinmax, fn);
   6560 }
   6561 
   6562 typedef void (GLAPIENTRYP _glptr_TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
   6563 #define CALL_TexImage3D(disp, parameters) \
   6564     (* GET_TexImage3D(disp)) parameters
   6565 static inline _glptr_TexImage3D GET_TexImage3D(struct _glapi_table *disp) {
   6566    return (_glptr_TexImage3D) (GET_by_offset(disp, _gloffset_TexImage3D));
   6567 }
   6568 
   6569 static inline void SET_TexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
   6570    SET_by_offset(disp, _gloffset_TexImage3D, fn);
   6571 }
   6572 
   6573 typedef void (GLAPIENTRYP _glptr_TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   6574 #define CALL_TexSubImage3D(disp, parameters) \
   6575     (* GET_TexSubImage3D(disp)) parameters
   6576 static inline _glptr_TexSubImage3D GET_TexSubImage3D(struct _glapi_table *disp) {
   6577    return (_glptr_TexSubImage3D) (GET_by_offset(disp, _gloffset_TexSubImage3D));
   6578 }
   6579 
   6580 static inline void SET_TexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   6581    SET_by_offset(disp, _gloffset_TexSubImage3D, fn);
   6582 }
   6583 
   6584 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
   6585 #define CALL_CopyTexSubImage3D(disp, parameters) \
   6586     (* GET_CopyTexSubImage3D(disp)) parameters
   6587 static inline _glptr_CopyTexSubImage3D GET_CopyTexSubImage3D(struct _glapi_table *disp) {
   6588    return (_glptr_CopyTexSubImage3D) (GET_by_offset(disp, _gloffset_CopyTexSubImage3D));
   6589 }
   6590 
   6591 static inline void SET_CopyTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
   6592    SET_by_offset(disp, _gloffset_CopyTexSubImage3D, fn);
   6593 }
   6594 
   6595 typedef void (GLAPIENTRYP _glptr_ActiveTexture)(GLenum);
   6596 #define CALL_ActiveTexture(disp, parameters) \
   6597     (* GET_ActiveTexture(disp)) parameters
   6598 static inline _glptr_ActiveTexture GET_ActiveTexture(struct _glapi_table *disp) {
   6599    return (_glptr_ActiveTexture) (GET_by_offset(disp, _gloffset_ActiveTexture));
   6600 }
   6601 
   6602 static inline void SET_ActiveTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6603    SET_by_offset(disp, _gloffset_ActiveTexture, fn);
   6604 }
   6605 
   6606 typedef void (GLAPIENTRYP _glptr_ClientActiveTexture)(GLenum);
   6607 #define CALL_ClientActiveTexture(disp, parameters) \
   6608     (* GET_ClientActiveTexture(disp)) parameters
   6609 static inline _glptr_ClientActiveTexture GET_ClientActiveTexture(struct _glapi_table *disp) {
   6610    return (_glptr_ClientActiveTexture) (GET_by_offset(disp, _gloffset_ClientActiveTexture));
   6611 }
   6612 
   6613 static inline void SET_ClientActiveTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   6614    SET_by_offset(disp, _gloffset_ClientActiveTexture, fn);
   6615 }
   6616 
   6617 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1d)(GLenum, GLdouble);
   6618 #define CALL_MultiTexCoord1d(disp, parameters) \
   6619     (* GET_MultiTexCoord1d(disp)) parameters
   6620 static inline _glptr_MultiTexCoord1d GET_MultiTexCoord1d(struct _glapi_table *disp) {
   6621    return (_glptr_MultiTexCoord1d) (GET_by_offset(disp, _gloffset_MultiTexCoord1d));
   6622 }
   6623 
   6624 static inline void SET_MultiTexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble)) {
   6625    SET_by_offset(disp, _gloffset_MultiTexCoord1d, fn);
   6626 }
   6627 
   6628 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dv)(GLenum, const GLdouble *);
   6629 #define CALL_MultiTexCoord1dv(disp, parameters) \
   6630     (* GET_MultiTexCoord1dv(disp)) parameters
   6631 static inline _glptr_MultiTexCoord1dv GET_MultiTexCoord1dv(struct _glapi_table *disp) {
   6632    return (_glptr_MultiTexCoord1dv) (GET_by_offset(disp, _gloffset_MultiTexCoord1dv));
   6633 }
   6634 
   6635 static inline void SET_MultiTexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6636    SET_by_offset(disp, _gloffset_MultiTexCoord1dv, fn);
   6637 }
   6638 
   6639 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fARB)(GLenum, GLfloat);
   6640 #define CALL_MultiTexCoord1fARB(disp, parameters) \
   6641     (* GET_MultiTexCoord1fARB(disp)) parameters
   6642 static inline _glptr_MultiTexCoord1fARB GET_MultiTexCoord1fARB(struct _glapi_table *disp) {
   6643    return (_glptr_MultiTexCoord1fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fARB));
   6644 }
   6645 
   6646 static inline void SET_MultiTexCoord1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   6647    SET_by_offset(disp, _gloffset_MultiTexCoord1fARB, fn);
   6648 }
   6649 
   6650 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fvARB)(GLenum, const GLfloat *);
   6651 #define CALL_MultiTexCoord1fvARB(disp, parameters) \
   6652     (* GET_MultiTexCoord1fvARB(disp)) parameters
   6653 static inline _glptr_MultiTexCoord1fvARB GET_MultiTexCoord1fvARB(struct _glapi_table *disp) {
   6654    return (_glptr_MultiTexCoord1fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fvARB));
   6655 }
   6656 
   6657 static inline void SET_MultiTexCoord1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6658    SET_by_offset(disp, _gloffset_MultiTexCoord1fvARB, fn);
   6659 }
   6660 
   6661 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1i)(GLenum, GLint);
   6662 #define CALL_MultiTexCoord1i(disp, parameters) \
   6663     (* GET_MultiTexCoord1i(disp)) parameters
   6664 static inline _glptr_MultiTexCoord1i GET_MultiTexCoord1i(struct _glapi_table *disp) {
   6665    return (_glptr_MultiTexCoord1i) (GET_by_offset(disp, _gloffset_MultiTexCoord1i));
   6666 }
   6667 
   6668 static inline void SET_MultiTexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   6669    SET_by_offset(disp, _gloffset_MultiTexCoord1i, fn);
   6670 }
   6671 
   6672 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1iv)(GLenum, const GLint *);
   6673 #define CALL_MultiTexCoord1iv(disp, parameters) \
   6674     (* GET_MultiTexCoord1iv(disp)) parameters
   6675 static inline _glptr_MultiTexCoord1iv GET_MultiTexCoord1iv(struct _glapi_table *disp) {
   6676    return (_glptr_MultiTexCoord1iv) (GET_by_offset(disp, _gloffset_MultiTexCoord1iv));
   6677 }
   6678 
   6679 static inline void SET_MultiTexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6680    SET_by_offset(disp, _gloffset_MultiTexCoord1iv, fn);
   6681 }
   6682 
   6683 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1s)(GLenum, GLshort);
   6684 #define CALL_MultiTexCoord1s(disp, parameters) \
   6685     (* GET_MultiTexCoord1s(disp)) parameters
   6686 static inline _glptr_MultiTexCoord1s GET_MultiTexCoord1s(struct _glapi_table *disp) {
   6687    return (_glptr_MultiTexCoord1s) (GET_by_offset(disp, _gloffset_MultiTexCoord1s));
   6688 }
   6689 
   6690 static inline void SET_MultiTexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort)) {
   6691    SET_by_offset(disp, _gloffset_MultiTexCoord1s, fn);
   6692 }
   6693 
   6694 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1sv)(GLenum, const GLshort *);
   6695 #define CALL_MultiTexCoord1sv(disp, parameters) \
   6696     (* GET_MultiTexCoord1sv(disp)) parameters
   6697 static inline _glptr_MultiTexCoord1sv GET_MultiTexCoord1sv(struct _glapi_table *disp) {
   6698    return (_glptr_MultiTexCoord1sv) (GET_by_offset(disp, _gloffset_MultiTexCoord1sv));
   6699 }
   6700 
   6701 static inline void SET_MultiTexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6702    SET_by_offset(disp, _gloffset_MultiTexCoord1sv, fn);
   6703 }
   6704 
   6705 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2d)(GLenum, GLdouble, GLdouble);
   6706 #define CALL_MultiTexCoord2d(disp, parameters) \
   6707     (* GET_MultiTexCoord2d(disp)) parameters
   6708 static inline _glptr_MultiTexCoord2d GET_MultiTexCoord2d(struct _glapi_table *disp) {
   6709    return (_glptr_MultiTexCoord2d) (GET_by_offset(disp, _gloffset_MultiTexCoord2d));
   6710 }
   6711 
   6712 static inline void SET_MultiTexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble)) {
   6713    SET_by_offset(disp, _gloffset_MultiTexCoord2d, fn);
   6714 }
   6715 
   6716 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dv)(GLenum, const GLdouble *);
   6717 #define CALL_MultiTexCoord2dv(disp, parameters) \
   6718     (* GET_MultiTexCoord2dv(disp)) parameters
   6719 static inline _glptr_MultiTexCoord2dv GET_MultiTexCoord2dv(struct _glapi_table *disp) {
   6720    return (_glptr_MultiTexCoord2dv) (GET_by_offset(disp, _gloffset_MultiTexCoord2dv));
   6721 }
   6722 
   6723 static inline void SET_MultiTexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6724    SET_by_offset(disp, _gloffset_MultiTexCoord2dv, fn);
   6725 }
   6726 
   6727 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fARB)(GLenum, GLfloat, GLfloat);
   6728 #define CALL_MultiTexCoord2fARB(disp, parameters) \
   6729     (* GET_MultiTexCoord2fARB(disp)) parameters
   6730 static inline _glptr_MultiTexCoord2fARB GET_MultiTexCoord2fARB(struct _glapi_table *disp) {
   6731    return (_glptr_MultiTexCoord2fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fARB));
   6732 }
   6733 
   6734 static inline void SET_MultiTexCoord2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat)) {
   6735    SET_by_offset(disp, _gloffset_MultiTexCoord2fARB, fn);
   6736 }
   6737 
   6738 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fvARB)(GLenum, const GLfloat *);
   6739 #define CALL_MultiTexCoord2fvARB(disp, parameters) \
   6740     (* GET_MultiTexCoord2fvARB(disp)) parameters
   6741 static inline _glptr_MultiTexCoord2fvARB GET_MultiTexCoord2fvARB(struct _glapi_table *disp) {
   6742    return (_glptr_MultiTexCoord2fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fvARB));
   6743 }
   6744 
   6745 static inline void SET_MultiTexCoord2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6746    SET_by_offset(disp, _gloffset_MultiTexCoord2fvARB, fn);
   6747 }
   6748 
   6749 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2i)(GLenum, GLint, GLint);
   6750 #define CALL_MultiTexCoord2i(disp, parameters) \
   6751     (* GET_MultiTexCoord2i(disp)) parameters
   6752 static inline _glptr_MultiTexCoord2i GET_MultiTexCoord2i(struct _glapi_table *disp) {
   6753    return (_glptr_MultiTexCoord2i) (GET_by_offset(disp, _gloffset_MultiTexCoord2i));
   6754 }
   6755 
   6756 static inline void SET_MultiTexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
   6757    SET_by_offset(disp, _gloffset_MultiTexCoord2i, fn);
   6758 }
   6759 
   6760 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2iv)(GLenum, const GLint *);
   6761 #define CALL_MultiTexCoord2iv(disp, parameters) \
   6762     (* GET_MultiTexCoord2iv(disp)) parameters
   6763 static inline _glptr_MultiTexCoord2iv GET_MultiTexCoord2iv(struct _glapi_table *disp) {
   6764    return (_glptr_MultiTexCoord2iv) (GET_by_offset(disp, _gloffset_MultiTexCoord2iv));
   6765 }
   6766 
   6767 static inline void SET_MultiTexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6768    SET_by_offset(disp, _gloffset_MultiTexCoord2iv, fn);
   6769 }
   6770 
   6771 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2s)(GLenum, GLshort, GLshort);
   6772 #define CALL_MultiTexCoord2s(disp, parameters) \
   6773     (* GET_MultiTexCoord2s(disp)) parameters
   6774 static inline _glptr_MultiTexCoord2s GET_MultiTexCoord2s(struct _glapi_table *disp) {
   6775    return (_glptr_MultiTexCoord2s) (GET_by_offset(disp, _gloffset_MultiTexCoord2s));
   6776 }
   6777 
   6778 static inline void SET_MultiTexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort)) {
   6779    SET_by_offset(disp, _gloffset_MultiTexCoord2s, fn);
   6780 }
   6781 
   6782 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2sv)(GLenum, const GLshort *);
   6783 #define CALL_MultiTexCoord2sv(disp, parameters) \
   6784     (* GET_MultiTexCoord2sv(disp)) parameters
   6785 static inline _glptr_MultiTexCoord2sv GET_MultiTexCoord2sv(struct _glapi_table *disp) {
   6786    return (_glptr_MultiTexCoord2sv) (GET_by_offset(disp, _gloffset_MultiTexCoord2sv));
   6787 }
   6788 
   6789 static inline void SET_MultiTexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6790    SET_by_offset(disp, _gloffset_MultiTexCoord2sv, fn);
   6791 }
   6792 
   6793 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3d)(GLenum, GLdouble, GLdouble, GLdouble);
   6794 #define CALL_MultiTexCoord3d(disp, parameters) \
   6795     (* GET_MultiTexCoord3d(disp)) parameters
   6796 static inline _glptr_MultiTexCoord3d GET_MultiTexCoord3d(struct _glapi_table *disp) {
   6797    return (_glptr_MultiTexCoord3d) (GET_by_offset(disp, _gloffset_MultiTexCoord3d));
   6798 }
   6799 
   6800 static inline void SET_MultiTexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble)) {
   6801    SET_by_offset(disp, _gloffset_MultiTexCoord3d, fn);
   6802 }
   6803 
   6804 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dv)(GLenum, const GLdouble *);
   6805 #define CALL_MultiTexCoord3dv(disp, parameters) \
   6806     (* GET_MultiTexCoord3dv(disp)) parameters
   6807 static inline _glptr_MultiTexCoord3dv GET_MultiTexCoord3dv(struct _glapi_table *disp) {
   6808    return (_glptr_MultiTexCoord3dv) (GET_by_offset(disp, _gloffset_MultiTexCoord3dv));
   6809 }
   6810 
   6811 static inline void SET_MultiTexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6812    SET_by_offset(disp, _gloffset_MultiTexCoord3dv, fn);
   6813 }
   6814 
   6815 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fARB)(GLenum, GLfloat, GLfloat, GLfloat);
   6816 #define CALL_MultiTexCoord3fARB(disp, parameters) \
   6817     (* GET_MultiTexCoord3fARB(disp)) parameters
   6818 static inline _glptr_MultiTexCoord3fARB GET_MultiTexCoord3fARB(struct _glapi_table *disp) {
   6819    return (_glptr_MultiTexCoord3fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fARB));
   6820 }
   6821 
   6822 static inline void SET_MultiTexCoord3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat)) {
   6823    SET_by_offset(disp, _gloffset_MultiTexCoord3fARB, fn);
   6824 }
   6825 
   6826 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fvARB)(GLenum, const GLfloat *);
   6827 #define CALL_MultiTexCoord3fvARB(disp, parameters) \
   6828     (* GET_MultiTexCoord3fvARB(disp)) parameters
   6829 static inline _glptr_MultiTexCoord3fvARB GET_MultiTexCoord3fvARB(struct _glapi_table *disp) {
   6830    return (_glptr_MultiTexCoord3fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fvARB));
   6831 }
   6832 
   6833 static inline void SET_MultiTexCoord3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6834    SET_by_offset(disp, _gloffset_MultiTexCoord3fvARB, fn);
   6835 }
   6836 
   6837 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3i)(GLenum, GLint, GLint, GLint);
   6838 #define CALL_MultiTexCoord3i(disp, parameters) \
   6839     (* GET_MultiTexCoord3i(disp)) parameters
   6840 static inline _glptr_MultiTexCoord3i GET_MultiTexCoord3i(struct _glapi_table *disp) {
   6841    return (_glptr_MultiTexCoord3i) (GET_by_offset(disp, _gloffset_MultiTexCoord3i));
   6842 }
   6843 
   6844 static inline void SET_MultiTexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint)) {
   6845    SET_by_offset(disp, _gloffset_MultiTexCoord3i, fn);
   6846 }
   6847 
   6848 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3iv)(GLenum, const GLint *);
   6849 #define CALL_MultiTexCoord3iv(disp, parameters) \
   6850     (* GET_MultiTexCoord3iv(disp)) parameters
   6851 static inline _glptr_MultiTexCoord3iv GET_MultiTexCoord3iv(struct _glapi_table *disp) {
   6852    return (_glptr_MultiTexCoord3iv) (GET_by_offset(disp, _gloffset_MultiTexCoord3iv));
   6853 }
   6854 
   6855 static inline void SET_MultiTexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6856    SET_by_offset(disp, _gloffset_MultiTexCoord3iv, fn);
   6857 }
   6858 
   6859 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3s)(GLenum, GLshort, GLshort, GLshort);
   6860 #define CALL_MultiTexCoord3s(disp, parameters) \
   6861     (* GET_MultiTexCoord3s(disp)) parameters
   6862 static inline _glptr_MultiTexCoord3s GET_MultiTexCoord3s(struct _glapi_table *disp) {
   6863    return (_glptr_MultiTexCoord3s) (GET_by_offset(disp, _gloffset_MultiTexCoord3s));
   6864 }
   6865 
   6866 static inline void SET_MultiTexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort)) {
   6867    SET_by_offset(disp, _gloffset_MultiTexCoord3s, fn);
   6868 }
   6869 
   6870 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3sv)(GLenum, const GLshort *);
   6871 #define CALL_MultiTexCoord3sv(disp, parameters) \
   6872     (* GET_MultiTexCoord3sv(disp)) parameters
   6873 static inline _glptr_MultiTexCoord3sv GET_MultiTexCoord3sv(struct _glapi_table *disp) {
   6874    return (_glptr_MultiTexCoord3sv) (GET_by_offset(disp, _gloffset_MultiTexCoord3sv));
   6875 }
   6876 
   6877 static inline void SET_MultiTexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6878    SET_by_offset(disp, _gloffset_MultiTexCoord3sv, fn);
   6879 }
   6880 
   6881 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4d)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
   6882 #define CALL_MultiTexCoord4d(disp, parameters) \
   6883     (* GET_MultiTexCoord4d(disp)) parameters
   6884 static inline _glptr_MultiTexCoord4d GET_MultiTexCoord4d(struct _glapi_table *disp) {
   6885    return (_glptr_MultiTexCoord4d) (GET_by_offset(disp, _gloffset_MultiTexCoord4d));
   6886 }
   6887 
   6888 static inline void SET_MultiTexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble)) {
   6889    SET_by_offset(disp, _gloffset_MultiTexCoord4d, fn);
   6890 }
   6891 
   6892 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dv)(GLenum, const GLdouble *);
   6893 #define CALL_MultiTexCoord4dv(disp, parameters) \
   6894     (* GET_MultiTexCoord4dv(disp)) parameters
   6895 static inline _glptr_MultiTexCoord4dv GET_MultiTexCoord4dv(struct _glapi_table *disp) {
   6896    return (_glptr_MultiTexCoord4dv) (GET_by_offset(disp, _gloffset_MultiTexCoord4dv));
   6897 }
   6898 
   6899 static inline void SET_MultiTexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
   6900    SET_by_offset(disp, _gloffset_MultiTexCoord4dv, fn);
   6901 }
   6902 
   6903 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fARB)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
   6904 #define CALL_MultiTexCoord4fARB(disp, parameters) \
   6905     (* GET_MultiTexCoord4fARB(disp)) parameters
   6906 static inline _glptr_MultiTexCoord4fARB GET_MultiTexCoord4fARB(struct _glapi_table *disp) {
   6907    return (_glptr_MultiTexCoord4fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fARB));
   6908 }
   6909 
   6910 static inline void SET_MultiTexCoord4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat)) {
   6911    SET_by_offset(disp, _gloffset_MultiTexCoord4fARB, fn);
   6912 }
   6913 
   6914 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fvARB)(GLenum, const GLfloat *);
   6915 #define CALL_MultiTexCoord4fvARB(disp, parameters) \
   6916     (* GET_MultiTexCoord4fvARB(disp)) parameters
   6917 static inline _glptr_MultiTexCoord4fvARB GET_MultiTexCoord4fvARB(struct _glapi_table *disp) {
   6918    return (_glptr_MultiTexCoord4fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fvARB));
   6919 }
   6920 
   6921 static inline void SET_MultiTexCoord4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   6922    SET_by_offset(disp, _gloffset_MultiTexCoord4fvARB, fn);
   6923 }
   6924 
   6925 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4i)(GLenum, GLint, GLint, GLint, GLint);
   6926 #define CALL_MultiTexCoord4i(disp, parameters) \
   6927     (* GET_MultiTexCoord4i(disp)) parameters
   6928 static inline _glptr_MultiTexCoord4i GET_MultiTexCoord4i(struct _glapi_table *disp) {
   6929    return (_glptr_MultiTexCoord4i) (GET_by_offset(disp, _gloffset_MultiTexCoord4i));
   6930 }
   6931 
   6932 static inline void SET_MultiTexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
   6933    SET_by_offset(disp, _gloffset_MultiTexCoord4i, fn);
   6934 }
   6935 
   6936 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4iv)(GLenum, const GLint *);
   6937 #define CALL_MultiTexCoord4iv(disp, parameters) \
   6938     (* GET_MultiTexCoord4iv(disp)) parameters
   6939 static inline _glptr_MultiTexCoord4iv GET_MultiTexCoord4iv(struct _glapi_table *disp) {
   6940    return (_glptr_MultiTexCoord4iv) (GET_by_offset(disp, _gloffset_MultiTexCoord4iv));
   6941 }
   6942 
   6943 static inline void SET_MultiTexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   6944    SET_by_offset(disp, _gloffset_MultiTexCoord4iv, fn);
   6945 }
   6946 
   6947 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4s)(GLenum, GLshort, GLshort, GLshort, GLshort);
   6948 #define CALL_MultiTexCoord4s(disp, parameters) \
   6949     (* GET_MultiTexCoord4s(disp)) parameters
   6950 static inline _glptr_MultiTexCoord4s GET_MultiTexCoord4s(struct _glapi_table *disp) {
   6951    return (_glptr_MultiTexCoord4s) (GET_by_offset(disp, _gloffset_MultiTexCoord4s));
   6952 }
   6953 
   6954 static inline void SET_MultiTexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort, GLshort)) {
   6955    SET_by_offset(disp, _gloffset_MultiTexCoord4s, fn);
   6956 }
   6957 
   6958 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4sv)(GLenum, const GLshort *);
   6959 #define CALL_MultiTexCoord4sv(disp, parameters) \
   6960     (* GET_MultiTexCoord4sv(disp)) parameters
   6961 static inline _glptr_MultiTexCoord4sv GET_MultiTexCoord4sv(struct _glapi_table *disp) {
   6962    return (_glptr_MultiTexCoord4sv) (GET_by_offset(disp, _gloffset_MultiTexCoord4sv));
   6963 }
   6964 
   6965 static inline void SET_MultiTexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) {
   6966    SET_by_offset(disp, _gloffset_MultiTexCoord4sv, fn);
   6967 }
   6968 
   6969 typedef void (GLAPIENTRYP _glptr_CompressedTexImage1D)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
   6970 #define CALL_CompressedTexImage1D(disp, parameters) \
   6971     (* GET_CompressedTexImage1D(disp)) parameters
   6972 static inline _glptr_CompressedTexImage1D GET_CompressedTexImage1D(struct _glapi_table *disp) {
   6973    return (_glptr_CompressedTexImage1D) (GET_by_offset(disp, _gloffset_CompressedTexImage1D));
   6974 }
   6975 
   6976 static inline void SET_CompressedTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *)) {
   6977    SET_by_offset(disp, _gloffset_CompressedTexImage1D, fn);
   6978 }
   6979 
   6980 typedef void (GLAPIENTRYP _glptr_CompressedTexImage2D)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
   6981 #define CALL_CompressedTexImage2D(disp, parameters) \
   6982     (* GET_CompressedTexImage2D(disp)) parameters
   6983 static inline _glptr_CompressedTexImage2D GET_CompressedTexImage2D(struct _glapi_table *disp) {
   6984    return (_glptr_CompressedTexImage2D) (GET_by_offset(disp, _gloffset_CompressedTexImage2D));
   6985 }
   6986 
   6987 static inline void SET_CompressedTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) {
   6988    SET_by_offset(disp, _gloffset_CompressedTexImage2D, fn);
   6989 }
   6990 
   6991 typedef void (GLAPIENTRYP _glptr_CompressedTexImage3D)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
   6992 #define CALL_CompressedTexImage3D(disp, parameters) \
   6993     (* GET_CompressedTexImage3D(disp)) parameters
   6994 static inline _glptr_CompressedTexImage3D GET_CompressedTexImage3D(struct _glapi_table *disp) {
   6995    return (_glptr_CompressedTexImage3D) (GET_by_offset(disp, _gloffset_CompressedTexImage3D));
   6996 }
   6997 
   6998 static inline void SET_CompressedTexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) {
   6999    SET_by_offset(disp, _gloffset_CompressedTexImage3D, fn);
   7000 }
   7001 
   7002 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
   7003 #define CALL_CompressedTexSubImage1D(disp, parameters) \
   7004     (* GET_CompressedTexSubImage1D(disp)) parameters
   7005 static inline _glptr_CompressedTexSubImage1D GET_CompressedTexSubImage1D(struct _glapi_table *disp) {
   7006    return (_glptr_CompressedTexSubImage1D) (GET_by_offset(disp, _gloffset_CompressedTexSubImage1D));
   7007 }
   7008 
   7009 static inline void SET_CompressedTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *)) {
   7010    SET_by_offset(disp, _gloffset_CompressedTexSubImage1D, fn);
   7011 }
   7012 
   7013 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
   7014 #define CALL_CompressedTexSubImage2D(disp, parameters) \
   7015     (* GET_CompressedTexSubImage2D(disp)) parameters
   7016 static inline _glptr_CompressedTexSubImage2D GET_CompressedTexSubImage2D(struct _glapi_table *disp) {
   7017    return (_glptr_CompressedTexSubImage2D) (GET_by_offset(disp, _gloffset_CompressedTexSubImage2D));
   7018 }
   7019 
   7020 static inline void SET_CompressedTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
   7021    SET_by_offset(disp, _gloffset_CompressedTexSubImage2D, fn);
   7022 }
   7023 
   7024 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
   7025 #define CALL_CompressedTexSubImage3D(disp, parameters) \
   7026     (* GET_CompressedTexSubImage3D(disp)) parameters
   7027 static inline _glptr_CompressedTexSubImage3D GET_CompressedTexSubImage3D(struct _glapi_table *disp) {
   7028    return (_glptr_CompressedTexSubImage3D) (GET_by_offset(disp, _gloffset_CompressedTexSubImage3D));
   7029 }
   7030 
   7031 static inline void SET_CompressedTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
   7032    SET_by_offset(disp, _gloffset_CompressedTexSubImage3D, fn);
   7033 }
   7034 
   7035 typedef void (GLAPIENTRYP _glptr_GetCompressedTexImage)(GLenum, GLint, GLvoid *);
   7036 #define CALL_GetCompressedTexImage(disp, parameters) \
   7037     (* GET_GetCompressedTexImage(disp)) parameters
   7038 static inline _glptr_GetCompressedTexImage GET_GetCompressedTexImage(struct _glapi_table *disp) {
   7039    return (_glptr_GetCompressedTexImage) (GET_by_offset(disp, _gloffset_GetCompressedTexImage));
   7040 }
   7041 
   7042 static inline void SET_GetCompressedTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLvoid *)) {
   7043    SET_by_offset(disp, _gloffset_GetCompressedTexImage, fn);
   7044 }
   7045 
   7046 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixd)(const GLdouble *);
   7047 #define CALL_LoadTransposeMatrixd(disp, parameters) \
   7048     (* GET_LoadTransposeMatrixd(disp)) parameters
   7049 static inline _glptr_LoadTransposeMatrixd GET_LoadTransposeMatrixd(struct _glapi_table *disp) {
   7050    return (_glptr_LoadTransposeMatrixd) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixd));
   7051 }
   7052 
   7053 static inline void SET_LoadTransposeMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   7054    SET_by_offset(disp, _gloffset_LoadTransposeMatrixd, fn);
   7055 }
   7056 
   7057 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixf)(const GLfloat *);
   7058 #define CALL_LoadTransposeMatrixf(disp, parameters) \
   7059     (* GET_LoadTransposeMatrixf(disp)) parameters
   7060 static inline _glptr_LoadTransposeMatrixf GET_LoadTransposeMatrixf(struct _glapi_table *disp) {
   7061    return (_glptr_LoadTransposeMatrixf) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixf));
   7062 }
   7063 
   7064 static inline void SET_LoadTransposeMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   7065    SET_by_offset(disp, _gloffset_LoadTransposeMatrixf, fn);
   7066 }
   7067 
   7068 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixd)(const GLdouble *);
   7069 #define CALL_MultTransposeMatrixd(disp, parameters) \
   7070     (* GET_MultTransposeMatrixd(disp)) parameters
   7071 static inline _glptr_MultTransposeMatrixd GET_MultTransposeMatrixd(struct _glapi_table *disp) {
   7072    return (_glptr_MultTransposeMatrixd) (GET_by_offset(disp, _gloffset_MultTransposeMatrixd));
   7073 }
   7074 
   7075 static inline void SET_MultTransposeMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   7076    SET_by_offset(disp, _gloffset_MultTransposeMatrixd, fn);
   7077 }
   7078 
   7079 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixf)(const GLfloat *);
   7080 #define CALL_MultTransposeMatrixf(disp, parameters) \
   7081     (* GET_MultTransposeMatrixf(disp)) parameters
   7082 static inline _glptr_MultTransposeMatrixf GET_MultTransposeMatrixf(struct _glapi_table *disp) {
   7083    return (_glptr_MultTransposeMatrixf) (GET_by_offset(disp, _gloffset_MultTransposeMatrixf));
   7084 }
   7085 
   7086 static inline void SET_MultTransposeMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   7087    SET_by_offset(disp, _gloffset_MultTransposeMatrixf, fn);
   7088 }
   7089 
   7090 typedef void (GLAPIENTRYP _glptr_SampleCoverage)(GLclampf, GLboolean);
   7091 #define CALL_SampleCoverage(disp, parameters) \
   7092     (* GET_SampleCoverage(disp)) parameters
   7093 static inline _glptr_SampleCoverage GET_SampleCoverage(struct _glapi_table *disp) {
   7094    return (_glptr_SampleCoverage) (GET_by_offset(disp, _gloffset_SampleCoverage));
   7095 }
   7096 
   7097 static inline void SET_SampleCoverage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
   7098    SET_by_offset(disp, _gloffset_SampleCoverage, fn);
   7099 }
   7100 
   7101 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparate)(GLenum, GLenum, GLenum, GLenum);
   7102 #define CALL_BlendFuncSeparate(disp, parameters) \
   7103     (* GET_BlendFuncSeparate(disp)) parameters
   7104 static inline _glptr_BlendFuncSeparate GET_BlendFuncSeparate(struct _glapi_table *disp) {
   7105    return (_glptr_BlendFuncSeparate) (GET_by_offset(disp, _gloffset_BlendFuncSeparate));
   7106 }
   7107 
   7108 static inline void SET_BlendFuncSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
   7109    SET_by_offset(disp, _gloffset_BlendFuncSeparate, fn);
   7110 }
   7111 
   7112 typedef void (GLAPIENTRYP _glptr_FogCoordPointer)(GLenum, GLsizei, const GLvoid *);
   7113 #define CALL_FogCoordPointer(disp, parameters) \
   7114     (* GET_FogCoordPointer(disp)) parameters
   7115 static inline _glptr_FogCoordPointer GET_FogCoordPointer(struct _glapi_table *disp) {
   7116    return (_glptr_FogCoordPointer) (GET_by_offset(disp, _gloffset_FogCoordPointer));
   7117 }
   7118 
   7119 static inline void SET_FogCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   7120    SET_by_offset(disp, _gloffset_FogCoordPointer, fn);
   7121 }
   7122 
   7123 typedef void (GLAPIENTRYP _glptr_FogCoordd)(GLdouble);
   7124 #define CALL_FogCoordd(disp, parameters) \
   7125     (* GET_FogCoordd(disp)) parameters
   7126 static inline _glptr_FogCoordd GET_FogCoordd(struct _glapi_table *disp) {
   7127    return (_glptr_FogCoordd) (GET_by_offset(disp, _gloffset_FogCoordd));
   7128 }
   7129 
   7130 static inline void SET_FogCoordd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
   7131    SET_by_offset(disp, _gloffset_FogCoordd, fn);
   7132 }
   7133 
   7134 typedef void (GLAPIENTRYP _glptr_FogCoorddv)(const GLdouble *);
   7135 #define CALL_FogCoorddv(disp, parameters) \
   7136     (* GET_FogCoorddv(disp)) parameters
   7137 static inline _glptr_FogCoorddv GET_FogCoorddv(struct _glapi_table *disp) {
   7138    return (_glptr_FogCoorddv) (GET_by_offset(disp, _gloffset_FogCoorddv));
   7139 }
   7140 
   7141 static inline void SET_FogCoorddv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   7142    SET_by_offset(disp, _gloffset_FogCoorddv, fn);
   7143 }
   7144 
   7145 typedef void (GLAPIENTRYP _glptr_MultiDrawArrays)(GLenum, const GLint *, const GLsizei *, GLsizei);
   7146 #define CALL_MultiDrawArrays(disp, parameters) \
   7147     (* GET_MultiDrawArrays(disp)) parameters
   7148 static inline _glptr_MultiDrawArrays GET_MultiDrawArrays(struct _glapi_table *disp) {
   7149    return (_glptr_MultiDrawArrays) (GET_by_offset(disp, _gloffset_MultiDrawArrays));
   7150 }
   7151 
   7152 static inline void SET_MultiDrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *, const GLsizei *, GLsizei)) {
   7153    SET_by_offset(disp, _gloffset_MultiDrawArrays, fn);
   7154 }
   7155 
   7156 typedef void (GLAPIENTRYP _glptr_PointParameterf)(GLenum, GLfloat);
   7157 #define CALL_PointParameterf(disp, parameters) \
   7158     (* GET_PointParameterf(disp)) parameters
   7159 static inline _glptr_PointParameterf GET_PointParameterf(struct _glapi_table *disp) {
   7160    return (_glptr_PointParameterf) (GET_by_offset(disp, _gloffset_PointParameterf));
   7161 }
   7162 
   7163 static inline void SET_PointParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
   7164    SET_by_offset(disp, _gloffset_PointParameterf, fn);
   7165 }
   7166 
   7167 typedef void (GLAPIENTRYP _glptr_PointParameterfv)(GLenum, const GLfloat *);
   7168 #define CALL_PointParameterfv(disp, parameters) \
   7169     (* GET_PointParameterfv(disp)) parameters
   7170 static inline _glptr_PointParameterfv GET_PointParameterfv(struct _glapi_table *disp) {
   7171    return (_glptr_PointParameterfv) (GET_by_offset(disp, _gloffset_PointParameterfv));
   7172 }
   7173 
   7174 static inline void SET_PointParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   7175    SET_by_offset(disp, _gloffset_PointParameterfv, fn);
   7176 }
   7177 
   7178 typedef void (GLAPIENTRYP _glptr_PointParameteri)(GLenum, GLint);
   7179 #define CALL_PointParameteri(disp, parameters) \
   7180     (* GET_PointParameteri(disp)) parameters
   7181 static inline _glptr_PointParameteri GET_PointParameteri(struct _glapi_table *disp) {
   7182    return (_glptr_PointParameteri) (GET_by_offset(disp, _gloffset_PointParameteri));
   7183 }
   7184 
   7185 static inline void SET_PointParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   7186    SET_by_offset(disp, _gloffset_PointParameteri, fn);
   7187 }
   7188 
   7189 typedef void (GLAPIENTRYP _glptr_PointParameteriv)(GLenum, const GLint *);
   7190 #define CALL_PointParameteriv(disp, parameters) \
   7191     (* GET_PointParameteriv(disp)) parameters
   7192 static inline _glptr_PointParameteriv GET_PointParameteriv(struct _glapi_table *disp) {
   7193    return (_glptr_PointParameteriv) (GET_by_offset(disp, _gloffset_PointParameteriv));
   7194 }
   7195 
   7196 static inline void SET_PointParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   7197    SET_by_offset(disp, _gloffset_PointParameteriv, fn);
   7198 }
   7199 
   7200 typedef void (GLAPIENTRYP _glptr_SecondaryColor3b)(GLbyte, GLbyte, GLbyte);
   7201 #define CALL_SecondaryColor3b(disp, parameters) \
   7202     (* GET_SecondaryColor3b(disp)) parameters
   7203 static inline _glptr_SecondaryColor3b GET_SecondaryColor3b(struct _glapi_table *disp) {
   7204    return (_glptr_SecondaryColor3b) (GET_by_offset(disp, _gloffset_SecondaryColor3b));
   7205 }
   7206 
   7207 static inline void SET_SecondaryColor3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
   7208    SET_by_offset(disp, _gloffset_SecondaryColor3b, fn);
   7209 }
   7210 
   7211 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bv)(const GLbyte *);
   7212 #define CALL_SecondaryColor3bv(disp, parameters) \
   7213     (* GET_SecondaryColor3bv(disp)) parameters
   7214 static inline _glptr_SecondaryColor3bv GET_SecondaryColor3bv(struct _glapi_table *disp) {
   7215    return (_glptr_SecondaryColor3bv) (GET_by_offset(disp, _gloffset_SecondaryColor3bv));
   7216 }
   7217 
   7218 static inline void SET_SecondaryColor3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
   7219    SET_by_offset(disp, _gloffset_SecondaryColor3bv, fn);
   7220 }
   7221 
   7222 typedef void (GLAPIENTRYP _glptr_SecondaryColor3d)(GLdouble, GLdouble, GLdouble);
   7223 #define CALL_SecondaryColor3d(disp, parameters) \
   7224     (* GET_SecondaryColor3d(disp)) parameters
   7225 static inline _glptr_SecondaryColor3d GET_SecondaryColor3d(struct _glapi_table *disp) {
   7226    return (_glptr_SecondaryColor3d) (GET_by_offset(disp, _gloffset_SecondaryColor3d));
   7227 }
   7228 
   7229 static inline void SET_SecondaryColor3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   7230    SET_by_offset(disp, _gloffset_SecondaryColor3d, fn);
   7231 }
   7232 
   7233 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dv)(const GLdouble *);
   7234 #define CALL_SecondaryColor3dv(disp, parameters) \
   7235     (* GET_SecondaryColor3dv(disp)) parameters
   7236 static inline _glptr_SecondaryColor3dv GET_SecondaryColor3dv(struct _glapi_table *disp) {
   7237    return (_glptr_SecondaryColor3dv) (GET_by_offset(disp, _gloffset_SecondaryColor3dv));
   7238 }
   7239 
   7240 static inline void SET_SecondaryColor3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   7241    SET_by_offset(disp, _gloffset_SecondaryColor3dv, fn);
   7242 }
   7243 
   7244 typedef void (GLAPIENTRYP _glptr_SecondaryColor3i)(GLint, GLint, GLint);
   7245 #define CALL_SecondaryColor3i(disp, parameters) \
   7246     (* GET_SecondaryColor3i(disp)) parameters
   7247 static inline _glptr_SecondaryColor3i GET_SecondaryColor3i(struct _glapi_table *disp) {
   7248    return (_glptr_SecondaryColor3i) (GET_by_offset(disp, _gloffset_SecondaryColor3i));
   7249 }
   7250 
   7251 static inline void SET_SecondaryColor3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   7252    SET_by_offset(disp, _gloffset_SecondaryColor3i, fn);
   7253 }
   7254 
   7255 typedef void (GLAPIENTRYP _glptr_SecondaryColor3iv)(const GLint *);
   7256 #define CALL_SecondaryColor3iv(disp, parameters) \
   7257     (* GET_SecondaryColor3iv(disp)) parameters
   7258 static inline _glptr_SecondaryColor3iv GET_SecondaryColor3iv(struct _glapi_table *disp) {
   7259    return (_glptr_SecondaryColor3iv) (GET_by_offset(disp, _gloffset_SecondaryColor3iv));
   7260 }
   7261 
   7262 static inline void SET_SecondaryColor3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   7263    SET_by_offset(disp, _gloffset_SecondaryColor3iv, fn);
   7264 }
   7265 
   7266 typedef void (GLAPIENTRYP _glptr_SecondaryColor3s)(GLshort, GLshort, GLshort);
   7267 #define CALL_SecondaryColor3s(disp, parameters) \
   7268     (* GET_SecondaryColor3s(disp)) parameters
   7269 static inline _glptr_SecondaryColor3s GET_SecondaryColor3s(struct _glapi_table *disp) {
   7270    return (_glptr_SecondaryColor3s) (GET_by_offset(disp, _gloffset_SecondaryColor3s));
   7271 }
   7272 
   7273 static inline void SET_SecondaryColor3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   7274    SET_by_offset(disp, _gloffset_SecondaryColor3s, fn);
   7275 }
   7276 
   7277 typedef void (GLAPIENTRYP _glptr_SecondaryColor3sv)(const GLshort *);
   7278 #define CALL_SecondaryColor3sv(disp, parameters) \
   7279     (* GET_SecondaryColor3sv(disp)) parameters
   7280 static inline _glptr_SecondaryColor3sv GET_SecondaryColor3sv(struct _glapi_table *disp) {
   7281    return (_glptr_SecondaryColor3sv) (GET_by_offset(disp, _gloffset_SecondaryColor3sv));
   7282 }
   7283 
   7284 static inline void SET_SecondaryColor3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   7285    SET_by_offset(disp, _gloffset_SecondaryColor3sv, fn);
   7286 }
   7287 
   7288 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ub)(GLubyte, GLubyte, GLubyte);
   7289 #define CALL_SecondaryColor3ub(disp, parameters) \
   7290     (* GET_SecondaryColor3ub(disp)) parameters
   7291 static inline _glptr_SecondaryColor3ub GET_SecondaryColor3ub(struct _glapi_table *disp) {
   7292    return (_glptr_SecondaryColor3ub) (GET_by_offset(disp, _gloffset_SecondaryColor3ub));
   7293 }
   7294 
   7295 static inline void SET_SecondaryColor3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
   7296    SET_by_offset(disp, _gloffset_SecondaryColor3ub, fn);
   7297 }
   7298 
   7299 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubv)(const GLubyte *);
   7300 #define CALL_SecondaryColor3ubv(disp, parameters) \
   7301     (* GET_SecondaryColor3ubv(disp)) parameters
   7302 static inline _glptr_SecondaryColor3ubv GET_SecondaryColor3ubv(struct _glapi_table *disp) {
   7303    return (_glptr_SecondaryColor3ubv) (GET_by_offset(disp, _gloffset_SecondaryColor3ubv));
   7304 }
   7305 
   7306 static inline void SET_SecondaryColor3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
   7307    SET_by_offset(disp, _gloffset_SecondaryColor3ubv, fn);
   7308 }
   7309 
   7310 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ui)(GLuint, GLuint, GLuint);
   7311 #define CALL_SecondaryColor3ui(disp, parameters) \
   7312     (* GET_SecondaryColor3ui(disp)) parameters
   7313 static inline _glptr_SecondaryColor3ui GET_SecondaryColor3ui(struct _glapi_table *disp) {
   7314    return (_glptr_SecondaryColor3ui) (GET_by_offset(disp, _gloffset_SecondaryColor3ui));
   7315 }
   7316 
   7317 static inline void SET_SecondaryColor3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   7318    SET_by_offset(disp, _gloffset_SecondaryColor3ui, fn);
   7319 }
   7320 
   7321 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uiv)(const GLuint *);
   7322 #define CALL_SecondaryColor3uiv(disp, parameters) \
   7323     (* GET_SecondaryColor3uiv(disp)) parameters
   7324 static inline _glptr_SecondaryColor3uiv GET_SecondaryColor3uiv(struct _glapi_table *disp) {
   7325    return (_glptr_SecondaryColor3uiv) (GET_by_offset(disp, _gloffset_SecondaryColor3uiv));
   7326 }
   7327 
   7328 static inline void SET_SecondaryColor3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
   7329    SET_by_offset(disp, _gloffset_SecondaryColor3uiv, fn);
   7330 }
   7331 
   7332 typedef void (GLAPIENTRYP _glptr_SecondaryColor3us)(GLushort, GLushort, GLushort);
   7333 #define CALL_SecondaryColor3us(disp, parameters) \
   7334     (* GET_SecondaryColor3us(disp)) parameters
   7335 static inline _glptr_SecondaryColor3us GET_SecondaryColor3us(struct _glapi_table *disp) {
   7336    return (_glptr_SecondaryColor3us) (GET_by_offset(disp, _gloffset_SecondaryColor3us));
   7337 }
   7338 
   7339 static inline void SET_SecondaryColor3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
   7340    SET_by_offset(disp, _gloffset_SecondaryColor3us, fn);
   7341 }
   7342 
   7343 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usv)(const GLushort *);
   7344 #define CALL_SecondaryColor3usv(disp, parameters) \
   7345     (* GET_SecondaryColor3usv(disp)) parameters
   7346 static inline _glptr_SecondaryColor3usv GET_SecondaryColor3usv(struct _glapi_table *disp) {
   7347    return (_glptr_SecondaryColor3usv) (GET_by_offset(disp, _gloffset_SecondaryColor3usv));
   7348 }
   7349 
   7350 static inline void SET_SecondaryColor3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
   7351    SET_by_offset(disp, _gloffset_SecondaryColor3usv, fn);
   7352 }
   7353 
   7354 typedef void (GLAPIENTRYP _glptr_SecondaryColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
   7355 #define CALL_SecondaryColorPointer(disp, parameters) \
   7356     (* GET_SecondaryColorPointer(disp)) parameters
   7357 static inline _glptr_SecondaryColorPointer GET_SecondaryColorPointer(struct _glapi_table *disp) {
   7358    return (_glptr_SecondaryColorPointer) (GET_by_offset(disp, _gloffset_SecondaryColorPointer));
   7359 }
   7360 
   7361 static inline void SET_SecondaryColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
   7362    SET_by_offset(disp, _gloffset_SecondaryColorPointer, fn);
   7363 }
   7364 
   7365 typedef void (GLAPIENTRYP _glptr_WindowPos2d)(GLdouble, GLdouble);
   7366 #define CALL_WindowPos2d(disp, parameters) \
   7367     (* GET_WindowPos2d(disp)) parameters
   7368 static inline _glptr_WindowPos2d GET_WindowPos2d(struct _glapi_table *disp) {
   7369    return (_glptr_WindowPos2d) (GET_by_offset(disp, _gloffset_WindowPos2d));
   7370 }
   7371 
   7372 static inline void SET_WindowPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
   7373    SET_by_offset(disp, _gloffset_WindowPos2d, fn);
   7374 }
   7375 
   7376 typedef void (GLAPIENTRYP _glptr_WindowPos2dv)(const GLdouble *);
   7377 #define CALL_WindowPos2dv(disp, parameters) \
   7378     (* GET_WindowPos2dv(disp)) parameters
   7379 static inline _glptr_WindowPos2dv GET_WindowPos2dv(struct _glapi_table *disp) {
   7380    return (_glptr_WindowPos2dv) (GET_by_offset(disp, _gloffset_WindowPos2dv));
   7381 }
   7382 
   7383 static inline void SET_WindowPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   7384    SET_by_offset(disp, _gloffset_WindowPos2dv, fn);
   7385 }
   7386 
   7387 typedef void (GLAPIENTRYP _glptr_WindowPos2f)(GLfloat, GLfloat);
   7388 #define CALL_WindowPos2f(disp, parameters) \
   7389     (* GET_WindowPos2f(disp)) parameters
   7390 static inline _glptr_WindowPos2f GET_WindowPos2f(struct _glapi_table *disp) {
   7391    return (_glptr_WindowPos2f) (GET_by_offset(disp, _gloffset_WindowPos2f));
   7392 }
   7393 
   7394 static inline void SET_WindowPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   7395    SET_by_offset(disp, _gloffset_WindowPos2f, fn);
   7396 }
   7397 
   7398 typedef void (GLAPIENTRYP _glptr_WindowPos2fv)(const GLfloat *);
   7399 #define CALL_WindowPos2fv(disp, parameters) \
   7400     (* GET_WindowPos2fv(disp)) parameters
   7401 static inline _glptr_WindowPos2fv GET_WindowPos2fv(struct _glapi_table *disp) {
   7402    return (_glptr_WindowPos2fv) (GET_by_offset(disp, _gloffset_WindowPos2fv));
   7403 }
   7404 
   7405 static inline void SET_WindowPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   7406    SET_by_offset(disp, _gloffset_WindowPos2fv, fn);
   7407 }
   7408 
   7409 typedef void (GLAPIENTRYP _glptr_WindowPos2i)(GLint, GLint);
   7410 #define CALL_WindowPos2i(disp, parameters) \
   7411     (* GET_WindowPos2i(disp)) parameters
   7412 static inline _glptr_WindowPos2i GET_WindowPos2i(struct _glapi_table *disp) {
   7413    return (_glptr_WindowPos2i) (GET_by_offset(disp, _gloffset_WindowPos2i));
   7414 }
   7415 
   7416 static inline void SET_WindowPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   7417    SET_by_offset(disp, _gloffset_WindowPos2i, fn);
   7418 }
   7419 
   7420 typedef void (GLAPIENTRYP _glptr_WindowPos2iv)(const GLint *);
   7421 #define CALL_WindowPos2iv(disp, parameters) \
   7422     (* GET_WindowPos2iv(disp)) parameters
   7423 static inline _glptr_WindowPos2iv GET_WindowPos2iv(struct _glapi_table *disp) {
   7424    return (_glptr_WindowPos2iv) (GET_by_offset(disp, _gloffset_WindowPos2iv));
   7425 }
   7426 
   7427 static inline void SET_WindowPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   7428    SET_by_offset(disp, _gloffset_WindowPos2iv, fn);
   7429 }
   7430 
   7431 typedef void (GLAPIENTRYP _glptr_WindowPos2s)(GLshort, GLshort);
   7432 #define CALL_WindowPos2s(disp, parameters) \
   7433     (* GET_WindowPos2s(disp)) parameters
   7434 static inline _glptr_WindowPos2s GET_WindowPos2s(struct _glapi_table *disp) {
   7435    return (_glptr_WindowPos2s) (GET_by_offset(disp, _gloffset_WindowPos2s));
   7436 }
   7437 
   7438 static inline void SET_WindowPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
   7439    SET_by_offset(disp, _gloffset_WindowPos2s, fn);
   7440 }
   7441 
   7442 typedef void (GLAPIENTRYP _glptr_WindowPos2sv)(const GLshort *);
   7443 #define CALL_WindowPos2sv(disp, parameters) \
   7444     (* GET_WindowPos2sv(disp)) parameters
   7445 static inline _glptr_WindowPos2sv GET_WindowPos2sv(struct _glapi_table *disp) {
   7446    return (_glptr_WindowPos2sv) (GET_by_offset(disp, _gloffset_WindowPos2sv));
   7447 }
   7448 
   7449 static inline void SET_WindowPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   7450    SET_by_offset(disp, _gloffset_WindowPos2sv, fn);
   7451 }
   7452 
   7453 typedef void (GLAPIENTRYP _glptr_WindowPos3d)(GLdouble, GLdouble, GLdouble);
   7454 #define CALL_WindowPos3d(disp, parameters) \
   7455     (* GET_WindowPos3d(disp)) parameters
   7456 static inline _glptr_WindowPos3d GET_WindowPos3d(struct _glapi_table *disp) {
   7457    return (_glptr_WindowPos3d) (GET_by_offset(disp, _gloffset_WindowPos3d));
   7458 }
   7459 
   7460 static inline void SET_WindowPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
   7461    SET_by_offset(disp, _gloffset_WindowPos3d, fn);
   7462 }
   7463 
   7464 typedef void (GLAPIENTRYP _glptr_WindowPos3dv)(const GLdouble *);
   7465 #define CALL_WindowPos3dv(disp, parameters) \
   7466     (* GET_WindowPos3dv(disp)) parameters
   7467 static inline _glptr_WindowPos3dv GET_WindowPos3dv(struct _glapi_table *disp) {
   7468    return (_glptr_WindowPos3dv) (GET_by_offset(disp, _gloffset_WindowPos3dv));
   7469 }
   7470 
   7471 static inline void SET_WindowPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   7472    SET_by_offset(disp, _gloffset_WindowPos3dv, fn);
   7473 }
   7474 
   7475 typedef void (GLAPIENTRYP _glptr_WindowPos3f)(GLfloat, GLfloat, GLfloat);
   7476 #define CALL_WindowPos3f(disp, parameters) \
   7477     (* GET_WindowPos3f(disp)) parameters
   7478 static inline _glptr_WindowPos3f GET_WindowPos3f(struct _glapi_table *disp) {
   7479    return (_glptr_WindowPos3f) (GET_by_offset(disp, _gloffset_WindowPos3f));
   7480 }
   7481 
   7482 static inline void SET_WindowPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   7483    SET_by_offset(disp, _gloffset_WindowPos3f, fn);
   7484 }
   7485 
   7486 typedef void (GLAPIENTRYP _glptr_WindowPos3fv)(const GLfloat *);
   7487 #define CALL_WindowPos3fv(disp, parameters) \
   7488     (* GET_WindowPos3fv(disp)) parameters
   7489 static inline _glptr_WindowPos3fv GET_WindowPos3fv(struct _glapi_table *disp) {
   7490    return (_glptr_WindowPos3fv) (GET_by_offset(disp, _gloffset_WindowPos3fv));
   7491 }
   7492 
   7493 static inline void SET_WindowPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   7494    SET_by_offset(disp, _gloffset_WindowPos3fv, fn);
   7495 }
   7496 
   7497 typedef void (GLAPIENTRYP _glptr_WindowPos3i)(GLint, GLint, GLint);
   7498 #define CALL_WindowPos3i(disp, parameters) \
   7499     (* GET_WindowPos3i(disp)) parameters
   7500 static inline _glptr_WindowPos3i GET_WindowPos3i(struct _glapi_table *disp) {
   7501    return (_glptr_WindowPos3i) (GET_by_offset(disp, _gloffset_WindowPos3i));
   7502 }
   7503 
   7504 static inline void SET_WindowPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   7505    SET_by_offset(disp, _gloffset_WindowPos3i, fn);
   7506 }
   7507 
   7508 typedef void (GLAPIENTRYP _glptr_WindowPos3iv)(const GLint *);
   7509 #define CALL_WindowPos3iv(disp, parameters) \
   7510     (* GET_WindowPos3iv(disp)) parameters
   7511 static inline _glptr_WindowPos3iv GET_WindowPos3iv(struct _glapi_table *disp) {
   7512    return (_glptr_WindowPos3iv) (GET_by_offset(disp, _gloffset_WindowPos3iv));
   7513 }
   7514 
   7515 static inline void SET_WindowPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   7516    SET_by_offset(disp, _gloffset_WindowPos3iv, fn);
   7517 }
   7518 
   7519 typedef void (GLAPIENTRYP _glptr_WindowPos3s)(GLshort, GLshort, GLshort);
   7520 #define CALL_WindowPos3s(disp, parameters) \
   7521     (* GET_WindowPos3s(disp)) parameters
   7522 static inline _glptr_WindowPos3s GET_WindowPos3s(struct _glapi_table *disp) {
   7523    return (_glptr_WindowPos3s) (GET_by_offset(disp, _gloffset_WindowPos3s));
   7524 }
   7525 
   7526 static inline void SET_WindowPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
   7527    SET_by_offset(disp, _gloffset_WindowPos3s, fn);
   7528 }
   7529 
   7530 typedef void (GLAPIENTRYP _glptr_WindowPos3sv)(const GLshort *);
   7531 #define CALL_WindowPos3sv(disp, parameters) \
   7532     (* GET_WindowPos3sv(disp)) parameters
   7533 static inline _glptr_WindowPos3sv GET_WindowPos3sv(struct _glapi_table *disp) {
   7534    return (_glptr_WindowPos3sv) (GET_by_offset(disp, _gloffset_WindowPos3sv));
   7535 }
   7536 
   7537 static inline void SET_WindowPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   7538    SET_by_offset(disp, _gloffset_WindowPos3sv, fn);
   7539 }
   7540 
   7541 typedef void (GLAPIENTRYP _glptr_BeginQuery)(GLenum, GLuint);
   7542 #define CALL_BeginQuery(disp, parameters) \
   7543     (* GET_BeginQuery(disp)) parameters
   7544 static inline _glptr_BeginQuery GET_BeginQuery(struct _glapi_table *disp) {
   7545    return (_glptr_BeginQuery) (GET_by_offset(disp, _gloffset_BeginQuery));
   7546 }
   7547 
   7548 static inline void SET_BeginQuery(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   7549    SET_by_offset(disp, _gloffset_BeginQuery, fn);
   7550 }
   7551 
   7552 typedef void (GLAPIENTRYP _glptr_BindBuffer)(GLenum, GLuint);
   7553 #define CALL_BindBuffer(disp, parameters) \
   7554     (* GET_BindBuffer(disp)) parameters
   7555 static inline _glptr_BindBuffer GET_BindBuffer(struct _glapi_table *disp) {
   7556    return (_glptr_BindBuffer) (GET_by_offset(disp, _gloffset_BindBuffer));
   7557 }
   7558 
   7559 static inline void SET_BindBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   7560    SET_by_offset(disp, _gloffset_BindBuffer, fn);
   7561 }
   7562 
   7563 typedef void (GLAPIENTRYP _glptr_BufferData)(GLenum, GLsizeiptr, const GLvoid *, GLenum);
   7564 #define CALL_BufferData(disp, parameters) \
   7565     (* GET_BufferData(disp)) parameters
   7566 static inline _glptr_BufferData GET_BufferData(struct _glapi_table *disp) {
   7567    return (_glptr_BufferData) (GET_by_offset(disp, _gloffset_BufferData));
   7568 }
   7569 
   7570 static inline void SET_BufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptr, const GLvoid *, GLenum)) {
   7571    SET_by_offset(disp, _gloffset_BufferData, fn);
   7572 }
   7573 
   7574 typedef void (GLAPIENTRYP _glptr_BufferSubData)(GLenum, GLintptr, GLsizeiptr, const GLvoid *);
   7575 #define CALL_BufferSubData(disp, parameters) \
   7576     (* GET_BufferSubData(disp)) parameters
   7577 static inline _glptr_BufferSubData GET_BufferSubData(struct _glapi_table *disp) {
   7578    return (_glptr_BufferSubData) (GET_by_offset(disp, _gloffset_BufferSubData));
   7579 }
   7580 
   7581 static inline void SET_BufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, const GLvoid *)) {
   7582    SET_by_offset(disp, _gloffset_BufferSubData, fn);
   7583 }
   7584 
   7585 typedef void (GLAPIENTRYP _glptr_DeleteBuffers)(GLsizei, const GLuint *);
   7586 #define CALL_DeleteBuffers(disp, parameters) \
   7587     (* GET_DeleteBuffers(disp)) parameters
   7588 static inline _glptr_DeleteBuffers GET_DeleteBuffers(struct _glapi_table *disp) {
   7589    return (_glptr_DeleteBuffers) (GET_by_offset(disp, _gloffset_DeleteBuffers));
   7590 }
   7591 
   7592 static inline void SET_DeleteBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   7593    SET_by_offset(disp, _gloffset_DeleteBuffers, fn);
   7594 }
   7595 
   7596 typedef void (GLAPIENTRYP _glptr_DeleteQueries)(GLsizei, const GLuint *);
   7597 #define CALL_DeleteQueries(disp, parameters) \
   7598     (* GET_DeleteQueries(disp)) parameters
   7599 static inline _glptr_DeleteQueries GET_DeleteQueries(struct _glapi_table *disp) {
   7600    return (_glptr_DeleteQueries) (GET_by_offset(disp, _gloffset_DeleteQueries));
   7601 }
   7602 
   7603 static inline void SET_DeleteQueries(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   7604    SET_by_offset(disp, _gloffset_DeleteQueries, fn);
   7605 }
   7606 
   7607 typedef void (GLAPIENTRYP _glptr_EndQuery)(GLenum);
   7608 #define CALL_EndQuery(disp, parameters) \
   7609     (* GET_EndQuery(disp)) parameters
   7610 static inline _glptr_EndQuery GET_EndQuery(struct _glapi_table *disp) {
   7611    return (_glptr_EndQuery) (GET_by_offset(disp, _gloffset_EndQuery));
   7612 }
   7613 
   7614 static inline void SET_EndQuery(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   7615    SET_by_offset(disp, _gloffset_EndQuery, fn);
   7616 }
   7617 
   7618 typedef void (GLAPIENTRYP _glptr_GenBuffers)(GLsizei, GLuint *);
   7619 #define CALL_GenBuffers(disp, parameters) \
   7620     (* GET_GenBuffers(disp)) parameters
   7621 static inline _glptr_GenBuffers GET_GenBuffers(struct _glapi_table *disp) {
   7622    return (_glptr_GenBuffers) (GET_by_offset(disp, _gloffset_GenBuffers));
   7623 }
   7624 
   7625 static inline void SET_GenBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   7626    SET_by_offset(disp, _gloffset_GenBuffers, fn);
   7627 }
   7628 
   7629 typedef void (GLAPIENTRYP _glptr_GenQueries)(GLsizei, GLuint *);
   7630 #define CALL_GenQueries(disp, parameters) \
   7631     (* GET_GenQueries(disp)) parameters
   7632 static inline _glptr_GenQueries GET_GenQueries(struct _glapi_table *disp) {
   7633    return (_glptr_GenQueries) (GET_by_offset(disp, _gloffset_GenQueries));
   7634 }
   7635 
   7636 static inline void SET_GenQueries(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   7637    SET_by_offset(disp, _gloffset_GenQueries, fn);
   7638 }
   7639 
   7640 typedef void (GLAPIENTRYP _glptr_GetBufferParameteriv)(GLenum, GLenum, GLint *);
   7641 #define CALL_GetBufferParameteriv(disp, parameters) \
   7642     (* GET_GetBufferParameteriv(disp)) parameters
   7643 static inline _glptr_GetBufferParameteriv GET_GetBufferParameteriv(struct _glapi_table *disp) {
   7644    return (_glptr_GetBufferParameteriv) (GET_by_offset(disp, _gloffset_GetBufferParameteriv));
   7645 }
   7646 
   7647 static inline void SET_GetBufferParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   7648    SET_by_offset(disp, _gloffset_GetBufferParameteriv, fn);
   7649 }
   7650 
   7651 typedef void (GLAPIENTRYP _glptr_GetBufferPointerv)(GLenum, GLenum, GLvoid **);
   7652 #define CALL_GetBufferPointerv(disp, parameters) \
   7653     (* GET_GetBufferPointerv(disp)) parameters
   7654 static inline _glptr_GetBufferPointerv GET_GetBufferPointerv(struct _glapi_table *disp) {
   7655    return (_glptr_GetBufferPointerv) (GET_by_offset(disp, _gloffset_GetBufferPointerv));
   7656 }
   7657 
   7658 static inline void SET_GetBufferPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
   7659    SET_by_offset(disp, _gloffset_GetBufferPointerv, fn);
   7660 }
   7661 
   7662 typedef void (GLAPIENTRYP _glptr_GetBufferSubData)(GLenum, GLintptr, GLsizeiptr, GLvoid *);
   7663 #define CALL_GetBufferSubData(disp, parameters) \
   7664     (* GET_GetBufferSubData(disp)) parameters
   7665 static inline _glptr_GetBufferSubData GET_GetBufferSubData(struct _glapi_table *disp) {
   7666    return (_glptr_GetBufferSubData) (GET_by_offset(disp, _gloffset_GetBufferSubData));
   7667 }
   7668 
   7669 static inline void SET_GetBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLvoid *)) {
   7670    SET_by_offset(disp, _gloffset_GetBufferSubData, fn);
   7671 }
   7672 
   7673 typedef void (GLAPIENTRYP _glptr_GetQueryObjectiv)(GLuint, GLenum, GLint *);
   7674 #define CALL_GetQueryObjectiv(disp, parameters) \
   7675     (* GET_GetQueryObjectiv(disp)) parameters
   7676 static inline _glptr_GetQueryObjectiv GET_GetQueryObjectiv(struct _glapi_table *disp) {
   7677    return (_glptr_GetQueryObjectiv) (GET_by_offset(disp, _gloffset_GetQueryObjectiv));
   7678 }
   7679 
   7680 static inline void SET_GetQueryObjectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   7681    SET_by_offset(disp, _gloffset_GetQueryObjectiv, fn);
   7682 }
   7683 
   7684 typedef void (GLAPIENTRYP _glptr_GetQueryObjectuiv)(GLuint, GLenum, GLuint *);
   7685 #define CALL_GetQueryObjectuiv(disp, parameters) \
   7686     (* GET_GetQueryObjectuiv(disp)) parameters
   7687 static inline _glptr_GetQueryObjectuiv GET_GetQueryObjectuiv(struct _glapi_table *disp) {
   7688    return (_glptr_GetQueryObjectuiv) (GET_by_offset(disp, _gloffset_GetQueryObjectuiv));
   7689 }
   7690 
   7691 static inline void SET_GetQueryObjectuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
   7692    SET_by_offset(disp, _gloffset_GetQueryObjectuiv, fn);
   7693 }
   7694 
   7695 typedef void (GLAPIENTRYP _glptr_GetQueryiv)(GLenum, GLenum, GLint *);
   7696 #define CALL_GetQueryiv(disp, parameters) \
   7697     (* GET_GetQueryiv(disp)) parameters
   7698 static inline _glptr_GetQueryiv GET_GetQueryiv(struct _glapi_table *disp) {
   7699    return (_glptr_GetQueryiv) (GET_by_offset(disp, _gloffset_GetQueryiv));
   7700 }
   7701 
   7702 static inline void SET_GetQueryiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   7703    SET_by_offset(disp, _gloffset_GetQueryiv, fn);
   7704 }
   7705 
   7706 typedef GLboolean (GLAPIENTRYP _glptr_IsBuffer)(GLuint);
   7707 #define CALL_IsBuffer(disp, parameters) \
   7708     (* GET_IsBuffer(disp)) parameters
   7709 static inline _glptr_IsBuffer GET_IsBuffer(struct _glapi_table *disp) {
   7710    return (_glptr_IsBuffer) (GET_by_offset(disp, _gloffset_IsBuffer));
   7711 }
   7712 
   7713 static inline void SET_IsBuffer(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   7714    SET_by_offset(disp, _gloffset_IsBuffer, fn);
   7715 }
   7716 
   7717 typedef GLboolean (GLAPIENTRYP _glptr_IsQuery)(GLuint);
   7718 #define CALL_IsQuery(disp, parameters) \
   7719     (* GET_IsQuery(disp)) parameters
   7720 static inline _glptr_IsQuery GET_IsQuery(struct _glapi_table *disp) {
   7721    return (_glptr_IsQuery) (GET_by_offset(disp, _gloffset_IsQuery));
   7722 }
   7723 
   7724 static inline void SET_IsQuery(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   7725    SET_by_offset(disp, _gloffset_IsQuery, fn);
   7726 }
   7727 
   7728 typedef GLvoid * (GLAPIENTRYP _glptr_MapBuffer)(GLenum, GLenum);
   7729 #define CALL_MapBuffer(disp, parameters) \
   7730     (* GET_MapBuffer(disp)) parameters
   7731 static inline _glptr_MapBuffer GET_MapBuffer(struct _glapi_table *disp) {
   7732    return (_glptr_MapBuffer) (GET_by_offset(disp, _gloffset_MapBuffer));
   7733 }
   7734 
   7735 static inline void SET_MapBuffer(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLenum)) {
   7736    SET_by_offset(disp, _gloffset_MapBuffer, fn);
   7737 }
   7738 
   7739 typedef GLboolean (GLAPIENTRYP _glptr_UnmapBuffer)(GLenum);
   7740 #define CALL_UnmapBuffer(disp, parameters) \
   7741     (* GET_UnmapBuffer(disp)) parameters
   7742 static inline _glptr_UnmapBuffer GET_UnmapBuffer(struct _glapi_table *disp) {
   7743    return (_glptr_UnmapBuffer) (GET_by_offset(disp, _gloffset_UnmapBuffer));
   7744 }
   7745 
   7746 static inline void SET_UnmapBuffer(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
   7747    SET_by_offset(disp, _gloffset_UnmapBuffer, fn);
   7748 }
   7749 
   7750 typedef void (GLAPIENTRYP _glptr_AttachShader)(GLuint, GLuint);
   7751 #define CALL_AttachShader(disp, parameters) \
   7752     (* GET_AttachShader(disp)) parameters
   7753 static inline _glptr_AttachShader GET_AttachShader(struct _glapi_table *disp) {
   7754    return (_glptr_AttachShader) (GET_by_offset(disp, _gloffset_AttachShader));
   7755 }
   7756 
   7757 static inline void SET_AttachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   7758    SET_by_offset(disp, _gloffset_AttachShader, fn);
   7759 }
   7760 
   7761 typedef void (GLAPIENTRYP _glptr_BindAttribLocation)(GLuint, GLuint, const GLchar *);
   7762 #define CALL_BindAttribLocation(disp, parameters) \
   7763     (* GET_BindAttribLocation(disp)) parameters
   7764 static inline _glptr_BindAttribLocation GET_BindAttribLocation(struct _glapi_table *disp) {
   7765    return (_glptr_BindAttribLocation) (GET_by_offset(disp, _gloffset_BindAttribLocation));
   7766 }
   7767 
   7768 static inline void SET_BindAttribLocation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLchar *)) {
   7769    SET_by_offset(disp, _gloffset_BindAttribLocation, fn);
   7770 }
   7771 
   7772 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparate)(GLenum, GLenum);
   7773 #define CALL_BlendEquationSeparate(disp, parameters) \
   7774     (* GET_BlendEquationSeparate(disp)) parameters
   7775 static inline _glptr_BlendEquationSeparate GET_BlendEquationSeparate(struct _glapi_table *disp) {
   7776    return (_glptr_BlendEquationSeparate) (GET_by_offset(disp, _gloffset_BlendEquationSeparate));
   7777 }
   7778 
   7779 static inline void SET_BlendEquationSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   7780    SET_by_offset(disp, _gloffset_BlendEquationSeparate, fn);
   7781 }
   7782 
   7783 typedef void (GLAPIENTRYP _glptr_CompileShader)(GLuint);
   7784 #define CALL_CompileShader(disp, parameters) \
   7785     (* GET_CompileShader(disp)) parameters
   7786 static inline _glptr_CompileShader GET_CompileShader(struct _glapi_table *disp) {
   7787    return (_glptr_CompileShader) (GET_by_offset(disp, _gloffset_CompileShader));
   7788 }
   7789 
   7790 static inline void SET_CompileShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   7791    SET_by_offset(disp, _gloffset_CompileShader, fn);
   7792 }
   7793 
   7794 typedef GLuint (GLAPIENTRYP _glptr_CreateProgram)(void);
   7795 #define CALL_CreateProgram(disp, parameters) \
   7796     (* GET_CreateProgram(disp)) parameters
   7797 static inline _glptr_CreateProgram GET_CreateProgram(struct _glapi_table *disp) {
   7798    return (_glptr_CreateProgram) (GET_by_offset(disp, _gloffset_CreateProgram));
   7799 }
   7800 
   7801 static inline void SET_CreateProgram(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(void)) {
   7802    SET_by_offset(disp, _gloffset_CreateProgram, fn);
   7803 }
   7804 
   7805 typedef GLuint (GLAPIENTRYP _glptr_CreateShader)(GLenum);
   7806 #define CALL_CreateShader(disp, parameters) \
   7807     (* GET_CreateShader(disp)) parameters
   7808 static inline _glptr_CreateShader GET_CreateShader(struct _glapi_table *disp) {
   7809    return (_glptr_CreateShader) (GET_by_offset(disp, _gloffset_CreateShader));
   7810 }
   7811 
   7812 static inline void SET_CreateShader(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum)) {
   7813    SET_by_offset(disp, _gloffset_CreateShader, fn);
   7814 }
   7815 
   7816 typedef void (GLAPIENTRYP _glptr_DeleteProgram)(GLuint);
   7817 #define CALL_DeleteProgram(disp, parameters) \
   7818     (* GET_DeleteProgram(disp)) parameters
   7819 static inline _glptr_DeleteProgram GET_DeleteProgram(struct _glapi_table *disp) {
   7820    return (_glptr_DeleteProgram) (GET_by_offset(disp, _gloffset_DeleteProgram));
   7821 }
   7822 
   7823 static inline void SET_DeleteProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   7824    SET_by_offset(disp, _gloffset_DeleteProgram, fn);
   7825 }
   7826 
   7827 typedef void (GLAPIENTRYP _glptr_DeleteShader)(GLuint);
   7828 #define CALL_DeleteShader(disp, parameters) \
   7829     (* GET_DeleteShader(disp)) parameters
   7830 static inline _glptr_DeleteShader GET_DeleteShader(struct _glapi_table *disp) {
   7831    return (_glptr_DeleteShader) (GET_by_offset(disp, _gloffset_DeleteShader));
   7832 }
   7833 
   7834 static inline void SET_DeleteShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   7835    SET_by_offset(disp, _gloffset_DeleteShader, fn);
   7836 }
   7837 
   7838 typedef void (GLAPIENTRYP _glptr_DetachShader)(GLuint, GLuint);
   7839 #define CALL_DetachShader(disp, parameters) \
   7840     (* GET_DetachShader(disp)) parameters
   7841 static inline _glptr_DetachShader GET_DetachShader(struct _glapi_table *disp) {
   7842    return (_glptr_DetachShader) (GET_by_offset(disp, _gloffset_DetachShader));
   7843 }
   7844 
   7845 static inline void SET_DetachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   7846    SET_by_offset(disp, _gloffset_DetachShader, fn);
   7847 }
   7848 
   7849 typedef void (GLAPIENTRYP _glptr_DisableVertexAttribArray)(GLuint);
   7850 #define CALL_DisableVertexAttribArray(disp, parameters) \
   7851     (* GET_DisableVertexAttribArray(disp)) parameters
   7852 static inline _glptr_DisableVertexAttribArray GET_DisableVertexAttribArray(struct _glapi_table *disp) {
   7853    return (_glptr_DisableVertexAttribArray) (GET_by_offset(disp, _gloffset_DisableVertexAttribArray));
   7854 }
   7855 
   7856 static inline void SET_DisableVertexAttribArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   7857    SET_by_offset(disp, _gloffset_DisableVertexAttribArray, fn);
   7858 }
   7859 
   7860 typedef void (GLAPIENTRYP _glptr_DrawBuffers)(GLsizei, const GLenum *);
   7861 #define CALL_DrawBuffers(disp, parameters) \
   7862     (* GET_DrawBuffers(disp)) parameters
   7863 static inline _glptr_DrawBuffers GET_DrawBuffers(struct _glapi_table *disp) {
   7864    return (_glptr_DrawBuffers) (GET_by_offset(disp, _gloffset_DrawBuffers));
   7865 }
   7866 
   7867 static inline void SET_DrawBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLenum *)) {
   7868    SET_by_offset(disp, _gloffset_DrawBuffers, fn);
   7869 }
   7870 
   7871 typedef void (GLAPIENTRYP _glptr_EnableVertexAttribArray)(GLuint);
   7872 #define CALL_EnableVertexAttribArray(disp, parameters) \
   7873     (* GET_EnableVertexAttribArray(disp)) parameters
   7874 static inline _glptr_EnableVertexAttribArray GET_EnableVertexAttribArray(struct _glapi_table *disp) {
   7875    return (_glptr_EnableVertexAttribArray) (GET_by_offset(disp, _gloffset_EnableVertexAttribArray));
   7876 }
   7877 
   7878 static inline void SET_EnableVertexAttribArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   7879    SET_by_offset(disp, _gloffset_EnableVertexAttribArray, fn);
   7880 }
   7881 
   7882 typedef void (GLAPIENTRYP _glptr_GetActiveAttrib)(GLuint, GLuint, GLsizei , GLsizei *, GLint *, GLenum *, GLchar *);
   7883 #define CALL_GetActiveAttrib(disp, parameters) \
   7884     (* GET_GetActiveAttrib(disp)) parameters
   7885 static inline _glptr_GetActiveAttrib GET_GetActiveAttrib(struct _glapi_table *disp) {
   7886    return (_glptr_GetActiveAttrib) (GET_by_offset(disp, _gloffset_GetActiveAttrib));
   7887 }
   7888 
   7889 static inline void SET_GetActiveAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei , GLsizei *, GLint *, GLenum *, GLchar *)) {
   7890    SET_by_offset(disp, _gloffset_GetActiveAttrib, fn);
   7891 }
   7892 
   7893 typedef void (GLAPIENTRYP _glptr_GetActiveUniform)(GLuint, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLchar *);
   7894 #define CALL_GetActiveUniform(disp, parameters) \
   7895     (* GET_GetActiveUniform(disp)) parameters
   7896 static inline _glptr_GetActiveUniform GET_GetActiveUniform(struct _glapi_table *disp) {
   7897    return (_glptr_GetActiveUniform) (GET_by_offset(disp, _gloffset_GetActiveUniform));
   7898 }
   7899 
   7900 static inline void SET_GetActiveUniform(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLchar *)) {
   7901    SET_by_offset(disp, _gloffset_GetActiveUniform, fn);
   7902 }
   7903 
   7904 typedef void (GLAPIENTRYP _glptr_GetAttachedShaders)(GLuint, GLsizei, GLsizei *, GLuint *);
   7905 #define CALL_GetAttachedShaders(disp, parameters) \
   7906     (* GET_GetAttachedShaders(disp)) parameters
   7907 static inline _glptr_GetAttachedShaders GET_GetAttachedShaders(struct _glapi_table *disp) {
   7908    return (_glptr_GetAttachedShaders) (GET_by_offset(disp, _gloffset_GetAttachedShaders));
   7909 }
   7910 
   7911 static inline void SET_GetAttachedShaders(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLuint *)) {
   7912    SET_by_offset(disp, _gloffset_GetAttachedShaders, fn);
   7913 }
   7914 
   7915 typedef GLint (GLAPIENTRYP _glptr_GetAttribLocation)(GLuint, const GLchar *);
   7916 #define CALL_GetAttribLocation(disp, parameters) \
   7917     (* GET_GetAttribLocation(disp)) parameters
   7918 static inline _glptr_GetAttribLocation GET_GetAttribLocation(struct _glapi_table *disp) {
   7919    return (_glptr_GetAttribLocation) (GET_by_offset(disp, _gloffset_GetAttribLocation));
   7920 }
   7921 
   7922 static inline void SET_GetAttribLocation(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
   7923    SET_by_offset(disp, _gloffset_GetAttribLocation, fn);
   7924 }
   7925 
   7926 typedef void (GLAPIENTRYP _glptr_GetProgramInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
   7927 #define CALL_GetProgramInfoLog(disp, parameters) \
   7928     (* GET_GetProgramInfoLog(disp)) parameters
   7929 static inline _glptr_GetProgramInfoLog GET_GetProgramInfoLog(struct _glapi_table *disp) {
   7930    return (_glptr_GetProgramInfoLog) (GET_by_offset(disp, _gloffset_GetProgramInfoLog));
   7931 }
   7932 
   7933 static inline void SET_GetProgramInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
   7934    SET_by_offset(disp, _gloffset_GetProgramInfoLog, fn);
   7935 }
   7936 
   7937 typedef void (GLAPIENTRYP _glptr_GetProgramiv)(GLuint, GLenum, GLint *);
   7938 #define CALL_GetProgramiv(disp, parameters) \
   7939     (* GET_GetProgramiv(disp)) parameters
   7940 static inline _glptr_GetProgramiv GET_GetProgramiv(struct _glapi_table *disp) {
   7941    return (_glptr_GetProgramiv) (GET_by_offset(disp, _gloffset_GetProgramiv));
   7942 }
   7943 
   7944 static inline void SET_GetProgramiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   7945    SET_by_offset(disp, _gloffset_GetProgramiv, fn);
   7946 }
   7947 
   7948 typedef void (GLAPIENTRYP _glptr_GetShaderInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
   7949 #define CALL_GetShaderInfoLog(disp, parameters) \
   7950     (* GET_GetShaderInfoLog(disp)) parameters
   7951 static inline _glptr_GetShaderInfoLog GET_GetShaderInfoLog(struct _glapi_table *disp) {
   7952    return (_glptr_GetShaderInfoLog) (GET_by_offset(disp, _gloffset_GetShaderInfoLog));
   7953 }
   7954 
   7955 static inline void SET_GetShaderInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
   7956    SET_by_offset(disp, _gloffset_GetShaderInfoLog, fn);
   7957 }
   7958 
   7959 typedef void (GLAPIENTRYP _glptr_GetShaderSource)(GLuint, GLsizei, GLsizei *, GLchar *);
   7960 #define CALL_GetShaderSource(disp, parameters) \
   7961     (* GET_GetShaderSource(disp)) parameters
   7962 static inline _glptr_GetShaderSource GET_GetShaderSource(struct _glapi_table *disp) {
   7963    return (_glptr_GetShaderSource) (GET_by_offset(disp, _gloffset_GetShaderSource));
   7964 }
   7965 
   7966 static inline void SET_GetShaderSource(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
   7967    SET_by_offset(disp, _gloffset_GetShaderSource, fn);
   7968 }
   7969 
   7970 typedef void (GLAPIENTRYP _glptr_GetShaderiv)(GLuint, GLenum, GLint *);
   7971 #define CALL_GetShaderiv(disp, parameters) \
   7972     (* GET_GetShaderiv(disp)) parameters
   7973 static inline _glptr_GetShaderiv GET_GetShaderiv(struct _glapi_table *disp) {
   7974    return (_glptr_GetShaderiv) (GET_by_offset(disp, _gloffset_GetShaderiv));
   7975 }
   7976 
   7977 static inline void SET_GetShaderiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   7978    SET_by_offset(disp, _gloffset_GetShaderiv, fn);
   7979 }
   7980 
   7981 typedef GLint (GLAPIENTRYP _glptr_GetUniformLocation)(GLuint, const GLchar *);
   7982 #define CALL_GetUniformLocation(disp, parameters) \
   7983     (* GET_GetUniformLocation(disp)) parameters
   7984 static inline _glptr_GetUniformLocation GET_GetUniformLocation(struct _glapi_table *disp) {
   7985    return (_glptr_GetUniformLocation) (GET_by_offset(disp, _gloffset_GetUniformLocation));
   7986 }
   7987 
   7988 static inline void SET_GetUniformLocation(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
   7989    SET_by_offset(disp, _gloffset_GetUniformLocation, fn);
   7990 }
   7991 
   7992 typedef void (GLAPIENTRYP _glptr_GetUniformfv)(GLuint, GLint, GLfloat *);
   7993 #define CALL_GetUniformfv(disp, parameters) \
   7994     (* GET_GetUniformfv(disp)) parameters
   7995 static inline _glptr_GetUniformfv GET_GetUniformfv(struct _glapi_table *disp) {
   7996    return (_glptr_GetUniformfv) (GET_by_offset(disp, _gloffset_GetUniformfv));
   7997 }
   7998 
   7999 static inline void SET_GetUniformfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLfloat *)) {
   8000    SET_by_offset(disp, _gloffset_GetUniformfv, fn);
   8001 }
   8002 
   8003 typedef void (GLAPIENTRYP _glptr_GetUniformiv)(GLuint, GLint, GLint *);
   8004 #define CALL_GetUniformiv(disp, parameters) \
   8005     (* GET_GetUniformiv(disp)) parameters
   8006 static inline _glptr_GetUniformiv GET_GetUniformiv(struct _glapi_table *disp) {
   8007    return (_glptr_GetUniformiv) (GET_by_offset(disp, _gloffset_GetUniformiv));
   8008 }
   8009 
   8010 static inline void SET_GetUniformiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint *)) {
   8011    SET_by_offset(disp, _gloffset_GetUniformiv, fn);
   8012 }
   8013 
   8014 typedef void (GLAPIENTRYP _glptr_GetVertexAttribPointerv)(GLuint, GLenum, GLvoid **);
   8015 #define CALL_GetVertexAttribPointerv(disp, parameters) \
   8016     (* GET_GetVertexAttribPointerv(disp)) parameters
   8017 static inline _glptr_GetVertexAttribPointerv GET_GetVertexAttribPointerv(struct _glapi_table *disp) {
   8018    return (_glptr_GetVertexAttribPointerv) (GET_by_offset(disp, _gloffset_GetVertexAttribPointerv));
   8019 }
   8020 
   8021 static inline void SET_GetVertexAttribPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLvoid **)) {
   8022    SET_by_offset(disp, _gloffset_GetVertexAttribPointerv, fn);
   8023 }
   8024 
   8025 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdv)(GLuint, GLenum, GLdouble *);
   8026 #define CALL_GetVertexAttribdv(disp, parameters) \
   8027     (* GET_GetVertexAttribdv(disp)) parameters
   8028 static inline _glptr_GetVertexAttribdv GET_GetVertexAttribdv(struct _glapi_table *disp) {
   8029    return (_glptr_GetVertexAttribdv) (GET_by_offset(disp, _gloffset_GetVertexAttribdv));
   8030 }
   8031 
   8032 static inline void SET_GetVertexAttribdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
   8033    SET_by_offset(disp, _gloffset_GetVertexAttribdv, fn);
   8034 }
   8035 
   8036 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfv)(GLuint, GLenum, GLfloat *);
   8037 #define CALL_GetVertexAttribfv(disp, parameters) \
   8038     (* GET_GetVertexAttribfv(disp)) parameters
   8039 static inline _glptr_GetVertexAttribfv GET_GetVertexAttribfv(struct _glapi_table *disp) {
   8040    return (_glptr_GetVertexAttribfv) (GET_by_offset(disp, _gloffset_GetVertexAttribfv));
   8041 }
   8042 
   8043 static inline void SET_GetVertexAttribfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
   8044    SET_by_offset(disp, _gloffset_GetVertexAttribfv, fn);
   8045 }
   8046 
   8047 typedef void (GLAPIENTRYP _glptr_GetVertexAttribiv)(GLuint, GLenum, GLint *);
   8048 #define CALL_GetVertexAttribiv(disp, parameters) \
   8049     (* GET_GetVertexAttribiv(disp)) parameters
   8050 static inline _glptr_GetVertexAttribiv GET_GetVertexAttribiv(struct _glapi_table *disp) {
   8051    return (_glptr_GetVertexAttribiv) (GET_by_offset(disp, _gloffset_GetVertexAttribiv));
   8052 }
   8053 
   8054 static inline void SET_GetVertexAttribiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   8055    SET_by_offset(disp, _gloffset_GetVertexAttribiv, fn);
   8056 }
   8057 
   8058 typedef GLboolean (GLAPIENTRYP _glptr_IsProgram)(GLuint);
   8059 #define CALL_IsProgram(disp, parameters) \
   8060     (* GET_IsProgram(disp)) parameters
   8061 static inline _glptr_IsProgram GET_IsProgram(struct _glapi_table *disp) {
   8062    return (_glptr_IsProgram) (GET_by_offset(disp, _gloffset_IsProgram));
   8063 }
   8064 
   8065 static inline void SET_IsProgram(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   8066    SET_by_offset(disp, _gloffset_IsProgram, fn);
   8067 }
   8068 
   8069 typedef GLboolean (GLAPIENTRYP _glptr_IsShader)(GLuint);
   8070 #define CALL_IsShader(disp, parameters) \
   8071     (* GET_IsShader(disp)) parameters
   8072 static inline _glptr_IsShader GET_IsShader(struct _glapi_table *disp) {
   8073    return (_glptr_IsShader) (GET_by_offset(disp, _gloffset_IsShader));
   8074 }
   8075 
   8076 static inline void SET_IsShader(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   8077    SET_by_offset(disp, _gloffset_IsShader, fn);
   8078 }
   8079 
   8080 typedef void (GLAPIENTRYP _glptr_LinkProgram)(GLuint);
   8081 #define CALL_LinkProgram(disp, parameters) \
   8082     (* GET_LinkProgram(disp)) parameters
   8083 static inline _glptr_LinkProgram GET_LinkProgram(struct _glapi_table *disp) {
   8084    return (_glptr_LinkProgram) (GET_by_offset(disp, _gloffset_LinkProgram));
   8085 }
   8086 
   8087 static inline void SET_LinkProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   8088    SET_by_offset(disp, _gloffset_LinkProgram, fn);
   8089 }
   8090 
   8091 typedef void (GLAPIENTRYP _glptr_ShaderSource)(GLuint, GLsizei, const GLchar * const *, const GLint *);
   8092 #define CALL_ShaderSource(disp, parameters) \
   8093     (* GET_ShaderSource(disp)) parameters
   8094 static inline _glptr_ShaderSource GET_ShaderSource(struct _glapi_table *disp) {
   8095    return (_glptr_ShaderSource) (GET_by_offset(disp, _gloffset_ShaderSource));
   8096 }
   8097 
   8098 static inline void SET_ShaderSource(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLchar * const *, const GLint *)) {
   8099    SET_by_offset(disp, _gloffset_ShaderSource, fn);
   8100 }
   8101 
   8102 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparate)(GLenum, GLenum, GLint, GLuint);
   8103 #define CALL_StencilFuncSeparate(disp, parameters) \
   8104     (* GET_StencilFuncSeparate(disp)) parameters
   8105 static inline _glptr_StencilFuncSeparate GET_StencilFuncSeparate(struct _glapi_table *disp) {
   8106    return (_glptr_StencilFuncSeparate) (GET_by_offset(disp, _gloffset_StencilFuncSeparate));
   8107 }
   8108 
   8109 static inline void SET_StencilFuncSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) {
   8110    SET_by_offset(disp, _gloffset_StencilFuncSeparate, fn);
   8111 }
   8112 
   8113 typedef void (GLAPIENTRYP _glptr_StencilMaskSeparate)(GLenum, GLuint);
   8114 #define CALL_StencilMaskSeparate(disp, parameters) \
   8115     (* GET_StencilMaskSeparate(disp)) parameters
   8116 static inline _glptr_StencilMaskSeparate GET_StencilMaskSeparate(struct _glapi_table *disp) {
   8117    return (_glptr_StencilMaskSeparate) (GET_by_offset(disp, _gloffset_StencilMaskSeparate));
   8118 }
   8119 
   8120 static inline void SET_StencilMaskSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   8121    SET_by_offset(disp, _gloffset_StencilMaskSeparate, fn);
   8122 }
   8123 
   8124 typedef void (GLAPIENTRYP _glptr_StencilOpSeparate)(GLenum, GLenum, GLenum, GLenum);
   8125 #define CALL_StencilOpSeparate(disp, parameters) \
   8126     (* GET_StencilOpSeparate(disp)) parameters
   8127 static inline _glptr_StencilOpSeparate GET_StencilOpSeparate(struct _glapi_table *disp) {
   8128    return (_glptr_StencilOpSeparate) (GET_by_offset(disp, _gloffset_StencilOpSeparate));
   8129 }
   8130 
   8131 static inline void SET_StencilOpSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
   8132    SET_by_offset(disp, _gloffset_StencilOpSeparate, fn);
   8133 }
   8134 
   8135 typedef void (GLAPIENTRYP _glptr_Uniform1f)(GLint, GLfloat);
   8136 #define CALL_Uniform1f(disp, parameters) \
   8137     (* GET_Uniform1f(disp)) parameters
   8138 static inline _glptr_Uniform1f GET_Uniform1f(struct _glapi_table *disp) {
   8139    return (_glptr_Uniform1f) (GET_by_offset(disp, _gloffset_Uniform1f));
   8140 }
   8141 
   8142 static inline void SET_Uniform1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat)) {
   8143    SET_by_offset(disp, _gloffset_Uniform1f, fn);
   8144 }
   8145 
   8146 typedef void (GLAPIENTRYP _glptr_Uniform1fv)(GLint, GLsizei, const GLfloat *);
   8147 #define CALL_Uniform1fv(disp, parameters) \
   8148     (* GET_Uniform1fv(disp)) parameters
   8149 static inline _glptr_Uniform1fv GET_Uniform1fv(struct _glapi_table *disp) {
   8150    return (_glptr_Uniform1fv) (GET_by_offset(disp, _gloffset_Uniform1fv));
   8151 }
   8152 
   8153 static inline void SET_Uniform1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
   8154    SET_by_offset(disp, _gloffset_Uniform1fv, fn);
   8155 }
   8156 
   8157 typedef void (GLAPIENTRYP _glptr_Uniform1i)(GLint, GLint);
   8158 #define CALL_Uniform1i(disp, parameters) \
   8159     (* GET_Uniform1i(disp)) parameters
   8160 static inline _glptr_Uniform1i GET_Uniform1i(struct _glapi_table *disp) {
   8161    return (_glptr_Uniform1i) (GET_by_offset(disp, _gloffset_Uniform1i));
   8162 }
   8163 
   8164 static inline void SET_Uniform1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
   8165    SET_by_offset(disp, _gloffset_Uniform1i, fn);
   8166 }
   8167 
   8168 typedef void (GLAPIENTRYP _glptr_Uniform1iv)(GLint, GLsizei, const GLint *);
   8169 #define CALL_Uniform1iv(disp, parameters) \
   8170     (* GET_Uniform1iv(disp)) parameters
   8171 static inline _glptr_Uniform1iv GET_Uniform1iv(struct _glapi_table *disp) {
   8172    return (_glptr_Uniform1iv) (GET_by_offset(disp, _gloffset_Uniform1iv));
   8173 }
   8174 
   8175 static inline void SET_Uniform1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
   8176    SET_by_offset(disp, _gloffset_Uniform1iv, fn);
   8177 }
   8178 
   8179 typedef void (GLAPIENTRYP _glptr_Uniform2f)(GLint, GLfloat, GLfloat);
   8180 #define CALL_Uniform2f(disp, parameters) \
   8181     (* GET_Uniform2f(disp)) parameters
   8182 static inline _glptr_Uniform2f GET_Uniform2f(struct _glapi_table *disp) {
   8183    return (_glptr_Uniform2f) (GET_by_offset(disp, _gloffset_Uniform2f));
   8184 }
   8185 
   8186 static inline void SET_Uniform2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
   8187    SET_by_offset(disp, _gloffset_Uniform2f, fn);
   8188 }
   8189 
   8190 typedef void (GLAPIENTRYP _glptr_Uniform2fv)(GLint, GLsizei, const GLfloat *);
   8191 #define CALL_Uniform2fv(disp, parameters) \
   8192     (* GET_Uniform2fv(disp)) parameters
   8193 static inline _glptr_Uniform2fv GET_Uniform2fv(struct _glapi_table *disp) {
   8194    return (_glptr_Uniform2fv) (GET_by_offset(disp, _gloffset_Uniform2fv));
   8195 }
   8196 
   8197 static inline void SET_Uniform2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
   8198    SET_by_offset(disp, _gloffset_Uniform2fv, fn);
   8199 }
   8200 
   8201 typedef void (GLAPIENTRYP _glptr_Uniform2i)(GLint, GLint, GLint);
   8202 #define CALL_Uniform2i(disp, parameters) \
   8203     (* GET_Uniform2i(disp)) parameters
   8204 static inline _glptr_Uniform2i GET_Uniform2i(struct _glapi_table *disp) {
   8205    return (_glptr_Uniform2i) (GET_by_offset(disp, _gloffset_Uniform2i));
   8206 }
   8207 
   8208 static inline void SET_Uniform2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
   8209    SET_by_offset(disp, _gloffset_Uniform2i, fn);
   8210 }
   8211 
   8212 typedef void (GLAPIENTRYP _glptr_Uniform2iv)(GLint, GLsizei, const GLint *);
   8213 #define CALL_Uniform2iv(disp, parameters) \
   8214     (* GET_Uniform2iv(disp)) parameters
   8215 static inline _glptr_Uniform2iv GET_Uniform2iv(struct _glapi_table *disp) {
   8216    return (_glptr_Uniform2iv) (GET_by_offset(disp, _gloffset_Uniform2iv));
   8217 }
   8218 
   8219 static inline void SET_Uniform2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
   8220    SET_by_offset(disp, _gloffset_Uniform2iv, fn);
   8221 }
   8222 
   8223 typedef void (GLAPIENTRYP _glptr_Uniform3f)(GLint, GLfloat, GLfloat, GLfloat);
   8224 #define CALL_Uniform3f(disp, parameters) \
   8225     (* GET_Uniform3f(disp)) parameters
   8226 static inline _glptr_Uniform3f GET_Uniform3f(struct _glapi_table *disp) {
   8227    return (_glptr_Uniform3f) (GET_by_offset(disp, _gloffset_Uniform3f));
   8228 }
   8229 
   8230 static inline void SET_Uniform3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat)) {
   8231    SET_by_offset(disp, _gloffset_Uniform3f, fn);
   8232 }
   8233 
   8234 typedef void (GLAPIENTRYP _glptr_Uniform3fv)(GLint, GLsizei, const GLfloat *);
   8235 #define CALL_Uniform3fv(disp, parameters) \
   8236     (* GET_Uniform3fv(disp)) parameters
   8237 static inline _glptr_Uniform3fv GET_Uniform3fv(struct _glapi_table *disp) {
   8238    return (_glptr_Uniform3fv) (GET_by_offset(disp, _gloffset_Uniform3fv));
   8239 }
   8240 
   8241 static inline void SET_Uniform3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
   8242    SET_by_offset(disp, _gloffset_Uniform3fv, fn);
   8243 }
   8244 
   8245 typedef void (GLAPIENTRYP _glptr_Uniform3i)(GLint, GLint, GLint, GLint);
   8246 #define CALL_Uniform3i(disp, parameters) \
   8247     (* GET_Uniform3i(disp)) parameters
   8248 static inline _glptr_Uniform3i GET_Uniform3i(struct _glapi_table *disp) {
   8249    return (_glptr_Uniform3i) (GET_by_offset(disp, _gloffset_Uniform3i));
   8250 }
   8251 
   8252 static inline void SET_Uniform3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   8253    SET_by_offset(disp, _gloffset_Uniform3i, fn);
   8254 }
   8255 
   8256 typedef void (GLAPIENTRYP _glptr_Uniform3iv)(GLint, GLsizei, const GLint *);
   8257 #define CALL_Uniform3iv(disp, parameters) \
   8258     (* GET_Uniform3iv(disp)) parameters
   8259 static inline _glptr_Uniform3iv GET_Uniform3iv(struct _glapi_table *disp) {
   8260    return (_glptr_Uniform3iv) (GET_by_offset(disp, _gloffset_Uniform3iv));
   8261 }
   8262 
   8263 static inline void SET_Uniform3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
   8264    SET_by_offset(disp, _gloffset_Uniform3iv, fn);
   8265 }
   8266 
   8267 typedef void (GLAPIENTRYP _glptr_Uniform4f)(GLint, GLfloat, GLfloat, GLfloat, GLfloat);
   8268 #define CALL_Uniform4f(disp, parameters) \
   8269     (* GET_Uniform4f(disp)) parameters
   8270 static inline _glptr_Uniform4f GET_Uniform4f(struct _glapi_table *disp) {
   8271    return (_glptr_Uniform4f) (GET_by_offset(disp, _gloffset_Uniform4f));
   8272 }
   8273 
   8274 static inline void SET_Uniform4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   8275    SET_by_offset(disp, _gloffset_Uniform4f, fn);
   8276 }
   8277 
   8278 typedef void (GLAPIENTRYP _glptr_Uniform4fv)(GLint, GLsizei, const GLfloat *);
   8279 #define CALL_Uniform4fv(disp, parameters) \
   8280     (* GET_Uniform4fv(disp)) parameters
   8281 static inline _glptr_Uniform4fv GET_Uniform4fv(struct _glapi_table *disp) {
   8282    return (_glptr_Uniform4fv) (GET_by_offset(disp, _gloffset_Uniform4fv));
   8283 }
   8284 
   8285 static inline void SET_Uniform4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) {
   8286    SET_by_offset(disp, _gloffset_Uniform4fv, fn);
   8287 }
   8288 
   8289 typedef void (GLAPIENTRYP _glptr_Uniform4i)(GLint, GLint, GLint, GLint, GLint);
   8290 #define CALL_Uniform4i(disp, parameters) \
   8291     (* GET_Uniform4i(disp)) parameters
   8292 static inline _glptr_Uniform4i GET_Uniform4i(struct _glapi_table *disp) {
   8293    return (_glptr_Uniform4i) (GET_by_offset(disp, _gloffset_Uniform4i));
   8294 }
   8295 
   8296 static inline void SET_Uniform4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint)) {
   8297    SET_by_offset(disp, _gloffset_Uniform4i, fn);
   8298 }
   8299 
   8300 typedef void (GLAPIENTRYP _glptr_Uniform4iv)(GLint, GLsizei, const GLint *);
   8301 #define CALL_Uniform4iv(disp, parameters) \
   8302     (* GET_Uniform4iv(disp)) parameters
   8303 static inline _glptr_Uniform4iv GET_Uniform4iv(struct _glapi_table *disp) {
   8304    return (_glptr_Uniform4iv) (GET_by_offset(disp, _gloffset_Uniform4iv));
   8305 }
   8306 
   8307 static inline void SET_Uniform4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) {
   8308    SET_by_offset(disp, _gloffset_Uniform4iv, fn);
   8309 }
   8310 
   8311 typedef void (GLAPIENTRYP _glptr_UniformMatrix2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8312 #define CALL_UniformMatrix2fv(disp, parameters) \
   8313     (* GET_UniformMatrix2fv(disp)) parameters
   8314 static inline _glptr_UniformMatrix2fv GET_UniformMatrix2fv(struct _glapi_table *disp) {
   8315    return (_glptr_UniformMatrix2fv) (GET_by_offset(disp, _gloffset_UniformMatrix2fv));
   8316 }
   8317 
   8318 static inline void SET_UniformMatrix2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8319    SET_by_offset(disp, _gloffset_UniformMatrix2fv, fn);
   8320 }
   8321 
   8322 typedef void (GLAPIENTRYP _glptr_UniformMatrix3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8323 #define CALL_UniformMatrix3fv(disp, parameters) \
   8324     (* GET_UniformMatrix3fv(disp)) parameters
   8325 static inline _glptr_UniformMatrix3fv GET_UniformMatrix3fv(struct _glapi_table *disp) {
   8326    return (_glptr_UniformMatrix3fv) (GET_by_offset(disp, _gloffset_UniformMatrix3fv));
   8327 }
   8328 
   8329 static inline void SET_UniformMatrix3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8330    SET_by_offset(disp, _gloffset_UniformMatrix3fv, fn);
   8331 }
   8332 
   8333 typedef void (GLAPIENTRYP _glptr_UniformMatrix4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8334 #define CALL_UniformMatrix4fv(disp, parameters) \
   8335     (* GET_UniformMatrix4fv(disp)) parameters
   8336 static inline _glptr_UniformMatrix4fv GET_UniformMatrix4fv(struct _glapi_table *disp) {
   8337    return (_glptr_UniformMatrix4fv) (GET_by_offset(disp, _gloffset_UniformMatrix4fv));
   8338 }
   8339 
   8340 static inline void SET_UniformMatrix4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8341    SET_by_offset(disp, _gloffset_UniformMatrix4fv, fn);
   8342 }
   8343 
   8344 typedef void (GLAPIENTRYP _glptr_UseProgram)(GLuint);
   8345 #define CALL_UseProgram(disp, parameters) \
   8346     (* GET_UseProgram(disp)) parameters
   8347 static inline _glptr_UseProgram GET_UseProgram(struct _glapi_table *disp) {
   8348    return (_glptr_UseProgram) (GET_by_offset(disp, _gloffset_UseProgram));
   8349 }
   8350 
   8351 static inline void SET_UseProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   8352    SET_by_offset(disp, _gloffset_UseProgram, fn);
   8353 }
   8354 
   8355 typedef void (GLAPIENTRYP _glptr_ValidateProgram)(GLuint);
   8356 #define CALL_ValidateProgram(disp, parameters) \
   8357     (* GET_ValidateProgram(disp)) parameters
   8358 static inline _glptr_ValidateProgram GET_ValidateProgram(struct _glapi_table *disp) {
   8359    return (_glptr_ValidateProgram) (GET_by_offset(disp, _gloffset_ValidateProgram));
   8360 }
   8361 
   8362 static inline void SET_ValidateProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   8363    SET_by_offset(disp, _gloffset_ValidateProgram, fn);
   8364 }
   8365 
   8366 typedef void (GLAPIENTRYP _glptr_VertexAttrib1d)(GLuint, GLdouble);
   8367 #define CALL_VertexAttrib1d(disp, parameters) \
   8368     (* GET_VertexAttrib1d(disp)) parameters
   8369 static inline _glptr_VertexAttrib1d GET_VertexAttrib1d(struct _glapi_table *disp) {
   8370    return (_glptr_VertexAttrib1d) (GET_by_offset(disp, _gloffset_VertexAttrib1d));
   8371 }
   8372 
   8373 static inline void SET_VertexAttrib1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
   8374    SET_by_offset(disp, _gloffset_VertexAttrib1d, fn);
   8375 }
   8376 
   8377 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dv)(GLuint, const GLdouble *);
   8378 #define CALL_VertexAttrib1dv(disp, parameters) \
   8379     (* GET_VertexAttrib1dv(disp)) parameters
   8380 static inline _glptr_VertexAttrib1dv GET_VertexAttrib1dv(struct _glapi_table *disp) {
   8381    return (_glptr_VertexAttrib1dv) (GET_by_offset(disp, _gloffset_VertexAttrib1dv));
   8382 }
   8383 
   8384 static inline void SET_VertexAttrib1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   8385    SET_by_offset(disp, _gloffset_VertexAttrib1dv, fn);
   8386 }
   8387 
   8388 typedef void (GLAPIENTRYP _glptr_VertexAttrib1s)(GLuint, GLshort);
   8389 #define CALL_VertexAttrib1s(disp, parameters) \
   8390     (* GET_VertexAttrib1s(disp)) parameters
   8391 static inline _glptr_VertexAttrib1s GET_VertexAttrib1s(struct _glapi_table *disp) {
   8392    return (_glptr_VertexAttrib1s) (GET_by_offset(disp, _gloffset_VertexAttrib1s));
   8393 }
   8394 
   8395 static inline void SET_VertexAttrib1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
   8396    SET_by_offset(disp, _gloffset_VertexAttrib1s, fn);
   8397 }
   8398 
   8399 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sv)(GLuint, const GLshort *);
   8400 #define CALL_VertexAttrib1sv(disp, parameters) \
   8401     (* GET_VertexAttrib1sv(disp)) parameters
   8402 static inline _glptr_VertexAttrib1sv GET_VertexAttrib1sv(struct _glapi_table *disp) {
   8403    return (_glptr_VertexAttrib1sv) (GET_by_offset(disp, _gloffset_VertexAttrib1sv));
   8404 }
   8405 
   8406 static inline void SET_VertexAttrib1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   8407    SET_by_offset(disp, _gloffset_VertexAttrib1sv, fn);
   8408 }
   8409 
   8410 typedef void (GLAPIENTRYP _glptr_VertexAttrib2d)(GLuint, GLdouble, GLdouble);
   8411 #define CALL_VertexAttrib2d(disp, parameters) \
   8412     (* GET_VertexAttrib2d(disp)) parameters
   8413 static inline _glptr_VertexAttrib2d GET_VertexAttrib2d(struct _glapi_table *disp) {
   8414    return (_glptr_VertexAttrib2d) (GET_by_offset(disp, _gloffset_VertexAttrib2d));
   8415 }
   8416 
   8417 static inline void SET_VertexAttrib2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
   8418    SET_by_offset(disp, _gloffset_VertexAttrib2d, fn);
   8419 }
   8420 
   8421 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dv)(GLuint, const GLdouble *);
   8422 #define CALL_VertexAttrib2dv(disp, parameters) \
   8423     (* GET_VertexAttrib2dv(disp)) parameters
   8424 static inline _glptr_VertexAttrib2dv GET_VertexAttrib2dv(struct _glapi_table *disp) {
   8425    return (_glptr_VertexAttrib2dv) (GET_by_offset(disp, _gloffset_VertexAttrib2dv));
   8426 }
   8427 
   8428 static inline void SET_VertexAttrib2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   8429    SET_by_offset(disp, _gloffset_VertexAttrib2dv, fn);
   8430 }
   8431 
   8432 typedef void (GLAPIENTRYP _glptr_VertexAttrib2s)(GLuint, GLshort, GLshort);
   8433 #define CALL_VertexAttrib2s(disp, parameters) \
   8434     (* GET_VertexAttrib2s(disp)) parameters
   8435 static inline _glptr_VertexAttrib2s GET_VertexAttrib2s(struct _glapi_table *disp) {
   8436    return (_glptr_VertexAttrib2s) (GET_by_offset(disp, _gloffset_VertexAttrib2s));
   8437 }
   8438 
   8439 static inline void SET_VertexAttrib2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
   8440    SET_by_offset(disp, _gloffset_VertexAttrib2s, fn);
   8441 }
   8442 
   8443 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sv)(GLuint, const GLshort *);
   8444 #define CALL_VertexAttrib2sv(disp, parameters) \
   8445     (* GET_VertexAttrib2sv(disp)) parameters
   8446 static inline _glptr_VertexAttrib2sv GET_VertexAttrib2sv(struct _glapi_table *disp) {
   8447    return (_glptr_VertexAttrib2sv) (GET_by_offset(disp, _gloffset_VertexAttrib2sv));
   8448 }
   8449 
   8450 static inline void SET_VertexAttrib2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   8451    SET_by_offset(disp, _gloffset_VertexAttrib2sv, fn);
   8452 }
   8453 
   8454 typedef void (GLAPIENTRYP _glptr_VertexAttrib3d)(GLuint, GLdouble, GLdouble, GLdouble);
   8455 #define CALL_VertexAttrib3d(disp, parameters) \
   8456     (* GET_VertexAttrib3d(disp)) parameters
   8457 static inline _glptr_VertexAttrib3d GET_VertexAttrib3d(struct _glapi_table *disp) {
   8458    return (_glptr_VertexAttrib3d) (GET_by_offset(disp, _gloffset_VertexAttrib3d));
   8459 }
   8460 
   8461 static inline void SET_VertexAttrib3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
   8462    SET_by_offset(disp, _gloffset_VertexAttrib3d, fn);
   8463 }
   8464 
   8465 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dv)(GLuint, const GLdouble *);
   8466 #define CALL_VertexAttrib3dv(disp, parameters) \
   8467     (* GET_VertexAttrib3dv(disp)) parameters
   8468 static inline _glptr_VertexAttrib3dv GET_VertexAttrib3dv(struct _glapi_table *disp) {
   8469    return (_glptr_VertexAttrib3dv) (GET_by_offset(disp, _gloffset_VertexAttrib3dv));
   8470 }
   8471 
   8472 static inline void SET_VertexAttrib3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   8473    SET_by_offset(disp, _gloffset_VertexAttrib3dv, fn);
   8474 }
   8475 
   8476 typedef void (GLAPIENTRYP _glptr_VertexAttrib3s)(GLuint, GLshort, GLshort, GLshort);
   8477 #define CALL_VertexAttrib3s(disp, parameters) \
   8478     (* GET_VertexAttrib3s(disp)) parameters
   8479 static inline _glptr_VertexAttrib3s GET_VertexAttrib3s(struct _glapi_table *disp) {
   8480    return (_glptr_VertexAttrib3s) (GET_by_offset(disp, _gloffset_VertexAttrib3s));
   8481 }
   8482 
   8483 static inline void SET_VertexAttrib3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
   8484    SET_by_offset(disp, _gloffset_VertexAttrib3s, fn);
   8485 }
   8486 
   8487 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sv)(GLuint, const GLshort *);
   8488 #define CALL_VertexAttrib3sv(disp, parameters) \
   8489     (* GET_VertexAttrib3sv(disp)) parameters
   8490 static inline _glptr_VertexAttrib3sv GET_VertexAttrib3sv(struct _glapi_table *disp) {
   8491    return (_glptr_VertexAttrib3sv) (GET_by_offset(disp, _gloffset_VertexAttrib3sv));
   8492 }
   8493 
   8494 static inline void SET_VertexAttrib3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   8495    SET_by_offset(disp, _gloffset_VertexAttrib3sv, fn);
   8496 }
   8497 
   8498 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Nbv)(GLuint, const GLbyte *);
   8499 #define CALL_VertexAttrib4Nbv(disp, parameters) \
   8500     (* GET_VertexAttrib4Nbv(disp)) parameters
   8501 static inline _glptr_VertexAttrib4Nbv GET_VertexAttrib4Nbv(struct _glapi_table *disp) {
   8502    return (_glptr_VertexAttrib4Nbv) (GET_by_offset(disp, _gloffset_VertexAttrib4Nbv));
   8503 }
   8504 
   8505 static inline void SET_VertexAttrib4Nbv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
   8506    SET_by_offset(disp, _gloffset_VertexAttrib4Nbv, fn);
   8507 }
   8508 
   8509 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Niv)(GLuint, const GLint *);
   8510 #define CALL_VertexAttrib4Niv(disp, parameters) \
   8511     (* GET_VertexAttrib4Niv(disp)) parameters
   8512 static inline _glptr_VertexAttrib4Niv GET_VertexAttrib4Niv(struct _glapi_table *disp) {
   8513    return (_glptr_VertexAttrib4Niv) (GET_by_offset(disp, _gloffset_VertexAttrib4Niv));
   8514 }
   8515 
   8516 static inline void SET_VertexAttrib4Niv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   8517    SET_by_offset(disp, _gloffset_VertexAttrib4Niv, fn);
   8518 }
   8519 
   8520 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Nsv)(GLuint, const GLshort *);
   8521 #define CALL_VertexAttrib4Nsv(disp, parameters) \
   8522     (* GET_VertexAttrib4Nsv(disp)) parameters
   8523 static inline _glptr_VertexAttrib4Nsv GET_VertexAttrib4Nsv(struct _glapi_table *disp) {
   8524    return (_glptr_VertexAttrib4Nsv) (GET_by_offset(disp, _gloffset_VertexAttrib4Nsv));
   8525 }
   8526 
   8527 static inline void SET_VertexAttrib4Nsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   8528    SET_by_offset(disp, _gloffset_VertexAttrib4Nsv, fn);
   8529 }
   8530 
   8531 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Nub)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
   8532 #define CALL_VertexAttrib4Nub(disp, parameters) \
   8533     (* GET_VertexAttrib4Nub(disp)) parameters
   8534 static inline _glptr_VertexAttrib4Nub GET_VertexAttrib4Nub(struct _glapi_table *disp) {
   8535    return (_glptr_VertexAttrib4Nub) (GET_by_offset(disp, _gloffset_VertexAttrib4Nub));
   8536 }
   8537 
   8538 static inline void SET_VertexAttrib4Nub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
   8539    SET_by_offset(disp, _gloffset_VertexAttrib4Nub, fn);
   8540 }
   8541 
   8542 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Nubv)(GLuint, const GLubyte *);
   8543 #define CALL_VertexAttrib4Nubv(disp, parameters) \
   8544     (* GET_VertexAttrib4Nubv(disp)) parameters
   8545 static inline _glptr_VertexAttrib4Nubv GET_VertexAttrib4Nubv(struct _glapi_table *disp) {
   8546    return (_glptr_VertexAttrib4Nubv) (GET_by_offset(disp, _gloffset_VertexAttrib4Nubv));
   8547 }
   8548 
   8549 static inline void SET_VertexAttrib4Nubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
   8550    SET_by_offset(disp, _gloffset_VertexAttrib4Nubv, fn);
   8551 }
   8552 
   8553 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Nuiv)(GLuint, const GLuint *);
   8554 #define CALL_VertexAttrib4Nuiv(disp, parameters) \
   8555     (* GET_VertexAttrib4Nuiv(disp)) parameters
   8556 static inline _glptr_VertexAttrib4Nuiv GET_VertexAttrib4Nuiv(struct _glapi_table *disp) {
   8557    return (_glptr_VertexAttrib4Nuiv) (GET_by_offset(disp, _gloffset_VertexAttrib4Nuiv));
   8558 }
   8559 
   8560 static inline void SET_VertexAttrib4Nuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
   8561    SET_by_offset(disp, _gloffset_VertexAttrib4Nuiv, fn);
   8562 }
   8563 
   8564 typedef void (GLAPIENTRYP _glptr_VertexAttrib4Nusv)(GLuint, const GLushort *);
   8565 #define CALL_VertexAttrib4Nusv(disp, parameters) \
   8566     (* GET_VertexAttrib4Nusv(disp)) parameters
   8567 static inline _glptr_VertexAttrib4Nusv GET_VertexAttrib4Nusv(struct _glapi_table *disp) {
   8568    return (_glptr_VertexAttrib4Nusv) (GET_by_offset(disp, _gloffset_VertexAttrib4Nusv));
   8569 }
   8570 
   8571 static inline void SET_VertexAttrib4Nusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
   8572    SET_by_offset(disp, _gloffset_VertexAttrib4Nusv, fn);
   8573 }
   8574 
   8575 typedef void (GLAPIENTRYP _glptr_VertexAttrib4bv)(GLuint, const GLbyte *);
   8576 #define CALL_VertexAttrib4bv(disp, parameters) \
   8577     (* GET_VertexAttrib4bv(disp)) parameters
   8578 static inline _glptr_VertexAttrib4bv GET_VertexAttrib4bv(struct _glapi_table *disp) {
   8579    return (_glptr_VertexAttrib4bv) (GET_by_offset(disp, _gloffset_VertexAttrib4bv));
   8580 }
   8581 
   8582 static inline void SET_VertexAttrib4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
   8583    SET_by_offset(disp, _gloffset_VertexAttrib4bv, fn);
   8584 }
   8585 
   8586 typedef void (GLAPIENTRYP _glptr_VertexAttrib4d)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
   8587 #define CALL_VertexAttrib4d(disp, parameters) \
   8588     (* GET_VertexAttrib4d(disp)) parameters
   8589 static inline _glptr_VertexAttrib4d GET_VertexAttrib4d(struct _glapi_table *disp) {
   8590    return (_glptr_VertexAttrib4d) (GET_by_offset(disp, _gloffset_VertexAttrib4d));
   8591 }
   8592 
   8593 static inline void SET_VertexAttrib4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   8594    SET_by_offset(disp, _gloffset_VertexAttrib4d, fn);
   8595 }
   8596 
   8597 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dv)(GLuint, const GLdouble *);
   8598 #define CALL_VertexAttrib4dv(disp, parameters) \
   8599     (* GET_VertexAttrib4dv(disp)) parameters
   8600 static inline _glptr_VertexAttrib4dv GET_VertexAttrib4dv(struct _glapi_table *disp) {
   8601    return (_glptr_VertexAttrib4dv) (GET_by_offset(disp, _gloffset_VertexAttrib4dv));
   8602 }
   8603 
   8604 static inline void SET_VertexAttrib4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   8605    SET_by_offset(disp, _gloffset_VertexAttrib4dv, fn);
   8606 }
   8607 
   8608 typedef void (GLAPIENTRYP _glptr_VertexAttrib4iv)(GLuint, const GLint *);
   8609 #define CALL_VertexAttrib4iv(disp, parameters) \
   8610     (* GET_VertexAttrib4iv(disp)) parameters
   8611 static inline _glptr_VertexAttrib4iv GET_VertexAttrib4iv(struct _glapi_table *disp) {
   8612    return (_glptr_VertexAttrib4iv) (GET_by_offset(disp, _gloffset_VertexAttrib4iv));
   8613 }
   8614 
   8615 static inline void SET_VertexAttrib4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   8616    SET_by_offset(disp, _gloffset_VertexAttrib4iv, fn);
   8617 }
   8618 
   8619 typedef void (GLAPIENTRYP _glptr_VertexAttrib4s)(GLuint, GLshort, GLshort, GLshort, GLshort);
   8620 #define CALL_VertexAttrib4s(disp, parameters) \
   8621     (* GET_VertexAttrib4s(disp)) parameters
   8622 static inline _glptr_VertexAttrib4s GET_VertexAttrib4s(struct _glapi_table *disp) {
   8623    return (_glptr_VertexAttrib4s) (GET_by_offset(disp, _gloffset_VertexAttrib4s));
   8624 }
   8625 
   8626 static inline void SET_VertexAttrib4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
   8627    SET_by_offset(disp, _gloffset_VertexAttrib4s, fn);
   8628 }
   8629 
   8630 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sv)(GLuint, const GLshort *);
   8631 #define CALL_VertexAttrib4sv(disp, parameters) \
   8632     (* GET_VertexAttrib4sv(disp)) parameters
   8633 static inline _glptr_VertexAttrib4sv GET_VertexAttrib4sv(struct _glapi_table *disp) {
   8634    return (_glptr_VertexAttrib4sv) (GET_by_offset(disp, _gloffset_VertexAttrib4sv));
   8635 }
   8636 
   8637 static inline void SET_VertexAttrib4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   8638    SET_by_offset(disp, _gloffset_VertexAttrib4sv, fn);
   8639 }
   8640 
   8641 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubv)(GLuint, const GLubyte *);
   8642 #define CALL_VertexAttrib4ubv(disp, parameters) \
   8643     (* GET_VertexAttrib4ubv(disp)) parameters
   8644 static inline _glptr_VertexAttrib4ubv GET_VertexAttrib4ubv(struct _glapi_table *disp) {
   8645    return (_glptr_VertexAttrib4ubv) (GET_by_offset(disp, _gloffset_VertexAttrib4ubv));
   8646 }
   8647 
   8648 static inline void SET_VertexAttrib4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
   8649    SET_by_offset(disp, _gloffset_VertexAttrib4ubv, fn);
   8650 }
   8651 
   8652 typedef void (GLAPIENTRYP _glptr_VertexAttrib4uiv)(GLuint, const GLuint *);
   8653 #define CALL_VertexAttrib4uiv(disp, parameters) \
   8654     (* GET_VertexAttrib4uiv(disp)) parameters
   8655 static inline _glptr_VertexAttrib4uiv GET_VertexAttrib4uiv(struct _glapi_table *disp) {
   8656    return (_glptr_VertexAttrib4uiv) (GET_by_offset(disp, _gloffset_VertexAttrib4uiv));
   8657 }
   8658 
   8659 static inline void SET_VertexAttrib4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
   8660    SET_by_offset(disp, _gloffset_VertexAttrib4uiv, fn);
   8661 }
   8662 
   8663 typedef void (GLAPIENTRYP _glptr_VertexAttrib4usv)(GLuint, const GLushort *);
   8664 #define CALL_VertexAttrib4usv(disp, parameters) \
   8665     (* GET_VertexAttrib4usv(disp)) parameters
   8666 static inline _glptr_VertexAttrib4usv GET_VertexAttrib4usv(struct _glapi_table *disp) {
   8667    return (_glptr_VertexAttrib4usv) (GET_by_offset(disp, _gloffset_VertexAttrib4usv));
   8668 }
   8669 
   8670 static inline void SET_VertexAttrib4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
   8671    SET_by_offset(disp, _gloffset_VertexAttrib4usv, fn);
   8672 }
   8673 
   8674 typedef void (GLAPIENTRYP _glptr_VertexAttribPointer)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *);
   8675 #define CALL_VertexAttribPointer(disp, parameters) \
   8676     (* GET_VertexAttribPointer(disp)) parameters
   8677 static inline _glptr_VertexAttribPointer GET_VertexAttribPointer(struct _glapi_table *disp) {
   8678    return (_glptr_VertexAttribPointer) (GET_by_offset(disp, _gloffset_VertexAttribPointer));
   8679 }
   8680 
   8681 static inline void SET_VertexAttribPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *)) {
   8682    SET_by_offset(disp, _gloffset_VertexAttribPointer, fn);
   8683 }
   8684 
   8685 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8686 #define CALL_UniformMatrix2x3fv(disp, parameters) \
   8687     (* GET_UniformMatrix2x3fv(disp)) parameters
   8688 static inline _glptr_UniformMatrix2x3fv GET_UniformMatrix2x3fv(struct _glapi_table *disp) {
   8689    return (_glptr_UniformMatrix2x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x3fv));
   8690 }
   8691 
   8692 static inline void SET_UniformMatrix2x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8693    SET_by_offset(disp, _gloffset_UniformMatrix2x3fv, fn);
   8694 }
   8695 
   8696 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8697 #define CALL_UniformMatrix2x4fv(disp, parameters) \
   8698     (* GET_UniformMatrix2x4fv(disp)) parameters
   8699 static inline _glptr_UniformMatrix2x4fv GET_UniformMatrix2x4fv(struct _glapi_table *disp) {
   8700    return (_glptr_UniformMatrix2x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x4fv));
   8701 }
   8702 
   8703 static inline void SET_UniformMatrix2x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8704    SET_by_offset(disp, _gloffset_UniformMatrix2x4fv, fn);
   8705 }
   8706 
   8707 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8708 #define CALL_UniformMatrix3x2fv(disp, parameters) \
   8709     (* GET_UniformMatrix3x2fv(disp)) parameters
   8710 static inline _glptr_UniformMatrix3x2fv GET_UniformMatrix3x2fv(struct _glapi_table *disp) {
   8711    return (_glptr_UniformMatrix3x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x2fv));
   8712 }
   8713 
   8714 static inline void SET_UniformMatrix3x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8715    SET_by_offset(disp, _gloffset_UniformMatrix3x2fv, fn);
   8716 }
   8717 
   8718 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x4fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8719 #define CALL_UniformMatrix3x4fv(disp, parameters) \
   8720     (* GET_UniformMatrix3x4fv(disp)) parameters
   8721 static inline _glptr_UniformMatrix3x4fv GET_UniformMatrix3x4fv(struct _glapi_table *disp) {
   8722    return (_glptr_UniformMatrix3x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x4fv));
   8723 }
   8724 
   8725 static inline void SET_UniformMatrix3x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8726    SET_by_offset(disp, _gloffset_UniformMatrix3x4fv, fn);
   8727 }
   8728 
   8729 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x2fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8730 #define CALL_UniformMatrix4x2fv(disp, parameters) \
   8731     (* GET_UniformMatrix4x2fv(disp)) parameters
   8732 static inline _glptr_UniformMatrix4x2fv GET_UniformMatrix4x2fv(struct _glapi_table *disp) {
   8733    return (_glptr_UniformMatrix4x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x2fv));
   8734 }
   8735 
   8736 static inline void SET_UniformMatrix4x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8737    SET_by_offset(disp, _gloffset_UniformMatrix4x2fv, fn);
   8738 }
   8739 
   8740 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x3fv)(GLint, GLsizei, GLboolean, const GLfloat *);
   8741 #define CALL_UniformMatrix4x3fv(disp, parameters) \
   8742     (* GET_UniformMatrix4x3fv(disp)) parameters
   8743 static inline _glptr_UniformMatrix4x3fv GET_UniformMatrix4x3fv(struct _glapi_table *disp) {
   8744    return (_glptr_UniformMatrix4x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x3fv));
   8745 }
   8746 
   8747 static inline void SET_UniformMatrix4x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) {
   8748    SET_by_offset(disp, _gloffset_UniformMatrix4x3fv, fn);
   8749 }
   8750 
   8751 typedef void (GLAPIENTRYP _glptr_BeginConditionalRender)(GLuint, GLenum);
   8752 #define CALL_BeginConditionalRender(disp, parameters) \
   8753     (* GET_BeginConditionalRender(disp)) parameters
   8754 static inline _glptr_BeginConditionalRender GET_BeginConditionalRender(struct _glapi_table *disp) {
   8755    return (_glptr_BeginConditionalRender) (GET_by_offset(disp, _gloffset_BeginConditionalRender));
   8756 }
   8757 
   8758 static inline void SET_BeginConditionalRender(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   8759    SET_by_offset(disp, _gloffset_BeginConditionalRender, fn);
   8760 }
   8761 
   8762 typedef void (GLAPIENTRYP _glptr_BeginTransformFeedback)(GLenum);
   8763 #define CALL_BeginTransformFeedback(disp, parameters) \
   8764     (* GET_BeginTransformFeedback(disp)) parameters
   8765 static inline _glptr_BeginTransformFeedback GET_BeginTransformFeedback(struct _glapi_table *disp) {
   8766    return (_glptr_BeginTransformFeedback) (GET_by_offset(disp, _gloffset_BeginTransformFeedback));
   8767 }
   8768 
   8769 static inline void SET_BeginTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   8770    SET_by_offset(disp, _gloffset_BeginTransformFeedback, fn);
   8771 }
   8772 
   8773 typedef void (GLAPIENTRYP _glptr_BindBufferBase)(GLenum, GLuint, GLuint);
   8774 #define CALL_BindBufferBase(disp, parameters) \
   8775     (* GET_BindBufferBase(disp)) parameters
   8776 static inline _glptr_BindBufferBase GET_BindBufferBase(struct _glapi_table *disp) {
   8777    return (_glptr_BindBufferBase) (GET_by_offset(disp, _gloffset_BindBufferBase));
   8778 }
   8779 
   8780 static inline void SET_BindBufferBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) {
   8781    SET_by_offset(disp, _gloffset_BindBufferBase, fn);
   8782 }
   8783 
   8784 typedef void (GLAPIENTRYP _glptr_BindBufferRange)(GLenum, GLuint, GLuint, GLintptr, GLsizeiptr);
   8785 #define CALL_BindBufferRange(disp, parameters) \
   8786     (* GET_BindBufferRange(disp)) parameters
   8787 static inline _glptr_BindBufferRange GET_BindBufferRange(struct _glapi_table *disp) {
   8788    return (_glptr_BindBufferRange) (GET_by_offset(disp, _gloffset_BindBufferRange));
   8789 }
   8790 
   8791 static inline void SET_BindBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLintptr, GLsizeiptr)) {
   8792    SET_by_offset(disp, _gloffset_BindBufferRange, fn);
   8793 }
   8794 
   8795 typedef void (GLAPIENTRYP _glptr_BindFragDataLocation)(GLuint, GLuint, const GLchar *);
   8796 #define CALL_BindFragDataLocation(disp, parameters) \
   8797     (* GET_BindFragDataLocation(disp)) parameters
   8798 static inline _glptr_BindFragDataLocation GET_BindFragDataLocation(struct _glapi_table *disp) {
   8799    return (_glptr_BindFragDataLocation) (GET_by_offset(disp, _gloffset_BindFragDataLocation));
   8800 }
   8801 
   8802 static inline void SET_BindFragDataLocation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLchar *)) {
   8803    SET_by_offset(disp, _gloffset_BindFragDataLocation, fn);
   8804 }
   8805 
   8806 typedef void (GLAPIENTRYP _glptr_ClampColor)(GLenum, GLenum);
   8807 #define CALL_ClampColor(disp, parameters) \
   8808     (* GET_ClampColor(disp)) parameters
   8809 static inline _glptr_ClampColor GET_ClampColor(struct _glapi_table *disp) {
   8810    return (_glptr_ClampColor) (GET_by_offset(disp, _gloffset_ClampColor));
   8811 }
   8812 
   8813 static inline void SET_ClampColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   8814    SET_by_offset(disp, _gloffset_ClampColor, fn);
   8815 }
   8816 
   8817 typedef void (GLAPIENTRYP _glptr_ClearBufferfi)(GLenum, GLint, GLfloat, GLint);
   8818 #define CALL_ClearBufferfi(disp, parameters) \
   8819     (* GET_ClearBufferfi(disp)) parameters
   8820 static inline _glptr_ClearBufferfi GET_ClearBufferfi(struct _glapi_table *disp) {
   8821    return (_glptr_ClearBufferfi) (GET_by_offset(disp, _gloffset_ClearBufferfi));
   8822 }
   8823 
   8824 static inline void SET_ClearBufferfi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLfloat, GLint)) {
   8825    SET_by_offset(disp, _gloffset_ClearBufferfi, fn);
   8826 }
   8827 
   8828 typedef void (GLAPIENTRYP _glptr_ClearBufferfv)(GLenum, GLint, const GLfloat *);
   8829 #define CALL_ClearBufferfv(disp, parameters) \
   8830     (* GET_ClearBufferfv(disp)) parameters
   8831 static inline _glptr_ClearBufferfv GET_ClearBufferfv(struct _glapi_table *disp) {
   8832    return (_glptr_ClearBufferfv) (GET_by_offset(disp, _gloffset_ClearBufferfv));
   8833 }
   8834 
   8835 static inline void SET_ClearBufferfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLfloat *)) {
   8836    SET_by_offset(disp, _gloffset_ClearBufferfv, fn);
   8837 }
   8838 
   8839 typedef void (GLAPIENTRYP _glptr_ClearBufferiv)(GLenum, GLint, const GLint *);
   8840 #define CALL_ClearBufferiv(disp, parameters) \
   8841     (* GET_ClearBufferiv(disp)) parameters
   8842 static inline _glptr_ClearBufferiv GET_ClearBufferiv(struct _glapi_table *disp) {
   8843    return (_glptr_ClearBufferiv) (GET_by_offset(disp, _gloffset_ClearBufferiv));
   8844 }
   8845 
   8846 static inline void SET_ClearBufferiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLint *)) {
   8847    SET_by_offset(disp, _gloffset_ClearBufferiv, fn);
   8848 }
   8849 
   8850 typedef void (GLAPIENTRYP _glptr_ClearBufferuiv)(GLenum, GLint, const GLuint *);
   8851 #define CALL_ClearBufferuiv(disp, parameters) \
   8852     (* GET_ClearBufferuiv(disp)) parameters
   8853 static inline _glptr_ClearBufferuiv GET_ClearBufferuiv(struct _glapi_table *disp) {
   8854    return (_glptr_ClearBufferuiv) (GET_by_offset(disp, _gloffset_ClearBufferuiv));
   8855 }
   8856 
   8857 static inline void SET_ClearBufferuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLuint *)) {
   8858    SET_by_offset(disp, _gloffset_ClearBufferuiv, fn);
   8859 }
   8860 
   8861 typedef void (GLAPIENTRYP _glptr_ColorMaski)(GLuint, GLboolean, GLboolean, GLboolean, GLboolean);
   8862 #define CALL_ColorMaski(disp, parameters) \
   8863     (* GET_ColorMaski(disp)) parameters
   8864 static inline _glptr_ColorMaski GET_ColorMaski(struct _glapi_table *disp) {
   8865    return (_glptr_ColorMaski) (GET_by_offset(disp, _gloffset_ColorMaski));
   8866 }
   8867 
   8868 static inline void SET_ColorMaski(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLboolean, GLboolean, GLboolean, GLboolean)) {
   8869    SET_by_offset(disp, _gloffset_ColorMaski, fn);
   8870 }
   8871 
   8872 typedef void (GLAPIENTRYP _glptr_Disablei)(GLenum, GLuint);
   8873 #define CALL_Disablei(disp, parameters) \
   8874     (* GET_Disablei(disp)) parameters
   8875 static inline _glptr_Disablei GET_Disablei(struct _glapi_table *disp) {
   8876    return (_glptr_Disablei) (GET_by_offset(disp, _gloffset_Disablei));
   8877 }
   8878 
   8879 static inline void SET_Disablei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   8880    SET_by_offset(disp, _gloffset_Disablei, fn);
   8881 }
   8882 
   8883 typedef void (GLAPIENTRYP _glptr_Enablei)(GLenum, GLuint);
   8884 #define CALL_Enablei(disp, parameters) \
   8885     (* GET_Enablei(disp)) parameters
   8886 static inline _glptr_Enablei GET_Enablei(struct _glapi_table *disp) {
   8887    return (_glptr_Enablei) (GET_by_offset(disp, _gloffset_Enablei));
   8888 }
   8889 
   8890 static inline void SET_Enablei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   8891    SET_by_offset(disp, _gloffset_Enablei, fn);
   8892 }
   8893 
   8894 typedef void (GLAPIENTRYP _glptr_EndConditionalRender)(void);
   8895 #define CALL_EndConditionalRender(disp, parameters) \
   8896     (* GET_EndConditionalRender(disp)) parameters
   8897 static inline _glptr_EndConditionalRender GET_EndConditionalRender(struct _glapi_table *disp) {
   8898    return (_glptr_EndConditionalRender) (GET_by_offset(disp, _gloffset_EndConditionalRender));
   8899 }
   8900 
   8901 static inline void SET_EndConditionalRender(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   8902    SET_by_offset(disp, _gloffset_EndConditionalRender, fn);
   8903 }
   8904 
   8905 typedef void (GLAPIENTRYP _glptr_EndTransformFeedback)(void);
   8906 #define CALL_EndTransformFeedback(disp, parameters) \
   8907     (* GET_EndTransformFeedback(disp)) parameters
   8908 static inline _glptr_EndTransformFeedback GET_EndTransformFeedback(struct _glapi_table *disp) {
   8909    return (_glptr_EndTransformFeedback) (GET_by_offset(disp, _gloffset_EndTransformFeedback));
   8910 }
   8911 
   8912 static inline void SET_EndTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   8913    SET_by_offset(disp, _gloffset_EndTransformFeedback, fn);
   8914 }
   8915 
   8916 typedef void (GLAPIENTRYP _glptr_GetBooleani_v)(GLenum, GLuint, GLboolean *);
   8917 #define CALL_GetBooleani_v(disp, parameters) \
   8918     (* GET_GetBooleani_v(disp)) parameters
   8919 static inline _glptr_GetBooleani_v GET_GetBooleani_v(struct _glapi_table *disp) {
   8920    return (_glptr_GetBooleani_v) (GET_by_offset(disp, _gloffset_GetBooleani_v));
   8921 }
   8922 
   8923 static inline void SET_GetBooleani_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLboolean *)) {
   8924    SET_by_offset(disp, _gloffset_GetBooleani_v, fn);
   8925 }
   8926 
   8927 typedef GLint (GLAPIENTRYP _glptr_GetFragDataLocation)(GLuint, const GLchar *);
   8928 #define CALL_GetFragDataLocation(disp, parameters) \
   8929     (* GET_GetFragDataLocation(disp)) parameters
   8930 static inline _glptr_GetFragDataLocation GET_GetFragDataLocation(struct _glapi_table *disp) {
   8931    return (_glptr_GetFragDataLocation) (GET_by_offset(disp, _gloffset_GetFragDataLocation));
   8932 }
   8933 
   8934 static inline void SET_GetFragDataLocation(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
   8935    SET_by_offset(disp, _gloffset_GetFragDataLocation, fn);
   8936 }
   8937 
   8938 typedef void (GLAPIENTRYP _glptr_GetIntegeri_v)(GLenum, GLuint, GLint *);
   8939 #define CALL_GetIntegeri_v(disp, parameters) \
   8940     (* GET_GetIntegeri_v(disp)) parameters
   8941 static inline _glptr_GetIntegeri_v GET_GetIntegeri_v(struct _glapi_table *disp) {
   8942    return (_glptr_GetIntegeri_v) (GET_by_offset(disp, _gloffset_GetIntegeri_v));
   8943 }
   8944 
   8945 static inline void SET_GetIntegeri_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint *)) {
   8946    SET_by_offset(disp, _gloffset_GetIntegeri_v, fn);
   8947 }
   8948 
   8949 typedef const GLubyte * (GLAPIENTRYP _glptr_GetStringi)(GLenum, GLuint);
   8950 #define CALL_GetStringi(disp, parameters) \
   8951     (* GET_GetStringi(disp)) parameters
   8952 static inline _glptr_GetStringi GET_GetStringi(struct _glapi_table *disp) {
   8953    return (_glptr_GetStringi) (GET_by_offset(disp, _gloffset_GetStringi));
   8954 }
   8955 
   8956 static inline void SET_GetStringi(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum, GLuint)) {
   8957    SET_by_offset(disp, _gloffset_GetStringi, fn);
   8958 }
   8959 
   8960 typedef void (GLAPIENTRYP _glptr_GetTexParameterIiv)(GLenum, GLenum, GLint *);
   8961 #define CALL_GetTexParameterIiv(disp, parameters) \
   8962     (* GET_GetTexParameterIiv(disp)) parameters
   8963 static inline _glptr_GetTexParameterIiv GET_GetTexParameterIiv(struct _glapi_table *disp) {
   8964    return (_glptr_GetTexParameterIiv) (GET_by_offset(disp, _gloffset_GetTexParameterIiv));
   8965 }
   8966 
   8967 static inline void SET_GetTexParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   8968    SET_by_offset(disp, _gloffset_GetTexParameterIiv, fn);
   8969 }
   8970 
   8971 typedef void (GLAPIENTRYP _glptr_GetTexParameterIuiv)(GLenum, GLenum, GLuint *);
   8972 #define CALL_GetTexParameterIuiv(disp, parameters) \
   8973     (* GET_GetTexParameterIuiv(disp)) parameters
   8974 static inline _glptr_GetTexParameterIuiv GET_GetTexParameterIuiv(struct _glapi_table *disp) {
   8975    return (_glptr_GetTexParameterIuiv) (GET_by_offset(disp, _gloffset_GetTexParameterIuiv));
   8976 }
   8977 
   8978 static inline void SET_GetTexParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint *)) {
   8979    SET_by_offset(disp, _gloffset_GetTexParameterIuiv, fn);
   8980 }
   8981 
   8982 typedef void (GLAPIENTRYP _glptr_GetTransformFeedbackVarying)(GLuint, GLuint, GLsizei, GLsizei *, GLsizei *, GLenum *, GLchar *);
   8983 #define CALL_GetTransformFeedbackVarying(disp, parameters) \
   8984     (* GET_GetTransformFeedbackVarying(disp)) parameters
   8985 static inline _glptr_GetTransformFeedbackVarying GET_GetTransformFeedbackVarying(struct _glapi_table *disp) {
   8986    return (_glptr_GetTransformFeedbackVarying) (GET_by_offset(disp, _gloffset_GetTransformFeedbackVarying));
   8987 }
   8988 
   8989 static inline void SET_GetTransformFeedbackVarying(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLsizei *, GLenum *, GLchar *)) {
   8990    SET_by_offset(disp, _gloffset_GetTransformFeedbackVarying, fn);
   8991 }
   8992 
   8993 typedef void (GLAPIENTRYP _glptr_GetUniformuiv)(GLuint, GLint, GLuint *);
   8994 #define CALL_GetUniformuiv(disp, parameters) \
   8995     (* GET_GetUniformuiv(disp)) parameters
   8996 static inline _glptr_GetUniformuiv GET_GetUniformuiv(struct _glapi_table *disp) {
   8997    return (_glptr_GetUniformuiv) (GET_by_offset(disp, _gloffset_GetUniformuiv));
   8998 }
   8999 
   9000 static inline void SET_GetUniformuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint *)) {
   9001    SET_by_offset(disp, _gloffset_GetUniformuiv, fn);
   9002 }
   9003 
   9004 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIiv)(GLuint, GLenum, GLint *);
   9005 #define CALL_GetVertexAttribIiv(disp, parameters) \
   9006     (* GET_GetVertexAttribIiv(disp)) parameters
   9007 static inline _glptr_GetVertexAttribIiv GET_GetVertexAttribIiv(struct _glapi_table *disp) {
   9008    return (_glptr_GetVertexAttribIiv) (GET_by_offset(disp, _gloffset_GetVertexAttribIiv));
   9009 }
   9010 
   9011 static inline void SET_GetVertexAttribIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   9012    SET_by_offset(disp, _gloffset_GetVertexAttribIiv, fn);
   9013 }
   9014 
   9015 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIuiv)(GLuint, GLenum, GLuint *);
   9016 #define CALL_GetVertexAttribIuiv(disp, parameters) \
   9017     (* GET_GetVertexAttribIuiv(disp)) parameters
   9018 static inline _glptr_GetVertexAttribIuiv GET_GetVertexAttribIuiv(struct _glapi_table *disp) {
   9019    return (_glptr_GetVertexAttribIuiv) (GET_by_offset(disp, _gloffset_GetVertexAttribIuiv));
   9020 }
   9021 
   9022 static inline void SET_GetVertexAttribIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
   9023    SET_by_offset(disp, _gloffset_GetVertexAttribIuiv, fn);
   9024 }
   9025 
   9026 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabledi)(GLenum, GLuint);
   9027 #define CALL_IsEnabledi(disp, parameters) \
   9028     (* GET_IsEnabledi(disp)) parameters
   9029 static inline _glptr_IsEnabledi GET_IsEnabledi(struct _glapi_table *disp) {
   9030    return (_glptr_IsEnabledi) (GET_by_offset(disp, _gloffset_IsEnabledi));
   9031 }
   9032 
   9033 static inline void SET_IsEnabledi(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum, GLuint)) {
   9034    SET_by_offset(disp, _gloffset_IsEnabledi, fn);
   9035 }
   9036 
   9037 typedef void (GLAPIENTRYP _glptr_TexParameterIiv)(GLenum, GLenum, const GLint *);
   9038 #define CALL_TexParameterIiv(disp, parameters) \
   9039     (* GET_TexParameterIiv(disp)) parameters
   9040 static inline _glptr_TexParameterIiv GET_TexParameterIiv(struct _glapi_table *disp) {
   9041    return (_glptr_TexParameterIiv) (GET_by_offset(disp, _gloffset_TexParameterIiv));
   9042 }
   9043 
   9044 static inline void SET_TexParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
   9045    SET_by_offset(disp, _gloffset_TexParameterIiv, fn);
   9046 }
   9047 
   9048 typedef void (GLAPIENTRYP _glptr_TexParameterIuiv)(GLenum, GLenum, const GLuint *);
   9049 #define CALL_TexParameterIuiv(disp, parameters) \
   9050     (* GET_TexParameterIuiv(disp)) parameters
   9051 static inline _glptr_TexParameterIuiv GET_TexParameterIuiv(struct _glapi_table *disp) {
   9052    return (_glptr_TexParameterIuiv) (GET_by_offset(disp, _gloffset_TexParameterIuiv));
   9053 }
   9054 
   9055 static inline void SET_TexParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
   9056    SET_by_offset(disp, _gloffset_TexParameterIuiv, fn);
   9057 }
   9058 
   9059 typedef void (GLAPIENTRYP _glptr_TransformFeedbackVaryings)(GLuint, GLsizei, const GLchar * const *, GLenum);
   9060 #define CALL_TransformFeedbackVaryings(disp, parameters) \
   9061     (* GET_TransformFeedbackVaryings(disp)) parameters
   9062 static inline _glptr_TransformFeedbackVaryings GET_TransformFeedbackVaryings(struct _glapi_table *disp) {
   9063    return (_glptr_TransformFeedbackVaryings) (GET_by_offset(disp, _gloffset_TransformFeedbackVaryings));
   9064 }
   9065 
   9066 static inline void SET_TransformFeedbackVaryings(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLchar * const *, GLenum)) {
   9067    SET_by_offset(disp, _gloffset_TransformFeedbackVaryings, fn);
   9068 }
   9069 
   9070 typedef void (GLAPIENTRYP _glptr_Uniform1ui)(GLint, GLuint);
   9071 #define CALL_Uniform1ui(disp, parameters) \
   9072     (* GET_Uniform1ui(disp)) parameters
   9073 static inline _glptr_Uniform1ui GET_Uniform1ui(struct _glapi_table *disp) {
   9074    return (_glptr_Uniform1ui) (GET_by_offset(disp, _gloffset_Uniform1ui));
   9075 }
   9076 
   9077 static inline void SET_Uniform1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint)) {
   9078    SET_by_offset(disp, _gloffset_Uniform1ui, fn);
   9079 }
   9080 
   9081 typedef void (GLAPIENTRYP _glptr_Uniform1uiv)(GLint, GLsizei, const GLuint *);
   9082 #define CALL_Uniform1uiv(disp, parameters) \
   9083     (* GET_Uniform1uiv(disp)) parameters
   9084 static inline _glptr_Uniform1uiv GET_Uniform1uiv(struct _glapi_table *disp) {
   9085    return (_glptr_Uniform1uiv) (GET_by_offset(disp, _gloffset_Uniform1uiv));
   9086 }
   9087 
   9088 static inline void SET_Uniform1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
   9089    SET_by_offset(disp, _gloffset_Uniform1uiv, fn);
   9090 }
   9091 
   9092 typedef void (GLAPIENTRYP _glptr_Uniform2ui)(GLint, GLuint, GLuint);
   9093 #define CALL_Uniform2ui(disp, parameters) \
   9094     (* GET_Uniform2ui(disp)) parameters
   9095 static inline _glptr_Uniform2ui GET_Uniform2ui(struct _glapi_table *disp) {
   9096    return (_glptr_Uniform2ui) (GET_by_offset(disp, _gloffset_Uniform2ui));
   9097 }
   9098 
   9099 static inline void SET_Uniform2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint)) {
   9100    SET_by_offset(disp, _gloffset_Uniform2ui, fn);
   9101 }
   9102 
   9103 typedef void (GLAPIENTRYP _glptr_Uniform2uiv)(GLint, GLsizei, const GLuint *);
   9104 #define CALL_Uniform2uiv(disp, parameters) \
   9105     (* GET_Uniform2uiv(disp)) parameters
   9106 static inline _glptr_Uniform2uiv GET_Uniform2uiv(struct _glapi_table *disp) {
   9107    return (_glptr_Uniform2uiv) (GET_by_offset(disp, _gloffset_Uniform2uiv));
   9108 }
   9109 
   9110 static inline void SET_Uniform2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
   9111    SET_by_offset(disp, _gloffset_Uniform2uiv, fn);
   9112 }
   9113 
   9114 typedef void (GLAPIENTRYP _glptr_Uniform3ui)(GLint, GLuint, GLuint, GLuint);
   9115 #define CALL_Uniform3ui(disp, parameters) \
   9116     (* GET_Uniform3ui(disp)) parameters
   9117 static inline _glptr_Uniform3ui GET_Uniform3ui(struct _glapi_table *disp) {
   9118    return (_glptr_Uniform3ui) (GET_by_offset(disp, _gloffset_Uniform3ui));
   9119 }
   9120 
   9121 static inline void SET_Uniform3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint)) {
   9122    SET_by_offset(disp, _gloffset_Uniform3ui, fn);
   9123 }
   9124 
   9125 typedef void (GLAPIENTRYP _glptr_Uniform3uiv)(GLint, GLsizei, const GLuint *);
   9126 #define CALL_Uniform3uiv(disp, parameters) \
   9127     (* GET_Uniform3uiv(disp)) parameters
   9128 static inline _glptr_Uniform3uiv GET_Uniform3uiv(struct _glapi_table *disp) {
   9129    return (_glptr_Uniform3uiv) (GET_by_offset(disp, _gloffset_Uniform3uiv));
   9130 }
   9131 
   9132 static inline void SET_Uniform3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
   9133    SET_by_offset(disp, _gloffset_Uniform3uiv, fn);
   9134 }
   9135 
   9136 typedef void (GLAPIENTRYP _glptr_Uniform4ui)(GLint, GLuint, GLuint, GLuint, GLuint);
   9137 #define CALL_Uniform4ui(disp, parameters) \
   9138     (* GET_Uniform4ui(disp)) parameters
   9139 static inline _glptr_Uniform4ui GET_Uniform4ui(struct _glapi_table *disp) {
   9140    return (_glptr_Uniform4ui) (GET_by_offset(disp, _gloffset_Uniform4ui));
   9141 }
   9142 
   9143 static inline void SET_Uniform4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint, GLuint)) {
   9144    SET_by_offset(disp, _gloffset_Uniform4ui, fn);
   9145 }
   9146 
   9147 typedef void (GLAPIENTRYP _glptr_Uniform4uiv)(GLint, GLsizei, const GLuint *);
   9148 #define CALL_Uniform4uiv(disp, parameters) \
   9149     (* GET_Uniform4uiv(disp)) parameters
   9150 static inline _glptr_Uniform4uiv GET_Uniform4uiv(struct _glapi_table *disp) {
   9151    return (_glptr_Uniform4uiv) (GET_by_offset(disp, _gloffset_Uniform4uiv));
   9152 }
   9153 
   9154 static inline void SET_Uniform4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) {
   9155    SET_by_offset(disp, _gloffset_Uniform4uiv, fn);
   9156 }
   9157 
   9158 typedef void (GLAPIENTRYP _glptr_VertexAttribI1iv)(GLuint, const GLint *);
   9159 #define CALL_VertexAttribI1iv(disp, parameters) \
   9160     (* GET_VertexAttribI1iv(disp)) parameters
   9161 static inline _glptr_VertexAttribI1iv GET_VertexAttribI1iv(struct _glapi_table *disp) {
   9162    return (_glptr_VertexAttribI1iv) (GET_by_offset(disp, _gloffset_VertexAttribI1iv));
   9163 }
   9164 
   9165 static inline void SET_VertexAttribI1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   9166    SET_by_offset(disp, _gloffset_VertexAttribI1iv, fn);
   9167 }
   9168 
   9169 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uiv)(GLuint, const GLuint *);
   9170 #define CALL_VertexAttribI1uiv(disp, parameters) \
   9171     (* GET_VertexAttribI1uiv(disp)) parameters
   9172 static inline _glptr_VertexAttribI1uiv GET_VertexAttribI1uiv(struct _glapi_table *disp) {
   9173    return (_glptr_VertexAttribI1uiv) (GET_by_offset(disp, _gloffset_VertexAttribI1uiv));
   9174 }
   9175 
   9176 static inline void SET_VertexAttribI1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
   9177    SET_by_offset(disp, _gloffset_VertexAttribI1uiv, fn);
   9178 }
   9179 
   9180 typedef void (GLAPIENTRYP _glptr_VertexAttribI4bv)(GLuint, const GLbyte *);
   9181 #define CALL_VertexAttribI4bv(disp, parameters) \
   9182     (* GET_VertexAttribI4bv(disp)) parameters
   9183 static inline _glptr_VertexAttribI4bv GET_VertexAttribI4bv(struct _glapi_table *disp) {
   9184    return (_glptr_VertexAttribI4bv) (GET_by_offset(disp, _gloffset_VertexAttribI4bv));
   9185 }
   9186 
   9187 static inline void SET_VertexAttribI4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) {
   9188    SET_by_offset(disp, _gloffset_VertexAttribI4bv, fn);
   9189 }
   9190 
   9191 typedef void (GLAPIENTRYP _glptr_VertexAttribI4sv)(GLuint, const GLshort *);
   9192 #define CALL_VertexAttribI4sv(disp, parameters) \
   9193     (* GET_VertexAttribI4sv(disp)) parameters
   9194 static inline _glptr_VertexAttribI4sv GET_VertexAttribI4sv(struct _glapi_table *disp) {
   9195    return (_glptr_VertexAttribI4sv) (GET_by_offset(disp, _gloffset_VertexAttribI4sv));
   9196 }
   9197 
   9198 static inline void SET_VertexAttribI4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   9199    SET_by_offset(disp, _gloffset_VertexAttribI4sv, fn);
   9200 }
   9201 
   9202 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ubv)(GLuint, const GLubyte *);
   9203 #define CALL_VertexAttribI4ubv(disp, parameters) \
   9204     (* GET_VertexAttribI4ubv(disp)) parameters
   9205 static inline _glptr_VertexAttribI4ubv GET_VertexAttribI4ubv(struct _glapi_table *disp) {
   9206    return (_glptr_VertexAttribI4ubv) (GET_by_offset(disp, _gloffset_VertexAttribI4ubv));
   9207 }
   9208 
   9209 static inline void SET_VertexAttribI4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
   9210    SET_by_offset(disp, _gloffset_VertexAttribI4ubv, fn);
   9211 }
   9212 
   9213 typedef void (GLAPIENTRYP _glptr_VertexAttribI4usv)(GLuint, const GLushort *);
   9214 #define CALL_VertexAttribI4usv(disp, parameters) \
   9215     (* GET_VertexAttribI4usv(disp)) parameters
   9216 static inline _glptr_VertexAttribI4usv GET_VertexAttribI4usv(struct _glapi_table *disp) {
   9217    return (_glptr_VertexAttribI4usv) (GET_by_offset(disp, _gloffset_VertexAttribI4usv));
   9218 }
   9219 
   9220 static inline void SET_VertexAttribI4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) {
   9221    SET_by_offset(disp, _gloffset_VertexAttribI4usv, fn);
   9222 }
   9223 
   9224 typedef void (GLAPIENTRYP _glptr_VertexAttribIPointer)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
   9225 #define CALL_VertexAttribIPointer(disp, parameters) \
   9226     (* GET_VertexAttribIPointer(disp)) parameters
   9227 static inline _glptr_VertexAttribIPointer GET_VertexAttribIPointer(struct _glapi_table *disp) {
   9228    return (_glptr_VertexAttribIPointer) (GET_by_offset(disp, _gloffset_VertexAttribIPointer));
   9229 }
   9230 
   9231 static inline void SET_VertexAttribIPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
   9232    SET_by_offset(disp, _gloffset_VertexAttribIPointer, fn);
   9233 }
   9234 
   9235 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartIndex)(GLuint);
   9236 #define CALL_PrimitiveRestartIndex(disp, parameters) \
   9237     (* GET_PrimitiveRestartIndex(disp)) parameters
   9238 static inline _glptr_PrimitiveRestartIndex GET_PrimitiveRestartIndex(struct _glapi_table *disp) {
   9239    return (_glptr_PrimitiveRestartIndex) (GET_by_offset(disp, _gloffset_PrimitiveRestartIndex));
   9240 }
   9241 
   9242 static inline void SET_PrimitiveRestartIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   9243    SET_by_offset(disp, _gloffset_PrimitiveRestartIndex, fn);
   9244 }
   9245 
   9246 typedef void (GLAPIENTRYP _glptr_TexBuffer)(GLenum, GLenum, GLuint);
   9247 #define CALL_TexBuffer(disp, parameters) \
   9248     (* GET_TexBuffer(disp)) parameters
   9249 static inline _glptr_TexBuffer GET_TexBuffer(struct _glapi_table *disp) {
   9250    return (_glptr_TexBuffer) (GET_by_offset(disp, _gloffset_TexBuffer));
   9251 }
   9252 
   9253 static inline void SET_TexBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
   9254    SET_by_offset(disp, _gloffset_TexBuffer, fn);
   9255 }
   9256 
   9257 typedef void (GLAPIENTRYP _glptr_FramebufferTexture)(GLenum, GLenum, GLuint, GLint);
   9258 #define CALL_FramebufferTexture(disp, parameters) \
   9259     (* GET_FramebufferTexture(disp)) parameters
   9260 static inline _glptr_FramebufferTexture GET_FramebufferTexture(struct _glapi_table *disp) {
   9261    return (_glptr_FramebufferTexture) (GET_by_offset(disp, _gloffset_FramebufferTexture));
   9262 }
   9263 
   9264 static inline void SET_FramebufferTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint)) {
   9265    SET_by_offset(disp, _gloffset_FramebufferTexture, fn);
   9266 }
   9267 
   9268 typedef void (GLAPIENTRYP _glptr_GetBufferParameteri64v)(GLenum, GLenum, GLint64 *);
   9269 #define CALL_GetBufferParameteri64v(disp, parameters) \
   9270     (* GET_GetBufferParameteri64v(disp)) parameters
   9271 static inline _glptr_GetBufferParameteri64v GET_GetBufferParameteri64v(struct _glapi_table *disp) {
   9272    return (_glptr_GetBufferParameteri64v) (GET_by_offset(disp, _gloffset_GetBufferParameteri64v));
   9273 }
   9274 
   9275 static inline void SET_GetBufferParameteri64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint64 *)) {
   9276    SET_by_offset(disp, _gloffset_GetBufferParameteri64v, fn);
   9277 }
   9278 
   9279 typedef void (GLAPIENTRYP _glptr_GetInteger64i_v)(GLenum, GLuint, GLint64 *);
   9280 #define CALL_GetInteger64i_v(disp, parameters) \
   9281     (* GET_GetInteger64i_v(disp)) parameters
   9282 static inline _glptr_GetInteger64i_v GET_GetInteger64i_v(struct _glapi_table *disp) {
   9283    return (_glptr_GetInteger64i_v) (GET_by_offset(disp, _gloffset_GetInteger64i_v));
   9284 }
   9285 
   9286 static inline void SET_GetInteger64i_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint64 *)) {
   9287    SET_by_offset(disp, _gloffset_GetInteger64i_v, fn);
   9288 }
   9289 
   9290 typedef void (GLAPIENTRYP _glptr_VertexAttribDivisor)(GLuint, GLuint);
   9291 #define CALL_VertexAttribDivisor(disp, parameters) \
   9292     (* GET_VertexAttribDivisor(disp)) parameters
   9293 static inline _glptr_VertexAttribDivisor GET_VertexAttribDivisor(struct _glapi_table *disp) {
   9294    return (_glptr_VertexAttribDivisor) (GET_by_offset(disp, _gloffset_VertexAttribDivisor));
   9295 }
   9296 
   9297 static inline void SET_VertexAttribDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   9298    SET_by_offset(disp, _gloffset_VertexAttribDivisor, fn);
   9299 }
   9300 
   9301 typedef void (GLAPIENTRYP _glptr_MinSampleShading)(GLfloat);
   9302 #define CALL_MinSampleShading(disp, parameters) \
   9303     (* GET_MinSampleShading(disp)) parameters
   9304 static inline _glptr_MinSampleShading GET_MinSampleShading(struct _glapi_table *disp) {
   9305    return (_glptr_MinSampleShading) (GET_by_offset(disp, _gloffset_MinSampleShading));
   9306 }
   9307 
   9308 static inline void SET_MinSampleShading(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   9309    SET_by_offset(disp, _gloffset_MinSampleShading, fn);
   9310 }
   9311 
   9312 typedef void (GLAPIENTRYP _glptr_MemoryBarrierByRegion)(GLbitfield);
   9313 #define CALL_MemoryBarrierByRegion(disp, parameters) \
   9314     (* GET_MemoryBarrierByRegion(disp)) parameters
   9315 static inline _glptr_MemoryBarrierByRegion GET_MemoryBarrierByRegion(struct _glapi_table *disp) {
   9316    return (_glptr_MemoryBarrierByRegion) (GET_by_offset(disp, _gloffset_MemoryBarrierByRegion));
   9317 }
   9318 
   9319 static inline void SET_MemoryBarrierByRegion(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   9320    SET_by_offset(disp, _gloffset_MemoryBarrierByRegion, fn);
   9321 }
   9322 
   9323 typedef void (GLAPIENTRYP _glptr_BindProgramARB)(GLenum, GLuint);
   9324 #define CALL_BindProgramARB(disp, parameters) \
   9325     (* GET_BindProgramARB(disp)) parameters
   9326 static inline _glptr_BindProgramARB GET_BindProgramARB(struct _glapi_table *disp) {
   9327    return (_glptr_BindProgramARB) (GET_by_offset(disp, _gloffset_BindProgramARB));
   9328 }
   9329 
   9330 static inline void SET_BindProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   9331    SET_by_offset(disp, _gloffset_BindProgramARB, fn);
   9332 }
   9333 
   9334 typedef void (GLAPIENTRYP _glptr_DeleteProgramsARB)(GLsizei, const GLuint *);
   9335 #define CALL_DeleteProgramsARB(disp, parameters) \
   9336     (* GET_DeleteProgramsARB(disp)) parameters
   9337 static inline _glptr_DeleteProgramsARB GET_DeleteProgramsARB(struct _glapi_table *disp) {
   9338    return (_glptr_DeleteProgramsARB) (GET_by_offset(disp, _gloffset_DeleteProgramsARB));
   9339 }
   9340 
   9341 static inline void SET_DeleteProgramsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   9342    SET_by_offset(disp, _gloffset_DeleteProgramsARB, fn);
   9343 }
   9344 
   9345 typedef void (GLAPIENTRYP _glptr_GenProgramsARB)(GLsizei, GLuint *);
   9346 #define CALL_GenProgramsARB(disp, parameters) \
   9347     (* GET_GenProgramsARB(disp)) parameters
   9348 static inline _glptr_GenProgramsARB GET_GenProgramsARB(struct _glapi_table *disp) {
   9349    return (_glptr_GenProgramsARB) (GET_by_offset(disp, _gloffset_GenProgramsARB));
   9350 }
   9351 
   9352 static inline void SET_GenProgramsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   9353    SET_by_offset(disp, _gloffset_GenProgramsARB, fn);
   9354 }
   9355 
   9356 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterdvARB)(GLenum, GLuint, GLdouble *);
   9357 #define CALL_GetProgramEnvParameterdvARB(disp, parameters) \
   9358     (* GET_GetProgramEnvParameterdvARB(disp)) parameters
   9359 static inline _glptr_GetProgramEnvParameterdvARB GET_GetProgramEnvParameterdvARB(struct _glapi_table *disp) {
   9360    return (_glptr_GetProgramEnvParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB));
   9361 }
   9362 
   9363 static inline void SET_GetProgramEnvParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
   9364    SET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB, fn);
   9365 }
   9366 
   9367 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterfvARB)(GLenum, GLuint, GLfloat *);
   9368 #define CALL_GetProgramEnvParameterfvARB(disp, parameters) \
   9369     (* GET_GetProgramEnvParameterfvARB(disp)) parameters
   9370 static inline _glptr_GetProgramEnvParameterfvARB GET_GetProgramEnvParameterfvARB(struct _glapi_table *disp) {
   9371    return (_glptr_GetProgramEnvParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB));
   9372 }
   9373 
   9374 static inline void SET_GetProgramEnvParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
   9375    SET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB, fn);
   9376 }
   9377 
   9378 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterdvARB)(GLenum, GLuint, GLdouble *);
   9379 #define CALL_GetProgramLocalParameterdvARB(disp, parameters) \
   9380     (* GET_GetProgramLocalParameterdvARB(disp)) parameters
   9381 static inline _glptr_GetProgramLocalParameterdvARB GET_GetProgramLocalParameterdvARB(struct _glapi_table *disp) {
   9382    return (_glptr_GetProgramLocalParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB));
   9383 }
   9384 
   9385 static inline void SET_GetProgramLocalParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
   9386    SET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB, fn);
   9387 }
   9388 
   9389 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterfvARB)(GLenum, GLuint, GLfloat *);
   9390 #define CALL_GetProgramLocalParameterfvARB(disp, parameters) \
   9391     (* GET_GetProgramLocalParameterfvARB(disp)) parameters
   9392 static inline _glptr_GetProgramLocalParameterfvARB GET_GetProgramLocalParameterfvARB(struct _glapi_table *disp) {
   9393    return (_glptr_GetProgramLocalParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB));
   9394 }
   9395 
   9396 static inline void SET_GetProgramLocalParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
   9397    SET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB, fn);
   9398 }
   9399 
   9400 typedef void (GLAPIENTRYP _glptr_GetProgramStringARB)(GLenum, GLenum, GLvoid *);
   9401 #define CALL_GetProgramStringARB(disp, parameters) \
   9402     (* GET_GetProgramStringARB(disp)) parameters
   9403 static inline _glptr_GetProgramStringARB GET_GetProgramStringARB(struct _glapi_table *disp) {
   9404    return (_glptr_GetProgramStringARB) (GET_by_offset(disp, _gloffset_GetProgramStringARB));
   9405 }
   9406 
   9407 static inline void SET_GetProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid *)) {
   9408    SET_by_offset(disp, _gloffset_GetProgramStringARB, fn);
   9409 }
   9410 
   9411 typedef void (GLAPIENTRYP _glptr_GetProgramivARB)(GLenum, GLenum, GLint *);
   9412 #define CALL_GetProgramivARB(disp, parameters) \
   9413     (* GET_GetProgramivARB(disp)) parameters
   9414 static inline _glptr_GetProgramivARB GET_GetProgramivARB(struct _glapi_table *disp) {
   9415    return (_glptr_GetProgramivARB) (GET_by_offset(disp, _gloffset_GetProgramivARB));
   9416 }
   9417 
   9418 static inline void SET_GetProgramivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   9419    SET_by_offset(disp, _gloffset_GetProgramivARB, fn);
   9420 }
   9421 
   9422 typedef GLboolean (GLAPIENTRYP _glptr_IsProgramARB)(GLuint);
   9423 #define CALL_IsProgramARB(disp, parameters) \
   9424     (* GET_IsProgramARB(disp)) parameters
   9425 static inline _glptr_IsProgramARB GET_IsProgramARB(struct _glapi_table *disp) {
   9426    return (_glptr_IsProgramARB) (GET_by_offset(disp, _gloffset_IsProgramARB));
   9427 }
   9428 
   9429 static inline void SET_IsProgramARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   9430    SET_by_offset(disp, _gloffset_IsProgramARB, fn);
   9431 }
   9432 
   9433 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
   9434 #define CALL_ProgramEnvParameter4dARB(disp, parameters) \
   9435     (* GET_ProgramEnvParameter4dARB(disp)) parameters
   9436 static inline _glptr_ProgramEnvParameter4dARB GET_ProgramEnvParameter4dARB(struct _glapi_table *disp) {
   9437    return (_glptr_ProgramEnvParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB));
   9438 }
   9439 
   9440 static inline void SET_ProgramEnvParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   9441    SET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB, fn);
   9442 }
   9443 
   9444 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dvARB)(GLenum, GLuint, const GLdouble *);
   9445 #define CALL_ProgramEnvParameter4dvARB(disp, parameters) \
   9446     (* GET_ProgramEnvParameter4dvARB(disp)) parameters
   9447 static inline _glptr_ProgramEnvParameter4dvARB GET_ProgramEnvParameter4dvARB(struct _glapi_table *disp) {
   9448    return (_glptr_ProgramEnvParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB));
   9449 }
   9450 
   9451 static inline void SET_ProgramEnvParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) {
   9452    SET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB, fn);
   9453 }
   9454 
   9455 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
   9456 #define CALL_ProgramEnvParameter4fARB(disp, parameters) \
   9457     (* GET_ProgramEnvParameter4fARB(disp)) parameters
   9458 static inline _glptr_ProgramEnvParameter4fARB GET_ProgramEnvParameter4fARB(struct _glapi_table *disp) {
   9459    return (_glptr_ProgramEnvParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB));
   9460 }
   9461 
   9462 static inline void SET_ProgramEnvParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   9463    SET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB, fn);
   9464 }
   9465 
   9466 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fvARB)(GLenum, GLuint, const GLfloat *);
   9467 #define CALL_ProgramEnvParameter4fvARB(disp, parameters) \
   9468     (* GET_ProgramEnvParameter4fvARB(disp)) parameters
   9469 static inline _glptr_ProgramEnvParameter4fvARB GET_ProgramEnvParameter4fvARB(struct _glapi_table *disp) {
   9470    return (_glptr_ProgramEnvParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB));
   9471 }
   9472 
   9473 static inline void SET_ProgramEnvParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
   9474    SET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB, fn);
   9475 }
   9476 
   9477 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
   9478 #define CALL_ProgramLocalParameter4dARB(disp, parameters) \
   9479     (* GET_ProgramLocalParameter4dARB(disp)) parameters
   9480 static inline _glptr_ProgramLocalParameter4dARB GET_ProgramLocalParameter4dARB(struct _glapi_table *disp) {
   9481    return (_glptr_ProgramLocalParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB));
   9482 }
   9483 
   9484 static inline void SET_ProgramLocalParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   9485    SET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB, fn);
   9486 }
   9487 
   9488 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dvARB)(GLenum, GLuint, const GLdouble *);
   9489 #define CALL_ProgramLocalParameter4dvARB(disp, parameters) \
   9490     (* GET_ProgramLocalParameter4dvARB(disp)) parameters
   9491 static inline _glptr_ProgramLocalParameter4dvARB GET_ProgramLocalParameter4dvARB(struct _glapi_table *disp) {
   9492    return (_glptr_ProgramLocalParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB));
   9493 }
   9494 
   9495 static inline void SET_ProgramLocalParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) {
   9496    SET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB, fn);
   9497 }
   9498 
   9499 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
   9500 #define CALL_ProgramLocalParameter4fARB(disp, parameters) \
   9501     (* GET_ProgramLocalParameter4fARB(disp)) parameters
   9502 static inline _glptr_ProgramLocalParameter4fARB GET_ProgramLocalParameter4fARB(struct _glapi_table *disp) {
   9503    return (_glptr_ProgramLocalParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB));
   9504 }
   9505 
   9506 static inline void SET_ProgramLocalParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   9507    SET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB, fn);
   9508 }
   9509 
   9510 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fvARB)(GLenum, GLuint, const GLfloat *);
   9511 #define CALL_ProgramLocalParameter4fvARB(disp, parameters) \
   9512     (* GET_ProgramLocalParameter4fvARB(disp)) parameters
   9513 static inline _glptr_ProgramLocalParameter4fvARB GET_ProgramLocalParameter4fvARB(struct _glapi_table *disp) {
   9514    return (_glptr_ProgramLocalParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB));
   9515 }
   9516 
   9517 static inline void SET_ProgramLocalParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
   9518    SET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB, fn);
   9519 }
   9520 
   9521 typedef void (GLAPIENTRYP _glptr_ProgramStringARB)(GLenum, GLenum, GLsizei, const GLvoid *);
   9522 #define CALL_ProgramStringARB(disp, parameters) \
   9523     (* GET_ProgramStringARB(disp)) parameters
   9524 static inline _glptr_ProgramStringARB GET_ProgramStringARB(struct _glapi_table *disp) {
   9525    return (_glptr_ProgramStringARB) (GET_by_offset(disp, _gloffset_ProgramStringARB));
   9526 }
   9527 
   9528 static inline void SET_ProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, const GLvoid *)) {
   9529    SET_by_offset(disp, _gloffset_ProgramStringARB, fn);
   9530 }
   9531 
   9532 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fARB)(GLuint, GLfloat);
   9533 #define CALL_VertexAttrib1fARB(disp, parameters) \
   9534     (* GET_VertexAttrib1fARB(disp)) parameters
   9535 static inline _glptr_VertexAttrib1fARB GET_VertexAttrib1fARB(struct _glapi_table *disp) {
   9536    return (_glptr_VertexAttrib1fARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fARB));
   9537 }
   9538 
   9539 static inline void SET_VertexAttrib1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
   9540    SET_by_offset(disp, _gloffset_VertexAttrib1fARB, fn);
   9541 }
   9542 
   9543 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvARB)(GLuint, const GLfloat *);
   9544 #define CALL_VertexAttrib1fvARB(disp, parameters) \
   9545     (* GET_VertexAttrib1fvARB(disp)) parameters
   9546 static inline _glptr_VertexAttrib1fvARB GET_VertexAttrib1fvARB(struct _glapi_table *disp) {
   9547    return (_glptr_VertexAttrib1fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fvARB));
   9548 }
   9549 
   9550 static inline void SET_VertexAttrib1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   9551    SET_by_offset(disp, _gloffset_VertexAttrib1fvARB, fn);
   9552 }
   9553 
   9554 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fARB)(GLuint, GLfloat, GLfloat);
   9555 #define CALL_VertexAttrib2fARB(disp, parameters) \
   9556     (* GET_VertexAttrib2fARB(disp)) parameters
   9557 static inline _glptr_VertexAttrib2fARB GET_VertexAttrib2fARB(struct _glapi_table *disp) {
   9558    return (_glptr_VertexAttrib2fARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fARB));
   9559 }
   9560 
   9561 static inline void SET_VertexAttrib2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
   9562    SET_by_offset(disp, _gloffset_VertexAttrib2fARB, fn);
   9563 }
   9564 
   9565 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvARB)(GLuint, const GLfloat *);
   9566 #define CALL_VertexAttrib2fvARB(disp, parameters) \
   9567     (* GET_VertexAttrib2fvARB(disp)) parameters
   9568 static inline _glptr_VertexAttrib2fvARB GET_VertexAttrib2fvARB(struct _glapi_table *disp) {
   9569    return (_glptr_VertexAttrib2fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fvARB));
   9570 }
   9571 
   9572 static inline void SET_VertexAttrib2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   9573    SET_by_offset(disp, _gloffset_VertexAttrib2fvARB, fn);
   9574 }
   9575 
   9576 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fARB)(GLuint, GLfloat, GLfloat, GLfloat);
   9577 #define CALL_VertexAttrib3fARB(disp, parameters) \
   9578     (* GET_VertexAttrib3fARB(disp)) parameters
   9579 static inline _glptr_VertexAttrib3fARB GET_VertexAttrib3fARB(struct _glapi_table *disp) {
   9580    return (_glptr_VertexAttrib3fARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fARB));
   9581 }
   9582 
   9583 static inline void SET_VertexAttrib3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
   9584    SET_by_offset(disp, _gloffset_VertexAttrib3fARB, fn);
   9585 }
   9586 
   9587 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvARB)(GLuint, const GLfloat *);
   9588 #define CALL_VertexAttrib3fvARB(disp, parameters) \
   9589     (* GET_VertexAttrib3fvARB(disp)) parameters
   9590 static inline _glptr_VertexAttrib3fvARB GET_VertexAttrib3fvARB(struct _glapi_table *disp) {
   9591    return (_glptr_VertexAttrib3fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fvARB));
   9592 }
   9593 
   9594 static inline void SET_VertexAttrib3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   9595    SET_by_offset(disp, _gloffset_VertexAttrib3fvARB, fn);
   9596 }
   9597 
   9598 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fARB)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
   9599 #define CALL_VertexAttrib4fARB(disp, parameters) \
   9600     (* GET_VertexAttrib4fARB(disp)) parameters
   9601 static inline _glptr_VertexAttrib4fARB GET_VertexAttrib4fARB(struct _glapi_table *disp) {
   9602    return (_glptr_VertexAttrib4fARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fARB));
   9603 }
   9604 
   9605 static inline void SET_VertexAttrib4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   9606    SET_by_offset(disp, _gloffset_VertexAttrib4fARB, fn);
   9607 }
   9608 
   9609 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvARB)(GLuint, const GLfloat *);
   9610 #define CALL_VertexAttrib4fvARB(disp, parameters) \
   9611     (* GET_VertexAttrib4fvARB(disp)) parameters
   9612 static inline _glptr_VertexAttrib4fvARB GET_VertexAttrib4fvARB(struct _glapi_table *disp) {
   9613    return (_glptr_VertexAttrib4fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fvARB));
   9614 }
   9615 
   9616 static inline void SET_VertexAttrib4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   9617    SET_by_offset(disp, _gloffset_VertexAttrib4fvARB, fn);
   9618 }
   9619 
   9620 typedef void (GLAPIENTRYP _glptr_AttachObjectARB)(GLhandleARB, GLhandleARB);
   9621 #define CALL_AttachObjectARB(disp, parameters) \
   9622     (* GET_AttachObjectARB(disp)) parameters
   9623 static inline _glptr_AttachObjectARB GET_AttachObjectARB(struct _glapi_table *disp) {
   9624    return (_glptr_AttachObjectARB) (GET_by_offset(disp, _gloffset_AttachObjectARB));
   9625 }
   9626 
   9627 static inline void SET_AttachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
   9628    SET_by_offset(disp, _gloffset_AttachObjectARB, fn);
   9629 }
   9630 
   9631 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateProgramObjectARB)(void);
   9632 #define CALL_CreateProgramObjectARB(disp, parameters) \
   9633     (* GET_CreateProgramObjectARB(disp)) parameters
   9634 static inline _glptr_CreateProgramObjectARB GET_CreateProgramObjectARB(struct _glapi_table *disp) {
   9635    return (_glptr_CreateProgramObjectARB) (GET_by_offset(disp, _gloffset_CreateProgramObjectARB));
   9636 }
   9637 
   9638 static inline void SET_CreateProgramObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(void)) {
   9639    SET_by_offset(disp, _gloffset_CreateProgramObjectARB, fn);
   9640 }
   9641 
   9642 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateShaderObjectARB)(GLenum);
   9643 #define CALL_CreateShaderObjectARB(disp, parameters) \
   9644     (* GET_CreateShaderObjectARB(disp)) parameters
   9645 static inline _glptr_CreateShaderObjectARB GET_CreateShaderObjectARB(struct _glapi_table *disp) {
   9646    return (_glptr_CreateShaderObjectARB) (GET_by_offset(disp, _gloffset_CreateShaderObjectARB));
   9647 }
   9648 
   9649 static inline void SET_CreateShaderObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
   9650    SET_by_offset(disp, _gloffset_CreateShaderObjectARB, fn);
   9651 }
   9652 
   9653 typedef void (GLAPIENTRYP _glptr_DeleteObjectARB)(GLhandleARB);
   9654 #define CALL_DeleteObjectARB(disp, parameters) \
   9655     (* GET_DeleteObjectARB(disp)) parameters
   9656 static inline _glptr_DeleteObjectARB GET_DeleteObjectARB(struct _glapi_table *disp) {
   9657    return (_glptr_DeleteObjectARB) (GET_by_offset(disp, _gloffset_DeleteObjectARB));
   9658 }
   9659 
   9660 static inline void SET_DeleteObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
   9661    SET_by_offset(disp, _gloffset_DeleteObjectARB, fn);
   9662 }
   9663 
   9664 typedef void (GLAPIENTRYP _glptr_DetachObjectARB)(GLhandleARB, GLhandleARB);
   9665 #define CALL_DetachObjectARB(disp, parameters) \
   9666     (* GET_DetachObjectARB(disp)) parameters
   9667 static inline _glptr_DetachObjectARB GET_DetachObjectARB(struct _glapi_table *disp) {
   9668    return (_glptr_DetachObjectARB) (GET_by_offset(disp, _gloffset_DetachObjectARB));
   9669 }
   9670 
   9671 static inline void SET_DetachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
   9672    SET_by_offset(disp, _gloffset_DetachObjectARB, fn);
   9673 }
   9674 
   9675 typedef void (GLAPIENTRYP _glptr_GetAttachedObjectsARB)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *);
   9676 #define CALL_GetAttachedObjectsARB(disp, parameters) \
   9677     (* GET_GetAttachedObjectsARB(disp)) parameters
   9678 static inline _glptr_GetAttachedObjectsARB GET_GetAttachedObjectsARB(struct _glapi_table *disp) {
   9679    return (_glptr_GetAttachedObjectsARB) (GET_by_offset(disp, _gloffset_GetAttachedObjectsARB));
   9680 }
   9681 
   9682 static inline void SET_GetAttachedObjectsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *)) {
   9683    SET_by_offset(disp, _gloffset_GetAttachedObjectsARB, fn);
   9684 }
   9685 
   9686 typedef GLhandleARB (GLAPIENTRYP _glptr_GetHandleARB)(GLenum);
   9687 #define CALL_GetHandleARB(disp, parameters) \
   9688     (* GET_GetHandleARB(disp)) parameters
   9689 static inline _glptr_GetHandleARB GET_GetHandleARB(struct _glapi_table *disp) {
   9690    return (_glptr_GetHandleARB) (GET_by_offset(disp, _gloffset_GetHandleARB));
   9691 }
   9692 
   9693 static inline void SET_GetHandleARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
   9694    SET_by_offset(disp, _gloffset_GetHandleARB, fn);
   9695 }
   9696 
   9697 typedef void (GLAPIENTRYP _glptr_GetInfoLogARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
   9698 #define CALL_GetInfoLogARB(disp, parameters) \
   9699     (* GET_GetInfoLogARB(disp)) parameters
   9700 static inline _glptr_GetInfoLogARB GET_GetInfoLogARB(struct _glapi_table *disp) {
   9701    return (_glptr_GetInfoLogARB) (GET_by_offset(disp, _gloffset_GetInfoLogARB));
   9702 }
   9703 
   9704 static inline void SET_GetInfoLogARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
   9705    SET_by_offset(disp, _gloffset_GetInfoLogARB, fn);
   9706 }
   9707 
   9708 typedef void (GLAPIENTRYP _glptr_GetObjectParameterfvARB)(GLhandleARB, GLenum, GLfloat *);
   9709 #define CALL_GetObjectParameterfvARB(disp, parameters) \
   9710     (* GET_GetObjectParameterfvARB(disp)) parameters
   9711 static inline _glptr_GetObjectParameterfvARB GET_GetObjectParameterfvARB(struct _glapi_table *disp) {
   9712    return (_glptr_GetObjectParameterfvARB) (GET_by_offset(disp, _gloffset_GetObjectParameterfvARB));
   9713 }
   9714 
   9715 static inline void SET_GetObjectParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLfloat *)) {
   9716    SET_by_offset(disp, _gloffset_GetObjectParameterfvARB, fn);
   9717 }
   9718 
   9719 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivARB)(GLhandleARB, GLenum, GLint *);
   9720 #define CALL_GetObjectParameterivARB(disp, parameters) \
   9721     (* GET_GetObjectParameterivARB(disp)) parameters
   9722 static inline _glptr_GetObjectParameterivARB GET_GetObjectParameterivARB(struct _glapi_table *disp) {
   9723    return (_glptr_GetObjectParameterivARB) (GET_by_offset(disp, _gloffset_GetObjectParameterivARB));
   9724 }
   9725 
   9726 static inline void SET_GetObjectParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLint *)) {
   9727    SET_by_offset(disp, _gloffset_GetObjectParameterivARB, fn);
   9728 }
   9729 
   9730 typedef void (GLAPIENTRYP _glptr_DrawArraysInstancedARB)(GLenum, GLint, GLsizei, GLsizei);
   9731 #define CALL_DrawArraysInstancedARB(disp, parameters) \
   9732     (* GET_DrawArraysInstancedARB(disp)) parameters
   9733 static inline _glptr_DrawArraysInstancedARB GET_DrawArraysInstancedARB(struct _glapi_table *disp) {
   9734    return (_glptr_DrawArraysInstancedARB) (GET_by_offset(disp, _gloffset_DrawArraysInstancedARB));
   9735 }
   9736 
   9737 static inline void SET_DrawArraysInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLsizei)) {
   9738    SET_by_offset(disp, _gloffset_DrawArraysInstancedARB, fn);
   9739 }
   9740 
   9741 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedARB)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei);
   9742 #define CALL_DrawElementsInstancedARB(disp, parameters) \
   9743     (* GET_DrawElementsInstancedARB(disp)) parameters
   9744 static inline _glptr_DrawElementsInstancedARB GET_DrawElementsInstancedARB(struct _glapi_table *disp) {
   9745    return (_glptr_DrawElementsInstancedARB) (GET_by_offset(disp, _gloffset_DrawElementsInstancedARB));
   9746 }
   9747 
   9748 static inline void SET_DrawElementsInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei)) {
   9749    SET_by_offset(disp, _gloffset_DrawElementsInstancedARB, fn);
   9750 }
   9751 
   9752 typedef void (GLAPIENTRYP _glptr_BindFramebuffer)(GLenum, GLuint);
   9753 #define CALL_BindFramebuffer(disp, parameters) \
   9754     (* GET_BindFramebuffer(disp)) parameters
   9755 static inline _glptr_BindFramebuffer GET_BindFramebuffer(struct _glapi_table *disp) {
   9756    return (_glptr_BindFramebuffer) (GET_by_offset(disp, _gloffset_BindFramebuffer));
   9757 }
   9758 
   9759 static inline void SET_BindFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   9760    SET_by_offset(disp, _gloffset_BindFramebuffer, fn);
   9761 }
   9762 
   9763 typedef void (GLAPIENTRYP _glptr_BindRenderbuffer)(GLenum, GLuint);
   9764 #define CALL_BindRenderbuffer(disp, parameters) \
   9765     (* GET_BindRenderbuffer(disp)) parameters
   9766 static inline _glptr_BindRenderbuffer GET_BindRenderbuffer(struct _glapi_table *disp) {
   9767    return (_glptr_BindRenderbuffer) (GET_by_offset(disp, _gloffset_BindRenderbuffer));
   9768 }
   9769 
   9770 static inline void SET_BindRenderbuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   9771    SET_by_offset(disp, _gloffset_BindRenderbuffer, fn);
   9772 }
   9773 
   9774 typedef void (GLAPIENTRYP _glptr_BlitFramebuffer)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum);
   9775 #define CALL_BlitFramebuffer(disp, parameters) \
   9776     (* GET_BlitFramebuffer(disp)) parameters
   9777 static inline _glptr_BlitFramebuffer GET_BlitFramebuffer(struct _glapi_table *disp) {
   9778    return (_glptr_BlitFramebuffer) (GET_by_offset(disp, _gloffset_BlitFramebuffer));
   9779 }
   9780 
   9781 static inline void SET_BlitFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum)) {
   9782    SET_by_offset(disp, _gloffset_BlitFramebuffer, fn);
   9783 }
   9784 
   9785 typedef GLenum (GLAPIENTRYP _glptr_CheckFramebufferStatus)(GLenum);
   9786 #define CALL_CheckFramebufferStatus(disp, parameters) \
   9787     (* GET_CheckFramebufferStatus(disp)) parameters
   9788 static inline _glptr_CheckFramebufferStatus GET_CheckFramebufferStatus(struct _glapi_table *disp) {
   9789    return (_glptr_CheckFramebufferStatus) (GET_by_offset(disp, _gloffset_CheckFramebufferStatus));
   9790 }
   9791 
   9792 static inline void SET_CheckFramebufferStatus(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum)) {
   9793    SET_by_offset(disp, _gloffset_CheckFramebufferStatus, fn);
   9794 }
   9795 
   9796 typedef void (GLAPIENTRYP _glptr_DeleteFramebuffers)(GLsizei, const GLuint *);
   9797 #define CALL_DeleteFramebuffers(disp, parameters) \
   9798     (* GET_DeleteFramebuffers(disp)) parameters
   9799 static inline _glptr_DeleteFramebuffers GET_DeleteFramebuffers(struct _glapi_table *disp) {
   9800    return (_glptr_DeleteFramebuffers) (GET_by_offset(disp, _gloffset_DeleteFramebuffers));
   9801 }
   9802 
   9803 static inline void SET_DeleteFramebuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   9804    SET_by_offset(disp, _gloffset_DeleteFramebuffers, fn);
   9805 }
   9806 
   9807 typedef void (GLAPIENTRYP _glptr_DeleteRenderbuffers)(GLsizei, const GLuint *);
   9808 #define CALL_DeleteRenderbuffers(disp, parameters) \
   9809     (* GET_DeleteRenderbuffers(disp)) parameters
   9810 static inline _glptr_DeleteRenderbuffers GET_DeleteRenderbuffers(struct _glapi_table *disp) {
   9811    return (_glptr_DeleteRenderbuffers) (GET_by_offset(disp, _gloffset_DeleteRenderbuffers));
   9812 }
   9813 
   9814 static inline void SET_DeleteRenderbuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   9815    SET_by_offset(disp, _gloffset_DeleteRenderbuffers, fn);
   9816 }
   9817 
   9818 typedef void (GLAPIENTRYP _glptr_FramebufferRenderbuffer)(GLenum, GLenum, GLenum, GLuint);
   9819 #define CALL_FramebufferRenderbuffer(disp, parameters) \
   9820     (* GET_FramebufferRenderbuffer(disp)) parameters
   9821 static inline _glptr_FramebufferRenderbuffer GET_FramebufferRenderbuffer(struct _glapi_table *disp) {
   9822    return (_glptr_FramebufferRenderbuffer) (GET_by_offset(disp, _gloffset_FramebufferRenderbuffer));
   9823 }
   9824 
   9825 static inline void SET_FramebufferRenderbuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint)) {
   9826    SET_by_offset(disp, _gloffset_FramebufferRenderbuffer, fn);
   9827 }
   9828 
   9829 typedef void (GLAPIENTRYP _glptr_FramebufferTexture1D)(GLenum, GLenum, GLenum, GLuint, GLint);
   9830 #define CALL_FramebufferTexture1D(disp, parameters) \
   9831     (* GET_FramebufferTexture1D(disp)) parameters
   9832 static inline _glptr_FramebufferTexture1D GET_FramebufferTexture1D(struct _glapi_table *disp) {
   9833    return (_glptr_FramebufferTexture1D) (GET_by_offset(disp, _gloffset_FramebufferTexture1D));
   9834 }
   9835 
   9836 static inline void SET_FramebufferTexture1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) {
   9837    SET_by_offset(disp, _gloffset_FramebufferTexture1D, fn);
   9838 }
   9839 
   9840 typedef void (GLAPIENTRYP _glptr_FramebufferTexture2D)(GLenum, GLenum, GLenum, GLuint, GLint);
   9841 #define CALL_FramebufferTexture2D(disp, parameters) \
   9842     (* GET_FramebufferTexture2D(disp)) parameters
   9843 static inline _glptr_FramebufferTexture2D GET_FramebufferTexture2D(struct _glapi_table *disp) {
   9844    return (_glptr_FramebufferTexture2D) (GET_by_offset(disp, _gloffset_FramebufferTexture2D));
   9845 }
   9846 
   9847 static inline void SET_FramebufferTexture2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) {
   9848    SET_by_offset(disp, _gloffset_FramebufferTexture2D, fn);
   9849 }
   9850 
   9851 typedef void (GLAPIENTRYP _glptr_FramebufferTexture3D)(GLenum, GLenum, GLenum, GLuint, GLint, GLint);
   9852 #define CALL_FramebufferTexture3D(disp, parameters) \
   9853     (* GET_FramebufferTexture3D(disp)) parameters
   9854 static inline _glptr_FramebufferTexture3D GET_FramebufferTexture3D(struct _glapi_table *disp) {
   9855    return (_glptr_FramebufferTexture3D) (GET_by_offset(disp, _gloffset_FramebufferTexture3D));
   9856 }
   9857 
   9858 static inline void SET_FramebufferTexture3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint, GLint)) {
   9859    SET_by_offset(disp, _gloffset_FramebufferTexture3D, fn);
   9860 }
   9861 
   9862 typedef void (GLAPIENTRYP _glptr_FramebufferTextureLayer)(GLenum, GLenum, GLuint, GLint, GLint);
   9863 #define CALL_FramebufferTextureLayer(disp, parameters) \
   9864     (* GET_FramebufferTextureLayer(disp)) parameters
   9865 static inline _glptr_FramebufferTextureLayer GET_FramebufferTextureLayer(struct _glapi_table *disp) {
   9866    return (_glptr_FramebufferTextureLayer) (GET_by_offset(disp, _gloffset_FramebufferTextureLayer));
   9867 }
   9868 
   9869 static inline void SET_FramebufferTextureLayer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint, GLint)) {
   9870    SET_by_offset(disp, _gloffset_FramebufferTextureLayer, fn);
   9871 }
   9872 
   9873 typedef void (GLAPIENTRYP _glptr_GenFramebuffers)(GLsizei, GLuint *);
   9874 #define CALL_GenFramebuffers(disp, parameters) \
   9875     (* GET_GenFramebuffers(disp)) parameters
   9876 static inline _glptr_GenFramebuffers GET_GenFramebuffers(struct _glapi_table *disp) {
   9877    return (_glptr_GenFramebuffers) (GET_by_offset(disp, _gloffset_GenFramebuffers));
   9878 }
   9879 
   9880 static inline void SET_GenFramebuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   9881    SET_by_offset(disp, _gloffset_GenFramebuffers, fn);
   9882 }
   9883 
   9884 typedef void (GLAPIENTRYP _glptr_GenRenderbuffers)(GLsizei, GLuint *);
   9885 #define CALL_GenRenderbuffers(disp, parameters) \
   9886     (* GET_GenRenderbuffers(disp)) parameters
   9887 static inline _glptr_GenRenderbuffers GET_GenRenderbuffers(struct _glapi_table *disp) {
   9888    return (_glptr_GenRenderbuffers) (GET_by_offset(disp, _gloffset_GenRenderbuffers));
   9889 }
   9890 
   9891 static inline void SET_GenRenderbuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   9892    SET_by_offset(disp, _gloffset_GenRenderbuffers, fn);
   9893 }
   9894 
   9895 typedef void (GLAPIENTRYP _glptr_GenerateMipmap)(GLenum);
   9896 #define CALL_GenerateMipmap(disp, parameters) \
   9897     (* GET_GenerateMipmap(disp)) parameters
   9898 static inline _glptr_GenerateMipmap GET_GenerateMipmap(struct _glapi_table *disp) {
   9899    return (_glptr_GenerateMipmap) (GET_by_offset(disp, _gloffset_GenerateMipmap));
   9900 }
   9901 
   9902 static inline void SET_GenerateMipmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   9903    SET_by_offset(disp, _gloffset_GenerateMipmap, fn);
   9904 }
   9905 
   9906 typedef void (GLAPIENTRYP _glptr_GetFramebufferAttachmentParameteriv)(GLenum, GLenum, GLenum, GLint *);
   9907 #define CALL_GetFramebufferAttachmentParameteriv(disp, parameters) \
   9908     (* GET_GetFramebufferAttachmentParameteriv(disp)) parameters
   9909 static inline _glptr_GetFramebufferAttachmentParameteriv GET_GetFramebufferAttachmentParameteriv(struct _glapi_table *disp) {
   9910    return (_glptr_GetFramebufferAttachmentParameteriv) (GET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameteriv));
   9911 }
   9912 
   9913 static inline void SET_GetFramebufferAttachmentParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) {
   9914    SET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameteriv, fn);
   9915 }
   9916 
   9917 typedef void (GLAPIENTRYP _glptr_GetRenderbufferParameteriv)(GLenum, GLenum, GLint *);
   9918 #define CALL_GetRenderbufferParameteriv(disp, parameters) \
   9919     (* GET_GetRenderbufferParameteriv(disp)) parameters
   9920 static inline _glptr_GetRenderbufferParameteriv GET_GetRenderbufferParameteriv(struct _glapi_table *disp) {
   9921    return (_glptr_GetRenderbufferParameteriv) (GET_by_offset(disp, _gloffset_GetRenderbufferParameteriv));
   9922 }
   9923 
   9924 static inline void SET_GetRenderbufferParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   9925    SET_by_offset(disp, _gloffset_GetRenderbufferParameteriv, fn);
   9926 }
   9927 
   9928 typedef GLboolean (GLAPIENTRYP _glptr_IsFramebuffer)(GLuint);
   9929 #define CALL_IsFramebuffer(disp, parameters) \
   9930     (* GET_IsFramebuffer(disp)) parameters
   9931 static inline _glptr_IsFramebuffer GET_IsFramebuffer(struct _glapi_table *disp) {
   9932    return (_glptr_IsFramebuffer) (GET_by_offset(disp, _gloffset_IsFramebuffer));
   9933 }
   9934 
   9935 static inline void SET_IsFramebuffer(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   9936    SET_by_offset(disp, _gloffset_IsFramebuffer, fn);
   9937 }
   9938 
   9939 typedef GLboolean (GLAPIENTRYP _glptr_IsRenderbuffer)(GLuint);
   9940 #define CALL_IsRenderbuffer(disp, parameters) \
   9941     (* GET_IsRenderbuffer(disp)) parameters
   9942 static inline _glptr_IsRenderbuffer GET_IsRenderbuffer(struct _glapi_table *disp) {
   9943    return (_glptr_IsRenderbuffer) (GET_by_offset(disp, _gloffset_IsRenderbuffer));
   9944 }
   9945 
   9946 static inline void SET_IsRenderbuffer(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   9947    SET_by_offset(disp, _gloffset_IsRenderbuffer, fn);
   9948 }
   9949 
   9950 typedef void (GLAPIENTRYP _glptr_RenderbufferStorage)(GLenum, GLenum, GLsizei, GLsizei);
   9951 #define CALL_RenderbufferStorage(disp, parameters) \
   9952     (* GET_RenderbufferStorage(disp)) parameters
   9953 static inline _glptr_RenderbufferStorage GET_RenderbufferStorage(struct _glapi_table *disp) {
   9954    return (_glptr_RenderbufferStorage) (GET_by_offset(disp, _gloffset_RenderbufferStorage));
   9955 }
   9956 
   9957 static inline void SET_RenderbufferStorage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei)) {
   9958    SET_by_offset(disp, _gloffset_RenderbufferStorage, fn);
   9959 }
   9960 
   9961 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei);
   9962 #define CALL_RenderbufferStorageMultisample(disp, parameters) \
   9963     (* GET_RenderbufferStorageMultisample(disp)) parameters
   9964 static inline _glptr_RenderbufferStorageMultisample GET_RenderbufferStorageMultisample(struct _glapi_table *disp) {
   9965    return (_glptr_RenderbufferStorageMultisample) (GET_by_offset(disp, _gloffset_RenderbufferStorageMultisample));
   9966 }
   9967 
   9968 static inline void SET_RenderbufferStorageMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
   9969    SET_by_offset(disp, _gloffset_RenderbufferStorageMultisample, fn);
   9970 }
   9971 
   9972 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRange)(GLenum, GLintptr, GLsizeiptr);
   9973 #define CALL_FlushMappedBufferRange(disp, parameters) \
   9974     (* GET_FlushMappedBufferRange(disp)) parameters
   9975 static inline _glptr_FlushMappedBufferRange GET_FlushMappedBufferRange(struct _glapi_table *disp) {
   9976    return (_glptr_FlushMappedBufferRange) (GET_by_offset(disp, _gloffset_FlushMappedBufferRange));
   9977 }
   9978 
   9979 static inline void SET_FlushMappedBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
   9980    SET_by_offset(disp, _gloffset_FlushMappedBufferRange, fn);
   9981 }
   9982 
   9983 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferRange)(GLenum, GLintptr, GLsizeiptr, GLbitfield);
   9984 #define CALL_MapBufferRange(disp, parameters) \
   9985     (* GET_MapBufferRange(disp)) parameters
   9986 static inline _glptr_MapBufferRange GET_MapBufferRange(struct _glapi_table *disp) {
   9987    return (_glptr_MapBufferRange) (GET_by_offset(disp, _gloffset_MapBufferRange));
   9988 }
   9989 
   9990 static inline void SET_MapBufferRange(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLbitfield)) {
   9991    SET_by_offset(disp, _gloffset_MapBufferRange, fn);
   9992 }
   9993 
   9994 typedef void (GLAPIENTRYP _glptr_BindVertexArray)(GLuint);
   9995 #define CALL_BindVertexArray(disp, parameters) \
   9996     (* GET_BindVertexArray(disp)) parameters
   9997 static inline _glptr_BindVertexArray GET_BindVertexArray(struct _glapi_table *disp) {
   9998    return (_glptr_BindVertexArray) (GET_by_offset(disp, _gloffset_BindVertexArray));
   9999 }
   10000 
   10001 static inline void SET_BindVertexArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   10002    SET_by_offset(disp, _gloffset_BindVertexArray, fn);
   10003 }
   10004 
   10005 typedef void (GLAPIENTRYP _glptr_DeleteVertexArrays)(GLsizei, const GLuint *);
   10006 #define CALL_DeleteVertexArrays(disp, parameters) \
   10007     (* GET_DeleteVertexArrays(disp)) parameters
   10008 static inline _glptr_DeleteVertexArrays GET_DeleteVertexArrays(struct _glapi_table *disp) {
   10009    return (_glptr_DeleteVertexArrays) (GET_by_offset(disp, _gloffset_DeleteVertexArrays));
   10010 }
   10011 
   10012 static inline void SET_DeleteVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   10013    SET_by_offset(disp, _gloffset_DeleteVertexArrays, fn);
   10014 }
   10015 
   10016 typedef void (GLAPIENTRYP _glptr_GenVertexArrays)(GLsizei, GLuint *);
   10017 #define CALL_GenVertexArrays(disp, parameters) \
   10018     (* GET_GenVertexArrays(disp)) parameters
   10019 static inline _glptr_GenVertexArrays GET_GenVertexArrays(struct _glapi_table *disp) {
   10020    return (_glptr_GenVertexArrays) (GET_by_offset(disp, _gloffset_GenVertexArrays));
   10021 }
   10022 
   10023 static inline void SET_GenVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   10024    SET_by_offset(disp, _gloffset_GenVertexArrays, fn);
   10025 }
   10026 
   10027 typedef GLboolean (GLAPIENTRYP _glptr_IsVertexArray)(GLuint);
   10028 #define CALL_IsVertexArray(disp, parameters) \
   10029     (* GET_IsVertexArray(disp)) parameters
   10030 static inline _glptr_IsVertexArray GET_IsVertexArray(struct _glapi_table *disp) {
   10031    return (_glptr_IsVertexArray) (GET_by_offset(disp, _gloffset_IsVertexArray));
   10032 }
   10033 
   10034 static inline void SET_IsVertexArray(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   10035    SET_by_offset(disp, _gloffset_IsVertexArray, fn);
   10036 }
   10037 
   10038 typedef void (GLAPIENTRYP _glptr_GetActiveUniformBlockName)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *);
   10039 #define CALL_GetActiveUniformBlockName(disp, parameters) \
   10040     (* GET_GetActiveUniformBlockName(disp)) parameters
   10041 static inline _glptr_GetActiveUniformBlockName GET_GetActiveUniformBlockName(struct _glapi_table *disp) {
   10042    return (_glptr_GetActiveUniformBlockName) (GET_by_offset(disp, _gloffset_GetActiveUniformBlockName));
   10043 }
   10044 
   10045 static inline void SET_GetActiveUniformBlockName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *)) {
   10046    SET_by_offset(disp, _gloffset_GetActiveUniformBlockName, fn);
   10047 }
   10048 
   10049 typedef void (GLAPIENTRYP _glptr_GetActiveUniformBlockiv)(GLuint, GLuint, GLenum, GLint *);
   10050 #define CALL_GetActiveUniformBlockiv(disp, parameters) \
   10051     (* GET_GetActiveUniformBlockiv(disp)) parameters
   10052 static inline _glptr_GetActiveUniformBlockiv GET_GetActiveUniformBlockiv(struct _glapi_table *disp) {
   10053    return (_glptr_GetActiveUniformBlockiv) (GET_by_offset(disp, _gloffset_GetActiveUniformBlockiv));
   10054 }
   10055 
   10056 static inline void SET_GetActiveUniformBlockiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLint *)) {
   10057    SET_by_offset(disp, _gloffset_GetActiveUniformBlockiv, fn);
   10058 }
   10059 
   10060 typedef void (GLAPIENTRYP _glptr_GetActiveUniformName)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *);
   10061 #define CALL_GetActiveUniformName(disp, parameters) \
   10062     (* GET_GetActiveUniformName(disp)) parameters
   10063 static inline _glptr_GetActiveUniformName GET_GetActiveUniformName(struct _glapi_table *disp) {
   10064    return (_glptr_GetActiveUniformName) (GET_by_offset(disp, _gloffset_GetActiveUniformName));
   10065 }
   10066 
   10067 static inline void SET_GetActiveUniformName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *)) {
   10068    SET_by_offset(disp, _gloffset_GetActiveUniformName, fn);
   10069 }
   10070 
   10071 typedef void (GLAPIENTRYP _glptr_GetActiveUniformsiv)(GLuint, GLsizei, const GLuint *, GLenum, GLint *);
   10072 #define CALL_GetActiveUniformsiv(disp, parameters) \
   10073     (* GET_GetActiveUniformsiv(disp)) parameters
   10074 static inline _glptr_GetActiveUniformsiv GET_GetActiveUniformsiv(struct _glapi_table *disp) {
   10075    return (_glptr_GetActiveUniformsiv) (GET_by_offset(disp, _gloffset_GetActiveUniformsiv));
   10076 }
   10077 
   10078 static inline void SET_GetActiveUniformsiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLuint *, GLenum, GLint *)) {
   10079    SET_by_offset(disp, _gloffset_GetActiveUniformsiv, fn);
   10080 }
   10081 
   10082 typedef GLuint (GLAPIENTRYP _glptr_GetUniformBlockIndex)(GLuint, const GLchar *);
   10083 #define CALL_GetUniformBlockIndex(disp, parameters) \
   10084     (* GET_GetUniformBlockIndex(disp)) parameters
   10085 static inline _glptr_GetUniformBlockIndex GET_GetUniformBlockIndex(struct _glapi_table *disp) {
   10086    return (_glptr_GetUniformBlockIndex) (GET_by_offset(disp, _gloffset_GetUniformBlockIndex));
   10087 }
   10088 
   10089 static inline void SET_GetUniformBlockIndex(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
   10090    SET_by_offset(disp, _gloffset_GetUniformBlockIndex, fn);
   10091 }
   10092 
   10093 typedef void (GLAPIENTRYP _glptr_GetUniformIndices)(GLuint, GLsizei, const GLchar * const *, GLuint *);
   10094 #define CALL_GetUniformIndices(disp, parameters) \
   10095     (* GET_GetUniformIndices(disp)) parameters
   10096 static inline _glptr_GetUniformIndices GET_GetUniformIndices(struct _glapi_table *disp) {
   10097    return (_glptr_GetUniformIndices) (GET_by_offset(disp, _gloffset_GetUniformIndices));
   10098 }
   10099 
   10100 static inline void SET_GetUniformIndices(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLchar * const *, GLuint *)) {
   10101    SET_by_offset(disp, _gloffset_GetUniformIndices, fn);
   10102 }
   10103 
   10104 typedef void (GLAPIENTRYP _glptr_UniformBlockBinding)(GLuint, GLuint, GLuint);
   10105 #define CALL_UniformBlockBinding(disp, parameters) \
   10106     (* GET_UniformBlockBinding(disp)) parameters
   10107 static inline _glptr_UniformBlockBinding GET_UniformBlockBinding(struct _glapi_table *disp) {
   10108    return (_glptr_UniformBlockBinding) (GET_by_offset(disp, _gloffset_UniformBlockBinding));
   10109 }
   10110 
   10111 static inline void SET_UniformBlockBinding(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   10112    SET_by_offset(disp, _gloffset_UniformBlockBinding, fn);
   10113 }
   10114 
   10115 typedef void (GLAPIENTRYP _glptr_CopyBufferSubData)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr);
   10116 #define CALL_CopyBufferSubData(disp, parameters) \
   10117     (* GET_CopyBufferSubData(disp)) parameters
   10118 static inline _glptr_CopyBufferSubData GET_CopyBufferSubData(struct _glapi_table *disp) {
   10119    return (_glptr_CopyBufferSubData) (GET_by_offset(disp, _gloffset_CopyBufferSubData));
   10120 }
   10121 
   10122 static inline void SET_CopyBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr)) {
   10123    SET_by_offset(disp, _gloffset_CopyBufferSubData, fn);
   10124 }
   10125 
   10126 typedef GLenum (GLAPIENTRYP _glptr_ClientWaitSync)(GLsync, GLbitfield, GLuint64);
   10127 #define CALL_ClientWaitSync(disp, parameters) \
   10128     (* GET_ClientWaitSync(disp)) parameters
   10129 static inline _glptr_ClientWaitSync GET_ClientWaitSync(struct _glapi_table *disp) {
   10130    return (_glptr_ClientWaitSync) (GET_by_offset(disp, _gloffset_ClientWaitSync));
   10131 }
   10132 
   10133 static inline void SET_ClientWaitSync(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLsync, GLbitfield, GLuint64)) {
   10134    SET_by_offset(disp, _gloffset_ClientWaitSync, fn);
   10135 }
   10136 
   10137 typedef void (GLAPIENTRYP _glptr_DeleteSync)(GLsync);
   10138 #define CALL_DeleteSync(disp, parameters) \
   10139     (* GET_DeleteSync(disp)) parameters
   10140 static inline _glptr_DeleteSync GET_DeleteSync(struct _glapi_table *disp) {
   10141    return (_glptr_DeleteSync) (GET_by_offset(disp, _gloffset_DeleteSync));
   10142 }
   10143 
   10144 static inline void SET_DeleteSync(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync)) {
   10145    SET_by_offset(disp, _gloffset_DeleteSync, fn);
   10146 }
   10147 
   10148 typedef GLsync (GLAPIENTRYP _glptr_FenceSync)(GLenum, GLbitfield);
   10149 #define CALL_FenceSync(disp, parameters) \
   10150     (* GET_FenceSync(disp)) parameters
   10151 static inline _glptr_FenceSync GET_FenceSync(struct _glapi_table *disp) {
   10152    return (_glptr_FenceSync) (GET_by_offset(disp, _gloffset_FenceSync));
   10153 }
   10154 
   10155 static inline void SET_FenceSync(struct _glapi_table *disp, GLsync (GLAPIENTRYP fn)(GLenum, GLbitfield)) {
   10156    SET_by_offset(disp, _gloffset_FenceSync, fn);
   10157 }
   10158 
   10159 typedef void (GLAPIENTRYP _glptr_GetInteger64v)(GLenum, GLint64 *);
   10160 #define CALL_GetInteger64v(disp, parameters) \
   10161     (* GET_GetInteger64v(disp)) parameters
   10162 static inline _glptr_GetInteger64v GET_GetInteger64v(struct _glapi_table *disp) {
   10163    return (_glptr_GetInteger64v) (GET_by_offset(disp, _gloffset_GetInteger64v));
   10164 }
   10165 
   10166 static inline void SET_GetInteger64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint64 *)) {
   10167    SET_by_offset(disp, _gloffset_GetInteger64v, fn);
   10168 }
   10169 
   10170 typedef void (GLAPIENTRYP _glptr_GetSynciv)(GLsync, GLenum, GLsizei, GLsizei *, GLint *);
   10171 #define CALL_GetSynciv(disp, parameters) \
   10172     (* GET_GetSynciv(disp)) parameters
   10173 static inline _glptr_GetSynciv GET_GetSynciv(struct _glapi_table *disp) {
   10174    return (_glptr_GetSynciv) (GET_by_offset(disp, _gloffset_GetSynciv));
   10175 }
   10176 
   10177 static inline void SET_GetSynciv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync, GLenum, GLsizei, GLsizei *, GLint *)) {
   10178    SET_by_offset(disp, _gloffset_GetSynciv, fn);
   10179 }
   10180 
   10181 typedef GLboolean (GLAPIENTRYP _glptr_IsSync)(GLsync);
   10182 #define CALL_IsSync(disp, parameters) \
   10183     (* GET_IsSync(disp)) parameters
   10184 static inline _glptr_IsSync GET_IsSync(struct _glapi_table *disp) {
   10185    return (_glptr_IsSync) (GET_by_offset(disp, _gloffset_IsSync));
   10186 }
   10187 
   10188 static inline void SET_IsSync(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsync)) {
   10189    SET_by_offset(disp, _gloffset_IsSync, fn);
   10190 }
   10191 
   10192 typedef void (GLAPIENTRYP _glptr_WaitSync)(GLsync, GLbitfield, GLuint64);
   10193 #define CALL_WaitSync(disp, parameters) \
   10194     (* GET_WaitSync(disp)) parameters
   10195 static inline _glptr_WaitSync GET_WaitSync(struct _glapi_table *disp) {
   10196    return (_glptr_WaitSync) (GET_by_offset(disp, _gloffset_WaitSync));
   10197 }
   10198 
   10199 static inline void SET_WaitSync(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync, GLbitfield, GLuint64)) {
   10200    SET_by_offset(disp, _gloffset_WaitSync, fn);
   10201 }
   10202 
   10203 typedef void (GLAPIENTRYP _glptr_DrawElementsBaseVertex)(GLenum, GLsizei, GLenum, const GLvoid *, GLint);
   10204 #define CALL_DrawElementsBaseVertex(disp, parameters) \
   10205     (* GET_DrawElementsBaseVertex(disp)) parameters
   10206 static inline _glptr_DrawElementsBaseVertex GET_DrawElementsBaseVertex(struct _glapi_table *disp) {
   10207    return (_glptr_DrawElementsBaseVertex) (GET_by_offset(disp, _gloffset_DrawElementsBaseVertex));
   10208 }
   10209 
   10210 static inline void SET_DrawElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLint)) {
   10211    SET_by_offset(disp, _gloffset_DrawElementsBaseVertex, fn);
   10212 }
   10213 
   10214 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseVertex)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint);
   10215 #define CALL_DrawElementsInstancedBaseVertex(disp, parameters) \
   10216     (* GET_DrawElementsInstancedBaseVertex(disp)) parameters
   10217 static inline _glptr_DrawElementsInstancedBaseVertex GET_DrawElementsInstancedBaseVertex(struct _glapi_table *disp) {
   10218    return (_glptr_DrawElementsInstancedBaseVertex) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertex));
   10219 }
   10220 
   10221 static inline void SET_DrawElementsInstancedBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint)) {
   10222    SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertex, fn);
   10223 }
   10224 
   10225 typedef void (GLAPIENTRYP _glptr_DrawRangeElementsBaseVertex)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *, GLint);
   10226 #define CALL_DrawRangeElementsBaseVertex(disp, parameters) \
   10227     (* GET_DrawRangeElementsBaseVertex(disp)) parameters
   10228 static inline _glptr_DrawRangeElementsBaseVertex GET_DrawRangeElementsBaseVertex(struct _glapi_table *disp) {
   10229    return (_glptr_DrawRangeElementsBaseVertex) (GET_by_offset(disp, _gloffset_DrawRangeElementsBaseVertex));
   10230 }
   10231 
   10232 static inline void SET_DrawRangeElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *, GLint)) {
   10233    SET_by_offset(disp, _gloffset_DrawRangeElementsBaseVertex, fn);
   10234 }
   10235 
   10236 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsBaseVertex)(GLenum, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, const GLint *);
   10237 #define CALL_MultiDrawElementsBaseVertex(disp, parameters) \
   10238     (* GET_MultiDrawElementsBaseVertex(disp)) parameters
   10239 static inline _glptr_MultiDrawElementsBaseVertex GET_MultiDrawElementsBaseVertex(struct _glapi_table *disp) {
   10240    return (_glptr_MultiDrawElementsBaseVertex) (GET_by_offset(disp, _gloffset_MultiDrawElementsBaseVertex));
   10241 }
   10242 
   10243 static inline void SET_MultiDrawElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, const GLint *)) {
   10244    SET_by_offset(disp, _gloffset_MultiDrawElementsBaseVertex, fn);
   10245 }
   10246 
   10247 typedef void (GLAPIENTRYP _glptr_ProvokingVertex)(GLenum);
   10248 #define CALL_ProvokingVertex(disp, parameters) \
   10249     (* GET_ProvokingVertex(disp)) parameters
   10250 static inline _glptr_ProvokingVertex GET_ProvokingVertex(struct _glapi_table *disp) {
   10251    return (_glptr_ProvokingVertex) (GET_by_offset(disp, _gloffset_ProvokingVertex));
   10252 }
   10253 
   10254 static inline void SET_ProvokingVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   10255    SET_by_offset(disp, _gloffset_ProvokingVertex, fn);
   10256 }
   10257 
   10258 typedef void (GLAPIENTRYP _glptr_GetMultisamplefv)(GLenum, GLuint, GLfloat *);
   10259 #define CALL_GetMultisamplefv(disp, parameters) \
   10260     (* GET_GetMultisamplefv(disp)) parameters
   10261 static inline _glptr_GetMultisamplefv GET_GetMultisamplefv(struct _glapi_table *disp) {
   10262    return (_glptr_GetMultisamplefv) (GET_by_offset(disp, _gloffset_GetMultisamplefv));
   10263 }
   10264 
   10265 static inline void SET_GetMultisamplefv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
   10266    SET_by_offset(disp, _gloffset_GetMultisamplefv, fn);
   10267 }
   10268 
   10269 typedef void (GLAPIENTRYP _glptr_SampleMaski)(GLuint, GLbitfield);
   10270 #define CALL_SampleMaski(disp, parameters) \
   10271     (* GET_SampleMaski(disp)) parameters
   10272 static inline _glptr_SampleMaski GET_SampleMaski(struct _glapi_table *disp) {
   10273    return (_glptr_SampleMaski) (GET_by_offset(disp, _gloffset_SampleMaski));
   10274 }
   10275 
   10276 static inline void SET_SampleMaski(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLbitfield)) {
   10277    SET_by_offset(disp, _gloffset_SampleMaski, fn);
   10278 }
   10279 
   10280 typedef void (GLAPIENTRYP _glptr_TexImage2DMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLboolean);
   10281 #define CALL_TexImage2DMultisample(disp, parameters) \
   10282     (* GET_TexImage2DMultisample(disp)) parameters
   10283 static inline _glptr_TexImage2DMultisample GET_TexImage2DMultisample(struct _glapi_table *disp) {
   10284    return (_glptr_TexImage2DMultisample) (GET_by_offset(disp, _gloffset_TexImage2DMultisample));
   10285 }
   10286 
   10287 static inline void SET_TexImage2DMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLboolean)) {
   10288    SET_by_offset(disp, _gloffset_TexImage2DMultisample, fn);
   10289 }
   10290 
   10291 typedef void (GLAPIENTRYP _glptr_TexImage3DMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean);
   10292 #define CALL_TexImage3DMultisample(disp, parameters) \
   10293     (* GET_TexImage3DMultisample(disp)) parameters
   10294 static inline _glptr_TexImage3DMultisample GET_TexImage3DMultisample(struct _glapi_table *disp) {
   10295    return (_glptr_TexImage3DMultisample) (GET_by_offset(disp, _gloffset_TexImage3DMultisample));
   10296 }
   10297 
   10298 static inline void SET_TexImage3DMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean)) {
   10299    SET_by_offset(disp, _gloffset_TexImage3DMultisample, fn);
   10300 }
   10301 
   10302 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateiARB)(GLuint, GLenum, GLenum);
   10303 #define CALL_BlendEquationSeparateiARB(disp, parameters) \
   10304     (* GET_BlendEquationSeparateiARB(disp)) parameters
   10305 static inline _glptr_BlendEquationSeparateiARB GET_BlendEquationSeparateiARB(struct _glapi_table *disp) {
   10306    return (_glptr_BlendEquationSeparateiARB) (GET_by_offset(disp, _gloffset_BlendEquationSeparateiARB));
   10307 }
   10308 
   10309 static inline void SET_BlendEquationSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) {
   10310    SET_by_offset(disp, _gloffset_BlendEquationSeparateiARB, fn);
   10311 }
   10312 
   10313 typedef void (GLAPIENTRYP _glptr_BlendEquationiARB)(GLuint, GLenum);
   10314 #define CALL_BlendEquationiARB(disp, parameters) \
   10315     (* GET_BlendEquationiARB(disp)) parameters
   10316 static inline _glptr_BlendEquationiARB GET_BlendEquationiARB(struct _glapi_table *disp) {
   10317    return (_glptr_BlendEquationiARB) (GET_by_offset(disp, _gloffset_BlendEquationiARB));
   10318 }
   10319 
   10320 static inline void SET_BlendEquationiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   10321    SET_by_offset(disp, _gloffset_BlendEquationiARB, fn);
   10322 }
   10323 
   10324 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateiARB)(GLuint, GLenum, GLenum, GLenum, GLenum);
   10325 #define CALL_BlendFuncSeparateiARB(disp, parameters) \
   10326     (* GET_BlendFuncSeparateiARB(disp)) parameters
   10327 static inline _glptr_BlendFuncSeparateiARB GET_BlendFuncSeparateiARB(struct _glapi_table *disp) {
   10328    return (_glptr_BlendFuncSeparateiARB) (GET_by_offset(disp, _gloffset_BlendFuncSeparateiARB));
   10329 }
   10330 
   10331 static inline void SET_BlendFuncSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLenum, GLenum)) {
   10332    SET_by_offset(disp, _gloffset_BlendFuncSeparateiARB, fn);
   10333 }
   10334 
   10335 typedef void (GLAPIENTRYP _glptr_BlendFunciARB)(GLuint, GLenum, GLenum);
   10336 #define CALL_BlendFunciARB(disp, parameters) \
   10337     (* GET_BlendFunciARB(disp)) parameters
   10338 static inline _glptr_BlendFunciARB GET_BlendFunciARB(struct _glapi_table *disp) {
   10339    return (_glptr_BlendFunciARB) (GET_by_offset(disp, _gloffset_BlendFunciARB));
   10340 }
   10341 
   10342 static inline void SET_BlendFunciARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) {
   10343    SET_by_offset(disp, _gloffset_BlendFunciARB, fn);
   10344 }
   10345 
   10346 typedef void (GLAPIENTRYP _glptr_BindFragDataLocationIndexed)(GLuint, GLuint, GLuint, const GLchar *);
   10347 #define CALL_BindFragDataLocationIndexed(disp, parameters) \
   10348     (* GET_BindFragDataLocationIndexed(disp)) parameters
   10349 static inline _glptr_BindFragDataLocationIndexed GET_BindFragDataLocationIndexed(struct _glapi_table *disp) {
   10350    return (_glptr_BindFragDataLocationIndexed) (GET_by_offset(disp, _gloffset_BindFragDataLocationIndexed));
   10351 }
   10352 
   10353 static inline void SET_BindFragDataLocationIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, const GLchar *)) {
   10354    SET_by_offset(disp, _gloffset_BindFragDataLocationIndexed, fn);
   10355 }
   10356 
   10357 typedef GLint (GLAPIENTRYP _glptr_GetFragDataIndex)(GLuint, const GLchar *);
   10358 #define CALL_GetFragDataIndex(disp, parameters) \
   10359     (* GET_GetFragDataIndex(disp)) parameters
   10360 static inline _glptr_GetFragDataIndex GET_GetFragDataIndex(struct _glapi_table *disp) {
   10361    return (_glptr_GetFragDataIndex) (GET_by_offset(disp, _gloffset_GetFragDataIndex));
   10362 }
   10363 
   10364 static inline void SET_GetFragDataIndex(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
   10365    SET_by_offset(disp, _gloffset_GetFragDataIndex, fn);
   10366 }
   10367 
   10368 typedef void (GLAPIENTRYP _glptr_BindSampler)(GLuint, GLuint);
   10369 #define CALL_BindSampler(disp, parameters) \
   10370     (* GET_BindSampler(disp)) parameters
   10371 static inline _glptr_BindSampler GET_BindSampler(struct _glapi_table *disp) {
   10372    return (_glptr_BindSampler) (GET_by_offset(disp, _gloffset_BindSampler));
   10373 }
   10374 
   10375 static inline void SET_BindSampler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   10376    SET_by_offset(disp, _gloffset_BindSampler, fn);
   10377 }
   10378 
   10379 typedef void (GLAPIENTRYP _glptr_DeleteSamplers)(GLsizei, const GLuint *);
   10380 #define CALL_DeleteSamplers(disp, parameters) \
   10381     (* GET_DeleteSamplers(disp)) parameters
   10382 static inline _glptr_DeleteSamplers GET_DeleteSamplers(struct _glapi_table *disp) {
   10383    return (_glptr_DeleteSamplers) (GET_by_offset(disp, _gloffset_DeleteSamplers));
   10384 }
   10385 
   10386 static inline void SET_DeleteSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   10387    SET_by_offset(disp, _gloffset_DeleteSamplers, fn);
   10388 }
   10389 
   10390 typedef void (GLAPIENTRYP _glptr_GenSamplers)(GLsizei, GLuint *);
   10391 #define CALL_GenSamplers(disp, parameters) \
   10392     (* GET_GenSamplers(disp)) parameters
   10393 static inline _glptr_GenSamplers GET_GenSamplers(struct _glapi_table *disp) {
   10394    return (_glptr_GenSamplers) (GET_by_offset(disp, _gloffset_GenSamplers));
   10395 }
   10396 
   10397 static inline void SET_GenSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   10398    SET_by_offset(disp, _gloffset_GenSamplers, fn);
   10399 }
   10400 
   10401 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterIiv)(GLuint, GLenum, GLint *);
   10402 #define CALL_GetSamplerParameterIiv(disp, parameters) \
   10403     (* GET_GetSamplerParameterIiv(disp)) parameters
   10404 static inline _glptr_GetSamplerParameterIiv GET_GetSamplerParameterIiv(struct _glapi_table *disp) {
   10405    return (_glptr_GetSamplerParameterIiv) (GET_by_offset(disp, _gloffset_GetSamplerParameterIiv));
   10406 }
   10407 
   10408 static inline void SET_GetSamplerParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   10409    SET_by_offset(disp, _gloffset_GetSamplerParameterIiv, fn);
   10410 }
   10411 
   10412 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterIuiv)(GLuint, GLenum, GLuint *);
   10413 #define CALL_GetSamplerParameterIuiv(disp, parameters) \
   10414     (* GET_GetSamplerParameterIuiv(disp)) parameters
   10415 static inline _glptr_GetSamplerParameterIuiv GET_GetSamplerParameterIuiv(struct _glapi_table *disp) {
   10416    return (_glptr_GetSamplerParameterIuiv) (GET_by_offset(disp, _gloffset_GetSamplerParameterIuiv));
   10417 }
   10418 
   10419 static inline void SET_GetSamplerParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
   10420    SET_by_offset(disp, _gloffset_GetSamplerParameterIuiv, fn);
   10421 }
   10422 
   10423 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterfv)(GLuint, GLenum, GLfloat *);
   10424 #define CALL_GetSamplerParameterfv(disp, parameters) \
   10425     (* GET_GetSamplerParameterfv(disp)) parameters
   10426 static inline _glptr_GetSamplerParameterfv GET_GetSamplerParameterfv(struct _glapi_table *disp) {
   10427    return (_glptr_GetSamplerParameterfv) (GET_by_offset(disp, _gloffset_GetSamplerParameterfv));
   10428 }
   10429 
   10430 static inline void SET_GetSamplerParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
   10431    SET_by_offset(disp, _gloffset_GetSamplerParameterfv, fn);
   10432 }
   10433 
   10434 typedef void (GLAPIENTRYP _glptr_GetSamplerParameteriv)(GLuint, GLenum, GLint *);
   10435 #define CALL_GetSamplerParameteriv(disp, parameters) \
   10436     (* GET_GetSamplerParameteriv(disp)) parameters
   10437 static inline _glptr_GetSamplerParameteriv GET_GetSamplerParameteriv(struct _glapi_table *disp) {
   10438    return (_glptr_GetSamplerParameteriv) (GET_by_offset(disp, _gloffset_GetSamplerParameteriv));
   10439 }
   10440 
   10441 static inline void SET_GetSamplerParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   10442    SET_by_offset(disp, _gloffset_GetSamplerParameteriv, fn);
   10443 }
   10444 
   10445 typedef GLboolean (GLAPIENTRYP _glptr_IsSampler)(GLuint);
   10446 #define CALL_IsSampler(disp, parameters) \
   10447     (* GET_IsSampler(disp)) parameters
   10448 static inline _glptr_IsSampler GET_IsSampler(struct _glapi_table *disp) {
   10449    return (_glptr_IsSampler) (GET_by_offset(disp, _gloffset_IsSampler));
   10450 }
   10451 
   10452 static inline void SET_IsSampler(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   10453    SET_by_offset(disp, _gloffset_IsSampler, fn);
   10454 }
   10455 
   10456 typedef void (GLAPIENTRYP _glptr_SamplerParameterIiv)(GLuint, GLenum, const GLint *);
   10457 #define CALL_SamplerParameterIiv(disp, parameters) \
   10458     (* GET_SamplerParameterIiv(disp)) parameters
   10459 static inline _glptr_SamplerParameterIiv GET_SamplerParameterIiv(struct _glapi_table *disp) {
   10460    return (_glptr_SamplerParameterIiv) (GET_by_offset(disp, _gloffset_SamplerParameterIiv));
   10461 }
   10462 
   10463 static inline void SET_SamplerParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
   10464    SET_by_offset(disp, _gloffset_SamplerParameterIiv, fn);
   10465 }
   10466 
   10467 typedef void (GLAPIENTRYP _glptr_SamplerParameterIuiv)(GLuint, GLenum, const GLuint *);
   10468 #define CALL_SamplerParameterIuiv(disp, parameters) \
   10469     (* GET_SamplerParameterIuiv(disp)) parameters
   10470 static inline _glptr_SamplerParameterIuiv GET_SamplerParameterIuiv(struct _glapi_table *disp) {
   10471    return (_glptr_SamplerParameterIuiv) (GET_by_offset(disp, _gloffset_SamplerParameterIuiv));
   10472 }
   10473 
   10474 static inline void SET_SamplerParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLuint *)) {
   10475    SET_by_offset(disp, _gloffset_SamplerParameterIuiv, fn);
   10476 }
   10477 
   10478 typedef void (GLAPIENTRYP _glptr_SamplerParameterf)(GLuint, GLenum, GLfloat);
   10479 #define CALL_SamplerParameterf(disp, parameters) \
   10480     (* GET_SamplerParameterf(disp)) parameters
   10481 static inline _glptr_SamplerParameterf GET_SamplerParameterf(struct _glapi_table *disp) {
   10482    return (_glptr_SamplerParameterf) (GET_by_offset(disp, _gloffset_SamplerParameterf));
   10483 }
   10484 
   10485 static inline void SET_SamplerParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat)) {
   10486    SET_by_offset(disp, _gloffset_SamplerParameterf, fn);
   10487 }
   10488 
   10489 typedef void (GLAPIENTRYP _glptr_SamplerParameterfv)(GLuint, GLenum, const GLfloat *);
   10490 #define CALL_SamplerParameterfv(disp, parameters) \
   10491     (* GET_SamplerParameterfv(disp)) parameters
   10492 static inline _glptr_SamplerParameterfv GET_SamplerParameterfv(struct _glapi_table *disp) {
   10493    return (_glptr_SamplerParameterfv) (GET_by_offset(disp, _gloffset_SamplerParameterfv));
   10494 }
   10495 
   10496 static inline void SET_SamplerParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLfloat *)) {
   10497    SET_by_offset(disp, _gloffset_SamplerParameterfv, fn);
   10498 }
   10499 
   10500 typedef void (GLAPIENTRYP _glptr_SamplerParameteri)(GLuint, GLenum, GLint);
   10501 #define CALL_SamplerParameteri(disp, parameters) \
   10502     (* GET_SamplerParameteri(disp)) parameters
   10503 static inline _glptr_SamplerParameteri GET_SamplerParameteri(struct _glapi_table *disp) {
   10504    return (_glptr_SamplerParameteri) (GET_by_offset(disp, _gloffset_SamplerParameteri));
   10505 }
   10506 
   10507 static inline void SET_SamplerParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
   10508    SET_by_offset(disp, _gloffset_SamplerParameteri, fn);
   10509 }
   10510 
   10511 typedef void (GLAPIENTRYP _glptr_SamplerParameteriv)(GLuint, GLenum, const GLint *);
   10512 #define CALL_SamplerParameteriv(disp, parameters) \
   10513     (* GET_SamplerParameteriv(disp)) parameters
   10514 static inline _glptr_SamplerParameteriv GET_SamplerParameteriv(struct _glapi_table *disp) {
   10515    return (_glptr_SamplerParameteriv) (GET_by_offset(disp, _gloffset_SamplerParameteriv));
   10516 }
   10517 
   10518 static inline void SET_SamplerParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
   10519    SET_by_offset(disp, _gloffset_SamplerParameteriv, fn);
   10520 }
   10521 
   10522 typedef void (GLAPIENTRYP _glptr_GetQueryObjecti64v)(GLuint, GLenum, GLint64 *);
   10523 #define CALL_GetQueryObjecti64v(disp, parameters) \
   10524     (* GET_GetQueryObjecti64v(disp)) parameters
   10525 static inline _glptr_GetQueryObjecti64v GET_GetQueryObjecti64v(struct _glapi_table *disp) {
   10526    return (_glptr_GetQueryObjecti64v) (GET_by_offset(disp, _gloffset_GetQueryObjecti64v));
   10527 }
   10528 
   10529 static inline void SET_GetQueryObjecti64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint64 *)) {
   10530    SET_by_offset(disp, _gloffset_GetQueryObjecti64v, fn);
   10531 }
   10532 
   10533 typedef void (GLAPIENTRYP _glptr_GetQueryObjectui64v)(GLuint, GLenum, GLuint64 *);
   10534 #define CALL_GetQueryObjectui64v(disp, parameters) \
   10535     (* GET_GetQueryObjectui64v(disp)) parameters
   10536 static inline _glptr_GetQueryObjectui64v GET_GetQueryObjectui64v(struct _glapi_table *disp) {
   10537    return (_glptr_GetQueryObjectui64v) (GET_by_offset(disp, _gloffset_GetQueryObjectui64v));
   10538 }
   10539 
   10540 static inline void SET_GetQueryObjectui64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint64 *)) {
   10541    SET_by_offset(disp, _gloffset_GetQueryObjectui64v, fn);
   10542 }
   10543 
   10544 typedef void (GLAPIENTRYP _glptr_QueryCounter)(GLuint, GLenum);
   10545 #define CALL_QueryCounter(disp, parameters) \
   10546     (* GET_QueryCounter(disp)) parameters
   10547 static inline _glptr_QueryCounter GET_QueryCounter(struct _glapi_table *disp) {
   10548    return (_glptr_QueryCounter) (GET_by_offset(disp, _gloffset_QueryCounter));
   10549 }
   10550 
   10551 static inline void SET_QueryCounter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   10552    SET_by_offset(disp, _gloffset_QueryCounter, fn);
   10553 }
   10554 
   10555 typedef void (GLAPIENTRYP _glptr_ColorP3ui)(GLenum, GLuint);
   10556 #define CALL_ColorP3ui(disp, parameters) \
   10557     (* GET_ColorP3ui(disp)) parameters
   10558 static inline _glptr_ColorP3ui GET_ColorP3ui(struct _glapi_table *disp) {
   10559    return (_glptr_ColorP3ui) (GET_by_offset(disp, _gloffset_ColorP3ui));
   10560 }
   10561 
   10562 static inline void SET_ColorP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10563    SET_by_offset(disp, _gloffset_ColorP3ui, fn);
   10564 }
   10565 
   10566 typedef void (GLAPIENTRYP _glptr_ColorP3uiv)(GLenum, const GLuint *);
   10567 #define CALL_ColorP3uiv(disp, parameters) \
   10568     (* GET_ColorP3uiv(disp)) parameters
   10569 static inline _glptr_ColorP3uiv GET_ColorP3uiv(struct _glapi_table *disp) {
   10570    return (_glptr_ColorP3uiv) (GET_by_offset(disp, _gloffset_ColorP3uiv));
   10571 }
   10572 
   10573 static inline void SET_ColorP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10574    SET_by_offset(disp, _gloffset_ColorP3uiv, fn);
   10575 }
   10576 
   10577 typedef void (GLAPIENTRYP _glptr_ColorP4ui)(GLenum, GLuint);
   10578 #define CALL_ColorP4ui(disp, parameters) \
   10579     (* GET_ColorP4ui(disp)) parameters
   10580 static inline _glptr_ColorP4ui GET_ColorP4ui(struct _glapi_table *disp) {
   10581    return (_glptr_ColorP4ui) (GET_by_offset(disp, _gloffset_ColorP4ui));
   10582 }
   10583 
   10584 static inline void SET_ColorP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10585    SET_by_offset(disp, _gloffset_ColorP4ui, fn);
   10586 }
   10587 
   10588 typedef void (GLAPIENTRYP _glptr_ColorP4uiv)(GLenum, const GLuint *);
   10589 #define CALL_ColorP4uiv(disp, parameters) \
   10590     (* GET_ColorP4uiv(disp)) parameters
   10591 static inline _glptr_ColorP4uiv GET_ColorP4uiv(struct _glapi_table *disp) {
   10592    return (_glptr_ColorP4uiv) (GET_by_offset(disp, _gloffset_ColorP4uiv));
   10593 }
   10594 
   10595 static inline void SET_ColorP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10596    SET_by_offset(disp, _gloffset_ColorP4uiv, fn);
   10597 }
   10598 
   10599 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP1ui)(GLenum, GLenum, GLuint);
   10600 #define CALL_MultiTexCoordP1ui(disp, parameters) \
   10601     (* GET_MultiTexCoordP1ui(disp)) parameters
   10602 static inline _glptr_MultiTexCoordP1ui GET_MultiTexCoordP1ui(struct _glapi_table *disp) {
   10603    return (_glptr_MultiTexCoordP1ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP1ui));
   10604 }
   10605 
   10606 static inline void SET_MultiTexCoordP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
   10607    SET_by_offset(disp, _gloffset_MultiTexCoordP1ui, fn);
   10608 }
   10609 
   10610 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP1uiv)(GLenum, GLenum, const GLuint *);
   10611 #define CALL_MultiTexCoordP1uiv(disp, parameters) \
   10612     (* GET_MultiTexCoordP1uiv(disp)) parameters
   10613 static inline _glptr_MultiTexCoordP1uiv GET_MultiTexCoordP1uiv(struct _glapi_table *disp) {
   10614    return (_glptr_MultiTexCoordP1uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP1uiv));
   10615 }
   10616 
   10617 static inline void SET_MultiTexCoordP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
   10618    SET_by_offset(disp, _gloffset_MultiTexCoordP1uiv, fn);
   10619 }
   10620 
   10621 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP2ui)(GLenum, GLenum, GLuint);
   10622 #define CALL_MultiTexCoordP2ui(disp, parameters) \
   10623     (* GET_MultiTexCoordP2ui(disp)) parameters
   10624 static inline _glptr_MultiTexCoordP2ui GET_MultiTexCoordP2ui(struct _glapi_table *disp) {
   10625    return (_glptr_MultiTexCoordP2ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP2ui));
   10626 }
   10627 
   10628 static inline void SET_MultiTexCoordP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
   10629    SET_by_offset(disp, _gloffset_MultiTexCoordP2ui, fn);
   10630 }
   10631 
   10632 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP2uiv)(GLenum, GLenum, const GLuint *);
   10633 #define CALL_MultiTexCoordP2uiv(disp, parameters) \
   10634     (* GET_MultiTexCoordP2uiv(disp)) parameters
   10635 static inline _glptr_MultiTexCoordP2uiv GET_MultiTexCoordP2uiv(struct _glapi_table *disp) {
   10636    return (_glptr_MultiTexCoordP2uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP2uiv));
   10637 }
   10638 
   10639 static inline void SET_MultiTexCoordP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
   10640    SET_by_offset(disp, _gloffset_MultiTexCoordP2uiv, fn);
   10641 }
   10642 
   10643 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP3ui)(GLenum, GLenum, GLuint);
   10644 #define CALL_MultiTexCoordP3ui(disp, parameters) \
   10645     (* GET_MultiTexCoordP3ui(disp)) parameters
   10646 static inline _glptr_MultiTexCoordP3ui GET_MultiTexCoordP3ui(struct _glapi_table *disp) {
   10647    return (_glptr_MultiTexCoordP3ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP3ui));
   10648 }
   10649 
   10650 static inline void SET_MultiTexCoordP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
   10651    SET_by_offset(disp, _gloffset_MultiTexCoordP3ui, fn);
   10652 }
   10653 
   10654 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP3uiv)(GLenum, GLenum, const GLuint *);
   10655 #define CALL_MultiTexCoordP3uiv(disp, parameters) \
   10656     (* GET_MultiTexCoordP3uiv(disp)) parameters
   10657 static inline _glptr_MultiTexCoordP3uiv GET_MultiTexCoordP3uiv(struct _glapi_table *disp) {
   10658    return (_glptr_MultiTexCoordP3uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP3uiv));
   10659 }
   10660 
   10661 static inline void SET_MultiTexCoordP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
   10662    SET_by_offset(disp, _gloffset_MultiTexCoordP3uiv, fn);
   10663 }
   10664 
   10665 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP4ui)(GLenum, GLenum, GLuint);
   10666 #define CALL_MultiTexCoordP4ui(disp, parameters) \
   10667     (* GET_MultiTexCoordP4ui(disp)) parameters
   10668 static inline _glptr_MultiTexCoordP4ui GET_MultiTexCoordP4ui(struct _glapi_table *disp) {
   10669    return (_glptr_MultiTexCoordP4ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP4ui));
   10670 }
   10671 
   10672 static inline void SET_MultiTexCoordP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) {
   10673    SET_by_offset(disp, _gloffset_MultiTexCoordP4ui, fn);
   10674 }
   10675 
   10676 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP4uiv)(GLenum, GLenum, const GLuint *);
   10677 #define CALL_MultiTexCoordP4uiv(disp, parameters) \
   10678     (* GET_MultiTexCoordP4uiv(disp)) parameters
   10679 static inline _glptr_MultiTexCoordP4uiv GET_MultiTexCoordP4uiv(struct _glapi_table *disp) {
   10680    return (_glptr_MultiTexCoordP4uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP4uiv));
   10681 }
   10682 
   10683 static inline void SET_MultiTexCoordP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
   10684    SET_by_offset(disp, _gloffset_MultiTexCoordP4uiv, fn);
   10685 }
   10686 
   10687 typedef void (GLAPIENTRYP _glptr_NormalP3ui)(GLenum, GLuint);
   10688 #define CALL_NormalP3ui(disp, parameters) \
   10689     (* GET_NormalP3ui(disp)) parameters
   10690 static inline _glptr_NormalP3ui GET_NormalP3ui(struct _glapi_table *disp) {
   10691    return (_glptr_NormalP3ui) (GET_by_offset(disp, _gloffset_NormalP3ui));
   10692 }
   10693 
   10694 static inline void SET_NormalP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10695    SET_by_offset(disp, _gloffset_NormalP3ui, fn);
   10696 }
   10697 
   10698 typedef void (GLAPIENTRYP _glptr_NormalP3uiv)(GLenum, const GLuint *);
   10699 #define CALL_NormalP3uiv(disp, parameters) \
   10700     (* GET_NormalP3uiv(disp)) parameters
   10701 static inline _glptr_NormalP3uiv GET_NormalP3uiv(struct _glapi_table *disp) {
   10702    return (_glptr_NormalP3uiv) (GET_by_offset(disp, _gloffset_NormalP3uiv));
   10703 }
   10704 
   10705 static inline void SET_NormalP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10706    SET_by_offset(disp, _gloffset_NormalP3uiv, fn);
   10707 }
   10708 
   10709 typedef void (GLAPIENTRYP _glptr_SecondaryColorP3ui)(GLenum, GLuint);
   10710 #define CALL_SecondaryColorP3ui(disp, parameters) \
   10711     (* GET_SecondaryColorP3ui(disp)) parameters
   10712 static inline _glptr_SecondaryColorP3ui GET_SecondaryColorP3ui(struct _glapi_table *disp) {
   10713    return (_glptr_SecondaryColorP3ui) (GET_by_offset(disp, _gloffset_SecondaryColorP3ui));
   10714 }
   10715 
   10716 static inline void SET_SecondaryColorP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10717    SET_by_offset(disp, _gloffset_SecondaryColorP3ui, fn);
   10718 }
   10719 
   10720 typedef void (GLAPIENTRYP _glptr_SecondaryColorP3uiv)(GLenum, const GLuint *);
   10721 #define CALL_SecondaryColorP3uiv(disp, parameters) \
   10722     (* GET_SecondaryColorP3uiv(disp)) parameters
   10723 static inline _glptr_SecondaryColorP3uiv GET_SecondaryColorP3uiv(struct _glapi_table *disp) {
   10724    return (_glptr_SecondaryColorP3uiv) (GET_by_offset(disp, _gloffset_SecondaryColorP3uiv));
   10725 }
   10726 
   10727 static inline void SET_SecondaryColorP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10728    SET_by_offset(disp, _gloffset_SecondaryColorP3uiv, fn);
   10729 }
   10730 
   10731 typedef void (GLAPIENTRYP _glptr_TexCoordP1ui)(GLenum, GLuint);
   10732 #define CALL_TexCoordP1ui(disp, parameters) \
   10733     (* GET_TexCoordP1ui(disp)) parameters
   10734 static inline _glptr_TexCoordP1ui GET_TexCoordP1ui(struct _glapi_table *disp) {
   10735    return (_glptr_TexCoordP1ui) (GET_by_offset(disp, _gloffset_TexCoordP1ui));
   10736 }
   10737 
   10738 static inline void SET_TexCoordP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10739    SET_by_offset(disp, _gloffset_TexCoordP1ui, fn);
   10740 }
   10741 
   10742 typedef void (GLAPIENTRYP _glptr_TexCoordP1uiv)(GLenum, const GLuint *);
   10743 #define CALL_TexCoordP1uiv(disp, parameters) \
   10744     (* GET_TexCoordP1uiv(disp)) parameters
   10745 static inline _glptr_TexCoordP1uiv GET_TexCoordP1uiv(struct _glapi_table *disp) {
   10746    return (_glptr_TexCoordP1uiv) (GET_by_offset(disp, _gloffset_TexCoordP1uiv));
   10747 }
   10748 
   10749 static inline void SET_TexCoordP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10750    SET_by_offset(disp, _gloffset_TexCoordP1uiv, fn);
   10751 }
   10752 
   10753 typedef void (GLAPIENTRYP _glptr_TexCoordP2ui)(GLenum, GLuint);
   10754 #define CALL_TexCoordP2ui(disp, parameters) \
   10755     (* GET_TexCoordP2ui(disp)) parameters
   10756 static inline _glptr_TexCoordP2ui GET_TexCoordP2ui(struct _glapi_table *disp) {
   10757    return (_glptr_TexCoordP2ui) (GET_by_offset(disp, _gloffset_TexCoordP2ui));
   10758 }
   10759 
   10760 static inline void SET_TexCoordP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10761    SET_by_offset(disp, _gloffset_TexCoordP2ui, fn);
   10762 }
   10763 
   10764 typedef void (GLAPIENTRYP _glptr_TexCoordP2uiv)(GLenum, const GLuint *);
   10765 #define CALL_TexCoordP2uiv(disp, parameters) \
   10766     (* GET_TexCoordP2uiv(disp)) parameters
   10767 static inline _glptr_TexCoordP2uiv GET_TexCoordP2uiv(struct _glapi_table *disp) {
   10768    return (_glptr_TexCoordP2uiv) (GET_by_offset(disp, _gloffset_TexCoordP2uiv));
   10769 }
   10770 
   10771 static inline void SET_TexCoordP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10772    SET_by_offset(disp, _gloffset_TexCoordP2uiv, fn);
   10773 }
   10774 
   10775 typedef void (GLAPIENTRYP _glptr_TexCoordP3ui)(GLenum, GLuint);
   10776 #define CALL_TexCoordP3ui(disp, parameters) \
   10777     (* GET_TexCoordP3ui(disp)) parameters
   10778 static inline _glptr_TexCoordP3ui GET_TexCoordP3ui(struct _glapi_table *disp) {
   10779    return (_glptr_TexCoordP3ui) (GET_by_offset(disp, _gloffset_TexCoordP3ui));
   10780 }
   10781 
   10782 static inline void SET_TexCoordP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10783    SET_by_offset(disp, _gloffset_TexCoordP3ui, fn);
   10784 }
   10785 
   10786 typedef void (GLAPIENTRYP _glptr_TexCoordP3uiv)(GLenum, const GLuint *);
   10787 #define CALL_TexCoordP3uiv(disp, parameters) \
   10788     (* GET_TexCoordP3uiv(disp)) parameters
   10789 static inline _glptr_TexCoordP3uiv GET_TexCoordP3uiv(struct _glapi_table *disp) {
   10790    return (_glptr_TexCoordP3uiv) (GET_by_offset(disp, _gloffset_TexCoordP3uiv));
   10791 }
   10792 
   10793 static inline void SET_TexCoordP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10794    SET_by_offset(disp, _gloffset_TexCoordP3uiv, fn);
   10795 }
   10796 
   10797 typedef void (GLAPIENTRYP _glptr_TexCoordP4ui)(GLenum, GLuint);
   10798 #define CALL_TexCoordP4ui(disp, parameters) \
   10799     (* GET_TexCoordP4ui(disp)) parameters
   10800 static inline _glptr_TexCoordP4ui GET_TexCoordP4ui(struct _glapi_table *disp) {
   10801    return (_glptr_TexCoordP4ui) (GET_by_offset(disp, _gloffset_TexCoordP4ui));
   10802 }
   10803 
   10804 static inline void SET_TexCoordP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10805    SET_by_offset(disp, _gloffset_TexCoordP4ui, fn);
   10806 }
   10807 
   10808 typedef void (GLAPIENTRYP _glptr_TexCoordP4uiv)(GLenum, const GLuint *);
   10809 #define CALL_TexCoordP4uiv(disp, parameters) \
   10810     (* GET_TexCoordP4uiv(disp)) parameters
   10811 static inline _glptr_TexCoordP4uiv GET_TexCoordP4uiv(struct _glapi_table *disp) {
   10812    return (_glptr_TexCoordP4uiv) (GET_by_offset(disp, _gloffset_TexCoordP4uiv));
   10813 }
   10814 
   10815 static inline void SET_TexCoordP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10816    SET_by_offset(disp, _gloffset_TexCoordP4uiv, fn);
   10817 }
   10818 
   10819 typedef void (GLAPIENTRYP _glptr_VertexAttribP1ui)(GLuint, GLenum, GLboolean, GLuint);
   10820 #define CALL_VertexAttribP1ui(disp, parameters) \
   10821     (* GET_VertexAttribP1ui(disp)) parameters
   10822 static inline _glptr_VertexAttribP1ui GET_VertexAttribP1ui(struct _glapi_table *disp) {
   10823    return (_glptr_VertexAttribP1ui) (GET_by_offset(disp, _gloffset_VertexAttribP1ui));
   10824 }
   10825 
   10826 static inline void SET_VertexAttribP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
   10827    SET_by_offset(disp, _gloffset_VertexAttribP1ui, fn);
   10828 }
   10829 
   10830 typedef void (GLAPIENTRYP _glptr_VertexAttribP1uiv)(GLuint, GLenum, GLboolean, const GLuint *);
   10831 #define CALL_VertexAttribP1uiv(disp, parameters) \
   10832     (* GET_VertexAttribP1uiv(disp)) parameters
   10833 static inline _glptr_VertexAttribP1uiv GET_VertexAttribP1uiv(struct _glapi_table *disp) {
   10834    return (_glptr_VertexAttribP1uiv) (GET_by_offset(disp, _gloffset_VertexAttribP1uiv));
   10835 }
   10836 
   10837 static inline void SET_VertexAttribP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
   10838    SET_by_offset(disp, _gloffset_VertexAttribP1uiv, fn);
   10839 }
   10840 
   10841 typedef void (GLAPIENTRYP _glptr_VertexAttribP2ui)(GLuint, GLenum, GLboolean, GLuint);
   10842 #define CALL_VertexAttribP2ui(disp, parameters) \
   10843     (* GET_VertexAttribP2ui(disp)) parameters
   10844 static inline _glptr_VertexAttribP2ui GET_VertexAttribP2ui(struct _glapi_table *disp) {
   10845    return (_glptr_VertexAttribP2ui) (GET_by_offset(disp, _gloffset_VertexAttribP2ui));
   10846 }
   10847 
   10848 static inline void SET_VertexAttribP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
   10849    SET_by_offset(disp, _gloffset_VertexAttribP2ui, fn);
   10850 }
   10851 
   10852 typedef void (GLAPIENTRYP _glptr_VertexAttribP2uiv)(GLuint, GLenum, GLboolean, const GLuint *);
   10853 #define CALL_VertexAttribP2uiv(disp, parameters) \
   10854     (* GET_VertexAttribP2uiv(disp)) parameters
   10855 static inline _glptr_VertexAttribP2uiv GET_VertexAttribP2uiv(struct _glapi_table *disp) {
   10856    return (_glptr_VertexAttribP2uiv) (GET_by_offset(disp, _gloffset_VertexAttribP2uiv));
   10857 }
   10858 
   10859 static inline void SET_VertexAttribP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
   10860    SET_by_offset(disp, _gloffset_VertexAttribP2uiv, fn);
   10861 }
   10862 
   10863 typedef void (GLAPIENTRYP _glptr_VertexAttribP3ui)(GLuint, GLenum, GLboolean, GLuint);
   10864 #define CALL_VertexAttribP3ui(disp, parameters) \
   10865     (* GET_VertexAttribP3ui(disp)) parameters
   10866 static inline _glptr_VertexAttribP3ui GET_VertexAttribP3ui(struct _glapi_table *disp) {
   10867    return (_glptr_VertexAttribP3ui) (GET_by_offset(disp, _gloffset_VertexAttribP3ui));
   10868 }
   10869 
   10870 static inline void SET_VertexAttribP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
   10871    SET_by_offset(disp, _gloffset_VertexAttribP3ui, fn);
   10872 }
   10873 
   10874 typedef void (GLAPIENTRYP _glptr_VertexAttribP3uiv)(GLuint, GLenum, GLboolean, const GLuint *);
   10875 #define CALL_VertexAttribP3uiv(disp, parameters) \
   10876     (* GET_VertexAttribP3uiv(disp)) parameters
   10877 static inline _glptr_VertexAttribP3uiv GET_VertexAttribP3uiv(struct _glapi_table *disp) {
   10878    return (_glptr_VertexAttribP3uiv) (GET_by_offset(disp, _gloffset_VertexAttribP3uiv));
   10879 }
   10880 
   10881 static inline void SET_VertexAttribP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
   10882    SET_by_offset(disp, _gloffset_VertexAttribP3uiv, fn);
   10883 }
   10884 
   10885 typedef void (GLAPIENTRYP _glptr_VertexAttribP4ui)(GLuint, GLenum, GLboolean, GLuint);
   10886 #define CALL_VertexAttribP4ui(disp, parameters) \
   10887     (* GET_VertexAttribP4ui(disp)) parameters
   10888 static inline _glptr_VertexAttribP4ui GET_VertexAttribP4ui(struct _glapi_table *disp) {
   10889    return (_glptr_VertexAttribP4ui) (GET_by_offset(disp, _gloffset_VertexAttribP4ui));
   10890 }
   10891 
   10892 static inline void SET_VertexAttribP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) {
   10893    SET_by_offset(disp, _gloffset_VertexAttribP4ui, fn);
   10894 }
   10895 
   10896 typedef void (GLAPIENTRYP _glptr_VertexAttribP4uiv)(GLuint, GLenum, GLboolean, const GLuint *);
   10897 #define CALL_VertexAttribP4uiv(disp, parameters) \
   10898     (* GET_VertexAttribP4uiv(disp)) parameters
   10899 static inline _glptr_VertexAttribP4uiv GET_VertexAttribP4uiv(struct _glapi_table *disp) {
   10900    return (_glptr_VertexAttribP4uiv) (GET_by_offset(disp, _gloffset_VertexAttribP4uiv));
   10901 }
   10902 
   10903 static inline void SET_VertexAttribP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) {
   10904    SET_by_offset(disp, _gloffset_VertexAttribP4uiv, fn);
   10905 }
   10906 
   10907 typedef void (GLAPIENTRYP _glptr_VertexP2ui)(GLenum, GLuint);
   10908 #define CALL_VertexP2ui(disp, parameters) \
   10909     (* GET_VertexP2ui(disp)) parameters
   10910 static inline _glptr_VertexP2ui GET_VertexP2ui(struct _glapi_table *disp) {
   10911    return (_glptr_VertexP2ui) (GET_by_offset(disp, _gloffset_VertexP2ui));
   10912 }
   10913 
   10914 static inline void SET_VertexP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10915    SET_by_offset(disp, _gloffset_VertexP2ui, fn);
   10916 }
   10917 
   10918 typedef void (GLAPIENTRYP _glptr_VertexP2uiv)(GLenum, const GLuint *);
   10919 #define CALL_VertexP2uiv(disp, parameters) \
   10920     (* GET_VertexP2uiv(disp)) parameters
   10921 static inline _glptr_VertexP2uiv GET_VertexP2uiv(struct _glapi_table *disp) {
   10922    return (_glptr_VertexP2uiv) (GET_by_offset(disp, _gloffset_VertexP2uiv));
   10923 }
   10924 
   10925 static inline void SET_VertexP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10926    SET_by_offset(disp, _gloffset_VertexP2uiv, fn);
   10927 }
   10928 
   10929 typedef void (GLAPIENTRYP _glptr_VertexP3ui)(GLenum, GLuint);
   10930 #define CALL_VertexP3ui(disp, parameters) \
   10931     (* GET_VertexP3ui(disp)) parameters
   10932 static inline _glptr_VertexP3ui GET_VertexP3ui(struct _glapi_table *disp) {
   10933    return (_glptr_VertexP3ui) (GET_by_offset(disp, _gloffset_VertexP3ui));
   10934 }
   10935 
   10936 static inline void SET_VertexP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10937    SET_by_offset(disp, _gloffset_VertexP3ui, fn);
   10938 }
   10939 
   10940 typedef void (GLAPIENTRYP _glptr_VertexP3uiv)(GLenum, const GLuint *);
   10941 #define CALL_VertexP3uiv(disp, parameters) \
   10942     (* GET_VertexP3uiv(disp)) parameters
   10943 static inline _glptr_VertexP3uiv GET_VertexP3uiv(struct _glapi_table *disp) {
   10944    return (_glptr_VertexP3uiv) (GET_by_offset(disp, _gloffset_VertexP3uiv));
   10945 }
   10946 
   10947 static inline void SET_VertexP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10948    SET_by_offset(disp, _gloffset_VertexP3uiv, fn);
   10949 }
   10950 
   10951 typedef void (GLAPIENTRYP _glptr_VertexP4ui)(GLenum, GLuint);
   10952 #define CALL_VertexP4ui(disp, parameters) \
   10953     (* GET_VertexP4ui(disp)) parameters
   10954 static inline _glptr_VertexP4ui GET_VertexP4ui(struct _glapi_table *disp) {
   10955    return (_glptr_VertexP4ui) (GET_by_offset(disp, _gloffset_VertexP4ui));
   10956 }
   10957 
   10958 static inline void SET_VertexP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   10959    SET_by_offset(disp, _gloffset_VertexP4ui, fn);
   10960 }
   10961 
   10962 typedef void (GLAPIENTRYP _glptr_VertexP4uiv)(GLenum, const GLuint *);
   10963 #define CALL_VertexP4uiv(disp, parameters) \
   10964     (* GET_VertexP4uiv(disp)) parameters
   10965 static inline _glptr_VertexP4uiv GET_VertexP4uiv(struct _glapi_table *disp) {
   10966    return (_glptr_VertexP4uiv) (GET_by_offset(disp, _gloffset_VertexP4uiv));
   10967 }
   10968 
   10969 static inline void SET_VertexP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) {
   10970    SET_by_offset(disp, _gloffset_VertexP4uiv, fn);
   10971 }
   10972 
   10973 typedef void (GLAPIENTRYP _glptr_DrawArraysIndirect)(GLenum, const GLvoid *);
   10974 #define CALL_DrawArraysIndirect(disp, parameters) \
   10975     (* GET_DrawArraysIndirect(disp)) parameters
   10976 static inline _glptr_DrawArraysIndirect GET_DrawArraysIndirect(struct _glapi_table *disp) {
   10977    return (_glptr_DrawArraysIndirect) (GET_by_offset(disp, _gloffset_DrawArraysIndirect));
   10978 }
   10979 
   10980 static inline void SET_DrawArraysIndirect(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLvoid *)) {
   10981    SET_by_offset(disp, _gloffset_DrawArraysIndirect, fn);
   10982 }
   10983 
   10984 typedef void (GLAPIENTRYP _glptr_DrawElementsIndirect)(GLenum, GLenum, const GLvoid *);
   10985 #define CALL_DrawElementsIndirect(disp, parameters) \
   10986     (* GET_DrawElementsIndirect(disp)) parameters
   10987 static inline _glptr_DrawElementsIndirect GET_DrawElementsIndirect(struct _glapi_table *disp) {
   10988    return (_glptr_DrawElementsIndirect) (GET_by_offset(disp, _gloffset_DrawElementsIndirect));
   10989 }
   10990 
   10991 static inline void SET_DrawElementsIndirect(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLvoid *)) {
   10992    SET_by_offset(disp, _gloffset_DrawElementsIndirect, fn);
   10993 }
   10994 
   10995 typedef void (GLAPIENTRYP _glptr_GetUniformdv)(GLuint, GLint, GLdouble *);
   10996 #define CALL_GetUniformdv(disp, parameters) \
   10997     (* GET_GetUniformdv(disp)) parameters
   10998 static inline _glptr_GetUniformdv GET_GetUniformdv(struct _glapi_table *disp) {
   10999    return (_glptr_GetUniformdv) (GET_by_offset(disp, _gloffset_GetUniformdv));
   11000 }
   11001 
   11002 static inline void SET_GetUniformdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLdouble *)) {
   11003    SET_by_offset(disp, _gloffset_GetUniformdv, fn);
   11004 }
   11005 
   11006 typedef void (GLAPIENTRYP _glptr_Uniform1d)(GLint, GLdouble);
   11007 #define CALL_Uniform1d(disp, parameters) \
   11008     (* GET_Uniform1d(disp)) parameters
   11009 static inline _glptr_Uniform1d GET_Uniform1d(struct _glapi_table *disp) {
   11010    return (_glptr_Uniform1d) (GET_by_offset(disp, _gloffset_Uniform1d));
   11011 }
   11012 
   11013 static inline void SET_Uniform1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble)) {
   11014    SET_by_offset(disp, _gloffset_Uniform1d, fn);
   11015 }
   11016 
   11017 typedef void (GLAPIENTRYP _glptr_Uniform1dv)(GLint, GLsizei, const GLdouble *);
   11018 #define CALL_Uniform1dv(disp, parameters) \
   11019     (* GET_Uniform1dv(disp)) parameters
   11020 static inline _glptr_Uniform1dv GET_Uniform1dv(struct _glapi_table *disp) {
   11021    return (_glptr_Uniform1dv) (GET_by_offset(disp, _gloffset_Uniform1dv));
   11022 }
   11023 
   11024 static inline void SET_Uniform1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLdouble *)) {
   11025    SET_by_offset(disp, _gloffset_Uniform1dv, fn);
   11026 }
   11027 
   11028 typedef void (GLAPIENTRYP _glptr_Uniform2d)(GLint, GLdouble, GLdouble);
   11029 #define CALL_Uniform2d(disp, parameters) \
   11030     (* GET_Uniform2d(disp)) parameters
   11031 static inline _glptr_Uniform2d GET_Uniform2d(struct _glapi_table *disp) {
   11032    return (_glptr_Uniform2d) (GET_by_offset(disp, _gloffset_Uniform2d));
   11033 }
   11034 
   11035 static inline void SET_Uniform2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) {
   11036    SET_by_offset(disp, _gloffset_Uniform2d, fn);
   11037 }
   11038 
   11039 typedef void (GLAPIENTRYP _glptr_Uniform2dv)(GLint, GLsizei, const GLdouble *);
   11040 #define CALL_Uniform2dv(disp, parameters) \
   11041     (* GET_Uniform2dv(disp)) parameters
   11042 static inline _glptr_Uniform2dv GET_Uniform2dv(struct _glapi_table *disp) {
   11043    return (_glptr_Uniform2dv) (GET_by_offset(disp, _gloffset_Uniform2dv));
   11044 }
   11045 
   11046 static inline void SET_Uniform2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLdouble *)) {
   11047    SET_by_offset(disp, _gloffset_Uniform2dv, fn);
   11048 }
   11049 
   11050 typedef void (GLAPIENTRYP _glptr_Uniform3d)(GLint, GLdouble, GLdouble, GLdouble);
   11051 #define CALL_Uniform3d(disp, parameters) \
   11052     (* GET_Uniform3d(disp)) parameters
   11053 static inline _glptr_Uniform3d GET_Uniform3d(struct _glapi_table *disp) {
   11054    return (_glptr_Uniform3d) (GET_by_offset(disp, _gloffset_Uniform3d));
   11055 }
   11056 
   11057 static inline void SET_Uniform3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLdouble)) {
   11058    SET_by_offset(disp, _gloffset_Uniform3d, fn);
   11059 }
   11060 
   11061 typedef void (GLAPIENTRYP _glptr_Uniform3dv)(GLint, GLsizei, const GLdouble *);
   11062 #define CALL_Uniform3dv(disp, parameters) \
   11063     (* GET_Uniform3dv(disp)) parameters
   11064 static inline _glptr_Uniform3dv GET_Uniform3dv(struct _glapi_table *disp) {
   11065    return (_glptr_Uniform3dv) (GET_by_offset(disp, _gloffset_Uniform3dv));
   11066 }
   11067 
   11068 static inline void SET_Uniform3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLdouble *)) {
   11069    SET_by_offset(disp, _gloffset_Uniform3dv, fn);
   11070 }
   11071 
   11072 typedef void (GLAPIENTRYP _glptr_Uniform4d)(GLint, GLdouble, GLdouble, GLdouble, GLdouble);
   11073 #define CALL_Uniform4d(disp, parameters) \
   11074     (* GET_Uniform4d(disp)) parameters
   11075 static inline _glptr_Uniform4d GET_Uniform4d(struct _glapi_table *disp) {
   11076    return (_glptr_Uniform4d) (GET_by_offset(disp, _gloffset_Uniform4d));
   11077 }
   11078 
   11079 static inline void SET_Uniform4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   11080    SET_by_offset(disp, _gloffset_Uniform4d, fn);
   11081 }
   11082 
   11083 typedef void (GLAPIENTRYP _glptr_Uniform4dv)(GLint, GLsizei, const GLdouble *);
   11084 #define CALL_Uniform4dv(disp, parameters) \
   11085     (* GET_Uniform4dv(disp)) parameters
   11086 static inline _glptr_Uniform4dv GET_Uniform4dv(struct _glapi_table *disp) {
   11087    return (_glptr_Uniform4dv) (GET_by_offset(disp, _gloffset_Uniform4dv));
   11088 }
   11089 
   11090 static inline void SET_Uniform4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLdouble *)) {
   11091    SET_by_offset(disp, _gloffset_Uniform4dv, fn);
   11092 }
   11093 
   11094 typedef void (GLAPIENTRYP _glptr_UniformMatrix2dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11095 #define CALL_UniformMatrix2dv(disp, parameters) \
   11096     (* GET_UniformMatrix2dv(disp)) parameters
   11097 static inline _glptr_UniformMatrix2dv GET_UniformMatrix2dv(struct _glapi_table *disp) {
   11098    return (_glptr_UniformMatrix2dv) (GET_by_offset(disp, _gloffset_UniformMatrix2dv));
   11099 }
   11100 
   11101 static inline void SET_UniformMatrix2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11102    SET_by_offset(disp, _gloffset_UniformMatrix2dv, fn);
   11103 }
   11104 
   11105 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x3dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11106 #define CALL_UniformMatrix2x3dv(disp, parameters) \
   11107     (* GET_UniformMatrix2x3dv(disp)) parameters
   11108 static inline _glptr_UniformMatrix2x3dv GET_UniformMatrix2x3dv(struct _glapi_table *disp) {
   11109    return (_glptr_UniformMatrix2x3dv) (GET_by_offset(disp, _gloffset_UniformMatrix2x3dv));
   11110 }
   11111 
   11112 static inline void SET_UniformMatrix2x3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11113    SET_by_offset(disp, _gloffset_UniformMatrix2x3dv, fn);
   11114 }
   11115 
   11116 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x4dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11117 #define CALL_UniformMatrix2x4dv(disp, parameters) \
   11118     (* GET_UniformMatrix2x4dv(disp)) parameters
   11119 static inline _glptr_UniformMatrix2x4dv GET_UniformMatrix2x4dv(struct _glapi_table *disp) {
   11120    return (_glptr_UniformMatrix2x4dv) (GET_by_offset(disp, _gloffset_UniformMatrix2x4dv));
   11121 }
   11122 
   11123 static inline void SET_UniformMatrix2x4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11124    SET_by_offset(disp, _gloffset_UniformMatrix2x4dv, fn);
   11125 }
   11126 
   11127 typedef void (GLAPIENTRYP _glptr_UniformMatrix3dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11128 #define CALL_UniformMatrix3dv(disp, parameters) \
   11129     (* GET_UniformMatrix3dv(disp)) parameters
   11130 static inline _glptr_UniformMatrix3dv GET_UniformMatrix3dv(struct _glapi_table *disp) {
   11131    return (_glptr_UniformMatrix3dv) (GET_by_offset(disp, _gloffset_UniformMatrix3dv));
   11132 }
   11133 
   11134 static inline void SET_UniformMatrix3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11135    SET_by_offset(disp, _gloffset_UniformMatrix3dv, fn);
   11136 }
   11137 
   11138 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x2dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11139 #define CALL_UniformMatrix3x2dv(disp, parameters) \
   11140     (* GET_UniformMatrix3x2dv(disp)) parameters
   11141 static inline _glptr_UniformMatrix3x2dv GET_UniformMatrix3x2dv(struct _glapi_table *disp) {
   11142    return (_glptr_UniformMatrix3x2dv) (GET_by_offset(disp, _gloffset_UniformMatrix3x2dv));
   11143 }
   11144 
   11145 static inline void SET_UniformMatrix3x2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11146    SET_by_offset(disp, _gloffset_UniformMatrix3x2dv, fn);
   11147 }
   11148 
   11149 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x4dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11150 #define CALL_UniformMatrix3x4dv(disp, parameters) \
   11151     (* GET_UniformMatrix3x4dv(disp)) parameters
   11152 static inline _glptr_UniformMatrix3x4dv GET_UniformMatrix3x4dv(struct _glapi_table *disp) {
   11153    return (_glptr_UniformMatrix3x4dv) (GET_by_offset(disp, _gloffset_UniformMatrix3x4dv));
   11154 }
   11155 
   11156 static inline void SET_UniformMatrix3x4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11157    SET_by_offset(disp, _gloffset_UniformMatrix3x4dv, fn);
   11158 }
   11159 
   11160 typedef void (GLAPIENTRYP _glptr_UniformMatrix4dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11161 #define CALL_UniformMatrix4dv(disp, parameters) \
   11162     (* GET_UniformMatrix4dv(disp)) parameters
   11163 static inline _glptr_UniformMatrix4dv GET_UniformMatrix4dv(struct _glapi_table *disp) {
   11164    return (_glptr_UniformMatrix4dv) (GET_by_offset(disp, _gloffset_UniformMatrix4dv));
   11165 }
   11166 
   11167 static inline void SET_UniformMatrix4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11168    SET_by_offset(disp, _gloffset_UniformMatrix4dv, fn);
   11169 }
   11170 
   11171 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x2dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11172 #define CALL_UniformMatrix4x2dv(disp, parameters) \
   11173     (* GET_UniformMatrix4x2dv(disp)) parameters
   11174 static inline _glptr_UniformMatrix4x2dv GET_UniformMatrix4x2dv(struct _glapi_table *disp) {
   11175    return (_glptr_UniformMatrix4x2dv) (GET_by_offset(disp, _gloffset_UniformMatrix4x2dv));
   11176 }
   11177 
   11178 static inline void SET_UniformMatrix4x2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11179    SET_by_offset(disp, _gloffset_UniformMatrix4x2dv, fn);
   11180 }
   11181 
   11182 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x3dv)(GLint, GLsizei, GLboolean, const GLdouble *);
   11183 #define CALL_UniformMatrix4x3dv(disp, parameters) \
   11184     (* GET_UniformMatrix4x3dv(disp)) parameters
   11185 static inline _glptr_UniformMatrix4x3dv GET_UniformMatrix4x3dv(struct _glapi_table *disp) {
   11186    return (_glptr_UniformMatrix4x3dv) (GET_by_offset(disp, _gloffset_UniformMatrix4x3dv));
   11187 }
   11188 
   11189 static inline void SET_UniformMatrix4x3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLdouble *)) {
   11190    SET_by_offset(disp, _gloffset_UniformMatrix4x3dv, fn);
   11191 }
   11192 
   11193 typedef void (GLAPIENTRYP _glptr_GetActiveSubroutineName)(GLuint, GLenum, GLuint, GLsizei, GLsizei *, GLchar *);
   11194 #define CALL_GetActiveSubroutineName(disp, parameters) \
   11195     (* GET_GetActiveSubroutineName(disp)) parameters
   11196 static inline _glptr_GetActiveSubroutineName GET_GetActiveSubroutineName(struct _glapi_table *disp) {
   11197    return (_glptr_GetActiveSubroutineName) (GET_by_offset(disp, _gloffset_GetActiveSubroutineName));
   11198 }
   11199 
   11200 static inline void SET_GetActiveSubroutineName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLsizei, GLsizei *, GLchar *)) {
   11201    SET_by_offset(disp, _gloffset_GetActiveSubroutineName, fn);
   11202 }
   11203 
   11204 typedef void (GLAPIENTRYP _glptr_GetActiveSubroutineUniformName)(GLuint, GLenum, GLuint, GLsizei, GLsizei *, GLchar *);
   11205 #define CALL_GetActiveSubroutineUniformName(disp, parameters) \
   11206     (* GET_GetActiveSubroutineUniformName(disp)) parameters
   11207 static inline _glptr_GetActiveSubroutineUniformName GET_GetActiveSubroutineUniformName(struct _glapi_table *disp) {
   11208    return (_glptr_GetActiveSubroutineUniformName) (GET_by_offset(disp, _gloffset_GetActiveSubroutineUniformName));
   11209 }
   11210 
   11211 static inline void SET_GetActiveSubroutineUniformName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLsizei, GLsizei *, GLchar *)) {
   11212    SET_by_offset(disp, _gloffset_GetActiveSubroutineUniformName, fn);
   11213 }
   11214 
   11215 typedef void (GLAPIENTRYP _glptr_GetActiveSubroutineUniformiv)(GLuint, GLenum, GLuint, GLenum, GLint *);
   11216 #define CALL_GetActiveSubroutineUniformiv(disp, parameters) \
   11217     (* GET_GetActiveSubroutineUniformiv(disp)) parameters
   11218 static inline _glptr_GetActiveSubroutineUniformiv GET_GetActiveSubroutineUniformiv(struct _glapi_table *disp) {
   11219    return (_glptr_GetActiveSubroutineUniformiv) (GET_by_offset(disp, _gloffset_GetActiveSubroutineUniformiv));
   11220 }
   11221 
   11222 static inline void SET_GetActiveSubroutineUniformiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLenum, GLint *)) {
   11223    SET_by_offset(disp, _gloffset_GetActiveSubroutineUniformiv, fn);
   11224 }
   11225 
   11226 typedef void (GLAPIENTRYP _glptr_GetProgramStageiv)(GLuint, GLenum, GLenum, GLint *);
   11227 #define CALL_GetProgramStageiv(disp, parameters) \
   11228     (* GET_GetProgramStageiv(disp)) parameters
   11229 static inline _glptr_GetProgramStageiv GET_GetProgramStageiv(struct _glapi_table *disp) {
   11230    return (_glptr_GetProgramStageiv) (GET_by_offset(disp, _gloffset_GetProgramStageiv));
   11231 }
   11232 
   11233 static inline void SET_GetProgramStageiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLint *)) {
   11234    SET_by_offset(disp, _gloffset_GetProgramStageiv, fn);
   11235 }
   11236 
   11237 typedef GLuint (GLAPIENTRYP _glptr_GetSubroutineIndex)(GLuint, GLenum, const GLchar *);
   11238 #define CALL_GetSubroutineIndex(disp, parameters) \
   11239     (* GET_GetSubroutineIndex(disp)) parameters
   11240 static inline _glptr_GetSubroutineIndex GET_GetSubroutineIndex(struct _glapi_table *disp) {
   11241    return (_glptr_GetSubroutineIndex) (GET_by_offset(disp, _gloffset_GetSubroutineIndex));
   11242 }
   11243 
   11244 static inline void SET_GetSubroutineIndex(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint, GLenum, const GLchar *)) {
   11245    SET_by_offset(disp, _gloffset_GetSubroutineIndex, fn);
   11246 }
   11247 
   11248 typedef GLint (GLAPIENTRYP _glptr_GetSubroutineUniformLocation)(GLuint, GLenum, const GLchar *);
   11249 #define CALL_GetSubroutineUniformLocation(disp, parameters) \
   11250     (* GET_GetSubroutineUniformLocation(disp)) parameters
   11251 static inline _glptr_GetSubroutineUniformLocation GET_GetSubroutineUniformLocation(struct _glapi_table *disp) {
   11252    return (_glptr_GetSubroutineUniformLocation) (GET_by_offset(disp, _gloffset_GetSubroutineUniformLocation));
   11253 }
   11254 
   11255 static inline void SET_GetSubroutineUniformLocation(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, GLenum, const GLchar *)) {
   11256    SET_by_offset(disp, _gloffset_GetSubroutineUniformLocation, fn);
   11257 }
   11258 
   11259 typedef void (GLAPIENTRYP _glptr_GetUniformSubroutineuiv)(GLenum, GLint, GLuint *);
   11260 #define CALL_GetUniformSubroutineuiv(disp, parameters) \
   11261     (* GET_GetUniformSubroutineuiv(disp)) parameters
   11262 static inline _glptr_GetUniformSubroutineuiv GET_GetUniformSubroutineuiv(struct _glapi_table *disp) {
   11263    return (_glptr_GetUniformSubroutineuiv) (GET_by_offset(disp, _gloffset_GetUniformSubroutineuiv));
   11264 }
   11265 
   11266 static inline void SET_GetUniformSubroutineuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint *)) {
   11267    SET_by_offset(disp, _gloffset_GetUniformSubroutineuiv, fn);
   11268 }
   11269 
   11270 typedef void (GLAPIENTRYP _glptr_UniformSubroutinesuiv)(GLenum, GLsizei, const GLuint *);
   11271 #define CALL_UniformSubroutinesuiv(disp, parameters) \
   11272     (* GET_UniformSubroutinesuiv(disp)) parameters
   11273 static inline _glptr_UniformSubroutinesuiv GET_UniformSubroutinesuiv(struct _glapi_table *disp) {
   11274    return (_glptr_UniformSubroutinesuiv) (GET_by_offset(disp, _gloffset_UniformSubroutinesuiv));
   11275 }
   11276 
   11277 static inline void SET_UniformSubroutinesuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) {
   11278    SET_by_offset(disp, _gloffset_UniformSubroutinesuiv, fn);
   11279 }
   11280 
   11281 typedef void (GLAPIENTRYP _glptr_PatchParameterfv)(GLenum, const GLfloat *);
   11282 #define CALL_PatchParameterfv(disp, parameters) \
   11283     (* GET_PatchParameterfv(disp)) parameters
   11284 static inline _glptr_PatchParameterfv GET_PatchParameterfv(struct _glapi_table *disp) {
   11285    return (_glptr_PatchParameterfv) (GET_by_offset(disp, _gloffset_PatchParameterfv));
   11286 }
   11287 
   11288 static inline void SET_PatchParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   11289    SET_by_offset(disp, _gloffset_PatchParameterfv, fn);
   11290 }
   11291 
   11292 typedef void (GLAPIENTRYP _glptr_PatchParameteri)(GLenum, GLint);
   11293 #define CALL_PatchParameteri(disp, parameters) \
   11294     (* GET_PatchParameteri(disp)) parameters
   11295 static inline _glptr_PatchParameteri GET_PatchParameteri(struct _glapi_table *disp) {
   11296    return (_glptr_PatchParameteri) (GET_by_offset(disp, _gloffset_PatchParameteri));
   11297 }
   11298 
   11299 static inline void SET_PatchParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
   11300    SET_by_offset(disp, _gloffset_PatchParameteri, fn);
   11301 }
   11302 
   11303 typedef void (GLAPIENTRYP _glptr_BindTransformFeedback)(GLenum, GLuint);
   11304 #define CALL_BindTransformFeedback(disp, parameters) \
   11305     (* GET_BindTransformFeedback(disp)) parameters
   11306 static inline _glptr_BindTransformFeedback GET_BindTransformFeedback(struct _glapi_table *disp) {
   11307    return (_glptr_BindTransformFeedback) (GET_by_offset(disp, _gloffset_BindTransformFeedback));
   11308 }
   11309 
   11310 static inline void SET_BindTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   11311    SET_by_offset(disp, _gloffset_BindTransformFeedback, fn);
   11312 }
   11313 
   11314 typedef void (GLAPIENTRYP _glptr_DeleteTransformFeedbacks)(GLsizei, const GLuint *);
   11315 #define CALL_DeleteTransformFeedbacks(disp, parameters) \
   11316     (* GET_DeleteTransformFeedbacks(disp)) parameters
   11317 static inline _glptr_DeleteTransformFeedbacks GET_DeleteTransformFeedbacks(struct _glapi_table *disp) {
   11318    return (_glptr_DeleteTransformFeedbacks) (GET_by_offset(disp, _gloffset_DeleteTransformFeedbacks));
   11319 }
   11320 
   11321 static inline void SET_DeleteTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   11322    SET_by_offset(disp, _gloffset_DeleteTransformFeedbacks, fn);
   11323 }
   11324 
   11325 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedback)(GLenum, GLuint);
   11326 #define CALL_DrawTransformFeedback(disp, parameters) \
   11327     (* GET_DrawTransformFeedback(disp)) parameters
   11328 static inline _glptr_DrawTransformFeedback GET_DrawTransformFeedback(struct _glapi_table *disp) {
   11329    return (_glptr_DrawTransformFeedback) (GET_by_offset(disp, _gloffset_DrawTransformFeedback));
   11330 }
   11331 
   11332 static inline void SET_DrawTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   11333    SET_by_offset(disp, _gloffset_DrawTransformFeedback, fn);
   11334 }
   11335 
   11336 typedef void (GLAPIENTRYP _glptr_GenTransformFeedbacks)(GLsizei, GLuint *);
   11337 #define CALL_GenTransformFeedbacks(disp, parameters) \
   11338     (* GET_GenTransformFeedbacks(disp)) parameters
   11339 static inline _glptr_GenTransformFeedbacks GET_GenTransformFeedbacks(struct _glapi_table *disp) {
   11340    return (_glptr_GenTransformFeedbacks) (GET_by_offset(disp, _gloffset_GenTransformFeedbacks));
   11341 }
   11342 
   11343 static inline void SET_GenTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   11344    SET_by_offset(disp, _gloffset_GenTransformFeedbacks, fn);
   11345 }
   11346 
   11347 typedef GLboolean (GLAPIENTRYP _glptr_IsTransformFeedback)(GLuint);
   11348 #define CALL_IsTransformFeedback(disp, parameters) \
   11349     (* GET_IsTransformFeedback(disp)) parameters
   11350 static inline _glptr_IsTransformFeedback GET_IsTransformFeedback(struct _glapi_table *disp) {
   11351    return (_glptr_IsTransformFeedback) (GET_by_offset(disp, _gloffset_IsTransformFeedback));
   11352 }
   11353 
   11354 static inline void SET_IsTransformFeedback(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   11355    SET_by_offset(disp, _gloffset_IsTransformFeedback, fn);
   11356 }
   11357 
   11358 typedef void (GLAPIENTRYP _glptr_PauseTransformFeedback)(void);
   11359 #define CALL_PauseTransformFeedback(disp, parameters) \
   11360     (* GET_PauseTransformFeedback(disp)) parameters
   11361 static inline _glptr_PauseTransformFeedback GET_PauseTransformFeedback(struct _glapi_table *disp) {
   11362    return (_glptr_PauseTransformFeedback) (GET_by_offset(disp, _gloffset_PauseTransformFeedback));
   11363 }
   11364 
   11365 static inline void SET_PauseTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   11366    SET_by_offset(disp, _gloffset_PauseTransformFeedback, fn);
   11367 }
   11368 
   11369 typedef void (GLAPIENTRYP _glptr_ResumeTransformFeedback)(void);
   11370 #define CALL_ResumeTransformFeedback(disp, parameters) \
   11371     (* GET_ResumeTransformFeedback(disp)) parameters
   11372 static inline _glptr_ResumeTransformFeedback GET_ResumeTransformFeedback(struct _glapi_table *disp) {
   11373    return (_glptr_ResumeTransformFeedback) (GET_by_offset(disp, _gloffset_ResumeTransformFeedback));
   11374 }
   11375 
   11376 static inline void SET_ResumeTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   11377    SET_by_offset(disp, _gloffset_ResumeTransformFeedback, fn);
   11378 }
   11379 
   11380 typedef void (GLAPIENTRYP _glptr_BeginQueryIndexed)(GLenum, GLuint, GLuint);
   11381 #define CALL_BeginQueryIndexed(disp, parameters) \
   11382     (* GET_BeginQueryIndexed(disp)) parameters
   11383 static inline _glptr_BeginQueryIndexed GET_BeginQueryIndexed(struct _glapi_table *disp) {
   11384    return (_glptr_BeginQueryIndexed) (GET_by_offset(disp, _gloffset_BeginQueryIndexed));
   11385 }
   11386 
   11387 static inline void SET_BeginQueryIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) {
   11388    SET_by_offset(disp, _gloffset_BeginQueryIndexed, fn);
   11389 }
   11390 
   11391 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedbackStream)(GLenum, GLuint, GLuint);
   11392 #define CALL_DrawTransformFeedbackStream(disp, parameters) \
   11393     (* GET_DrawTransformFeedbackStream(disp)) parameters
   11394 static inline _glptr_DrawTransformFeedbackStream GET_DrawTransformFeedbackStream(struct _glapi_table *disp) {
   11395    return (_glptr_DrawTransformFeedbackStream) (GET_by_offset(disp, _gloffset_DrawTransformFeedbackStream));
   11396 }
   11397 
   11398 static inline void SET_DrawTransformFeedbackStream(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) {
   11399    SET_by_offset(disp, _gloffset_DrawTransformFeedbackStream, fn);
   11400 }
   11401 
   11402 typedef void (GLAPIENTRYP _glptr_EndQueryIndexed)(GLenum, GLuint);
   11403 #define CALL_EndQueryIndexed(disp, parameters) \
   11404     (* GET_EndQueryIndexed(disp)) parameters
   11405 static inline _glptr_EndQueryIndexed GET_EndQueryIndexed(struct _glapi_table *disp) {
   11406    return (_glptr_EndQueryIndexed) (GET_by_offset(disp, _gloffset_EndQueryIndexed));
   11407 }
   11408 
   11409 static inline void SET_EndQueryIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   11410    SET_by_offset(disp, _gloffset_EndQueryIndexed, fn);
   11411 }
   11412 
   11413 typedef void (GLAPIENTRYP _glptr_GetQueryIndexediv)(GLenum, GLuint, GLenum, GLint *);
   11414 #define CALL_GetQueryIndexediv(disp, parameters) \
   11415     (* GET_GetQueryIndexediv(disp)) parameters
   11416 static inline _glptr_GetQueryIndexediv GET_GetQueryIndexediv(struct _glapi_table *disp) {
   11417    return (_glptr_GetQueryIndexediv) (GET_by_offset(disp, _gloffset_GetQueryIndexediv));
   11418 }
   11419 
   11420 static inline void SET_GetQueryIndexediv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
   11421    SET_by_offset(disp, _gloffset_GetQueryIndexediv, fn);
   11422 }
   11423 
   11424 typedef void (GLAPIENTRYP _glptr_ClearDepthf)(GLclampf);
   11425 #define CALL_ClearDepthf(disp, parameters) \
   11426     (* GET_ClearDepthf(disp)) parameters
   11427 static inline _glptr_ClearDepthf GET_ClearDepthf(struct _glapi_table *disp) {
   11428    return (_glptr_ClearDepthf) (GET_by_offset(disp, _gloffset_ClearDepthf));
   11429 }
   11430 
   11431 static inline void SET_ClearDepthf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf)) {
   11432    SET_by_offset(disp, _gloffset_ClearDepthf, fn);
   11433 }
   11434 
   11435 typedef void (GLAPIENTRYP _glptr_DepthRangef)(GLclampf, GLclampf);
   11436 #define CALL_DepthRangef(disp, parameters) \
   11437     (* GET_DepthRangef(disp)) parameters
   11438 static inline _glptr_DepthRangef GET_DepthRangef(struct _glapi_table *disp) {
   11439    return (_glptr_DepthRangef) (GET_by_offset(disp, _gloffset_DepthRangef));
   11440 }
   11441 
   11442 static inline void SET_DepthRangef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf)) {
   11443    SET_by_offset(disp, _gloffset_DepthRangef, fn);
   11444 }
   11445 
   11446 typedef void (GLAPIENTRYP _glptr_GetShaderPrecisionFormat)(GLenum, GLenum, GLint *, GLint *);
   11447 #define CALL_GetShaderPrecisionFormat(disp, parameters) \
   11448     (* GET_GetShaderPrecisionFormat(disp)) parameters
   11449 static inline _glptr_GetShaderPrecisionFormat GET_GetShaderPrecisionFormat(struct _glapi_table *disp) {
   11450    return (_glptr_GetShaderPrecisionFormat) (GET_by_offset(disp, _gloffset_GetShaderPrecisionFormat));
   11451 }
   11452 
   11453 static inline void SET_GetShaderPrecisionFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *, GLint *)) {
   11454    SET_by_offset(disp, _gloffset_GetShaderPrecisionFormat, fn);
   11455 }
   11456 
   11457 typedef void (GLAPIENTRYP _glptr_ReleaseShaderCompiler)(void);
   11458 #define CALL_ReleaseShaderCompiler(disp, parameters) \
   11459     (* GET_ReleaseShaderCompiler(disp)) parameters
   11460 static inline _glptr_ReleaseShaderCompiler GET_ReleaseShaderCompiler(struct _glapi_table *disp) {
   11461    return (_glptr_ReleaseShaderCompiler) (GET_by_offset(disp, _gloffset_ReleaseShaderCompiler));
   11462 }
   11463 
   11464 static inline void SET_ReleaseShaderCompiler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   11465    SET_by_offset(disp, _gloffset_ReleaseShaderCompiler, fn);
   11466 }
   11467 
   11468 typedef void (GLAPIENTRYP _glptr_ShaderBinary)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei);
   11469 #define CALL_ShaderBinary(disp, parameters) \
   11470     (* GET_ShaderBinary(disp)) parameters
   11471 static inline _glptr_ShaderBinary GET_ShaderBinary(struct _glapi_table *disp) {
   11472    return (_glptr_ShaderBinary) (GET_by_offset(disp, _gloffset_ShaderBinary));
   11473 }
   11474 
   11475 static inline void SET_ShaderBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei)) {
   11476    SET_by_offset(disp, _gloffset_ShaderBinary, fn);
   11477 }
   11478 
   11479 typedef void (GLAPIENTRYP _glptr_GetProgramBinary)(GLuint, GLsizei, GLsizei *, GLenum *, GLvoid *);
   11480 #define CALL_GetProgramBinary(disp, parameters) \
   11481     (* GET_GetProgramBinary(disp)) parameters
   11482 static inline _glptr_GetProgramBinary GET_GetProgramBinary(struct _glapi_table *disp) {
   11483    return (_glptr_GetProgramBinary) (GET_by_offset(disp, _gloffset_GetProgramBinary));
   11484 }
   11485 
   11486 static inline void SET_GetProgramBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLenum *, GLvoid *)) {
   11487    SET_by_offset(disp, _gloffset_GetProgramBinary, fn);
   11488 }
   11489 
   11490 typedef void (GLAPIENTRYP _glptr_ProgramBinary)(GLuint, GLenum, const GLvoid *, GLsizei);
   11491 #define CALL_ProgramBinary(disp, parameters) \
   11492     (* GET_ProgramBinary(disp)) parameters
   11493 static inline _glptr_ProgramBinary GET_ProgramBinary(struct _glapi_table *disp) {
   11494    return (_glptr_ProgramBinary) (GET_by_offset(disp, _gloffset_ProgramBinary));
   11495 }
   11496 
   11497 static inline void SET_ProgramBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLvoid *, GLsizei)) {
   11498    SET_by_offset(disp, _gloffset_ProgramBinary, fn);
   11499 }
   11500 
   11501 typedef void (GLAPIENTRYP _glptr_ProgramParameteri)(GLuint, GLenum, GLint);
   11502 #define CALL_ProgramParameteri(disp, parameters) \
   11503     (* GET_ProgramParameteri(disp)) parameters
   11504 static inline _glptr_ProgramParameteri GET_ProgramParameteri(struct _glapi_table *disp) {
   11505    return (_glptr_ProgramParameteri) (GET_by_offset(disp, _gloffset_ProgramParameteri));
   11506 }
   11507 
   11508 static inline void SET_ProgramParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
   11509    SET_by_offset(disp, _gloffset_ProgramParameteri, fn);
   11510 }
   11511 
   11512 typedef void (GLAPIENTRYP _glptr_GetVertexAttribLdv)(GLuint, GLenum, GLdouble *);
   11513 #define CALL_GetVertexAttribLdv(disp, parameters) \
   11514     (* GET_GetVertexAttribLdv(disp)) parameters
   11515 static inline _glptr_GetVertexAttribLdv GET_GetVertexAttribLdv(struct _glapi_table *disp) {
   11516    return (_glptr_GetVertexAttribLdv) (GET_by_offset(disp, _gloffset_GetVertexAttribLdv));
   11517 }
   11518 
   11519 static inline void SET_GetVertexAttribLdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
   11520    SET_by_offset(disp, _gloffset_GetVertexAttribLdv, fn);
   11521 }
   11522 
   11523 typedef void (GLAPIENTRYP _glptr_VertexAttribL1d)(GLuint, GLdouble);
   11524 #define CALL_VertexAttribL1d(disp, parameters) \
   11525     (* GET_VertexAttribL1d(disp)) parameters
   11526 static inline _glptr_VertexAttribL1d GET_VertexAttribL1d(struct _glapi_table *disp) {
   11527    return (_glptr_VertexAttribL1d) (GET_by_offset(disp, _gloffset_VertexAttribL1d));
   11528 }
   11529 
   11530 static inline void SET_VertexAttribL1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
   11531    SET_by_offset(disp, _gloffset_VertexAttribL1d, fn);
   11532 }
   11533 
   11534 typedef void (GLAPIENTRYP _glptr_VertexAttribL1dv)(GLuint, const GLdouble *);
   11535 #define CALL_VertexAttribL1dv(disp, parameters) \
   11536     (* GET_VertexAttribL1dv(disp)) parameters
   11537 static inline _glptr_VertexAttribL1dv GET_VertexAttribL1dv(struct _glapi_table *disp) {
   11538    return (_glptr_VertexAttribL1dv) (GET_by_offset(disp, _gloffset_VertexAttribL1dv));
   11539 }
   11540 
   11541 static inline void SET_VertexAttribL1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   11542    SET_by_offset(disp, _gloffset_VertexAttribL1dv, fn);
   11543 }
   11544 
   11545 typedef void (GLAPIENTRYP _glptr_VertexAttribL2d)(GLuint, GLdouble, GLdouble);
   11546 #define CALL_VertexAttribL2d(disp, parameters) \
   11547     (* GET_VertexAttribL2d(disp)) parameters
   11548 static inline _glptr_VertexAttribL2d GET_VertexAttribL2d(struct _glapi_table *disp) {
   11549    return (_glptr_VertexAttribL2d) (GET_by_offset(disp, _gloffset_VertexAttribL2d));
   11550 }
   11551 
   11552 static inline void SET_VertexAttribL2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
   11553    SET_by_offset(disp, _gloffset_VertexAttribL2d, fn);
   11554 }
   11555 
   11556 typedef void (GLAPIENTRYP _glptr_VertexAttribL2dv)(GLuint, const GLdouble *);
   11557 #define CALL_VertexAttribL2dv(disp, parameters) \
   11558     (* GET_VertexAttribL2dv(disp)) parameters
   11559 static inline _glptr_VertexAttribL2dv GET_VertexAttribL2dv(struct _glapi_table *disp) {
   11560    return (_glptr_VertexAttribL2dv) (GET_by_offset(disp, _gloffset_VertexAttribL2dv));
   11561 }
   11562 
   11563 static inline void SET_VertexAttribL2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   11564    SET_by_offset(disp, _gloffset_VertexAttribL2dv, fn);
   11565 }
   11566 
   11567 typedef void (GLAPIENTRYP _glptr_VertexAttribL3d)(GLuint, GLdouble, GLdouble, GLdouble);
   11568 #define CALL_VertexAttribL3d(disp, parameters) \
   11569     (* GET_VertexAttribL3d(disp)) parameters
   11570 static inline _glptr_VertexAttribL3d GET_VertexAttribL3d(struct _glapi_table *disp) {
   11571    return (_glptr_VertexAttribL3d) (GET_by_offset(disp, _gloffset_VertexAttribL3d));
   11572 }
   11573 
   11574 static inline void SET_VertexAttribL3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
   11575    SET_by_offset(disp, _gloffset_VertexAttribL3d, fn);
   11576 }
   11577 
   11578 typedef void (GLAPIENTRYP _glptr_VertexAttribL3dv)(GLuint, const GLdouble *);
   11579 #define CALL_VertexAttribL3dv(disp, parameters) \
   11580     (* GET_VertexAttribL3dv(disp)) parameters
   11581 static inline _glptr_VertexAttribL3dv GET_VertexAttribL3dv(struct _glapi_table *disp) {
   11582    return (_glptr_VertexAttribL3dv) (GET_by_offset(disp, _gloffset_VertexAttribL3dv));
   11583 }
   11584 
   11585 static inline void SET_VertexAttribL3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   11586    SET_by_offset(disp, _gloffset_VertexAttribL3dv, fn);
   11587 }
   11588 
   11589 typedef void (GLAPIENTRYP _glptr_VertexAttribL4d)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
   11590 #define CALL_VertexAttribL4d(disp, parameters) \
   11591     (* GET_VertexAttribL4d(disp)) parameters
   11592 static inline _glptr_VertexAttribL4d GET_VertexAttribL4d(struct _glapi_table *disp) {
   11593    return (_glptr_VertexAttribL4d) (GET_by_offset(disp, _gloffset_VertexAttribL4d));
   11594 }
   11595 
   11596 static inline void SET_VertexAttribL4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   11597    SET_by_offset(disp, _gloffset_VertexAttribL4d, fn);
   11598 }
   11599 
   11600 typedef void (GLAPIENTRYP _glptr_VertexAttribL4dv)(GLuint, const GLdouble *);
   11601 #define CALL_VertexAttribL4dv(disp, parameters) \
   11602     (* GET_VertexAttribL4dv(disp)) parameters
   11603 static inline _glptr_VertexAttribL4dv GET_VertexAttribL4dv(struct _glapi_table *disp) {
   11604    return (_glptr_VertexAttribL4dv) (GET_by_offset(disp, _gloffset_VertexAttribL4dv));
   11605 }
   11606 
   11607 static inline void SET_VertexAttribL4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   11608    SET_by_offset(disp, _gloffset_VertexAttribL4dv, fn);
   11609 }
   11610 
   11611 typedef void (GLAPIENTRYP _glptr_VertexAttribLPointer)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
   11612 #define CALL_VertexAttribLPointer(disp, parameters) \
   11613     (* GET_VertexAttribLPointer(disp)) parameters
   11614 static inline _glptr_VertexAttribLPointer GET_VertexAttribLPointer(struct _glapi_table *disp) {
   11615    return (_glptr_VertexAttribLPointer) (GET_by_offset(disp, _gloffset_VertexAttribLPointer));
   11616 }
   11617 
   11618 static inline void SET_VertexAttribLPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
   11619    SET_by_offset(disp, _gloffset_VertexAttribLPointer, fn);
   11620 }
   11621 
   11622 typedef void (GLAPIENTRYP _glptr_DepthRangeArrayv)(GLuint, GLsizei, const GLclampd *);
   11623 #define CALL_DepthRangeArrayv(disp, parameters) \
   11624     (* GET_DepthRangeArrayv(disp)) parameters
   11625 static inline _glptr_DepthRangeArrayv GET_DepthRangeArrayv(struct _glapi_table *disp) {
   11626    return (_glptr_DepthRangeArrayv) (GET_by_offset(disp, _gloffset_DepthRangeArrayv));
   11627 }
   11628 
   11629 static inline void SET_DepthRangeArrayv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLclampd *)) {
   11630    SET_by_offset(disp, _gloffset_DepthRangeArrayv, fn);
   11631 }
   11632 
   11633 typedef void (GLAPIENTRYP _glptr_DepthRangeIndexed)(GLuint, GLclampd, GLclampd);
   11634 #define CALL_DepthRangeIndexed(disp, parameters) \
   11635     (* GET_DepthRangeIndexed(disp)) parameters
   11636 static inline _glptr_DepthRangeIndexed GET_DepthRangeIndexed(struct _glapi_table *disp) {
   11637    return (_glptr_DepthRangeIndexed) (GET_by_offset(disp, _gloffset_DepthRangeIndexed));
   11638 }
   11639 
   11640 static inline void SET_DepthRangeIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLclampd, GLclampd)) {
   11641    SET_by_offset(disp, _gloffset_DepthRangeIndexed, fn);
   11642 }
   11643 
   11644 typedef void (GLAPIENTRYP _glptr_GetDoublei_v)(GLenum, GLuint, GLdouble *);
   11645 #define CALL_GetDoublei_v(disp, parameters) \
   11646     (* GET_GetDoublei_v(disp)) parameters
   11647 static inline _glptr_GetDoublei_v GET_GetDoublei_v(struct _glapi_table *disp) {
   11648    return (_glptr_GetDoublei_v) (GET_by_offset(disp, _gloffset_GetDoublei_v));
   11649 }
   11650 
   11651 static inline void SET_GetDoublei_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
   11652    SET_by_offset(disp, _gloffset_GetDoublei_v, fn);
   11653 }
   11654 
   11655 typedef void (GLAPIENTRYP _glptr_GetFloati_v)(GLenum, GLuint, GLfloat *);
   11656 #define CALL_GetFloati_v(disp, parameters) \
   11657     (* GET_GetFloati_v(disp)) parameters
   11658 static inline _glptr_GetFloati_v GET_GetFloati_v(struct _glapi_table *disp) {
   11659    return (_glptr_GetFloati_v) (GET_by_offset(disp, _gloffset_GetFloati_v));
   11660 }
   11661 
   11662 static inline void SET_GetFloati_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
   11663    SET_by_offset(disp, _gloffset_GetFloati_v, fn);
   11664 }
   11665 
   11666 typedef void (GLAPIENTRYP _glptr_ScissorArrayv)(GLuint, GLsizei, const int *);
   11667 #define CALL_ScissorArrayv(disp, parameters) \
   11668     (* GET_ScissorArrayv(disp)) parameters
   11669 static inline _glptr_ScissorArrayv GET_ScissorArrayv(struct _glapi_table *disp) {
   11670    return (_glptr_ScissorArrayv) (GET_by_offset(disp, _gloffset_ScissorArrayv));
   11671 }
   11672 
   11673 static inline void SET_ScissorArrayv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const int *)) {
   11674    SET_by_offset(disp, _gloffset_ScissorArrayv, fn);
   11675 }
   11676 
   11677 typedef void (GLAPIENTRYP _glptr_ScissorIndexed)(GLuint, GLint, GLint, GLsizei, GLsizei);
   11678 #define CALL_ScissorIndexed(disp, parameters) \
   11679     (* GET_ScissorIndexed(disp)) parameters
   11680 static inline _glptr_ScissorIndexed GET_ScissorIndexed(struct _glapi_table *disp) {
   11681    return (_glptr_ScissorIndexed) (GET_by_offset(disp, _gloffset_ScissorIndexed));
   11682 }
   11683 
   11684 static inline void SET_ScissorIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLsizei, GLsizei)) {
   11685    SET_by_offset(disp, _gloffset_ScissorIndexed, fn);
   11686 }
   11687 
   11688 typedef void (GLAPIENTRYP _glptr_ScissorIndexedv)(GLuint, const GLint *);
   11689 #define CALL_ScissorIndexedv(disp, parameters) \
   11690     (* GET_ScissorIndexedv(disp)) parameters
   11691 static inline _glptr_ScissorIndexedv GET_ScissorIndexedv(struct _glapi_table *disp) {
   11692    return (_glptr_ScissorIndexedv) (GET_by_offset(disp, _gloffset_ScissorIndexedv));
   11693 }
   11694 
   11695 static inline void SET_ScissorIndexedv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   11696    SET_by_offset(disp, _gloffset_ScissorIndexedv, fn);
   11697 }
   11698 
   11699 typedef void (GLAPIENTRYP _glptr_ViewportArrayv)(GLuint, GLsizei, const GLfloat *);
   11700 #define CALL_ViewportArrayv(disp, parameters) \
   11701     (* GET_ViewportArrayv(disp)) parameters
   11702 static inline _glptr_ViewportArrayv GET_ViewportArrayv(struct _glapi_table *disp) {
   11703    return (_glptr_ViewportArrayv) (GET_by_offset(disp, _gloffset_ViewportArrayv));
   11704 }
   11705 
   11706 static inline void SET_ViewportArrayv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
   11707    SET_by_offset(disp, _gloffset_ViewportArrayv, fn);
   11708 }
   11709 
   11710 typedef void (GLAPIENTRYP _glptr_ViewportIndexedf)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
   11711 #define CALL_ViewportIndexedf(disp, parameters) \
   11712     (* GET_ViewportIndexedf(disp)) parameters
   11713 static inline _glptr_ViewportIndexedf GET_ViewportIndexedf(struct _glapi_table *disp) {
   11714    return (_glptr_ViewportIndexedf) (GET_by_offset(disp, _gloffset_ViewportIndexedf));
   11715 }
   11716 
   11717 static inline void SET_ViewportIndexedf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   11718    SET_by_offset(disp, _gloffset_ViewportIndexedf, fn);
   11719 }
   11720 
   11721 typedef void (GLAPIENTRYP _glptr_ViewportIndexedfv)(GLuint, const GLfloat *);
   11722 #define CALL_ViewportIndexedfv(disp, parameters) \
   11723     (* GET_ViewportIndexedfv(disp)) parameters
   11724 static inline _glptr_ViewportIndexedfv GET_ViewportIndexedfv(struct _glapi_table *disp) {
   11725    return (_glptr_ViewportIndexedfv) (GET_by_offset(disp, _gloffset_ViewportIndexedfv));
   11726 }
   11727 
   11728 static inline void SET_ViewportIndexedfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   11729    SET_by_offset(disp, _gloffset_ViewportIndexedfv, fn);
   11730 }
   11731 
   11732 typedef GLenum (GLAPIENTRYP _glptr_GetGraphicsResetStatusARB)(void);
   11733 #define CALL_GetGraphicsResetStatusARB(disp, parameters) \
   11734     (* GET_GetGraphicsResetStatusARB(disp)) parameters
   11735 static inline _glptr_GetGraphicsResetStatusARB GET_GetGraphicsResetStatusARB(struct _glapi_table *disp) {
   11736    return (_glptr_GetGraphicsResetStatusARB) (GET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB));
   11737 }
   11738 
   11739 static inline void SET_GetGraphicsResetStatusARB(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
   11740    SET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB, fn);
   11741 }
   11742 
   11743 typedef void (GLAPIENTRYP _glptr_GetnColorTableARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *);
   11744 #define CALL_GetnColorTableARB(disp, parameters) \
   11745     (* GET_GetnColorTableARB(disp)) parameters
   11746 static inline _glptr_GetnColorTableARB GET_GetnColorTableARB(struct _glapi_table *disp) {
   11747    return (_glptr_GetnColorTableARB) (GET_by_offset(disp, _gloffset_GetnColorTableARB));
   11748 }
   11749 
   11750 static inline void SET_GetnColorTableARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) {
   11751    SET_by_offset(disp, _gloffset_GetnColorTableARB, fn);
   11752 }
   11753 
   11754 typedef void (GLAPIENTRYP _glptr_GetnCompressedTexImageARB)(GLenum, GLint, GLsizei, GLvoid *);
   11755 #define CALL_GetnCompressedTexImageARB(disp, parameters) \
   11756     (* GET_GetnCompressedTexImageARB(disp)) parameters
   11757 static inline _glptr_GetnCompressedTexImageARB GET_GetnCompressedTexImageARB(struct _glapi_table *disp) {
   11758    return (_glptr_GetnCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetnCompressedTexImageARB));
   11759 }
   11760 
   11761 static inline void SET_GetnCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLvoid *)) {
   11762    SET_by_offset(disp, _gloffset_GetnCompressedTexImageARB, fn);
   11763 }
   11764 
   11765 typedef void (GLAPIENTRYP _glptr_GetnConvolutionFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *);
   11766 #define CALL_GetnConvolutionFilterARB(disp, parameters) \
   11767     (* GET_GetnConvolutionFilterARB(disp)) parameters
   11768 static inline _glptr_GetnConvolutionFilterARB GET_GetnConvolutionFilterARB(struct _glapi_table *disp) {
   11769    return (_glptr_GetnConvolutionFilterARB) (GET_by_offset(disp, _gloffset_GetnConvolutionFilterARB));
   11770 }
   11771 
   11772 static inline void SET_GetnConvolutionFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) {
   11773    SET_by_offset(disp, _gloffset_GetnConvolutionFilterARB, fn);
   11774 }
   11775 
   11776 typedef void (GLAPIENTRYP _glptr_GetnHistogramARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *);
   11777 #define CALL_GetnHistogramARB(disp, parameters) \
   11778     (* GET_GetnHistogramARB(disp)) parameters
   11779 static inline _glptr_GetnHistogramARB GET_GetnHistogramARB(struct _glapi_table *disp) {
   11780    return (_glptr_GetnHistogramARB) (GET_by_offset(disp, _gloffset_GetnHistogramARB));
   11781 }
   11782 
   11783 static inline void SET_GetnHistogramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) {
   11784    SET_by_offset(disp, _gloffset_GetnHistogramARB, fn);
   11785 }
   11786 
   11787 typedef void (GLAPIENTRYP _glptr_GetnMapdvARB)(GLenum, GLenum, GLsizei, GLdouble *);
   11788 #define CALL_GetnMapdvARB(disp, parameters) \
   11789     (* GET_GetnMapdvARB(disp)) parameters
   11790 static inline _glptr_GetnMapdvARB GET_GetnMapdvARB(struct _glapi_table *disp) {
   11791    return (_glptr_GetnMapdvARB) (GET_by_offset(disp, _gloffset_GetnMapdvARB));
   11792 }
   11793 
   11794 static inline void SET_GetnMapdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLdouble *)) {
   11795    SET_by_offset(disp, _gloffset_GetnMapdvARB, fn);
   11796 }
   11797 
   11798 typedef void (GLAPIENTRYP _glptr_GetnMapfvARB)(GLenum, GLenum, GLsizei, GLfloat *);
   11799 #define CALL_GetnMapfvARB(disp, parameters) \
   11800     (* GET_GetnMapfvARB(disp)) parameters
   11801 static inline _glptr_GetnMapfvARB GET_GetnMapfvARB(struct _glapi_table *disp) {
   11802    return (_glptr_GetnMapfvARB) (GET_by_offset(disp, _gloffset_GetnMapfvARB));
   11803 }
   11804 
   11805 static inline void SET_GetnMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLfloat *)) {
   11806    SET_by_offset(disp, _gloffset_GetnMapfvARB, fn);
   11807 }
   11808 
   11809 typedef void (GLAPIENTRYP _glptr_GetnMapivARB)(GLenum, GLenum, GLsizei, GLint *);
   11810 #define CALL_GetnMapivARB(disp, parameters) \
   11811     (* GET_GetnMapivARB(disp)) parameters
   11812 static inline _glptr_GetnMapivARB GET_GetnMapivARB(struct _glapi_table *disp) {
   11813    return (_glptr_GetnMapivARB) (GET_by_offset(disp, _gloffset_GetnMapivARB));
   11814 }
   11815 
   11816 static inline void SET_GetnMapivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLint *)) {
   11817    SET_by_offset(disp, _gloffset_GetnMapivARB, fn);
   11818 }
   11819 
   11820 typedef void (GLAPIENTRYP _glptr_GetnMinmaxARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *);
   11821 #define CALL_GetnMinmaxARB(disp, parameters) \
   11822     (* GET_GetnMinmaxARB(disp)) parameters
   11823 static inline _glptr_GetnMinmaxARB GET_GetnMinmaxARB(struct _glapi_table *disp) {
   11824    return (_glptr_GetnMinmaxARB) (GET_by_offset(disp, _gloffset_GetnMinmaxARB));
   11825 }
   11826 
   11827 static inline void SET_GetnMinmaxARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) {
   11828    SET_by_offset(disp, _gloffset_GetnMinmaxARB, fn);
   11829 }
   11830 
   11831 typedef void (GLAPIENTRYP _glptr_GetnPixelMapfvARB)(GLenum, GLsizei, GLfloat *);
   11832 #define CALL_GetnPixelMapfvARB(disp, parameters) \
   11833     (* GET_GetnPixelMapfvARB(disp)) parameters
   11834 static inline _glptr_GetnPixelMapfvARB GET_GetnPixelMapfvARB(struct _glapi_table *disp) {
   11835    return (_glptr_GetnPixelMapfvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapfvARB));
   11836 }
   11837 
   11838 static inline void SET_GetnPixelMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLfloat *)) {
   11839    SET_by_offset(disp, _gloffset_GetnPixelMapfvARB, fn);
   11840 }
   11841 
   11842 typedef void (GLAPIENTRYP _glptr_GetnPixelMapuivARB)(GLenum, GLsizei, GLuint *);
   11843 #define CALL_GetnPixelMapuivARB(disp, parameters) \
   11844     (* GET_GetnPixelMapuivARB(disp)) parameters
   11845 static inline _glptr_GetnPixelMapuivARB GET_GetnPixelMapuivARB(struct _glapi_table *disp) {
   11846    return (_glptr_GetnPixelMapuivARB) (GET_by_offset(disp, _gloffset_GetnPixelMapuivARB));
   11847 }
   11848 
   11849 static inline void SET_GetnPixelMapuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLuint *)) {
   11850    SET_by_offset(disp, _gloffset_GetnPixelMapuivARB, fn);
   11851 }
   11852 
   11853 typedef void (GLAPIENTRYP _glptr_GetnPixelMapusvARB)(GLenum, GLsizei, GLushort *);
   11854 #define CALL_GetnPixelMapusvARB(disp, parameters) \
   11855     (* GET_GetnPixelMapusvARB(disp)) parameters
   11856 static inline _glptr_GetnPixelMapusvARB GET_GetnPixelMapusvARB(struct _glapi_table *disp) {
   11857    return (_glptr_GetnPixelMapusvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapusvARB));
   11858 }
   11859 
   11860 static inline void SET_GetnPixelMapusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLushort *)) {
   11861    SET_by_offset(disp, _gloffset_GetnPixelMapusvARB, fn);
   11862 }
   11863 
   11864 typedef void (GLAPIENTRYP _glptr_GetnPolygonStippleARB)(GLsizei, GLubyte *);
   11865 #define CALL_GetnPolygonStippleARB(disp, parameters) \
   11866     (* GET_GetnPolygonStippleARB(disp)) parameters
   11867 static inline _glptr_GetnPolygonStippleARB GET_GetnPolygonStippleARB(struct _glapi_table *disp) {
   11868    return (_glptr_GetnPolygonStippleARB) (GET_by_offset(disp, _gloffset_GetnPolygonStippleARB));
   11869 }
   11870 
   11871 static inline void SET_GetnPolygonStippleARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLubyte *)) {
   11872    SET_by_offset(disp, _gloffset_GetnPolygonStippleARB, fn);
   11873 }
   11874 
   11875 typedef void (GLAPIENTRYP _glptr_GetnSeparableFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *);
   11876 #define CALL_GetnSeparableFilterARB(disp, parameters) \
   11877     (* GET_GetnSeparableFilterARB(disp)) parameters
   11878 static inline _glptr_GetnSeparableFilterARB GET_GetnSeparableFilterARB(struct _glapi_table *disp) {
   11879    return (_glptr_GetnSeparableFilterARB) (GET_by_offset(disp, _gloffset_GetnSeparableFilterARB));
   11880 }
   11881 
   11882 static inline void SET_GetnSeparableFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *)) {
   11883    SET_by_offset(disp, _gloffset_GetnSeparableFilterARB, fn);
   11884 }
   11885 
   11886 typedef void (GLAPIENTRYP _glptr_GetnTexImageARB)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *);
   11887 #define CALL_GetnTexImageARB(disp, parameters) \
   11888     (* GET_GetnTexImageARB(disp)) parameters
   11889 static inline _glptr_GetnTexImageARB GET_GetnTexImageARB(struct _glapi_table *disp) {
   11890    return (_glptr_GetnTexImageARB) (GET_by_offset(disp, _gloffset_GetnTexImageARB));
   11891 }
   11892 
   11893 static inline void SET_GetnTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *)) {
   11894    SET_by_offset(disp, _gloffset_GetnTexImageARB, fn);
   11895 }
   11896 
   11897 typedef void (GLAPIENTRYP _glptr_GetnUniformdvARB)(GLuint, GLint, GLsizei, GLdouble *);
   11898 #define CALL_GetnUniformdvARB(disp, parameters) \
   11899     (* GET_GetnUniformdvARB(disp)) parameters
   11900 static inline _glptr_GetnUniformdvARB GET_GetnUniformdvARB(struct _glapi_table *disp) {
   11901    return (_glptr_GetnUniformdvARB) (GET_by_offset(disp, _gloffset_GetnUniformdvARB));
   11902 }
   11903 
   11904 static inline void SET_GetnUniformdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLdouble *)) {
   11905    SET_by_offset(disp, _gloffset_GetnUniformdvARB, fn);
   11906 }
   11907 
   11908 typedef void (GLAPIENTRYP _glptr_GetnUniformfvARB)(GLuint, GLint, GLsizei, GLfloat *);
   11909 #define CALL_GetnUniformfvARB(disp, parameters) \
   11910     (* GET_GetnUniformfvARB(disp)) parameters
   11911 static inline _glptr_GetnUniformfvARB GET_GetnUniformfvARB(struct _glapi_table *disp) {
   11912    return (_glptr_GetnUniformfvARB) (GET_by_offset(disp, _gloffset_GetnUniformfvARB));
   11913 }
   11914 
   11915 static inline void SET_GetnUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLfloat *)) {
   11916    SET_by_offset(disp, _gloffset_GetnUniformfvARB, fn);
   11917 }
   11918 
   11919 typedef void (GLAPIENTRYP _glptr_GetnUniformivARB)(GLuint, GLint, GLsizei, GLint *);
   11920 #define CALL_GetnUniformivARB(disp, parameters) \
   11921     (* GET_GetnUniformivARB(disp)) parameters
   11922 static inline _glptr_GetnUniformivARB GET_GetnUniformivARB(struct _glapi_table *disp) {
   11923    return (_glptr_GetnUniformivARB) (GET_by_offset(disp, _gloffset_GetnUniformivARB));
   11924 }
   11925 
   11926 static inline void SET_GetnUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLint *)) {
   11927    SET_by_offset(disp, _gloffset_GetnUniformivARB, fn);
   11928 }
   11929 
   11930 typedef void (GLAPIENTRYP _glptr_GetnUniformuivARB)(GLuint, GLint, GLsizei, GLuint *);
   11931 #define CALL_GetnUniformuivARB(disp, parameters) \
   11932     (* GET_GetnUniformuivARB(disp)) parameters
   11933 static inline _glptr_GetnUniformuivARB GET_GetnUniformuivARB(struct _glapi_table *disp) {
   11934    return (_glptr_GetnUniformuivARB) (GET_by_offset(disp, _gloffset_GetnUniformuivARB));
   11935 }
   11936 
   11937 static inline void SET_GetnUniformuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLuint *)) {
   11938    SET_by_offset(disp, _gloffset_GetnUniformuivARB, fn);
   11939 }
   11940 
   11941 typedef void (GLAPIENTRYP _glptr_ReadnPixelsARB)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *);
   11942 #define CALL_ReadnPixelsARB(disp, parameters) \
   11943     (* GET_ReadnPixelsARB(disp)) parameters
   11944 static inline _glptr_ReadnPixelsARB GET_ReadnPixelsARB(struct _glapi_table *disp) {
   11945    return (_glptr_ReadnPixelsARB) (GET_by_offset(disp, _gloffset_ReadnPixelsARB));
   11946 }
   11947 
   11948 static inline void SET_ReadnPixelsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *)) {
   11949    SET_by_offset(disp, _gloffset_ReadnPixelsARB, fn);
   11950 }
   11951 
   11952 typedef void (GLAPIENTRYP _glptr_DrawArraysInstancedBaseInstance)(GLenum, GLint, GLsizei, GLsizei, GLuint);
   11953 #define CALL_DrawArraysInstancedBaseInstance(disp, parameters) \
   11954     (* GET_DrawArraysInstancedBaseInstance(disp)) parameters
   11955 static inline _glptr_DrawArraysInstancedBaseInstance GET_DrawArraysInstancedBaseInstance(struct _glapi_table *disp) {
   11956    return (_glptr_DrawArraysInstancedBaseInstance) (GET_by_offset(disp, _gloffset_DrawArraysInstancedBaseInstance));
   11957 }
   11958 
   11959 static inline void SET_DrawArraysInstancedBaseInstance(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLsizei, GLuint)) {
   11960    SET_by_offset(disp, _gloffset_DrawArraysInstancedBaseInstance, fn);
   11961 }
   11962 
   11963 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseInstance)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLuint);
   11964 #define CALL_DrawElementsInstancedBaseInstance(disp, parameters) \
   11965     (* GET_DrawElementsInstancedBaseInstance(disp)) parameters
   11966 static inline _glptr_DrawElementsInstancedBaseInstance GET_DrawElementsInstancedBaseInstance(struct _glapi_table *disp) {
   11967    return (_glptr_DrawElementsInstancedBaseInstance) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseInstance));
   11968 }
   11969 
   11970 static inline void SET_DrawElementsInstancedBaseInstance(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLuint)) {
   11971    SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseInstance, fn);
   11972 }
   11973 
   11974 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseVertexBaseInstance)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint, GLuint);
   11975 #define CALL_DrawElementsInstancedBaseVertexBaseInstance(disp, parameters) \
   11976     (* GET_DrawElementsInstancedBaseVertexBaseInstance(disp)) parameters
   11977 static inline _glptr_DrawElementsInstancedBaseVertexBaseInstance GET_DrawElementsInstancedBaseVertexBaseInstance(struct _glapi_table *disp) {
   11978    return (_glptr_DrawElementsInstancedBaseVertexBaseInstance) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertexBaseInstance));
   11979 }
   11980 
   11981 static inline void SET_DrawElementsInstancedBaseVertexBaseInstance(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint, GLuint)) {
   11982    SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertexBaseInstance, fn);
   11983 }
   11984 
   11985 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedbackInstanced)(GLenum, GLuint, GLsizei);
   11986 #define CALL_DrawTransformFeedbackInstanced(disp, parameters) \
   11987     (* GET_DrawTransformFeedbackInstanced(disp)) parameters
   11988 static inline _glptr_DrawTransformFeedbackInstanced GET_DrawTransformFeedbackInstanced(struct _glapi_table *disp) {
   11989    return (_glptr_DrawTransformFeedbackInstanced) (GET_by_offset(disp, _gloffset_DrawTransformFeedbackInstanced));
   11990 }
   11991 
   11992 static inline void SET_DrawTransformFeedbackInstanced(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei)) {
   11993    SET_by_offset(disp, _gloffset_DrawTransformFeedbackInstanced, fn);
   11994 }
   11995 
   11996 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedbackStreamInstanced)(GLenum, GLuint, GLuint, GLsizei);
   11997 #define CALL_DrawTransformFeedbackStreamInstanced(disp, parameters) \
   11998     (* GET_DrawTransformFeedbackStreamInstanced(disp)) parameters
   11999 static inline _glptr_DrawTransformFeedbackStreamInstanced GET_DrawTransformFeedbackStreamInstanced(struct _glapi_table *disp) {
   12000    return (_glptr_DrawTransformFeedbackStreamInstanced) (GET_by_offset(disp, _gloffset_DrawTransformFeedbackStreamInstanced));
   12001 }
   12002 
   12003 static inline void SET_DrawTransformFeedbackStreamInstanced(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei)) {
   12004    SET_by_offset(disp, _gloffset_DrawTransformFeedbackStreamInstanced, fn);
   12005 }
   12006 
   12007 typedef void (GLAPIENTRYP _glptr_GetInternalformativ)(GLenum, GLenum, GLenum, GLsizei, GLint *);
   12008 #define CALL_GetInternalformativ(disp, parameters) \
   12009     (* GET_GetInternalformativ(disp)) parameters
   12010 static inline _glptr_GetInternalformativ GET_GetInternalformativ(struct _glapi_table *disp) {
   12011    return (_glptr_GetInternalformativ) (GET_by_offset(disp, _gloffset_GetInternalformativ));
   12012 }
   12013 
   12014 static inline void SET_GetInternalformativ(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLint *)) {
   12015    SET_by_offset(disp, _gloffset_GetInternalformativ, fn);
   12016 }
   12017 
   12018 typedef void (GLAPIENTRYP _glptr_GetActiveAtomicCounterBufferiv)(GLuint, GLuint, GLenum, GLint *);
   12019 #define CALL_GetActiveAtomicCounterBufferiv(disp, parameters) \
   12020     (* GET_GetActiveAtomicCounterBufferiv(disp)) parameters
   12021 static inline _glptr_GetActiveAtomicCounterBufferiv GET_GetActiveAtomicCounterBufferiv(struct _glapi_table *disp) {
   12022    return (_glptr_GetActiveAtomicCounterBufferiv) (GET_by_offset(disp, _gloffset_GetActiveAtomicCounterBufferiv));
   12023 }
   12024 
   12025 static inline void SET_GetActiveAtomicCounterBufferiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLint *)) {
   12026    SET_by_offset(disp, _gloffset_GetActiveAtomicCounterBufferiv, fn);
   12027 }
   12028 
   12029 typedef void (GLAPIENTRYP _glptr_BindImageTexture)(GLuint, GLuint, GLint, GLboolean, GLint, GLenum, GLenum);
   12030 #define CALL_BindImageTexture(disp, parameters) \
   12031     (* GET_BindImageTexture(disp)) parameters
   12032 static inline _glptr_BindImageTexture GET_BindImageTexture(struct _glapi_table *disp) {
   12033    return (_glptr_BindImageTexture) (GET_by_offset(disp, _gloffset_BindImageTexture));
   12034 }
   12035 
   12036 static inline void SET_BindImageTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLint, GLboolean, GLint, GLenum, GLenum)) {
   12037    SET_by_offset(disp, _gloffset_BindImageTexture, fn);
   12038 }
   12039 
   12040 typedef void (GLAPIENTRYP _glptr_MemoryBarrier)(GLbitfield);
   12041 #define CALL_MemoryBarrier(disp, parameters) \
   12042     (* GET_MemoryBarrier(disp)) parameters
   12043 static inline _glptr_MemoryBarrier GET_MemoryBarrier(struct _glapi_table *disp) {
   12044    return (_glptr_MemoryBarrier) (GET_by_offset(disp, _gloffset_MemoryBarrier));
   12045 }
   12046 
   12047 static inline void SET_MemoryBarrier(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
   12048    SET_by_offset(disp, _gloffset_MemoryBarrier, fn);
   12049 }
   12050 
   12051 typedef void (GLAPIENTRYP _glptr_TexStorage1D)(GLenum, GLsizei, GLenum, GLsizei);
   12052 #define CALL_TexStorage1D(disp, parameters) \
   12053     (* GET_TexStorage1D(disp)) parameters
   12054 static inline _glptr_TexStorage1D GET_TexStorage1D(struct _glapi_table *disp) {
   12055    return (_glptr_TexStorage1D) (GET_by_offset(disp, _gloffset_TexStorage1D));
   12056 }
   12057 
   12058 static inline void SET_TexStorage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei)) {
   12059    SET_by_offset(disp, _gloffset_TexStorage1D, fn);
   12060 }
   12061 
   12062 typedef void (GLAPIENTRYP _glptr_TexStorage2D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei);
   12063 #define CALL_TexStorage2D(disp, parameters) \
   12064     (* GET_TexStorage2D(disp)) parameters
   12065 static inline _glptr_TexStorage2D GET_TexStorage2D(struct _glapi_table *disp) {
   12066    return (_glptr_TexStorage2D) (GET_by_offset(disp, _gloffset_TexStorage2D));
   12067 }
   12068 
   12069 static inline void SET_TexStorage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
   12070    SET_by_offset(disp, _gloffset_TexStorage2D, fn);
   12071 }
   12072 
   12073 typedef void (GLAPIENTRYP _glptr_TexStorage3D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
   12074 #define CALL_TexStorage3D(disp, parameters) \
   12075     (* GET_TexStorage3D(disp)) parameters
   12076 static inline _glptr_TexStorage3D GET_TexStorage3D(struct _glapi_table *disp) {
   12077    return (_glptr_TexStorage3D) (GET_by_offset(disp, _gloffset_TexStorage3D));
   12078 }
   12079 
   12080 static inline void SET_TexStorage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
   12081    SET_by_offset(disp, _gloffset_TexStorage3D, fn);
   12082 }
   12083 
   12084 typedef void (GLAPIENTRYP _glptr_TextureStorage1DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei);
   12085 #define CALL_TextureStorage1DEXT(disp, parameters) \
   12086     (* GET_TextureStorage1DEXT(disp)) parameters
   12087 static inline _glptr_TextureStorage1DEXT GET_TextureStorage1DEXT(struct _glapi_table *disp) {
   12088    return (_glptr_TextureStorage1DEXT) (GET_by_offset(disp, _gloffset_TextureStorage1DEXT));
   12089 }
   12090 
   12091 static inline void SET_TextureStorage1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei)) {
   12092    SET_by_offset(disp, _gloffset_TextureStorage1DEXT, fn);
   12093 }
   12094 
   12095 typedef void (GLAPIENTRYP _glptr_TextureStorage2DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei);
   12096 #define CALL_TextureStorage2DEXT(disp, parameters) \
   12097     (* GET_TextureStorage2DEXT(disp)) parameters
   12098 static inline _glptr_TextureStorage2DEXT GET_TextureStorage2DEXT(struct _glapi_table *disp) {
   12099    return (_glptr_TextureStorage2DEXT) (GET_by_offset(disp, _gloffset_TextureStorage2DEXT));
   12100 }
   12101 
   12102 static inline void SET_TextureStorage2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
   12103    SET_by_offset(disp, _gloffset_TextureStorage2DEXT, fn);
   12104 }
   12105 
   12106 typedef void (GLAPIENTRYP _glptr_TextureStorage3DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
   12107 #define CALL_TextureStorage3DEXT(disp, parameters) \
   12108     (* GET_TextureStorage3DEXT(disp)) parameters
   12109 static inline _glptr_TextureStorage3DEXT GET_TextureStorage3DEXT(struct _glapi_table *disp) {
   12110    return (_glptr_TextureStorage3DEXT) (GET_by_offset(disp, _gloffset_TextureStorage3DEXT));
   12111 }
   12112 
   12113 static inline void SET_TextureStorage3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
   12114    SET_by_offset(disp, _gloffset_TextureStorage3DEXT, fn);
   12115 }
   12116 
   12117 typedef void (GLAPIENTRYP _glptr_ClearBufferData)(GLenum, GLenum, GLenum, GLenum, const GLvoid *);
   12118 #define CALL_ClearBufferData(disp, parameters) \
   12119     (* GET_ClearBufferData(disp)) parameters
   12120 static inline _glptr_ClearBufferData GET_ClearBufferData(struct _glapi_table *disp) {
   12121    return (_glptr_ClearBufferData) (GET_by_offset(disp, _gloffset_ClearBufferData));
   12122 }
   12123 
   12124 static inline void SET_ClearBufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, const GLvoid *)) {
   12125    SET_by_offset(disp, _gloffset_ClearBufferData, fn);
   12126 }
   12127 
   12128 typedef void (GLAPIENTRYP _glptr_ClearBufferSubData)(GLenum, GLenum, GLintptr, GLsizeiptr, GLenum, GLenum, const GLvoid *);
   12129 #define CALL_ClearBufferSubData(disp, parameters) \
   12130     (* GET_ClearBufferSubData(disp)) parameters
   12131 static inline _glptr_ClearBufferSubData GET_ClearBufferSubData(struct _glapi_table *disp) {
   12132    return (_glptr_ClearBufferSubData) (GET_by_offset(disp, _gloffset_ClearBufferSubData));
   12133 }
   12134 
   12135 static inline void SET_ClearBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLintptr, GLsizeiptr, GLenum, GLenum, const GLvoid *)) {
   12136    SET_by_offset(disp, _gloffset_ClearBufferSubData, fn);
   12137 }
   12138 
   12139 typedef void (GLAPIENTRYP _glptr_DispatchCompute)(GLuint, GLuint, GLuint);
   12140 #define CALL_DispatchCompute(disp, parameters) \
   12141     (* GET_DispatchCompute(disp)) parameters
   12142 static inline _glptr_DispatchCompute GET_DispatchCompute(struct _glapi_table *disp) {
   12143    return (_glptr_DispatchCompute) (GET_by_offset(disp, _gloffset_DispatchCompute));
   12144 }
   12145 
   12146 static inline void SET_DispatchCompute(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   12147    SET_by_offset(disp, _gloffset_DispatchCompute, fn);
   12148 }
   12149 
   12150 typedef void (GLAPIENTRYP _glptr_DispatchComputeIndirect)(GLintptr);
   12151 #define CALL_DispatchComputeIndirect(disp, parameters) \
   12152     (* GET_DispatchComputeIndirect(disp)) parameters
   12153 static inline _glptr_DispatchComputeIndirect GET_DispatchComputeIndirect(struct _glapi_table *disp) {
   12154    return (_glptr_DispatchComputeIndirect) (GET_by_offset(disp, _gloffset_DispatchComputeIndirect));
   12155 }
   12156 
   12157 static inline void SET_DispatchComputeIndirect(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLintptr)) {
   12158    SET_by_offset(disp, _gloffset_DispatchComputeIndirect, fn);
   12159 }
   12160 
   12161 typedef void (GLAPIENTRYP _glptr_CopyImageSubData)(GLuint, GLenum, GLint, GLint, GLint, GLint, GLuint, GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei);
   12162 #define CALL_CopyImageSubData(disp, parameters) \
   12163     (* GET_CopyImageSubData(disp)) parameters
   12164 static inline _glptr_CopyImageSubData GET_CopyImageSubData(struct _glapi_table *disp) {
   12165    return (_glptr_CopyImageSubData) (GET_by_offset(disp, _gloffset_CopyImageSubData));
   12166 }
   12167 
   12168 static inline void SET_CopyImageSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint, GLint, GLint, GLint, GLuint, GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei)) {
   12169    SET_by_offset(disp, _gloffset_CopyImageSubData, fn);
   12170 }
   12171 
   12172 typedef void (GLAPIENTRYP _glptr_TextureView)(GLuint, GLenum, GLuint, GLenum, GLuint, GLuint, GLuint, GLuint);
   12173 #define CALL_TextureView(disp, parameters) \
   12174     (* GET_TextureView(disp)) parameters
   12175 static inline _glptr_TextureView GET_TextureView(struct _glapi_table *disp) {
   12176    return (_glptr_TextureView) (GET_by_offset(disp, _gloffset_TextureView));
   12177 }
   12178 
   12179 static inline void SET_TextureView(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLenum, GLuint, GLuint, GLuint, GLuint)) {
   12180    SET_by_offset(disp, _gloffset_TextureView, fn);
   12181 }
   12182 
   12183 typedef void (GLAPIENTRYP _glptr_BindVertexBuffer)(GLuint, GLuint, GLintptr, GLsizei);
   12184 #define CALL_BindVertexBuffer(disp, parameters) \
   12185     (* GET_BindVertexBuffer(disp)) parameters
   12186 static inline _glptr_BindVertexBuffer GET_BindVertexBuffer(struct _glapi_table *disp) {
   12187    return (_glptr_BindVertexBuffer) (GET_by_offset(disp, _gloffset_BindVertexBuffer));
   12188 }
   12189 
   12190 static inline void SET_BindVertexBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLintptr, GLsizei)) {
   12191    SET_by_offset(disp, _gloffset_BindVertexBuffer, fn);
   12192 }
   12193 
   12194 typedef void (GLAPIENTRYP _glptr_VertexAttribBinding)(GLuint, GLuint);
   12195 #define CALL_VertexAttribBinding(disp, parameters) \
   12196     (* GET_VertexAttribBinding(disp)) parameters
   12197 static inline _glptr_VertexAttribBinding GET_VertexAttribBinding(struct _glapi_table *disp) {
   12198    return (_glptr_VertexAttribBinding) (GET_by_offset(disp, _gloffset_VertexAttribBinding));
   12199 }
   12200 
   12201 static inline void SET_VertexAttribBinding(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   12202    SET_by_offset(disp, _gloffset_VertexAttribBinding, fn);
   12203 }
   12204 
   12205 typedef void (GLAPIENTRYP _glptr_VertexAttribFormat)(GLuint, GLint, GLenum, GLboolean, GLuint);
   12206 #define CALL_VertexAttribFormat(disp, parameters) \
   12207     (* GET_VertexAttribFormat(disp)) parameters
   12208 static inline _glptr_VertexAttribFormat GET_VertexAttribFormat(struct _glapi_table *disp) {
   12209    return (_glptr_VertexAttribFormat) (GET_by_offset(disp, _gloffset_VertexAttribFormat));
   12210 }
   12211 
   12212 static inline void SET_VertexAttribFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLboolean, GLuint)) {
   12213    SET_by_offset(disp, _gloffset_VertexAttribFormat, fn);
   12214 }
   12215 
   12216 typedef void (GLAPIENTRYP _glptr_VertexAttribIFormat)(GLuint, GLint, GLenum, GLuint);
   12217 #define CALL_VertexAttribIFormat(disp, parameters) \
   12218     (* GET_VertexAttribIFormat(disp)) parameters
   12219 static inline _glptr_VertexAttribIFormat GET_VertexAttribIFormat(struct _glapi_table *disp) {
   12220    return (_glptr_VertexAttribIFormat) (GET_by_offset(disp, _gloffset_VertexAttribIFormat));
   12221 }
   12222 
   12223 static inline void SET_VertexAttribIFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLuint)) {
   12224    SET_by_offset(disp, _gloffset_VertexAttribIFormat, fn);
   12225 }
   12226 
   12227 typedef void (GLAPIENTRYP _glptr_VertexAttribLFormat)(GLuint, GLint, GLenum, GLuint);
   12228 #define CALL_VertexAttribLFormat(disp, parameters) \
   12229     (* GET_VertexAttribLFormat(disp)) parameters
   12230 static inline _glptr_VertexAttribLFormat GET_VertexAttribLFormat(struct _glapi_table *disp) {
   12231    return (_glptr_VertexAttribLFormat) (GET_by_offset(disp, _gloffset_VertexAttribLFormat));
   12232 }
   12233 
   12234 static inline void SET_VertexAttribLFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLuint)) {
   12235    SET_by_offset(disp, _gloffset_VertexAttribLFormat, fn);
   12236 }
   12237 
   12238 typedef void (GLAPIENTRYP _glptr_VertexBindingDivisor)(GLuint, GLuint);
   12239 #define CALL_VertexBindingDivisor(disp, parameters) \
   12240     (* GET_VertexBindingDivisor(disp)) parameters
   12241 static inline _glptr_VertexBindingDivisor GET_VertexBindingDivisor(struct _glapi_table *disp) {
   12242    return (_glptr_VertexBindingDivisor) (GET_by_offset(disp, _gloffset_VertexBindingDivisor));
   12243 }
   12244 
   12245 static inline void SET_VertexBindingDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   12246    SET_by_offset(disp, _gloffset_VertexBindingDivisor, fn);
   12247 }
   12248 
   12249 typedef void (GLAPIENTRYP _glptr_FramebufferParameteri)(GLenum, GLenum, GLint);
   12250 #define CALL_FramebufferParameteri(disp, parameters) \
   12251     (* GET_FramebufferParameteri(disp)) parameters
   12252 static inline _glptr_FramebufferParameteri GET_FramebufferParameteri(struct _glapi_table *disp) {
   12253    return (_glptr_FramebufferParameteri) (GET_by_offset(disp, _gloffset_FramebufferParameteri));
   12254 }
   12255 
   12256 static inline void SET_FramebufferParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   12257    SET_by_offset(disp, _gloffset_FramebufferParameteri, fn);
   12258 }
   12259 
   12260 typedef void (GLAPIENTRYP _glptr_GetFramebufferParameteriv)(GLenum, GLenum, GLint *);
   12261 #define CALL_GetFramebufferParameteriv(disp, parameters) \
   12262     (* GET_GetFramebufferParameteriv(disp)) parameters
   12263 static inline _glptr_GetFramebufferParameteriv GET_GetFramebufferParameteriv(struct _glapi_table *disp) {
   12264    return (_glptr_GetFramebufferParameteriv) (GET_by_offset(disp, _gloffset_GetFramebufferParameteriv));
   12265 }
   12266 
   12267 static inline void SET_GetFramebufferParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
   12268    SET_by_offset(disp, _gloffset_GetFramebufferParameteriv, fn);
   12269 }
   12270 
   12271 typedef void (GLAPIENTRYP _glptr_GetInternalformati64v)(GLenum, GLenum, GLenum, GLsizei, GLint64 *);
   12272 #define CALL_GetInternalformati64v(disp, parameters) \
   12273     (* GET_GetInternalformati64v(disp)) parameters
   12274 static inline _glptr_GetInternalformati64v GET_GetInternalformati64v(struct _glapi_table *disp) {
   12275    return (_glptr_GetInternalformati64v) (GET_by_offset(disp, _gloffset_GetInternalformati64v));
   12276 }
   12277 
   12278 static inline void SET_GetInternalformati64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLint64 *)) {
   12279    SET_by_offset(disp, _gloffset_GetInternalformati64v, fn);
   12280 }
   12281 
   12282 typedef void (GLAPIENTRYP _glptr_MultiDrawArraysIndirect)(GLenum, const GLvoid *, GLsizei, GLsizei);
   12283 #define CALL_MultiDrawArraysIndirect(disp, parameters) \
   12284     (* GET_MultiDrawArraysIndirect(disp)) parameters
   12285 static inline _glptr_MultiDrawArraysIndirect GET_MultiDrawArraysIndirect(struct _glapi_table *disp) {
   12286    return (_glptr_MultiDrawArraysIndirect) (GET_by_offset(disp, _gloffset_MultiDrawArraysIndirect));
   12287 }
   12288 
   12289 static inline void SET_MultiDrawArraysIndirect(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLvoid *, GLsizei, GLsizei)) {
   12290    SET_by_offset(disp, _gloffset_MultiDrawArraysIndirect, fn);
   12291 }
   12292 
   12293 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsIndirect)(GLenum, GLenum, const GLvoid *, GLsizei, GLsizei);
   12294 #define CALL_MultiDrawElementsIndirect(disp, parameters) \
   12295     (* GET_MultiDrawElementsIndirect(disp)) parameters
   12296 static inline _glptr_MultiDrawElementsIndirect GET_MultiDrawElementsIndirect(struct _glapi_table *disp) {
   12297    return (_glptr_MultiDrawElementsIndirect) (GET_by_offset(disp, _gloffset_MultiDrawElementsIndirect));
   12298 }
   12299 
   12300 static inline void SET_MultiDrawElementsIndirect(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLvoid *, GLsizei, GLsizei)) {
   12301    SET_by_offset(disp, _gloffset_MultiDrawElementsIndirect, fn);
   12302 }
   12303 
   12304 typedef void (GLAPIENTRYP _glptr_GetProgramInterfaceiv)(GLuint, GLenum, GLenum, GLint *);
   12305 #define CALL_GetProgramInterfaceiv(disp, parameters) \
   12306     (* GET_GetProgramInterfaceiv(disp)) parameters
   12307 static inline _glptr_GetProgramInterfaceiv GET_GetProgramInterfaceiv(struct _glapi_table *disp) {
   12308    return (_glptr_GetProgramInterfaceiv) (GET_by_offset(disp, _gloffset_GetProgramInterfaceiv));
   12309 }
   12310 
   12311 static inline void SET_GetProgramInterfaceiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLint *)) {
   12312    SET_by_offset(disp, _gloffset_GetProgramInterfaceiv, fn);
   12313 }
   12314 
   12315 typedef GLuint (GLAPIENTRYP _glptr_GetProgramResourceIndex)(GLuint, GLenum, const GLchar *);
   12316 #define CALL_GetProgramResourceIndex(disp, parameters) \
   12317     (* GET_GetProgramResourceIndex(disp)) parameters
   12318 static inline _glptr_GetProgramResourceIndex GET_GetProgramResourceIndex(struct _glapi_table *disp) {
   12319    return (_glptr_GetProgramResourceIndex) (GET_by_offset(disp, _gloffset_GetProgramResourceIndex));
   12320 }
   12321 
   12322 static inline void SET_GetProgramResourceIndex(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint, GLenum, const GLchar *)) {
   12323    SET_by_offset(disp, _gloffset_GetProgramResourceIndex, fn);
   12324 }
   12325 
   12326 typedef GLint (GLAPIENTRYP _glptr_GetProgramResourceLocation)(GLuint, GLenum, const GLchar *);
   12327 #define CALL_GetProgramResourceLocation(disp, parameters) \
   12328     (* GET_GetProgramResourceLocation(disp)) parameters
   12329 static inline _glptr_GetProgramResourceLocation GET_GetProgramResourceLocation(struct _glapi_table *disp) {
   12330    return (_glptr_GetProgramResourceLocation) (GET_by_offset(disp, _gloffset_GetProgramResourceLocation));
   12331 }
   12332 
   12333 static inline void SET_GetProgramResourceLocation(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, GLenum, const GLchar *)) {
   12334    SET_by_offset(disp, _gloffset_GetProgramResourceLocation, fn);
   12335 }
   12336 
   12337 typedef GLint (GLAPIENTRYP _glptr_GetProgramResourceLocationIndex)(GLuint, GLenum, const GLchar *);
   12338 #define CALL_GetProgramResourceLocationIndex(disp, parameters) \
   12339     (* GET_GetProgramResourceLocationIndex(disp)) parameters
   12340 static inline _glptr_GetProgramResourceLocationIndex GET_GetProgramResourceLocationIndex(struct _glapi_table *disp) {
   12341    return (_glptr_GetProgramResourceLocationIndex) (GET_by_offset(disp, _gloffset_GetProgramResourceLocationIndex));
   12342 }
   12343 
   12344 static inline void SET_GetProgramResourceLocationIndex(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, GLenum, const GLchar *)) {
   12345    SET_by_offset(disp, _gloffset_GetProgramResourceLocationIndex, fn);
   12346 }
   12347 
   12348 typedef void (GLAPIENTRYP _glptr_GetProgramResourceName)(GLuint, GLenum, GLuint, GLsizei , GLsizei *, GLchar *);
   12349 #define CALL_GetProgramResourceName(disp, parameters) \
   12350     (* GET_GetProgramResourceName(disp)) parameters
   12351 static inline _glptr_GetProgramResourceName GET_GetProgramResourceName(struct _glapi_table *disp) {
   12352    return (_glptr_GetProgramResourceName) (GET_by_offset(disp, _gloffset_GetProgramResourceName));
   12353 }
   12354 
   12355 static inline void SET_GetProgramResourceName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLsizei , GLsizei *, GLchar *)) {
   12356    SET_by_offset(disp, _gloffset_GetProgramResourceName, fn);
   12357 }
   12358 
   12359 typedef void (GLAPIENTRYP _glptr_GetProgramResourceiv)(GLuint, GLenum, GLuint, GLsizei , const GLenum *, GLsizei , GLsizei *, GLint *);
   12360 #define CALL_GetProgramResourceiv(disp, parameters) \
   12361     (* GET_GetProgramResourceiv(disp)) parameters
   12362 static inline _glptr_GetProgramResourceiv GET_GetProgramResourceiv(struct _glapi_table *disp) {
   12363    return (_glptr_GetProgramResourceiv) (GET_by_offset(disp, _gloffset_GetProgramResourceiv));
   12364 }
   12365 
   12366 static inline void SET_GetProgramResourceiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLsizei , const GLenum *, GLsizei , GLsizei *, GLint *)) {
   12367    SET_by_offset(disp, _gloffset_GetProgramResourceiv, fn);
   12368 }
   12369 
   12370 typedef void (GLAPIENTRYP _glptr_ShaderStorageBlockBinding)(GLuint, GLuint, GLuint);
   12371 #define CALL_ShaderStorageBlockBinding(disp, parameters) \
   12372     (* GET_ShaderStorageBlockBinding(disp)) parameters
   12373 static inline _glptr_ShaderStorageBlockBinding GET_ShaderStorageBlockBinding(struct _glapi_table *disp) {
   12374    return (_glptr_ShaderStorageBlockBinding) (GET_by_offset(disp, _gloffset_ShaderStorageBlockBinding));
   12375 }
   12376 
   12377 static inline void SET_ShaderStorageBlockBinding(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   12378    SET_by_offset(disp, _gloffset_ShaderStorageBlockBinding, fn);
   12379 }
   12380 
   12381 typedef void (GLAPIENTRYP _glptr_TexBufferRange)(GLenum, GLenum, GLuint, GLintptr, GLsizeiptr);
   12382 #define CALL_TexBufferRange(disp, parameters) \
   12383     (* GET_TexBufferRange(disp)) parameters
   12384 static inline _glptr_TexBufferRange GET_TexBufferRange(struct _glapi_table *disp) {
   12385    return (_glptr_TexBufferRange) (GET_by_offset(disp, _gloffset_TexBufferRange));
   12386 }
   12387 
   12388 static inline void SET_TexBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLintptr, GLsizeiptr)) {
   12389    SET_by_offset(disp, _gloffset_TexBufferRange, fn);
   12390 }
   12391 
   12392 typedef void (GLAPIENTRYP _glptr_TexStorage2DMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLboolean);
   12393 #define CALL_TexStorage2DMultisample(disp, parameters) \
   12394     (* GET_TexStorage2DMultisample(disp)) parameters
   12395 static inline _glptr_TexStorage2DMultisample GET_TexStorage2DMultisample(struct _glapi_table *disp) {
   12396    return (_glptr_TexStorage2DMultisample) (GET_by_offset(disp, _gloffset_TexStorage2DMultisample));
   12397 }
   12398 
   12399 static inline void SET_TexStorage2DMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLboolean)) {
   12400    SET_by_offset(disp, _gloffset_TexStorage2DMultisample, fn);
   12401 }
   12402 
   12403 typedef void (GLAPIENTRYP _glptr_TexStorage3DMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean);
   12404 #define CALL_TexStorage3DMultisample(disp, parameters) \
   12405     (* GET_TexStorage3DMultisample(disp)) parameters
   12406 static inline _glptr_TexStorage3DMultisample GET_TexStorage3DMultisample(struct _glapi_table *disp) {
   12407    return (_glptr_TexStorage3DMultisample) (GET_by_offset(disp, _gloffset_TexStorage3DMultisample));
   12408 }
   12409 
   12410 static inline void SET_TexStorage3DMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean)) {
   12411    SET_by_offset(disp, _gloffset_TexStorage3DMultisample, fn);
   12412 }
   12413 
   12414 typedef void (GLAPIENTRYP _glptr_BufferStorage)(GLenum, GLsizeiptr, const GLvoid *, GLbitfield);
   12415 #define CALL_BufferStorage(disp, parameters) \
   12416     (* GET_BufferStorage(disp)) parameters
   12417 static inline _glptr_BufferStorage GET_BufferStorage(struct _glapi_table *disp) {
   12418    return (_glptr_BufferStorage) (GET_by_offset(disp, _gloffset_BufferStorage));
   12419 }
   12420 
   12421 static inline void SET_BufferStorage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptr, const GLvoid *, GLbitfield)) {
   12422    SET_by_offset(disp, _gloffset_BufferStorage, fn);
   12423 }
   12424 
   12425 typedef void (GLAPIENTRYP _glptr_ClearTexImage)(GLuint, GLint, GLenum, GLenum, const GLvoid *);
   12426 #define CALL_ClearTexImage(disp, parameters) \
   12427     (* GET_ClearTexImage(disp)) parameters
   12428 static inline _glptr_ClearTexImage GET_ClearTexImage(struct _glapi_table *disp) {
   12429    return (_glptr_ClearTexImage) (GET_by_offset(disp, _gloffset_ClearTexImage));
   12430 }
   12431 
   12432 static inline void SET_ClearTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLenum, const GLvoid *)) {
   12433    SET_by_offset(disp, _gloffset_ClearTexImage, fn);
   12434 }
   12435 
   12436 typedef void (GLAPIENTRYP _glptr_ClearTexSubImage)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   12437 #define CALL_ClearTexSubImage(disp, parameters) \
   12438     (* GET_ClearTexSubImage(disp)) parameters
   12439 static inline _glptr_ClearTexSubImage GET_ClearTexSubImage(struct _glapi_table *disp) {
   12440    return (_glptr_ClearTexSubImage) (GET_by_offset(disp, _gloffset_ClearTexSubImage));
   12441 }
   12442 
   12443 static inline void SET_ClearTexSubImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   12444    SET_by_offset(disp, _gloffset_ClearTexSubImage, fn);
   12445 }
   12446 
   12447 typedef void (GLAPIENTRYP _glptr_BindBuffersBase)(GLenum, GLuint, GLsizei, const GLuint *);
   12448 #define CALL_BindBuffersBase(disp, parameters) \
   12449     (* GET_BindBuffersBase(disp)) parameters
   12450 static inline _glptr_BindBuffersBase GET_BindBuffersBase(struct _glapi_table *disp) {
   12451    return (_glptr_BindBuffersBase) (GET_by_offset(disp, _gloffset_BindBuffersBase));
   12452 }
   12453 
   12454 static inline void SET_BindBuffersBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLuint *)) {
   12455    SET_by_offset(disp, _gloffset_BindBuffersBase, fn);
   12456 }
   12457 
   12458 typedef void (GLAPIENTRYP _glptr_BindBuffersRange)(GLenum, GLuint, GLsizei, const GLuint *, const GLintptr *, const GLsizeiptr *);
   12459 #define CALL_BindBuffersRange(disp, parameters) \
   12460     (* GET_BindBuffersRange(disp)) parameters
   12461 static inline _glptr_BindBuffersRange GET_BindBuffersRange(struct _glapi_table *disp) {
   12462    return (_glptr_BindBuffersRange) (GET_by_offset(disp, _gloffset_BindBuffersRange));
   12463 }
   12464 
   12465 static inline void SET_BindBuffersRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLuint *, const GLintptr *, const GLsizeiptr *)) {
   12466    SET_by_offset(disp, _gloffset_BindBuffersRange, fn);
   12467 }
   12468 
   12469 typedef void (GLAPIENTRYP _glptr_BindImageTextures)(GLuint, GLsizei, const GLuint *);
   12470 #define CALL_BindImageTextures(disp, parameters) \
   12471     (* GET_BindImageTextures(disp)) parameters
   12472 static inline _glptr_BindImageTextures GET_BindImageTextures(struct _glapi_table *disp) {
   12473    return (_glptr_BindImageTextures) (GET_by_offset(disp, _gloffset_BindImageTextures));
   12474 }
   12475 
   12476 static inline void SET_BindImageTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLuint *)) {
   12477    SET_by_offset(disp, _gloffset_BindImageTextures, fn);
   12478 }
   12479 
   12480 typedef void (GLAPIENTRYP _glptr_BindSamplers)(GLuint, GLsizei, const GLuint *);
   12481 #define CALL_BindSamplers(disp, parameters) \
   12482     (* GET_BindSamplers(disp)) parameters
   12483 static inline _glptr_BindSamplers GET_BindSamplers(struct _glapi_table *disp) {
   12484    return (_glptr_BindSamplers) (GET_by_offset(disp, _gloffset_BindSamplers));
   12485 }
   12486 
   12487 static inline void SET_BindSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLuint *)) {
   12488    SET_by_offset(disp, _gloffset_BindSamplers, fn);
   12489 }
   12490 
   12491 typedef void (GLAPIENTRYP _glptr_BindTextures)(GLuint, GLsizei, const GLuint *);
   12492 #define CALL_BindTextures(disp, parameters) \
   12493     (* GET_BindTextures(disp)) parameters
   12494 static inline _glptr_BindTextures GET_BindTextures(struct _glapi_table *disp) {
   12495    return (_glptr_BindTextures) (GET_by_offset(disp, _gloffset_BindTextures));
   12496 }
   12497 
   12498 static inline void SET_BindTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLuint *)) {
   12499    SET_by_offset(disp, _gloffset_BindTextures, fn);
   12500 }
   12501 
   12502 typedef void (GLAPIENTRYP _glptr_BindVertexBuffers)(GLuint, GLsizei, const GLuint *, const GLintptr *, const GLsizei *);
   12503 #define CALL_BindVertexBuffers(disp, parameters) \
   12504     (* GET_BindVertexBuffers(disp)) parameters
   12505 static inline _glptr_BindVertexBuffers GET_BindVertexBuffers(struct _glapi_table *disp) {
   12506    return (_glptr_BindVertexBuffers) (GET_by_offset(disp, _gloffset_BindVertexBuffers));
   12507 }
   12508 
   12509 static inline void SET_BindVertexBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLuint *, const GLintptr *, const GLsizei *)) {
   12510    SET_by_offset(disp, _gloffset_BindVertexBuffers, fn);
   12511 }
   12512 
   12513 typedef GLuint64 (GLAPIENTRYP _glptr_GetImageHandleARB)(GLuint, GLint, GLboolean, GLint, GLenum);
   12514 #define CALL_GetImageHandleARB(disp, parameters) \
   12515     (* GET_GetImageHandleARB(disp)) parameters
   12516 static inline _glptr_GetImageHandleARB GET_GetImageHandleARB(struct _glapi_table *disp) {
   12517    return (_glptr_GetImageHandleARB) (GET_by_offset(disp, _gloffset_GetImageHandleARB));
   12518 }
   12519 
   12520 static inline void SET_GetImageHandleARB(struct _glapi_table *disp, GLuint64 (GLAPIENTRYP fn)(GLuint, GLint, GLboolean, GLint, GLenum)) {
   12521    SET_by_offset(disp, _gloffset_GetImageHandleARB, fn);
   12522 }
   12523 
   12524 typedef GLuint64 (GLAPIENTRYP _glptr_GetTextureHandleARB)(GLuint);
   12525 #define CALL_GetTextureHandleARB(disp, parameters) \
   12526     (* GET_GetTextureHandleARB(disp)) parameters
   12527 static inline _glptr_GetTextureHandleARB GET_GetTextureHandleARB(struct _glapi_table *disp) {
   12528    return (_glptr_GetTextureHandleARB) (GET_by_offset(disp, _gloffset_GetTextureHandleARB));
   12529 }
   12530 
   12531 static inline void SET_GetTextureHandleARB(struct _glapi_table *disp, GLuint64 (GLAPIENTRYP fn)(GLuint)) {
   12532    SET_by_offset(disp, _gloffset_GetTextureHandleARB, fn);
   12533 }
   12534 
   12535 typedef GLuint64 (GLAPIENTRYP _glptr_GetTextureSamplerHandleARB)(GLuint, GLuint);
   12536 #define CALL_GetTextureSamplerHandleARB(disp, parameters) \
   12537     (* GET_GetTextureSamplerHandleARB(disp)) parameters
   12538 static inline _glptr_GetTextureSamplerHandleARB GET_GetTextureSamplerHandleARB(struct _glapi_table *disp) {
   12539    return (_glptr_GetTextureSamplerHandleARB) (GET_by_offset(disp, _gloffset_GetTextureSamplerHandleARB));
   12540 }
   12541 
   12542 static inline void SET_GetTextureSamplerHandleARB(struct _glapi_table *disp, GLuint64 (GLAPIENTRYP fn)(GLuint, GLuint)) {
   12543    SET_by_offset(disp, _gloffset_GetTextureSamplerHandleARB, fn);
   12544 }
   12545 
   12546 typedef void (GLAPIENTRYP _glptr_GetVertexAttribLui64vARB)(GLuint, GLenum, GLuint64EXT *);
   12547 #define CALL_GetVertexAttribLui64vARB(disp, parameters) \
   12548     (* GET_GetVertexAttribLui64vARB(disp)) parameters
   12549 static inline _glptr_GetVertexAttribLui64vARB GET_GetVertexAttribLui64vARB(struct _glapi_table *disp) {
   12550    return (_glptr_GetVertexAttribLui64vARB) (GET_by_offset(disp, _gloffset_GetVertexAttribLui64vARB));
   12551 }
   12552 
   12553 static inline void SET_GetVertexAttribLui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint64EXT *)) {
   12554    SET_by_offset(disp, _gloffset_GetVertexAttribLui64vARB, fn);
   12555 }
   12556 
   12557 typedef GLboolean (GLAPIENTRYP _glptr_IsImageHandleResidentARB)(GLuint64);
   12558 #define CALL_IsImageHandleResidentARB(disp, parameters) \
   12559     (* GET_IsImageHandleResidentARB(disp)) parameters
   12560 static inline _glptr_IsImageHandleResidentARB GET_IsImageHandleResidentARB(struct _glapi_table *disp) {
   12561    return (_glptr_IsImageHandleResidentARB) (GET_by_offset(disp, _gloffset_IsImageHandleResidentARB));
   12562 }
   12563 
   12564 static inline void SET_IsImageHandleResidentARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint64)) {
   12565    SET_by_offset(disp, _gloffset_IsImageHandleResidentARB, fn);
   12566 }
   12567 
   12568 typedef GLboolean (GLAPIENTRYP _glptr_IsTextureHandleResidentARB)(GLuint64);
   12569 #define CALL_IsTextureHandleResidentARB(disp, parameters) \
   12570     (* GET_IsTextureHandleResidentARB(disp)) parameters
   12571 static inline _glptr_IsTextureHandleResidentARB GET_IsTextureHandleResidentARB(struct _glapi_table *disp) {
   12572    return (_glptr_IsTextureHandleResidentARB) (GET_by_offset(disp, _gloffset_IsTextureHandleResidentARB));
   12573 }
   12574 
   12575 static inline void SET_IsTextureHandleResidentARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint64)) {
   12576    SET_by_offset(disp, _gloffset_IsTextureHandleResidentARB, fn);
   12577 }
   12578 
   12579 typedef void (GLAPIENTRYP _glptr_MakeImageHandleNonResidentARB)(GLuint64);
   12580 #define CALL_MakeImageHandleNonResidentARB(disp, parameters) \
   12581     (* GET_MakeImageHandleNonResidentARB(disp)) parameters
   12582 static inline _glptr_MakeImageHandleNonResidentARB GET_MakeImageHandleNonResidentARB(struct _glapi_table *disp) {
   12583    return (_glptr_MakeImageHandleNonResidentARB) (GET_by_offset(disp, _gloffset_MakeImageHandleNonResidentARB));
   12584 }
   12585 
   12586 static inline void SET_MakeImageHandleNonResidentARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint64)) {
   12587    SET_by_offset(disp, _gloffset_MakeImageHandleNonResidentARB, fn);
   12588 }
   12589 
   12590 typedef void (GLAPIENTRYP _glptr_MakeImageHandleResidentARB)(GLuint64, GLenum);
   12591 #define CALL_MakeImageHandleResidentARB(disp, parameters) \
   12592     (* GET_MakeImageHandleResidentARB(disp)) parameters
   12593 static inline _glptr_MakeImageHandleResidentARB GET_MakeImageHandleResidentARB(struct _glapi_table *disp) {
   12594    return (_glptr_MakeImageHandleResidentARB) (GET_by_offset(disp, _gloffset_MakeImageHandleResidentARB));
   12595 }
   12596 
   12597 static inline void SET_MakeImageHandleResidentARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint64, GLenum)) {
   12598    SET_by_offset(disp, _gloffset_MakeImageHandleResidentARB, fn);
   12599 }
   12600 
   12601 typedef void (GLAPIENTRYP _glptr_MakeTextureHandleNonResidentARB)(GLuint64);
   12602 #define CALL_MakeTextureHandleNonResidentARB(disp, parameters) \
   12603     (* GET_MakeTextureHandleNonResidentARB(disp)) parameters
   12604 static inline _glptr_MakeTextureHandleNonResidentARB GET_MakeTextureHandleNonResidentARB(struct _glapi_table *disp) {
   12605    return (_glptr_MakeTextureHandleNonResidentARB) (GET_by_offset(disp, _gloffset_MakeTextureHandleNonResidentARB));
   12606 }
   12607 
   12608 static inline void SET_MakeTextureHandleNonResidentARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint64)) {
   12609    SET_by_offset(disp, _gloffset_MakeTextureHandleNonResidentARB, fn);
   12610 }
   12611 
   12612 typedef void (GLAPIENTRYP _glptr_MakeTextureHandleResidentARB)(GLuint64);
   12613 #define CALL_MakeTextureHandleResidentARB(disp, parameters) \
   12614     (* GET_MakeTextureHandleResidentARB(disp)) parameters
   12615 static inline _glptr_MakeTextureHandleResidentARB GET_MakeTextureHandleResidentARB(struct _glapi_table *disp) {
   12616    return (_glptr_MakeTextureHandleResidentARB) (GET_by_offset(disp, _gloffset_MakeTextureHandleResidentARB));
   12617 }
   12618 
   12619 static inline void SET_MakeTextureHandleResidentARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint64)) {
   12620    SET_by_offset(disp, _gloffset_MakeTextureHandleResidentARB, fn);
   12621 }
   12622 
   12623 typedef void (GLAPIENTRYP _glptr_ProgramUniformHandleui64ARB)(GLuint, GLint, GLuint64);
   12624 #define CALL_ProgramUniformHandleui64ARB(disp, parameters) \
   12625     (* GET_ProgramUniformHandleui64ARB(disp)) parameters
   12626 static inline _glptr_ProgramUniformHandleui64ARB GET_ProgramUniformHandleui64ARB(struct _glapi_table *disp) {
   12627    return (_glptr_ProgramUniformHandleui64ARB) (GET_by_offset(disp, _gloffset_ProgramUniformHandleui64ARB));
   12628 }
   12629 
   12630 static inline void SET_ProgramUniformHandleui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint64)) {
   12631    SET_by_offset(disp, _gloffset_ProgramUniformHandleui64ARB, fn);
   12632 }
   12633 
   12634 typedef void (GLAPIENTRYP _glptr_ProgramUniformHandleui64vARB)(GLuint, GLint, GLsizei, const GLuint64 *);
   12635 #define CALL_ProgramUniformHandleui64vARB(disp, parameters) \
   12636     (* GET_ProgramUniformHandleui64vARB(disp)) parameters
   12637 static inline _glptr_ProgramUniformHandleui64vARB GET_ProgramUniformHandleui64vARB(struct _glapi_table *disp) {
   12638    return (_glptr_ProgramUniformHandleui64vARB) (GET_by_offset(disp, _gloffset_ProgramUniformHandleui64vARB));
   12639 }
   12640 
   12641 static inline void SET_ProgramUniformHandleui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint64 *)) {
   12642    SET_by_offset(disp, _gloffset_ProgramUniformHandleui64vARB, fn);
   12643 }
   12644 
   12645 typedef void (GLAPIENTRYP _glptr_UniformHandleui64ARB)(GLint, GLuint64);
   12646 #define CALL_UniformHandleui64ARB(disp, parameters) \
   12647     (* GET_UniformHandleui64ARB(disp)) parameters
   12648 static inline _glptr_UniformHandleui64ARB GET_UniformHandleui64ARB(struct _glapi_table *disp) {
   12649    return (_glptr_UniformHandleui64ARB) (GET_by_offset(disp, _gloffset_UniformHandleui64ARB));
   12650 }
   12651 
   12652 static inline void SET_UniformHandleui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint64)) {
   12653    SET_by_offset(disp, _gloffset_UniformHandleui64ARB, fn);
   12654 }
   12655 
   12656 typedef void (GLAPIENTRYP _glptr_UniformHandleui64vARB)(GLint, GLsizei, const GLuint64 *);
   12657 #define CALL_UniformHandleui64vARB(disp, parameters) \
   12658     (* GET_UniformHandleui64vARB(disp)) parameters
   12659 static inline _glptr_UniformHandleui64vARB GET_UniformHandleui64vARB(struct _glapi_table *disp) {
   12660    return (_glptr_UniformHandleui64vARB) (GET_by_offset(disp, _gloffset_UniformHandleui64vARB));
   12661 }
   12662 
   12663 static inline void SET_UniformHandleui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint64 *)) {
   12664    SET_by_offset(disp, _gloffset_UniformHandleui64vARB, fn);
   12665 }
   12666 
   12667 typedef void (GLAPIENTRYP _glptr_VertexAttribL1ui64ARB)(GLuint, GLuint64EXT);
   12668 #define CALL_VertexAttribL1ui64ARB(disp, parameters) \
   12669     (* GET_VertexAttribL1ui64ARB(disp)) parameters
   12670 static inline _glptr_VertexAttribL1ui64ARB GET_VertexAttribL1ui64ARB(struct _glapi_table *disp) {
   12671    return (_glptr_VertexAttribL1ui64ARB) (GET_by_offset(disp, _gloffset_VertexAttribL1ui64ARB));
   12672 }
   12673 
   12674 static inline void SET_VertexAttribL1ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint64EXT)) {
   12675    SET_by_offset(disp, _gloffset_VertexAttribL1ui64ARB, fn);
   12676 }
   12677 
   12678 typedef void (GLAPIENTRYP _glptr_VertexAttribL1ui64vARB)(GLuint, const GLuint64EXT *);
   12679 #define CALL_VertexAttribL1ui64vARB(disp, parameters) \
   12680     (* GET_VertexAttribL1ui64vARB(disp)) parameters
   12681 static inline _glptr_VertexAttribL1ui64vARB GET_VertexAttribL1ui64vARB(struct _glapi_table *disp) {
   12682    return (_glptr_VertexAttribL1ui64vARB) (GET_by_offset(disp, _gloffset_VertexAttribL1ui64vARB));
   12683 }
   12684 
   12685 static inline void SET_VertexAttribL1ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint64EXT *)) {
   12686    SET_by_offset(disp, _gloffset_VertexAttribL1ui64vARB, fn);
   12687 }
   12688 
   12689 typedef void (GLAPIENTRYP _glptr_DispatchComputeGroupSizeARB)(GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
   12690 #define CALL_DispatchComputeGroupSizeARB(disp, parameters) \
   12691     (* GET_DispatchComputeGroupSizeARB(disp)) parameters
   12692 static inline _glptr_DispatchComputeGroupSizeARB GET_DispatchComputeGroupSizeARB(struct _glapi_table *disp) {
   12693    return (_glptr_DispatchComputeGroupSizeARB) (GET_by_offset(disp, _gloffset_DispatchComputeGroupSizeARB));
   12694 }
   12695 
   12696 static inline void SET_DispatchComputeGroupSizeARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   12697    SET_by_offset(disp, _gloffset_DispatchComputeGroupSizeARB, fn);
   12698 }
   12699 
   12700 typedef void (GLAPIENTRYP _glptr_MultiDrawArraysIndirectCountARB)(GLenum, GLintptr, GLintptr, GLsizei, GLsizei);
   12701 #define CALL_MultiDrawArraysIndirectCountARB(disp, parameters) \
   12702     (* GET_MultiDrawArraysIndirectCountARB(disp)) parameters
   12703 static inline _glptr_MultiDrawArraysIndirectCountARB GET_MultiDrawArraysIndirectCountARB(struct _glapi_table *disp) {
   12704    return (_glptr_MultiDrawArraysIndirectCountARB) (GET_by_offset(disp, _gloffset_MultiDrawArraysIndirectCountARB));
   12705 }
   12706 
   12707 static inline void SET_MultiDrawArraysIndirectCountARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLintptr, GLsizei, GLsizei)) {
   12708    SET_by_offset(disp, _gloffset_MultiDrawArraysIndirectCountARB, fn);
   12709 }
   12710 
   12711 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsIndirectCountARB)(GLenum, GLenum, GLintptr, GLintptr, GLsizei, GLsizei);
   12712 #define CALL_MultiDrawElementsIndirectCountARB(disp, parameters) \
   12713     (* GET_MultiDrawElementsIndirectCountARB(disp)) parameters
   12714 static inline _glptr_MultiDrawElementsIndirectCountARB GET_MultiDrawElementsIndirectCountARB(struct _glapi_table *disp) {
   12715    return (_glptr_MultiDrawElementsIndirectCountARB) (GET_by_offset(disp, _gloffset_MultiDrawElementsIndirectCountARB));
   12716 }
   12717 
   12718 static inline void SET_MultiDrawElementsIndirectCountARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLintptr, GLintptr, GLsizei, GLsizei)) {
   12719    SET_by_offset(disp, _gloffset_MultiDrawElementsIndirectCountARB, fn);
   12720 }
   12721 
   12722 typedef void (GLAPIENTRYP _glptr_ClipControl)(GLenum, GLenum);
   12723 #define CALL_ClipControl(disp, parameters) \
   12724     (* GET_ClipControl(disp)) parameters
   12725 static inline _glptr_ClipControl GET_ClipControl(struct _glapi_table *disp) {
   12726    return (_glptr_ClipControl) (GET_by_offset(disp, _gloffset_ClipControl));
   12727 }
   12728 
   12729 static inline void SET_ClipControl(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
   12730    SET_by_offset(disp, _gloffset_ClipControl, fn);
   12731 }
   12732 
   12733 typedef void (GLAPIENTRYP _glptr_BindTextureUnit)(GLuint, GLuint);
   12734 #define CALL_BindTextureUnit(disp, parameters) \
   12735     (* GET_BindTextureUnit(disp)) parameters
   12736 static inline _glptr_BindTextureUnit GET_BindTextureUnit(struct _glapi_table *disp) {
   12737    return (_glptr_BindTextureUnit) (GET_by_offset(disp, _gloffset_BindTextureUnit));
   12738 }
   12739 
   12740 static inline void SET_BindTextureUnit(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   12741    SET_by_offset(disp, _gloffset_BindTextureUnit, fn);
   12742 }
   12743 
   12744 typedef void (GLAPIENTRYP _glptr_BlitNamedFramebuffer)(GLuint, GLuint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum);
   12745 #define CALL_BlitNamedFramebuffer(disp, parameters) \
   12746     (* GET_BlitNamedFramebuffer(disp)) parameters
   12747 static inline _glptr_BlitNamedFramebuffer GET_BlitNamedFramebuffer(struct _glapi_table *disp) {
   12748    return (_glptr_BlitNamedFramebuffer) (GET_by_offset(disp, _gloffset_BlitNamedFramebuffer));
   12749 }
   12750 
   12751 static inline void SET_BlitNamedFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum)) {
   12752    SET_by_offset(disp, _gloffset_BlitNamedFramebuffer, fn);
   12753 }
   12754 
   12755 typedef GLenum (GLAPIENTRYP _glptr_CheckNamedFramebufferStatus)(GLuint, GLenum);
   12756 #define CALL_CheckNamedFramebufferStatus(disp, parameters) \
   12757     (* GET_CheckNamedFramebufferStatus(disp)) parameters
   12758 static inline _glptr_CheckNamedFramebufferStatus GET_CheckNamedFramebufferStatus(struct _glapi_table *disp) {
   12759    return (_glptr_CheckNamedFramebufferStatus) (GET_by_offset(disp, _gloffset_CheckNamedFramebufferStatus));
   12760 }
   12761 
   12762 static inline void SET_CheckNamedFramebufferStatus(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLuint, GLenum)) {
   12763    SET_by_offset(disp, _gloffset_CheckNamedFramebufferStatus, fn);
   12764 }
   12765 
   12766 typedef void (GLAPIENTRYP _glptr_ClearNamedBufferData)(GLuint, GLenum, GLenum, GLenum, const GLvoid *);
   12767 #define CALL_ClearNamedBufferData(disp, parameters) \
   12768     (* GET_ClearNamedBufferData(disp)) parameters
   12769 static inline _glptr_ClearNamedBufferData GET_ClearNamedBufferData(struct _glapi_table *disp) {
   12770    return (_glptr_ClearNamedBufferData) (GET_by_offset(disp, _gloffset_ClearNamedBufferData));
   12771 }
   12772 
   12773 static inline void SET_ClearNamedBufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLenum, const GLvoid *)) {
   12774    SET_by_offset(disp, _gloffset_ClearNamedBufferData, fn);
   12775 }
   12776 
   12777 typedef void (GLAPIENTRYP _glptr_ClearNamedBufferSubData)(GLuint, GLenum, GLintptr, GLsizeiptr, GLenum, GLenum, const GLvoid *);
   12778 #define CALL_ClearNamedBufferSubData(disp, parameters) \
   12779     (* GET_ClearNamedBufferSubData(disp)) parameters
   12780 static inline _glptr_ClearNamedBufferSubData GET_ClearNamedBufferSubData(struct _glapi_table *disp) {
   12781    return (_glptr_ClearNamedBufferSubData) (GET_by_offset(disp, _gloffset_ClearNamedBufferSubData));
   12782 }
   12783 
   12784 static inline void SET_ClearNamedBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLintptr, GLsizeiptr, GLenum, GLenum, const GLvoid *)) {
   12785    SET_by_offset(disp, _gloffset_ClearNamedBufferSubData, fn);
   12786 }
   12787 
   12788 typedef void (GLAPIENTRYP _glptr_ClearNamedFramebufferfi)(GLuint, GLenum, GLint, GLfloat, GLint);
   12789 #define CALL_ClearNamedFramebufferfi(disp, parameters) \
   12790     (* GET_ClearNamedFramebufferfi(disp)) parameters
   12791 static inline _glptr_ClearNamedFramebufferfi GET_ClearNamedFramebufferfi(struct _glapi_table *disp) {
   12792    return (_glptr_ClearNamedFramebufferfi) (GET_by_offset(disp, _gloffset_ClearNamedFramebufferfi));
   12793 }
   12794 
   12795 static inline void SET_ClearNamedFramebufferfi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint, GLfloat, GLint)) {
   12796    SET_by_offset(disp, _gloffset_ClearNamedFramebufferfi, fn);
   12797 }
   12798 
   12799 typedef void (GLAPIENTRYP _glptr_ClearNamedFramebufferfv)(GLuint, GLenum, GLint, const GLfloat *);
   12800 #define CALL_ClearNamedFramebufferfv(disp, parameters) \
   12801     (* GET_ClearNamedFramebufferfv(disp)) parameters
   12802 static inline _glptr_ClearNamedFramebufferfv GET_ClearNamedFramebufferfv(struct _glapi_table *disp) {
   12803    return (_glptr_ClearNamedFramebufferfv) (GET_by_offset(disp, _gloffset_ClearNamedFramebufferfv));
   12804 }
   12805 
   12806 static inline void SET_ClearNamedFramebufferfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint, const GLfloat *)) {
   12807    SET_by_offset(disp, _gloffset_ClearNamedFramebufferfv, fn);
   12808 }
   12809 
   12810 typedef void (GLAPIENTRYP _glptr_ClearNamedFramebufferiv)(GLuint, GLenum, GLint, const GLint *);
   12811 #define CALL_ClearNamedFramebufferiv(disp, parameters) \
   12812     (* GET_ClearNamedFramebufferiv(disp)) parameters
   12813 static inline _glptr_ClearNamedFramebufferiv GET_ClearNamedFramebufferiv(struct _glapi_table *disp) {
   12814    return (_glptr_ClearNamedFramebufferiv) (GET_by_offset(disp, _gloffset_ClearNamedFramebufferiv));
   12815 }
   12816 
   12817 static inline void SET_ClearNamedFramebufferiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint, const GLint *)) {
   12818    SET_by_offset(disp, _gloffset_ClearNamedFramebufferiv, fn);
   12819 }
   12820 
   12821 typedef void (GLAPIENTRYP _glptr_ClearNamedFramebufferuiv)(GLuint, GLenum, GLint, const GLuint *);
   12822 #define CALL_ClearNamedFramebufferuiv(disp, parameters) \
   12823     (* GET_ClearNamedFramebufferuiv(disp)) parameters
   12824 static inline _glptr_ClearNamedFramebufferuiv GET_ClearNamedFramebufferuiv(struct _glapi_table *disp) {
   12825    return (_glptr_ClearNamedFramebufferuiv) (GET_by_offset(disp, _gloffset_ClearNamedFramebufferuiv));
   12826 }
   12827 
   12828 static inline void SET_ClearNamedFramebufferuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint, const GLuint *)) {
   12829    SET_by_offset(disp, _gloffset_ClearNamedFramebufferuiv, fn);
   12830 }
   12831 
   12832 typedef void (GLAPIENTRYP _glptr_CompressedTextureSubImage1D)(GLuint, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
   12833 #define CALL_CompressedTextureSubImage1D(disp, parameters) \
   12834     (* GET_CompressedTextureSubImage1D(disp)) parameters
   12835 static inline _glptr_CompressedTextureSubImage1D GET_CompressedTextureSubImage1D(struct _glapi_table *disp) {
   12836    return (_glptr_CompressedTextureSubImage1D) (GET_by_offset(disp, _gloffset_CompressedTextureSubImage1D));
   12837 }
   12838 
   12839 static inline void SET_CompressedTextureSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *)) {
   12840    SET_by_offset(disp, _gloffset_CompressedTextureSubImage1D, fn);
   12841 }
   12842 
   12843 typedef void (GLAPIENTRYP _glptr_CompressedTextureSubImage2D)(GLuint, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
   12844 #define CALL_CompressedTextureSubImage2D(disp, parameters) \
   12845     (* GET_CompressedTextureSubImage2D(disp)) parameters
   12846 static inline _glptr_CompressedTextureSubImage2D GET_CompressedTextureSubImage2D(struct _glapi_table *disp) {
   12847    return (_glptr_CompressedTextureSubImage2D) (GET_by_offset(disp, _gloffset_CompressedTextureSubImage2D));
   12848 }
   12849 
   12850 static inline void SET_CompressedTextureSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
   12851    SET_by_offset(disp, _gloffset_CompressedTextureSubImage2D, fn);
   12852 }
   12853 
   12854 typedef void (GLAPIENTRYP _glptr_CompressedTextureSubImage3D)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
   12855 #define CALL_CompressedTextureSubImage3D(disp, parameters) \
   12856     (* GET_CompressedTextureSubImage3D(disp)) parameters
   12857 static inline _glptr_CompressedTextureSubImage3D GET_CompressedTextureSubImage3D(struct _glapi_table *disp) {
   12858    return (_glptr_CompressedTextureSubImage3D) (GET_by_offset(disp, _gloffset_CompressedTextureSubImage3D));
   12859 }
   12860 
   12861 static inline void SET_CompressedTextureSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) {
   12862    SET_by_offset(disp, _gloffset_CompressedTextureSubImage3D, fn);
   12863 }
   12864 
   12865 typedef void (GLAPIENTRYP _glptr_CopyNamedBufferSubData)(GLuint, GLuint, GLintptr, GLintptr, GLsizeiptr);
   12866 #define CALL_CopyNamedBufferSubData(disp, parameters) \
   12867     (* GET_CopyNamedBufferSubData(disp)) parameters
   12868 static inline _glptr_CopyNamedBufferSubData GET_CopyNamedBufferSubData(struct _glapi_table *disp) {
   12869    return (_glptr_CopyNamedBufferSubData) (GET_by_offset(disp, _gloffset_CopyNamedBufferSubData));
   12870 }
   12871 
   12872 static inline void SET_CopyNamedBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLintptr, GLintptr, GLsizeiptr)) {
   12873    SET_by_offset(disp, _gloffset_CopyNamedBufferSubData, fn);
   12874 }
   12875 
   12876 typedef void (GLAPIENTRYP _glptr_CopyTextureSubImage1D)(GLuint, GLint, GLint, GLint, GLint, GLsizei);
   12877 #define CALL_CopyTextureSubImage1D(disp, parameters) \
   12878     (* GET_CopyTextureSubImage1D(disp)) parameters
   12879 static inline _glptr_CopyTextureSubImage1D GET_CopyTextureSubImage1D(struct _glapi_table *disp) {
   12880    return (_glptr_CopyTextureSubImage1D) (GET_by_offset(disp, _gloffset_CopyTextureSubImage1D));
   12881 }
   12882 
   12883 static inline void SET_CopyTextureSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei)) {
   12884    SET_by_offset(disp, _gloffset_CopyTextureSubImage1D, fn);
   12885 }
   12886 
   12887 typedef void (GLAPIENTRYP _glptr_CopyTextureSubImage2D)(GLuint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
   12888 #define CALL_CopyTextureSubImage2D(disp, parameters) \
   12889     (* GET_CopyTextureSubImage2D(disp)) parameters
   12890 static inline _glptr_CopyTextureSubImage2D GET_CopyTextureSubImage2D(struct _glapi_table *disp) {
   12891    return (_glptr_CopyTextureSubImage2D) (GET_by_offset(disp, _gloffset_CopyTextureSubImage2D));
   12892 }
   12893 
   12894 static inline void SET_CopyTextureSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
   12895    SET_by_offset(disp, _gloffset_CopyTextureSubImage2D, fn);
   12896 }
   12897 
   12898 typedef void (GLAPIENTRYP _glptr_CopyTextureSubImage3D)(GLuint, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
   12899 #define CALL_CopyTextureSubImage3D(disp, parameters) \
   12900     (* GET_CopyTextureSubImage3D(disp)) parameters
   12901 static inline _glptr_CopyTextureSubImage3D GET_CopyTextureSubImage3D(struct _glapi_table *disp) {
   12902    return (_glptr_CopyTextureSubImage3D) (GET_by_offset(disp, _gloffset_CopyTextureSubImage3D));
   12903 }
   12904 
   12905 static inline void SET_CopyTextureSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
   12906    SET_by_offset(disp, _gloffset_CopyTextureSubImage3D, fn);
   12907 }
   12908 
   12909 typedef void (GLAPIENTRYP _glptr_CreateBuffers)(GLsizei, GLuint *);
   12910 #define CALL_CreateBuffers(disp, parameters) \
   12911     (* GET_CreateBuffers(disp)) parameters
   12912 static inline _glptr_CreateBuffers GET_CreateBuffers(struct _glapi_table *disp) {
   12913    return (_glptr_CreateBuffers) (GET_by_offset(disp, _gloffset_CreateBuffers));
   12914 }
   12915 
   12916 static inline void SET_CreateBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   12917    SET_by_offset(disp, _gloffset_CreateBuffers, fn);
   12918 }
   12919 
   12920 typedef void (GLAPIENTRYP _glptr_CreateFramebuffers)(GLsizei, GLuint *);
   12921 #define CALL_CreateFramebuffers(disp, parameters) \
   12922     (* GET_CreateFramebuffers(disp)) parameters
   12923 static inline _glptr_CreateFramebuffers GET_CreateFramebuffers(struct _glapi_table *disp) {
   12924    return (_glptr_CreateFramebuffers) (GET_by_offset(disp, _gloffset_CreateFramebuffers));
   12925 }
   12926 
   12927 static inline void SET_CreateFramebuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   12928    SET_by_offset(disp, _gloffset_CreateFramebuffers, fn);
   12929 }
   12930 
   12931 typedef void (GLAPIENTRYP _glptr_CreateProgramPipelines)(GLsizei, GLuint *);
   12932 #define CALL_CreateProgramPipelines(disp, parameters) \
   12933     (* GET_CreateProgramPipelines(disp)) parameters
   12934 static inline _glptr_CreateProgramPipelines GET_CreateProgramPipelines(struct _glapi_table *disp) {
   12935    return (_glptr_CreateProgramPipelines) (GET_by_offset(disp, _gloffset_CreateProgramPipelines));
   12936 }
   12937 
   12938 static inline void SET_CreateProgramPipelines(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   12939    SET_by_offset(disp, _gloffset_CreateProgramPipelines, fn);
   12940 }
   12941 
   12942 typedef void (GLAPIENTRYP _glptr_CreateQueries)(GLenum, GLsizei, GLuint *);
   12943 #define CALL_CreateQueries(disp, parameters) \
   12944     (* GET_CreateQueries(disp)) parameters
   12945 static inline _glptr_CreateQueries GET_CreateQueries(struct _glapi_table *disp) {
   12946    return (_glptr_CreateQueries) (GET_by_offset(disp, _gloffset_CreateQueries));
   12947 }
   12948 
   12949 static inline void SET_CreateQueries(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLuint *)) {
   12950    SET_by_offset(disp, _gloffset_CreateQueries, fn);
   12951 }
   12952 
   12953 typedef void (GLAPIENTRYP _glptr_CreateRenderbuffers)(GLsizei, GLuint *);
   12954 #define CALL_CreateRenderbuffers(disp, parameters) \
   12955     (* GET_CreateRenderbuffers(disp)) parameters
   12956 static inline _glptr_CreateRenderbuffers GET_CreateRenderbuffers(struct _glapi_table *disp) {
   12957    return (_glptr_CreateRenderbuffers) (GET_by_offset(disp, _gloffset_CreateRenderbuffers));
   12958 }
   12959 
   12960 static inline void SET_CreateRenderbuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   12961    SET_by_offset(disp, _gloffset_CreateRenderbuffers, fn);
   12962 }
   12963 
   12964 typedef void (GLAPIENTRYP _glptr_CreateSamplers)(GLsizei, GLuint *);
   12965 #define CALL_CreateSamplers(disp, parameters) \
   12966     (* GET_CreateSamplers(disp)) parameters
   12967 static inline _glptr_CreateSamplers GET_CreateSamplers(struct _glapi_table *disp) {
   12968    return (_glptr_CreateSamplers) (GET_by_offset(disp, _gloffset_CreateSamplers));
   12969 }
   12970 
   12971 static inline void SET_CreateSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   12972    SET_by_offset(disp, _gloffset_CreateSamplers, fn);
   12973 }
   12974 
   12975 typedef void (GLAPIENTRYP _glptr_CreateTextures)(GLenum, GLsizei, GLuint *);
   12976 #define CALL_CreateTextures(disp, parameters) \
   12977     (* GET_CreateTextures(disp)) parameters
   12978 static inline _glptr_CreateTextures GET_CreateTextures(struct _glapi_table *disp) {
   12979    return (_glptr_CreateTextures) (GET_by_offset(disp, _gloffset_CreateTextures));
   12980 }
   12981 
   12982 static inline void SET_CreateTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLuint *)) {
   12983    SET_by_offset(disp, _gloffset_CreateTextures, fn);
   12984 }
   12985 
   12986 typedef void (GLAPIENTRYP _glptr_CreateTransformFeedbacks)(GLsizei, GLuint *);
   12987 #define CALL_CreateTransformFeedbacks(disp, parameters) \
   12988     (* GET_CreateTransformFeedbacks(disp)) parameters
   12989 static inline _glptr_CreateTransformFeedbacks GET_CreateTransformFeedbacks(struct _glapi_table *disp) {
   12990    return (_glptr_CreateTransformFeedbacks) (GET_by_offset(disp, _gloffset_CreateTransformFeedbacks));
   12991 }
   12992 
   12993 static inline void SET_CreateTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   12994    SET_by_offset(disp, _gloffset_CreateTransformFeedbacks, fn);
   12995 }
   12996 
   12997 typedef void (GLAPIENTRYP _glptr_CreateVertexArrays)(GLsizei, GLuint *);
   12998 #define CALL_CreateVertexArrays(disp, parameters) \
   12999     (* GET_CreateVertexArrays(disp)) parameters
   13000 static inline _glptr_CreateVertexArrays GET_CreateVertexArrays(struct _glapi_table *disp) {
   13001    return (_glptr_CreateVertexArrays) (GET_by_offset(disp, _gloffset_CreateVertexArrays));
   13002 }
   13003 
   13004 static inline void SET_CreateVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   13005    SET_by_offset(disp, _gloffset_CreateVertexArrays, fn);
   13006 }
   13007 
   13008 typedef void (GLAPIENTRYP _glptr_DisableVertexArrayAttrib)(GLuint, GLuint);
   13009 #define CALL_DisableVertexArrayAttrib(disp, parameters) \
   13010     (* GET_DisableVertexArrayAttrib(disp)) parameters
   13011 static inline _glptr_DisableVertexArrayAttrib GET_DisableVertexArrayAttrib(struct _glapi_table *disp) {
   13012    return (_glptr_DisableVertexArrayAttrib) (GET_by_offset(disp, _gloffset_DisableVertexArrayAttrib));
   13013 }
   13014 
   13015 static inline void SET_DisableVertexArrayAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   13016    SET_by_offset(disp, _gloffset_DisableVertexArrayAttrib, fn);
   13017 }
   13018 
   13019 typedef void (GLAPIENTRYP _glptr_EnableVertexArrayAttrib)(GLuint, GLuint);
   13020 #define CALL_EnableVertexArrayAttrib(disp, parameters) \
   13021     (* GET_EnableVertexArrayAttrib(disp)) parameters
   13022 static inline _glptr_EnableVertexArrayAttrib GET_EnableVertexArrayAttrib(struct _glapi_table *disp) {
   13023    return (_glptr_EnableVertexArrayAttrib) (GET_by_offset(disp, _gloffset_EnableVertexArrayAttrib));
   13024 }
   13025 
   13026 static inline void SET_EnableVertexArrayAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   13027    SET_by_offset(disp, _gloffset_EnableVertexArrayAttrib, fn);
   13028 }
   13029 
   13030 typedef void (GLAPIENTRYP _glptr_FlushMappedNamedBufferRange)(GLuint, GLintptr, GLsizeiptr);
   13031 #define CALL_FlushMappedNamedBufferRange(disp, parameters) \
   13032     (* GET_FlushMappedNamedBufferRange(disp)) parameters
   13033 static inline _glptr_FlushMappedNamedBufferRange GET_FlushMappedNamedBufferRange(struct _glapi_table *disp) {
   13034    return (_glptr_FlushMappedNamedBufferRange) (GET_by_offset(disp, _gloffset_FlushMappedNamedBufferRange));
   13035 }
   13036 
   13037 static inline void SET_FlushMappedNamedBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr)) {
   13038    SET_by_offset(disp, _gloffset_FlushMappedNamedBufferRange, fn);
   13039 }
   13040 
   13041 typedef void (GLAPIENTRYP _glptr_GenerateTextureMipmap)(GLuint);
   13042 #define CALL_GenerateTextureMipmap(disp, parameters) \
   13043     (* GET_GenerateTextureMipmap(disp)) parameters
   13044 static inline _glptr_GenerateTextureMipmap GET_GenerateTextureMipmap(struct _glapi_table *disp) {
   13045    return (_glptr_GenerateTextureMipmap) (GET_by_offset(disp, _gloffset_GenerateTextureMipmap));
   13046 }
   13047 
   13048 static inline void SET_GenerateTextureMipmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   13049    SET_by_offset(disp, _gloffset_GenerateTextureMipmap, fn);
   13050 }
   13051 
   13052 typedef void (GLAPIENTRYP _glptr_GetCompressedTextureImage)(GLuint, GLint, GLsizei, GLvoid *);
   13053 #define CALL_GetCompressedTextureImage(disp, parameters) \
   13054     (* GET_GetCompressedTextureImage(disp)) parameters
   13055 static inline _glptr_GetCompressedTextureImage GET_GetCompressedTextureImage(struct _glapi_table *disp) {
   13056    return (_glptr_GetCompressedTextureImage) (GET_by_offset(disp, _gloffset_GetCompressedTextureImage));
   13057 }
   13058 
   13059 static inline void SET_GetCompressedTextureImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLvoid *)) {
   13060    SET_by_offset(disp, _gloffset_GetCompressedTextureImage, fn);
   13061 }
   13062 
   13063 typedef void (GLAPIENTRYP _glptr_GetNamedBufferParameteri64v)(GLuint, GLenum, GLint64 *);
   13064 #define CALL_GetNamedBufferParameteri64v(disp, parameters) \
   13065     (* GET_GetNamedBufferParameteri64v(disp)) parameters
   13066 static inline _glptr_GetNamedBufferParameteri64v GET_GetNamedBufferParameteri64v(struct _glapi_table *disp) {
   13067    return (_glptr_GetNamedBufferParameteri64v) (GET_by_offset(disp, _gloffset_GetNamedBufferParameteri64v));
   13068 }
   13069 
   13070 static inline void SET_GetNamedBufferParameteri64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint64 *)) {
   13071    SET_by_offset(disp, _gloffset_GetNamedBufferParameteri64v, fn);
   13072 }
   13073 
   13074 typedef void (GLAPIENTRYP _glptr_GetNamedBufferParameteriv)(GLuint, GLenum, GLint *);
   13075 #define CALL_GetNamedBufferParameteriv(disp, parameters) \
   13076     (* GET_GetNamedBufferParameteriv(disp)) parameters
   13077 static inline _glptr_GetNamedBufferParameteriv GET_GetNamedBufferParameteriv(struct _glapi_table *disp) {
   13078    return (_glptr_GetNamedBufferParameteriv) (GET_by_offset(disp, _gloffset_GetNamedBufferParameteriv));
   13079 }
   13080 
   13081 static inline void SET_GetNamedBufferParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13082    SET_by_offset(disp, _gloffset_GetNamedBufferParameteriv, fn);
   13083 }
   13084 
   13085 typedef void (GLAPIENTRYP _glptr_GetNamedBufferPointerv)(GLuint, GLenum, GLvoid **);
   13086 #define CALL_GetNamedBufferPointerv(disp, parameters) \
   13087     (* GET_GetNamedBufferPointerv(disp)) parameters
   13088 static inline _glptr_GetNamedBufferPointerv GET_GetNamedBufferPointerv(struct _glapi_table *disp) {
   13089    return (_glptr_GetNamedBufferPointerv) (GET_by_offset(disp, _gloffset_GetNamedBufferPointerv));
   13090 }
   13091 
   13092 static inline void SET_GetNamedBufferPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLvoid **)) {
   13093    SET_by_offset(disp, _gloffset_GetNamedBufferPointerv, fn);
   13094 }
   13095 
   13096 typedef void (GLAPIENTRYP _glptr_GetNamedBufferSubData)(GLuint, GLintptr, GLsizeiptr, GLvoid *);
   13097 #define CALL_GetNamedBufferSubData(disp, parameters) \
   13098     (* GET_GetNamedBufferSubData(disp)) parameters
   13099 static inline _glptr_GetNamedBufferSubData GET_GetNamedBufferSubData(struct _glapi_table *disp) {
   13100    return (_glptr_GetNamedBufferSubData) (GET_by_offset(disp, _gloffset_GetNamedBufferSubData));
   13101 }
   13102 
   13103 static inline void SET_GetNamedBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr, GLvoid *)) {
   13104    SET_by_offset(disp, _gloffset_GetNamedBufferSubData, fn);
   13105 }
   13106 
   13107 typedef void (GLAPIENTRYP _glptr_GetNamedFramebufferAttachmentParameteriv)(GLuint, GLenum, GLenum, GLint *);
   13108 #define CALL_GetNamedFramebufferAttachmentParameteriv(disp, parameters) \
   13109     (* GET_GetNamedFramebufferAttachmentParameteriv(disp)) parameters
   13110 static inline _glptr_GetNamedFramebufferAttachmentParameteriv GET_GetNamedFramebufferAttachmentParameteriv(struct _glapi_table *disp) {
   13111    return (_glptr_GetNamedFramebufferAttachmentParameteriv) (GET_by_offset(disp, _gloffset_GetNamedFramebufferAttachmentParameteriv));
   13112 }
   13113 
   13114 static inline void SET_GetNamedFramebufferAttachmentParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLint *)) {
   13115    SET_by_offset(disp, _gloffset_GetNamedFramebufferAttachmentParameteriv, fn);
   13116 }
   13117 
   13118 typedef void (GLAPIENTRYP _glptr_GetNamedFramebufferParameteriv)(GLuint, GLenum, GLint *);
   13119 #define CALL_GetNamedFramebufferParameteriv(disp, parameters) \
   13120     (* GET_GetNamedFramebufferParameteriv(disp)) parameters
   13121 static inline _glptr_GetNamedFramebufferParameteriv GET_GetNamedFramebufferParameteriv(struct _glapi_table *disp) {
   13122    return (_glptr_GetNamedFramebufferParameteriv) (GET_by_offset(disp, _gloffset_GetNamedFramebufferParameteriv));
   13123 }
   13124 
   13125 static inline void SET_GetNamedFramebufferParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13126    SET_by_offset(disp, _gloffset_GetNamedFramebufferParameteriv, fn);
   13127 }
   13128 
   13129 typedef void (GLAPIENTRYP _glptr_GetNamedRenderbufferParameteriv)(GLuint, GLenum, GLint *);
   13130 #define CALL_GetNamedRenderbufferParameteriv(disp, parameters) \
   13131     (* GET_GetNamedRenderbufferParameteriv(disp)) parameters
   13132 static inline _glptr_GetNamedRenderbufferParameteriv GET_GetNamedRenderbufferParameteriv(struct _glapi_table *disp) {
   13133    return (_glptr_GetNamedRenderbufferParameteriv) (GET_by_offset(disp, _gloffset_GetNamedRenderbufferParameteriv));
   13134 }
   13135 
   13136 static inline void SET_GetNamedRenderbufferParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13137    SET_by_offset(disp, _gloffset_GetNamedRenderbufferParameteriv, fn);
   13138 }
   13139 
   13140 typedef void (GLAPIENTRYP _glptr_GetQueryBufferObjecti64v)(GLuint, GLuint, GLenum, GLintptr);
   13141 #define CALL_GetQueryBufferObjecti64v(disp, parameters) \
   13142     (* GET_GetQueryBufferObjecti64v(disp)) parameters
   13143 static inline _glptr_GetQueryBufferObjecti64v GET_GetQueryBufferObjecti64v(struct _glapi_table *disp) {
   13144    return (_glptr_GetQueryBufferObjecti64v) (GET_by_offset(disp, _gloffset_GetQueryBufferObjecti64v));
   13145 }
   13146 
   13147 static inline void SET_GetQueryBufferObjecti64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLintptr)) {
   13148    SET_by_offset(disp, _gloffset_GetQueryBufferObjecti64v, fn);
   13149 }
   13150 
   13151 typedef void (GLAPIENTRYP _glptr_GetQueryBufferObjectiv)(GLuint, GLuint, GLenum, GLintptr);
   13152 #define CALL_GetQueryBufferObjectiv(disp, parameters) \
   13153     (* GET_GetQueryBufferObjectiv(disp)) parameters
   13154 static inline _glptr_GetQueryBufferObjectiv GET_GetQueryBufferObjectiv(struct _glapi_table *disp) {
   13155    return (_glptr_GetQueryBufferObjectiv) (GET_by_offset(disp, _gloffset_GetQueryBufferObjectiv));
   13156 }
   13157 
   13158 static inline void SET_GetQueryBufferObjectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLintptr)) {
   13159    SET_by_offset(disp, _gloffset_GetQueryBufferObjectiv, fn);
   13160 }
   13161 
   13162 typedef void (GLAPIENTRYP _glptr_GetQueryBufferObjectui64v)(GLuint, GLuint, GLenum, GLintptr);
   13163 #define CALL_GetQueryBufferObjectui64v(disp, parameters) \
   13164     (* GET_GetQueryBufferObjectui64v(disp)) parameters
   13165 static inline _glptr_GetQueryBufferObjectui64v GET_GetQueryBufferObjectui64v(struct _glapi_table *disp) {
   13166    return (_glptr_GetQueryBufferObjectui64v) (GET_by_offset(disp, _gloffset_GetQueryBufferObjectui64v));
   13167 }
   13168 
   13169 static inline void SET_GetQueryBufferObjectui64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLintptr)) {
   13170    SET_by_offset(disp, _gloffset_GetQueryBufferObjectui64v, fn);
   13171 }
   13172 
   13173 typedef void (GLAPIENTRYP _glptr_GetQueryBufferObjectuiv)(GLuint, GLuint, GLenum, GLintptr);
   13174 #define CALL_GetQueryBufferObjectuiv(disp, parameters) \
   13175     (* GET_GetQueryBufferObjectuiv(disp)) parameters
   13176 static inline _glptr_GetQueryBufferObjectuiv GET_GetQueryBufferObjectuiv(struct _glapi_table *disp) {
   13177    return (_glptr_GetQueryBufferObjectuiv) (GET_by_offset(disp, _gloffset_GetQueryBufferObjectuiv));
   13178 }
   13179 
   13180 static inline void SET_GetQueryBufferObjectuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLintptr)) {
   13181    SET_by_offset(disp, _gloffset_GetQueryBufferObjectuiv, fn);
   13182 }
   13183 
   13184 typedef void (GLAPIENTRYP _glptr_GetTextureImage)(GLuint, GLint, GLenum, GLenum, GLsizei, GLvoid *);
   13185 #define CALL_GetTextureImage(disp, parameters) \
   13186     (* GET_GetTextureImage(disp)) parameters
   13187 static inline _glptr_GetTextureImage GET_GetTextureImage(struct _glapi_table *disp) {
   13188    return (_glptr_GetTextureImage) (GET_by_offset(disp, _gloffset_GetTextureImage));
   13189 }
   13190 
   13191 static inline void SET_GetTextureImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLenum, GLsizei, GLvoid *)) {
   13192    SET_by_offset(disp, _gloffset_GetTextureImage, fn);
   13193 }
   13194 
   13195 typedef void (GLAPIENTRYP _glptr_GetTextureLevelParameterfv)(GLuint, GLint, GLenum, GLfloat *);
   13196 #define CALL_GetTextureLevelParameterfv(disp, parameters) \
   13197     (* GET_GetTextureLevelParameterfv(disp)) parameters
   13198 static inline _glptr_GetTextureLevelParameterfv GET_GetTextureLevelParameterfv(struct _glapi_table *disp) {
   13199    return (_glptr_GetTextureLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTextureLevelParameterfv));
   13200 }
   13201 
   13202 static inline void SET_GetTextureLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLfloat *)) {
   13203    SET_by_offset(disp, _gloffset_GetTextureLevelParameterfv, fn);
   13204 }
   13205 
   13206 typedef void (GLAPIENTRYP _glptr_GetTextureLevelParameteriv)(GLuint, GLint, GLenum, GLint *);
   13207 #define CALL_GetTextureLevelParameteriv(disp, parameters) \
   13208     (* GET_GetTextureLevelParameteriv(disp)) parameters
   13209 static inline _glptr_GetTextureLevelParameteriv GET_GetTextureLevelParameteriv(struct _glapi_table *disp) {
   13210    return (_glptr_GetTextureLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTextureLevelParameteriv));
   13211 }
   13212 
   13213 static inline void SET_GetTextureLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLint *)) {
   13214    SET_by_offset(disp, _gloffset_GetTextureLevelParameteriv, fn);
   13215 }
   13216 
   13217 typedef void (GLAPIENTRYP _glptr_GetTextureParameterIiv)(GLuint, GLenum, GLint *);
   13218 #define CALL_GetTextureParameterIiv(disp, parameters) \
   13219     (* GET_GetTextureParameterIiv(disp)) parameters
   13220 static inline _glptr_GetTextureParameterIiv GET_GetTextureParameterIiv(struct _glapi_table *disp) {
   13221    return (_glptr_GetTextureParameterIiv) (GET_by_offset(disp, _gloffset_GetTextureParameterIiv));
   13222 }
   13223 
   13224 static inline void SET_GetTextureParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13225    SET_by_offset(disp, _gloffset_GetTextureParameterIiv, fn);
   13226 }
   13227 
   13228 typedef void (GLAPIENTRYP _glptr_GetTextureParameterIuiv)(GLuint, GLenum, GLuint *);
   13229 #define CALL_GetTextureParameterIuiv(disp, parameters) \
   13230     (* GET_GetTextureParameterIuiv(disp)) parameters
   13231 static inline _glptr_GetTextureParameterIuiv GET_GetTextureParameterIuiv(struct _glapi_table *disp) {
   13232    return (_glptr_GetTextureParameterIuiv) (GET_by_offset(disp, _gloffset_GetTextureParameterIuiv));
   13233 }
   13234 
   13235 static inline void SET_GetTextureParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) {
   13236    SET_by_offset(disp, _gloffset_GetTextureParameterIuiv, fn);
   13237 }
   13238 
   13239 typedef void (GLAPIENTRYP _glptr_GetTextureParameterfv)(GLuint, GLenum, GLfloat *);
   13240 #define CALL_GetTextureParameterfv(disp, parameters) \
   13241     (* GET_GetTextureParameterfv(disp)) parameters
   13242 static inline _glptr_GetTextureParameterfv GET_GetTextureParameterfv(struct _glapi_table *disp) {
   13243    return (_glptr_GetTextureParameterfv) (GET_by_offset(disp, _gloffset_GetTextureParameterfv));
   13244 }
   13245 
   13246 static inline void SET_GetTextureParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
   13247    SET_by_offset(disp, _gloffset_GetTextureParameterfv, fn);
   13248 }
   13249 
   13250 typedef void (GLAPIENTRYP _glptr_GetTextureParameteriv)(GLuint, GLenum, GLint *);
   13251 #define CALL_GetTextureParameteriv(disp, parameters) \
   13252     (* GET_GetTextureParameteriv(disp)) parameters
   13253 static inline _glptr_GetTextureParameteriv GET_GetTextureParameteriv(struct _glapi_table *disp) {
   13254    return (_glptr_GetTextureParameteriv) (GET_by_offset(disp, _gloffset_GetTextureParameteriv));
   13255 }
   13256 
   13257 static inline void SET_GetTextureParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13258    SET_by_offset(disp, _gloffset_GetTextureParameteriv, fn);
   13259 }
   13260 
   13261 typedef void (GLAPIENTRYP _glptr_GetTransformFeedbacki64_v)(GLuint, GLenum, GLuint, GLint64 *);
   13262 #define CALL_GetTransformFeedbacki64_v(disp, parameters) \
   13263     (* GET_GetTransformFeedbacki64_v(disp)) parameters
   13264 static inline _glptr_GetTransformFeedbacki64_v GET_GetTransformFeedbacki64_v(struct _glapi_table *disp) {
   13265    return (_glptr_GetTransformFeedbacki64_v) (GET_by_offset(disp, _gloffset_GetTransformFeedbacki64_v));
   13266 }
   13267 
   13268 static inline void SET_GetTransformFeedbacki64_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLint64 *)) {
   13269    SET_by_offset(disp, _gloffset_GetTransformFeedbacki64_v, fn);
   13270 }
   13271 
   13272 typedef void (GLAPIENTRYP _glptr_GetTransformFeedbacki_v)(GLuint, GLenum, GLuint, GLint *);
   13273 #define CALL_GetTransformFeedbacki_v(disp, parameters) \
   13274     (* GET_GetTransformFeedbacki_v(disp)) parameters
   13275 static inline _glptr_GetTransformFeedbacki_v GET_GetTransformFeedbacki_v(struct _glapi_table *disp) {
   13276    return (_glptr_GetTransformFeedbacki_v) (GET_by_offset(disp, _gloffset_GetTransformFeedbacki_v));
   13277 }
   13278 
   13279 static inline void SET_GetTransformFeedbacki_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLint *)) {
   13280    SET_by_offset(disp, _gloffset_GetTransformFeedbacki_v, fn);
   13281 }
   13282 
   13283 typedef void (GLAPIENTRYP _glptr_GetTransformFeedbackiv)(GLuint, GLenum, GLint *);
   13284 #define CALL_GetTransformFeedbackiv(disp, parameters) \
   13285     (* GET_GetTransformFeedbackiv(disp)) parameters
   13286 static inline _glptr_GetTransformFeedbackiv GET_GetTransformFeedbackiv(struct _glapi_table *disp) {
   13287    return (_glptr_GetTransformFeedbackiv) (GET_by_offset(disp, _gloffset_GetTransformFeedbackiv));
   13288 }
   13289 
   13290 static inline void SET_GetTransformFeedbackiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13291    SET_by_offset(disp, _gloffset_GetTransformFeedbackiv, fn);
   13292 }
   13293 
   13294 typedef void (GLAPIENTRYP _glptr_GetVertexArrayIndexed64iv)(GLuint, GLuint, GLenum, GLint64 *);
   13295 #define CALL_GetVertexArrayIndexed64iv(disp, parameters) \
   13296     (* GET_GetVertexArrayIndexed64iv(disp)) parameters
   13297 static inline _glptr_GetVertexArrayIndexed64iv GET_GetVertexArrayIndexed64iv(struct _glapi_table *disp) {
   13298    return (_glptr_GetVertexArrayIndexed64iv) (GET_by_offset(disp, _gloffset_GetVertexArrayIndexed64iv));
   13299 }
   13300 
   13301 static inline void SET_GetVertexArrayIndexed64iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLint64 *)) {
   13302    SET_by_offset(disp, _gloffset_GetVertexArrayIndexed64iv, fn);
   13303 }
   13304 
   13305 typedef void (GLAPIENTRYP _glptr_GetVertexArrayIndexediv)(GLuint, GLuint, GLenum, GLint *);
   13306 #define CALL_GetVertexArrayIndexediv(disp, parameters) \
   13307     (* GET_GetVertexArrayIndexediv(disp)) parameters
   13308 static inline _glptr_GetVertexArrayIndexediv GET_GetVertexArrayIndexediv(struct _glapi_table *disp) {
   13309    return (_glptr_GetVertexArrayIndexediv) (GET_by_offset(disp, _gloffset_GetVertexArrayIndexediv));
   13310 }
   13311 
   13312 static inline void SET_GetVertexArrayIndexediv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLint *)) {
   13313    SET_by_offset(disp, _gloffset_GetVertexArrayIndexediv, fn);
   13314 }
   13315 
   13316 typedef void (GLAPIENTRYP _glptr_GetVertexArrayiv)(GLuint, GLenum, GLint *);
   13317 #define CALL_GetVertexArrayiv(disp, parameters) \
   13318     (* GET_GetVertexArrayiv(disp)) parameters
   13319 static inline _glptr_GetVertexArrayiv GET_GetVertexArrayiv(struct _glapi_table *disp) {
   13320    return (_glptr_GetVertexArrayiv) (GET_by_offset(disp, _gloffset_GetVertexArrayiv));
   13321 }
   13322 
   13323 static inline void SET_GetVertexArrayiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   13324    SET_by_offset(disp, _gloffset_GetVertexArrayiv, fn);
   13325 }
   13326 
   13327 typedef void (GLAPIENTRYP _glptr_InvalidateNamedFramebufferData)(GLuint, GLsizei, const GLenum *);
   13328 #define CALL_InvalidateNamedFramebufferData(disp, parameters) \
   13329     (* GET_InvalidateNamedFramebufferData(disp)) parameters
   13330 static inline _glptr_InvalidateNamedFramebufferData GET_InvalidateNamedFramebufferData(struct _glapi_table *disp) {
   13331    return (_glptr_InvalidateNamedFramebufferData) (GET_by_offset(disp, _gloffset_InvalidateNamedFramebufferData));
   13332 }
   13333 
   13334 static inline void SET_InvalidateNamedFramebufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLenum *)) {
   13335    SET_by_offset(disp, _gloffset_InvalidateNamedFramebufferData, fn);
   13336 }
   13337 
   13338 typedef void (GLAPIENTRYP _glptr_InvalidateNamedFramebufferSubData)(GLuint, GLsizei, const GLenum *, GLint, GLint, GLsizei, GLsizei);
   13339 #define CALL_InvalidateNamedFramebufferSubData(disp, parameters) \
   13340     (* GET_InvalidateNamedFramebufferSubData(disp)) parameters
   13341 static inline _glptr_InvalidateNamedFramebufferSubData GET_InvalidateNamedFramebufferSubData(struct _glapi_table *disp) {
   13342    return (_glptr_InvalidateNamedFramebufferSubData) (GET_by_offset(disp, _gloffset_InvalidateNamedFramebufferSubData));
   13343 }
   13344 
   13345 static inline void SET_InvalidateNamedFramebufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLenum *, GLint, GLint, GLsizei, GLsizei)) {
   13346    SET_by_offset(disp, _gloffset_InvalidateNamedFramebufferSubData, fn);
   13347 }
   13348 
   13349 typedef GLvoid * (GLAPIENTRYP _glptr_MapNamedBuffer)(GLuint, GLenum);
   13350 #define CALL_MapNamedBuffer(disp, parameters) \
   13351     (* GET_MapNamedBuffer(disp)) parameters
   13352 static inline _glptr_MapNamedBuffer GET_MapNamedBuffer(struct _glapi_table *disp) {
   13353    return (_glptr_MapNamedBuffer) (GET_by_offset(disp, _gloffset_MapNamedBuffer));
   13354 }
   13355 
   13356 static inline void SET_MapNamedBuffer(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLuint, GLenum)) {
   13357    SET_by_offset(disp, _gloffset_MapNamedBuffer, fn);
   13358 }
   13359 
   13360 typedef GLvoid * (GLAPIENTRYP _glptr_MapNamedBufferRange)(GLuint, GLintptr, GLsizeiptr, GLbitfield);
   13361 #define CALL_MapNamedBufferRange(disp, parameters) \
   13362     (* GET_MapNamedBufferRange(disp)) parameters
   13363 static inline _glptr_MapNamedBufferRange GET_MapNamedBufferRange(struct _glapi_table *disp) {
   13364    return (_glptr_MapNamedBufferRange) (GET_by_offset(disp, _gloffset_MapNamedBufferRange));
   13365 }
   13366 
   13367 static inline void SET_MapNamedBufferRange(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr, GLbitfield)) {
   13368    SET_by_offset(disp, _gloffset_MapNamedBufferRange, fn);
   13369 }
   13370 
   13371 typedef void (GLAPIENTRYP _glptr_NamedBufferData)(GLuint, GLsizeiptr, const GLvoid *, GLenum);
   13372 #define CALL_NamedBufferData(disp, parameters) \
   13373     (* GET_NamedBufferData(disp)) parameters
   13374 static inline _glptr_NamedBufferData GET_NamedBufferData(struct _glapi_table *disp) {
   13375    return (_glptr_NamedBufferData) (GET_by_offset(disp, _gloffset_NamedBufferData));
   13376 }
   13377 
   13378 static inline void SET_NamedBufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizeiptr, const GLvoid *, GLenum)) {
   13379    SET_by_offset(disp, _gloffset_NamedBufferData, fn);
   13380 }
   13381 
   13382 typedef void (GLAPIENTRYP _glptr_NamedBufferStorage)(GLuint, GLsizeiptr, const GLvoid *, GLbitfield);
   13383 #define CALL_NamedBufferStorage(disp, parameters) \
   13384     (* GET_NamedBufferStorage(disp)) parameters
   13385 static inline _glptr_NamedBufferStorage GET_NamedBufferStorage(struct _glapi_table *disp) {
   13386    return (_glptr_NamedBufferStorage) (GET_by_offset(disp, _gloffset_NamedBufferStorage));
   13387 }
   13388 
   13389 static inline void SET_NamedBufferStorage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizeiptr, const GLvoid *, GLbitfield)) {
   13390    SET_by_offset(disp, _gloffset_NamedBufferStorage, fn);
   13391 }
   13392 
   13393 typedef void (GLAPIENTRYP _glptr_NamedBufferSubData)(GLuint, GLintptr, GLsizeiptr, const GLvoid *);
   13394 #define CALL_NamedBufferSubData(disp, parameters) \
   13395     (* GET_NamedBufferSubData(disp)) parameters
   13396 static inline _glptr_NamedBufferSubData GET_NamedBufferSubData(struct _glapi_table *disp) {
   13397    return (_glptr_NamedBufferSubData) (GET_by_offset(disp, _gloffset_NamedBufferSubData));
   13398 }
   13399 
   13400 static inline void SET_NamedBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr, const GLvoid *)) {
   13401    SET_by_offset(disp, _gloffset_NamedBufferSubData, fn);
   13402 }
   13403 
   13404 typedef void (GLAPIENTRYP _glptr_NamedFramebufferDrawBuffer)(GLuint, GLenum);
   13405 #define CALL_NamedFramebufferDrawBuffer(disp, parameters) \
   13406     (* GET_NamedFramebufferDrawBuffer(disp)) parameters
   13407 static inline _glptr_NamedFramebufferDrawBuffer GET_NamedFramebufferDrawBuffer(struct _glapi_table *disp) {
   13408    return (_glptr_NamedFramebufferDrawBuffer) (GET_by_offset(disp, _gloffset_NamedFramebufferDrawBuffer));
   13409 }
   13410 
   13411 static inline void SET_NamedFramebufferDrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   13412    SET_by_offset(disp, _gloffset_NamedFramebufferDrawBuffer, fn);
   13413 }
   13414 
   13415 typedef void (GLAPIENTRYP _glptr_NamedFramebufferDrawBuffers)(GLuint, GLsizei, const GLenum *);
   13416 #define CALL_NamedFramebufferDrawBuffers(disp, parameters) \
   13417     (* GET_NamedFramebufferDrawBuffers(disp)) parameters
   13418 static inline _glptr_NamedFramebufferDrawBuffers GET_NamedFramebufferDrawBuffers(struct _glapi_table *disp) {
   13419    return (_glptr_NamedFramebufferDrawBuffers) (GET_by_offset(disp, _gloffset_NamedFramebufferDrawBuffers));
   13420 }
   13421 
   13422 static inline void SET_NamedFramebufferDrawBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLenum *)) {
   13423    SET_by_offset(disp, _gloffset_NamedFramebufferDrawBuffers, fn);
   13424 }
   13425 
   13426 typedef void (GLAPIENTRYP _glptr_NamedFramebufferParameteri)(GLuint, GLenum, GLint);
   13427 #define CALL_NamedFramebufferParameteri(disp, parameters) \
   13428     (* GET_NamedFramebufferParameteri(disp)) parameters
   13429 static inline _glptr_NamedFramebufferParameteri GET_NamedFramebufferParameteri(struct _glapi_table *disp) {
   13430    return (_glptr_NamedFramebufferParameteri) (GET_by_offset(disp, _gloffset_NamedFramebufferParameteri));
   13431 }
   13432 
   13433 static inline void SET_NamedFramebufferParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
   13434    SET_by_offset(disp, _gloffset_NamedFramebufferParameteri, fn);
   13435 }
   13436 
   13437 typedef void (GLAPIENTRYP _glptr_NamedFramebufferReadBuffer)(GLuint, GLenum);
   13438 #define CALL_NamedFramebufferReadBuffer(disp, parameters) \
   13439     (* GET_NamedFramebufferReadBuffer(disp)) parameters
   13440 static inline _glptr_NamedFramebufferReadBuffer GET_NamedFramebufferReadBuffer(struct _glapi_table *disp) {
   13441    return (_glptr_NamedFramebufferReadBuffer) (GET_by_offset(disp, _gloffset_NamedFramebufferReadBuffer));
   13442 }
   13443 
   13444 static inline void SET_NamedFramebufferReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
   13445    SET_by_offset(disp, _gloffset_NamedFramebufferReadBuffer, fn);
   13446 }
   13447 
   13448 typedef void (GLAPIENTRYP _glptr_NamedFramebufferRenderbuffer)(GLuint, GLenum, GLenum, GLuint);
   13449 #define CALL_NamedFramebufferRenderbuffer(disp, parameters) \
   13450     (* GET_NamedFramebufferRenderbuffer(disp)) parameters
   13451 static inline _glptr_NamedFramebufferRenderbuffer GET_NamedFramebufferRenderbuffer(struct _glapi_table *disp) {
   13452    return (_glptr_NamedFramebufferRenderbuffer) (GET_by_offset(disp, _gloffset_NamedFramebufferRenderbuffer));
   13453 }
   13454 
   13455 static inline void SET_NamedFramebufferRenderbuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLuint)) {
   13456    SET_by_offset(disp, _gloffset_NamedFramebufferRenderbuffer, fn);
   13457 }
   13458 
   13459 typedef void (GLAPIENTRYP _glptr_NamedFramebufferTexture)(GLuint, GLenum, GLuint, GLint);
   13460 #define CALL_NamedFramebufferTexture(disp, parameters) \
   13461     (* GET_NamedFramebufferTexture(disp)) parameters
   13462 static inline _glptr_NamedFramebufferTexture GET_NamedFramebufferTexture(struct _glapi_table *disp) {
   13463    return (_glptr_NamedFramebufferTexture) (GET_by_offset(disp, _gloffset_NamedFramebufferTexture));
   13464 }
   13465 
   13466 static inline void SET_NamedFramebufferTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLint)) {
   13467    SET_by_offset(disp, _gloffset_NamedFramebufferTexture, fn);
   13468 }
   13469 
   13470 typedef void (GLAPIENTRYP _glptr_NamedFramebufferTextureLayer)(GLuint, GLenum, GLuint, GLint, GLint);
   13471 #define CALL_NamedFramebufferTextureLayer(disp, parameters) \
   13472     (* GET_NamedFramebufferTextureLayer(disp)) parameters
   13473 static inline _glptr_NamedFramebufferTextureLayer GET_NamedFramebufferTextureLayer(struct _glapi_table *disp) {
   13474    return (_glptr_NamedFramebufferTextureLayer) (GET_by_offset(disp, _gloffset_NamedFramebufferTextureLayer));
   13475 }
   13476 
   13477 static inline void SET_NamedFramebufferTextureLayer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLint, GLint)) {
   13478    SET_by_offset(disp, _gloffset_NamedFramebufferTextureLayer, fn);
   13479 }
   13480 
   13481 typedef void (GLAPIENTRYP _glptr_NamedRenderbufferStorage)(GLuint, GLenum, GLsizei, GLsizei);
   13482 #define CALL_NamedRenderbufferStorage(disp, parameters) \
   13483     (* GET_NamedRenderbufferStorage(disp)) parameters
   13484 static inline _glptr_NamedRenderbufferStorage GET_NamedRenderbufferStorage(struct _glapi_table *disp) {
   13485    return (_glptr_NamedRenderbufferStorage) (GET_by_offset(disp, _gloffset_NamedRenderbufferStorage));
   13486 }
   13487 
   13488 static inline void SET_NamedRenderbufferStorage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLsizei)) {
   13489    SET_by_offset(disp, _gloffset_NamedRenderbufferStorage, fn);
   13490 }
   13491 
   13492 typedef void (GLAPIENTRYP _glptr_NamedRenderbufferStorageMultisample)(GLuint, GLsizei, GLenum, GLsizei, GLsizei);
   13493 #define CALL_NamedRenderbufferStorageMultisample(disp, parameters) \
   13494     (* GET_NamedRenderbufferStorageMultisample(disp)) parameters
   13495 static inline _glptr_NamedRenderbufferStorageMultisample GET_NamedRenderbufferStorageMultisample(struct _glapi_table *disp) {
   13496    return (_glptr_NamedRenderbufferStorageMultisample) (GET_by_offset(disp, _gloffset_NamedRenderbufferStorageMultisample));
   13497 }
   13498 
   13499 static inline void SET_NamedRenderbufferStorageMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei)) {
   13500    SET_by_offset(disp, _gloffset_NamedRenderbufferStorageMultisample, fn);
   13501 }
   13502 
   13503 typedef void (GLAPIENTRYP _glptr_TextureBuffer)(GLuint, GLenum, GLuint);
   13504 #define CALL_TextureBuffer(disp, parameters) \
   13505     (* GET_TextureBuffer(disp)) parameters
   13506 static inline _glptr_TextureBuffer GET_TextureBuffer(struct _glapi_table *disp) {
   13507    return (_glptr_TextureBuffer) (GET_by_offset(disp, _gloffset_TextureBuffer));
   13508 }
   13509 
   13510 static inline void SET_TextureBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint)) {
   13511    SET_by_offset(disp, _gloffset_TextureBuffer, fn);
   13512 }
   13513 
   13514 typedef void (GLAPIENTRYP _glptr_TextureBufferRange)(GLuint, GLenum, GLuint, GLintptr, GLsizeiptr);
   13515 #define CALL_TextureBufferRange(disp, parameters) \
   13516     (* GET_TextureBufferRange(disp)) parameters
   13517 static inline _glptr_TextureBufferRange GET_TextureBufferRange(struct _glapi_table *disp) {
   13518    return (_glptr_TextureBufferRange) (GET_by_offset(disp, _gloffset_TextureBufferRange));
   13519 }
   13520 
   13521 static inline void SET_TextureBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint, GLintptr, GLsizeiptr)) {
   13522    SET_by_offset(disp, _gloffset_TextureBufferRange, fn);
   13523 }
   13524 
   13525 typedef void (GLAPIENTRYP _glptr_TextureParameterIiv)(GLuint, GLenum, const GLint *);
   13526 #define CALL_TextureParameterIiv(disp, parameters) \
   13527     (* GET_TextureParameterIiv(disp)) parameters
   13528 static inline _glptr_TextureParameterIiv GET_TextureParameterIiv(struct _glapi_table *disp) {
   13529    return (_glptr_TextureParameterIiv) (GET_by_offset(disp, _gloffset_TextureParameterIiv));
   13530 }
   13531 
   13532 static inline void SET_TextureParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
   13533    SET_by_offset(disp, _gloffset_TextureParameterIiv, fn);
   13534 }
   13535 
   13536 typedef void (GLAPIENTRYP _glptr_TextureParameterIuiv)(GLuint, GLenum, const GLuint *);
   13537 #define CALL_TextureParameterIuiv(disp, parameters) \
   13538     (* GET_TextureParameterIuiv(disp)) parameters
   13539 static inline _glptr_TextureParameterIuiv GET_TextureParameterIuiv(struct _glapi_table *disp) {
   13540    return (_glptr_TextureParameterIuiv) (GET_by_offset(disp, _gloffset_TextureParameterIuiv));
   13541 }
   13542 
   13543 static inline void SET_TextureParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLuint *)) {
   13544    SET_by_offset(disp, _gloffset_TextureParameterIuiv, fn);
   13545 }
   13546 
   13547 typedef void (GLAPIENTRYP _glptr_TextureParameterf)(GLuint, GLenum, GLfloat);
   13548 #define CALL_TextureParameterf(disp, parameters) \
   13549     (* GET_TextureParameterf(disp)) parameters
   13550 static inline _glptr_TextureParameterf GET_TextureParameterf(struct _glapi_table *disp) {
   13551    return (_glptr_TextureParameterf) (GET_by_offset(disp, _gloffset_TextureParameterf));
   13552 }
   13553 
   13554 static inline void SET_TextureParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat)) {
   13555    SET_by_offset(disp, _gloffset_TextureParameterf, fn);
   13556 }
   13557 
   13558 typedef void (GLAPIENTRYP _glptr_TextureParameterfv)(GLuint, GLenum, const GLfloat *);
   13559 #define CALL_TextureParameterfv(disp, parameters) \
   13560     (* GET_TextureParameterfv(disp)) parameters
   13561 static inline _glptr_TextureParameterfv GET_TextureParameterfv(struct _glapi_table *disp) {
   13562    return (_glptr_TextureParameterfv) (GET_by_offset(disp, _gloffset_TextureParameterfv));
   13563 }
   13564 
   13565 static inline void SET_TextureParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLfloat *)) {
   13566    SET_by_offset(disp, _gloffset_TextureParameterfv, fn);
   13567 }
   13568 
   13569 typedef void (GLAPIENTRYP _glptr_TextureParameteri)(GLuint, GLenum, GLint);
   13570 #define CALL_TextureParameteri(disp, parameters) \
   13571     (* GET_TextureParameteri(disp)) parameters
   13572 static inline _glptr_TextureParameteri GET_TextureParameteri(struct _glapi_table *disp) {
   13573    return (_glptr_TextureParameteri) (GET_by_offset(disp, _gloffset_TextureParameteri));
   13574 }
   13575 
   13576 static inline void SET_TextureParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
   13577    SET_by_offset(disp, _gloffset_TextureParameteri, fn);
   13578 }
   13579 
   13580 typedef void (GLAPIENTRYP _glptr_TextureParameteriv)(GLuint, GLenum, const GLint *);
   13581 #define CALL_TextureParameteriv(disp, parameters) \
   13582     (* GET_TextureParameteriv(disp)) parameters
   13583 static inline _glptr_TextureParameteriv GET_TextureParameteriv(struct _glapi_table *disp) {
   13584    return (_glptr_TextureParameteriv) (GET_by_offset(disp, _gloffset_TextureParameteriv));
   13585 }
   13586 
   13587 static inline void SET_TextureParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
   13588    SET_by_offset(disp, _gloffset_TextureParameteriv, fn);
   13589 }
   13590 
   13591 typedef void (GLAPIENTRYP _glptr_TextureStorage1D)(GLuint, GLsizei, GLenum, GLsizei);
   13592 #define CALL_TextureStorage1D(disp, parameters) \
   13593     (* GET_TextureStorage1D(disp)) parameters
   13594 static inline _glptr_TextureStorage1D GET_TextureStorage1D(struct _glapi_table *disp) {
   13595    return (_glptr_TextureStorage1D) (GET_by_offset(disp, _gloffset_TextureStorage1D));
   13596 }
   13597 
   13598 static inline void SET_TextureStorage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei)) {
   13599    SET_by_offset(disp, _gloffset_TextureStorage1D, fn);
   13600 }
   13601 
   13602 typedef void (GLAPIENTRYP _glptr_TextureStorage2D)(GLuint, GLsizei, GLenum, GLsizei, GLsizei);
   13603 #define CALL_TextureStorage2D(disp, parameters) \
   13604     (* GET_TextureStorage2D(disp)) parameters
   13605 static inline _glptr_TextureStorage2D GET_TextureStorage2D(struct _glapi_table *disp) {
   13606    return (_glptr_TextureStorage2D) (GET_by_offset(disp, _gloffset_TextureStorage2D));
   13607 }
   13608 
   13609 static inline void SET_TextureStorage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei)) {
   13610    SET_by_offset(disp, _gloffset_TextureStorage2D, fn);
   13611 }
   13612 
   13613 typedef void (GLAPIENTRYP _glptr_TextureStorage2DMultisample)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLboolean);
   13614 #define CALL_TextureStorage2DMultisample(disp, parameters) \
   13615     (* GET_TextureStorage2DMultisample(disp)) parameters
   13616 static inline _glptr_TextureStorage2DMultisample GET_TextureStorage2DMultisample(struct _glapi_table *disp) {
   13617    return (_glptr_TextureStorage2DMultisample) (GET_by_offset(disp, _gloffset_TextureStorage2DMultisample));
   13618 }
   13619 
   13620 static inline void SET_TextureStorage2DMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLboolean)) {
   13621    SET_by_offset(disp, _gloffset_TextureStorage2DMultisample, fn);
   13622 }
   13623 
   13624 typedef void (GLAPIENTRYP _glptr_TextureStorage3D)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
   13625 #define CALL_TextureStorage3D(disp, parameters) \
   13626     (* GET_TextureStorage3D(disp)) parameters
   13627 static inline _glptr_TextureStorage3D GET_TextureStorage3D(struct _glapi_table *disp) {
   13628    return (_glptr_TextureStorage3D) (GET_by_offset(disp, _gloffset_TextureStorage3D));
   13629 }
   13630 
   13631 static inline void SET_TextureStorage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
   13632    SET_by_offset(disp, _gloffset_TextureStorage3D, fn);
   13633 }
   13634 
   13635 typedef void (GLAPIENTRYP _glptr_TextureStorage3DMultisample)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean);
   13636 #define CALL_TextureStorage3DMultisample(disp, parameters) \
   13637     (* GET_TextureStorage3DMultisample(disp)) parameters
   13638 static inline _glptr_TextureStorage3DMultisample GET_TextureStorage3DMultisample(struct _glapi_table *disp) {
   13639    return (_glptr_TextureStorage3DMultisample) (GET_by_offset(disp, _gloffset_TextureStorage3DMultisample));
   13640 }
   13641 
   13642 static inline void SET_TextureStorage3DMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean)) {
   13643    SET_by_offset(disp, _gloffset_TextureStorage3DMultisample, fn);
   13644 }
   13645 
   13646 typedef void (GLAPIENTRYP _glptr_TextureSubImage1D)(GLuint, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
   13647 #define CALL_TextureSubImage1D(disp, parameters) \
   13648     (* GET_TextureSubImage1D(disp)) parameters
   13649 static inline _glptr_TextureSubImage1D GET_TextureSubImage1D(struct _glapi_table *disp) {
   13650    return (_glptr_TextureSubImage1D) (GET_by_offset(disp, _gloffset_TextureSubImage1D));
   13651 }
   13652 
   13653 static inline void SET_TextureSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) {
   13654    SET_by_offset(disp, _gloffset_TextureSubImage1D, fn);
   13655 }
   13656 
   13657 typedef void (GLAPIENTRYP _glptr_TextureSubImage2D)(GLuint, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   13658 #define CALL_TextureSubImage2D(disp, parameters) \
   13659     (* GET_TextureSubImage2D(disp)) parameters
   13660 static inline _glptr_TextureSubImage2D GET_TextureSubImage2D(struct _glapi_table *disp) {
   13661    return (_glptr_TextureSubImage2D) (GET_by_offset(disp, _gloffset_TextureSubImage2D));
   13662 }
   13663 
   13664 static inline void SET_TextureSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   13665    SET_by_offset(disp, _gloffset_TextureSubImage2D, fn);
   13666 }
   13667 
   13668 typedef void (GLAPIENTRYP _glptr_TextureSubImage3D)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
   13669 #define CALL_TextureSubImage3D(disp, parameters) \
   13670     (* GET_TextureSubImage3D(disp)) parameters
   13671 static inline _glptr_TextureSubImage3D GET_TextureSubImage3D(struct _glapi_table *disp) {
   13672    return (_glptr_TextureSubImage3D) (GET_by_offset(disp, _gloffset_TextureSubImage3D));
   13673 }
   13674 
   13675 static inline void SET_TextureSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
   13676    SET_by_offset(disp, _gloffset_TextureSubImage3D, fn);
   13677 }
   13678 
   13679 typedef void (GLAPIENTRYP _glptr_TransformFeedbackBufferBase)(GLuint, GLuint, GLuint);
   13680 #define CALL_TransformFeedbackBufferBase(disp, parameters) \
   13681     (* GET_TransformFeedbackBufferBase(disp)) parameters
   13682 static inline _glptr_TransformFeedbackBufferBase GET_TransformFeedbackBufferBase(struct _glapi_table *disp) {
   13683    return (_glptr_TransformFeedbackBufferBase) (GET_by_offset(disp, _gloffset_TransformFeedbackBufferBase));
   13684 }
   13685 
   13686 static inline void SET_TransformFeedbackBufferBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   13687    SET_by_offset(disp, _gloffset_TransformFeedbackBufferBase, fn);
   13688 }
   13689 
   13690 typedef void (GLAPIENTRYP _glptr_TransformFeedbackBufferRange)(GLuint, GLuint, GLuint, GLintptr, GLsizeiptr);
   13691 #define CALL_TransformFeedbackBufferRange(disp, parameters) \
   13692     (* GET_TransformFeedbackBufferRange(disp)) parameters
   13693 static inline _glptr_TransformFeedbackBufferRange GET_TransformFeedbackBufferRange(struct _glapi_table *disp) {
   13694    return (_glptr_TransformFeedbackBufferRange) (GET_by_offset(disp, _gloffset_TransformFeedbackBufferRange));
   13695 }
   13696 
   13697 static inline void SET_TransformFeedbackBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLintptr, GLsizeiptr)) {
   13698    SET_by_offset(disp, _gloffset_TransformFeedbackBufferRange, fn);
   13699 }
   13700 
   13701 typedef GLboolean (GLAPIENTRYP _glptr_UnmapNamedBuffer)(GLuint);
   13702 #define CALL_UnmapNamedBuffer(disp, parameters) \
   13703     (* GET_UnmapNamedBuffer(disp)) parameters
   13704 static inline _glptr_UnmapNamedBuffer GET_UnmapNamedBuffer(struct _glapi_table *disp) {
   13705    return (_glptr_UnmapNamedBuffer) (GET_by_offset(disp, _gloffset_UnmapNamedBuffer));
   13706 }
   13707 
   13708 static inline void SET_UnmapNamedBuffer(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   13709    SET_by_offset(disp, _gloffset_UnmapNamedBuffer, fn);
   13710 }
   13711 
   13712 typedef void (GLAPIENTRYP _glptr_VertexArrayAttribBinding)(GLuint, GLuint, GLuint);
   13713 #define CALL_VertexArrayAttribBinding(disp, parameters) \
   13714     (* GET_VertexArrayAttribBinding(disp)) parameters
   13715 static inline _glptr_VertexArrayAttribBinding GET_VertexArrayAttribBinding(struct _glapi_table *disp) {
   13716    return (_glptr_VertexArrayAttribBinding) (GET_by_offset(disp, _gloffset_VertexArrayAttribBinding));
   13717 }
   13718 
   13719 static inline void SET_VertexArrayAttribBinding(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   13720    SET_by_offset(disp, _gloffset_VertexArrayAttribBinding, fn);
   13721 }
   13722 
   13723 typedef void (GLAPIENTRYP _glptr_VertexArrayAttribFormat)(GLuint, GLuint, GLint, GLenum, GLboolean, GLuint);
   13724 #define CALL_VertexArrayAttribFormat(disp, parameters) \
   13725     (* GET_VertexArrayAttribFormat(disp)) parameters
   13726 static inline _glptr_VertexArrayAttribFormat GET_VertexArrayAttribFormat(struct _glapi_table *disp) {
   13727    return (_glptr_VertexArrayAttribFormat) (GET_by_offset(disp, _gloffset_VertexArrayAttribFormat));
   13728 }
   13729 
   13730 static inline void SET_VertexArrayAttribFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLint, GLenum, GLboolean, GLuint)) {
   13731    SET_by_offset(disp, _gloffset_VertexArrayAttribFormat, fn);
   13732 }
   13733 
   13734 typedef void (GLAPIENTRYP _glptr_VertexArrayAttribIFormat)(GLuint, GLuint, GLint, GLenum, GLuint);
   13735 #define CALL_VertexArrayAttribIFormat(disp, parameters) \
   13736     (* GET_VertexArrayAttribIFormat(disp)) parameters
   13737 static inline _glptr_VertexArrayAttribIFormat GET_VertexArrayAttribIFormat(struct _glapi_table *disp) {
   13738    return (_glptr_VertexArrayAttribIFormat) (GET_by_offset(disp, _gloffset_VertexArrayAttribIFormat));
   13739 }
   13740 
   13741 static inline void SET_VertexArrayAttribIFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLint, GLenum, GLuint)) {
   13742    SET_by_offset(disp, _gloffset_VertexArrayAttribIFormat, fn);
   13743 }
   13744 
   13745 typedef void (GLAPIENTRYP _glptr_VertexArrayAttribLFormat)(GLuint, GLuint, GLint, GLenum, GLuint);
   13746 #define CALL_VertexArrayAttribLFormat(disp, parameters) \
   13747     (* GET_VertexArrayAttribLFormat(disp)) parameters
   13748 static inline _glptr_VertexArrayAttribLFormat GET_VertexArrayAttribLFormat(struct _glapi_table *disp) {
   13749    return (_glptr_VertexArrayAttribLFormat) (GET_by_offset(disp, _gloffset_VertexArrayAttribLFormat));
   13750 }
   13751 
   13752 static inline void SET_VertexArrayAttribLFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLint, GLenum, GLuint)) {
   13753    SET_by_offset(disp, _gloffset_VertexArrayAttribLFormat, fn);
   13754 }
   13755 
   13756 typedef void (GLAPIENTRYP _glptr_VertexArrayBindingDivisor)(GLuint, GLuint, GLuint);
   13757 #define CALL_VertexArrayBindingDivisor(disp, parameters) \
   13758     (* GET_VertexArrayBindingDivisor(disp)) parameters
   13759 static inline _glptr_VertexArrayBindingDivisor GET_VertexArrayBindingDivisor(struct _glapi_table *disp) {
   13760    return (_glptr_VertexArrayBindingDivisor) (GET_by_offset(disp, _gloffset_VertexArrayBindingDivisor));
   13761 }
   13762 
   13763 static inline void SET_VertexArrayBindingDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   13764    SET_by_offset(disp, _gloffset_VertexArrayBindingDivisor, fn);
   13765 }
   13766 
   13767 typedef void (GLAPIENTRYP _glptr_VertexArrayElementBuffer)(GLuint, GLuint);
   13768 #define CALL_VertexArrayElementBuffer(disp, parameters) \
   13769     (* GET_VertexArrayElementBuffer(disp)) parameters
   13770 static inline _glptr_VertexArrayElementBuffer GET_VertexArrayElementBuffer(struct _glapi_table *disp) {
   13771    return (_glptr_VertexArrayElementBuffer) (GET_by_offset(disp, _gloffset_VertexArrayElementBuffer));
   13772 }
   13773 
   13774 static inline void SET_VertexArrayElementBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   13775    SET_by_offset(disp, _gloffset_VertexArrayElementBuffer, fn);
   13776 }
   13777 
   13778 typedef void (GLAPIENTRYP _glptr_VertexArrayVertexBuffer)(GLuint, GLuint, GLuint, GLintptr, GLsizei);
   13779 #define CALL_VertexArrayVertexBuffer(disp, parameters) \
   13780     (* GET_VertexArrayVertexBuffer(disp)) parameters
   13781 static inline _glptr_VertexArrayVertexBuffer GET_VertexArrayVertexBuffer(struct _glapi_table *disp) {
   13782    return (_glptr_VertexArrayVertexBuffer) (GET_by_offset(disp, _gloffset_VertexArrayVertexBuffer));
   13783 }
   13784 
   13785 static inline void SET_VertexArrayVertexBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLintptr, GLsizei)) {
   13786    SET_by_offset(disp, _gloffset_VertexArrayVertexBuffer, fn);
   13787 }
   13788 
   13789 typedef void (GLAPIENTRYP _glptr_VertexArrayVertexBuffers)(GLuint, GLuint, GLsizei, const GLuint *, const GLintptr *, const GLsizei *);
   13790 #define CALL_VertexArrayVertexBuffers(disp, parameters) \
   13791     (* GET_VertexArrayVertexBuffers(disp)) parameters
   13792 static inline _glptr_VertexArrayVertexBuffers GET_VertexArrayVertexBuffers(struct _glapi_table *disp) {
   13793    return (_glptr_VertexArrayVertexBuffers) (GET_by_offset(disp, _gloffset_VertexArrayVertexBuffers));
   13794 }
   13795 
   13796 static inline void SET_VertexArrayVertexBuffers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, const GLuint *, const GLintptr *, const GLsizei *)) {
   13797    SET_by_offset(disp, _gloffset_VertexArrayVertexBuffers, fn);
   13798 }
   13799 
   13800 typedef void (GLAPIENTRYP _glptr_GetCompressedTextureSubImage)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLvoid *);
   13801 #define CALL_GetCompressedTextureSubImage(disp, parameters) \
   13802     (* GET_GetCompressedTextureSubImage(disp)) parameters
   13803 static inline _glptr_GetCompressedTextureSubImage GET_GetCompressedTextureSubImage(struct _glapi_table *disp) {
   13804    return (_glptr_GetCompressedTextureSubImage) (GET_by_offset(disp, _gloffset_GetCompressedTextureSubImage));
   13805 }
   13806 
   13807 static inline void SET_GetCompressedTextureSubImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLvoid *)) {
   13808    SET_by_offset(disp, _gloffset_GetCompressedTextureSubImage, fn);
   13809 }
   13810 
   13811 typedef void (GLAPIENTRYP _glptr_GetTextureSubImage)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *);
   13812 #define CALL_GetTextureSubImage(disp, parameters) \
   13813     (* GET_GetTextureSubImage(disp)) parameters
   13814 static inline _glptr_GetTextureSubImage GET_GetTextureSubImage(struct _glapi_table *disp) {
   13815    return (_glptr_GetTextureSubImage) (GET_by_offset(disp, _gloffset_GetTextureSubImage));
   13816 }
   13817 
   13818 static inline void SET_GetTextureSubImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *)) {
   13819    SET_by_offset(disp, _gloffset_GetTextureSubImage, fn);
   13820 }
   13821 
   13822 typedef void (GLAPIENTRYP _glptr_BufferPageCommitmentARB)(GLenum, GLintptr, GLsizeiptr, GLboolean);
   13823 #define CALL_BufferPageCommitmentARB(disp, parameters) \
   13824     (* GET_BufferPageCommitmentARB(disp)) parameters
   13825 static inline _glptr_BufferPageCommitmentARB GET_BufferPageCommitmentARB(struct _glapi_table *disp) {
   13826    return (_glptr_BufferPageCommitmentARB) (GET_by_offset(disp, _gloffset_BufferPageCommitmentARB));
   13827 }
   13828 
   13829 static inline void SET_BufferPageCommitmentARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLboolean)) {
   13830    SET_by_offset(disp, _gloffset_BufferPageCommitmentARB, fn);
   13831 }
   13832 
   13833 typedef void (GLAPIENTRYP _glptr_NamedBufferPageCommitmentARB)(GLuint, GLintptr, GLsizeiptr, GLboolean);
   13834 #define CALL_NamedBufferPageCommitmentARB(disp, parameters) \
   13835     (* GET_NamedBufferPageCommitmentARB(disp)) parameters
   13836 static inline _glptr_NamedBufferPageCommitmentARB GET_NamedBufferPageCommitmentARB(struct _glapi_table *disp) {
   13837    return (_glptr_NamedBufferPageCommitmentARB) (GET_by_offset(disp, _gloffset_NamedBufferPageCommitmentARB));
   13838 }
   13839 
   13840 static inline void SET_NamedBufferPageCommitmentARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr, GLboolean)) {
   13841    SET_by_offset(disp, _gloffset_NamedBufferPageCommitmentARB, fn);
   13842 }
   13843 
   13844 typedef void (GLAPIENTRYP _glptr_GetUniformi64vARB)(GLuint, GLint, GLint64 *);
   13845 #define CALL_GetUniformi64vARB(disp, parameters) \
   13846     (* GET_GetUniformi64vARB(disp)) parameters
   13847 static inline _glptr_GetUniformi64vARB GET_GetUniformi64vARB(struct _glapi_table *disp) {
   13848    return (_glptr_GetUniformi64vARB) (GET_by_offset(disp, _gloffset_GetUniformi64vARB));
   13849 }
   13850 
   13851 static inline void SET_GetUniformi64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint64 *)) {
   13852    SET_by_offset(disp, _gloffset_GetUniformi64vARB, fn);
   13853 }
   13854 
   13855 typedef void (GLAPIENTRYP _glptr_GetUniformui64vARB)(GLuint, GLint, GLuint64 *);
   13856 #define CALL_GetUniformui64vARB(disp, parameters) \
   13857     (* GET_GetUniformui64vARB(disp)) parameters
   13858 static inline _glptr_GetUniformui64vARB GET_GetUniformui64vARB(struct _glapi_table *disp) {
   13859    return (_glptr_GetUniformui64vARB) (GET_by_offset(disp, _gloffset_GetUniformui64vARB));
   13860 }
   13861 
   13862 static inline void SET_GetUniformui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint64 *)) {
   13863    SET_by_offset(disp, _gloffset_GetUniformui64vARB, fn);
   13864 }
   13865 
   13866 typedef void (GLAPIENTRYP _glptr_GetnUniformi64vARB)(GLuint, GLint, GLsizei, GLint64 *);
   13867 #define CALL_GetnUniformi64vARB(disp, parameters) \
   13868     (* GET_GetnUniformi64vARB(disp)) parameters
   13869 static inline _glptr_GetnUniformi64vARB GET_GetnUniformi64vARB(struct _glapi_table *disp) {
   13870    return (_glptr_GetnUniformi64vARB) (GET_by_offset(disp, _gloffset_GetnUniformi64vARB));
   13871 }
   13872 
   13873 static inline void SET_GetnUniformi64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLint64 *)) {
   13874    SET_by_offset(disp, _gloffset_GetnUniformi64vARB, fn);
   13875 }
   13876 
   13877 typedef void (GLAPIENTRYP _glptr_GetnUniformui64vARB)(GLuint, GLint, GLsizei, GLuint64 *);
   13878 #define CALL_GetnUniformui64vARB(disp, parameters) \
   13879     (* GET_GetnUniformui64vARB(disp)) parameters
   13880 static inline _glptr_GetnUniformui64vARB GET_GetnUniformui64vARB(struct _glapi_table *disp) {
   13881    return (_glptr_GetnUniformui64vARB) (GET_by_offset(disp, _gloffset_GetnUniformui64vARB));
   13882 }
   13883 
   13884 static inline void SET_GetnUniformui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLuint64 *)) {
   13885    SET_by_offset(disp, _gloffset_GetnUniformui64vARB, fn);
   13886 }
   13887 
   13888 typedef void (GLAPIENTRYP _glptr_ProgramUniform1i64ARB)(GLuint, GLint, GLint64);
   13889 #define CALL_ProgramUniform1i64ARB(disp, parameters) \
   13890     (* GET_ProgramUniform1i64ARB(disp)) parameters
   13891 static inline _glptr_ProgramUniform1i64ARB GET_ProgramUniform1i64ARB(struct _glapi_table *disp) {
   13892    return (_glptr_ProgramUniform1i64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform1i64ARB));
   13893 }
   13894 
   13895 static inline void SET_ProgramUniform1i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint64)) {
   13896    SET_by_offset(disp, _gloffset_ProgramUniform1i64ARB, fn);
   13897 }
   13898 
   13899 typedef void (GLAPIENTRYP _glptr_ProgramUniform1i64vARB)(GLuint, GLint, GLsizei, const GLint64 *);
   13900 #define CALL_ProgramUniform1i64vARB(disp, parameters) \
   13901     (* GET_ProgramUniform1i64vARB(disp)) parameters
   13902 static inline _glptr_ProgramUniform1i64vARB GET_ProgramUniform1i64vARB(struct _glapi_table *disp) {
   13903    return (_glptr_ProgramUniform1i64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform1i64vARB));
   13904 }
   13905 
   13906 static inline void SET_ProgramUniform1i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint64 *)) {
   13907    SET_by_offset(disp, _gloffset_ProgramUniform1i64vARB, fn);
   13908 }
   13909 
   13910 typedef void (GLAPIENTRYP _glptr_ProgramUniform1ui64ARB)(GLuint, GLint, GLuint64);
   13911 #define CALL_ProgramUniform1ui64ARB(disp, parameters) \
   13912     (* GET_ProgramUniform1ui64ARB(disp)) parameters
   13913 static inline _glptr_ProgramUniform1ui64ARB GET_ProgramUniform1ui64ARB(struct _glapi_table *disp) {
   13914    return (_glptr_ProgramUniform1ui64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform1ui64ARB));
   13915 }
   13916 
   13917 static inline void SET_ProgramUniform1ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint64)) {
   13918    SET_by_offset(disp, _gloffset_ProgramUniform1ui64ARB, fn);
   13919 }
   13920 
   13921 typedef void (GLAPIENTRYP _glptr_ProgramUniform1ui64vARB)(GLuint, GLint, GLsizei, const GLuint64 *);
   13922 #define CALL_ProgramUniform1ui64vARB(disp, parameters) \
   13923     (* GET_ProgramUniform1ui64vARB(disp)) parameters
   13924 static inline _glptr_ProgramUniform1ui64vARB GET_ProgramUniform1ui64vARB(struct _glapi_table *disp) {
   13925    return (_glptr_ProgramUniform1ui64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform1ui64vARB));
   13926 }
   13927 
   13928 static inline void SET_ProgramUniform1ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint64 *)) {
   13929    SET_by_offset(disp, _gloffset_ProgramUniform1ui64vARB, fn);
   13930 }
   13931 
   13932 typedef void (GLAPIENTRYP _glptr_ProgramUniform2i64ARB)(GLuint, GLint, GLint64, GLint64);
   13933 #define CALL_ProgramUniform2i64ARB(disp, parameters) \
   13934     (* GET_ProgramUniform2i64ARB(disp)) parameters
   13935 static inline _glptr_ProgramUniform2i64ARB GET_ProgramUniform2i64ARB(struct _glapi_table *disp) {
   13936    return (_glptr_ProgramUniform2i64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform2i64ARB));
   13937 }
   13938 
   13939 static inline void SET_ProgramUniform2i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint64, GLint64)) {
   13940    SET_by_offset(disp, _gloffset_ProgramUniform2i64ARB, fn);
   13941 }
   13942 
   13943 typedef void (GLAPIENTRYP _glptr_ProgramUniform2i64vARB)(GLuint, GLint, GLsizei, const GLint64 *);
   13944 #define CALL_ProgramUniform2i64vARB(disp, parameters) \
   13945     (* GET_ProgramUniform2i64vARB(disp)) parameters
   13946 static inline _glptr_ProgramUniform2i64vARB GET_ProgramUniform2i64vARB(struct _glapi_table *disp) {
   13947    return (_glptr_ProgramUniform2i64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform2i64vARB));
   13948 }
   13949 
   13950 static inline void SET_ProgramUniform2i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint64 *)) {
   13951    SET_by_offset(disp, _gloffset_ProgramUniform2i64vARB, fn);
   13952 }
   13953 
   13954 typedef void (GLAPIENTRYP _glptr_ProgramUniform2ui64ARB)(GLuint, GLint, GLuint64, GLuint64);
   13955 #define CALL_ProgramUniform2ui64ARB(disp, parameters) \
   13956     (* GET_ProgramUniform2ui64ARB(disp)) parameters
   13957 static inline _glptr_ProgramUniform2ui64ARB GET_ProgramUniform2ui64ARB(struct _glapi_table *disp) {
   13958    return (_glptr_ProgramUniform2ui64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform2ui64ARB));
   13959 }
   13960 
   13961 static inline void SET_ProgramUniform2ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint64, GLuint64)) {
   13962    SET_by_offset(disp, _gloffset_ProgramUniform2ui64ARB, fn);
   13963 }
   13964 
   13965 typedef void (GLAPIENTRYP _glptr_ProgramUniform2ui64vARB)(GLuint, GLint, GLsizei, const GLuint64 *);
   13966 #define CALL_ProgramUniform2ui64vARB(disp, parameters) \
   13967     (* GET_ProgramUniform2ui64vARB(disp)) parameters
   13968 static inline _glptr_ProgramUniform2ui64vARB GET_ProgramUniform2ui64vARB(struct _glapi_table *disp) {
   13969    return (_glptr_ProgramUniform2ui64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform2ui64vARB));
   13970 }
   13971 
   13972 static inline void SET_ProgramUniform2ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint64 *)) {
   13973    SET_by_offset(disp, _gloffset_ProgramUniform2ui64vARB, fn);
   13974 }
   13975 
   13976 typedef void (GLAPIENTRYP _glptr_ProgramUniform3i64ARB)(GLuint, GLint, GLint64, GLint64, GLint64);
   13977 #define CALL_ProgramUniform3i64ARB(disp, parameters) \
   13978     (* GET_ProgramUniform3i64ARB(disp)) parameters
   13979 static inline _glptr_ProgramUniform3i64ARB GET_ProgramUniform3i64ARB(struct _glapi_table *disp) {
   13980    return (_glptr_ProgramUniform3i64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform3i64ARB));
   13981 }
   13982 
   13983 static inline void SET_ProgramUniform3i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint64, GLint64, GLint64)) {
   13984    SET_by_offset(disp, _gloffset_ProgramUniform3i64ARB, fn);
   13985 }
   13986 
   13987 typedef void (GLAPIENTRYP _glptr_ProgramUniform3i64vARB)(GLuint, GLint, GLsizei, const GLint64 *);
   13988 #define CALL_ProgramUniform3i64vARB(disp, parameters) \
   13989     (* GET_ProgramUniform3i64vARB(disp)) parameters
   13990 static inline _glptr_ProgramUniform3i64vARB GET_ProgramUniform3i64vARB(struct _glapi_table *disp) {
   13991    return (_glptr_ProgramUniform3i64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform3i64vARB));
   13992 }
   13993 
   13994 static inline void SET_ProgramUniform3i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint64 *)) {
   13995    SET_by_offset(disp, _gloffset_ProgramUniform3i64vARB, fn);
   13996 }
   13997 
   13998 typedef void (GLAPIENTRYP _glptr_ProgramUniform3ui64ARB)(GLuint, GLint, GLuint64, GLuint64, GLuint64);
   13999 #define CALL_ProgramUniform3ui64ARB(disp, parameters) \
   14000     (* GET_ProgramUniform3ui64ARB(disp)) parameters
   14001 static inline _glptr_ProgramUniform3ui64ARB GET_ProgramUniform3ui64ARB(struct _glapi_table *disp) {
   14002    return (_glptr_ProgramUniform3ui64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform3ui64ARB));
   14003 }
   14004 
   14005 static inline void SET_ProgramUniform3ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint64, GLuint64, GLuint64)) {
   14006    SET_by_offset(disp, _gloffset_ProgramUniform3ui64ARB, fn);
   14007 }
   14008 
   14009 typedef void (GLAPIENTRYP _glptr_ProgramUniform3ui64vARB)(GLuint, GLint, GLsizei, const GLuint64 *);
   14010 #define CALL_ProgramUniform3ui64vARB(disp, parameters) \
   14011     (* GET_ProgramUniform3ui64vARB(disp)) parameters
   14012 static inline _glptr_ProgramUniform3ui64vARB GET_ProgramUniform3ui64vARB(struct _glapi_table *disp) {
   14013    return (_glptr_ProgramUniform3ui64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform3ui64vARB));
   14014 }
   14015 
   14016 static inline void SET_ProgramUniform3ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint64 *)) {
   14017    SET_by_offset(disp, _gloffset_ProgramUniform3ui64vARB, fn);
   14018 }
   14019 
   14020 typedef void (GLAPIENTRYP _glptr_ProgramUniform4i64ARB)(GLuint, GLint, GLint64, GLint64, GLint64, GLint64);
   14021 #define CALL_ProgramUniform4i64ARB(disp, parameters) \
   14022     (* GET_ProgramUniform4i64ARB(disp)) parameters
   14023 static inline _glptr_ProgramUniform4i64ARB GET_ProgramUniform4i64ARB(struct _glapi_table *disp) {
   14024    return (_glptr_ProgramUniform4i64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform4i64ARB));
   14025 }
   14026 
   14027 static inline void SET_ProgramUniform4i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint64, GLint64, GLint64, GLint64)) {
   14028    SET_by_offset(disp, _gloffset_ProgramUniform4i64ARB, fn);
   14029 }
   14030 
   14031 typedef void (GLAPIENTRYP _glptr_ProgramUniform4i64vARB)(GLuint, GLint, GLsizei, const GLint64 *);
   14032 #define CALL_ProgramUniform4i64vARB(disp, parameters) \
   14033     (* GET_ProgramUniform4i64vARB(disp)) parameters
   14034 static inline _glptr_ProgramUniform4i64vARB GET_ProgramUniform4i64vARB(struct _glapi_table *disp) {
   14035    return (_glptr_ProgramUniform4i64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform4i64vARB));
   14036 }
   14037 
   14038 static inline void SET_ProgramUniform4i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint64 *)) {
   14039    SET_by_offset(disp, _gloffset_ProgramUniform4i64vARB, fn);
   14040 }
   14041 
   14042 typedef void (GLAPIENTRYP _glptr_ProgramUniform4ui64ARB)(GLuint, GLint, GLuint64, GLuint64, GLuint64, GLuint64);
   14043 #define CALL_ProgramUniform4ui64ARB(disp, parameters) \
   14044     (* GET_ProgramUniform4ui64ARB(disp)) parameters
   14045 static inline _glptr_ProgramUniform4ui64ARB GET_ProgramUniform4ui64ARB(struct _glapi_table *disp) {
   14046    return (_glptr_ProgramUniform4ui64ARB) (GET_by_offset(disp, _gloffset_ProgramUniform4ui64ARB));
   14047 }
   14048 
   14049 static inline void SET_ProgramUniform4ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint64, GLuint64, GLuint64, GLuint64)) {
   14050    SET_by_offset(disp, _gloffset_ProgramUniform4ui64ARB, fn);
   14051 }
   14052 
   14053 typedef void (GLAPIENTRYP _glptr_ProgramUniform4ui64vARB)(GLuint, GLint, GLsizei, const GLuint64 *);
   14054 #define CALL_ProgramUniform4ui64vARB(disp, parameters) \
   14055     (* GET_ProgramUniform4ui64vARB(disp)) parameters
   14056 static inline _glptr_ProgramUniform4ui64vARB GET_ProgramUniform4ui64vARB(struct _glapi_table *disp) {
   14057    return (_glptr_ProgramUniform4ui64vARB) (GET_by_offset(disp, _gloffset_ProgramUniform4ui64vARB));
   14058 }
   14059 
   14060 static inline void SET_ProgramUniform4ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint64 *)) {
   14061    SET_by_offset(disp, _gloffset_ProgramUniform4ui64vARB, fn);
   14062 }
   14063 
   14064 typedef void (GLAPIENTRYP _glptr_Uniform1i64ARB)(GLint, GLint64);
   14065 #define CALL_Uniform1i64ARB(disp, parameters) \
   14066     (* GET_Uniform1i64ARB(disp)) parameters
   14067 static inline _glptr_Uniform1i64ARB GET_Uniform1i64ARB(struct _glapi_table *disp) {
   14068    return (_glptr_Uniform1i64ARB) (GET_by_offset(disp, _gloffset_Uniform1i64ARB));
   14069 }
   14070 
   14071 static inline void SET_Uniform1i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint64)) {
   14072    SET_by_offset(disp, _gloffset_Uniform1i64ARB, fn);
   14073 }
   14074 
   14075 typedef void (GLAPIENTRYP _glptr_Uniform1i64vARB)(GLint, GLsizei, const GLint64 *);
   14076 #define CALL_Uniform1i64vARB(disp, parameters) \
   14077     (* GET_Uniform1i64vARB(disp)) parameters
   14078 static inline _glptr_Uniform1i64vARB GET_Uniform1i64vARB(struct _glapi_table *disp) {
   14079    return (_glptr_Uniform1i64vARB) (GET_by_offset(disp, _gloffset_Uniform1i64vARB));
   14080 }
   14081 
   14082 static inline void SET_Uniform1i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint64 *)) {
   14083    SET_by_offset(disp, _gloffset_Uniform1i64vARB, fn);
   14084 }
   14085 
   14086 typedef void (GLAPIENTRYP _glptr_Uniform1ui64ARB)(GLint, GLuint64);
   14087 #define CALL_Uniform1ui64ARB(disp, parameters) \
   14088     (* GET_Uniform1ui64ARB(disp)) parameters
   14089 static inline _glptr_Uniform1ui64ARB GET_Uniform1ui64ARB(struct _glapi_table *disp) {
   14090    return (_glptr_Uniform1ui64ARB) (GET_by_offset(disp, _gloffset_Uniform1ui64ARB));
   14091 }
   14092 
   14093 static inline void SET_Uniform1ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint64)) {
   14094    SET_by_offset(disp, _gloffset_Uniform1ui64ARB, fn);
   14095 }
   14096 
   14097 typedef void (GLAPIENTRYP _glptr_Uniform1ui64vARB)(GLint, GLsizei, const GLuint64 *);
   14098 #define CALL_Uniform1ui64vARB(disp, parameters) \
   14099     (* GET_Uniform1ui64vARB(disp)) parameters
   14100 static inline _glptr_Uniform1ui64vARB GET_Uniform1ui64vARB(struct _glapi_table *disp) {
   14101    return (_glptr_Uniform1ui64vARB) (GET_by_offset(disp, _gloffset_Uniform1ui64vARB));
   14102 }
   14103 
   14104 static inline void SET_Uniform1ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint64 *)) {
   14105    SET_by_offset(disp, _gloffset_Uniform1ui64vARB, fn);
   14106 }
   14107 
   14108 typedef void (GLAPIENTRYP _glptr_Uniform2i64ARB)(GLint, GLint64, GLint64);
   14109 #define CALL_Uniform2i64ARB(disp, parameters) \
   14110     (* GET_Uniform2i64ARB(disp)) parameters
   14111 static inline _glptr_Uniform2i64ARB GET_Uniform2i64ARB(struct _glapi_table *disp) {
   14112    return (_glptr_Uniform2i64ARB) (GET_by_offset(disp, _gloffset_Uniform2i64ARB));
   14113 }
   14114 
   14115 static inline void SET_Uniform2i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint64, GLint64)) {
   14116    SET_by_offset(disp, _gloffset_Uniform2i64ARB, fn);
   14117 }
   14118 
   14119 typedef void (GLAPIENTRYP _glptr_Uniform2i64vARB)(GLint, GLsizei, const GLint64 *);
   14120 #define CALL_Uniform2i64vARB(disp, parameters) \
   14121     (* GET_Uniform2i64vARB(disp)) parameters
   14122 static inline _glptr_Uniform2i64vARB GET_Uniform2i64vARB(struct _glapi_table *disp) {
   14123    return (_glptr_Uniform2i64vARB) (GET_by_offset(disp, _gloffset_Uniform2i64vARB));
   14124 }
   14125 
   14126 static inline void SET_Uniform2i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint64 *)) {
   14127    SET_by_offset(disp, _gloffset_Uniform2i64vARB, fn);
   14128 }
   14129 
   14130 typedef void (GLAPIENTRYP _glptr_Uniform2ui64ARB)(GLint, GLuint64, GLuint64);
   14131 #define CALL_Uniform2ui64ARB(disp, parameters) \
   14132     (* GET_Uniform2ui64ARB(disp)) parameters
   14133 static inline _glptr_Uniform2ui64ARB GET_Uniform2ui64ARB(struct _glapi_table *disp) {
   14134    return (_glptr_Uniform2ui64ARB) (GET_by_offset(disp, _gloffset_Uniform2ui64ARB));
   14135 }
   14136 
   14137 static inline void SET_Uniform2ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint64, GLuint64)) {
   14138    SET_by_offset(disp, _gloffset_Uniform2ui64ARB, fn);
   14139 }
   14140 
   14141 typedef void (GLAPIENTRYP _glptr_Uniform2ui64vARB)(GLint, GLsizei, const GLuint64 *);
   14142 #define CALL_Uniform2ui64vARB(disp, parameters) \
   14143     (* GET_Uniform2ui64vARB(disp)) parameters
   14144 static inline _glptr_Uniform2ui64vARB GET_Uniform2ui64vARB(struct _glapi_table *disp) {
   14145    return (_glptr_Uniform2ui64vARB) (GET_by_offset(disp, _gloffset_Uniform2ui64vARB));
   14146 }
   14147 
   14148 static inline void SET_Uniform2ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint64 *)) {
   14149    SET_by_offset(disp, _gloffset_Uniform2ui64vARB, fn);
   14150 }
   14151 
   14152 typedef void (GLAPIENTRYP _glptr_Uniform3i64ARB)(GLint, GLint64, GLint64, GLint64);
   14153 #define CALL_Uniform3i64ARB(disp, parameters) \
   14154     (* GET_Uniform3i64ARB(disp)) parameters
   14155 static inline _glptr_Uniform3i64ARB GET_Uniform3i64ARB(struct _glapi_table *disp) {
   14156    return (_glptr_Uniform3i64ARB) (GET_by_offset(disp, _gloffset_Uniform3i64ARB));
   14157 }
   14158 
   14159 static inline void SET_Uniform3i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint64, GLint64, GLint64)) {
   14160    SET_by_offset(disp, _gloffset_Uniform3i64ARB, fn);
   14161 }
   14162 
   14163 typedef void (GLAPIENTRYP _glptr_Uniform3i64vARB)(GLint, GLsizei, const GLint64 *);
   14164 #define CALL_Uniform3i64vARB(disp, parameters) \
   14165     (* GET_Uniform3i64vARB(disp)) parameters
   14166 static inline _glptr_Uniform3i64vARB GET_Uniform3i64vARB(struct _glapi_table *disp) {
   14167    return (_glptr_Uniform3i64vARB) (GET_by_offset(disp, _gloffset_Uniform3i64vARB));
   14168 }
   14169 
   14170 static inline void SET_Uniform3i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint64 *)) {
   14171    SET_by_offset(disp, _gloffset_Uniform3i64vARB, fn);
   14172 }
   14173 
   14174 typedef void (GLAPIENTRYP _glptr_Uniform3ui64ARB)(GLint, GLuint64, GLuint64, GLuint64);
   14175 #define CALL_Uniform3ui64ARB(disp, parameters) \
   14176     (* GET_Uniform3ui64ARB(disp)) parameters
   14177 static inline _glptr_Uniform3ui64ARB GET_Uniform3ui64ARB(struct _glapi_table *disp) {
   14178    return (_glptr_Uniform3ui64ARB) (GET_by_offset(disp, _gloffset_Uniform3ui64ARB));
   14179 }
   14180 
   14181 static inline void SET_Uniform3ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint64, GLuint64, GLuint64)) {
   14182    SET_by_offset(disp, _gloffset_Uniform3ui64ARB, fn);
   14183 }
   14184 
   14185 typedef void (GLAPIENTRYP _glptr_Uniform3ui64vARB)(GLint, GLsizei, const GLuint64 *);
   14186 #define CALL_Uniform3ui64vARB(disp, parameters) \
   14187     (* GET_Uniform3ui64vARB(disp)) parameters
   14188 static inline _glptr_Uniform3ui64vARB GET_Uniform3ui64vARB(struct _glapi_table *disp) {
   14189    return (_glptr_Uniform3ui64vARB) (GET_by_offset(disp, _gloffset_Uniform3ui64vARB));
   14190 }
   14191 
   14192 static inline void SET_Uniform3ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint64 *)) {
   14193    SET_by_offset(disp, _gloffset_Uniform3ui64vARB, fn);
   14194 }
   14195 
   14196 typedef void (GLAPIENTRYP _glptr_Uniform4i64ARB)(GLint, GLint64, GLint64, GLint64, GLint64);
   14197 #define CALL_Uniform4i64ARB(disp, parameters) \
   14198     (* GET_Uniform4i64ARB(disp)) parameters
   14199 static inline _glptr_Uniform4i64ARB GET_Uniform4i64ARB(struct _glapi_table *disp) {
   14200    return (_glptr_Uniform4i64ARB) (GET_by_offset(disp, _gloffset_Uniform4i64ARB));
   14201 }
   14202 
   14203 static inline void SET_Uniform4i64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint64, GLint64, GLint64, GLint64)) {
   14204    SET_by_offset(disp, _gloffset_Uniform4i64ARB, fn);
   14205 }
   14206 
   14207 typedef void (GLAPIENTRYP _glptr_Uniform4i64vARB)(GLint, GLsizei, const GLint64 *);
   14208 #define CALL_Uniform4i64vARB(disp, parameters) \
   14209     (* GET_Uniform4i64vARB(disp)) parameters
   14210 static inline _glptr_Uniform4i64vARB GET_Uniform4i64vARB(struct _glapi_table *disp) {
   14211    return (_glptr_Uniform4i64vARB) (GET_by_offset(disp, _gloffset_Uniform4i64vARB));
   14212 }
   14213 
   14214 static inline void SET_Uniform4i64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint64 *)) {
   14215    SET_by_offset(disp, _gloffset_Uniform4i64vARB, fn);
   14216 }
   14217 
   14218 typedef void (GLAPIENTRYP _glptr_Uniform4ui64ARB)(GLint, GLuint64, GLuint64, GLuint64, GLuint64);
   14219 #define CALL_Uniform4ui64ARB(disp, parameters) \
   14220     (* GET_Uniform4ui64ARB(disp)) parameters
   14221 static inline _glptr_Uniform4ui64ARB GET_Uniform4ui64ARB(struct _glapi_table *disp) {
   14222    return (_glptr_Uniform4ui64ARB) (GET_by_offset(disp, _gloffset_Uniform4ui64ARB));
   14223 }
   14224 
   14225 static inline void SET_Uniform4ui64ARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint64, GLuint64, GLuint64, GLuint64)) {
   14226    SET_by_offset(disp, _gloffset_Uniform4ui64ARB, fn);
   14227 }
   14228 
   14229 typedef void (GLAPIENTRYP _glptr_Uniform4ui64vARB)(GLint, GLsizei, const GLuint64 *);
   14230 #define CALL_Uniform4ui64vARB(disp, parameters) \
   14231     (* GET_Uniform4ui64vARB(disp)) parameters
   14232 static inline _glptr_Uniform4ui64vARB GET_Uniform4ui64vARB(struct _glapi_table *disp) {
   14233    return (_glptr_Uniform4ui64vARB) (GET_by_offset(disp, _gloffset_Uniform4ui64vARB));
   14234 }
   14235 
   14236 static inline void SET_Uniform4ui64vARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint64 *)) {
   14237    SET_by_offset(disp, _gloffset_Uniform4ui64vARB, fn);
   14238 }
   14239 
   14240 typedef void (GLAPIENTRYP _glptr_SpecializeShaderARB)(GLuint, const GLchar *, GLuint, const GLuint *, const GLuint *);
   14241 #define CALL_SpecializeShaderARB(disp, parameters) \
   14242     (* GET_SpecializeShaderARB(disp)) parameters
   14243 static inline _glptr_SpecializeShaderARB GET_SpecializeShaderARB(struct _glapi_table *disp) {
   14244    return (_glptr_SpecializeShaderARB) (GET_by_offset(disp, _gloffset_SpecializeShaderARB));
   14245 }
   14246 
   14247 static inline void SET_SpecializeShaderARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLchar *, GLuint, const GLuint *, const GLuint *)) {
   14248    SET_by_offset(disp, _gloffset_SpecializeShaderARB, fn);
   14249 }
   14250 
   14251 typedef void (GLAPIENTRYP _glptr_InvalidateBufferData)(GLuint);
   14252 #define CALL_InvalidateBufferData(disp, parameters) \
   14253     (* GET_InvalidateBufferData(disp)) parameters
   14254 static inline _glptr_InvalidateBufferData GET_InvalidateBufferData(struct _glapi_table *disp) {
   14255    return (_glptr_InvalidateBufferData) (GET_by_offset(disp, _gloffset_InvalidateBufferData));
   14256 }
   14257 
   14258 static inline void SET_InvalidateBufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   14259    SET_by_offset(disp, _gloffset_InvalidateBufferData, fn);
   14260 }
   14261 
   14262 typedef void (GLAPIENTRYP _glptr_InvalidateBufferSubData)(GLuint, GLintptr, GLsizeiptr);
   14263 #define CALL_InvalidateBufferSubData(disp, parameters) \
   14264     (* GET_InvalidateBufferSubData(disp)) parameters
   14265 static inline _glptr_InvalidateBufferSubData GET_InvalidateBufferSubData(struct _glapi_table *disp) {
   14266    return (_glptr_InvalidateBufferSubData) (GET_by_offset(disp, _gloffset_InvalidateBufferSubData));
   14267 }
   14268 
   14269 static inline void SET_InvalidateBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr)) {
   14270    SET_by_offset(disp, _gloffset_InvalidateBufferSubData, fn);
   14271 }
   14272 
   14273 typedef void (GLAPIENTRYP _glptr_InvalidateFramebuffer)(GLenum, GLsizei, const GLenum *);
   14274 #define CALL_InvalidateFramebuffer(disp, parameters) \
   14275     (* GET_InvalidateFramebuffer(disp)) parameters
   14276 static inline _glptr_InvalidateFramebuffer GET_InvalidateFramebuffer(struct _glapi_table *disp) {
   14277    return (_glptr_InvalidateFramebuffer) (GET_by_offset(disp, _gloffset_InvalidateFramebuffer));
   14278 }
   14279 
   14280 static inline void SET_InvalidateFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLenum *)) {
   14281    SET_by_offset(disp, _gloffset_InvalidateFramebuffer, fn);
   14282 }
   14283 
   14284 typedef void (GLAPIENTRYP _glptr_InvalidateSubFramebuffer)(GLenum, GLsizei, const GLenum *, GLint, GLint, GLsizei, GLsizei);
   14285 #define CALL_InvalidateSubFramebuffer(disp, parameters) \
   14286     (* GET_InvalidateSubFramebuffer(disp)) parameters
   14287 static inline _glptr_InvalidateSubFramebuffer GET_InvalidateSubFramebuffer(struct _glapi_table *disp) {
   14288    return (_glptr_InvalidateSubFramebuffer) (GET_by_offset(disp, _gloffset_InvalidateSubFramebuffer));
   14289 }
   14290 
   14291 static inline void SET_InvalidateSubFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLenum *, GLint, GLint, GLsizei, GLsizei)) {
   14292    SET_by_offset(disp, _gloffset_InvalidateSubFramebuffer, fn);
   14293 }
   14294 
   14295 typedef void (GLAPIENTRYP _glptr_InvalidateTexImage)(GLuint, GLint);
   14296 #define CALL_InvalidateTexImage(disp, parameters) \
   14297     (* GET_InvalidateTexImage(disp)) parameters
   14298 static inline _glptr_InvalidateTexImage GET_InvalidateTexImage(struct _glapi_table *disp) {
   14299    return (_glptr_InvalidateTexImage) (GET_by_offset(disp, _gloffset_InvalidateTexImage));
   14300 }
   14301 
   14302 static inline void SET_InvalidateTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint)) {
   14303    SET_by_offset(disp, _gloffset_InvalidateTexImage, fn);
   14304 }
   14305 
   14306 typedef void (GLAPIENTRYP _glptr_InvalidateTexSubImage)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei);
   14307 #define CALL_InvalidateTexSubImage(disp, parameters) \
   14308     (* GET_InvalidateTexSubImage(disp)) parameters
   14309 static inline _glptr_InvalidateTexSubImage GET_InvalidateTexSubImage(struct _glapi_table *disp) {
   14310    return (_glptr_InvalidateTexSubImage) (GET_by_offset(disp, _gloffset_InvalidateTexSubImage));
   14311 }
   14312 
   14313 static inline void SET_InvalidateTexSubImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei)) {
   14314    SET_by_offset(disp, _gloffset_InvalidateTexSubImage, fn);
   14315 }
   14316 
   14317 typedef void (GLAPIENTRYP _glptr_PolygonOffsetEXT)(GLfloat, GLfloat);
   14318 #define CALL_PolygonOffsetEXT(disp, parameters) \
   14319     (* GET_PolygonOffsetEXT(disp)) parameters
   14320 static inline _glptr_PolygonOffsetEXT GET_PolygonOffsetEXT(struct _glapi_table *disp) {
   14321    return (_glptr_PolygonOffsetEXT) (GET_by_offset(disp, _gloffset_PolygonOffsetEXT));
   14322 }
   14323 
   14324 static inline void SET_PolygonOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
   14325    SET_by_offset(disp, _gloffset_PolygonOffsetEXT, fn);
   14326 }
   14327 
   14328 typedef void (GLAPIENTRYP _glptr_DrawTexfOES)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
   14329 #define CALL_DrawTexfOES(disp, parameters) \
   14330     (* GET_DrawTexfOES(disp)) parameters
   14331 static inline _glptr_DrawTexfOES GET_DrawTexfOES(struct _glapi_table *disp) {
   14332    return (_glptr_DrawTexfOES) (GET_by_offset(disp, _gloffset_DrawTexfOES));
   14333 }
   14334 
   14335 static inline void SET_DrawTexfOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat)) {
   14336    SET_by_offset(disp, _gloffset_DrawTexfOES, fn);
   14337 }
   14338 
   14339 typedef void (GLAPIENTRYP _glptr_DrawTexfvOES)(const GLfloat *);
   14340 #define CALL_DrawTexfvOES(disp, parameters) \
   14341     (* GET_DrawTexfvOES(disp)) parameters
   14342 static inline _glptr_DrawTexfvOES GET_DrawTexfvOES(struct _glapi_table *disp) {
   14343    return (_glptr_DrawTexfvOES) (GET_by_offset(disp, _gloffset_DrawTexfvOES));
   14344 }
   14345 
   14346 static inline void SET_DrawTexfvOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   14347    SET_by_offset(disp, _gloffset_DrawTexfvOES, fn);
   14348 }
   14349 
   14350 typedef void (GLAPIENTRYP _glptr_DrawTexiOES)(GLint, GLint, GLint, GLint, GLint);
   14351 #define CALL_DrawTexiOES(disp, parameters) \
   14352     (* GET_DrawTexiOES(disp)) parameters
   14353 static inline _glptr_DrawTexiOES GET_DrawTexiOES(struct _glapi_table *disp) {
   14354    return (_glptr_DrawTexiOES) (GET_by_offset(disp, _gloffset_DrawTexiOES));
   14355 }
   14356 
   14357 static inline void SET_DrawTexiOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint)) {
   14358    SET_by_offset(disp, _gloffset_DrawTexiOES, fn);
   14359 }
   14360 
   14361 typedef void (GLAPIENTRYP _glptr_DrawTexivOES)(const GLint *);
   14362 #define CALL_DrawTexivOES(disp, parameters) \
   14363     (* GET_DrawTexivOES(disp)) parameters
   14364 static inline _glptr_DrawTexivOES GET_DrawTexivOES(struct _glapi_table *disp) {
   14365    return (_glptr_DrawTexivOES) (GET_by_offset(disp, _gloffset_DrawTexivOES));
   14366 }
   14367 
   14368 static inline void SET_DrawTexivOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   14369    SET_by_offset(disp, _gloffset_DrawTexivOES, fn);
   14370 }
   14371 
   14372 typedef void (GLAPIENTRYP _glptr_DrawTexsOES)(GLshort, GLshort, GLshort, GLshort, GLshort);
   14373 #define CALL_DrawTexsOES(disp, parameters) \
   14374     (* GET_DrawTexsOES(disp)) parameters
   14375 static inline _glptr_DrawTexsOES GET_DrawTexsOES(struct _glapi_table *disp) {
   14376    return (_glptr_DrawTexsOES) (GET_by_offset(disp, _gloffset_DrawTexsOES));
   14377 }
   14378 
   14379 static inline void SET_DrawTexsOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort, GLshort)) {
   14380    SET_by_offset(disp, _gloffset_DrawTexsOES, fn);
   14381 }
   14382 
   14383 typedef void (GLAPIENTRYP _glptr_DrawTexsvOES)(const GLshort *);
   14384 #define CALL_DrawTexsvOES(disp, parameters) \
   14385     (* GET_DrawTexsvOES(disp)) parameters
   14386 static inline _glptr_DrawTexsvOES GET_DrawTexsvOES(struct _glapi_table *disp) {
   14387    return (_glptr_DrawTexsvOES) (GET_by_offset(disp, _gloffset_DrawTexsvOES));
   14388 }
   14389 
   14390 static inline void SET_DrawTexsvOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   14391    SET_by_offset(disp, _gloffset_DrawTexsvOES, fn);
   14392 }
   14393 
   14394 typedef void (GLAPIENTRYP _glptr_DrawTexxOES)(GLfixed, GLfixed, GLfixed, GLfixed, GLfixed);
   14395 #define CALL_DrawTexxOES(disp, parameters) \
   14396     (* GET_DrawTexxOES(disp)) parameters
   14397 static inline _glptr_DrawTexxOES GET_DrawTexxOES(struct _glapi_table *disp) {
   14398    return (_glptr_DrawTexxOES) (GET_by_offset(disp, _gloffset_DrawTexxOES));
   14399 }
   14400 
   14401 static inline void SET_DrawTexxOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed, GLfixed, GLfixed)) {
   14402    SET_by_offset(disp, _gloffset_DrawTexxOES, fn);
   14403 }
   14404 
   14405 typedef void (GLAPIENTRYP _glptr_DrawTexxvOES)(const GLfixed *);
   14406 #define CALL_DrawTexxvOES(disp, parameters) \
   14407     (* GET_DrawTexxvOES(disp)) parameters
   14408 static inline _glptr_DrawTexxvOES GET_DrawTexxvOES(struct _glapi_table *disp) {
   14409    return (_glptr_DrawTexxvOES) (GET_by_offset(disp, _gloffset_DrawTexxvOES));
   14410 }
   14411 
   14412 static inline void SET_DrawTexxvOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfixed *)) {
   14413    SET_by_offset(disp, _gloffset_DrawTexxvOES, fn);
   14414 }
   14415 
   14416 typedef void (GLAPIENTRYP _glptr_PointSizePointerOES)(GLenum, GLsizei, const GLvoid *);
   14417 #define CALL_PointSizePointerOES(disp, parameters) \
   14418     (* GET_PointSizePointerOES(disp)) parameters
   14419 static inline _glptr_PointSizePointerOES GET_PointSizePointerOES(struct _glapi_table *disp) {
   14420    return (_glptr_PointSizePointerOES) (GET_by_offset(disp, _gloffset_PointSizePointerOES));
   14421 }
   14422 
   14423 static inline void SET_PointSizePointerOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
   14424    SET_by_offset(disp, _gloffset_PointSizePointerOES, fn);
   14425 }
   14426 
   14427 typedef GLbitfield (GLAPIENTRYP _glptr_QueryMatrixxOES)(GLfixed *, GLint *);
   14428 #define CALL_QueryMatrixxOES(disp, parameters) \
   14429     (* GET_QueryMatrixxOES(disp)) parameters
   14430 static inline _glptr_QueryMatrixxOES GET_QueryMatrixxOES(struct _glapi_table *disp) {
   14431    return (_glptr_QueryMatrixxOES) (GET_by_offset(disp, _gloffset_QueryMatrixxOES));
   14432 }
   14433 
   14434 static inline void SET_QueryMatrixxOES(struct _glapi_table *disp, GLbitfield (GLAPIENTRYP fn)(GLfixed *, GLint *)) {
   14435    SET_by_offset(disp, _gloffset_QueryMatrixxOES, fn);
   14436 }
   14437 
   14438 typedef void (GLAPIENTRYP _glptr_SampleMaskSGIS)(GLclampf, GLboolean);
   14439 #define CALL_SampleMaskSGIS(disp, parameters) \
   14440     (* GET_SampleMaskSGIS(disp)) parameters
   14441 static inline _glptr_SampleMaskSGIS GET_SampleMaskSGIS(struct _glapi_table *disp) {
   14442    return (_glptr_SampleMaskSGIS) (GET_by_offset(disp, _gloffset_SampleMaskSGIS));
   14443 }
   14444 
   14445 static inline void SET_SampleMaskSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
   14446    SET_by_offset(disp, _gloffset_SampleMaskSGIS, fn);
   14447 }
   14448 
   14449 typedef void (GLAPIENTRYP _glptr_SamplePatternSGIS)(GLenum);
   14450 #define CALL_SamplePatternSGIS(disp, parameters) \
   14451     (* GET_SamplePatternSGIS(disp)) parameters
   14452 static inline _glptr_SamplePatternSGIS GET_SamplePatternSGIS(struct _glapi_table *disp) {
   14453    return (_glptr_SamplePatternSGIS) (GET_by_offset(disp, _gloffset_SamplePatternSGIS));
   14454 }
   14455 
   14456 static inline void SET_SamplePatternSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   14457    SET_by_offset(disp, _gloffset_SamplePatternSGIS, fn);
   14458 }
   14459 
   14460 typedef void (GLAPIENTRYP _glptr_ColorPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
   14461 #define CALL_ColorPointerEXT(disp, parameters) \
   14462     (* GET_ColorPointerEXT(disp)) parameters
   14463 static inline _glptr_ColorPointerEXT GET_ColorPointerEXT(struct _glapi_table *disp) {
   14464    return (_glptr_ColorPointerEXT) (GET_by_offset(disp, _gloffset_ColorPointerEXT));
   14465 }
   14466 
   14467 static inline void SET_ColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
   14468    SET_by_offset(disp, _gloffset_ColorPointerEXT, fn);
   14469 }
   14470 
   14471 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointerEXT)(GLsizei, GLsizei, const GLboolean *);
   14472 #define CALL_EdgeFlagPointerEXT(disp, parameters) \
   14473     (* GET_EdgeFlagPointerEXT(disp)) parameters
   14474 static inline _glptr_EdgeFlagPointerEXT GET_EdgeFlagPointerEXT(struct _glapi_table *disp) {
   14475    return (_glptr_EdgeFlagPointerEXT) (GET_by_offset(disp, _gloffset_EdgeFlagPointerEXT));
   14476 }
   14477 
   14478 static inline void SET_EdgeFlagPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, const GLboolean *)) {
   14479    SET_by_offset(disp, _gloffset_EdgeFlagPointerEXT, fn);
   14480 }
   14481 
   14482 typedef void (GLAPIENTRYP _glptr_IndexPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
   14483 #define CALL_IndexPointerEXT(disp, parameters) \
   14484     (* GET_IndexPointerEXT(disp)) parameters
   14485 static inline _glptr_IndexPointerEXT GET_IndexPointerEXT(struct _glapi_table *disp) {
   14486    return (_glptr_IndexPointerEXT) (GET_by_offset(disp, _gloffset_IndexPointerEXT));
   14487 }
   14488 
   14489 static inline void SET_IndexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
   14490    SET_by_offset(disp, _gloffset_IndexPointerEXT, fn);
   14491 }
   14492 
   14493 typedef void (GLAPIENTRYP _glptr_NormalPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
   14494 #define CALL_NormalPointerEXT(disp, parameters) \
   14495     (* GET_NormalPointerEXT(disp)) parameters
   14496 static inline _glptr_NormalPointerEXT GET_NormalPointerEXT(struct _glapi_table *disp) {
   14497    return (_glptr_NormalPointerEXT) (GET_by_offset(disp, _gloffset_NormalPointerEXT));
   14498 }
   14499 
   14500 static inline void SET_NormalPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
   14501    SET_by_offset(disp, _gloffset_NormalPointerEXT, fn);
   14502 }
   14503 
   14504 typedef void (GLAPIENTRYP _glptr_TexCoordPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
   14505 #define CALL_TexCoordPointerEXT(disp, parameters) \
   14506     (* GET_TexCoordPointerEXT(disp)) parameters
   14507 static inline _glptr_TexCoordPointerEXT GET_TexCoordPointerEXT(struct _glapi_table *disp) {
   14508    return (_glptr_TexCoordPointerEXT) (GET_by_offset(disp, _gloffset_TexCoordPointerEXT));
   14509 }
   14510 
   14511 static inline void SET_TexCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
   14512    SET_by_offset(disp, _gloffset_TexCoordPointerEXT, fn);
   14513 }
   14514 
   14515 typedef void (GLAPIENTRYP _glptr_VertexPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
   14516 #define CALL_VertexPointerEXT(disp, parameters) \
   14517     (* GET_VertexPointerEXT(disp)) parameters
   14518 static inline _glptr_VertexPointerEXT GET_VertexPointerEXT(struct _glapi_table *disp) {
   14519    return (_glptr_VertexPointerEXT) (GET_by_offset(disp, _gloffset_VertexPointerEXT));
   14520 }
   14521 
   14522 static inline void SET_VertexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
   14523    SET_by_offset(disp, _gloffset_VertexPointerEXT, fn);
   14524 }
   14525 
   14526 typedef void (GLAPIENTRYP _glptr_DiscardFramebufferEXT)(GLenum, GLsizei, const GLenum *);
   14527 #define CALL_DiscardFramebufferEXT(disp, parameters) \
   14528     (* GET_DiscardFramebufferEXT(disp)) parameters
   14529 static inline _glptr_DiscardFramebufferEXT GET_DiscardFramebufferEXT(struct _glapi_table *disp) {
   14530    return (_glptr_DiscardFramebufferEXT) (GET_by_offset(disp, _gloffset_DiscardFramebufferEXT));
   14531 }
   14532 
   14533 static inline void SET_DiscardFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLenum *)) {
   14534    SET_by_offset(disp, _gloffset_DiscardFramebufferEXT, fn);
   14535 }
   14536 
   14537 typedef void (GLAPIENTRYP _glptr_ActiveShaderProgram)(GLuint, GLuint);
   14538 #define CALL_ActiveShaderProgram(disp, parameters) \
   14539     (* GET_ActiveShaderProgram(disp)) parameters
   14540 static inline _glptr_ActiveShaderProgram GET_ActiveShaderProgram(struct _glapi_table *disp) {
   14541    return (_glptr_ActiveShaderProgram) (GET_by_offset(disp, _gloffset_ActiveShaderProgram));
   14542 }
   14543 
   14544 static inline void SET_ActiveShaderProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   14545    SET_by_offset(disp, _gloffset_ActiveShaderProgram, fn);
   14546 }
   14547 
   14548 typedef void (GLAPIENTRYP _glptr_BindProgramPipeline)(GLuint);
   14549 #define CALL_BindProgramPipeline(disp, parameters) \
   14550     (* GET_BindProgramPipeline(disp)) parameters
   14551 static inline _glptr_BindProgramPipeline GET_BindProgramPipeline(struct _glapi_table *disp) {
   14552    return (_glptr_BindProgramPipeline) (GET_by_offset(disp, _gloffset_BindProgramPipeline));
   14553 }
   14554 
   14555 static inline void SET_BindProgramPipeline(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   14556    SET_by_offset(disp, _gloffset_BindProgramPipeline, fn);
   14557 }
   14558 
   14559 typedef GLuint (GLAPIENTRYP _glptr_CreateShaderProgramv)(GLenum, GLsizei, const GLchar * const *);
   14560 #define CALL_CreateShaderProgramv(disp, parameters) \
   14561     (* GET_CreateShaderProgramv(disp)) parameters
   14562 static inline _glptr_CreateShaderProgramv GET_CreateShaderProgramv(struct _glapi_table *disp) {
   14563    return (_glptr_CreateShaderProgramv) (GET_by_offset(disp, _gloffset_CreateShaderProgramv));
   14564 }
   14565 
   14566 static inline void SET_CreateShaderProgramv(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum, GLsizei, const GLchar * const *)) {
   14567    SET_by_offset(disp, _gloffset_CreateShaderProgramv, fn);
   14568 }
   14569 
   14570 typedef void (GLAPIENTRYP _glptr_DeleteProgramPipelines)(GLsizei, const GLuint *);
   14571 #define CALL_DeleteProgramPipelines(disp, parameters) \
   14572     (* GET_DeleteProgramPipelines(disp)) parameters
   14573 static inline _glptr_DeleteProgramPipelines GET_DeleteProgramPipelines(struct _glapi_table *disp) {
   14574    return (_glptr_DeleteProgramPipelines) (GET_by_offset(disp, _gloffset_DeleteProgramPipelines));
   14575 }
   14576 
   14577 static inline void SET_DeleteProgramPipelines(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   14578    SET_by_offset(disp, _gloffset_DeleteProgramPipelines, fn);
   14579 }
   14580 
   14581 typedef void (GLAPIENTRYP _glptr_GenProgramPipelines)(GLsizei, GLuint *);
   14582 #define CALL_GenProgramPipelines(disp, parameters) \
   14583     (* GET_GenProgramPipelines(disp)) parameters
   14584 static inline _glptr_GenProgramPipelines GET_GenProgramPipelines(struct _glapi_table *disp) {
   14585    return (_glptr_GenProgramPipelines) (GET_by_offset(disp, _gloffset_GenProgramPipelines));
   14586 }
   14587 
   14588 static inline void SET_GenProgramPipelines(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   14589    SET_by_offset(disp, _gloffset_GenProgramPipelines, fn);
   14590 }
   14591 
   14592 typedef void (GLAPIENTRYP _glptr_GetProgramPipelineInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *);
   14593 #define CALL_GetProgramPipelineInfoLog(disp, parameters) \
   14594     (* GET_GetProgramPipelineInfoLog(disp)) parameters
   14595 static inline _glptr_GetProgramPipelineInfoLog GET_GetProgramPipelineInfoLog(struct _glapi_table *disp) {
   14596    return (_glptr_GetProgramPipelineInfoLog) (GET_by_offset(disp, _gloffset_GetProgramPipelineInfoLog));
   14597 }
   14598 
   14599 static inline void SET_GetProgramPipelineInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
   14600    SET_by_offset(disp, _gloffset_GetProgramPipelineInfoLog, fn);
   14601 }
   14602 
   14603 typedef void (GLAPIENTRYP _glptr_GetProgramPipelineiv)(GLuint, GLenum, GLint *);
   14604 #define CALL_GetProgramPipelineiv(disp, parameters) \
   14605     (* GET_GetProgramPipelineiv(disp)) parameters
   14606 static inline _glptr_GetProgramPipelineiv GET_GetProgramPipelineiv(struct _glapi_table *disp) {
   14607    return (_glptr_GetProgramPipelineiv) (GET_by_offset(disp, _gloffset_GetProgramPipelineiv));
   14608 }
   14609 
   14610 static inline void SET_GetProgramPipelineiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   14611    SET_by_offset(disp, _gloffset_GetProgramPipelineiv, fn);
   14612 }
   14613 
   14614 typedef GLboolean (GLAPIENTRYP _glptr_IsProgramPipeline)(GLuint);
   14615 #define CALL_IsProgramPipeline(disp, parameters) \
   14616     (* GET_IsProgramPipeline(disp)) parameters
   14617 static inline _glptr_IsProgramPipeline GET_IsProgramPipeline(struct _glapi_table *disp) {
   14618    return (_glptr_IsProgramPipeline) (GET_by_offset(disp, _gloffset_IsProgramPipeline));
   14619 }
   14620 
   14621 static inline void SET_IsProgramPipeline(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   14622    SET_by_offset(disp, _gloffset_IsProgramPipeline, fn);
   14623 }
   14624 
   14625 typedef void (GLAPIENTRYP _glptr_LockArraysEXT)(GLint, GLsizei);
   14626 #define CALL_LockArraysEXT(disp, parameters) \
   14627     (* GET_LockArraysEXT(disp)) parameters
   14628 static inline _glptr_LockArraysEXT GET_LockArraysEXT(struct _glapi_table *disp) {
   14629    return (_glptr_LockArraysEXT) (GET_by_offset(disp, _gloffset_LockArraysEXT));
   14630 }
   14631 
   14632 static inline void SET_LockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei)) {
   14633    SET_by_offset(disp, _gloffset_LockArraysEXT, fn);
   14634 }
   14635 
   14636 typedef void (GLAPIENTRYP _glptr_ProgramUniform1d)(GLuint, GLint, GLdouble);
   14637 #define CALL_ProgramUniform1d(disp, parameters) \
   14638     (* GET_ProgramUniform1d(disp)) parameters
   14639 static inline _glptr_ProgramUniform1d GET_ProgramUniform1d(struct _glapi_table *disp) {
   14640    return (_glptr_ProgramUniform1d) (GET_by_offset(disp, _gloffset_ProgramUniform1d));
   14641 }
   14642 
   14643 static inline void SET_ProgramUniform1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLdouble)) {
   14644    SET_by_offset(disp, _gloffset_ProgramUniform1d, fn);
   14645 }
   14646 
   14647 typedef void (GLAPIENTRYP _glptr_ProgramUniform1dv)(GLuint, GLint, GLsizei, const GLdouble *);
   14648 #define CALL_ProgramUniform1dv(disp, parameters) \
   14649     (* GET_ProgramUniform1dv(disp)) parameters
   14650 static inline _glptr_ProgramUniform1dv GET_ProgramUniform1dv(struct _glapi_table *disp) {
   14651    return (_glptr_ProgramUniform1dv) (GET_by_offset(disp, _gloffset_ProgramUniform1dv));
   14652 }
   14653 
   14654 static inline void SET_ProgramUniform1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLdouble *)) {
   14655    SET_by_offset(disp, _gloffset_ProgramUniform1dv, fn);
   14656 }
   14657 
   14658 typedef void (GLAPIENTRYP _glptr_ProgramUniform1f)(GLuint, GLint, GLfloat);
   14659 #define CALL_ProgramUniform1f(disp, parameters) \
   14660     (* GET_ProgramUniform1f(disp)) parameters
   14661 static inline _glptr_ProgramUniform1f GET_ProgramUniform1f(struct _glapi_table *disp) {
   14662    return (_glptr_ProgramUniform1f) (GET_by_offset(disp, _gloffset_ProgramUniform1f));
   14663 }
   14664 
   14665 static inline void SET_ProgramUniform1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLfloat)) {
   14666    SET_by_offset(disp, _gloffset_ProgramUniform1f, fn);
   14667 }
   14668 
   14669 typedef void (GLAPIENTRYP _glptr_ProgramUniform1fv)(GLuint, GLint, GLsizei, const GLfloat *);
   14670 #define CALL_ProgramUniform1fv(disp, parameters) \
   14671     (* GET_ProgramUniform1fv(disp)) parameters
   14672 static inline _glptr_ProgramUniform1fv GET_ProgramUniform1fv(struct _glapi_table *disp) {
   14673    return (_glptr_ProgramUniform1fv) (GET_by_offset(disp, _gloffset_ProgramUniform1fv));
   14674 }
   14675 
   14676 static inline void SET_ProgramUniform1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLfloat *)) {
   14677    SET_by_offset(disp, _gloffset_ProgramUniform1fv, fn);
   14678 }
   14679 
   14680 typedef void (GLAPIENTRYP _glptr_ProgramUniform1i)(GLuint, GLint, GLint);
   14681 #define CALL_ProgramUniform1i(disp, parameters) \
   14682     (* GET_ProgramUniform1i(disp)) parameters
   14683 static inline _glptr_ProgramUniform1i GET_ProgramUniform1i(struct _glapi_table *disp) {
   14684    return (_glptr_ProgramUniform1i) (GET_by_offset(disp, _gloffset_ProgramUniform1i));
   14685 }
   14686 
   14687 static inline void SET_ProgramUniform1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint)) {
   14688    SET_by_offset(disp, _gloffset_ProgramUniform1i, fn);
   14689 }
   14690 
   14691 typedef void (GLAPIENTRYP _glptr_ProgramUniform1iv)(GLuint, GLint, GLsizei, const GLint *);
   14692 #define CALL_ProgramUniform1iv(disp, parameters) \
   14693     (* GET_ProgramUniform1iv(disp)) parameters
   14694 static inline _glptr_ProgramUniform1iv GET_ProgramUniform1iv(struct _glapi_table *disp) {
   14695    return (_glptr_ProgramUniform1iv) (GET_by_offset(disp, _gloffset_ProgramUniform1iv));
   14696 }
   14697 
   14698 static inline void SET_ProgramUniform1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint *)) {
   14699    SET_by_offset(disp, _gloffset_ProgramUniform1iv, fn);
   14700 }
   14701 
   14702 typedef void (GLAPIENTRYP _glptr_ProgramUniform1ui)(GLuint, GLint, GLuint);
   14703 #define CALL_ProgramUniform1ui(disp, parameters) \
   14704     (* GET_ProgramUniform1ui(disp)) parameters
   14705 static inline _glptr_ProgramUniform1ui GET_ProgramUniform1ui(struct _glapi_table *disp) {
   14706    return (_glptr_ProgramUniform1ui) (GET_by_offset(disp, _gloffset_ProgramUniform1ui));
   14707 }
   14708 
   14709 static inline void SET_ProgramUniform1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint)) {
   14710    SET_by_offset(disp, _gloffset_ProgramUniform1ui, fn);
   14711 }
   14712 
   14713 typedef void (GLAPIENTRYP _glptr_ProgramUniform1uiv)(GLuint, GLint, GLsizei, const GLuint *);
   14714 #define CALL_ProgramUniform1uiv(disp, parameters) \
   14715     (* GET_ProgramUniform1uiv(disp)) parameters
   14716 static inline _glptr_ProgramUniform1uiv GET_ProgramUniform1uiv(struct _glapi_table *disp) {
   14717    return (_glptr_ProgramUniform1uiv) (GET_by_offset(disp, _gloffset_ProgramUniform1uiv));
   14718 }
   14719 
   14720 static inline void SET_ProgramUniform1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint *)) {
   14721    SET_by_offset(disp, _gloffset_ProgramUniform1uiv, fn);
   14722 }
   14723 
   14724 typedef void (GLAPIENTRYP _glptr_ProgramUniform2d)(GLuint, GLint, GLdouble, GLdouble);
   14725 #define CALL_ProgramUniform2d(disp, parameters) \
   14726     (* GET_ProgramUniform2d(disp)) parameters
   14727 static inline _glptr_ProgramUniform2d GET_ProgramUniform2d(struct _glapi_table *disp) {
   14728    return (_glptr_ProgramUniform2d) (GET_by_offset(disp, _gloffset_ProgramUniform2d));
   14729 }
   14730 
   14731 static inline void SET_ProgramUniform2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLdouble, GLdouble)) {
   14732    SET_by_offset(disp, _gloffset_ProgramUniform2d, fn);
   14733 }
   14734 
   14735 typedef void (GLAPIENTRYP _glptr_ProgramUniform2dv)(GLuint, GLint, GLsizei, const GLdouble *);
   14736 #define CALL_ProgramUniform2dv(disp, parameters) \
   14737     (* GET_ProgramUniform2dv(disp)) parameters
   14738 static inline _glptr_ProgramUniform2dv GET_ProgramUniform2dv(struct _glapi_table *disp) {
   14739    return (_glptr_ProgramUniform2dv) (GET_by_offset(disp, _gloffset_ProgramUniform2dv));
   14740 }
   14741 
   14742 static inline void SET_ProgramUniform2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLdouble *)) {
   14743    SET_by_offset(disp, _gloffset_ProgramUniform2dv, fn);
   14744 }
   14745 
   14746 typedef void (GLAPIENTRYP _glptr_ProgramUniform2f)(GLuint, GLint, GLfloat, GLfloat);
   14747 #define CALL_ProgramUniform2f(disp, parameters) \
   14748     (* GET_ProgramUniform2f(disp)) parameters
   14749 static inline _glptr_ProgramUniform2f GET_ProgramUniform2f(struct _glapi_table *disp) {
   14750    return (_glptr_ProgramUniform2f) (GET_by_offset(disp, _gloffset_ProgramUniform2f));
   14751 }
   14752 
   14753 static inline void SET_ProgramUniform2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLfloat, GLfloat)) {
   14754    SET_by_offset(disp, _gloffset_ProgramUniform2f, fn);
   14755 }
   14756 
   14757 typedef void (GLAPIENTRYP _glptr_ProgramUniform2fv)(GLuint, GLint, GLsizei, const GLfloat *);
   14758 #define CALL_ProgramUniform2fv(disp, parameters) \
   14759     (* GET_ProgramUniform2fv(disp)) parameters
   14760 static inline _glptr_ProgramUniform2fv GET_ProgramUniform2fv(struct _glapi_table *disp) {
   14761    return (_glptr_ProgramUniform2fv) (GET_by_offset(disp, _gloffset_ProgramUniform2fv));
   14762 }
   14763 
   14764 static inline void SET_ProgramUniform2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLfloat *)) {
   14765    SET_by_offset(disp, _gloffset_ProgramUniform2fv, fn);
   14766 }
   14767 
   14768 typedef void (GLAPIENTRYP _glptr_ProgramUniform2i)(GLuint, GLint, GLint, GLint);
   14769 #define CALL_ProgramUniform2i(disp, parameters) \
   14770     (* GET_ProgramUniform2i(disp)) parameters
   14771 static inline _glptr_ProgramUniform2i GET_ProgramUniform2i(struct _glapi_table *disp) {
   14772    return (_glptr_ProgramUniform2i) (GET_by_offset(disp, _gloffset_ProgramUniform2i));
   14773 }
   14774 
   14775 static inline void SET_ProgramUniform2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint)) {
   14776    SET_by_offset(disp, _gloffset_ProgramUniform2i, fn);
   14777 }
   14778 
   14779 typedef void (GLAPIENTRYP _glptr_ProgramUniform2iv)(GLuint, GLint, GLsizei, const GLint *);
   14780 #define CALL_ProgramUniform2iv(disp, parameters) \
   14781     (* GET_ProgramUniform2iv(disp)) parameters
   14782 static inline _glptr_ProgramUniform2iv GET_ProgramUniform2iv(struct _glapi_table *disp) {
   14783    return (_glptr_ProgramUniform2iv) (GET_by_offset(disp, _gloffset_ProgramUniform2iv));
   14784 }
   14785 
   14786 static inline void SET_ProgramUniform2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint *)) {
   14787    SET_by_offset(disp, _gloffset_ProgramUniform2iv, fn);
   14788 }
   14789 
   14790 typedef void (GLAPIENTRYP _glptr_ProgramUniform2ui)(GLuint, GLint, GLuint, GLuint);
   14791 #define CALL_ProgramUniform2ui(disp, parameters) \
   14792     (* GET_ProgramUniform2ui(disp)) parameters
   14793 static inline _glptr_ProgramUniform2ui GET_ProgramUniform2ui(struct _glapi_table *disp) {
   14794    return (_glptr_ProgramUniform2ui) (GET_by_offset(disp, _gloffset_ProgramUniform2ui));
   14795 }
   14796 
   14797 static inline void SET_ProgramUniform2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint, GLuint)) {
   14798    SET_by_offset(disp, _gloffset_ProgramUniform2ui, fn);
   14799 }
   14800 
   14801 typedef void (GLAPIENTRYP _glptr_ProgramUniform2uiv)(GLuint, GLint, GLsizei, const GLuint *);
   14802 #define CALL_ProgramUniform2uiv(disp, parameters) \
   14803     (* GET_ProgramUniform2uiv(disp)) parameters
   14804 static inline _glptr_ProgramUniform2uiv GET_ProgramUniform2uiv(struct _glapi_table *disp) {
   14805    return (_glptr_ProgramUniform2uiv) (GET_by_offset(disp, _gloffset_ProgramUniform2uiv));
   14806 }
   14807 
   14808 static inline void SET_ProgramUniform2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint *)) {
   14809    SET_by_offset(disp, _gloffset_ProgramUniform2uiv, fn);
   14810 }
   14811 
   14812 typedef void (GLAPIENTRYP _glptr_ProgramUniform3d)(GLuint, GLint, GLdouble, GLdouble, GLdouble);
   14813 #define CALL_ProgramUniform3d(disp, parameters) \
   14814     (* GET_ProgramUniform3d(disp)) parameters
   14815 static inline _glptr_ProgramUniform3d GET_ProgramUniform3d(struct _glapi_table *disp) {
   14816    return (_glptr_ProgramUniform3d) (GET_by_offset(disp, _gloffset_ProgramUniform3d));
   14817 }
   14818 
   14819 static inline void SET_ProgramUniform3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLdouble, GLdouble, GLdouble)) {
   14820    SET_by_offset(disp, _gloffset_ProgramUniform3d, fn);
   14821 }
   14822 
   14823 typedef void (GLAPIENTRYP _glptr_ProgramUniform3dv)(GLuint, GLint, GLsizei, const GLdouble *);
   14824 #define CALL_ProgramUniform3dv(disp, parameters) \
   14825     (* GET_ProgramUniform3dv(disp)) parameters
   14826 static inline _glptr_ProgramUniform3dv GET_ProgramUniform3dv(struct _glapi_table *disp) {
   14827    return (_glptr_ProgramUniform3dv) (GET_by_offset(disp, _gloffset_ProgramUniform3dv));
   14828 }
   14829 
   14830 static inline void SET_ProgramUniform3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLdouble *)) {
   14831    SET_by_offset(disp, _gloffset_ProgramUniform3dv, fn);
   14832 }
   14833 
   14834 typedef void (GLAPIENTRYP _glptr_ProgramUniform3f)(GLuint, GLint, GLfloat, GLfloat, GLfloat);
   14835 #define CALL_ProgramUniform3f(disp, parameters) \
   14836     (* GET_ProgramUniform3f(disp)) parameters
   14837 static inline _glptr_ProgramUniform3f GET_ProgramUniform3f(struct _glapi_table *disp) {
   14838    return (_glptr_ProgramUniform3f) (GET_by_offset(disp, _gloffset_ProgramUniform3f));
   14839 }
   14840 
   14841 static inline void SET_ProgramUniform3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLfloat, GLfloat, GLfloat)) {
   14842    SET_by_offset(disp, _gloffset_ProgramUniform3f, fn);
   14843 }
   14844 
   14845 typedef void (GLAPIENTRYP _glptr_ProgramUniform3fv)(GLuint, GLint, GLsizei, const GLfloat *);
   14846 #define CALL_ProgramUniform3fv(disp, parameters) \
   14847     (* GET_ProgramUniform3fv(disp)) parameters
   14848 static inline _glptr_ProgramUniform3fv GET_ProgramUniform3fv(struct _glapi_table *disp) {
   14849    return (_glptr_ProgramUniform3fv) (GET_by_offset(disp, _gloffset_ProgramUniform3fv));
   14850 }
   14851 
   14852 static inline void SET_ProgramUniform3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLfloat *)) {
   14853    SET_by_offset(disp, _gloffset_ProgramUniform3fv, fn);
   14854 }
   14855 
   14856 typedef void (GLAPIENTRYP _glptr_ProgramUniform3i)(GLuint, GLint, GLint, GLint, GLint);
   14857 #define CALL_ProgramUniform3i(disp, parameters) \
   14858     (* GET_ProgramUniform3i(disp)) parameters
   14859 static inline _glptr_ProgramUniform3i GET_ProgramUniform3i(struct _glapi_table *disp) {
   14860    return (_glptr_ProgramUniform3i) (GET_by_offset(disp, _gloffset_ProgramUniform3i));
   14861 }
   14862 
   14863 static inline void SET_ProgramUniform3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint)) {
   14864    SET_by_offset(disp, _gloffset_ProgramUniform3i, fn);
   14865 }
   14866 
   14867 typedef void (GLAPIENTRYP _glptr_ProgramUniform3iv)(GLuint, GLint, GLsizei, const GLint *);
   14868 #define CALL_ProgramUniform3iv(disp, parameters) \
   14869     (* GET_ProgramUniform3iv(disp)) parameters
   14870 static inline _glptr_ProgramUniform3iv GET_ProgramUniform3iv(struct _glapi_table *disp) {
   14871    return (_glptr_ProgramUniform3iv) (GET_by_offset(disp, _gloffset_ProgramUniform3iv));
   14872 }
   14873 
   14874 static inline void SET_ProgramUniform3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint *)) {
   14875    SET_by_offset(disp, _gloffset_ProgramUniform3iv, fn);
   14876 }
   14877 
   14878 typedef void (GLAPIENTRYP _glptr_ProgramUniform3ui)(GLuint, GLint, GLuint, GLuint, GLuint);
   14879 #define CALL_ProgramUniform3ui(disp, parameters) \
   14880     (* GET_ProgramUniform3ui(disp)) parameters
   14881 static inline _glptr_ProgramUniform3ui GET_ProgramUniform3ui(struct _glapi_table *disp) {
   14882    return (_glptr_ProgramUniform3ui) (GET_by_offset(disp, _gloffset_ProgramUniform3ui));
   14883 }
   14884 
   14885 static inline void SET_ProgramUniform3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint, GLuint, GLuint)) {
   14886    SET_by_offset(disp, _gloffset_ProgramUniform3ui, fn);
   14887 }
   14888 
   14889 typedef void (GLAPIENTRYP _glptr_ProgramUniform3uiv)(GLuint, GLint, GLsizei, const GLuint *);
   14890 #define CALL_ProgramUniform3uiv(disp, parameters) \
   14891     (* GET_ProgramUniform3uiv(disp)) parameters
   14892 static inline _glptr_ProgramUniform3uiv GET_ProgramUniform3uiv(struct _glapi_table *disp) {
   14893    return (_glptr_ProgramUniform3uiv) (GET_by_offset(disp, _gloffset_ProgramUniform3uiv));
   14894 }
   14895 
   14896 static inline void SET_ProgramUniform3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint *)) {
   14897    SET_by_offset(disp, _gloffset_ProgramUniform3uiv, fn);
   14898 }
   14899 
   14900 typedef void (GLAPIENTRYP _glptr_ProgramUniform4d)(GLuint, GLint, GLdouble, GLdouble, GLdouble, GLdouble);
   14901 #define CALL_ProgramUniform4d(disp, parameters) \
   14902     (* GET_ProgramUniform4d(disp)) parameters
   14903 static inline _glptr_ProgramUniform4d GET_ProgramUniform4d(struct _glapi_table *disp) {
   14904    return (_glptr_ProgramUniform4d) (GET_by_offset(disp, _gloffset_ProgramUniform4d));
   14905 }
   14906 
   14907 static inline void SET_ProgramUniform4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   14908    SET_by_offset(disp, _gloffset_ProgramUniform4d, fn);
   14909 }
   14910 
   14911 typedef void (GLAPIENTRYP _glptr_ProgramUniform4dv)(GLuint, GLint, GLsizei, const GLdouble *);
   14912 #define CALL_ProgramUniform4dv(disp, parameters) \
   14913     (* GET_ProgramUniform4dv(disp)) parameters
   14914 static inline _glptr_ProgramUniform4dv GET_ProgramUniform4dv(struct _glapi_table *disp) {
   14915    return (_glptr_ProgramUniform4dv) (GET_by_offset(disp, _gloffset_ProgramUniform4dv));
   14916 }
   14917 
   14918 static inline void SET_ProgramUniform4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLdouble *)) {
   14919    SET_by_offset(disp, _gloffset_ProgramUniform4dv, fn);
   14920 }
   14921 
   14922 typedef void (GLAPIENTRYP _glptr_ProgramUniform4f)(GLuint, GLint, GLfloat, GLfloat, GLfloat, GLfloat);
   14923 #define CALL_ProgramUniform4f(disp, parameters) \
   14924     (* GET_ProgramUniform4f(disp)) parameters
   14925 static inline _glptr_ProgramUniform4f GET_ProgramUniform4f(struct _glapi_table *disp) {
   14926    return (_glptr_ProgramUniform4f) (GET_by_offset(disp, _gloffset_ProgramUniform4f));
   14927 }
   14928 
   14929 static inline void SET_ProgramUniform4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   14930    SET_by_offset(disp, _gloffset_ProgramUniform4f, fn);
   14931 }
   14932 
   14933 typedef void (GLAPIENTRYP _glptr_ProgramUniform4fv)(GLuint, GLint, GLsizei, const GLfloat *);
   14934 #define CALL_ProgramUniform4fv(disp, parameters) \
   14935     (* GET_ProgramUniform4fv(disp)) parameters
   14936 static inline _glptr_ProgramUniform4fv GET_ProgramUniform4fv(struct _glapi_table *disp) {
   14937    return (_glptr_ProgramUniform4fv) (GET_by_offset(disp, _gloffset_ProgramUniform4fv));
   14938 }
   14939 
   14940 static inline void SET_ProgramUniform4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLfloat *)) {
   14941    SET_by_offset(disp, _gloffset_ProgramUniform4fv, fn);
   14942 }
   14943 
   14944 typedef void (GLAPIENTRYP _glptr_ProgramUniform4i)(GLuint, GLint, GLint, GLint, GLint, GLint);
   14945 #define CALL_ProgramUniform4i(disp, parameters) \
   14946     (* GET_ProgramUniform4i(disp)) parameters
   14947 static inline _glptr_ProgramUniform4i GET_ProgramUniform4i(struct _glapi_table *disp) {
   14948    return (_glptr_ProgramUniform4i) (GET_by_offset(disp, _gloffset_ProgramUniform4i));
   14949 }
   14950 
   14951 static inline void SET_ProgramUniform4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLint)) {
   14952    SET_by_offset(disp, _gloffset_ProgramUniform4i, fn);
   14953 }
   14954 
   14955 typedef void (GLAPIENTRYP _glptr_ProgramUniform4iv)(GLuint, GLint, GLsizei, const GLint *);
   14956 #define CALL_ProgramUniform4iv(disp, parameters) \
   14957     (* GET_ProgramUniform4iv(disp)) parameters
   14958 static inline _glptr_ProgramUniform4iv GET_ProgramUniform4iv(struct _glapi_table *disp) {
   14959    return (_glptr_ProgramUniform4iv) (GET_by_offset(disp, _gloffset_ProgramUniform4iv));
   14960 }
   14961 
   14962 static inline void SET_ProgramUniform4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLint *)) {
   14963    SET_by_offset(disp, _gloffset_ProgramUniform4iv, fn);
   14964 }
   14965 
   14966 typedef void (GLAPIENTRYP _glptr_ProgramUniform4ui)(GLuint, GLint, GLuint, GLuint, GLuint, GLuint);
   14967 #define CALL_ProgramUniform4ui(disp, parameters) \
   14968     (* GET_ProgramUniform4ui(disp)) parameters
   14969 static inline _glptr_ProgramUniform4ui GET_ProgramUniform4ui(struct _glapi_table *disp) {
   14970    return (_glptr_ProgramUniform4ui) (GET_by_offset(disp, _gloffset_ProgramUniform4ui));
   14971 }
   14972 
   14973 static inline void SET_ProgramUniform4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint, GLuint, GLuint, GLuint)) {
   14974    SET_by_offset(disp, _gloffset_ProgramUniform4ui, fn);
   14975 }
   14976 
   14977 typedef void (GLAPIENTRYP _glptr_ProgramUniform4uiv)(GLuint, GLint, GLsizei, const GLuint *);
   14978 #define CALL_ProgramUniform4uiv(disp, parameters) \
   14979     (* GET_ProgramUniform4uiv(disp)) parameters
   14980 static inline _glptr_ProgramUniform4uiv GET_ProgramUniform4uiv(struct _glapi_table *disp) {
   14981    return (_glptr_ProgramUniform4uiv) (GET_by_offset(disp, _gloffset_ProgramUniform4uiv));
   14982 }
   14983 
   14984 static inline void SET_ProgramUniform4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, const GLuint *)) {
   14985    SET_by_offset(disp, _gloffset_ProgramUniform4uiv, fn);
   14986 }
   14987 
   14988 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix2dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   14989 #define CALL_ProgramUniformMatrix2dv(disp, parameters) \
   14990     (* GET_ProgramUniformMatrix2dv(disp)) parameters
   14991 static inline _glptr_ProgramUniformMatrix2dv GET_ProgramUniformMatrix2dv(struct _glapi_table *disp) {
   14992    return (_glptr_ProgramUniformMatrix2dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix2dv));
   14993 }
   14994 
   14995 static inline void SET_ProgramUniformMatrix2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   14996    SET_by_offset(disp, _gloffset_ProgramUniformMatrix2dv, fn);
   14997 }
   14998 
   14999 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix2fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15000 #define CALL_ProgramUniformMatrix2fv(disp, parameters) \
   15001     (* GET_ProgramUniformMatrix2fv(disp)) parameters
   15002 static inline _glptr_ProgramUniformMatrix2fv GET_ProgramUniformMatrix2fv(struct _glapi_table *disp) {
   15003    return (_glptr_ProgramUniformMatrix2fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix2fv));
   15004 }
   15005 
   15006 static inline void SET_ProgramUniformMatrix2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15007    SET_by_offset(disp, _gloffset_ProgramUniformMatrix2fv, fn);
   15008 }
   15009 
   15010 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix2x3dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15011 #define CALL_ProgramUniformMatrix2x3dv(disp, parameters) \
   15012     (* GET_ProgramUniformMatrix2x3dv(disp)) parameters
   15013 static inline _glptr_ProgramUniformMatrix2x3dv GET_ProgramUniformMatrix2x3dv(struct _glapi_table *disp) {
   15014    return (_glptr_ProgramUniformMatrix2x3dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix2x3dv));
   15015 }
   15016 
   15017 static inline void SET_ProgramUniformMatrix2x3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15018    SET_by_offset(disp, _gloffset_ProgramUniformMatrix2x3dv, fn);
   15019 }
   15020 
   15021 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix2x3fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15022 #define CALL_ProgramUniformMatrix2x3fv(disp, parameters) \
   15023     (* GET_ProgramUniformMatrix2x3fv(disp)) parameters
   15024 static inline _glptr_ProgramUniformMatrix2x3fv GET_ProgramUniformMatrix2x3fv(struct _glapi_table *disp) {
   15025    return (_glptr_ProgramUniformMatrix2x3fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix2x3fv));
   15026 }
   15027 
   15028 static inline void SET_ProgramUniformMatrix2x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15029    SET_by_offset(disp, _gloffset_ProgramUniformMatrix2x3fv, fn);
   15030 }
   15031 
   15032 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix2x4dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15033 #define CALL_ProgramUniformMatrix2x4dv(disp, parameters) \
   15034     (* GET_ProgramUniformMatrix2x4dv(disp)) parameters
   15035 static inline _glptr_ProgramUniformMatrix2x4dv GET_ProgramUniformMatrix2x4dv(struct _glapi_table *disp) {
   15036    return (_glptr_ProgramUniformMatrix2x4dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix2x4dv));
   15037 }
   15038 
   15039 static inline void SET_ProgramUniformMatrix2x4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15040    SET_by_offset(disp, _gloffset_ProgramUniformMatrix2x4dv, fn);
   15041 }
   15042 
   15043 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix2x4fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15044 #define CALL_ProgramUniformMatrix2x4fv(disp, parameters) \
   15045     (* GET_ProgramUniformMatrix2x4fv(disp)) parameters
   15046 static inline _glptr_ProgramUniformMatrix2x4fv GET_ProgramUniformMatrix2x4fv(struct _glapi_table *disp) {
   15047    return (_glptr_ProgramUniformMatrix2x4fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix2x4fv));
   15048 }
   15049 
   15050 static inline void SET_ProgramUniformMatrix2x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15051    SET_by_offset(disp, _gloffset_ProgramUniformMatrix2x4fv, fn);
   15052 }
   15053 
   15054 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix3dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15055 #define CALL_ProgramUniformMatrix3dv(disp, parameters) \
   15056     (* GET_ProgramUniformMatrix3dv(disp)) parameters
   15057 static inline _glptr_ProgramUniformMatrix3dv GET_ProgramUniformMatrix3dv(struct _glapi_table *disp) {
   15058    return (_glptr_ProgramUniformMatrix3dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix3dv));
   15059 }
   15060 
   15061 static inline void SET_ProgramUniformMatrix3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15062    SET_by_offset(disp, _gloffset_ProgramUniformMatrix3dv, fn);
   15063 }
   15064 
   15065 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix3fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15066 #define CALL_ProgramUniformMatrix3fv(disp, parameters) \
   15067     (* GET_ProgramUniformMatrix3fv(disp)) parameters
   15068 static inline _glptr_ProgramUniformMatrix3fv GET_ProgramUniformMatrix3fv(struct _glapi_table *disp) {
   15069    return (_glptr_ProgramUniformMatrix3fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix3fv));
   15070 }
   15071 
   15072 static inline void SET_ProgramUniformMatrix3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15073    SET_by_offset(disp, _gloffset_ProgramUniformMatrix3fv, fn);
   15074 }
   15075 
   15076 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix3x2dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15077 #define CALL_ProgramUniformMatrix3x2dv(disp, parameters) \
   15078     (* GET_ProgramUniformMatrix3x2dv(disp)) parameters
   15079 static inline _glptr_ProgramUniformMatrix3x2dv GET_ProgramUniformMatrix3x2dv(struct _glapi_table *disp) {
   15080    return (_glptr_ProgramUniformMatrix3x2dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix3x2dv));
   15081 }
   15082 
   15083 static inline void SET_ProgramUniformMatrix3x2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15084    SET_by_offset(disp, _gloffset_ProgramUniformMatrix3x2dv, fn);
   15085 }
   15086 
   15087 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix3x2fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15088 #define CALL_ProgramUniformMatrix3x2fv(disp, parameters) \
   15089     (* GET_ProgramUniformMatrix3x2fv(disp)) parameters
   15090 static inline _glptr_ProgramUniformMatrix3x2fv GET_ProgramUniformMatrix3x2fv(struct _glapi_table *disp) {
   15091    return (_glptr_ProgramUniformMatrix3x2fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix3x2fv));
   15092 }
   15093 
   15094 static inline void SET_ProgramUniformMatrix3x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15095    SET_by_offset(disp, _gloffset_ProgramUniformMatrix3x2fv, fn);
   15096 }
   15097 
   15098 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix3x4dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15099 #define CALL_ProgramUniformMatrix3x4dv(disp, parameters) \
   15100     (* GET_ProgramUniformMatrix3x4dv(disp)) parameters
   15101 static inline _glptr_ProgramUniformMatrix3x4dv GET_ProgramUniformMatrix3x4dv(struct _glapi_table *disp) {
   15102    return (_glptr_ProgramUniformMatrix3x4dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix3x4dv));
   15103 }
   15104 
   15105 static inline void SET_ProgramUniformMatrix3x4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15106    SET_by_offset(disp, _gloffset_ProgramUniformMatrix3x4dv, fn);
   15107 }
   15108 
   15109 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix3x4fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15110 #define CALL_ProgramUniformMatrix3x4fv(disp, parameters) \
   15111     (* GET_ProgramUniformMatrix3x4fv(disp)) parameters
   15112 static inline _glptr_ProgramUniformMatrix3x4fv GET_ProgramUniformMatrix3x4fv(struct _glapi_table *disp) {
   15113    return (_glptr_ProgramUniformMatrix3x4fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix3x4fv));
   15114 }
   15115 
   15116 static inline void SET_ProgramUniformMatrix3x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15117    SET_by_offset(disp, _gloffset_ProgramUniformMatrix3x4fv, fn);
   15118 }
   15119 
   15120 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix4dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15121 #define CALL_ProgramUniformMatrix4dv(disp, parameters) \
   15122     (* GET_ProgramUniformMatrix4dv(disp)) parameters
   15123 static inline _glptr_ProgramUniformMatrix4dv GET_ProgramUniformMatrix4dv(struct _glapi_table *disp) {
   15124    return (_glptr_ProgramUniformMatrix4dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix4dv));
   15125 }
   15126 
   15127 static inline void SET_ProgramUniformMatrix4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15128    SET_by_offset(disp, _gloffset_ProgramUniformMatrix4dv, fn);
   15129 }
   15130 
   15131 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix4fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15132 #define CALL_ProgramUniformMatrix4fv(disp, parameters) \
   15133     (* GET_ProgramUniformMatrix4fv(disp)) parameters
   15134 static inline _glptr_ProgramUniformMatrix4fv GET_ProgramUniformMatrix4fv(struct _glapi_table *disp) {
   15135    return (_glptr_ProgramUniformMatrix4fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix4fv));
   15136 }
   15137 
   15138 static inline void SET_ProgramUniformMatrix4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15139    SET_by_offset(disp, _gloffset_ProgramUniformMatrix4fv, fn);
   15140 }
   15141 
   15142 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix4x2dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15143 #define CALL_ProgramUniformMatrix4x2dv(disp, parameters) \
   15144     (* GET_ProgramUniformMatrix4x2dv(disp)) parameters
   15145 static inline _glptr_ProgramUniformMatrix4x2dv GET_ProgramUniformMatrix4x2dv(struct _glapi_table *disp) {
   15146    return (_glptr_ProgramUniformMatrix4x2dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix4x2dv));
   15147 }
   15148 
   15149 static inline void SET_ProgramUniformMatrix4x2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15150    SET_by_offset(disp, _gloffset_ProgramUniformMatrix4x2dv, fn);
   15151 }
   15152 
   15153 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix4x2fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15154 #define CALL_ProgramUniformMatrix4x2fv(disp, parameters) \
   15155     (* GET_ProgramUniformMatrix4x2fv(disp)) parameters
   15156 static inline _glptr_ProgramUniformMatrix4x2fv GET_ProgramUniformMatrix4x2fv(struct _glapi_table *disp) {
   15157    return (_glptr_ProgramUniformMatrix4x2fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix4x2fv));
   15158 }
   15159 
   15160 static inline void SET_ProgramUniformMatrix4x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15161    SET_by_offset(disp, _gloffset_ProgramUniformMatrix4x2fv, fn);
   15162 }
   15163 
   15164 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix4x3dv)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *);
   15165 #define CALL_ProgramUniformMatrix4x3dv(disp, parameters) \
   15166     (* GET_ProgramUniformMatrix4x3dv(disp)) parameters
   15167 static inline _glptr_ProgramUniformMatrix4x3dv GET_ProgramUniformMatrix4x3dv(struct _glapi_table *disp) {
   15168    return (_glptr_ProgramUniformMatrix4x3dv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix4x3dv));
   15169 }
   15170 
   15171 static inline void SET_ProgramUniformMatrix4x3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLdouble *)) {
   15172    SET_by_offset(disp, _gloffset_ProgramUniformMatrix4x3dv, fn);
   15173 }
   15174 
   15175 typedef void (GLAPIENTRYP _glptr_ProgramUniformMatrix4x3fv)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *);
   15176 #define CALL_ProgramUniformMatrix4x3fv(disp, parameters) \
   15177     (* GET_ProgramUniformMatrix4x3fv(disp)) parameters
   15178 static inline _glptr_ProgramUniformMatrix4x3fv GET_ProgramUniformMatrix4x3fv(struct _glapi_table *disp) {
   15179    return (_glptr_ProgramUniformMatrix4x3fv) (GET_by_offset(disp, _gloffset_ProgramUniformMatrix4x3fv));
   15180 }
   15181 
   15182 static inline void SET_ProgramUniformMatrix4x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLsizei, GLboolean, const GLfloat *)) {
   15183    SET_by_offset(disp, _gloffset_ProgramUniformMatrix4x3fv, fn);
   15184 }
   15185 
   15186 typedef void (GLAPIENTRYP _glptr_UnlockArraysEXT)(void);
   15187 #define CALL_UnlockArraysEXT(disp, parameters) \
   15188     (* GET_UnlockArraysEXT(disp)) parameters
   15189 static inline _glptr_UnlockArraysEXT GET_UnlockArraysEXT(struct _glapi_table *disp) {
   15190    return (_glptr_UnlockArraysEXT) (GET_by_offset(disp, _gloffset_UnlockArraysEXT));
   15191 }
   15192 
   15193 static inline void SET_UnlockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   15194    SET_by_offset(disp, _gloffset_UnlockArraysEXT, fn);
   15195 }
   15196 
   15197 typedef void (GLAPIENTRYP _glptr_UseProgramStages)(GLuint, GLbitfield, GLuint);
   15198 #define CALL_UseProgramStages(disp, parameters) \
   15199     (* GET_UseProgramStages(disp)) parameters
   15200 static inline _glptr_UseProgramStages GET_UseProgramStages(struct _glapi_table *disp) {
   15201    return (_glptr_UseProgramStages) (GET_by_offset(disp, _gloffset_UseProgramStages));
   15202 }
   15203 
   15204 static inline void SET_UseProgramStages(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLbitfield, GLuint)) {
   15205    SET_by_offset(disp, _gloffset_UseProgramStages, fn);
   15206 }
   15207 
   15208 typedef void (GLAPIENTRYP _glptr_ValidateProgramPipeline)(GLuint);
   15209 #define CALL_ValidateProgramPipeline(disp, parameters) \
   15210     (* GET_ValidateProgramPipeline(disp)) parameters
   15211 static inline _glptr_ValidateProgramPipeline GET_ValidateProgramPipeline(struct _glapi_table *disp) {
   15212    return (_glptr_ValidateProgramPipeline) (GET_by_offset(disp, _gloffset_ValidateProgramPipeline));
   15213 }
   15214 
   15215 static inline void SET_ValidateProgramPipeline(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   15216    SET_by_offset(disp, _gloffset_ValidateProgramPipeline, fn);
   15217 }
   15218 
   15219 typedef void (GLAPIENTRYP _glptr_DebugMessageCallback)(GLDEBUGPROC, const GLvoid *);
   15220 #define CALL_DebugMessageCallback(disp, parameters) \
   15221     (* GET_DebugMessageCallback(disp)) parameters
   15222 static inline _glptr_DebugMessageCallback GET_DebugMessageCallback(struct _glapi_table *disp) {
   15223    return (_glptr_DebugMessageCallback) (GET_by_offset(disp, _gloffset_DebugMessageCallback));
   15224 }
   15225 
   15226 static inline void SET_DebugMessageCallback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLDEBUGPROC, const GLvoid *)) {
   15227    SET_by_offset(disp, _gloffset_DebugMessageCallback, fn);
   15228 }
   15229 
   15230 typedef void (GLAPIENTRYP _glptr_DebugMessageControl)(GLenum, GLenum, GLenum, GLsizei, const GLuint *, GLboolean);
   15231 #define CALL_DebugMessageControl(disp, parameters) \
   15232     (* GET_DebugMessageControl(disp)) parameters
   15233 static inline _glptr_DebugMessageControl GET_DebugMessageControl(struct _glapi_table *disp) {
   15234    return (_glptr_DebugMessageControl) (GET_by_offset(disp, _gloffset_DebugMessageControl));
   15235 }
   15236 
   15237 static inline void SET_DebugMessageControl(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, const GLuint *, GLboolean)) {
   15238    SET_by_offset(disp, _gloffset_DebugMessageControl, fn);
   15239 }
   15240 
   15241 typedef void (GLAPIENTRYP _glptr_DebugMessageInsert)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar *);
   15242 #define CALL_DebugMessageInsert(disp, parameters) \
   15243     (* GET_DebugMessageInsert(disp)) parameters
   15244 static inline _glptr_DebugMessageInsert GET_DebugMessageInsert(struct _glapi_table *disp) {
   15245    return (_glptr_DebugMessageInsert) (GET_by_offset(disp, _gloffset_DebugMessageInsert));
   15246 }
   15247 
   15248 static inline void SET_DebugMessageInsert(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLchar *)) {
   15249    SET_by_offset(disp, _gloffset_DebugMessageInsert, fn);
   15250 }
   15251 
   15252 typedef GLuint (GLAPIENTRYP _glptr_GetDebugMessageLog)(GLuint, GLsizei, GLenum *, GLenum *, GLuint *, GLenum *, GLsizei *, GLchar *);
   15253 #define CALL_GetDebugMessageLog(disp, parameters) \
   15254     (* GET_GetDebugMessageLog(disp)) parameters
   15255 static inline _glptr_GetDebugMessageLog GET_GetDebugMessageLog(struct _glapi_table *disp) {
   15256    return (_glptr_GetDebugMessageLog) (GET_by_offset(disp, _gloffset_GetDebugMessageLog));
   15257 }
   15258 
   15259 static inline void SET_GetDebugMessageLog(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum *, GLenum *, GLuint *, GLenum *, GLsizei *, GLchar *)) {
   15260    SET_by_offset(disp, _gloffset_GetDebugMessageLog, fn);
   15261 }
   15262 
   15263 typedef void (GLAPIENTRYP _glptr_GetObjectLabel)(GLenum, GLuint, GLsizei, GLsizei *, GLchar *);
   15264 #define CALL_GetObjectLabel(disp, parameters) \
   15265     (* GET_GetObjectLabel(disp)) parameters
   15266 static inline _glptr_GetObjectLabel GET_GetObjectLabel(struct _glapi_table *disp) {
   15267    return (_glptr_GetObjectLabel) (GET_by_offset(disp, _gloffset_GetObjectLabel));
   15268 }
   15269 
   15270 static inline void SET_GetObjectLabel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, GLsizei *, GLchar *)) {
   15271    SET_by_offset(disp, _gloffset_GetObjectLabel, fn);
   15272 }
   15273 
   15274 typedef void (GLAPIENTRYP _glptr_GetObjectPtrLabel)(const GLvoid *, GLsizei, GLsizei *, GLchar *);
   15275 #define CALL_GetObjectPtrLabel(disp, parameters) \
   15276     (* GET_GetObjectPtrLabel(disp)) parameters
   15277 static inline _glptr_GetObjectPtrLabel GET_GetObjectPtrLabel(struct _glapi_table *disp) {
   15278    return (_glptr_GetObjectPtrLabel) (GET_by_offset(disp, _gloffset_GetObjectPtrLabel));
   15279 }
   15280 
   15281 static inline void SET_GetObjectPtrLabel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLvoid *, GLsizei, GLsizei *, GLchar *)) {
   15282    SET_by_offset(disp, _gloffset_GetObjectPtrLabel, fn);
   15283 }
   15284 
   15285 typedef void (GLAPIENTRYP _glptr_ObjectLabel)(GLenum, GLuint, GLsizei, const GLchar *);
   15286 #define CALL_ObjectLabel(disp, parameters) \
   15287     (* GET_ObjectLabel(disp)) parameters
   15288 static inline _glptr_ObjectLabel GET_ObjectLabel(struct _glapi_table *disp) {
   15289    return (_glptr_ObjectLabel) (GET_by_offset(disp, _gloffset_ObjectLabel));
   15290 }
   15291 
   15292 static inline void SET_ObjectLabel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLchar *)) {
   15293    SET_by_offset(disp, _gloffset_ObjectLabel, fn);
   15294 }
   15295 
   15296 typedef void (GLAPIENTRYP _glptr_ObjectPtrLabel)(const GLvoid *, GLsizei, const GLchar *);
   15297 #define CALL_ObjectPtrLabel(disp, parameters) \
   15298     (* GET_ObjectPtrLabel(disp)) parameters
   15299 static inline _glptr_ObjectPtrLabel GET_ObjectPtrLabel(struct _glapi_table *disp) {
   15300    return (_glptr_ObjectPtrLabel) (GET_by_offset(disp, _gloffset_ObjectPtrLabel));
   15301 }
   15302 
   15303 static inline void SET_ObjectPtrLabel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLvoid *, GLsizei, const GLchar *)) {
   15304    SET_by_offset(disp, _gloffset_ObjectPtrLabel, fn);
   15305 }
   15306 
   15307 typedef void (GLAPIENTRYP _glptr_PopDebugGroup)(void);
   15308 #define CALL_PopDebugGroup(disp, parameters) \
   15309     (* GET_PopDebugGroup(disp)) parameters
   15310 static inline _glptr_PopDebugGroup GET_PopDebugGroup(struct _glapi_table *disp) {
   15311    return (_glptr_PopDebugGroup) (GET_by_offset(disp, _gloffset_PopDebugGroup));
   15312 }
   15313 
   15314 static inline void SET_PopDebugGroup(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   15315    SET_by_offset(disp, _gloffset_PopDebugGroup, fn);
   15316 }
   15317 
   15318 typedef void (GLAPIENTRYP _glptr_PushDebugGroup)(GLenum, GLuint, GLsizei, const GLchar *);
   15319 #define CALL_PushDebugGroup(disp, parameters) \
   15320     (* GET_PushDebugGroup(disp)) parameters
   15321 static inline _glptr_PushDebugGroup GET_PushDebugGroup(struct _glapi_table *disp) {
   15322    return (_glptr_PushDebugGroup) (GET_by_offset(disp, _gloffset_PushDebugGroup));
   15323 }
   15324 
   15325 static inline void SET_PushDebugGroup(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLchar *)) {
   15326    SET_by_offset(disp, _gloffset_PushDebugGroup, fn);
   15327 }
   15328 
   15329 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fEXT)(GLfloat, GLfloat, GLfloat);
   15330 #define CALL_SecondaryColor3fEXT(disp, parameters) \
   15331     (* GET_SecondaryColor3fEXT(disp)) parameters
   15332 static inline _glptr_SecondaryColor3fEXT GET_SecondaryColor3fEXT(struct _glapi_table *disp) {
   15333    return (_glptr_SecondaryColor3fEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fEXT));
   15334 }
   15335 
   15336 static inline void SET_SecondaryColor3fEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   15337    SET_by_offset(disp, _gloffset_SecondaryColor3fEXT, fn);
   15338 }
   15339 
   15340 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fvEXT)(const GLfloat *);
   15341 #define CALL_SecondaryColor3fvEXT(disp, parameters) \
   15342     (* GET_SecondaryColor3fvEXT(disp)) parameters
   15343 static inline _glptr_SecondaryColor3fvEXT GET_SecondaryColor3fvEXT(struct _glapi_table *disp) {
   15344    return (_glptr_SecondaryColor3fvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fvEXT));
   15345 }
   15346 
   15347 static inline void SET_SecondaryColor3fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   15348    SET_by_offset(disp, _gloffset_SecondaryColor3fvEXT, fn);
   15349 }
   15350 
   15351 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsEXT)(GLenum, const GLsizei *, GLenum, const GLvoid * const *, GLsizei);
   15352 #define CALL_MultiDrawElementsEXT(disp, parameters) \
   15353     (* GET_MultiDrawElementsEXT(disp)) parameters
   15354 static inline _glptr_MultiDrawElementsEXT GET_MultiDrawElementsEXT(struct _glapi_table *disp) {
   15355    return (_glptr_MultiDrawElementsEXT) (GET_by_offset(disp, _gloffset_MultiDrawElementsEXT));
   15356 }
   15357 
   15358 static inline void SET_MultiDrawElementsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid * const *, GLsizei)) {
   15359    SET_by_offset(disp, _gloffset_MultiDrawElementsEXT, fn);
   15360 }
   15361 
   15362 typedef void (GLAPIENTRYP _glptr_FogCoordfEXT)(GLfloat);
   15363 #define CALL_FogCoordfEXT(disp, parameters) \
   15364     (* GET_FogCoordfEXT(disp)) parameters
   15365 static inline _glptr_FogCoordfEXT GET_FogCoordfEXT(struct _glapi_table *disp) {
   15366    return (_glptr_FogCoordfEXT) (GET_by_offset(disp, _gloffset_FogCoordfEXT));
   15367 }
   15368 
   15369 static inline void SET_FogCoordfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
   15370    SET_by_offset(disp, _gloffset_FogCoordfEXT, fn);
   15371 }
   15372 
   15373 typedef void (GLAPIENTRYP _glptr_FogCoordfvEXT)(const GLfloat *);
   15374 #define CALL_FogCoordfvEXT(disp, parameters) \
   15375     (* GET_FogCoordfvEXT(disp)) parameters
   15376 static inline _glptr_FogCoordfvEXT GET_FogCoordfvEXT(struct _glapi_table *disp) {
   15377    return (_glptr_FogCoordfvEXT) (GET_by_offset(disp, _gloffset_FogCoordfvEXT));
   15378 }
   15379 
   15380 static inline void SET_FogCoordfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   15381    SET_by_offset(disp, _gloffset_FogCoordfvEXT, fn);
   15382 }
   15383 
   15384 typedef void (GLAPIENTRYP _glptr_ResizeBuffersMESA)(void);
   15385 #define CALL_ResizeBuffersMESA(disp, parameters) \
   15386     (* GET_ResizeBuffersMESA(disp)) parameters
   15387 static inline _glptr_ResizeBuffersMESA GET_ResizeBuffersMESA(struct _glapi_table *disp) {
   15388    return (_glptr_ResizeBuffersMESA) (GET_by_offset(disp, _gloffset_ResizeBuffersMESA));
   15389 }
   15390 
   15391 static inline void SET_ResizeBuffersMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   15392    SET_by_offset(disp, _gloffset_ResizeBuffersMESA, fn);
   15393 }
   15394 
   15395 typedef void (GLAPIENTRYP _glptr_WindowPos4dMESA)(GLdouble, GLdouble, GLdouble, GLdouble);
   15396 #define CALL_WindowPos4dMESA(disp, parameters) \
   15397     (* GET_WindowPos4dMESA(disp)) parameters
   15398 static inline _glptr_WindowPos4dMESA GET_WindowPos4dMESA(struct _glapi_table *disp) {
   15399    return (_glptr_WindowPos4dMESA) (GET_by_offset(disp, _gloffset_WindowPos4dMESA));
   15400 }
   15401 
   15402 static inline void SET_WindowPos4dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
   15403    SET_by_offset(disp, _gloffset_WindowPos4dMESA, fn);
   15404 }
   15405 
   15406 typedef void (GLAPIENTRYP _glptr_WindowPos4dvMESA)(const GLdouble *);
   15407 #define CALL_WindowPos4dvMESA(disp, parameters) \
   15408     (* GET_WindowPos4dvMESA(disp)) parameters
   15409 static inline _glptr_WindowPos4dvMESA GET_WindowPos4dvMESA(struct _glapi_table *disp) {
   15410    return (_glptr_WindowPos4dvMESA) (GET_by_offset(disp, _gloffset_WindowPos4dvMESA));
   15411 }
   15412 
   15413 static inline void SET_WindowPos4dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
   15414    SET_by_offset(disp, _gloffset_WindowPos4dvMESA, fn);
   15415 }
   15416 
   15417 typedef void (GLAPIENTRYP _glptr_WindowPos4fMESA)(GLfloat, GLfloat, GLfloat, GLfloat);
   15418 #define CALL_WindowPos4fMESA(disp, parameters) \
   15419     (* GET_WindowPos4fMESA(disp)) parameters
   15420 static inline _glptr_WindowPos4fMESA GET_WindowPos4fMESA(struct _glapi_table *disp) {
   15421    return (_glptr_WindowPos4fMESA) (GET_by_offset(disp, _gloffset_WindowPos4fMESA));
   15422 }
   15423 
   15424 static inline void SET_WindowPos4fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
   15425    SET_by_offset(disp, _gloffset_WindowPos4fMESA, fn);
   15426 }
   15427 
   15428 typedef void (GLAPIENTRYP _glptr_WindowPos4fvMESA)(const GLfloat *);
   15429 #define CALL_WindowPos4fvMESA(disp, parameters) \
   15430     (* GET_WindowPos4fvMESA(disp)) parameters
   15431 static inline _glptr_WindowPos4fvMESA GET_WindowPos4fvMESA(struct _glapi_table *disp) {
   15432    return (_glptr_WindowPos4fvMESA) (GET_by_offset(disp, _gloffset_WindowPos4fvMESA));
   15433 }
   15434 
   15435 static inline void SET_WindowPos4fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
   15436    SET_by_offset(disp, _gloffset_WindowPos4fvMESA, fn);
   15437 }
   15438 
   15439 typedef void (GLAPIENTRYP _glptr_WindowPos4iMESA)(GLint, GLint, GLint, GLint);
   15440 #define CALL_WindowPos4iMESA(disp, parameters) \
   15441     (* GET_WindowPos4iMESA(disp)) parameters
   15442 static inline _glptr_WindowPos4iMESA GET_WindowPos4iMESA(struct _glapi_table *disp) {
   15443    return (_glptr_WindowPos4iMESA) (GET_by_offset(disp, _gloffset_WindowPos4iMESA));
   15444 }
   15445 
   15446 static inline void SET_WindowPos4iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   15447    SET_by_offset(disp, _gloffset_WindowPos4iMESA, fn);
   15448 }
   15449 
   15450 typedef void (GLAPIENTRYP _glptr_WindowPos4ivMESA)(const GLint *);
   15451 #define CALL_WindowPos4ivMESA(disp, parameters) \
   15452     (* GET_WindowPos4ivMESA(disp)) parameters
   15453 static inline _glptr_WindowPos4ivMESA GET_WindowPos4ivMESA(struct _glapi_table *disp) {
   15454    return (_glptr_WindowPos4ivMESA) (GET_by_offset(disp, _gloffset_WindowPos4ivMESA));
   15455 }
   15456 
   15457 static inline void SET_WindowPos4ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
   15458    SET_by_offset(disp, _gloffset_WindowPos4ivMESA, fn);
   15459 }
   15460 
   15461 typedef void (GLAPIENTRYP _glptr_WindowPos4sMESA)(GLshort, GLshort, GLshort, GLshort);
   15462 #define CALL_WindowPos4sMESA(disp, parameters) \
   15463     (* GET_WindowPos4sMESA(disp)) parameters
   15464 static inline _glptr_WindowPos4sMESA GET_WindowPos4sMESA(struct _glapi_table *disp) {
   15465    return (_glptr_WindowPos4sMESA) (GET_by_offset(disp, _gloffset_WindowPos4sMESA));
   15466 }
   15467 
   15468 static inline void SET_WindowPos4sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
   15469    SET_by_offset(disp, _gloffset_WindowPos4sMESA, fn);
   15470 }
   15471 
   15472 typedef void (GLAPIENTRYP _glptr_WindowPos4svMESA)(const GLshort *);
   15473 #define CALL_WindowPos4svMESA(disp, parameters) \
   15474     (* GET_WindowPos4svMESA(disp)) parameters
   15475 static inline _glptr_WindowPos4svMESA GET_WindowPos4svMESA(struct _glapi_table *disp) {
   15476    return (_glptr_WindowPos4svMESA) (GET_by_offset(disp, _gloffset_WindowPos4svMESA));
   15477 }
   15478 
   15479 static inline void SET_WindowPos4svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
   15480    SET_by_offset(disp, _gloffset_WindowPos4svMESA, fn);
   15481 }
   15482 
   15483 typedef void (GLAPIENTRYP _glptr_MultiModeDrawArraysIBM)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint);
   15484 #define CALL_MultiModeDrawArraysIBM(disp, parameters) \
   15485     (* GET_MultiModeDrawArraysIBM(disp)) parameters
   15486 static inline _glptr_MultiModeDrawArraysIBM GET_MultiModeDrawArraysIBM(struct _glapi_table *disp) {
   15487    return (_glptr_MultiModeDrawArraysIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM));
   15488 }
   15489 
   15490 static inline void SET_MultiModeDrawArraysIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint)) {
   15491    SET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM, fn);
   15492 }
   15493 
   15494 typedef void (GLAPIENTRYP _glptr_MultiModeDrawElementsIBM)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint);
   15495 #define CALL_MultiModeDrawElementsIBM(disp, parameters) \
   15496     (* GET_MultiModeDrawElementsIBM(disp)) parameters
   15497 static inline _glptr_MultiModeDrawElementsIBM GET_MultiModeDrawElementsIBM(struct _glapi_table *disp) {
   15498    return (_glptr_MultiModeDrawElementsIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM));
   15499 }
   15500 
   15501 static inline void SET_MultiModeDrawElementsIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint)) {
   15502    SET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM, fn);
   15503 }
   15504 
   15505 typedef GLboolean (GLAPIENTRYP _glptr_AreProgramsResidentNV)(GLsizei, const GLuint *, GLboolean *);
   15506 #define CALL_AreProgramsResidentNV(disp, parameters) \
   15507     (* GET_AreProgramsResidentNV(disp)) parameters
   15508 static inline _glptr_AreProgramsResidentNV GET_AreProgramsResidentNV(struct _glapi_table *disp) {
   15509    return (_glptr_AreProgramsResidentNV) (GET_by_offset(disp, _gloffset_AreProgramsResidentNV));
   15510 }
   15511 
   15512 static inline void SET_AreProgramsResidentNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
   15513    SET_by_offset(disp, _gloffset_AreProgramsResidentNV, fn);
   15514 }
   15515 
   15516 typedef void (GLAPIENTRYP _glptr_ExecuteProgramNV)(GLenum, GLuint, const GLfloat *);
   15517 #define CALL_ExecuteProgramNV(disp, parameters) \
   15518     (* GET_ExecuteProgramNV(disp)) parameters
   15519 static inline _glptr_ExecuteProgramNV GET_ExecuteProgramNV(struct _glapi_table *disp) {
   15520    return (_glptr_ExecuteProgramNV) (GET_by_offset(disp, _gloffset_ExecuteProgramNV));
   15521 }
   15522 
   15523 static inline void SET_ExecuteProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
   15524    SET_by_offset(disp, _gloffset_ExecuteProgramNV, fn);
   15525 }
   15526 
   15527 typedef void (GLAPIENTRYP _glptr_GetProgramParameterdvNV)(GLenum, GLuint, GLenum, GLdouble *);
   15528 #define CALL_GetProgramParameterdvNV(disp, parameters) \
   15529     (* GET_GetProgramParameterdvNV(disp)) parameters
   15530 static inline _glptr_GetProgramParameterdvNV GET_GetProgramParameterdvNV(struct _glapi_table *disp) {
   15531    return (_glptr_GetProgramParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterdvNV));
   15532 }
   15533 
   15534 static inline void SET_GetProgramParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLdouble *)) {
   15535    SET_by_offset(disp, _gloffset_GetProgramParameterdvNV, fn);
   15536 }
   15537 
   15538 typedef void (GLAPIENTRYP _glptr_GetProgramParameterfvNV)(GLenum, GLuint, GLenum, GLfloat *);
   15539 #define CALL_GetProgramParameterfvNV(disp, parameters) \
   15540     (* GET_GetProgramParameterfvNV(disp)) parameters
   15541 static inline _glptr_GetProgramParameterfvNV GET_GetProgramParameterfvNV(struct _glapi_table *disp) {
   15542    return (_glptr_GetProgramParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterfvNV));
   15543 }
   15544 
   15545 static inline void SET_GetProgramParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLfloat *)) {
   15546    SET_by_offset(disp, _gloffset_GetProgramParameterfvNV, fn);
   15547 }
   15548 
   15549 typedef void (GLAPIENTRYP _glptr_GetProgramStringNV)(GLuint, GLenum, GLubyte *);
   15550 #define CALL_GetProgramStringNV(disp, parameters) \
   15551     (* GET_GetProgramStringNV(disp)) parameters
   15552 static inline _glptr_GetProgramStringNV GET_GetProgramStringNV(struct _glapi_table *disp) {
   15553    return (_glptr_GetProgramStringNV) (GET_by_offset(disp, _gloffset_GetProgramStringNV));
   15554 }
   15555 
   15556 static inline void SET_GetProgramStringNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLubyte *)) {
   15557    SET_by_offset(disp, _gloffset_GetProgramStringNV, fn);
   15558 }
   15559 
   15560 typedef void (GLAPIENTRYP _glptr_GetProgramivNV)(GLuint, GLenum, GLint *);
   15561 #define CALL_GetProgramivNV(disp, parameters) \
   15562     (* GET_GetProgramivNV(disp)) parameters
   15563 static inline _glptr_GetProgramivNV GET_GetProgramivNV(struct _glapi_table *disp) {
   15564    return (_glptr_GetProgramivNV) (GET_by_offset(disp, _gloffset_GetProgramivNV));
   15565 }
   15566 
   15567 static inline void SET_GetProgramivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   15568    SET_by_offset(disp, _gloffset_GetProgramivNV, fn);
   15569 }
   15570 
   15571 typedef void (GLAPIENTRYP _glptr_GetTrackMatrixivNV)(GLenum, GLuint, GLenum, GLint *);
   15572 #define CALL_GetTrackMatrixivNV(disp, parameters) \
   15573     (* GET_GetTrackMatrixivNV(disp)) parameters
   15574 static inline _glptr_GetTrackMatrixivNV GET_GetTrackMatrixivNV(struct _glapi_table *disp) {
   15575    return (_glptr_GetTrackMatrixivNV) (GET_by_offset(disp, _gloffset_GetTrackMatrixivNV));
   15576 }
   15577 
   15578 static inline void SET_GetTrackMatrixivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
   15579    SET_by_offset(disp, _gloffset_GetTrackMatrixivNV, fn);
   15580 }
   15581 
   15582 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvNV)(GLuint, GLenum, GLdouble *);
   15583 #define CALL_GetVertexAttribdvNV(disp, parameters) \
   15584     (* GET_GetVertexAttribdvNV(disp)) parameters
   15585 static inline _glptr_GetVertexAttribdvNV GET_GetVertexAttribdvNV(struct _glapi_table *disp) {
   15586    return (_glptr_GetVertexAttribdvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribdvNV));
   15587 }
   15588 
   15589 static inline void SET_GetVertexAttribdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) {
   15590    SET_by_offset(disp, _gloffset_GetVertexAttribdvNV, fn);
   15591 }
   15592 
   15593 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvNV)(GLuint, GLenum, GLfloat *);
   15594 #define CALL_GetVertexAttribfvNV(disp, parameters) \
   15595     (* GET_GetVertexAttribfvNV(disp)) parameters
   15596 static inline _glptr_GetVertexAttribfvNV GET_GetVertexAttribfvNV(struct _glapi_table *disp) {
   15597    return (_glptr_GetVertexAttribfvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribfvNV));
   15598 }
   15599 
   15600 static inline void SET_GetVertexAttribfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) {
   15601    SET_by_offset(disp, _gloffset_GetVertexAttribfvNV, fn);
   15602 }
   15603 
   15604 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivNV)(GLuint, GLenum, GLint *);
   15605 #define CALL_GetVertexAttribivNV(disp, parameters) \
   15606     (* GET_GetVertexAttribivNV(disp)) parameters
   15607 static inline _glptr_GetVertexAttribivNV GET_GetVertexAttribivNV(struct _glapi_table *disp) {
   15608    return (_glptr_GetVertexAttribivNV) (GET_by_offset(disp, _gloffset_GetVertexAttribivNV));
   15609 }
   15610 
   15611 static inline void SET_GetVertexAttribivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   15612    SET_by_offset(disp, _gloffset_GetVertexAttribivNV, fn);
   15613 }
   15614 
   15615 typedef void (GLAPIENTRYP _glptr_LoadProgramNV)(GLenum, GLuint, GLsizei, const GLubyte *);
   15616 #define CALL_LoadProgramNV(disp, parameters) \
   15617     (* GET_LoadProgramNV(disp)) parameters
   15618 static inline _glptr_LoadProgramNV GET_LoadProgramNV(struct _glapi_table *disp) {
   15619    return (_glptr_LoadProgramNV) (GET_by_offset(disp, _gloffset_LoadProgramNV));
   15620 }
   15621 
   15622 static inline void SET_LoadProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLubyte *)) {
   15623    SET_by_offset(disp, _gloffset_LoadProgramNV, fn);
   15624 }
   15625 
   15626 typedef void (GLAPIENTRYP _glptr_ProgramParameters4dvNV)(GLenum, GLuint, GLsizei, const GLdouble *);
   15627 #define CALL_ProgramParameters4dvNV(disp, parameters) \
   15628     (* GET_ProgramParameters4dvNV(disp)) parameters
   15629 static inline _glptr_ProgramParameters4dvNV GET_ProgramParameters4dvNV(struct _glapi_table *disp) {
   15630    return (_glptr_ProgramParameters4dvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4dvNV));
   15631 }
   15632 
   15633 static inline void SET_ProgramParameters4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLdouble *)) {
   15634    SET_by_offset(disp, _gloffset_ProgramParameters4dvNV, fn);
   15635 }
   15636 
   15637 typedef void (GLAPIENTRYP _glptr_ProgramParameters4fvNV)(GLenum, GLuint, GLsizei, const GLfloat *);
   15638 #define CALL_ProgramParameters4fvNV(disp, parameters) \
   15639     (* GET_ProgramParameters4fvNV(disp)) parameters
   15640 static inline _glptr_ProgramParameters4fvNV GET_ProgramParameters4fvNV(struct _glapi_table *disp) {
   15641    return (_glptr_ProgramParameters4fvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4fvNV));
   15642 }
   15643 
   15644 static inline void SET_ProgramParameters4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
   15645    SET_by_offset(disp, _gloffset_ProgramParameters4fvNV, fn);
   15646 }
   15647 
   15648 typedef void (GLAPIENTRYP _glptr_RequestResidentProgramsNV)(GLsizei, const GLuint *);
   15649 #define CALL_RequestResidentProgramsNV(disp, parameters) \
   15650     (* GET_RequestResidentProgramsNV(disp)) parameters
   15651 static inline _glptr_RequestResidentProgramsNV GET_RequestResidentProgramsNV(struct _glapi_table *disp) {
   15652    return (_glptr_RequestResidentProgramsNV) (GET_by_offset(disp, _gloffset_RequestResidentProgramsNV));
   15653 }
   15654 
   15655 static inline void SET_RequestResidentProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   15656    SET_by_offset(disp, _gloffset_RequestResidentProgramsNV, fn);
   15657 }
   15658 
   15659 typedef void (GLAPIENTRYP _glptr_TrackMatrixNV)(GLenum, GLuint, GLenum, GLenum);
   15660 #define CALL_TrackMatrixNV(disp, parameters) \
   15661     (* GET_TrackMatrixNV(disp)) parameters
   15662 static inline _glptr_TrackMatrixNV GET_TrackMatrixNV(struct _glapi_table *disp) {
   15663    return (_glptr_TrackMatrixNV) (GET_by_offset(disp, _gloffset_TrackMatrixNV));
   15664 }
   15665 
   15666 static inline void SET_TrackMatrixNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLenum)) {
   15667    SET_by_offset(disp, _gloffset_TrackMatrixNV, fn);
   15668 }
   15669 
   15670 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dNV)(GLuint, GLdouble);
   15671 #define CALL_VertexAttrib1dNV(disp, parameters) \
   15672     (* GET_VertexAttrib1dNV(disp)) parameters
   15673 static inline _glptr_VertexAttrib1dNV GET_VertexAttrib1dNV(struct _glapi_table *disp) {
   15674    return (_glptr_VertexAttrib1dNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dNV));
   15675 }
   15676 
   15677 static inline void SET_VertexAttrib1dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
   15678    SET_by_offset(disp, _gloffset_VertexAttrib1dNV, fn);
   15679 }
   15680 
   15681 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvNV)(GLuint, const GLdouble *);
   15682 #define CALL_VertexAttrib1dvNV(disp, parameters) \
   15683     (* GET_VertexAttrib1dvNV(disp)) parameters
   15684 static inline _glptr_VertexAttrib1dvNV GET_VertexAttrib1dvNV(struct _glapi_table *disp) {
   15685    return (_glptr_VertexAttrib1dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dvNV));
   15686 }
   15687 
   15688 static inline void SET_VertexAttrib1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   15689    SET_by_offset(disp, _gloffset_VertexAttrib1dvNV, fn);
   15690 }
   15691 
   15692 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fNV)(GLuint, GLfloat);
   15693 #define CALL_VertexAttrib1fNV(disp, parameters) \
   15694     (* GET_VertexAttrib1fNV(disp)) parameters
   15695 static inline _glptr_VertexAttrib1fNV GET_VertexAttrib1fNV(struct _glapi_table *disp) {
   15696    return (_glptr_VertexAttrib1fNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fNV));
   15697 }
   15698 
   15699 static inline void SET_VertexAttrib1fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
   15700    SET_by_offset(disp, _gloffset_VertexAttrib1fNV, fn);
   15701 }
   15702 
   15703 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvNV)(GLuint, const GLfloat *);
   15704 #define CALL_VertexAttrib1fvNV(disp, parameters) \
   15705     (* GET_VertexAttrib1fvNV(disp)) parameters
   15706 static inline _glptr_VertexAttrib1fvNV GET_VertexAttrib1fvNV(struct _glapi_table *disp) {
   15707    return (_glptr_VertexAttrib1fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fvNV));
   15708 }
   15709 
   15710 static inline void SET_VertexAttrib1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   15711    SET_by_offset(disp, _gloffset_VertexAttrib1fvNV, fn);
   15712 }
   15713 
   15714 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sNV)(GLuint, GLshort);
   15715 #define CALL_VertexAttrib1sNV(disp, parameters) \
   15716     (* GET_VertexAttrib1sNV(disp)) parameters
   15717 static inline _glptr_VertexAttrib1sNV GET_VertexAttrib1sNV(struct _glapi_table *disp) {
   15718    return (_glptr_VertexAttrib1sNV) (GET_by_offset(disp, _gloffset_VertexAttrib1sNV));
   15719 }
   15720 
   15721 static inline void SET_VertexAttrib1sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
   15722    SET_by_offset(disp, _gloffset_VertexAttrib1sNV, fn);
   15723 }
   15724 
   15725 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svNV)(GLuint, const GLshort *);
   15726 #define CALL_VertexAttrib1svNV(disp, parameters) \
   15727     (* GET_VertexAttrib1svNV(disp)) parameters
   15728 static inline _glptr_VertexAttrib1svNV GET_VertexAttrib1svNV(struct _glapi_table *disp) {
   15729    return (_glptr_VertexAttrib1svNV) (GET_by_offset(disp, _gloffset_VertexAttrib1svNV));
   15730 }
   15731 
   15732 static inline void SET_VertexAttrib1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   15733    SET_by_offset(disp, _gloffset_VertexAttrib1svNV, fn);
   15734 }
   15735 
   15736 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dNV)(GLuint, GLdouble, GLdouble);
   15737 #define CALL_VertexAttrib2dNV(disp, parameters) \
   15738     (* GET_VertexAttrib2dNV(disp)) parameters
   15739 static inline _glptr_VertexAttrib2dNV GET_VertexAttrib2dNV(struct _glapi_table *disp) {
   15740    return (_glptr_VertexAttrib2dNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dNV));
   15741 }
   15742 
   15743 static inline void SET_VertexAttrib2dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
   15744    SET_by_offset(disp, _gloffset_VertexAttrib2dNV, fn);
   15745 }
   15746 
   15747 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvNV)(GLuint, const GLdouble *);
   15748 #define CALL_VertexAttrib2dvNV(disp, parameters) \
   15749     (* GET_VertexAttrib2dvNV(disp)) parameters
   15750 static inline _glptr_VertexAttrib2dvNV GET_VertexAttrib2dvNV(struct _glapi_table *disp) {
   15751    return (_glptr_VertexAttrib2dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dvNV));
   15752 }
   15753 
   15754 static inline void SET_VertexAttrib2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   15755    SET_by_offset(disp, _gloffset_VertexAttrib2dvNV, fn);
   15756 }
   15757 
   15758 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fNV)(GLuint, GLfloat, GLfloat);
   15759 #define CALL_VertexAttrib2fNV(disp, parameters) \
   15760     (* GET_VertexAttrib2fNV(disp)) parameters
   15761 static inline _glptr_VertexAttrib2fNV GET_VertexAttrib2fNV(struct _glapi_table *disp) {
   15762    return (_glptr_VertexAttrib2fNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fNV));
   15763 }
   15764 
   15765 static inline void SET_VertexAttrib2fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
   15766    SET_by_offset(disp, _gloffset_VertexAttrib2fNV, fn);
   15767 }
   15768 
   15769 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvNV)(GLuint, const GLfloat *);
   15770 #define CALL_VertexAttrib2fvNV(disp, parameters) \
   15771     (* GET_VertexAttrib2fvNV(disp)) parameters
   15772 static inline _glptr_VertexAttrib2fvNV GET_VertexAttrib2fvNV(struct _glapi_table *disp) {
   15773    return (_glptr_VertexAttrib2fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fvNV));
   15774 }
   15775 
   15776 static inline void SET_VertexAttrib2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   15777    SET_by_offset(disp, _gloffset_VertexAttrib2fvNV, fn);
   15778 }
   15779 
   15780 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sNV)(GLuint, GLshort, GLshort);
   15781 #define CALL_VertexAttrib2sNV(disp, parameters) \
   15782     (* GET_VertexAttrib2sNV(disp)) parameters
   15783 static inline _glptr_VertexAttrib2sNV GET_VertexAttrib2sNV(struct _glapi_table *disp) {
   15784    return (_glptr_VertexAttrib2sNV) (GET_by_offset(disp, _gloffset_VertexAttrib2sNV));
   15785 }
   15786 
   15787 static inline void SET_VertexAttrib2sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
   15788    SET_by_offset(disp, _gloffset_VertexAttrib2sNV, fn);
   15789 }
   15790 
   15791 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svNV)(GLuint, const GLshort *);
   15792 #define CALL_VertexAttrib2svNV(disp, parameters) \
   15793     (* GET_VertexAttrib2svNV(disp)) parameters
   15794 static inline _glptr_VertexAttrib2svNV GET_VertexAttrib2svNV(struct _glapi_table *disp) {
   15795    return (_glptr_VertexAttrib2svNV) (GET_by_offset(disp, _gloffset_VertexAttrib2svNV));
   15796 }
   15797 
   15798 static inline void SET_VertexAttrib2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   15799    SET_by_offset(disp, _gloffset_VertexAttrib2svNV, fn);
   15800 }
   15801 
   15802 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dNV)(GLuint, GLdouble, GLdouble, GLdouble);
   15803 #define CALL_VertexAttrib3dNV(disp, parameters) \
   15804     (* GET_VertexAttrib3dNV(disp)) parameters
   15805 static inline _glptr_VertexAttrib3dNV GET_VertexAttrib3dNV(struct _glapi_table *disp) {
   15806    return (_glptr_VertexAttrib3dNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dNV));
   15807 }
   15808 
   15809 static inline void SET_VertexAttrib3dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
   15810    SET_by_offset(disp, _gloffset_VertexAttrib3dNV, fn);
   15811 }
   15812 
   15813 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvNV)(GLuint, const GLdouble *);
   15814 #define CALL_VertexAttrib3dvNV(disp, parameters) \
   15815     (* GET_VertexAttrib3dvNV(disp)) parameters
   15816 static inline _glptr_VertexAttrib3dvNV GET_VertexAttrib3dvNV(struct _glapi_table *disp) {
   15817    return (_glptr_VertexAttrib3dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dvNV));
   15818 }
   15819 
   15820 static inline void SET_VertexAttrib3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   15821    SET_by_offset(disp, _gloffset_VertexAttrib3dvNV, fn);
   15822 }
   15823 
   15824 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fNV)(GLuint, GLfloat, GLfloat, GLfloat);
   15825 #define CALL_VertexAttrib3fNV(disp, parameters) \
   15826     (* GET_VertexAttrib3fNV(disp)) parameters
   15827 static inline _glptr_VertexAttrib3fNV GET_VertexAttrib3fNV(struct _glapi_table *disp) {
   15828    return (_glptr_VertexAttrib3fNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fNV));
   15829 }
   15830 
   15831 static inline void SET_VertexAttrib3fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
   15832    SET_by_offset(disp, _gloffset_VertexAttrib3fNV, fn);
   15833 }
   15834 
   15835 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvNV)(GLuint, const GLfloat *);
   15836 #define CALL_VertexAttrib3fvNV(disp, parameters) \
   15837     (* GET_VertexAttrib3fvNV(disp)) parameters
   15838 static inline _glptr_VertexAttrib3fvNV GET_VertexAttrib3fvNV(struct _glapi_table *disp) {
   15839    return (_glptr_VertexAttrib3fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fvNV));
   15840 }
   15841 
   15842 static inline void SET_VertexAttrib3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   15843    SET_by_offset(disp, _gloffset_VertexAttrib3fvNV, fn);
   15844 }
   15845 
   15846 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sNV)(GLuint, GLshort, GLshort, GLshort);
   15847 #define CALL_VertexAttrib3sNV(disp, parameters) \
   15848     (* GET_VertexAttrib3sNV(disp)) parameters
   15849 static inline _glptr_VertexAttrib3sNV GET_VertexAttrib3sNV(struct _glapi_table *disp) {
   15850    return (_glptr_VertexAttrib3sNV) (GET_by_offset(disp, _gloffset_VertexAttrib3sNV));
   15851 }
   15852 
   15853 static inline void SET_VertexAttrib3sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
   15854    SET_by_offset(disp, _gloffset_VertexAttrib3sNV, fn);
   15855 }
   15856 
   15857 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svNV)(GLuint, const GLshort *);
   15858 #define CALL_VertexAttrib3svNV(disp, parameters) \
   15859     (* GET_VertexAttrib3svNV(disp)) parameters
   15860 static inline _glptr_VertexAttrib3svNV GET_VertexAttrib3svNV(struct _glapi_table *disp) {
   15861    return (_glptr_VertexAttrib3svNV) (GET_by_offset(disp, _gloffset_VertexAttrib3svNV));
   15862 }
   15863 
   15864 static inline void SET_VertexAttrib3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   15865    SET_by_offset(disp, _gloffset_VertexAttrib3svNV, fn);
   15866 }
   15867 
   15868 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dNV)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
   15869 #define CALL_VertexAttrib4dNV(disp, parameters) \
   15870     (* GET_VertexAttrib4dNV(disp)) parameters
   15871 static inline _glptr_VertexAttrib4dNV GET_VertexAttrib4dNV(struct _glapi_table *disp) {
   15872    return (_glptr_VertexAttrib4dNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dNV));
   15873 }
   15874 
   15875 static inline void SET_VertexAttrib4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
   15876    SET_by_offset(disp, _gloffset_VertexAttrib4dNV, fn);
   15877 }
   15878 
   15879 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvNV)(GLuint, const GLdouble *);
   15880 #define CALL_VertexAttrib4dvNV(disp, parameters) \
   15881     (* GET_VertexAttrib4dvNV(disp)) parameters
   15882 static inline _glptr_VertexAttrib4dvNV GET_VertexAttrib4dvNV(struct _glapi_table *disp) {
   15883    return (_glptr_VertexAttrib4dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dvNV));
   15884 }
   15885 
   15886 static inline void SET_VertexAttrib4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
   15887    SET_by_offset(disp, _gloffset_VertexAttrib4dvNV, fn);
   15888 }
   15889 
   15890 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fNV)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
   15891 #define CALL_VertexAttrib4fNV(disp, parameters) \
   15892     (* GET_VertexAttrib4fNV(disp)) parameters
   15893 static inline _glptr_VertexAttrib4fNV GET_VertexAttrib4fNV(struct _glapi_table *disp) {
   15894    return (_glptr_VertexAttrib4fNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fNV));
   15895 }
   15896 
   15897 static inline void SET_VertexAttrib4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
   15898    SET_by_offset(disp, _gloffset_VertexAttrib4fNV, fn);
   15899 }
   15900 
   15901 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvNV)(GLuint, const GLfloat *);
   15902 #define CALL_VertexAttrib4fvNV(disp, parameters) \
   15903     (* GET_VertexAttrib4fvNV(disp)) parameters
   15904 static inline _glptr_VertexAttrib4fvNV GET_VertexAttrib4fvNV(struct _glapi_table *disp) {
   15905    return (_glptr_VertexAttrib4fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fvNV));
   15906 }
   15907 
   15908 static inline void SET_VertexAttrib4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   15909    SET_by_offset(disp, _gloffset_VertexAttrib4fvNV, fn);
   15910 }
   15911 
   15912 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sNV)(GLuint, GLshort, GLshort, GLshort, GLshort);
   15913 #define CALL_VertexAttrib4sNV(disp, parameters) \
   15914     (* GET_VertexAttrib4sNV(disp)) parameters
   15915 static inline _glptr_VertexAttrib4sNV GET_VertexAttrib4sNV(struct _glapi_table *disp) {
   15916    return (_glptr_VertexAttrib4sNV) (GET_by_offset(disp, _gloffset_VertexAttrib4sNV));
   15917 }
   15918 
   15919 static inline void SET_VertexAttrib4sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
   15920    SET_by_offset(disp, _gloffset_VertexAttrib4sNV, fn);
   15921 }
   15922 
   15923 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svNV)(GLuint, const GLshort *);
   15924 #define CALL_VertexAttrib4svNV(disp, parameters) \
   15925     (* GET_VertexAttrib4svNV(disp)) parameters
   15926 static inline _glptr_VertexAttrib4svNV GET_VertexAttrib4svNV(struct _glapi_table *disp) {
   15927    return (_glptr_VertexAttrib4svNV) (GET_by_offset(disp, _gloffset_VertexAttrib4svNV));
   15928 }
   15929 
   15930 static inline void SET_VertexAttrib4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
   15931    SET_by_offset(disp, _gloffset_VertexAttrib4svNV, fn);
   15932 }
   15933 
   15934 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubNV)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
   15935 #define CALL_VertexAttrib4ubNV(disp, parameters) \
   15936     (* GET_VertexAttrib4ubNV(disp)) parameters
   15937 static inline _glptr_VertexAttrib4ubNV GET_VertexAttrib4ubNV(struct _glapi_table *disp) {
   15938    return (_glptr_VertexAttrib4ubNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubNV));
   15939 }
   15940 
   15941 static inline void SET_VertexAttrib4ubNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
   15942    SET_by_offset(disp, _gloffset_VertexAttrib4ubNV, fn);
   15943 }
   15944 
   15945 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvNV)(GLuint, const GLubyte *);
   15946 #define CALL_VertexAttrib4ubvNV(disp, parameters) \
   15947     (* GET_VertexAttrib4ubvNV(disp)) parameters
   15948 static inline _glptr_VertexAttrib4ubvNV GET_VertexAttrib4ubvNV(struct _glapi_table *disp) {
   15949    return (_glptr_VertexAttrib4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvNV));
   15950 }
   15951 
   15952 static inline void SET_VertexAttrib4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
   15953    SET_by_offset(disp, _gloffset_VertexAttrib4ubvNV, fn);
   15954 }
   15955 
   15956 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerNV)(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
   15957 #define CALL_VertexAttribPointerNV(disp, parameters) \
   15958     (* GET_VertexAttribPointerNV(disp)) parameters
   15959 static inline _glptr_VertexAttribPointerNV GET_VertexAttribPointerNV(struct _glapi_table *disp) {
   15960    return (_glptr_VertexAttribPointerNV) (GET_by_offset(disp, _gloffset_VertexAttribPointerNV));
   15961 }
   15962 
   15963 static inline void SET_VertexAttribPointerNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) {
   15964    SET_by_offset(disp, _gloffset_VertexAttribPointerNV, fn);
   15965 }
   15966 
   15967 typedef void (GLAPIENTRYP _glptr_VertexAttribs1dvNV)(GLuint, GLsizei, const GLdouble *);
   15968 #define CALL_VertexAttribs1dvNV(disp, parameters) \
   15969     (* GET_VertexAttribs1dvNV(disp)) parameters
   15970 static inline _glptr_VertexAttribs1dvNV GET_VertexAttribs1dvNV(struct _glapi_table *disp) {
   15971    return (_glptr_VertexAttribs1dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1dvNV));
   15972 }
   15973 
   15974 static inline void SET_VertexAttribs1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
   15975    SET_by_offset(disp, _gloffset_VertexAttribs1dvNV, fn);
   15976 }
   15977 
   15978 typedef void (GLAPIENTRYP _glptr_VertexAttribs1fvNV)(GLuint, GLsizei, const GLfloat *);
   15979 #define CALL_VertexAttribs1fvNV(disp, parameters) \
   15980     (* GET_VertexAttribs1fvNV(disp)) parameters
   15981 static inline _glptr_VertexAttribs1fvNV GET_VertexAttribs1fvNV(struct _glapi_table *disp) {
   15982    return (_glptr_VertexAttribs1fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1fvNV));
   15983 }
   15984 
   15985 static inline void SET_VertexAttribs1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
   15986    SET_by_offset(disp, _gloffset_VertexAttribs1fvNV, fn);
   15987 }
   15988 
   15989 typedef void (GLAPIENTRYP _glptr_VertexAttribs1svNV)(GLuint, GLsizei, const GLshort *);
   15990 #define CALL_VertexAttribs1svNV(disp, parameters) \
   15991     (* GET_VertexAttribs1svNV(disp)) parameters
   15992 static inline _glptr_VertexAttribs1svNV GET_VertexAttribs1svNV(struct _glapi_table *disp) {
   15993    return (_glptr_VertexAttribs1svNV) (GET_by_offset(disp, _gloffset_VertexAttribs1svNV));
   15994 }
   15995 
   15996 static inline void SET_VertexAttribs1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
   15997    SET_by_offset(disp, _gloffset_VertexAttribs1svNV, fn);
   15998 }
   15999 
   16000 typedef void (GLAPIENTRYP _glptr_VertexAttribs2dvNV)(GLuint, GLsizei, const GLdouble *);
   16001 #define CALL_VertexAttribs2dvNV(disp, parameters) \
   16002     (* GET_VertexAttribs2dvNV(disp)) parameters
   16003 static inline _glptr_VertexAttribs2dvNV GET_VertexAttribs2dvNV(struct _glapi_table *disp) {
   16004    return (_glptr_VertexAttribs2dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2dvNV));
   16005 }
   16006 
   16007 static inline void SET_VertexAttribs2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
   16008    SET_by_offset(disp, _gloffset_VertexAttribs2dvNV, fn);
   16009 }
   16010 
   16011 typedef void (GLAPIENTRYP _glptr_VertexAttribs2fvNV)(GLuint, GLsizei, const GLfloat *);
   16012 #define CALL_VertexAttribs2fvNV(disp, parameters) \
   16013     (* GET_VertexAttribs2fvNV(disp)) parameters
   16014 static inline _glptr_VertexAttribs2fvNV GET_VertexAttribs2fvNV(struct _glapi_table *disp) {
   16015    return (_glptr_VertexAttribs2fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2fvNV));
   16016 }
   16017 
   16018 static inline void SET_VertexAttribs2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
   16019    SET_by_offset(disp, _gloffset_VertexAttribs2fvNV, fn);
   16020 }
   16021 
   16022 typedef void (GLAPIENTRYP _glptr_VertexAttribs2svNV)(GLuint, GLsizei, const GLshort *);
   16023 #define CALL_VertexAttribs2svNV(disp, parameters) \
   16024     (* GET_VertexAttribs2svNV(disp)) parameters
   16025 static inline _glptr_VertexAttribs2svNV GET_VertexAttribs2svNV(struct _glapi_table *disp) {
   16026    return (_glptr_VertexAttribs2svNV) (GET_by_offset(disp, _gloffset_VertexAttribs2svNV));
   16027 }
   16028 
   16029 static inline void SET_VertexAttribs2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
   16030    SET_by_offset(disp, _gloffset_VertexAttribs2svNV, fn);
   16031 }
   16032 
   16033 typedef void (GLAPIENTRYP _glptr_VertexAttribs3dvNV)(GLuint, GLsizei, const GLdouble *);
   16034 #define CALL_VertexAttribs3dvNV(disp, parameters) \
   16035     (* GET_VertexAttribs3dvNV(disp)) parameters
   16036 static inline _glptr_VertexAttribs3dvNV GET_VertexAttribs3dvNV(struct _glapi_table *disp) {
   16037    return (_glptr_VertexAttribs3dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3dvNV));
   16038 }
   16039 
   16040 static inline void SET_VertexAttribs3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
   16041    SET_by_offset(disp, _gloffset_VertexAttribs3dvNV, fn);
   16042 }
   16043 
   16044 typedef void (GLAPIENTRYP _glptr_VertexAttribs3fvNV)(GLuint, GLsizei, const GLfloat *);
   16045 #define CALL_VertexAttribs3fvNV(disp, parameters) \
   16046     (* GET_VertexAttribs3fvNV(disp)) parameters
   16047 static inline _glptr_VertexAttribs3fvNV GET_VertexAttribs3fvNV(struct _glapi_table *disp) {
   16048    return (_glptr_VertexAttribs3fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3fvNV));
   16049 }
   16050 
   16051 static inline void SET_VertexAttribs3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
   16052    SET_by_offset(disp, _gloffset_VertexAttribs3fvNV, fn);
   16053 }
   16054 
   16055 typedef void (GLAPIENTRYP _glptr_VertexAttribs3svNV)(GLuint, GLsizei, const GLshort *);
   16056 #define CALL_VertexAttribs3svNV(disp, parameters) \
   16057     (* GET_VertexAttribs3svNV(disp)) parameters
   16058 static inline _glptr_VertexAttribs3svNV GET_VertexAttribs3svNV(struct _glapi_table *disp) {
   16059    return (_glptr_VertexAttribs3svNV) (GET_by_offset(disp, _gloffset_VertexAttribs3svNV));
   16060 }
   16061 
   16062 static inline void SET_VertexAttribs3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
   16063    SET_by_offset(disp, _gloffset_VertexAttribs3svNV, fn);
   16064 }
   16065 
   16066 typedef void (GLAPIENTRYP _glptr_VertexAttribs4dvNV)(GLuint, GLsizei, const GLdouble *);
   16067 #define CALL_VertexAttribs4dvNV(disp, parameters) \
   16068     (* GET_VertexAttribs4dvNV(disp)) parameters
   16069 static inline _glptr_VertexAttribs4dvNV GET_VertexAttribs4dvNV(struct _glapi_table *disp) {
   16070    return (_glptr_VertexAttribs4dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4dvNV));
   16071 }
   16072 
   16073 static inline void SET_VertexAttribs4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
   16074    SET_by_offset(disp, _gloffset_VertexAttribs4dvNV, fn);
   16075 }
   16076 
   16077 typedef void (GLAPIENTRYP _glptr_VertexAttribs4fvNV)(GLuint, GLsizei, const GLfloat *);
   16078 #define CALL_VertexAttribs4fvNV(disp, parameters) \
   16079     (* GET_VertexAttribs4fvNV(disp)) parameters
   16080 static inline _glptr_VertexAttribs4fvNV GET_VertexAttribs4fvNV(struct _glapi_table *disp) {
   16081    return (_glptr_VertexAttribs4fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4fvNV));
   16082 }
   16083 
   16084 static inline void SET_VertexAttribs4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
   16085    SET_by_offset(disp, _gloffset_VertexAttribs4fvNV, fn);
   16086 }
   16087 
   16088 typedef void (GLAPIENTRYP _glptr_VertexAttribs4svNV)(GLuint, GLsizei, const GLshort *);
   16089 #define CALL_VertexAttribs4svNV(disp, parameters) \
   16090     (* GET_VertexAttribs4svNV(disp)) parameters
   16091 static inline _glptr_VertexAttribs4svNV GET_VertexAttribs4svNV(struct _glapi_table *disp) {
   16092    return (_glptr_VertexAttribs4svNV) (GET_by_offset(disp, _gloffset_VertexAttribs4svNV));
   16093 }
   16094 
   16095 static inline void SET_VertexAttribs4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
   16096    SET_by_offset(disp, _gloffset_VertexAttribs4svNV, fn);
   16097 }
   16098 
   16099 typedef void (GLAPIENTRYP _glptr_VertexAttribs4ubvNV)(GLuint, GLsizei, const GLubyte *);
   16100 #define CALL_VertexAttribs4ubvNV(disp, parameters) \
   16101     (* GET_VertexAttribs4ubvNV(disp)) parameters
   16102 static inline _glptr_VertexAttribs4ubvNV GET_VertexAttribs4ubvNV(struct _glapi_table *disp) {
   16103    return (_glptr_VertexAttribs4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4ubvNV));
   16104 }
   16105 
   16106 static inline void SET_VertexAttribs4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *)) {
   16107    SET_by_offset(disp, _gloffset_VertexAttribs4ubvNV, fn);
   16108 }
   16109 
   16110 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterfvATI)(GLenum, GLfloat *);
   16111 #define CALL_GetTexBumpParameterfvATI(disp, parameters) \
   16112     (* GET_GetTexBumpParameterfvATI(disp)) parameters
   16113 static inline _glptr_GetTexBumpParameterfvATI GET_GetTexBumpParameterfvATI(struct _glapi_table *disp) {
   16114    return (_glptr_GetTexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI));
   16115 }
   16116 
   16117 static inline void SET_GetTexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
   16118    SET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI, fn);
   16119 }
   16120 
   16121 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterivATI)(GLenum, GLint *);
   16122 #define CALL_GetTexBumpParameterivATI(disp, parameters) \
   16123     (* GET_GetTexBumpParameterivATI(disp)) parameters
   16124 static inline _glptr_GetTexBumpParameterivATI GET_GetTexBumpParameterivATI(struct _glapi_table *disp) {
   16125    return (_glptr_GetTexBumpParameterivATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterivATI));
   16126 }
   16127 
   16128 static inline void SET_GetTexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
   16129    SET_by_offset(disp, _gloffset_GetTexBumpParameterivATI, fn);
   16130 }
   16131 
   16132 typedef void (GLAPIENTRYP _glptr_TexBumpParameterfvATI)(GLenum, const GLfloat *);
   16133 #define CALL_TexBumpParameterfvATI(disp, parameters) \
   16134     (* GET_TexBumpParameterfvATI(disp)) parameters
   16135 static inline _glptr_TexBumpParameterfvATI GET_TexBumpParameterfvATI(struct _glapi_table *disp) {
   16136    return (_glptr_TexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_TexBumpParameterfvATI));
   16137 }
   16138 
   16139 static inline void SET_TexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   16140    SET_by_offset(disp, _gloffset_TexBumpParameterfvATI, fn);
   16141 }
   16142 
   16143 typedef void (GLAPIENTRYP _glptr_TexBumpParameterivATI)(GLenum, const GLint *);
   16144 #define CALL_TexBumpParameterivATI(disp, parameters) \
   16145     (* GET_TexBumpParameterivATI(disp)) parameters
   16146 static inline _glptr_TexBumpParameterivATI GET_TexBumpParameterivATI(struct _glapi_table *disp) {
   16147    return (_glptr_TexBumpParameterivATI) (GET_by_offset(disp, _gloffset_TexBumpParameterivATI));
   16148 }
   16149 
   16150 static inline void SET_TexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
   16151    SET_by_offset(disp, _gloffset_TexBumpParameterivATI, fn);
   16152 }
   16153 
   16154 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp1ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint);
   16155 #define CALL_AlphaFragmentOp1ATI(disp, parameters) \
   16156     (* GET_AlphaFragmentOp1ATI(disp)) parameters
   16157 static inline _glptr_AlphaFragmentOp1ATI GET_AlphaFragmentOp1ATI(struct _glapi_table *disp) {
   16158    return (_glptr_AlphaFragmentOp1ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp1ATI));
   16159 }
   16160 
   16161 static inline void SET_AlphaFragmentOp1ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16162    SET_by_offset(disp, _gloffset_AlphaFragmentOp1ATI, fn);
   16163 }
   16164 
   16165 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp2ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
   16166 #define CALL_AlphaFragmentOp2ATI(disp, parameters) \
   16167     (* GET_AlphaFragmentOp2ATI(disp)) parameters
   16168 static inline _glptr_AlphaFragmentOp2ATI GET_AlphaFragmentOp2ATI(struct _glapi_table *disp) {
   16169    return (_glptr_AlphaFragmentOp2ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp2ATI));
   16170 }
   16171 
   16172 static inline void SET_AlphaFragmentOp2ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16173    SET_by_offset(disp, _gloffset_AlphaFragmentOp2ATI, fn);
   16174 }
   16175 
   16176 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp3ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
   16177 #define CALL_AlphaFragmentOp3ATI(disp, parameters) \
   16178     (* GET_AlphaFragmentOp3ATI(disp)) parameters
   16179 static inline _glptr_AlphaFragmentOp3ATI GET_AlphaFragmentOp3ATI(struct _glapi_table *disp) {
   16180    return (_glptr_AlphaFragmentOp3ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp3ATI));
   16181 }
   16182 
   16183 static inline void SET_AlphaFragmentOp3ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16184    SET_by_offset(disp, _gloffset_AlphaFragmentOp3ATI, fn);
   16185 }
   16186 
   16187 typedef void (GLAPIENTRYP _glptr_BeginFragmentShaderATI)(void);
   16188 #define CALL_BeginFragmentShaderATI(disp, parameters) \
   16189     (* GET_BeginFragmentShaderATI(disp)) parameters
   16190 static inline _glptr_BeginFragmentShaderATI GET_BeginFragmentShaderATI(struct _glapi_table *disp) {
   16191    return (_glptr_BeginFragmentShaderATI) (GET_by_offset(disp, _gloffset_BeginFragmentShaderATI));
   16192 }
   16193 
   16194 static inline void SET_BeginFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   16195    SET_by_offset(disp, _gloffset_BeginFragmentShaderATI, fn);
   16196 }
   16197 
   16198 typedef void (GLAPIENTRYP _glptr_BindFragmentShaderATI)(GLuint);
   16199 #define CALL_BindFragmentShaderATI(disp, parameters) \
   16200     (* GET_BindFragmentShaderATI(disp)) parameters
   16201 static inline _glptr_BindFragmentShaderATI GET_BindFragmentShaderATI(struct _glapi_table *disp) {
   16202    return (_glptr_BindFragmentShaderATI) (GET_by_offset(disp, _gloffset_BindFragmentShaderATI));
   16203 }
   16204 
   16205 static inline void SET_BindFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   16206    SET_by_offset(disp, _gloffset_BindFragmentShaderATI, fn);
   16207 }
   16208 
   16209 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp1ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
   16210 #define CALL_ColorFragmentOp1ATI(disp, parameters) \
   16211     (* GET_ColorFragmentOp1ATI(disp)) parameters
   16212 static inline _glptr_ColorFragmentOp1ATI GET_ColorFragmentOp1ATI(struct _glapi_table *disp) {
   16213    return (_glptr_ColorFragmentOp1ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp1ATI));
   16214 }
   16215 
   16216 static inline void SET_ColorFragmentOp1ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16217    SET_by_offset(disp, _gloffset_ColorFragmentOp1ATI, fn);
   16218 }
   16219 
   16220 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp2ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
   16221 #define CALL_ColorFragmentOp2ATI(disp, parameters) \
   16222     (* GET_ColorFragmentOp2ATI(disp)) parameters
   16223 static inline _glptr_ColorFragmentOp2ATI GET_ColorFragmentOp2ATI(struct _glapi_table *disp) {
   16224    return (_glptr_ColorFragmentOp2ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp2ATI));
   16225 }
   16226 
   16227 static inline void SET_ColorFragmentOp2ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16228    SET_by_offset(disp, _gloffset_ColorFragmentOp2ATI, fn);
   16229 }
   16230 
   16231 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp3ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
   16232 #define CALL_ColorFragmentOp3ATI(disp, parameters) \
   16233     (* GET_ColorFragmentOp3ATI(disp)) parameters
   16234 static inline _glptr_ColorFragmentOp3ATI GET_ColorFragmentOp3ATI(struct _glapi_table *disp) {
   16235    return (_glptr_ColorFragmentOp3ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp3ATI));
   16236 }
   16237 
   16238 static inline void SET_ColorFragmentOp3ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16239    SET_by_offset(disp, _gloffset_ColorFragmentOp3ATI, fn);
   16240 }
   16241 
   16242 typedef void (GLAPIENTRYP _glptr_DeleteFragmentShaderATI)(GLuint);
   16243 #define CALL_DeleteFragmentShaderATI(disp, parameters) \
   16244     (* GET_DeleteFragmentShaderATI(disp)) parameters
   16245 static inline _glptr_DeleteFragmentShaderATI GET_DeleteFragmentShaderATI(struct _glapi_table *disp) {
   16246    return (_glptr_DeleteFragmentShaderATI) (GET_by_offset(disp, _gloffset_DeleteFragmentShaderATI));
   16247 }
   16248 
   16249 static inline void SET_DeleteFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   16250    SET_by_offset(disp, _gloffset_DeleteFragmentShaderATI, fn);
   16251 }
   16252 
   16253 typedef void (GLAPIENTRYP _glptr_EndFragmentShaderATI)(void);
   16254 #define CALL_EndFragmentShaderATI(disp, parameters) \
   16255     (* GET_EndFragmentShaderATI(disp)) parameters
   16256 static inline _glptr_EndFragmentShaderATI GET_EndFragmentShaderATI(struct _glapi_table *disp) {
   16257    return (_glptr_EndFragmentShaderATI) (GET_by_offset(disp, _gloffset_EndFragmentShaderATI));
   16258 }
   16259 
   16260 static inline void SET_EndFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   16261    SET_by_offset(disp, _gloffset_EndFragmentShaderATI, fn);
   16262 }
   16263 
   16264 typedef GLuint (GLAPIENTRYP _glptr_GenFragmentShadersATI)(GLuint);
   16265 #define CALL_GenFragmentShadersATI(disp, parameters) \
   16266     (* GET_GenFragmentShadersATI(disp)) parameters
   16267 static inline _glptr_GenFragmentShadersATI GET_GenFragmentShadersATI(struct _glapi_table *disp) {
   16268    return (_glptr_GenFragmentShadersATI) (GET_by_offset(disp, _gloffset_GenFragmentShadersATI));
   16269 }
   16270 
   16271 static inline void SET_GenFragmentShadersATI(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint)) {
   16272    SET_by_offset(disp, _gloffset_GenFragmentShadersATI, fn);
   16273 }
   16274 
   16275 typedef void (GLAPIENTRYP _glptr_PassTexCoordATI)(GLuint, GLuint, GLenum);
   16276 #define CALL_PassTexCoordATI(disp, parameters) \
   16277     (* GET_PassTexCoordATI(disp)) parameters
   16278 static inline _glptr_PassTexCoordATI GET_PassTexCoordATI(struct _glapi_table *disp) {
   16279    return (_glptr_PassTexCoordATI) (GET_by_offset(disp, _gloffset_PassTexCoordATI));
   16280 }
   16281 
   16282 static inline void SET_PassTexCoordATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum)) {
   16283    SET_by_offset(disp, _gloffset_PassTexCoordATI, fn);
   16284 }
   16285 
   16286 typedef void (GLAPIENTRYP _glptr_SampleMapATI)(GLuint, GLuint, GLenum);
   16287 #define CALL_SampleMapATI(disp, parameters) \
   16288     (* GET_SampleMapATI(disp)) parameters
   16289 static inline _glptr_SampleMapATI GET_SampleMapATI(struct _glapi_table *disp) {
   16290    return (_glptr_SampleMapATI) (GET_by_offset(disp, _gloffset_SampleMapATI));
   16291 }
   16292 
   16293 static inline void SET_SampleMapATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum)) {
   16294    SET_by_offset(disp, _gloffset_SampleMapATI, fn);
   16295 }
   16296 
   16297 typedef void (GLAPIENTRYP _glptr_SetFragmentShaderConstantATI)(GLuint, const GLfloat *);
   16298 #define CALL_SetFragmentShaderConstantATI(disp, parameters) \
   16299     (* GET_SetFragmentShaderConstantATI(disp)) parameters
   16300 static inline _glptr_SetFragmentShaderConstantATI GET_SetFragmentShaderConstantATI(struct _glapi_table *disp) {
   16301    return (_glptr_SetFragmentShaderConstantATI) (GET_by_offset(disp, _gloffset_SetFragmentShaderConstantATI));
   16302 }
   16303 
   16304 static inline void SET_SetFragmentShaderConstantATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
   16305    SET_by_offset(disp, _gloffset_SetFragmentShaderConstantATI, fn);
   16306 }
   16307 
   16308 typedef void (GLAPIENTRYP _glptr_DepthRangeArrayfvOES)(GLuint, GLsizei, const GLfloat *);
   16309 #define CALL_DepthRangeArrayfvOES(disp, parameters) \
   16310     (* GET_DepthRangeArrayfvOES(disp)) parameters
   16311 static inline _glptr_DepthRangeArrayfvOES GET_DepthRangeArrayfvOES(struct _glapi_table *disp) {
   16312    return (_glptr_DepthRangeArrayfvOES) (GET_by_offset(disp, _gloffset_DepthRangeArrayfvOES));
   16313 }
   16314 
   16315 static inline void SET_DepthRangeArrayfvOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
   16316    SET_by_offset(disp, _gloffset_DepthRangeArrayfvOES, fn);
   16317 }
   16318 
   16319 typedef void (GLAPIENTRYP _glptr_DepthRangeIndexedfOES)(GLuint, GLfloat, GLfloat);
   16320 #define CALL_DepthRangeIndexedfOES(disp, parameters) \
   16321     (* GET_DepthRangeIndexedfOES(disp)) parameters
   16322 static inline _glptr_DepthRangeIndexedfOES GET_DepthRangeIndexedfOES(struct _glapi_table *disp) {
   16323    return (_glptr_DepthRangeIndexedfOES) (GET_by_offset(disp, _gloffset_DepthRangeIndexedfOES));
   16324 }
   16325 
   16326 static inline void SET_DepthRangeIndexedfOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
   16327    SET_by_offset(disp, _gloffset_DepthRangeIndexedfOES, fn);
   16328 }
   16329 
   16330 typedef void (GLAPIENTRYP _glptr_ActiveStencilFaceEXT)(GLenum);
   16331 #define CALL_ActiveStencilFaceEXT(disp, parameters) \
   16332     (* GET_ActiveStencilFaceEXT(disp)) parameters
   16333 static inline _glptr_ActiveStencilFaceEXT GET_ActiveStencilFaceEXT(struct _glapi_table *disp) {
   16334    return (_glptr_ActiveStencilFaceEXT) (GET_by_offset(disp, _gloffset_ActiveStencilFaceEXT));
   16335 }
   16336 
   16337 static inline void SET_ActiveStencilFaceEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
   16338    SET_by_offset(disp, _gloffset_ActiveStencilFaceEXT, fn);
   16339 }
   16340 
   16341 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterdvNV)(GLuint, GLsizei, const GLubyte *, GLdouble *);
   16342 #define CALL_GetProgramNamedParameterdvNV(disp, parameters) \
   16343     (* GET_GetProgramNamedParameterdvNV(disp)) parameters
   16344 static inline _glptr_GetProgramNamedParameterdvNV GET_GetProgramNamedParameterdvNV(struct _glapi_table *disp) {
   16345    return (_glptr_GetProgramNamedParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV));
   16346 }
   16347 
   16348 static inline void SET_GetProgramNamedParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble *)) {
   16349    SET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV, fn);
   16350 }
   16351 
   16352 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterfvNV)(GLuint, GLsizei, const GLubyte *, GLfloat *);
   16353 #define CALL_GetProgramNamedParameterfvNV(disp, parameters) \
   16354     (* GET_GetProgramNamedParameterfvNV(disp)) parameters
   16355 static inline _glptr_GetProgramNamedParameterfvNV GET_GetProgramNamedParameterfvNV(struct _glapi_table *disp) {
   16356    return (_glptr_GetProgramNamedParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV));
   16357 }
   16358 
   16359 static inline void SET_GetProgramNamedParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat *)) {
   16360    SET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV, fn);
   16361 }
   16362 
   16363 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dNV)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble);
   16364 #define CALL_ProgramNamedParameter4dNV(disp, parameters) \
   16365     (* GET_ProgramNamedParameter4dNV(disp)) parameters
   16366 static inline _glptr_ProgramNamedParameter4dNV GET_ProgramNamedParameter4dNV(struct _glapi_table *disp) {
   16367    return (_glptr_ProgramNamedParameter4dNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV));
   16368 }
   16369 
   16370 static inline void SET_ProgramNamedParameter4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble)) {
   16371    SET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV, fn);
   16372 }
   16373 
   16374 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dvNV)(GLuint, GLsizei, const GLubyte *, const GLdouble *);
   16375 #define CALL_ProgramNamedParameter4dvNV(disp, parameters) \
   16376     (* GET_ProgramNamedParameter4dvNV(disp)) parameters
   16377 static inline _glptr_ProgramNamedParameter4dvNV GET_ProgramNamedParameter4dvNV(struct _glapi_table *disp) {
   16378    return (_glptr_ProgramNamedParameter4dvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV));
   16379 }
   16380 
   16381 static inline void SET_ProgramNamedParameter4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLdouble *)) {
   16382    SET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV, fn);
   16383 }
   16384 
   16385 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fNV)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat);
   16386 #define CALL_ProgramNamedParameter4fNV(disp, parameters) \
   16387     (* GET_ProgramNamedParameter4fNV(disp)) parameters
   16388 static inline _glptr_ProgramNamedParameter4fNV GET_ProgramNamedParameter4fNV(struct _glapi_table *disp) {
   16389    return (_glptr_ProgramNamedParameter4fNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV));
   16390 }
   16391 
   16392 static inline void SET_ProgramNamedParameter4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat)) {
   16393    SET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV, fn);
   16394 }
   16395 
   16396 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fvNV)(GLuint, GLsizei, const GLubyte *, const GLfloat *);
   16397 #define CALL_ProgramNamedParameter4fvNV(disp, parameters) \
   16398     (* GET_ProgramNamedParameter4fvNV(disp)) parameters
   16399 static inline _glptr_ProgramNamedParameter4fvNV GET_ProgramNamedParameter4fvNV(struct _glapi_table *disp) {
   16400    return (_glptr_ProgramNamedParameter4fvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV));
   16401 }
   16402 
   16403 static inline void SET_ProgramNamedParameter4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLfloat *)) {
   16404    SET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV, fn);
   16405 }
   16406 
   16407 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartNV)(void);
   16408 #define CALL_PrimitiveRestartNV(disp, parameters) \
   16409     (* GET_PrimitiveRestartNV(disp)) parameters
   16410 static inline _glptr_PrimitiveRestartNV GET_PrimitiveRestartNV(struct _glapi_table *disp) {
   16411    return (_glptr_PrimitiveRestartNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartNV));
   16412 }
   16413 
   16414 static inline void SET_PrimitiveRestartNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   16415    SET_by_offset(disp, _gloffset_PrimitiveRestartNV, fn);
   16416 }
   16417 
   16418 typedef void (GLAPIENTRYP _glptr_GetTexGenxvOES)(GLenum, GLenum, GLfixed *);
   16419 #define CALL_GetTexGenxvOES(disp, parameters) \
   16420     (* GET_GetTexGenxvOES(disp)) parameters
   16421 static inline _glptr_GetTexGenxvOES GET_GetTexGenxvOES(struct _glapi_table *disp) {
   16422    return (_glptr_GetTexGenxvOES) (GET_by_offset(disp, _gloffset_GetTexGenxvOES));
   16423 }
   16424 
   16425 static inline void SET_GetTexGenxvOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed *)) {
   16426    SET_by_offset(disp, _gloffset_GetTexGenxvOES, fn);
   16427 }
   16428 
   16429 typedef void (GLAPIENTRYP _glptr_TexGenxOES)(GLenum, GLenum, GLint);
   16430 #define CALL_TexGenxOES(disp, parameters) \
   16431     (* GET_TexGenxOES(disp)) parameters
   16432 static inline _glptr_TexGenxOES GET_TexGenxOES(struct _glapi_table *disp) {
   16433    return (_glptr_TexGenxOES) (GET_by_offset(disp, _gloffset_TexGenxOES));
   16434 }
   16435 
   16436 static inline void SET_TexGenxOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   16437    SET_by_offset(disp, _gloffset_TexGenxOES, fn);
   16438 }
   16439 
   16440 typedef void (GLAPIENTRYP _glptr_TexGenxvOES)(GLenum, GLenum, const GLfixed *);
   16441 #define CALL_TexGenxvOES(disp, parameters) \
   16442     (* GET_TexGenxvOES(disp)) parameters
   16443 static inline _glptr_TexGenxvOES GET_TexGenxvOES(struct _glapi_table *disp) {
   16444    return (_glptr_TexGenxvOES) (GET_by_offset(disp, _gloffset_TexGenxvOES));
   16445 }
   16446 
   16447 static inline void SET_TexGenxvOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfixed *)) {
   16448    SET_by_offset(disp, _gloffset_TexGenxvOES, fn);
   16449 }
   16450 
   16451 typedef void (GLAPIENTRYP _glptr_DepthBoundsEXT)(GLclampd, GLclampd);
   16452 #define CALL_DepthBoundsEXT(disp, parameters) \
   16453     (* GET_DepthBoundsEXT(disp)) parameters
   16454 static inline _glptr_DepthBoundsEXT GET_DepthBoundsEXT(struct _glapi_table *disp) {
   16455    return (_glptr_DepthBoundsEXT) (GET_by_offset(disp, _gloffset_DepthBoundsEXT));
   16456 }
   16457 
   16458 static inline void SET_DepthBoundsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
   16459    SET_by_offset(disp, _gloffset_DepthBoundsEXT, fn);
   16460 }
   16461 
   16462 typedef void (GLAPIENTRYP _glptr_BindFramebufferEXT)(GLenum, GLuint);
   16463 #define CALL_BindFramebufferEXT(disp, parameters) \
   16464     (* GET_BindFramebufferEXT(disp)) parameters
   16465 static inline _glptr_BindFramebufferEXT GET_BindFramebufferEXT(struct _glapi_table *disp) {
   16466    return (_glptr_BindFramebufferEXT) (GET_by_offset(disp, _gloffset_BindFramebufferEXT));
   16467 }
   16468 
   16469 static inline void SET_BindFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   16470    SET_by_offset(disp, _gloffset_BindFramebufferEXT, fn);
   16471 }
   16472 
   16473 typedef void (GLAPIENTRYP _glptr_BindRenderbufferEXT)(GLenum, GLuint);
   16474 #define CALL_BindRenderbufferEXT(disp, parameters) \
   16475     (* GET_BindRenderbufferEXT(disp)) parameters
   16476 static inline _glptr_BindRenderbufferEXT GET_BindRenderbufferEXT(struct _glapi_table *disp) {
   16477    return (_glptr_BindRenderbufferEXT) (GET_by_offset(disp, _gloffset_BindRenderbufferEXT));
   16478 }
   16479 
   16480 static inline void SET_BindRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   16481    SET_by_offset(disp, _gloffset_BindRenderbufferEXT, fn);
   16482 }
   16483 
   16484 typedef void (GLAPIENTRYP _glptr_StringMarkerGREMEDY)(GLsizei, const GLvoid *);
   16485 #define CALL_StringMarkerGREMEDY(disp, parameters) \
   16486     (* GET_StringMarkerGREMEDY(disp)) parameters
   16487 static inline _glptr_StringMarkerGREMEDY GET_StringMarkerGREMEDY(struct _glapi_table *disp) {
   16488    return (_glptr_StringMarkerGREMEDY) (GET_by_offset(disp, _gloffset_StringMarkerGREMEDY));
   16489 }
   16490 
   16491 static inline void SET_StringMarkerGREMEDY(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
   16492    SET_by_offset(disp, _gloffset_StringMarkerGREMEDY, fn);
   16493 }
   16494 
   16495 typedef void (GLAPIENTRYP _glptr_BufferParameteriAPPLE)(GLenum, GLenum, GLint);
   16496 #define CALL_BufferParameteriAPPLE(disp, parameters) \
   16497     (* GET_BufferParameteriAPPLE(disp)) parameters
   16498 static inline _glptr_BufferParameteriAPPLE GET_BufferParameteriAPPLE(struct _glapi_table *disp) {
   16499    return (_glptr_BufferParameteriAPPLE) (GET_by_offset(disp, _gloffset_BufferParameteriAPPLE));
   16500 }
   16501 
   16502 static inline void SET_BufferParameteriAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
   16503    SET_by_offset(disp, _gloffset_BufferParameteriAPPLE, fn);
   16504 }
   16505 
   16506 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRangeAPPLE)(GLenum, GLintptr, GLsizeiptr);
   16507 #define CALL_FlushMappedBufferRangeAPPLE(disp, parameters) \
   16508     (* GET_FlushMappedBufferRangeAPPLE(disp)) parameters
   16509 static inline _glptr_FlushMappedBufferRangeAPPLE GET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp) {
   16510    return (_glptr_FlushMappedBufferRangeAPPLE) (GET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE));
   16511 }
   16512 
   16513 static inline void SET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
   16514    SET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE, fn);
   16515 }
   16516 
   16517 typedef void (GLAPIENTRYP _glptr_VertexAttribI1iEXT)(GLuint, GLint);
   16518 #define CALL_VertexAttribI1iEXT(disp, parameters) \
   16519     (* GET_VertexAttribI1iEXT(disp)) parameters
   16520 static inline _glptr_VertexAttribI1iEXT GET_VertexAttribI1iEXT(struct _glapi_table *disp) {
   16521    return (_glptr_VertexAttribI1iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1iEXT));
   16522 }
   16523 
   16524 static inline void SET_VertexAttribI1iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint)) {
   16525    SET_by_offset(disp, _gloffset_VertexAttribI1iEXT, fn);
   16526 }
   16527 
   16528 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uiEXT)(GLuint, GLuint);
   16529 #define CALL_VertexAttribI1uiEXT(disp, parameters) \
   16530     (* GET_VertexAttribI1uiEXT(disp)) parameters
   16531 static inline _glptr_VertexAttribI1uiEXT GET_VertexAttribI1uiEXT(struct _glapi_table *disp) {
   16532    return (_glptr_VertexAttribI1uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uiEXT));
   16533 }
   16534 
   16535 static inline void SET_VertexAttribI1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
   16536    SET_by_offset(disp, _gloffset_VertexAttribI1uiEXT, fn);
   16537 }
   16538 
   16539 typedef void (GLAPIENTRYP _glptr_VertexAttribI2iEXT)(GLuint, GLint, GLint);
   16540 #define CALL_VertexAttribI2iEXT(disp, parameters) \
   16541     (* GET_VertexAttribI2iEXT(disp)) parameters
   16542 static inline _glptr_VertexAttribI2iEXT GET_VertexAttribI2iEXT(struct _glapi_table *disp) {
   16543    return (_glptr_VertexAttribI2iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2iEXT));
   16544 }
   16545 
   16546 static inline void SET_VertexAttribI2iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint)) {
   16547    SET_by_offset(disp, _gloffset_VertexAttribI2iEXT, fn);
   16548 }
   16549 
   16550 typedef void (GLAPIENTRYP _glptr_VertexAttribI2ivEXT)(GLuint, const GLint *);
   16551 #define CALL_VertexAttribI2ivEXT(disp, parameters) \
   16552     (* GET_VertexAttribI2ivEXT(disp)) parameters
   16553 static inline _glptr_VertexAttribI2ivEXT GET_VertexAttribI2ivEXT(struct _glapi_table *disp) {
   16554    return (_glptr_VertexAttribI2ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2ivEXT));
   16555 }
   16556 
   16557 static inline void SET_VertexAttribI2ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   16558    SET_by_offset(disp, _gloffset_VertexAttribI2ivEXT, fn);
   16559 }
   16560 
   16561 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uiEXT)(GLuint, GLuint, GLuint);
   16562 #define CALL_VertexAttribI2uiEXT(disp, parameters) \
   16563     (* GET_VertexAttribI2uiEXT(disp)) parameters
   16564 static inline _glptr_VertexAttribI2uiEXT GET_VertexAttribI2uiEXT(struct _glapi_table *disp) {
   16565    return (_glptr_VertexAttribI2uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uiEXT));
   16566 }
   16567 
   16568 static inline void SET_VertexAttribI2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
   16569    SET_by_offset(disp, _gloffset_VertexAttribI2uiEXT, fn);
   16570 }
   16571 
   16572 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uivEXT)(GLuint, const GLuint *);
   16573 #define CALL_VertexAttribI2uivEXT(disp, parameters) \
   16574     (* GET_VertexAttribI2uivEXT(disp)) parameters
   16575 static inline _glptr_VertexAttribI2uivEXT GET_VertexAttribI2uivEXT(struct _glapi_table *disp) {
   16576    return (_glptr_VertexAttribI2uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uivEXT));
   16577 }
   16578 
   16579 static inline void SET_VertexAttribI2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
   16580    SET_by_offset(disp, _gloffset_VertexAttribI2uivEXT, fn);
   16581 }
   16582 
   16583 typedef void (GLAPIENTRYP _glptr_VertexAttribI3iEXT)(GLuint, GLint, GLint, GLint);
   16584 #define CALL_VertexAttribI3iEXT(disp, parameters) \
   16585     (* GET_VertexAttribI3iEXT(disp)) parameters
   16586 static inline _glptr_VertexAttribI3iEXT GET_VertexAttribI3iEXT(struct _glapi_table *disp) {
   16587    return (_glptr_VertexAttribI3iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3iEXT));
   16588 }
   16589 
   16590 static inline void SET_VertexAttribI3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint)) {
   16591    SET_by_offset(disp, _gloffset_VertexAttribI3iEXT, fn);
   16592 }
   16593 
   16594 typedef void (GLAPIENTRYP _glptr_VertexAttribI3ivEXT)(GLuint, const GLint *);
   16595 #define CALL_VertexAttribI3ivEXT(disp, parameters) \
   16596     (* GET_VertexAttribI3ivEXT(disp)) parameters
   16597 static inline _glptr_VertexAttribI3ivEXT GET_VertexAttribI3ivEXT(struct _glapi_table *disp) {
   16598    return (_glptr_VertexAttribI3ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3ivEXT));
   16599 }
   16600 
   16601 static inline void SET_VertexAttribI3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   16602    SET_by_offset(disp, _gloffset_VertexAttribI3ivEXT, fn);
   16603 }
   16604 
   16605 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uiEXT)(GLuint, GLuint, GLuint, GLuint);
   16606 #define CALL_VertexAttribI3uiEXT(disp, parameters) \
   16607     (* GET_VertexAttribI3uiEXT(disp)) parameters
   16608 static inline _glptr_VertexAttribI3uiEXT GET_VertexAttribI3uiEXT(struct _glapi_table *disp) {
   16609    return (_glptr_VertexAttribI3uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uiEXT));
   16610 }
   16611 
   16612 static inline void SET_VertexAttribI3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
   16613    SET_by_offset(disp, _gloffset_VertexAttribI3uiEXT, fn);
   16614 }
   16615 
   16616 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uivEXT)(GLuint, const GLuint *);
   16617 #define CALL_VertexAttribI3uivEXT(disp, parameters) \
   16618     (* GET_VertexAttribI3uivEXT(disp)) parameters
   16619 static inline _glptr_VertexAttribI3uivEXT GET_VertexAttribI3uivEXT(struct _glapi_table *disp) {
   16620    return (_glptr_VertexAttribI3uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uivEXT));
   16621 }
   16622 
   16623 static inline void SET_VertexAttribI3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
   16624    SET_by_offset(disp, _gloffset_VertexAttribI3uivEXT, fn);
   16625 }
   16626 
   16627 typedef void (GLAPIENTRYP _glptr_VertexAttribI4iEXT)(GLuint, GLint, GLint, GLint, GLint);
   16628 #define CALL_VertexAttribI4iEXT(disp, parameters) \
   16629     (* GET_VertexAttribI4iEXT(disp)) parameters
   16630 static inline _glptr_VertexAttribI4iEXT GET_VertexAttribI4iEXT(struct _glapi_table *disp) {
   16631    return (_glptr_VertexAttribI4iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4iEXT));
   16632 }
   16633 
   16634 static inline void SET_VertexAttribI4iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint)) {
   16635    SET_by_offset(disp, _gloffset_VertexAttribI4iEXT, fn);
   16636 }
   16637 
   16638 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ivEXT)(GLuint, const GLint *);
   16639 #define CALL_VertexAttribI4ivEXT(disp, parameters) \
   16640     (* GET_VertexAttribI4ivEXT(disp)) parameters
   16641 static inline _glptr_VertexAttribI4ivEXT GET_VertexAttribI4ivEXT(struct _glapi_table *disp) {
   16642    return (_glptr_VertexAttribI4ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ivEXT));
   16643 }
   16644 
   16645 static inline void SET_VertexAttribI4ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
   16646    SET_by_offset(disp, _gloffset_VertexAttribI4ivEXT, fn);
   16647 }
   16648 
   16649 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uiEXT)(GLuint, GLuint, GLuint, GLuint, GLuint);
   16650 #define CALL_VertexAttribI4uiEXT(disp, parameters) \
   16651     (* GET_VertexAttribI4uiEXT(disp)) parameters
   16652 static inline _glptr_VertexAttribI4uiEXT GET_VertexAttribI4uiEXT(struct _glapi_table *disp) {
   16653    return (_glptr_VertexAttribI4uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uiEXT));
   16654 }
   16655 
   16656 static inline void SET_VertexAttribI4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint, GLuint)) {
   16657    SET_by_offset(disp, _gloffset_VertexAttribI4uiEXT, fn);
   16658 }
   16659 
   16660 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uivEXT)(GLuint, const GLuint *);
   16661 #define CALL_VertexAttribI4uivEXT(disp, parameters) \
   16662     (* GET_VertexAttribI4uivEXT(disp)) parameters
   16663 static inline _glptr_VertexAttribI4uivEXT GET_VertexAttribI4uivEXT(struct _glapi_table *disp) {
   16664    return (_glptr_VertexAttribI4uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uivEXT));
   16665 }
   16666 
   16667 static inline void SET_VertexAttribI4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) {
   16668    SET_by_offset(disp, _gloffset_VertexAttribI4uivEXT, fn);
   16669 }
   16670 
   16671 typedef void (GLAPIENTRYP _glptr_ClearColorIiEXT)(GLint, GLint, GLint, GLint);
   16672 #define CALL_ClearColorIiEXT(disp, parameters) \
   16673     (* GET_ClearColorIiEXT(disp)) parameters
   16674 static inline _glptr_ClearColorIiEXT GET_ClearColorIiEXT(struct _glapi_table *disp) {
   16675    return (_glptr_ClearColorIiEXT) (GET_by_offset(disp, _gloffset_ClearColorIiEXT));
   16676 }
   16677 
   16678 static inline void SET_ClearColorIiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
   16679    SET_by_offset(disp, _gloffset_ClearColorIiEXT, fn);
   16680 }
   16681 
   16682 typedef void (GLAPIENTRYP _glptr_ClearColorIuiEXT)(GLuint, GLuint, GLuint, GLuint);
   16683 #define CALL_ClearColorIuiEXT(disp, parameters) \
   16684     (* GET_ClearColorIuiEXT(disp)) parameters
   16685 static inline _glptr_ClearColorIuiEXT GET_ClearColorIuiEXT(struct _glapi_table *disp) {
   16686    return (_glptr_ClearColorIuiEXT) (GET_by_offset(disp, _gloffset_ClearColorIuiEXT));
   16687 }
   16688 
   16689 static inline void SET_ClearColorIuiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
   16690    SET_by_offset(disp, _gloffset_ClearColorIuiEXT, fn);
   16691 }
   16692 
   16693 typedef void (GLAPIENTRYP _glptr_BindBufferOffsetEXT)(GLenum, GLuint, GLuint, GLintptr);
   16694 #define CALL_BindBufferOffsetEXT(disp, parameters) \
   16695     (* GET_BindBufferOffsetEXT(disp)) parameters
   16696 static inline _glptr_BindBufferOffsetEXT GET_BindBufferOffsetEXT(struct _glapi_table *disp) {
   16697    return (_glptr_BindBufferOffsetEXT) (GET_by_offset(disp, _gloffset_BindBufferOffsetEXT));
   16698 }
   16699 
   16700 static inline void SET_BindBufferOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLintptr)) {
   16701    SET_by_offset(disp, _gloffset_BindBufferOffsetEXT, fn);
   16702 }
   16703 
   16704 typedef void (GLAPIENTRYP _glptr_BeginPerfMonitorAMD)(GLuint);
   16705 #define CALL_BeginPerfMonitorAMD(disp, parameters) \
   16706     (* GET_BeginPerfMonitorAMD(disp)) parameters
   16707 static inline _glptr_BeginPerfMonitorAMD GET_BeginPerfMonitorAMD(struct _glapi_table *disp) {
   16708    return (_glptr_BeginPerfMonitorAMD) (GET_by_offset(disp, _gloffset_BeginPerfMonitorAMD));
   16709 }
   16710 
   16711 static inline void SET_BeginPerfMonitorAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   16712    SET_by_offset(disp, _gloffset_BeginPerfMonitorAMD, fn);
   16713 }
   16714 
   16715 typedef void (GLAPIENTRYP _glptr_DeletePerfMonitorsAMD)(GLsizei, GLuint *);
   16716 #define CALL_DeletePerfMonitorsAMD(disp, parameters) \
   16717     (* GET_DeletePerfMonitorsAMD(disp)) parameters
   16718 static inline _glptr_DeletePerfMonitorsAMD GET_DeletePerfMonitorsAMD(struct _glapi_table *disp) {
   16719    return (_glptr_DeletePerfMonitorsAMD) (GET_by_offset(disp, _gloffset_DeletePerfMonitorsAMD));
   16720 }
   16721 
   16722 static inline void SET_DeletePerfMonitorsAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   16723    SET_by_offset(disp, _gloffset_DeletePerfMonitorsAMD, fn);
   16724 }
   16725 
   16726 typedef void (GLAPIENTRYP _glptr_EndPerfMonitorAMD)(GLuint);
   16727 #define CALL_EndPerfMonitorAMD(disp, parameters) \
   16728     (* GET_EndPerfMonitorAMD(disp)) parameters
   16729 static inline _glptr_EndPerfMonitorAMD GET_EndPerfMonitorAMD(struct _glapi_table *disp) {
   16730    return (_glptr_EndPerfMonitorAMD) (GET_by_offset(disp, _gloffset_EndPerfMonitorAMD));
   16731 }
   16732 
   16733 static inline void SET_EndPerfMonitorAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   16734    SET_by_offset(disp, _gloffset_EndPerfMonitorAMD, fn);
   16735 }
   16736 
   16737 typedef void (GLAPIENTRYP _glptr_GenPerfMonitorsAMD)(GLsizei, GLuint *);
   16738 #define CALL_GenPerfMonitorsAMD(disp, parameters) \
   16739     (* GET_GenPerfMonitorsAMD(disp)) parameters
   16740 static inline _glptr_GenPerfMonitorsAMD GET_GenPerfMonitorsAMD(struct _glapi_table *disp) {
   16741    return (_glptr_GenPerfMonitorsAMD) (GET_by_offset(disp, _gloffset_GenPerfMonitorsAMD));
   16742 }
   16743 
   16744 static inline void SET_GenPerfMonitorsAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   16745    SET_by_offset(disp, _gloffset_GenPerfMonitorsAMD, fn);
   16746 }
   16747 
   16748 typedef void (GLAPIENTRYP _glptr_GetPerfMonitorCounterDataAMD)(GLuint, GLenum, GLsizei, GLuint *, GLint *);
   16749 #define CALL_GetPerfMonitorCounterDataAMD(disp, parameters) \
   16750     (* GET_GetPerfMonitorCounterDataAMD(disp)) parameters
   16751 static inline _glptr_GetPerfMonitorCounterDataAMD GET_GetPerfMonitorCounterDataAMD(struct _glapi_table *disp) {
   16752    return (_glptr_GetPerfMonitorCounterDataAMD) (GET_by_offset(disp, _gloffset_GetPerfMonitorCounterDataAMD));
   16753 }
   16754 
   16755 static inline void SET_GetPerfMonitorCounterDataAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLuint *, GLint *)) {
   16756    SET_by_offset(disp, _gloffset_GetPerfMonitorCounterDataAMD, fn);
   16757 }
   16758 
   16759 typedef void (GLAPIENTRYP _glptr_GetPerfMonitorCounterInfoAMD)(GLuint, GLuint, GLenum, GLvoid *);
   16760 #define CALL_GetPerfMonitorCounterInfoAMD(disp, parameters) \
   16761     (* GET_GetPerfMonitorCounterInfoAMD(disp)) parameters
   16762 static inline _glptr_GetPerfMonitorCounterInfoAMD GET_GetPerfMonitorCounterInfoAMD(struct _glapi_table *disp) {
   16763    return (_glptr_GetPerfMonitorCounterInfoAMD) (GET_by_offset(disp, _gloffset_GetPerfMonitorCounterInfoAMD));
   16764 }
   16765 
   16766 static inline void SET_GetPerfMonitorCounterInfoAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLvoid *)) {
   16767    SET_by_offset(disp, _gloffset_GetPerfMonitorCounterInfoAMD, fn);
   16768 }
   16769 
   16770 typedef void (GLAPIENTRYP _glptr_GetPerfMonitorCounterStringAMD)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *);
   16771 #define CALL_GetPerfMonitorCounterStringAMD(disp, parameters) \
   16772     (* GET_GetPerfMonitorCounterStringAMD(disp)) parameters
   16773 static inline _glptr_GetPerfMonitorCounterStringAMD GET_GetPerfMonitorCounterStringAMD(struct _glapi_table *disp) {
   16774    return (_glptr_GetPerfMonitorCounterStringAMD) (GET_by_offset(disp, _gloffset_GetPerfMonitorCounterStringAMD));
   16775 }
   16776 
   16777 static inline void SET_GetPerfMonitorCounterStringAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *)) {
   16778    SET_by_offset(disp, _gloffset_GetPerfMonitorCounterStringAMD, fn);
   16779 }
   16780 
   16781 typedef void (GLAPIENTRYP _glptr_GetPerfMonitorCountersAMD)(GLuint, GLint *, GLint *, GLsizei, GLuint *);
   16782 #define CALL_GetPerfMonitorCountersAMD(disp, parameters) \
   16783     (* GET_GetPerfMonitorCountersAMD(disp)) parameters
   16784 static inline _glptr_GetPerfMonitorCountersAMD GET_GetPerfMonitorCountersAMD(struct _glapi_table *disp) {
   16785    return (_glptr_GetPerfMonitorCountersAMD) (GET_by_offset(disp, _gloffset_GetPerfMonitorCountersAMD));
   16786 }
   16787 
   16788 static inline void SET_GetPerfMonitorCountersAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint *, GLint *, GLsizei, GLuint *)) {
   16789    SET_by_offset(disp, _gloffset_GetPerfMonitorCountersAMD, fn);
   16790 }
   16791 
   16792 typedef void (GLAPIENTRYP _glptr_GetPerfMonitorGroupStringAMD)(GLuint, GLsizei, GLsizei *, GLchar *);
   16793 #define CALL_GetPerfMonitorGroupStringAMD(disp, parameters) \
   16794     (* GET_GetPerfMonitorGroupStringAMD(disp)) parameters
   16795 static inline _glptr_GetPerfMonitorGroupStringAMD GET_GetPerfMonitorGroupStringAMD(struct _glapi_table *disp) {
   16796    return (_glptr_GetPerfMonitorGroupStringAMD) (GET_by_offset(disp, _gloffset_GetPerfMonitorGroupStringAMD));
   16797 }
   16798 
   16799 static inline void SET_GetPerfMonitorGroupStringAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) {
   16800    SET_by_offset(disp, _gloffset_GetPerfMonitorGroupStringAMD, fn);
   16801 }
   16802 
   16803 typedef void (GLAPIENTRYP _glptr_GetPerfMonitorGroupsAMD)(GLint *, GLsizei, GLuint *);
   16804 #define CALL_GetPerfMonitorGroupsAMD(disp, parameters) \
   16805     (* GET_GetPerfMonitorGroupsAMD(disp)) parameters
   16806 static inline _glptr_GetPerfMonitorGroupsAMD GET_GetPerfMonitorGroupsAMD(struct _glapi_table *disp) {
   16807    return (_glptr_GetPerfMonitorGroupsAMD) (GET_by_offset(disp, _gloffset_GetPerfMonitorGroupsAMD));
   16808 }
   16809 
   16810 static inline void SET_GetPerfMonitorGroupsAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint *, GLsizei, GLuint *)) {
   16811    SET_by_offset(disp, _gloffset_GetPerfMonitorGroupsAMD, fn);
   16812 }
   16813 
   16814 typedef void (GLAPIENTRYP _glptr_SelectPerfMonitorCountersAMD)(GLuint, GLboolean, GLuint, GLint, GLuint *);
   16815 #define CALL_SelectPerfMonitorCountersAMD(disp, parameters) \
   16816     (* GET_SelectPerfMonitorCountersAMD(disp)) parameters
   16817 static inline _glptr_SelectPerfMonitorCountersAMD GET_SelectPerfMonitorCountersAMD(struct _glapi_table *disp) {
   16818    return (_glptr_SelectPerfMonitorCountersAMD) (GET_by_offset(disp, _gloffset_SelectPerfMonitorCountersAMD));
   16819 }
   16820 
   16821 static inline void SET_SelectPerfMonitorCountersAMD(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLboolean, GLuint, GLint, GLuint *)) {
   16822    SET_by_offset(disp, _gloffset_SelectPerfMonitorCountersAMD, fn);
   16823 }
   16824 
   16825 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivAPPLE)(GLenum, GLuint, GLenum, GLint *);
   16826 #define CALL_GetObjectParameterivAPPLE(disp, parameters) \
   16827     (* GET_GetObjectParameterivAPPLE(disp)) parameters
   16828 static inline _glptr_GetObjectParameterivAPPLE GET_GetObjectParameterivAPPLE(struct _glapi_table *disp) {
   16829    return (_glptr_GetObjectParameterivAPPLE) (GET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE));
   16830 }
   16831 
   16832 static inline void SET_GetObjectParameterivAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
   16833    SET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE, fn);
   16834 }
   16835 
   16836 typedef GLenum (GLAPIENTRYP _glptr_ObjectPurgeableAPPLE)(GLenum, GLuint, GLenum);
   16837 #define CALL_ObjectPurgeableAPPLE(disp, parameters) \
   16838     (* GET_ObjectPurgeableAPPLE(disp)) parameters
   16839 static inline _glptr_ObjectPurgeableAPPLE GET_ObjectPurgeableAPPLE(struct _glapi_table *disp) {
   16840    return (_glptr_ObjectPurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE));
   16841 }
   16842 
   16843 static inline void SET_ObjectPurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
   16844    SET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE, fn);
   16845 }
   16846 
   16847 typedef GLenum (GLAPIENTRYP _glptr_ObjectUnpurgeableAPPLE)(GLenum, GLuint, GLenum);
   16848 #define CALL_ObjectUnpurgeableAPPLE(disp, parameters) \
   16849     (* GET_ObjectUnpurgeableAPPLE(disp)) parameters
   16850 static inline _glptr_ObjectUnpurgeableAPPLE GET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp) {
   16851    return (_glptr_ObjectUnpurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE));
   16852 }
   16853 
   16854 static inline void SET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
   16855    SET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE, fn);
   16856 }
   16857 
   16858 typedef void (GLAPIENTRYP _glptr_ActiveProgramEXT)(GLuint);
   16859 #define CALL_ActiveProgramEXT(disp, parameters) \
   16860     (* GET_ActiveProgramEXT(disp)) parameters
   16861 static inline _glptr_ActiveProgramEXT GET_ActiveProgramEXT(struct _glapi_table *disp) {
   16862    return (_glptr_ActiveProgramEXT) (GET_by_offset(disp, _gloffset_ActiveProgramEXT));
   16863 }
   16864 
   16865 static inline void SET_ActiveProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   16866    SET_by_offset(disp, _gloffset_ActiveProgramEXT, fn);
   16867 }
   16868 
   16869 typedef GLuint (GLAPIENTRYP _glptr_CreateShaderProgramEXT)(GLenum, const GLchar *);
   16870 #define CALL_CreateShaderProgramEXT(disp, parameters) \
   16871     (* GET_CreateShaderProgramEXT(disp)) parameters
   16872 static inline _glptr_CreateShaderProgramEXT GET_CreateShaderProgramEXT(struct _glapi_table *disp) {
   16873    return (_glptr_CreateShaderProgramEXT) (GET_by_offset(disp, _gloffset_CreateShaderProgramEXT));
   16874 }
   16875 
   16876 static inline void SET_CreateShaderProgramEXT(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum, const GLchar *)) {
   16877    SET_by_offset(disp, _gloffset_CreateShaderProgramEXT, fn);
   16878 }
   16879 
   16880 typedef void (GLAPIENTRYP _glptr_UseShaderProgramEXT)(GLenum, GLuint);
   16881 #define CALL_UseShaderProgramEXT(disp, parameters) \
   16882     (* GET_UseShaderProgramEXT(disp)) parameters
   16883 static inline _glptr_UseShaderProgramEXT GET_UseShaderProgramEXT(struct _glapi_table *disp) {
   16884    return (_glptr_UseShaderProgramEXT) (GET_by_offset(disp, _gloffset_UseShaderProgramEXT));
   16885 }
   16886 
   16887 static inline void SET_UseShaderProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
   16888    SET_by_offset(disp, _gloffset_UseShaderProgramEXT, fn);
   16889 }
   16890 
   16891 typedef void (GLAPIENTRYP _glptr_TextureBarrierNV)(void);
   16892 #define CALL_TextureBarrierNV(disp, parameters) \
   16893     (* GET_TextureBarrierNV(disp)) parameters
   16894 static inline _glptr_TextureBarrierNV GET_TextureBarrierNV(struct _glapi_table *disp) {
   16895    return (_glptr_TextureBarrierNV) (GET_by_offset(disp, _gloffset_TextureBarrierNV));
   16896 }
   16897 
   16898 static inline void SET_TextureBarrierNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   16899    SET_by_offset(disp, _gloffset_TextureBarrierNV, fn);
   16900 }
   16901 
   16902 typedef void (GLAPIENTRYP _glptr_VDPAUFiniNV)(void);
   16903 #define CALL_VDPAUFiniNV(disp, parameters) \
   16904     (* GET_VDPAUFiniNV(disp)) parameters
   16905 static inline _glptr_VDPAUFiniNV GET_VDPAUFiniNV(struct _glapi_table *disp) {
   16906    return (_glptr_VDPAUFiniNV) (GET_by_offset(disp, _gloffset_VDPAUFiniNV));
   16907 }
   16908 
   16909 static inline void SET_VDPAUFiniNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   16910    SET_by_offset(disp, _gloffset_VDPAUFiniNV, fn);
   16911 }
   16912 
   16913 typedef void (GLAPIENTRYP _glptr_VDPAUGetSurfaceivNV)(GLintptr, GLenum, GLsizei, GLsizei *, GLint *);
   16914 #define CALL_VDPAUGetSurfaceivNV(disp, parameters) \
   16915     (* GET_VDPAUGetSurfaceivNV(disp)) parameters
   16916 static inline _glptr_VDPAUGetSurfaceivNV GET_VDPAUGetSurfaceivNV(struct _glapi_table *disp) {
   16917    return (_glptr_VDPAUGetSurfaceivNV) (GET_by_offset(disp, _gloffset_VDPAUGetSurfaceivNV));
   16918 }
   16919 
   16920 static inline void SET_VDPAUGetSurfaceivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLintptr, GLenum, GLsizei, GLsizei *, GLint *)) {
   16921    SET_by_offset(disp, _gloffset_VDPAUGetSurfaceivNV, fn);
   16922 }
   16923 
   16924 typedef void (GLAPIENTRYP _glptr_VDPAUInitNV)(const GLvoid *, const GLvoid *);
   16925 #define CALL_VDPAUInitNV(disp, parameters) \
   16926     (* GET_VDPAUInitNV(disp)) parameters
   16927 static inline _glptr_VDPAUInitNV GET_VDPAUInitNV(struct _glapi_table *disp) {
   16928    return (_glptr_VDPAUInitNV) (GET_by_offset(disp, _gloffset_VDPAUInitNV));
   16929 }
   16930 
   16931 static inline void SET_VDPAUInitNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLvoid *, const GLvoid *)) {
   16932    SET_by_offset(disp, _gloffset_VDPAUInitNV, fn);
   16933 }
   16934 
   16935 typedef GLboolean (GLAPIENTRYP _glptr_VDPAUIsSurfaceNV)(GLintptr);
   16936 #define CALL_VDPAUIsSurfaceNV(disp, parameters) \
   16937     (* GET_VDPAUIsSurfaceNV(disp)) parameters
   16938 static inline _glptr_VDPAUIsSurfaceNV GET_VDPAUIsSurfaceNV(struct _glapi_table *disp) {
   16939    return (_glptr_VDPAUIsSurfaceNV) (GET_by_offset(disp, _gloffset_VDPAUIsSurfaceNV));
   16940 }
   16941 
   16942 static inline void SET_VDPAUIsSurfaceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLintptr)) {
   16943    SET_by_offset(disp, _gloffset_VDPAUIsSurfaceNV, fn);
   16944 }
   16945 
   16946 typedef void (GLAPIENTRYP _glptr_VDPAUMapSurfacesNV)(GLsizei, const GLintptr *);
   16947 #define CALL_VDPAUMapSurfacesNV(disp, parameters) \
   16948     (* GET_VDPAUMapSurfacesNV(disp)) parameters
   16949 static inline _glptr_VDPAUMapSurfacesNV GET_VDPAUMapSurfacesNV(struct _glapi_table *disp) {
   16950    return (_glptr_VDPAUMapSurfacesNV) (GET_by_offset(disp, _gloffset_VDPAUMapSurfacesNV));
   16951 }
   16952 
   16953 static inline void SET_VDPAUMapSurfacesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLintptr *)) {
   16954    SET_by_offset(disp, _gloffset_VDPAUMapSurfacesNV, fn);
   16955 }
   16956 
   16957 typedef GLintptr (GLAPIENTRYP _glptr_VDPAURegisterOutputSurfaceNV)(const GLvoid *, GLenum, GLsizei, const GLuint *);
   16958 #define CALL_VDPAURegisterOutputSurfaceNV(disp, parameters) \
   16959     (* GET_VDPAURegisterOutputSurfaceNV(disp)) parameters
   16960 static inline _glptr_VDPAURegisterOutputSurfaceNV GET_VDPAURegisterOutputSurfaceNV(struct _glapi_table *disp) {
   16961    return (_glptr_VDPAURegisterOutputSurfaceNV) (GET_by_offset(disp, _gloffset_VDPAURegisterOutputSurfaceNV));
   16962 }
   16963 
   16964 static inline void SET_VDPAURegisterOutputSurfaceNV(struct _glapi_table *disp, GLintptr (GLAPIENTRYP fn)(const GLvoid *, GLenum, GLsizei, const GLuint *)) {
   16965    SET_by_offset(disp, _gloffset_VDPAURegisterOutputSurfaceNV, fn);
   16966 }
   16967 
   16968 typedef GLintptr (GLAPIENTRYP _glptr_VDPAURegisterVideoSurfaceNV)(const GLvoid *, GLenum, GLsizei, const GLuint *);
   16969 #define CALL_VDPAURegisterVideoSurfaceNV(disp, parameters) \
   16970     (* GET_VDPAURegisterVideoSurfaceNV(disp)) parameters
   16971 static inline _glptr_VDPAURegisterVideoSurfaceNV GET_VDPAURegisterVideoSurfaceNV(struct _glapi_table *disp) {
   16972    return (_glptr_VDPAURegisterVideoSurfaceNV) (GET_by_offset(disp, _gloffset_VDPAURegisterVideoSurfaceNV));
   16973 }
   16974 
   16975 static inline void SET_VDPAURegisterVideoSurfaceNV(struct _glapi_table *disp, GLintptr (GLAPIENTRYP fn)(const GLvoid *, GLenum, GLsizei, const GLuint *)) {
   16976    SET_by_offset(disp, _gloffset_VDPAURegisterVideoSurfaceNV, fn);
   16977 }
   16978 
   16979 typedef void (GLAPIENTRYP _glptr_VDPAUSurfaceAccessNV)(GLintptr, GLenum);
   16980 #define CALL_VDPAUSurfaceAccessNV(disp, parameters) \
   16981     (* GET_VDPAUSurfaceAccessNV(disp)) parameters
   16982 static inline _glptr_VDPAUSurfaceAccessNV GET_VDPAUSurfaceAccessNV(struct _glapi_table *disp) {
   16983    return (_glptr_VDPAUSurfaceAccessNV) (GET_by_offset(disp, _gloffset_VDPAUSurfaceAccessNV));
   16984 }
   16985 
   16986 static inline void SET_VDPAUSurfaceAccessNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLintptr, GLenum)) {
   16987    SET_by_offset(disp, _gloffset_VDPAUSurfaceAccessNV, fn);
   16988 }
   16989 
   16990 typedef void (GLAPIENTRYP _glptr_VDPAUUnmapSurfacesNV)(GLsizei, const GLintptr *);
   16991 #define CALL_VDPAUUnmapSurfacesNV(disp, parameters) \
   16992     (* GET_VDPAUUnmapSurfacesNV(disp)) parameters
   16993 static inline _glptr_VDPAUUnmapSurfacesNV GET_VDPAUUnmapSurfacesNV(struct _glapi_table *disp) {
   16994    return (_glptr_VDPAUUnmapSurfacesNV) (GET_by_offset(disp, _gloffset_VDPAUUnmapSurfacesNV));
   16995 }
   16996 
   16997 static inline void SET_VDPAUUnmapSurfacesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLintptr *)) {
   16998    SET_by_offset(disp, _gloffset_VDPAUUnmapSurfacesNV, fn);
   16999 }
   17000 
   17001 typedef void (GLAPIENTRYP _glptr_VDPAUUnregisterSurfaceNV)(GLintptr);
   17002 #define CALL_VDPAUUnregisterSurfaceNV(disp, parameters) \
   17003     (* GET_VDPAUUnregisterSurfaceNV(disp)) parameters
   17004 static inline _glptr_VDPAUUnregisterSurfaceNV GET_VDPAUUnregisterSurfaceNV(struct _glapi_table *disp) {
   17005    return (_glptr_VDPAUUnregisterSurfaceNV) (GET_by_offset(disp, _gloffset_VDPAUUnregisterSurfaceNV));
   17006 }
   17007 
   17008 static inline void SET_VDPAUUnregisterSurfaceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLintptr)) {
   17009    SET_by_offset(disp, _gloffset_VDPAUUnregisterSurfaceNV, fn);
   17010 }
   17011 
   17012 typedef void (GLAPIENTRYP _glptr_BeginPerfQueryINTEL)(GLuint);
   17013 #define CALL_BeginPerfQueryINTEL(disp, parameters) \
   17014     (* GET_BeginPerfQueryINTEL(disp)) parameters
   17015 static inline _glptr_BeginPerfQueryINTEL GET_BeginPerfQueryINTEL(struct _glapi_table *disp) {
   17016    return (_glptr_BeginPerfQueryINTEL) (GET_by_offset(disp, _gloffset_BeginPerfQueryINTEL));
   17017 }
   17018 
   17019 static inline void SET_BeginPerfQueryINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   17020    SET_by_offset(disp, _gloffset_BeginPerfQueryINTEL, fn);
   17021 }
   17022 
   17023 typedef void (GLAPIENTRYP _glptr_CreatePerfQueryINTEL)(GLuint, GLuint *);
   17024 #define CALL_CreatePerfQueryINTEL(disp, parameters) \
   17025     (* GET_CreatePerfQueryINTEL(disp)) parameters
   17026 static inline _glptr_CreatePerfQueryINTEL GET_CreatePerfQueryINTEL(struct _glapi_table *disp) {
   17027    return (_glptr_CreatePerfQueryINTEL) (GET_by_offset(disp, _gloffset_CreatePerfQueryINTEL));
   17028 }
   17029 
   17030 static inline void SET_CreatePerfQueryINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint *)) {
   17031    SET_by_offset(disp, _gloffset_CreatePerfQueryINTEL, fn);
   17032 }
   17033 
   17034 typedef void (GLAPIENTRYP _glptr_DeletePerfQueryINTEL)(GLuint);
   17035 #define CALL_DeletePerfQueryINTEL(disp, parameters) \
   17036     (* GET_DeletePerfQueryINTEL(disp)) parameters
   17037 static inline _glptr_DeletePerfQueryINTEL GET_DeletePerfQueryINTEL(struct _glapi_table *disp) {
   17038    return (_glptr_DeletePerfQueryINTEL) (GET_by_offset(disp, _gloffset_DeletePerfQueryINTEL));
   17039 }
   17040 
   17041 static inline void SET_DeletePerfQueryINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   17042    SET_by_offset(disp, _gloffset_DeletePerfQueryINTEL, fn);
   17043 }
   17044 
   17045 typedef void (GLAPIENTRYP _glptr_EndPerfQueryINTEL)(GLuint);
   17046 #define CALL_EndPerfQueryINTEL(disp, parameters) \
   17047     (* GET_EndPerfQueryINTEL(disp)) parameters
   17048 static inline _glptr_EndPerfQueryINTEL GET_EndPerfQueryINTEL(struct _glapi_table *disp) {
   17049    return (_glptr_EndPerfQueryINTEL) (GET_by_offset(disp, _gloffset_EndPerfQueryINTEL));
   17050 }
   17051 
   17052 static inline void SET_EndPerfQueryINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
   17053    SET_by_offset(disp, _gloffset_EndPerfQueryINTEL, fn);
   17054 }
   17055 
   17056 typedef void (GLAPIENTRYP _glptr_GetFirstPerfQueryIdINTEL)(GLuint *);
   17057 #define CALL_GetFirstPerfQueryIdINTEL(disp, parameters) \
   17058     (* GET_GetFirstPerfQueryIdINTEL(disp)) parameters
   17059 static inline _glptr_GetFirstPerfQueryIdINTEL GET_GetFirstPerfQueryIdINTEL(struct _glapi_table *disp) {
   17060    return (_glptr_GetFirstPerfQueryIdINTEL) (GET_by_offset(disp, _gloffset_GetFirstPerfQueryIdINTEL));
   17061 }
   17062 
   17063 static inline void SET_GetFirstPerfQueryIdINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint *)) {
   17064    SET_by_offset(disp, _gloffset_GetFirstPerfQueryIdINTEL, fn);
   17065 }
   17066 
   17067 typedef void (GLAPIENTRYP _glptr_GetNextPerfQueryIdINTEL)(GLuint, GLuint *);
   17068 #define CALL_GetNextPerfQueryIdINTEL(disp, parameters) \
   17069     (* GET_GetNextPerfQueryIdINTEL(disp)) parameters
   17070 static inline _glptr_GetNextPerfQueryIdINTEL GET_GetNextPerfQueryIdINTEL(struct _glapi_table *disp) {
   17071    return (_glptr_GetNextPerfQueryIdINTEL) (GET_by_offset(disp, _gloffset_GetNextPerfQueryIdINTEL));
   17072 }
   17073 
   17074 static inline void SET_GetNextPerfQueryIdINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint *)) {
   17075    SET_by_offset(disp, _gloffset_GetNextPerfQueryIdINTEL, fn);
   17076 }
   17077 
   17078 typedef void (GLAPIENTRYP _glptr_GetPerfCounterInfoINTEL)(GLuint, GLuint, GLuint, GLchar *, GLuint, GLchar *, GLuint *, GLuint *, GLuint *, GLuint *, GLuint64 *);
   17079 #define CALL_GetPerfCounterInfoINTEL(disp, parameters) \
   17080     (* GET_GetPerfCounterInfoINTEL(disp)) parameters
   17081 static inline _glptr_GetPerfCounterInfoINTEL GET_GetPerfCounterInfoINTEL(struct _glapi_table *disp) {
   17082    return (_glptr_GetPerfCounterInfoINTEL) (GET_by_offset(disp, _gloffset_GetPerfCounterInfoINTEL));
   17083 }
   17084 
   17085 static inline void SET_GetPerfCounterInfoINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLchar *, GLuint, GLchar *, GLuint *, GLuint *, GLuint *, GLuint *, GLuint64 *)) {
   17086    SET_by_offset(disp, _gloffset_GetPerfCounterInfoINTEL, fn);
   17087 }
   17088 
   17089 typedef void (GLAPIENTRYP _glptr_GetPerfQueryDataINTEL)(GLuint, GLuint, GLsizei, GLvoid *, GLuint *);
   17090 #define CALL_GetPerfQueryDataINTEL(disp, parameters) \
   17091     (* GET_GetPerfQueryDataINTEL(disp)) parameters
   17092 static inline _glptr_GetPerfQueryDataINTEL GET_GetPerfQueryDataINTEL(struct _glapi_table *disp) {
   17093    return (_glptr_GetPerfQueryDataINTEL) (GET_by_offset(disp, _gloffset_GetPerfQueryDataINTEL));
   17094 }
   17095 
   17096 static inline void SET_GetPerfQueryDataINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLvoid *, GLuint *)) {
   17097    SET_by_offset(disp, _gloffset_GetPerfQueryDataINTEL, fn);
   17098 }
   17099 
   17100 typedef void (GLAPIENTRYP _glptr_GetPerfQueryIdByNameINTEL)(GLchar *, GLuint *);
   17101 #define CALL_GetPerfQueryIdByNameINTEL(disp, parameters) \
   17102     (* GET_GetPerfQueryIdByNameINTEL(disp)) parameters
   17103 static inline _glptr_GetPerfQueryIdByNameINTEL GET_GetPerfQueryIdByNameINTEL(struct _glapi_table *disp) {
   17104    return (_glptr_GetPerfQueryIdByNameINTEL) (GET_by_offset(disp, _gloffset_GetPerfQueryIdByNameINTEL));
   17105 }
   17106 
   17107 static inline void SET_GetPerfQueryIdByNameINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLchar *, GLuint *)) {
   17108    SET_by_offset(disp, _gloffset_GetPerfQueryIdByNameINTEL, fn);
   17109 }
   17110 
   17111 typedef void (GLAPIENTRYP _glptr_GetPerfQueryInfoINTEL)(GLuint, GLuint, GLchar *, GLuint *, GLuint *, GLuint *, GLuint *);
   17112 #define CALL_GetPerfQueryInfoINTEL(disp, parameters) \
   17113     (* GET_GetPerfQueryInfoINTEL(disp)) parameters
   17114 static inline _glptr_GetPerfQueryInfoINTEL GET_GetPerfQueryInfoINTEL(struct _glapi_table *disp) {
   17115    return (_glptr_GetPerfQueryInfoINTEL) (GET_by_offset(disp, _gloffset_GetPerfQueryInfoINTEL));
   17116 }
   17117 
   17118 static inline void SET_GetPerfQueryInfoINTEL(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLchar *, GLuint *, GLuint *, GLuint *, GLuint *)) {
   17119    SET_by_offset(disp, _gloffset_GetPerfQueryInfoINTEL, fn);
   17120 }
   17121 
   17122 typedef void (GLAPIENTRYP _glptr_PolygonOffsetClampEXT)(GLfloat, GLfloat, GLfloat);
   17123 #define CALL_PolygonOffsetClampEXT(disp, parameters) \
   17124     (* GET_PolygonOffsetClampEXT(disp)) parameters
   17125 static inline _glptr_PolygonOffsetClampEXT GET_PolygonOffsetClampEXT(struct _glapi_table *disp) {
   17126    return (_glptr_PolygonOffsetClampEXT) (GET_by_offset(disp, _gloffset_PolygonOffsetClampEXT));
   17127 }
   17128 
   17129 static inline void SET_PolygonOffsetClampEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
   17130    SET_by_offset(disp, _gloffset_PolygonOffsetClampEXT, fn);
   17131 }
   17132 
   17133 typedef void (GLAPIENTRYP _glptr_WindowRectanglesEXT)(GLenum, GLsizei, const GLint *);
   17134 #define CALL_WindowRectanglesEXT(disp, parameters) \
   17135     (* GET_WindowRectanglesEXT(disp)) parameters
   17136 static inline _glptr_WindowRectanglesEXT GET_WindowRectanglesEXT(struct _glapi_table *disp) {
   17137    return (_glptr_WindowRectanglesEXT) (GET_by_offset(disp, _gloffset_WindowRectanglesEXT));
   17138 }
   17139 
   17140 static inline void SET_WindowRectanglesEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLint *)) {
   17141    SET_by_offset(disp, _gloffset_WindowRectanglesEXT, fn);
   17142 }
   17143 
   17144 typedef void (GLAPIENTRYP _glptr_BufferStorageMemEXT)(GLenum, GLsizeiptr, GLuint, GLuint64);
   17145 #define CALL_BufferStorageMemEXT(disp, parameters) \
   17146     (* GET_BufferStorageMemEXT(disp)) parameters
   17147 static inline _glptr_BufferStorageMemEXT GET_BufferStorageMemEXT(struct _glapi_table *disp) {
   17148    return (_glptr_BufferStorageMemEXT) (GET_by_offset(disp, _gloffset_BufferStorageMemEXT));
   17149 }
   17150 
   17151 static inline void SET_BufferStorageMemEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptr, GLuint, GLuint64)) {
   17152    SET_by_offset(disp, _gloffset_BufferStorageMemEXT, fn);
   17153 }
   17154 
   17155 typedef void (GLAPIENTRYP _glptr_CreateMemoryObjectsEXT)(GLsizei, GLuint *);
   17156 #define CALL_CreateMemoryObjectsEXT(disp, parameters) \
   17157     (* GET_CreateMemoryObjectsEXT(disp)) parameters
   17158 static inline _glptr_CreateMemoryObjectsEXT GET_CreateMemoryObjectsEXT(struct _glapi_table *disp) {
   17159    return (_glptr_CreateMemoryObjectsEXT) (GET_by_offset(disp, _gloffset_CreateMemoryObjectsEXT));
   17160 }
   17161 
   17162 static inline void SET_CreateMemoryObjectsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   17163    SET_by_offset(disp, _gloffset_CreateMemoryObjectsEXT, fn);
   17164 }
   17165 
   17166 typedef void (GLAPIENTRYP _glptr_DeleteMemoryObjectsEXT)(GLsizei, const GLuint *);
   17167 #define CALL_DeleteMemoryObjectsEXT(disp, parameters) \
   17168     (* GET_DeleteMemoryObjectsEXT(disp)) parameters
   17169 static inline _glptr_DeleteMemoryObjectsEXT GET_DeleteMemoryObjectsEXT(struct _glapi_table *disp) {
   17170    return (_glptr_DeleteMemoryObjectsEXT) (GET_by_offset(disp, _gloffset_DeleteMemoryObjectsEXT));
   17171 }
   17172 
   17173 static inline void SET_DeleteMemoryObjectsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   17174    SET_by_offset(disp, _gloffset_DeleteMemoryObjectsEXT, fn);
   17175 }
   17176 
   17177 typedef void (GLAPIENTRYP _glptr_DeleteSemaphoresEXT)(GLsizei, const GLuint *);
   17178 #define CALL_DeleteSemaphoresEXT(disp, parameters) \
   17179     (* GET_DeleteSemaphoresEXT(disp)) parameters
   17180 static inline _glptr_DeleteSemaphoresEXT GET_DeleteSemaphoresEXT(struct _glapi_table *disp) {
   17181    return (_glptr_DeleteSemaphoresEXT) (GET_by_offset(disp, _gloffset_DeleteSemaphoresEXT));
   17182 }
   17183 
   17184 static inline void SET_DeleteSemaphoresEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
   17185    SET_by_offset(disp, _gloffset_DeleteSemaphoresEXT, fn);
   17186 }
   17187 
   17188 typedef void (GLAPIENTRYP _glptr_GenSemaphoresEXT)(GLsizei, GLuint *);
   17189 #define CALL_GenSemaphoresEXT(disp, parameters) \
   17190     (* GET_GenSemaphoresEXT(disp)) parameters
   17191 static inline _glptr_GenSemaphoresEXT GET_GenSemaphoresEXT(struct _glapi_table *disp) {
   17192    return (_glptr_GenSemaphoresEXT) (GET_by_offset(disp, _gloffset_GenSemaphoresEXT));
   17193 }
   17194 
   17195 static inline void SET_GenSemaphoresEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
   17196    SET_by_offset(disp, _gloffset_GenSemaphoresEXT, fn);
   17197 }
   17198 
   17199 typedef void (GLAPIENTRYP _glptr_GetMemoryObjectParameterivEXT)(GLuint, GLenum, GLint *);
   17200 #define CALL_GetMemoryObjectParameterivEXT(disp, parameters) \
   17201     (* GET_GetMemoryObjectParameterivEXT(disp)) parameters
   17202 static inline _glptr_GetMemoryObjectParameterivEXT GET_GetMemoryObjectParameterivEXT(struct _glapi_table *disp) {
   17203    return (_glptr_GetMemoryObjectParameterivEXT) (GET_by_offset(disp, _gloffset_GetMemoryObjectParameterivEXT));
   17204 }
   17205 
   17206 static inline void SET_GetMemoryObjectParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
   17207    SET_by_offset(disp, _gloffset_GetMemoryObjectParameterivEXT, fn);
   17208 }
   17209 
   17210 typedef void (GLAPIENTRYP _glptr_GetSemaphoreParameterui64vEXT)(GLuint, GLenum, GLuint64 *);
   17211 #define CALL_GetSemaphoreParameterui64vEXT(disp, parameters) \
   17212     (* GET_GetSemaphoreParameterui64vEXT(disp)) parameters
   17213 static inline _glptr_GetSemaphoreParameterui64vEXT GET_GetSemaphoreParameterui64vEXT(struct _glapi_table *disp) {
   17214    return (_glptr_GetSemaphoreParameterui64vEXT) (GET_by_offset(disp, _gloffset_GetSemaphoreParameterui64vEXT));
   17215 }
   17216 
   17217 static inline void SET_GetSemaphoreParameterui64vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint64 *)) {
   17218    SET_by_offset(disp, _gloffset_GetSemaphoreParameterui64vEXT, fn);
   17219 }
   17220 
   17221 typedef void (GLAPIENTRYP _glptr_GetUnsignedBytei_vEXT)(GLenum, GLuint, GLubyte *);
   17222 #define CALL_GetUnsignedBytei_vEXT(disp, parameters) \
   17223     (* GET_GetUnsignedBytei_vEXT(disp)) parameters
   17224 static inline _glptr_GetUnsignedBytei_vEXT GET_GetUnsignedBytei_vEXT(struct _glapi_table *disp) {
   17225    return (_glptr_GetUnsignedBytei_vEXT) (GET_by_offset(disp, _gloffset_GetUnsignedBytei_vEXT));
   17226 }
   17227 
   17228 static inline void SET_GetUnsignedBytei_vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLubyte *)) {
   17229    SET_by_offset(disp, _gloffset_GetUnsignedBytei_vEXT, fn);
   17230 }
   17231 
   17232 typedef void (GLAPIENTRYP _glptr_GetUnsignedBytevEXT)(GLenum, GLubyte *);
   17233 #define CALL_GetUnsignedBytevEXT(disp, parameters) \
   17234     (* GET_GetUnsignedBytevEXT(disp)) parameters
   17235 static inline _glptr_GetUnsignedBytevEXT GET_GetUnsignedBytevEXT(struct _glapi_table *disp) {
   17236    return (_glptr_GetUnsignedBytevEXT) (GET_by_offset(disp, _gloffset_GetUnsignedBytevEXT));
   17237 }
   17238 
   17239 static inline void SET_GetUnsignedBytevEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLubyte *)) {
   17240    SET_by_offset(disp, _gloffset_GetUnsignedBytevEXT, fn);
   17241 }
   17242 
   17243 typedef GLboolean (GLAPIENTRYP _glptr_IsMemoryObjectEXT)(GLuint);
   17244 #define CALL_IsMemoryObjectEXT(disp, parameters) \
   17245     (* GET_IsMemoryObjectEXT(disp)) parameters
   17246 static inline _glptr_IsMemoryObjectEXT GET_IsMemoryObjectEXT(struct _glapi_table *disp) {
   17247    return (_glptr_IsMemoryObjectEXT) (GET_by_offset(disp, _gloffset_IsMemoryObjectEXT));
   17248 }
   17249 
   17250 static inline void SET_IsMemoryObjectEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   17251    SET_by_offset(disp, _gloffset_IsMemoryObjectEXT, fn);
   17252 }
   17253 
   17254 typedef GLboolean (GLAPIENTRYP _glptr_IsSemaphoreEXT)(GLuint);
   17255 #define CALL_IsSemaphoreEXT(disp, parameters) \
   17256     (* GET_IsSemaphoreEXT(disp)) parameters
   17257 static inline _glptr_IsSemaphoreEXT GET_IsSemaphoreEXT(struct _glapi_table *disp) {
   17258    return (_glptr_IsSemaphoreEXT) (GET_by_offset(disp, _gloffset_IsSemaphoreEXT));
   17259 }
   17260 
   17261 static inline void SET_IsSemaphoreEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
   17262    SET_by_offset(disp, _gloffset_IsSemaphoreEXT, fn);
   17263 }
   17264 
   17265 typedef void (GLAPIENTRYP _glptr_MemoryObjectParameterivEXT)(GLuint, GLenum, const GLint *);
   17266 #define CALL_MemoryObjectParameterivEXT(disp, parameters) \
   17267     (* GET_MemoryObjectParameterivEXT(disp)) parameters
   17268 static inline _glptr_MemoryObjectParameterivEXT GET_MemoryObjectParameterivEXT(struct _glapi_table *disp) {
   17269    return (_glptr_MemoryObjectParameterivEXT) (GET_by_offset(disp, _gloffset_MemoryObjectParameterivEXT));
   17270 }
   17271 
   17272 static inline void SET_MemoryObjectParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) {
   17273    SET_by_offset(disp, _gloffset_MemoryObjectParameterivEXT, fn);
   17274 }
   17275 
   17276 typedef void (GLAPIENTRYP _glptr_NamedBufferStorageMemEXT)(GLuint, GLsizeiptr, GLuint, GLuint64);
   17277 #define CALL_NamedBufferStorageMemEXT(disp, parameters) \
   17278     (* GET_NamedBufferStorageMemEXT(disp)) parameters
   17279 static inline _glptr_NamedBufferStorageMemEXT GET_NamedBufferStorageMemEXT(struct _glapi_table *disp) {
   17280    return (_glptr_NamedBufferStorageMemEXT) (GET_by_offset(disp, _gloffset_NamedBufferStorageMemEXT));
   17281 }
   17282 
   17283 static inline void SET_NamedBufferStorageMemEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizeiptr, GLuint, GLuint64)) {
   17284    SET_by_offset(disp, _gloffset_NamedBufferStorageMemEXT, fn);
   17285 }
   17286 
   17287 typedef void (GLAPIENTRYP _glptr_SemaphoreParameterui64vEXT)(GLuint, GLenum, const GLuint64 *);
   17288 #define CALL_SemaphoreParameterui64vEXT(disp, parameters) \
   17289     (* GET_SemaphoreParameterui64vEXT(disp)) parameters
   17290 static inline _glptr_SemaphoreParameterui64vEXT GET_SemaphoreParameterui64vEXT(struct _glapi_table *disp) {
   17291    return (_glptr_SemaphoreParameterui64vEXT) (GET_by_offset(disp, _gloffset_SemaphoreParameterui64vEXT));
   17292 }
   17293 
   17294 static inline void SET_SemaphoreParameterui64vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLuint64 *)) {
   17295    SET_by_offset(disp, _gloffset_SemaphoreParameterui64vEXT, fn);
   17296 }
   17297 
   17298 typedef void (GLAPIENTRYP _glptr_SignalSemaphoreEXT)(GLuint, GLuint, const GLuint *, GLuint, const GLuint *, const GLenum *);
   17299 #define CALL_SignalSemaphoreEXT(disp, parameters) \
   17300     (* GET_SignalSemaphoreEXT(disp)) parameters
   17301 static inline _glptr_SignalSemaphoreEXT GET_SignalSemaphoreEXT(struct _glapi_table *disp) {
   17302    return (_glptr_SignalSemaphoreEXT) (GET_by_offset(disp, _gloffset_SignalSemaphoreEXT));
   17303 }
   17304 
   17305 static inline void SET_SignalSemaphoreEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLuint *, GLuint, const GLuint *, const GLenum *)) {
   17306    SET_by_offset(disp, _gloffset_SignalSemaphoreEXT, fn);
   17307 }
   17308 
   17309 typedef void (GLAPIENTRYP _glptr_TexStorageMem1DEXT)(GLenum, GLsizei, GLenum, GLsizei, GLuint, GLuint64);
   17310 #define CALL_TexStorageMem1DEXT(disp, parameters) \
   17311     (* GET_TexStorageMem1DEXT(disp)) parameters
   17312 static inline _glptr_TexStorageMem1DEXT GET_TexStorageMem1DEXT(struct _glapi_table *disp) {
   17313    return (_glptr_TexStorageMem1DEXT) (GET_by_offset(disp, _gloffset_TexStorageMem1DEXT));
   17314 }
   17315 
   17316 static inline void SET_TexStorageMem1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLuint, GLuint64)) {
   17317    SET_by_offset(disp, _gloffset_TexStorageMem1DEXT, fn);
   17318 }
   17319 
   17320 typedef void (GLAPIENTRYP _glptr_TexStorageMem2DEXT)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLuint, GLuint64);
   17321 #define CALL_TexStorageMem2DEXT(disp, parameters) \
   17322     (* GET_TexStorageMem2DEXT(disp)) parameters
   17323 static inline _glptr_TexStorageMem2DEXT GET_TexStorageMem2DEXT(struct _glapi_table *disp) {
   17324    return (_glptr_TexStorageMem2DEXT) (GET_by_offset(disp, _gloffset_TexStorageMem2DEXT));
   17325 }
   17326 
   17327 static inline void SET_TexStorageMem2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLuint, GLuint64)) {
   17328    SET_by_offset(disp, _gloffset_TexStorageMem2DEXT, fn);
   17329 }
   17330 
   17331 typedef void (GLAPIENTRYP _glptr_TexStorageMem2DMultisampleEXT)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLboolean, GLuint, GLuint64);
   17332 #define CALL_TexStorageMem2DMultisampleEXT(disp, parameters) \
   17333     (* GET_TexStorageMem2DMultisampleEXT(disp)) parameters
   17334 static inline _glptr_TexStorageMem2DMultisampleEXT GET_TexStorageMem2DMultisampleEXT(struct _glapi_table *disp) {
   17335    return (_glptr_TexStorageMem2DMultisampleEXT) (GET_by_offset(disp, _gloffset_TexStorageMem2DMultisampleEXT));
   17336 }
   17337 
   17338 static inline void SET_TexStorageMem2DMultisampleEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLboolean, GLuint, GLuint64)) {
   17339    SET_by_offset(disp, _gloffset_TexStorageMem2DMultisampleEXT, fn);
   17340 }
   17341 
   17342 typedef void (GLAPIENTRYP _glptr_TexStorageMem3DEXT)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLuint, GLuint64);
   17343 #define CALL_TexStorageMem3DEXT(disp, parameters) \
   17344     (* GET_TexStorageMem3DEXT(disp)) parameters
   17345 static inline _glptr_TexStorageMem3DEXT GET_TexStorageMem3DEXT(struct _glapi_table *disp) {
   17346    return (_glptr_TexStorageMem3DEXT) (GET_by_offset(disp, _gloffset_TexStorageMem3DEXT));
   17347 }
   17348 
   17349 static inline void SET_TexStorageMem3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLuint, GLuint64)) {
   17350    SET_by_offset(disp, _gloffset_TexStorageMem3DEXT, fn);
   17351 }
   17352 
   17353 typedef void (GLAPIENTRYP _glptr_TexStorageMem3DMultisampleEXT)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean, GLuint, GLuint64);
   17354 #define CALL_TexStorageMem3DMultisampleEXT(disp, parameters) \
   17355     (* GET_TexStorageMem3DMultisampleEXT(disp)) parameters
   17356 static inline _glptr_TexStorageMem3DMultisampleEXT GET_TexStorageMem3DMultisampleEXT(struct _glapi_table *disp) {
   17357    return (_glptr_TexStorageMem3DMultisampleEXT) (GET_by_offset(disp, _gloffset_TexStorageMem3DMultisampleEXT));
   17358 }
   17359 
   17360 static inline void SET_TexStorageMem3DMultisampleEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean, GLuint, GLuint64)) {
   17361    SET_by_offset(disp, _gloffset_TexStorageMem3DMultisampleEXT, fn);
   17362 }
   17363 
   17364 typedef void (GLAPIENTRYP _glptr_TextureStorageMem1DEXT)(GLuint, GLsizei, GLenum, GLsizei, GLuint, GLuint64);
   17365 #define CALL_TextureStorageMem1DEXT(disp, parameters) \
   17366     (* GET_TextureStorageMem1DEXT(disp)) parameters
   17367 static inline _glptr_TextureStorageMem1DEXT GET_TextureStorageMem1DEXT(struct _glapi_table *disp) {
   17368    return (_glptr_TextureStorageMem1DEXT) (GET_by_offset(disp, _gloffset_TextureStorageMem1DEXT));
   17369 }
   17370 
   17371 static inline void SET_TextureStorageMem1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLuint, GLuint64)) {
   17372    SET_by_offset(disp, _gloffset_TextureStorageMem1DEXT, fn);
   17373 }
   17374 
   17375 typedef void (GLAPIENTRYP _glptr_TextureStorageMem2DEXT)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLuint, GLuint64);
   17376 #define CALL_TextureStorageMem2DEXT(disp, parameters) \
   17377     (* GET_TextureStorageMem2DEXT(disp)) parameters
   17378 static inline _glptr_TextureStorageMem2DEXT GET_TextureStorageMem2DEXT(struct _glapi_table *disp) {
   17379    return (_glptr_TextureStorageMem2DEXT) (GET_by_offset(disp, _gloffset_TextureStorageMem2DEXT));
   17380 }
   17381 
   17382 static inline void SET_TextureStorageMem2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLuint, GLuint64)) {
   17383    SET_by_offset(disp, _gloffset_TextureStorageMem2DEXT, fn);
   17384 }
   17385 
   17386 typedef void (GLAPIENTRYP _glptr_TextureStorageMem2DMultisampleEXT)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLboolean, GLuint, GLuint64);
   17387 #define CALL_TextureStorageMem2DMultisampleEXT(disp, parameters) \
   17388     (* GET_TextureStorageMem2DMultisampleEXT(disp)) parameters
   17389 static inline _glptr_TextureStorageMem2DMultisampleEXT GET_TextureStorageMem2DMultisampleEXT(struct _glapi_table *disp) {
   17390    return (_glptr_TextureStorageMem2DMultisampleEXT) (GET_by_offset(disp, _gloffset_TextureStorageMem2DMultisampleEXT));
   17391 }
   17392 
   17393 static inline void SET_TextureStorageMem2DMultisampleEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLboolean, GLuint, GLuint64)) {
   17394    SET_by_offset(disp, _gloffset_TextureStorageMem2DMultisampleEXT, fn);
   17395 }
   17396 
   17397 typedef void (GLAPIENTRYP _glptr_TextureStorageMem3DEXT)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLuint, GLuint64);
   17398 #define CALL_TextureStorageMem3DEXT(disp, parameters) \
   17399     (* GET_TextureStorageMem3DEXT(disp)) parameters
   17400 static inline _glptr_TextureStorageMem3DEXT GET_TextureStorageMem3DEXT(struct _glapi_table *disp) {
   17401    return (_glptr_TextureStorageMem3DEXT) (GET_by_offset(disp, _gloffset_TextureStorageMem3DEXT));
   17402 }
   17403 
   17404 static inline void SET_TextureStorageMem3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLuint, GLuint64)) {
   17405    SET_by_offset(disp, _gloffset_TextureStorageMem3DEXT, fn);
   17406 }
   17407 
   17408 typedef void (GLAPIENTRYP _glptr_TextureStorageMem3DMultisampleEXT)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean, GLuint, GLuint64);
   17409 #define CALL_TextureStorageMem3DMultisampleEXT(disp, parameters) \
   17410     (* GET_TextureStorageMem3DMultisampleEXT(disp)) parameters
   17411 static inline _glptr_TextureStorageMem3DMultisampleEXT GET_TextureStorageMem3DMultisampleEXT(struct _glapi_table *disp) {
   17412    return (_glptr_TextureStorageMem3DMultisampleEXT) (GET_by_offset(disp, _gloffset_TextureStorageMem3DMultisampleEXT));
   17413 }
   17414 
   17415 static inline void SET_TextureStorageMem3DMultisampleEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum, GLsizei, GLsizei, GLsizei, GLboolean, GLuint, GLuint64)) {
   17416    SET_by_offset(disp, _gloffset_TextureStorageMem3DMultisampleEXT, fn);
   17417 }
   17418 
   17419 typedef void (GLAPIENTRYP _glptr_WaitSemaphoreEXT)(GLuint, GLuint, const GLuint *, GLuint, const GLuint *, const GLenum *);
   17420 #define CALL_WaitSemaphoreEXT(disp, parameters) \
   17421     (* GET_WaitSemaphoreEXT(disp)) parameters
   17422 static inline _glptr_WaitSemaphoreEXT GET_WaitSemaphoreEXT(struct _glapi_table *disp) {
   17423    return (_glptr_WaitSemaphoreEXT) (GET_by_offset(disp, _gloffset_WaitSemaphoreEXT));
   17424 }
   17425 
   17426 static inline void SET_WaitSemaphoreEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLuint *, GLuint, const GLuint *, const GLenum *)) {
   17427    SET_by_offset(disp, _gloffset_WaitSemaphoreEXT, fn);
   17428 }
   17429 
   17430 typedef void (GLAPIENTRYP _glptr_ImportMemoryFdEXT)(GLuint, GLuint64, GLenum, GLint);
   17431 #define CALL_ImportMemoryFdEXT(disp, parameters) \
   17432     (* GET_ImportMemoryFdEXT(disp)) parameters
   17433 static inline _glptr_ImportMemoryFdEXT GET_ImportMemoryFdEXT(struct _glapi_table *disp) {
   17434    return (_glptr_ImportMemoryFdEXT) (GET_by_offset(disp, _gloffset_ImportMemoryFdEXT));
   17435 }
   17436 
   17437 static inline void SET_ImportMemoryFdEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint64, GLenum, GLint)) {
   17438    SET_by_offset(disp, _gloffset_ImportMemoryFdEXT, fn);
   17439 }
   17440 
   17441 typedef void (GLAPIENTRYP _glptr_ImportSemaphoreFdEXT)(GLuint, GLenum, GLint);
   17442 #define CALL_ImportSemaphoreFdEXT(disp, parameters) \
   17443     (* GET_ImportSemaphoreFdEXT(disp)) parameters
   17444 static inline _glptr_ImportSemaphoreFdEXT GET_ImportSemaphoreFdEXT(struct _glapi_table *disp) {
   17445    return (_glptr_ImportSemaphoreFdEXT) (GET_by_offset(disp, _gloffset_ImportSemaphoreFdEXT));
   17446 }
   17447 
   17448 static inline void SET_ImportSemaphoreFdEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
   17449    SET_by_offset(disp, _gloffset_ImportSemaphoreFdEXT, fn);
   17450 }
   17451 
   17452 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparateATI)(GLenum, GLenum, GLint, GLuint);
   17453 #define CALL_StencilFuncSeparateATI(disp, parameters) \
   17454     (* GET_StencilFuncSeparateATI(disp)) parameters
   17455 static inline _glptr_StencilFuncSeparateATI GET_StencilFuncSeparateATI(struct _glapi_table *disp) {
   17456    return (_glptr_StencilFuncSeparateATI) (GET_by_offset(disp, _gloffset_StencilFuncSeparateATI));
   17457 }
   17458 
   17459 static inline void SET_StencilFuncSeparateATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) {
   17460    SET_by_offset(disp, _gloffset_StencilFuncSeparateATI, fn);
   17461 }
   17462 
   17463 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *);
   17464 #define CALL_ProgramEnvParameters4fvEXT(disp, parameters) \
   17465     (* GET_ProgramEnvParameters4fvEXT(disp)) parameters
   17466 static inline _glptr_ProgramEnvParameters4fvEXT GET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp) {
   17467    return (_glptr_ProgramEnvParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT));
   17468 }
   17469 
   17470 static inline void SET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
   17471    SET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT, fn);
   17472 }
   17473 
   17474 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *);
   17475 #define CALL_ProgramLocalParameters4fvEXT(disp, parameters) \
   17476     (* GET_ProgramLocalParameters4fvEXT(disp)) parameters
   17477 static inline _glptr_ProgramLocalParameters4fvEXT GET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp) {
   17478    return (_glptr_ProgramLocalParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT));
   17479 }
   17480 
   17481 static inline void SET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
   17482    SET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT, fn);
   17483 }
   17484 
   17485 typedef void (GLAPIENTRYP _glptr_EGLImageTargetRenderbufferStorageOES)(GLenum, GLvoid *);
   17486 #define CALL_EGLImageTargetRenderbufferStorageOES(disp, parameters) \
   17487     (* GET_EGLImageTargetRenderbufferStorageOES(disp)) parameters
   17488 static inline _glptr_EGLImageTargetRenderbufferStorageOES GET_EGLImageTargetRenderbufferStorageOES(struct _glapi_table *disp) {
   17489    return (_glptr_EGLImageTargetRenderbufferStorageOES) (GET_by_offset(disp, _gloffset_EGLImageTargetRenderbufferStorageOES));
   17490 }
   17491 
   17492 static inline void SET_EGLImageTargetRenderbufferStorageOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid *)) {
   17493    SET_by_offset(disp, _gloffset_EGLImageTargetRenderbufferStorageOES, fn);
   17494 }
   17495 
   17496 typedef void (GLAPIENTRYP _glptr_EGLImageTargetTexture2DOES)(GLenum, GLvoid *);
   17497 #define CALL_EGLImageTargetTexture2DOES(disp, parameters) \
   17498     (* GET_EGLImageTargetTexture2DOES(disp)) parameters
   17499 static inline _glptr_EGLImageTargetTexture2DOES GET_EGLImageTargetTexture2DOES(struct _glapi_table *disp) {
   17500    return (_glptr_EGLImageTargetTexture2DOES) (GET_by_offset(disp, _gloffset_EGLImageTargetTexture2DOES));
   17501 }
   17502 
   17503 static inline void SET_EGLImageTargetTexture2DOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid *)) {
   17504    SET_by_offset(disp, _gloffset_EGLImageTargetTexture2DOES, fn);
   17505 }
   17506 
   17507 typedef void (GLAPIENTRYP _glptr_AlphaFuncx)(GLenum, GLclampx);
   17508 #define CALL_AlphaFuncx(disp, parameters) \
   17509     (* GET_AlphaFuncx(disp)) parameters
   17510 static inline _glptr_AlphaFuncx GET_AlphaFuncx(struct _glapi_table *disp) {
   17511    return (_glptr_AlphaFuncx) (GET_by_offset(disp, _gloffset_AlphaFuncx));
   17512 }
   17513 
   17514 static inline void SET_AlphaFuncx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampx)) {
   17515    SET_by_offset(disp, _gloffset_AlphaFuncx, fn);
   17516 }
   17517 
   17518 typedef void (GLAPIENTRYP _glptr_ClearColorx)(GLclampx, GLclampx, GLclampx, GLclampx);
   17519 #define CALL_ClearColorx(disp, parameters) \
   17520     (* GET_ClearColorx(disp)) parameters
   17521 static inline _glptr_ClearColorx GET_ClearColorx(struct _glapi_table *disp) {
   17522    return (_glptr_ClearColorx) (GET_by_offset(disp, _gloffset_ClearColorx));
   17523 }
   17524 
   17525 static inline void SET_ClearColorx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampx, GLclampx, GLclampx, GLclampx)) {
   17526    SET_by_offset(disp, _gloffset_ClearColorx, fn);
   17527 }
   17528 
   17529 typedef void (GLAPIENTRYP _glptr_ClearDepthx)(GLclampx);
   17530 #define CALL_ClearDepthx(disp, parameters) \
   17531     (* GET_ClearDepthx(disp)) parameters
   17532 static inline _glptr_ClearDepthx GET_ClearDepthx(struct _glapi_table *disp) {
   17533    return (_glptr_ClearDepthx) (GET_by_offset(disp, _gloffset_ClearDepthx));
   17534 }
   17535 
   17536 static inline void SET_ClearDepthx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampx)) {
   17537    SET_by_offset(disp, _gloffset_ClearDepthx, fn);
   17538 }
   17539 
   17540 typedef void (GLAPIENTRYP _glptr_Color4x)(GLfixed, GLfixed, GLfixed, GLfixed);
   17541 #define CALL_Color4x(disp, parameters) \
   17542     (* GET_Color4x(disp)) parameters
   17543 static inline _glptr_Color4x GET_Color4x(struct _glapi_table *disp) {
   17544    return (_glptr_Color4x) (GET_by_offset(disp, _gloffset_Color4x));
   17545 }
   17546 
   17547 static inline void SET_Color4x(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed, GLfixed)) {
   17548    SET_by_offset(disp, _gloffset_Color4x, fn);
   17549 }
   17550 
   17551 typedef void (GLAPIENTRYP _glptr_DepthRangex)(GLclampx, GLclampx);
   17552 #define CALL_DepthRangex(disp, parameters) \
   17553     (* GET_DepthRangex(disp)) parameters
   17554 static inline _glptr_DepthRangex GET_DepthRangex(struct _glapi_table *disp) {
   17555    return (_glptr_DepthRangex) (GET_by_offset(disp, _gloffset_DepthRangex));
   17556 }
   17557 
   17558 static inline void SET_DepthRangex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampx, GLclampx)) {
   17559    SET_by_offset(disp, _gloffset_DepthRangex, fn);
   17560 }
   17561 
   17562 typedef void (GLAPIENTRYP _glptr_Fogx)(GLenum, GLfixed);
   17563 #define CALL_Fogx(disp, parameters) \
   17564     (* GET_Fogx(disp)) parameters
   17565 static inline _glptr_Fogx GET_Fogx(struct _glapi_table *disp) {
   17566    return (_glptr_Fogx) (GET_by_offset(disp, _gloffset_Fogx));
   17567 }
   17568 
   17569 static inline void SET_Fogx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfixed)) {
   17570    SET_by_offset(disp, _gloffset_Fogx, fn);
   17571 }
   17572 
   17573 typedef void (GLAPIENTRYP _glptr_Fogxv)(GLenum, const GLfixed *);
   17574 #define CALL_Fogxv(disp, parameters) \
   17575     (* GET_Fogxv(disp)) parameters
   17576 static inline _glptr_Fogxv GET_Fogxv(struct _glapi_table *disp) {
   17577    return (_glptr_Fogxv) (GET_by_offset(disp, _gloffset_Fogxv));
   17578 }
   17579 
   17580 static inline void SET_Fogxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfixed *)) {
   17581    SET_by_offset(disp, _gloffset_Fogxv, fn);
   17582 }
   17583 
   17584 typedef void (GLAPIENTRYP _glptr_Frustumf)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
   17585 #define CALL_Frustumf(disp, parameters) \
   17586     (* GET_Frustumf(disp)) parameters
   17587 static inline _glptr_Frustumf GET_Frustumf(struct _glapi_table *disp) {
   17588    return (_glptr_Frustumf) (GET_by_offset(disp, _gloffset_Frustumf));
   17589 }
   17590 
   17591 static inline void SET_Frustumf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat)) {
   17592    SET_by_offset(disp, _gloffset_Frustumf, fn);
   17593 }
   17594 
   17595 typedef void (GLAPIENTRYP _glptr_Frustumx)(GLfixed, GLfixed, GLfixed, GLfixed, GLfixed, GLfixed);
   17596 #define CALL_Frustumx(disp, parameters) \
   17597     (* GET_Frustumx(disp)) parameters
   17598 static inline _glptr_Frustumx GET_Frustumx(struct _glapi_table *disp) {
   17599    return (_glptr_Frustumx) (GET_by_offset(disp, _gloffset_Frustumx));
   17600 }
   17601 
   17602 static inline void SET_Frustumx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed, GLfixed, GLfixed, GLfixed)) {
   17603    SET_by_offset(disp, _gloffset_Frustumx, fn);
   17604 }
   17605 
   17606 typedef void (GLAPIENTRYP _glptr_LightModelx)(GLenum, GLfixed);
   17607 #define CALL_LightModelx(disp, parameters) \
   17608     (* GET_LightModelx(disp)) parameters
   17609 static inline _glptr_LightModelx GET_LightModelx(struct _glapi_table *disp) {
   17610    return (_glptr_LightModelx) (GET_by_offset(disp, _gloffset_LightModelx));
   17611 }
   17612 
   17613 static inline void SET_LightModelx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfixed)) {
   17614    SET_by_offset(disp, _gloffset_LightModelx, fn);
   17615 }
   17616 
   17617 typedef void (GLAPIENTRYP _glptr_LightModelxv)(GLenum, const GLfixed *);
   17618 #define CALL_LightModelxv(disp, parameters) \
   17619     (* GET_LightModelxv(disp)) parameters
   17620 static inline _glptr_LightModelxv GET_LightModelxv(struct _glapi_table *disp) {
   17621    return (_glptr_LightModelxv) (GET_by_offset(disp, _gloffset_LightModelxv));
   17622 }
   17623 
   17624 static inline void SET_LightModelxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfixed *)) {
   17625    SET_by_offset(disp, _gloffset_LightModelxv, fn);
   17626 }
   17627 
   17628 typedef void (GLAPIENTRYP _glptr_Lightx)(GLenum, GLenum, GLfixed);
   17629 #define CALL_Lightx(disp, parameters) \
   17630     (* GET_Lightx(disp)) parameters
   17631 static inline _glptr_Lightx GET_Lightx(struct _glapi_table *disp) {
   17632    return (_glptr_Lightx) (GET_by_offset(disp, _gloffset_Lightx));
   17633 }
   17634 
   17635 static inline void SET_Lightx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed)) {
   17636    SET_by_offset(disp, _gloffset_Lightx, fn);
   17637 }
   17638 
   17639 typedef void (GLAPIENTRYP _glptr_Lightxv)(GLenum, GLenum, const GLfixed *);
   17640 #define CALL_Lightxv(disp, parameters) \
   17641     (* GET_Lightxv(disp)) parameters
   17642 static inline _glptr_Lightxv GET_Lightxv(struct _glapi_table *disp) {
   17643    return (_glptr_Lightxv) (GET_by_offset(disp, _gloffset_Lightxv));
   17644 }
   17645 
   17646 static inline void SET_Lightxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfixed *)) {
   17647    SET_by_offset(disp, _gloffset_Lightxv, fn);
   17648 }
   17649 
   17650 typedef void (GLAPIENTRYP _glptr_LineWidthx)(GLfixed);
   17651 #define CALL_LineWidthx(disp, parameters) \
   17652     (* GET_LineWidthx(disp)) parameters
   17653 static inline _glptr_LineWidthx GET_LineWidthx(struct _glapi_table *disp) {
   17654    return (_glptr_LineWidthx) (GET_by_offset(disp, _gloffset_LineWidthx));
   17655 }
   17656 
   17657 static inline void SET_LineWidthx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed)) {
   17658    SET_by_offset(disp, _gloffset_LineWidthx, fn);
   17659 }
   17660 
   17661 typedef void (GLAPIENTRYP _glptr_LoadMatrixx)(const GLfixed *);
   17662 #define CALL_LoadMatrixx(disp, parameters) \
   17663     (* GET_LoadMatrixx(disp)) parameters
   17664 static inline _glptr_LoadMatrixx GET_LoadMatrixx(struct _glapi_table *disp) {
   17665    return (_glptr_LoadMatrixx) (GET_by_offset(disp, _gloffset_LoadMatrixx));
   17666 }
   17667 
   17668 static inline void SET_LoadMatrixx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfixed *)) {
   17669    SET_by_offset(disp, _gloffset_LoadMatrixx, fn);
   17670 }
   17671 
   17672 typedef void (GLAPIENTRYP _glptr_Materialx)(GLenum, GLenum, GLfixed);
   17673 #define CALL_Materialx(disp, parameters) \
   17674     (* GET_Materialx(disp)) parameters
   17675 static inline _glptr_Materialx GET_Materialx(struct _glapi_table *disp) {
   17676    return (_glptr_Materialx) (GET_by_offset(disp, _gloffset_Materialx));
   17677 }
   17678 
   17679 static inline void SET_Materialx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed)) {
   17680    SET_by_offset(disp, _gloffset_Materialx, fn);
   17681 }
   17682 
   17683 typedef void (GLAPIENTRYP _glptr_Materialxv)(GLenum, GLenum, const GLfixed *);
   17684 #define CALL_Materialxv(disp, parameters) \
   17685     (* GET_Materialxv(disp)) parameters
   17686 static inline _glptr_Materialxv GET_Materialxv(struct _glapi_table *disp) {
   17687    return (_glptr_Materialxv) (GET_by_offset(disp, _gloffset_Materialxv));
   17688 }
   17689 
   17690 static inline void SET_Materialxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfixed *)) {
   17691    SET_by_offset(disp, _gloffset_Materialxv, fn);
   17692 }
   17693 
   17694 typedef void (GLAPIENTRYP _glptr_MultMatrixx)(const GLfixed *);
   17695 #define CALL_MultMatrixx(disp, parameters) \
   17696     (* GET_MultMatrixx(disp)) parameters
   17697 static inline _glptr_MultMatrixx GET_MultMatrixx(struct _glapi_table *disp) {
   17698    return (_glptr_MultMatrixx) (GET_by_offset(disp, _gloffset_MultMatrixx));
   17699 }
   17700 
   17701 static inline void SET_MultMatrixx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfixed *)) {
   17702    SET_by_offset(disp, _gloffset_MultMatrixx, fn);
   17703 }
   17704 
   17705 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4x)(GLenum, GLfixed, GLfixed, GLfixed, GLfixed);
   17706 #define CALL_MultiTexCoord4x(disp, parameters) \
   17707     (* GET_MultiTexCoord4x(disp)) parameters
   17708 static inline _glptr_MultiTexCoord4x GET_MultiTexCoord4x(struct _glapi_table *disp) {
   17709    return (_glptr_MultiTexCoord4x) (GET_by_offset(disp, _gloffset_MultiTexCoord4x));
   17710 }
   17711 
   17712 static inline void SET_MultiTexCoord4x(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfixed, GLfixed, GLfixed, GLfixed)) {
   17713    SET_by_offset(disp, _gloffset_MultiTexCoord4x, fn);
   17714 }
   17715 
   17716 typedef void (GLAPIENTRYP _glptr_Normal3x)(GLfixed, GLfixed, GLfixed);
   17717 #define CALL_Normal3x(disp, parameters) \
   17718     (* GET_Normal3x(disp)) parameters
   17719 static inline _glptr_Normal3x GET_Normal3x(struct _glapi_table *disp) {
   17720    return (_glptr_Normal3x) (GET_by_offset(disp, _gloffset_Normal3x));
   17721 }
   17722 
   17723 static inline void SET_Normal3x(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed)) {
   17724    SET_by_offset(disp, _gloffset_Normal3x, fn);
   17725 }
   17726 
   17727 typedef void (GLAPIENTRYP _glptr_Orthof)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
   17728 #define CALL_Orthof(disp, parameters) \
   17729     (* GET_Orthof(disp)) parameters
   17730 static inline _glptr_Orthof GET_Orthof(struct _glapi_table *disp) {
   17731    return (_glptr_Orthof) (GET_by_offset(disp, _gloffset_Orthof));
   17732 }
   17733 
   17734 static inline void SET_Orthof(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat)) {
   17735    SET_by_offset(disp, _gloffset_Orthof, fn);
   17736 }
   17737 
   17738 typedef void (GLAPIENTRYP _glptr_Orthox)(GLfixed, GLfixed, GLfixed, GLfixed, GLfixed, GLfixed);
   17739 #define CALL_Orthox(disp, parameters) \
   17740     (* GET_Orthox(disp)) parameters
   17741 static inline _glptr_Orthox GET_Orthox(struct _glapi_table *disp) {
   17742    return (_glptr_Orthox) (GET_by_offset(disp, _gloffset_Orthox));
   17743 }
   17744 
   17745 static inline void SET_Orthox(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed, GLfixed, GLfixed, GLfixed)) {
   17746    SET_by_offset(disp, _gloffset_Orthox, fn);
   17747 }
   17748 
   17749 typedef void (GLAPIENTRYP _glptr_PointSizex)(GLfixed);
   17750 #define CALL_PointSizex(disp, parameters) \
   17751     (* GET_PointSizex(disp)) parameters
   17752 static inline _glptr_PointSizex GET_PointSizex(struct _glapi_table *disp) {
   17753    return (_glptr_PointSizex) (GET_by_offset(disp, _gloffset_PointSizex));
   17754 }
   17755 
   17756 static inline void SET_PointSizex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed)) {
   17757    SET_by_offset(disp, _gloffset_PointSizex, fn);
   17758 }
   17759 
   17760 typedef void (GLAPIENTRYP _glptr_PolygonOffsetx)(GLfixed, GLfixed);
   17761 #define CALL_PolygonOffsetx(disp, parameters) \
   17762     (* GET_PolygonOffsetx(disp)) parameters
   17763 static inline _glptr_PolygonOffsetx GET_PolygonOffsetx(struct _glapi_table *disp) {
   17764    return (_glptr_PolygonOffsetx) (GET_by_offset(disp, _gloffset_PolygonOffsetx));
   17765 }
   17766 
   17767 static inline void SET_PolygonOffsetx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed)) {
   17768    SET_by_offset(disp, _gloffset_PolygonOffsetx, fn);
   17769 }
   17770 
   17771 typedef void (GLAPIENTRYP _glptr_Rotatex)(GLfixed, GLfixed, GLfixed, GLfixed);
   17772 #define CALL_Rotatex(disp, parameters) \
   17773     (* GET_Rotatex(disp)) parameters
   17774 static inline _glptr_Rotatex GET_Rotatex(struct _glapi_table *disp) {
   17775    return (_glptr_Rotatex) (GET_by_offset(disp, _gloffset_Rotatex));
   17776 }
   17777 
   17778 static inline void SET_Rotatex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed, GLfixed)) {
   17779    SET_by_offset(disp, _gloffset_Rotatex, fn);
   17780 }
   17781 
   17782 typedef void (GLAPIENTRYP _glptr_SampleCoveragex)(GLclampx, GLboolean);
   17783 #define CALL_SampleCoveragex(disp, parameters) \
   17784     (* GET_SampleCoveragex(disp)) parameters
   17785 static inline _glptr_SampleCoveragex GET_SampleCoveragex(struct _glapi_table *disp) {
   17786    return (_glptr_SampleCoveragex) (GET_by_offset(disp, _gloffset_SampleCoveragex));
   17787 }
   17788 
   17789 static inline void SET_SampleCoveragex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampx, GLboolean)) {
   17790    SET_by_offset(disp, _gloffset_SampleCoveragex, fn);
   17791 }
   17792 
   17793 typedef void (GLAPIENTRYP _glptr_Scalex)(GLfixed, GLfixed, GLfixed);
   17794 #define CALL_Scalex(disp, parameters) \
   17795     (* GET_Scalex(disp)) parameters
   17796 static inline _glptr_Scalex GET_Scalex(struct _glapi_table *disp) {
   17797    return (_glptr_Scalex) (GET_by_offset(disp, _gloffset_Scalex));
   17798 }
   17799 
   17800 static inline void SET_Scalex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed)) {
   17801    SET_by_offset(disp, _gloffset_Scalex, fn);
   17802 }
   17803 
   17804 typedef void (GLAPIENTRYP _glptr_TexEnvx)(GLenum, GLenum, GLfixed);
   17805 #define CALL_TexEnvx(disp, parameters) \
   17806     (* GET_TexEnvx(disp)) parameters
   17807 static inline _glptr_TexEnvx GET_TexEnvx(struct _glapi_table *disp) {
   17808    return (_glptr_TexEnvx) (GET_by_offset(disp, _gloffset_TexEnvx));
   17809 }
   17810 
   17811 static inline void SET_TexEnvx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed)) {
   17812    SET_by_offset(disp, _gloffset_TexEnvx, fn);
   17813 }
   17814 
   17815 typedef void (GLAPIENTRYP _glptr_TexEnvxv)(GLenum, GLenum, const GLfixed *);
   17816 #define CALL_TexEnvxv(disp, parameters) \
   17817     (* GET_TexEnvxv(disp)) parameters
   17818 static inline _glptr_TexEnvxv GET_TexEnvxv(struct _glapi_table *disp) {
   17819    return (_glptr_TexEnvxv) (GET_by_offset(disp, _gloffset_TexEnvxv));
   17820 }
   17821 
   17822 static inline void SET_TexEnvxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfixed *)) {
   17823    SET_by_offset(disp, _gloffset_TexEnvxv, fn);
   17824 }
   17825 
   17826 typedef void (GLAPIENTRYP _glptr_TexParameterx)(GLenum, GLenum, GLfixed);
   17827 #define CALL_TexParameterx(disp, parameters) \
   17828     (* GET_TexParameterx(disp)) parameters
   17829 static inline _glptr_TexParameterx GET_TexParameterx(struct _glapi_table *disp) {
   17830    return (_glptr_TexParameterx) (GET_by_offset(disp, _gloffset_TexParameterx));
   17831 }
   17832 
   17833 static inline void SET_TexParameterx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed)) {
   17834    SET_by_offset(disp, _gloffset_TexParameterx, fn);
   17835 }
   17836 
   17837 typedef void (GLAPIENTRYP _glptr_Translatex)(GLfixed, GLfixed, GLfixed);
   17838 #define CALL_Translatex(disp, parameters) \
   17839     (* GET_Translatex(disp)) parameters
   17840 static inline _glptr_Translatex GET_Translatex(struct _glapi_table *disp) {
   17841    return (_glptr_Translatex) (GET_by_offset(disp, _gloffset_Translatex));
   17842 }
   17843 
   17844 static inline void SET_Translatex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfixed, GLfixed, GLfixed)) {
   17845    SET_by_offset(disp, _gloffset_Translatex, fn);
   17846 }
   17847 
   17848 typedef void (GLAPIENTRYP _glptr_ClipPlanef)(GLenum, const GLfloat *);
   17849 #define CALL_ClipPlanef(disp, parameters) \
   17850     (* GET_ClipPlanef(disp)) parameters
   17851 static inline _glptr_ClipPlanef GET_ClipPlanef(struct _glapi_table *disp) {
   17852    return (_glptr_ClipPlanef) (GET_by_offset(disp, _gloffset_ClipPlanef));
   17853 }
   17854 
   17855 static inline void SET_ClipPlanef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
   17856    SET_by_offset(disp, _gloffset_ClipPlanef, fn);
   17857 }
   17858 
   17859 typedef void (GLAPIENTRYP _glptr_ClipPlanex)(GLenum, const GLfixed *);
   17860 #define CALL_ClipPlanex(disp, parameters) \
   17861     (* GET_ClipPlanex(disp)) parameters
   17862 static inline _glptr_ClipPlanex GET_ClipPlanex(struct _glapi_table *disp) {
   17863    return (_glptr_ClipPlanex) (GET_by_offset(disp, _gloffset_ClipPlanex));
   17864 }
   17865 
   17866 static inline void SET_ClipPlanex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfixed *)) {
   17867    SET_by_offset(disp, _gloffset_ClipPlanex, fn);
   17868 }
   17869 
   17870 typedef void (GLAPIENTRYP _glptr_GetClipPlanef)(GLenum, GLfloat *);
   17871 #define CALL_GetClipPlanef(disp, parameters) \
   17872     (* GET_GetClipPlanef(disp)) parameters
   17873 static inline _glptr_GetClipPlanef GET_GetClipPlanef(struct _glapi_table *disp) {
   17874    return (_glptr_GetClipPlanef) (GET_by_offset(disp, _gloffset_GetClipPlanef));
   17875 }
   17876 
   17877 static inline void SET_GetClipPlanef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
   17878    SET_by_offset(disp, _gloffset_GetClipPlanef, fn);
   17879 }
   17880 
   17881 typedef void (GLAPIENTRYP _glptr_GetClipPlanex)(GLenum, GLfixed *);
   17882 #define CALL_GetClipPlanex(disp, parameters) \
   17883     (* GET_GetClipPlanex(disp)) parameters
   17884 static inline _glptr_GetClipPlanex GET_GetClipPlanex(struct _glapi_table *disp) {
   17885    return (_glptr_GetClipPlanex) (GET_by_offset(disp, _gloffset_GetClipPlanex));
   17886 }
   17887 
   17888 static inline void SET_GetClipPlanex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfixed *)) {
   17889    SET_by_offset(disp, _gloffset_GetClipPlanex, fn);
   17890 }
   17891 
   17892 typedef void (GLAPIENTRYP _glptr_GetFixedv)(GLenum, GLfixed *);
   17893 #define CALL_GetFixedv(disp, parameters) \
   17894     (* GET_GetFixedv(disp)) parameters
   17895 static inline _glptr_GetFixedv GET_GetFixedv(struct _glapi_table *disp) {
   17896    return (_glptr_GetFixedv) (GET_by_offset(disp, _gloffset_GetFixedv));
   17897 }
   17898 
   17899 static inline void SET_GetFixedv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfixed *)) {
   17900    SET_by_offset(disp, _gloffset_GetFixedv, fn);
   17901 }
   17902 
   17903 typedef void (GLAPIENTRYP _glptr_GetLightxv)(GLenum, GLenum, GLfixed *);
   17904 #define CALL_GetLightxv(disp, parameters) \
   17905     (* GET_GetLightxv(disp)) parameters
   17906 static inline _glptr_GetLightxv GET_GetLightxv(struct _glapi_table *disp) {
   17907    return (_glptr_GetLightxv) (GET_by_offset(disp, _gloffset_GetLightxv));
   17908 }
   17909 
   17910 static inline void SET_GetLightxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed *)) {
   17911    SET_by_offset(disp, _gloffset_GetLightxv, fn);
   17912 }
   17913 
   17914 typedef void (GLAPIENTRYP _glptr_GetMaterialxv)(GLenum, GLenum, GLfixed *);
   17915 #define CALL_GetMaterialxv(disp, parameters) \
   17916     (* GET_GetMaterialxv(disp)) parameters
   17917 static inline _glptr_GetMaterialxv GET_GetMaterialxv(struct _glapi_table *disp) {
   17918    return (_glptr_GetMaterialxv) (GET_by_offset(disp, _gloffset_GetMaterialxv));
   17919 }
   17920 
   17921 static inline void SET_GetMaterialxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed *)) {
   17922    SET_by_offset(disp, _gloffset_GetMaterialxv, fn);
   17923 }
   17924 
   17925 typedef void (GLAPIENTRYP _glptr_GetTexEnvxv)(GLenum, GLenum, GLfixed *);
   17926 #define CALL_GetTexEnvxv(disp, parameters) \
   17927     (* GET_GetTexEnvxv(disp)) parameters
   17928 static inline _glptr_GetTexEnvxv GET_GetTexEnvxv(struct _glapi_table *disp) {
   17929    return (_glptr_GetTexEnvxv) (GET_by_offset(disp, _gloffset_GetTexEnvxv));
   17930 }
   17931 
   17932 static inline void SET_GetTexEnvxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed *)) {
   17933    SET_by_offset(disp, _gloffset_GetTexEnvxv, fn);
   17934 }
   17935 
   17936 typedef void (GLAPIENTRYP _glptr_GetTexParameterxv)(GLenum, GLenum, GLfixed *);
   17937 #define CALL_GetTexParameterxv(disp, parameters) \
   17938     (* GET_GetTexParameterxv(disp)) parameters
   17939 static inline _glptr_GetTexParameterxv GET_GetTexParameterxv(struct _glapi_table *disp) {
   17940    return (_glptr_GetTexParameterxv) (GET_by_offset(disp, _gloffset_GetTexParameterxv));
   17941 }
   17942 
   17943 static inline void SET_GetTexParameterxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfixed *)) {
   17944    SET_by_offset(disp, _gloffset_GetTexParameterxv, fn);
   17945 }
   17946 
   17947 typedef void (GLAPIENTRYP _glptr_PointParameterx)(GLenum, GLfixed);
   17948 #define CALL_PointParameterx(disp, parameters) \
   17949     (* GET_PointParameterx(disp)) parameters
   17950 static inline _glptr_PointParameterx GET_PointParameterx(struct _glapi_table *disp) {
   17951    return (_glptr_PointParameterx) (GET_by_offset(disp, _gloffset_PointParameterx));
   17952 }
   17953 
   17954 static inline void SET_PointParameterx(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfixed)) {
   17955    SET_by_offset(disp, _gloffset_PointParameterx, fn);
   17956 }
   17957 
   17958 typedef void (GLAPIENTRYP _glptr_PointParameterxv)(GLenum, const GLfixed *);
   17959 #define CALL_PointParameterxv(disp, parameters) \
   17960     (* GET_PointParameterxv(disp)) parameters
   17961 static inline _glptr_PointParameterxv GET_PointParameterxv(struct _glapi_table *disp) {
   17962    return (_glptr_PointParameterxv) (GET_by_offset(disp, _gloffset_PointParameterxv));
   17963 }
   17964 
   17965 static inline void SET_PointParameterxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfixed *)) {
   17966    SET_by_offset(disp, _gloffset_PointParameterxv, fn);
   17967 }
   17968 
   17969 typedef void (GLAPIENTRYP _glptr_TexParameterxv)(GLenum, GLenum, const GLfixed *);
   17970 #define CALL_TexParameterxv(disp, parameters) \
   17971     (* GET_TexParameterxv(disp)) parameters
   17972 static inline _glptr_TexParameterxv GET_TexParameterxv(struct _glapi_table *disp) {
   17973    return (_glptr_TexParameterxv) (GET_by_offset(disp, _gloffset_TexParameterxv));
   17974 }
   17975 
   17976 static inline void SET_TexParameterxv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfixed *)) {
   17977    SET_by_offset(disp, _gloffset_TexParameterxv, fn);
   17978 }
   17979 
   17980 typedef void (GLAPIENTRYP _glptr_BlendBarrier)(void);
   17981 #define CALL_BlendBarrier(disp, parameters) \
   17982     (* GET_BlendBarrier(disp)) parameters
   17983 static inline _glptr_BlendBarrier GET_BlendBarrier(struct _glapi_table *disp) {
   17984    return (_glptr_BlendBarrier) (GET_by_offset(disp, _gloffset_BlendBarrier));
   17985 }
   17986 
   17987 static inline void SET_BlendBarrier(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
   17988    SET_by_offset(disp, _gloffset_BlendBarrier, fn);
   17989 }
   17990 
   17991 typedef void (GLAPIENTRYP _glptr_PrimitiveBoundingBox)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
   17992 #define CALL_PrimitiveBoundingBox(disp, parameters) \
   17993     (* GET_PrimitiveBoundingBox(disp)) parameters
   17994 static inline _glptr_PrimitiveBoundingBox GET_PrimitiveBoundingBox(struct _glapi_table *disp) {
   17995    return (_glptr_PrimitiveBoundingBox) (GET_by_offset(disp, _gloffset_PrimitiveBoundingBox));
   17996 }
   17997 
   17998 static inline void SET_PrimitiveBoundingBox(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat)) {
   17999    SET_by_offset(disp, _gloffset_PrimitiveBoundingBox, fn);
   18000 }
   18001 
   18002 
   18003 #endif /* !defined( _DISPATCH_H_ ) */
   18004