[PROPSYS]
[reactos.git] / reactos / dll / opengl / mesa / main / dispatch.h
1 /* DO NOT EDIT - This file generated automatically by gl_table.py (from Mesa) script */
2
3 /*
4 * (C) Copyright IBM Corporation 2005
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sub license,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * IBM,
22 * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28 #if !defined( _DISPATCH_H_ )
29 # define _DISPATCH_H_
30
31 typedef PROC _glapi_proc;
32
33
34 /**
35 * \file main/dispatch.h
36 * Macros for handling GL dispatch tables.
37 *
38 * For each known GL function, there are 3 macros in this file. The first
39 * macro is named CALL_FuncName and is used to call that GL function using
40 * the specified dispatch table. The other 2 macros, called GET_FuncName
41 * can SET_FuncName, are used to get and set the dispatch pointer for the
42 * named function in the specified dispatch table.
43 */
44
45 /* GLXEXT is defined when building the GLX extension in the xserver.
46 */
47 #if !defined(GLXEXT)
48 #include "main/mfeatures.h"
49 #endif
50
51 #define CALL_by_offset(disp, cast, offset, parameters) \
52 (*(cast (GET_by_offset(disp, offset)))) parameters
53 #define GET_by_offset(disp, offset) \
54 (offset >= 0) ? (((_glapi_proc *)(disp))[offset]) : NULL
55 #define SET_by_offset(disp, offset, fn) \
56 do { \
57 if ( (offset) < 0 ) { \
58 /* fprintf( stderr, "[%s:%u] SET_by_offset(%p, %d, %s)!\n", */ \
59 /* __func__, __LINE__, disp, offset, # fn); */ \
60 /* abort(); */ \
61 } \
62 else { \
63 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \
64 } \
65 } while(0)
66
67 /* total number of offsets below */
68 #define _gloffset_COUNT 973
69
70 #define _gloffset_NewList 0
71 #define _gloffset_EndList 1
72 #define _gloffset_CallList 2
73 #define _gloffset_CallLists 3
74 #define _gloffset_DeleteLists 4
75 #define _gloffset_GenLists 5
76 #define _gloffset_ListBase 6
77 #define _gloffset_Begin 7
78 #define _gloffset_Bitmap 8
79 #define _gloffset_Color3b 9
80 #define _gloffset_Color3bv 10
81 #define _gloffset_Color3d 11
82 #define _gloffset_Color3dv 12
83 #define _gloffset_Color3f 13
84 #define _gloffset_Color3fv 14
85 #define _gloffset_Color3i 15
86 #define _gloffset_Color3iv 16
87 #define _gloffset_Color3s 17
88 #define _gloffset_Color3sv 18
89 #define _gloffset_Color3ub 19
90 #define _gloffset_Color3ubv 20
91 #define _gloffset_Color3ui 21
92 #define _gloffset_Color3uiv 22
93 #define _gloffset_Color3us 23
94 #define _gloffset_Color3usv 24
95 #define _gloffset_Color4b 25
96 #define _gloffset_Color4bv 26
97 #define _gloffset_Color4d 27
98 #define _gloffset_Color4dv 28
99 #define _gloffset_Color4f 29
100 #define _gloffset_Color4fv 30
101 #define _gloffset_Color4i 31
102 #define _gloffset_Color4iv 32
103 #define _gloffset_Color4s 33
104 #define _gloffset_Color4sv 34
105 #define _gloffset_Color4ub 35
106 #define _gloffset_Color4ubv 36
107 #define _gloffset_Color4ui 37
108 #define _gloffset_Color4uiv 38
109 #define _gloffset_Color4us 39
110 #define _gloffset_Color4usv 40
111 #define _gloffset_EdgeFlag 41
112 #define _gloffset_EdgeFlagv 42
113 #define _gloffset_End 43
114 #define _gloffset_Indexd 44
115 #define _gloffset_Indexdv 45
116 #define _gloffset_Indexf 46
117 #define _gloffset_Indexfv 47
118 #define _gloffset_Indexi 48
119 #define _gloffset_Indexiv 49
120 #define _gloffset_Indexs 50
121 #define _gloffset_Indexsv 51
122 #define _gloffset_Normal3b 52
123 #define _gloffset_Normal3bv 53
124 #define _gloffset_Normal3d 54
125 #define _gloffset_Normal3dv 55
126 #define _gloffset_Normal3f 56
127 #define _gloffset_Normal3fv 57
128 #define _gloffset_Normal3i 58
129 #define _gloffset_Normal3iv 59
130 #define _gloffset_Normal3s 60
131 #define _gloffset_Normal3sv 61
132 #define _gloffset_RasterPos2d 62
133 #define _gloffset_RasterPos2dv 63
134 #define _gloffset_RasterPos2f 64
135 #define _gloffset_RasterPos2fv 65
136 #define _gloffset_RasterPos2i 66
137 #define _gloffset_RasterPos2iv 67
138 #define _gloffset_RasterPos2s 68
139 #define _gloffset_RasterPos2sv 69
140 #define _gloffset_RasterPos3d 70
141 #define _gloffset_RasterPos3dv 71
142 #define _gloffset_RasterPos3f 72
143 #define _gloffset_RasterPos3fv 73
144 #define _gloffset_RasterPos3i 74
145 #define _gloffset_RasterPos3iv 75
146 #define _gloffset_RasterPos3s 76
147 #define _gloffset_RasterPos3sv 77
148 #define _gloffset_RasterPos4d 78
149 #define _gloffset_RasterPos4dv 79
150 #define _gloffset_RasterPos4f 80
151 #define _gloffset_RasterPos4fv 81
152 #define _gloffset_RasterPos4i 82
153 #define _gloffset_RasterPos4iv 83
154 #define _gloffset_RasterPos4s 84
155 #define _gloffset_RasterPos4sv 85
156 #define _gloffset_Rectd 86
157 #define _gloffset_Rectdv 87
158 #define _gloffset_Rectf 88
159 #define _gloffset_Rectfv 89
160 #define _gloffset_Recti 90
161 #define _gloffset_Rectiv 91
162 #define _gloffset_Rects 92
163 #define _gloffset_Rectsv 93
164 #define _gloffset_TexCoord1d 94
165 #define _gloffset_TexCoord1dv 95
166 #define _gloffset_TexCoord1f 96
167 #define _gloffset_TexCoord1fv 97
168 #define _gloffset_TexCoord1i 98
169 #define _gloffset_TexCoord1iv 99
170 #define _gloffset_TexCoord1s 100
171 #define _gloffset_TexCoord1sv 101
172 #define _gloffset_TexCoord2d 102
173 #define _gloffset_TexCoord2dv 103
174 #define _gloffset_TexCoord2f 104
175 #define _gloffset_TexCoord2fv 105
176 #define _gloffset_TexCoord2i 106
177 #define _gloffset_TexCoord2iv 107
178 #define _gloffset_TexCoord2s 108
179 #define _gloffset_TexCoord2sv 109
180 #define _gloffset_TexCoord3d 110
181 #define _gloffset_TexCoord3dv 111
182 #define _gloffset_TexCoord3f 112
183 #define _gloffset_TexCoord3fv 113
184 #define _gloffset_TexCoord3i 114
185 #define _gloffset_TexCoord3iv 115
186 #define _gloffset_TexCoord3s 116
187 #define _gloffset_TexCoord3sv 117
188 #define _gloffset_TexCoord4d 118
189 #define _gloffset_TexCoord4dv 119
190 #define _gloffset_TexCoord4f 120
191 #define _gloffset_TexCoord4fv 121
192 #define _gloffset_TexCoord4i 122
193 #define _gloffset_TexCoord4iv 123
194 #define _gloffset_TexCoord4s 124
195 #define _gloffset_TexCoord4sv 125
196 #define _gloffset_Vertex2d 126
197 #define _gloffset_Vertex2dv 127
198 #define _gloffset_Vertex2f 128
199 #define _gloffset_Vertex2fv 129
200 #define _gloffset_Vertex2i 130
201 #define _gloffset_Vertex2iv 131
202 #define _gloffset_Vertex2s 132
203 #define _gloffset_Vertex2sv 133
204 #define _gloffset_Vertex3d 134
205 #define _gloffset_Vertex3dv 135
206 #define _gloffset_Vertex3f 136
207 #define _gloffset_Vertex3fv 137
208 #define _gloffset_Vertex3i 138
209 #define _gloffset_Vertex3iv 139
210 #define _gloffset_Vertex3s 140
211 #define _gloffset_Vertex3sv 141
212 #define _gloffset_Vertex4d 142
213 #define _gloffset_Vertex4dv 143
214 #define _gloffset_Vertex4f 144
215 #define _gloffset_Vertex4fv 145
216 #define _gloffset_Vertex4i 146
217 #define _gloffset_Vertex4iv 147
218 #define _gloffset_Vertex4s 148
219 #define _gloffset_Vertex4sv 149
220 #define _gloffset_ClipPlane 150
221 #define _gloffset_ColorMaterial 151
222 #define _gloffset_CullFace 152
223 #define _gloffset_Fogf 153
224 #define _gloffset_Fogfv 154
225 #define _gloffset_Fogi 155
226 #define _gloffset_Fogiv 156
227 #define _gloffset_FrontFace 157
228 #define _gloffset_Hint 158
229 #define _gloffset_Lightf 159
230 #define _gloffset_Lightfv 160
231 #define _gloffset_Lighti 161
232 #define _gloffset_Lightiv 162
233 #define _gloffset_LightModelf 163
234 #define _gloffset_LightModelfv 164
235 #define _gloffset_LightModeli 165
236 #define _gloffset_LightModeliv 166
237 #define _gloffset_LineStipple 167
238 #define _gloffset_LineWidth 168
239 #define _gloffset_Materialf 169
240 #define _gloffset_Materialfv 170
241 #define _gloffset_Materiali 171
242 #define _gloffset_Materialiv 172
243 #define _gloffset_PointSize 173
244 #define _gloffset_PolygonMode 174
245 #define _gloffset_PolygonStipple 175
246 #define _gloffset_Scissor 176
247 #define _gloffset_ShadeModel 177
248 #define _gloffset_TexParameterf 178
249 #define _gloffset_TexParameterfv 179
250 #define _gloffset_TexParameteri 180
251 #define _gloffset_TexParameteriv 181
252 #define _gloffset_TexImage1D 182
253 #define _gloffset_TexImage2D 183
254 #define _gloffset_TexEnvf 184
255 #define _gloffset_TexEnvfv 185
256 #define _gloffset_TexEnvi 186
257 #define _gloffset_TexEnviv 187
258 #define _gloffset_TexGend 188
259 #define _gloffset_TexGendv 189
260 #define _gloffset_TexGenf 190
261 #define _gloffset_TexGenfv 191
262 #define _gloffset_TexGeni 192
263 #define _gloffset_TexGeniv 193
264 #define _gloffset_FeedbackBuffer 194
265 #define _gloffset_SelectBuffer 195
266 #define _gloffset_RenderMode 196
267 #define _gloffset_InitNames 197
268 #define _gloffset_LoadName 198
269 #define _gloffset_PassThrough 199
270 #define _gloffset_PopName 200
271 #define _gloffset_PushName 201
272 #define _gloffset_DrawBuffer 202
273 #define _gloffset_Clear 203
274 #define _gloffset_ClearAccum 204
275 #define _gloffset_ClearIndex 205
276 #define _gloffset_ClearColor 206
277 #define _gloffset_ClearStencil 207
278 #define _gloffset_ClearDepth 208
279 #define _gloffset_StencilMask 209
280 #define _gloffset_ColorMask 210
281 #define _gloffset_DepthMask 211
282 #define _gloffset_IndexMask 212
283 #define _gloffset_Accum 213
284 #define _gloffset_Disable 214
285 #define _gloffset_Enable 215
286 #define _gloffset_Finish 216
287 #define _gloffset_Flush 217
288 #define _gloffset_PopAttrib 218
289 #define _gloffset_PushAttrib 219
290 #define _gloffset_Map1d 220
291 #define _gloffset_Map1f 221
292 #define _gloffset_Map2d 222
293 #define _gloffset_Map2f 223
294 #define _gloffset_MapGrid1d 224
295 #define _gloffset_MapGrid1f 225
296 #define _gloffset_MapGrid2d 226
297 #define _gloffset_MapGrid2f 227
298 #define _gloffset_EvalCoord1d 228
299 #define _gloffset_EvalCoord1dv 229
300 #define _gloffset_EvalCoord1f 230
301 #define _gloffset_EvalCoord1fv 231
302 #define _gloffset_EvalCoord2d 232
303 #define _gloffset_EvalCoord2dv 233
304 #define _gloffset_EvalCoord2f 234
305 #define _gloffset_EvalCoord2fv 235
306 #define _gloffset_EvalMesh1 236
307 #define _gloffset_EvalPoint1 237
308 #define _gloffset_EvalMesh2 238
309 #define _gloffset_EvalPoint2 239
310 #define _gloffset_AlphaFunc 240
311 #define _gloffset_BlendFunc 241
312 #define _gloffset_LogicOp 242
313 #define _gloffset_StencilFunc 243
314 #define _gloffset_StencilOp 244
315 #define _gloffset_DepthFunc 245
316 #define _gloffset_PixelZoom 246
317 #define _gloffset_PixelTransferf 247
318 #define _gloffset_PixelTransferi 248
319 #define _gloffset_PixelStoref 249
320 #define _gloffset_PixelStorei 250
321 #define _gloffset_PixelMapfv 251
322 #define _gloffset_PixelMapuiv 252
323 #define _gloffset_PixelMapusv 253
324 #define _gloffset_ReadBuffer 254
325 #define _gloffset_CopyPixels 255
326 #define _gloffset_ReadPixels 256
327 #define _gloffset_DrawPixels 257
328 #define _gloffset_GetBooleanv 258
329 #define _gloffset_GetClipPlane 259
330 #define _gloffset_GetDoublev 260
331 #define _gloffset_GetError 261
332 #define _gloffset_GetFloatv 262
333 #define _gloffset_GetIntegerv 263
334 #define _gloffset_GetLightfv 264
335 #define _gloffset_GetLightiv 265
336 #define _gloffset_GetMapdv 266
337 #define _gloffset_GetMapfv 267
338 #define _gloffset_GetMapiv 268
339 #define _gloffset_GetMaterialfv 269
340 #define _gloffset_GetMaterialiv 270
341 #define _gloffset_GetPixelMapfv 271
342 #define _gloffset_GetPixelMapuiv 272
343 #define _gloffset_GetPixelMapusv 273
344 #define _gloffset_GetPolygonStipple 274
345 #define _gloffset_GetString 275
346 #define _gloffset_GetTexEnvfv 276
347 #define _gloffset_GetTexEnviv 277
348 #define _gloffset_GetTexGendv 278
349 #define _gloffset_GetTexGenfv 279
350 #define _gloffset_GetTexGeniv 280
351 #define _gloffset_GetTexImage 281
352 #define _gloffset_GetTexParameterfv 282
353 #define _gloffset_GetTexParameteriv 283
354 #define _gloffset_GetTexLevelParameterfv 284
355 #define _gloffset_GetTexLevelParameteriv 285
356 #define _gloffset_IsEnabled 286
357 #define _gloffset_IsList 287
358 #define _gloffset_DepthRange 288
359 #define _gloffset_Frustum 289
360 #define _gloffset_LoadIdentity 290
361 #define _gloffset_LoadMatrixf 291
362 #define _gloffset_LoadMatrixd 292
363 #define _gloffset_MatrixMode 293
364 #define _gloffset_MultMatrixf 294
365 #define _gloffset_MultMatrixd 295
366 #define _gloffset_Ortho 296
367 #define _gloffset_PopMatrix 297
368 #define _gloffset_PushMatrix 298
369 #define _gloffset_Rotated 299
370 #define _gloffset_Rotatef 300
371 #define _gloffset_Scaled 301
372 #define _gloffset_Scalef 302
373 #define _gloffset_Translated 303
374 #define _gloffset_Translatef 304
375 #define _gloffset_Viewport 305
376 #define _gloffset_ArrayElement 306
377 #define _gloffset_BindTexture 307
378 #define _gloffset_ColorPointer 308
379 #define _gloffset_DisableClientState 309
380 #define _gloffset_DrawArrays 310
381 #define _gloffset_DrawElements 311
382 #define _gloffset_EdgeFlagPointer 312
383 #define _gloffset_EnableClientState 313
384 #define _gloffset_IndexPointer 314
385 #define _gloffset_Indexub 315
386 #define _gloffset_Indexubv 316
387 #define _gloffset_InterleavedArrays 317
388 #define _gloffset_NormalPointer 318
389 #define _gloffset_PolygonOffset 319
390 #define _gloffset_TexCoordPointer 320
391 #define _gloffset_VertexPointer 321
392 #define _gloffset_AreTexturesResident 322
393 #define _gloffset_CopyTexImage1D 323
394 #define _gloffset_CopyTexImage2D 324
395 #define _gloffset_CopyTexSubImage1D 325
396 #define _gloffset_CopyTexSubImage2D 326
397 #define _gloffset_DeleteTextures 327
398 #define _gloffset_GenTextures 328
399 #define _gloffset_GetPointerv 329
400 #define _gloffset_IsTexture 330
401 #define _gloffset_PrioritizeTextures 331
402 #define _gloffset_TexSubImage1D 332
403 #define _gloffset_TexSubImage2D 333
404 #define _gloffset_PopClientAttrib 334
405 #define _gloffset_PushClientAttrib 335
406 #define _gloffset_BlendColor 336
407 #define _gloffset_BlendEquation 337
408 #define _gloffset_DrawRangeElements 338
409 #define _gloffset_ColorTable 339
410 #define _gloffset_ColorTableParameterfv 340
411 #define _gloffset_ColorTableParameteriv 341
412 #define _gloffset_CopyColorTable 342
413 #define _gloffset_GetColorTable 343
414 #define _gloffset_GetColorTableParameterfv 344
415 #define _gloffset_GetColorTableParameteriv 345
416 #define _gloffset_ColorSubTable 346
417 #define _gloffset_CopyColorSubTable 347
418 #define _gloffset_ConvolutionFilter1D 348
419 #define _gloffset_ConvolutionFilter2D 349
420 #define _gloffset_ConvolutionParameterf 350
421 #define _gloffset_ConvolutionParameterfv 351
422 #define _gloffset_ConvolutionParameteri 352
423 #define _gloffset_ConvolutionParameteriv 353
424 #define _gloffset_CopyConvolutionFilter1D 354
425 #define _gloffset_CopyConvolutionFilter2D 355
426 #define _gloffset_GetConvolutionFilter 356
427 #define _gloffset_GetConvolutionParameterfv 357
428 #define _gloffset_GetConvolutionParameteriv 358
429 #define _gloffset_GetSeparableFilter 359
430 #define _gloffset_SeparableFilter2D 360
431 #define _gloffset_GetHistogram 361
432 #define _gloffset_GetHistogramParameterfv 362
433 #define _gloffset_GetHistogramParameteriv 363
434 #define _gloffset_GetMinmax 364
435 #define _gloffset_GetMinmaxParameterfv 365
436 #define _gloffset_GetMinmaxParameteriv 366
437 #define _gloffset_Histogram 367
438 #define _gloffset_Minmax 368
439 #define _gloffset_ResetHistogram 369
440 #define _gloffset_ResetMinmax 370
441 #define _gloffset_TexImage3D 371
442 #define _gloffset_TexSubImage3D 372
443 #define _gloffset_CopyTexSubImage3D 373
444
445 #if !FEATURE_remap_table
446
447 #define _gloffset_GetStringi 435
448 #define _gloffset_GetBufferParameteri64v 438
449 #define _gloffset_GetInteger64i_v 439
450 #define _gloffset_LoadTransposeMatrixdARB 441
451 #define _gloffset_LoadTransposeMatrixfARB 442
452 #define _gloffset_MultTransposeMatrixdARB 443
453 #define _gloffset_MultTransposeMatrixfARB 444
454 #define _gloffset_SampleCoverageARB 445
455 #define _gloffset_BindBufferARB 510
456 #define _gloffset_BufferDataARB 511
457 #define _gloffset_BufferSubDataARB 512
458 #define _gloffset_DeleteBuffersARB 513
459 #define _gloffset_GenBuffersARB 514
460 #define _gloffset_GetBufferParameterivARB 515
461 #define _gloffset_GetBufferPointervARB 516
462 #define _gloffset_GetBufferSubDataARB 517
463 #define _gloffset_IsBufferARB 518
464 #define _gloffset_MapBufferARB 519
465 #define _gloffset_UnmapBufferARB 520
466 #define _gloffset_AttachObjectARB 529
467 #define _gloffset_CompileShaderARB 530
468 #define _gloffset_CreateProgramObjectARB 531
469 #define _gloffset_CreateShaderObjectARB 532
470 #define _gloffset_DeleteObjectARB 533
471 #define _gloffset_DetachObjectARB 534
472 #define _gloffset_GetAttachedObjectsARB 536
473 #define _gloffset_GetHandleARB 537
474 #define _gloffset_GetInfoLogARB 538
475 #define _gloffset_GetObjectParameterfvARB 539
476 #define _gloffset_GetObjectParameterivARB 540
477 #define _gloffset_GetShaderSourceARB 541
478 #define _gloffset_LinkProgramARB 545
479 #define _gloffset_ShaderSourceARB 546
480 #define _gloffset_ValidateProgramARB 567
481 #define _gloffset_GetActiveAttribARB 569
482 #define _gloffset_FlushMappedBufferRange 580
483 #define _gloffset_MapBufferRange 581
484 #define _gloffset_BindVertexArray 583
485 #define _gloffset_GenVertexArrays 584
486 #define _gloffset_TexStorage1D 685
487 #define _gloffset_TexStorage2D 686
488 #define _gloffset_TexStorage3D 687
489 #define _gloffset_TextureStorage1DEXT 688
490 #define _gloffset_TextureStorage2DEXT 689
491 #define _gloffset_TextureStorage3DEXT 690
492 #define _gloffset_PolygonOffsetEXT 691
493 #define _gloffset_SampleMaskSGIS 698
494 #define _gloffset_SamplePatternSGIS 699
495 #define _gloffset_ColorPointerEXT 700
496 #define _gloffset_EdgeFlagPointerEXT 701
497 #define _gloffset_IndexPointerEXT 702
498 #define _gloffset_NormalPointerEXT 703
499 #define _gloffset_TexCoordPointerEXT 704
500 #define _gloffset_VertexPointerEXT 705
501 #define _gloffset_PointParameterfEXT 706
502 #define _gloffset_PointParameterfvEXT 707
503 #define _gloffset_LockArraysEXT 708
504 #define _gloffset_UnlockArraysEXT 709
505 #define _gloffset_SecondaryColor3bEXT 710
506 #define _gloffset_SecondaryColor3bvEXT 711
507 #define _gloffset_SecondaryColor3dEXT 712
508 #define _gloffset_SecondaryColor3dvEXT 713
509 #define _gloffset_SecondaryColor3fEXT 714
510 #define _gloffset_SecondaryColor3fvEXT 715
511 #define _gloffset_SecondaryColor3iEXT 716
512 #define _gloffset_SecondaryColor3ivEXT 717
513 #define _gloffset_SecondaryColor3sEXT 718
514 #define _gloffset_SecondaryColor3svEXT 719
515 #define _gloffset_SecondaryColor3ubEXT 720
516 #define _gloffset_SecondaryColor3ubvEXT 721
517 #define _gloffset_SecondaryColor3uiEXT 722
518 #define _gloffset_SecondaryColor3uivEXT 723
519 #define _gloffset_SecondaryColor3usEXT 724
520 #define _gloffset_SecondaryColor3usvEXT 725
521 #define _gloffset_SecondaryColorPointerEXT 726
522 #define _gloffset_FogCoordPointerEXT 729
523 #define _gloffset_FogCoorddEXT 730
524 #define _gloffset_FogCoorddvEXT 731
525 #define _gloffset_FogCoordfEXT 732
526 #define _gloffset_FogCoordfvEXT 733
527 #define _gloffset_PixelTexGenSGIX 734
528 #define _gloffset_BlendFuncSeparateEXT 735
529 #define _gloffset_FlushVertexArrayRangeNV 736
530 #define _gloffset_VertexArrayRangeNV 737
531 #define _gloffset_CombinerInputNV 738
532 #define _gloffset_CombinerOutputNV 739
533 #define _gloffset_CombinerParameterfNV 740
534 #define _gloffset_CombinerParameterfvNV 741
535 #define _gloffset_CombinerParameteriNV 742
536 #define _gloffset_CombinerParameterivNV 743
537 #define _gloffset_FinalCombinerInputNV 744
538 #define _gloffset_GetCombinerInputParameterfvNV 745
539 #define _gloffset_GetCombinerInputParameterivNV 746
540 #define _gloffset_GetCombinerOutputParameterfvNV 747
541 #define _gloffset_GetCombinerOutputParameterivNV 748
542 #define _gloffset_GetFinalCombinerInputParameterfvNV 749
543 #define _gloffset_GetFinalCombinerInputParameterivNV 750
544 #define _gloffset_WindowPos2dMESA 752
545 #define _gloffset_WindowPos2dvMESA 753
546 #define _gloffset_WindowPos2fMESA 754
547 #define _gloffset_WindowPos2fvMESA 755
548 #define _gloffset_WindowPos2iMESA 756
549 #define _gloffset_WindowPos2ivMESA 757
550 #define _gloffset_WindowPos2sMESA 758
551 #define _gloffset_WindowPos2svMESA 759
552 #define _gloffset_WindowPos3dMESA 760
553 #define _gloffset_WindowPos3dvMESA 761
554 #define _gloffset_WindowPos3fMESA 762
555 #define _gloffset_WindowPos3fvMESA 763
556 #define _gloffset_WindowPos3iMESA 764
557 #define _gloffset_WindowPos3ivMESA 765
558 #define _gloffset_WindowPos3sMESA 766
559 #define _gloffset_WindowPos3svMESA 767
560 #define _gloffset_WindowPos4dMESA 768
561 #define _gloffset_WindowPos4dvMESA 769
562 #define _gloffset_WindowPos4fMESA 770
563 #define _gloffset_WindowPos4fvMESA 771
564 #define _gloffset_WindowPos4iMESA 772
565 #define _gloffset_WindowPos4ivMESA 773
566 #define _gloffset_WindowPos4sMESA 774
567 #define _gloffset_WindowPos4svMESA 775
568 #define _gloffset_MultiModeDrawArraysIBM 776
569 #define _gloffset_MultiModeDrawElementsIBM 777
570 #define _gloffset_DeleteFencesNV 778
571 #define _gloffset_FinishFenceNV 779
572 #define _gloffset_GenFencesNV 780
573 #define _gloffset_GetFenceivNV 781
574 #define _gloffset_IsFenceNV 782
575 #define _gloffset_SetFenceNV 783
576 #define _gloffset_TestFenceNV 784
577 #define _gloffset_AreProgramsResidentNV 785
578 #define _gloffset_ExecuteProgramNV 788
579 #define _gloffset_GetProgramParameterdvNV 790
580 #define _gloffset_GetProgramParameterfvNV 791
581 #define _gloffset_GetTrackMatrixivNV 794
582 #define _gloffset_LoadProgramNV 800
583 #define _gloffset_ProgramParameters4dvNV 801
584 #define _gloffset_ProgramParameters4fvNV 802
585 #define _gloffset_RequestResidentProgramsNV 803
586 #define _gloffset_TrackMatrixNV 804
587 #define _gloffset_VertexAttrib1dNV 805
588 #define _gloffset_VertexAttrib1dvNV 806
589 #define _gloffset_VertexAttrib1fNV 807
590 #define _gloffset_VertexAttrib1fvNV 808
591 #define _gloffset_VertexAttrib1sNV 809
592 #define _gloffset_VertexAttrib1svNV 810
593 #define _gloffset_VertexAttrib2dNV 811
594 #define _gloffset_VertexAttrib2dvNV 812
595 #define _gloffset_VertexAttrib2fNV 813
596 #define _gloffset_VertexAttrib2fvNV 814
597 #define _gloffset_VertexAttrib2sNV 815
598 #define _gloffset_VertexAttrib2svNV 816
599 #define _gloffset_VertexAttrib3dNV 817
600 #define _gloffset_VertexAttrib3dvNV 818
601 #define _gloffset_VertexAttrib3fNV 819
602 #define _gloffset_VertexAttrib3fvNV 820
603 #define _gloffset_VertexAttrib3sNV 821
604 #define _gloffset_VertexAttrib3svNV 822
605 #define _gloffset_VertexAttrib4dNV 823
606 #define _gloffset_VertexAttrib4dvNV 824
607 #define _gloffset_VertexAttrib4fNV 825
608 #define _gloffset_VertexAttrib4fvNV 826
609 #define _gloffset_VertexAttrib4sNV 827
610 #define _gloffset_VertexAttrib4svNV 828
611 #define _gloffset_VertexAttrib4ubNV 829
612 #define _gloffset_VertexAttrib4ubvNV 830
613 #define _gloffset_VertexAttribs1dvNV 832
614 #define _gloffset_VertexAttribs1fvNV 833
615 #define _gloffset_VertexAttribs1svNV 834
616 #define _gloffset_VertexAttribs2dvNV 835
617 #define _gloffset_VertexAttribs2fvNV 836
618 #define _gloffset_VertexAttribs2svNV 837
619 #define _gloffset_VertexAttribs3dvNV 838
620 #define _gloffset_VertexAttribs3fvNV 839
621 #define _gloffset_VertexAttribs3svNV 840
622 #define _gloffset_VertexAttribs4dvNV 841
623 #define _gloffset_VertexAttribs4fvNV 842
624 #define _gloffset_VertexAttribs4svNV 843
625 #define _gloffset_VertexAttribs4ubvNV 844
626 #define _gloffset_PointParameteriNV 863
627 #define _gloffset_PointParameterivNV 864
628 #define _gloffset_ActiveStencilFaceEXT 865
629 #define _gloffset_BindVertexArrayAPPLE 866
630 #define _gloffset_DeleteVertexArraysAPPLE 867
631 #define _gloffset_GenVertexArraysAPPLE 868
632 #define _gloffset_IsVertexArrayAPPLE 869
633 #define _gloffset_GetProgramNamedParameterdvNV 870
634 #define _gloffset_GetProgramNamedParameterfvNV 871
635 #define _gloffset_ProgramNamedParameter4dNV 872
636 #define _gloffset_ProgramNamedParameter4dvNV 873
637 #define _gloffset_ProgramNamedParameter4fNV 874
638 #define _gloffset_ProgramNamedParameter4fvNV 875
639 #define _gloffset_DepthBoundsEXT 878
640 #define _gloffset_BlendEquationSeparateEXT 879
641 #define _gloffset_BufferParameteriAPPLE 898
642 #define _gloffset_FlushMappedBufferRangeAPPLE 899
643 #define _gloffset_BindFragDataLocationEXT 900
644 #define _gloffset_GetFragDataLocationEXT 901
645 #define _gloffset_ClearColorIiEXT 941
646 #define _gloffset_ClearColorIuiEXT 942
647 #define _gloffset_GetTexParameterIivEXT 943
648 #define _gloffset_GetTexParameterIuivEXT 944
649 #define _gloffset_TexParameterIivEXT 945
650 #define _gloffset_TexParameterIuivEXT 946
651 #define _gloffset_GetTexParameterPointervAPPLE 957
652 #define _gloffset_TextureRangeAPPLE 958
653 #define _gloffset_GetObjectParameterivAPPLE 959
654 #define _gloffset_ObjectPurgeableAPPLE 960
655 #define _gloffset_ObjectUnpurgeableAPPLE 961
656 #define _gloffset_CreateShaderProgramEXT 963
657 #define _gloffset_TextureBarrierNV 965
658
659 #else /* !FEATURE_remap_table */
660
661 #define driDispatchRemapTable_size 565
662 extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
663
664 #define GetStringi_remap_index 27
665 #define TexBuffer_remap_index 28
666 #define GetBufferParameteri64v_remap_index 30
667 #define GetInteger64i_v_remap_index 31
668 #define VertexAttribDivisor_remap_index 32
669 #define LoadTransposeMatrixdARB_remap_index 33
670 #define LoadTransposeMatrixfARB_remap_index 34
671 #define MultTransposeMatrixdARB_remap_index 35
672 #define MultTransposeMatrixfARB_remap_index 36
673 #define SampleCoverageARB_remap_index 37
674 #define BindBufferARB_remap_index 102
675 #define BufferDataARB_remap_index 103
676 #define BufferSubDataARB_remap_index 104
677 #define DeleteBuffersARB_remap_index 105
678 #define GenBuffersARB_remap_index 106
679 #define GetBufferParameterivARB_remap_index 107
680 #define GetBufferPointervARB_remap_index 108
681 #define GetBufferSubDataARB_remap_index 109
682 #define IsBufferARB_remap_index 110
683 #define MapBufferARB_remap_index 111
684 #define UnmapBufferARB_remap_index 112
685 #define AttachObjectARB_remap_index 121
686 #define CompileShaderARB_remap_index 122
687 #define CreateProgramObjectARB_remap_index 123
688 #define CreateShaderObjectARB_remap_index 124
689 #define DeleteObjectARB_remap_index 125
690 #define DetachObjectARB_remap_index 126
691 #define GetAttachedObjectsARB_remap_index 128
692 #define GetHandleARB_remap_index 129
693 #define GetInfoLogARB_remap_index 130
694 #define GetObjectParameterfvARB_remap_index 131
695 #define GetObjectParameterivARB_remap_index 132
696 #define GetShaderSourceARB_remap_index 133
697 #define LinkProgramARB_remap_index 137
698 #define ShaderSourceARB_remap_index 138
699 #define ValidateProgramARB_remap_index 159
700 #define GetActiveAttribARB_remap_index 161
701 #define VertexAttribDivisorARB_remap_index 171
702 #define FlushMappedBufferRange_remap_index 172
703 #define MapBufferRange_remap_index 173
704 #define BindVertexArray_remap_index 175
705 #define GenVertexArrays_remap_index 176
706 #define TexStorage1D_remap_index 277
707 #define TexStorage2D_remap_index 278
708 #define TexStorage3D_remap_index 279
709 #define TextureStorage1DEXT_remap_index 280
710 #define TextureStorage2DEXT_remap_index 281
711 #define TextureStorage3DEXT_remap_index 282
712 #define PolygonOffsetEXT_remap_index 283
713 #define SampleMaskSGIS_remap_index 290
714 #define SamplePatternSGIS_remap_index 291
715 #define ColorPointerEXT_remap_index 292
716 #define EdgeFlagPointerEXT_remap_index 293
717 #define IndexPointerEXT_remap_index 294
718 #define NormalPointerEXT_remap_index 295
719 #define TexCoordPointerEXT_remap_index 296
720 #define VertexPointerEXT_remap_index 297
721 #define PointParameterfEXT_remap_index 298
722 #define PointParameterfvEXT_remap_index 299
723 #define LockArraysEXT_remap_index 300
724 #define UnlockArraysEXT_remap_index 301
725 #define SecondaryColor3bEXT_remap_index 302
726 #define SecondaryColor3bvEXT_remap_index 303
727 #define SecondaryColor3dEXT_remap_index 304
728 #define SecondaryColor3dvEXT_remap_index 305
729 #define SecondaryColor3fEXT_remap_index 306
730 #define SecondaryColor3fvEXT_remap_index 307
731 #define SecondaryColor3iEXT_remap_index 308
732 #define SecondaryColor3ivEXT_remap_index 309
733 #define SecondaryColor3sEXT_remap_index 310
734 #define SecondaryColor3svEXT_remap_index 311
735 #define SecondaryColor3ubEXT_remap_index 312
736 #define SecondaryColor3ubvEXT_remap_index 313
737 #define SecondaryColor3uiEXT_remap_index 314
738 #define SecondaryColor3uivEXT_remap_index 315
739 #define SecondaryColor3usEXT_remap_index 316
740 #define SecondaryColor3usvEXT_remap_index 317
741 #define SecondaryColorPointerEXT_remap_index 318
742 #define MultiDrawArraysEXT_remap_index 319
743 #define FogCoordPointerEXT_remap_index 321
744 #define FogCoorddEXT_remap_index 322
745 #define FogCoorddvEXT_remap_index 323
746 #define FogCoordfEXT_remap_index 324
747 #define FogCoordfvEXT_remap_index 325
748 #define PixelTexGenSGIX_remap_index 326
749 #define BlendFuncSeparateEXT_remap_index 327
750 #define FlushVertexArrayRangeNV_remap_index 328
751 #define VertexArrayRangeNV_remap_index 329
752 #define CombinerInputNV_remap_index 330
753 #define CombinerOutputNV_remap_index 331
754 #define CombinerParameterfNV_remap_index 332
755 #define CombinerParameterfvNV_remap_index 333
756 #define CombinerParameteriNV_remap_index 334
757 #define CombinerParameterivNV_remap_index 335
758 #define FinalCombinerInputNV_remap_index 336
759 #define GetCombinerInputParameterfvNV_remap_index 337
760 #define GetCombinerInputParameterivNV_remap_index 338
761 #define GetCombinerOutputParameterfvNV_remap_index 339
762 #define GetCombinerOutputParameterivNV_remap_index 340
763 #define GetFinalCombinerInputParameterfvNV_remap_index 341
764 #define GetFinalCombinerInputParameterivNV_remap_index 342
765 #define WindowPos2dMESA_remap_index 344
766 #define WindowPos2dvMESA_remap_index 345
767 #define WindowPos2fMESA_remap_index 346
768 #define WindowPos2fvMESA_remap_index 347
769 #define WindowPos2iMESA_remap_index 348
770 #define WindowPos2ivMESA_remap_index 349
771 #define WindowPos2sMESA_remap_index 350
772 #define WindowPos2svMESA_remap_index 351
773 #define WindowPos3dMESA_remap_index 352
774 #define WindowPos3dvMESA_remap_index 353
775 #define WindowPos3fMESA_remap_index 354
776 #define WindowPos3fvMESA_remap_index 355
777 #define WindowPos3iMESA_remap_index 356
778 #define WindowPos3ivMESA_remap_index 357
779 #define WindowPos3sMESA_remap_index 358
780 #define WindowPos3svMESA_remap_index 359
781 #define WindowPos4dMESA_remap_index 360
782 #define WindowPos4dvMESA_remap_index 361
783 #define WindowPos4fMESA_remap_index 362
784 #define WindowPos4fvMESA_remap_index 363
785 #define WindowPos4iMESA_remap_index 364
786 #define WindowPos4ivMESA_remap_index 365
787 #define WindowPos4sMESA_remap_index 366
788 #define WindowPos4svMESA_remap_index 367
789 #define MultiModeDrawArraysIBM_remap_index 368
790 #define MultiModeDrawElementsIBM_remap_index 369
791 #define DeleteFencesNV_remap_index 370
792 #define FinishFenceNV_remap_index 371
793 #define GenFencesNV_remap_index 372
794 #define GetFenceivNV_remap_index 373
795 #define IsFenceNV_remap_index 374
796 #define SetFenceNV_remap_index 375
797 #define TestFenceNV_remap_index 376
798 #define AreProgramsResidentNV_remap_index 377
799 #define ExecuteProgramNV_remap_index 380
800 #define GetProgramParameterdvNV_remap_index 382
801 #define GetProgramParameterfvNV_remap_index 383
802 #define GetTrackMatrixivNV_remap_index 386
803 #define LoadProgramNV_remap_index 392
804 #define ProgramParameters4dvNV_remap_index 393
805 #define ProgramParameters4fvNV_remap_index 394
806 #define RequestResidentProgramsNV_remap_index 395
807 #define TrackMatrixNV_remap_index 396
808 #define VertexAttrib1dNV_remap_index 397
809 #define VertexAttrib1dvNV_remap_index 398
810 #define VertexAttrib1fNV_remap_index 399
811 #define VertexAttrib1fvNV_remap_index 400
812 #define VertexAttrib1sNV_remap_index 401
813 #define VertexAttrib1svNV_remap_index 402
814 #define VertexAttrib2dNV_remap_index 403
815 #define VertexAttrib2dvNV_remap_index 404
816 #define VertexAttrib2fNV_remap_index 405
817 #define VertexAttrib2fvNV_remap_index 406
818 #define VertexAttrib2sNV_remap_index 407
819 #define VertexAttrib2svNV_remap_index 408
820 #define VertexAttrib3dNV_remap_index 409
821 #define VertexAttrib3dvNV_remap_index 410
822 #define VertexAttrib3fNV_remap_index 411
823 #define VertexAttrib3fvNV_remap_index 412
824 #define VertexAttrib3sNV_remap_index 413
825 #define VertexAttrib3svNV_remap_index 414
826 #define VertexAttrib4dNV_remap_index 415
827 #define VertexAttrib4dvNV_remap_index 416
828 #define VertexAttrib4fNV_remap_index 417
829 #define VertexAttrib4fvNV_remap_index 418
830 #define VertexAttrib4sNV_remap_index 419
831 #define VertexAttrib4svNV_remap_index 420
832 #define VertexAttrib4ubNV_remap_index 421
833 #define VertexAttrib4ubvNV_remap_index 422
834 #define VertexAttribs1dvNV_remap_index 424
835 #define VertexAttribs1fvNV_remap_index 425
836 #define VertexAttribs1svNV_remap_index 426
837 #define VertexAttribs2dvNV_remap_index 427
838 #define VertexAttribs2fvNV_remap_index 428
839 #define VertexAttribs2svNV_remap_index 429
840 #define VertexAttribs3dvNV_remap_index 430
841 #define VertexAttribs3fvNV_remap_index 431
842 #define VertexAttribs3svNV_remap_index 432
843 #define VertexAttribs4dvNV_remap_index 433
844 #define VertexAttribs4fvNV_remap_index 434
845 #define VertexAttribs4svNV_remap_index 435
846 #define VertexAttribs4ubvNV_remap_index 436
847 #define PointParameteriNV_remap_index 455
848 #define PointParameterivNV_remap_index 456
849 #define ActiveStencilFaceEXT_remap_index 457
850 #define BindVertexArrayAPPLE_remap_index 458
851 #define DeleteVertexArraysAPPLE_remap_index 459
852 #define GenVertexArraysAPPLE_remap_index 460
853 #define IsVertexArrayAPPLE_remap_index 461
854 #define GetProgramNamedParameterdvNV_remap_index 462
855 #define GetProgramNamedParameterfvNV_remap_index 463
856 #define ProgramNamedParameter4dNV_remap_index 464
857 #define ProgramNamedParameter4dvNV_remap_index 465
858 #define ProgramNamedParameter4fNV_remap_index 466
859 #define ProgramNamedParameter4fvNV_remap_index 467
860 #define DepthBoundsEXT_remap_index 470
861 #define BlendEquationSeparateEXT_remap_index 471
862 #define BufferParameteriAPPLE_remap_index 490
863 #define FlushMappedBufferRangeAPPLE_remap_index 491
864 #define BindFragDataLocationEXT_remap_index 492
865 #define GetFragDataLocationEXT_remap_index 493
866 #define ClearColorIiEXT_remap_index 533
867 #define ClearColorIuiEXT_remap_index 534
868 #define GetTexParameterIivEXT_remap_index 535
869 #define GetTexParameterIuivEXT_remap_index 536
870 #define TexParameterIivEXT_remap_index 537
871 #define TexParameterIuivEXT_remap_index 538
872 #define GetTexParameterPointervAPPLE_remap_index 549
873 #define TextureRangeAPPLE_remap_index 550
874 #define GetObjectParameterivAPPLE_remap_index 551
875 #define ObjectPurgeableAPPLE_remap_index 552
876 #define ObjectUnpurgeableAPPLE_remap_index 553
877 #define CreateShaderProgramEXT_remap_index 555
878 #define TextureBarrierNV_remap_index 557
879
880 #define _gloffset_GetStringi driDispatchRemapTable[GetStringi_remap_index]
881 #define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index]
882 #define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index]
883 #define _gloffset_LoadTransposeMatrixdARB driDispatchRemapTable[LoadTransposeMatrixdARB_remap_index]
884 #define _gloffset_LoadTransposeMatrixfARB driDispatchRemapTable[LoadTransposeMatrixfARB_remap_index]
885 #define _gloffset_MultTransposeMatrixdARB driDispatchRemapTable[MultTransposeMatrixdARB_remap_index]
886 #define _gloffset_MultTransposeMatrixfARB driDispatchRemapTable[MultTransposeMatrixfARB_remap_index]
887 #define _gloffset_SampleCoverageARB driDispatchRemapTable[SampleCoverageARB_remap_index]
888 #define _gloffset_BindBufferARB driDispatchRemapTable[BindBufferARB_remap_index]
889 #define _gloffset_BufferDataARB driDispatchRemapTable[BufferDataARB_remap_index]
890 #define _gloffset_BufferSubDataARB driDispatchRemapTable[BufferSubDataARB_remap_index]
891 #define _gloffset_DeleteBuffersARB driDispatchRemapTable[DeleteBuffersARB_remap_index]
892 #define _gloffset_GenBuffersARB driDispatchRemapTable[GenBuffersARB_remap_index]
893 #define _gloffset_GetBufferParameterivARB driDispatchRemapTable[GetBufferParameterivARB_remap_index]
894 #define _gloffset_GetBufferPointervARB driDispatchRemapTable[GetBufferPointervARB_remap_index]
895 #define _gloffset_GetBufferSubDataARB driDispatchRemapTable[GetBufferSubDataARB_remap_index]
896 #define _gloffset_IsBufferARB driDispatchRemapTable[IsBufferARB_remap_index]
897 #define _gloffset_MapBufferARB driDispatchRemapTable[MapBufferARB_remap_index]
898 #define _gloffset_UnmapBufferARB driDispatchRemapTable[UnmapBufferARB_remap_index]
899 #define _gloffset_AttachObjectARB driDispatchRemapTable[AttachObjectARB_remap_index]
900 #define _gloffset_CompileShaderARB driDispatchRemapTable[CompileShaderARB_remap_index]
901 #define _gloffset_CreateProgramObjectARB driDispatchRemapTable[CreateProgramObjectARB_remap_index]
902 #define _gloffset_CreateShaderObjectARB driDispatchRemapTable[CreateShaderObjectARB_remap_index]
903 #define _gloffset_DeleteObjectARB driDispatchRemapTable[DeleteObjectARB_remap_index]
904 #define _gloffset_DetachObjectARB driDispatchRemapTable[DetachObjectARB_remap_index]
905 #define _gloffset_GetAttachedObjectsARB driDispatchRemapTable[GetAttachedObjectsARB_remap_index]
906 #define _gloffset_GetHandleARB driDispatchRemapTable[GetHandleARB_remap_index]
907 #define _gloffset_GetInfoLogARB driDispatchRemapTable[GetInfoLogARB_remap_index]
908 #define _gloffset_GetObjectParameterfvARB driDispatchRemapTable[GetObjectParameterfvARB_remap_index]
909 #define _gloffset_GetObjectParameterivARB driDispatchRemapTable[GetObjectParameterivARB_remap_index]
910 #define _gloffset_GetShaderSourceARB driDispatchRemapTable[GetShaderSourceARB_remap_index]
911 #define _gloffset_LinkProgramARB driDispatchRemapTable[LinkProgramARB_remap_index]
912 #define _gloffset_ShaderSourceARB driDispatchRemapTable[ShaderSourceARB_remap_index]
913 #define _gloffset_ValidateProgramARB driDispatchRemapTable[ValidateProgramARB_remap_index]
914 #define _gloffset_GetActiveAttribARB driDispatchRemapTable[GetActiveAttribARB_remap_index]
915 #define _gloffset_GetAttribLocationARB driDispatchRemapTable[GetAttribLocationARB_remap_index]
916 #define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
917 #define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
918 #define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index]
919 #define _gloffset_GenVertexArrays driDispatchRemapTable[GenVertexArrays_remap_index]
920 #define _gloffset_TexStorage1D driDispatchRemapTable[TexStorage1D_remap_index]
921 #define _gloffset_TexStorage2D driDispatchRemapTable[TexStorage2D_remap_index]
922 #define _gloffset_TexStorage3D driDispatchRemapTable[TexStorage3D_remap_index]
923 #define _gloffset_TextureStorage1DEXT driDispatchRemapTable[TextureStorage1DEXT_remap_index]
924 #define _gloffset_TextureStorage2DEXT driDispatchRemapTable[TextureStorage2DEXT_remap_index]
925 #define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index]
926 #define _gloffset_PolygonOffsetEXT driDispatchRemapTable[PolygonOffsetEXT_remap_index]
927 #define _gloffset_SampleMaskSGIS driDispatchRemapTable[SampleMaskSGIS_remap_index]
928 #define _gloffset_SamplePatternSGIS driDispatchRemapTable[SamplePatternSGIS_remap_index]
929 #define _gloffset_ColorPointerEXT driDispatchRemapTable[ColorPointerEXT_remap_index]
930 #define _gloffset_EdgeFlagPointerEXT driDispatchRemapTable[EdgeFlagPointerEXT_remap_index]
931 #define _gloffset_IndexPointerEXT driDispatchRemapTable[IndexPointerEXT_remap_index]
932 #define _gloffset_NormalPointerEXT driDispatchRemapTable[NormalPointerEXT_remap_index]
933 #define _gloffset_TexCoordPointerEXT driDispatchRemapTable[TexCoordPointerEXT_remap_index]
934 #define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index]
935 #define _gloffset_PointParameterfEXT driDispatchRemapTable[PointParameterfEXT_remap_index]
936 #define _gloffset_PointParameterfvEXT driDispatchRemapTable[PointParameterfvEXT_remap_index]
937 #define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index]
938 #define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index]
939 #define _gloffset_SecondaryColor3bEXT driDispatchRemapTable[SecondaryColor3bEXT_remap_index]
940 #define _gloffset_SecondaryColor3bvEXT driDispatchRemapTable[SecondaryColor3bvEXT_remap_index]
941 #define _gloffset_SecondaryColor3dEXT driDispatchRemapTable[SecondaryColor3dEXT_remap_index]
942 #define _gloffset_SecondaryColor3dvEXT driDispatchRemapTable[SecondaryColor3dvEXT_remap_index]
943 #define _gloffset_SecondaryColor3fEXT driDispatchRemapTable[SecondaryColor3fEXT_remap_index]
944 #define _gloffset_SecondaryColor3fvEXT driDispatchRemapTable[SecondaryColor3fvEXT_remap_index]
945 #define _gloffset_SecondaryColor3iEXT driDispatchRemapTable[SecondaryColor3iEXT_remap_index]
946 #define _gloffset_SecondaryColor3ivEXT driDispatchRemapTable[SecondaryColor3ivEXT_remap_index]
947 #define _gloffset_SecondaryColor3sEXT driDispatchRemapTable[SecondaryColor3sEXT_remap_index]
948 #define _gloffset_SecondaryColor3svEXT driDispatchRemapTable[SecondaryColor3svEXT_remap_index]
949 #define _gloffset_SecondaryColor3ubEXT driDispatchRemapTable[SecondaryColor3ubEXT_remap_index]
950 #define _gloffset_SecondaryColor3ubvEXT driDispatchRemapTable[SecondaryColor3ubvEXT_remap_index]
951 #define _gloffset_SecondaryColor3uiEXT driDispatchRemapTable[SecondaryColor3uiEXT_remap_index]
952 #define _gloffset_SecondaryColor3uivEXT driDispatchRemapTable[SecondaryColor3uivEXT_remap_index]
953 #define _gloffset_SecondaryColor3usEXT driDispatchRemapTable[SecondaryColor3usEXT_remap_index]
954 #define _gloffset_SecondaryColor3usvEXT driDispatchRemapTable[SecondaryColor3usvEXT_remap_index]
955 #define _gloffset_SecondaryColorPointerEXT driDispatchRemapTable[SecondaryColorPointerEXT_remap_index]
956 #define _gloffset_FogCoordPointerEXT driDispatchRemapTable[FogCoordPointerEXT_remap_index]
957 #define _gloffset_FogCoorddEXT driDispatchRemapTable[FogCoorddEXT_remap_index]
958 #define _gloffset_FogCoorddvEXT driDispatchRemapTable[FogCoorddvEXT_remap_index]
959 #define _gloffset_FogCoordfEXT driDispatchRemapTable[FogCoordfEXT_remap_index]
960 #define _gloffset_FogCoordfvEXT driDispatchRemapTable[FogCoordfvEXT_remap_index]
961 #define _gloffset_PixelTexGenSGIX driDispatchRemapTable[PixelTexGenSGIX_remap_index]
962 #define _gloffset_BlendFuncSeparateEXT driDispatchRemapTable[BlendFuncSeparateEXT_remap_index]
963 #define _gloffset_FlushVertexArrayRangeNV driDispatchRemapTable[FlushVertexArrayRangeNV_remap_index]
964 #define _gloffset_VertexArrayRangeNV driDispatchRemapTable[VertexArrayRangeNV_remap_index]
965 #define _gloffset_CombinerInputNV driDispatchRemapTable[CombinerInputNV_remap_index]
966 #define _gloffset_CombinerOutputNV driDispatchRemapTable[CombinerOutputNV_remap_index]
967 #define _gloffset_CombinerParameterfNV driDispatchRemapTable[CombinerParameterfNV_remap_index]
968 #define _gloffset_CombinerParameterfvNV driDispatchRemapTable[CombinerParameterfvNV_remap_index]
969 #define _gloffset_CombinerParameteriNV driDispatchRemapTable[CombinerParameteriNV_remap_index]
970 #define _gloffset_CombinerParameterivNV driDispatchRemapTable[CombinerParameterivNV_remap_index]
971 #define _gloffset_FinalCombinerInputNV driDispatchRemapTable[FinalCombinerInputNV_remap_index]
972 #define _gloffset_GetCombinerInputParameterfvNV driDispatchRemapTable[GetCombinerInputParameterfvNV_remap_index]
973 #define _gloffset_GetCombinerInputParameterivNV driDispatchRemapTable[GetCombinerInputParameterivNV_remap_index]
974 #define _gloffset_GetCombinerOutputParameterfvNV driDispatchRemapTable[GetCombinerOutputParameterfvNV_remap_index]
975 #define _gloffset_GetCombinerOutputParameterivNV driDispatchRemapTable[GetCombinerOutputParameterivNV_remap_index]
976 #define _gloffset_GetFinalCombinerInputParameterfvNV driDispatchRemapTable[GetFinalCombinerInputParameterfvNV_remap_index]
977 #define _gloffset_GetFinalCombinerInputParameterivNV driDispatchRemapTable[GetFinalCombinerInputParameterivNV_remap_index]
978 #define _gloffset_WindowPos2dMESA driDispatchRemapTable[WindowPos2dMESA_remap_index]
979 #define _gloffset_WindowPos2dvMESA driDispatchRemapTable[WindowPos2dvMESA_remap_index]
980 #define _gloffset_WindowPos2fMESA driDispatchRemapTable[WindowPos2fMESA_remap_index]
981 #define _gloffset_WindowPos2fvMESA driDispatchRemapTable[WindowPos2fvMESA_remap_index]
982 #define _gloffset_WindowPos2iMESA driDispatchRemapTable[WindowPos2iMESA_remap_index]
983 #define _gloffset_WindowPos2ivMESA driDispatchRemapTable[WindowPos2ivMESA_remap_index]
984 #define _gloffset_WindowPos2sMESA driDispatchRemapTable[WindowPos2sMESA_remap_index]
985 #define _gloffset_WindowPos2svMESA driDispatchRemapTable[WindowPos2svMESA_remap_index]
986 #define _gloffset_WindowPos3dMESA driDispatchRemapTable[WindowPos3dMESA_remap_index]
987 #define _gloffset_WindowPos3dvMESA driDispatchRemapTable[WindowPos3dvMESA_remap_index]
988 #define _gloffset_WindowPos3fMESA driDispatchRemapTable[WindowPos3fMESA_remap_index]
989 #define _gloffset_WindowPos3fvMESA driDispatchRemapTable[WindowPos3fvMESA_remap_index]
990 #define _gloffset_WindowPos3iMESA driDispatchRemapTable[WindowPos3iMESA_remap_index]
991 #define _gloffset_WindowPos3ivMESA driDispatchRemapTable[WindowPos3ivMESA_remap_index]
992 #define _gloffset_WindowPos3sMESA driDispatchRemapTable[WindowPos3sMESA_remap_index]
993 #define _gloffset_WindowPos3svMESA driDispatchRemapTable[WindowPos3svMESA_remap_index]
994 #define _gloffset_WindowPos4dMESA driDispatchRemapTable[WindowPos4dMESA_remap_index]
995 #define _gloffset_WindowPos4dvMESA driDispatchRemapTable[WindowPos4dvMESA_remap_index]
996 #define _gloffset_WindowPos4fMESA driDispatchRemapTable[WindowPos4fMESA_remap_index]
997 #define _gloffset_WindowPos4fvMESA driDispatchRemapTable[WindowPos4fvMESA_remap_index]
998 #define _gloffset_WindowPos4iMESA driDispatchRemapTable[WindowPos4iMESA_remap_index]
999 #define _gloffset_WindowPos4ivMESA driDispatchRemapTable[WindowPos4ivMESA_remap_index]
1000 #define _gloffset_WindowPos4sMESA driDispatchRemapTable[WindowPos4sMESA_remap_index]
1001 #define _gloffset_WindowPos4svMESA driDispatchRemapTable[WindowPos4svMESA_remap_index]
1002 #define _gloffset_MultiModeDrawArraysIBM driDispatchRemapTable[MultiModeDrawArraysIBM_remap_index]
1003 #define _gloffset_MultiModeDrawElementsIBM driDispatchRemapTable[MultiModeDrawElementsIBM_remap_index]
1004 #define _gloffset_DeleteFencesNV driDispatchRemapTable[DeleteFencesNV_remap_index]
1005 #define _gloffset_FinishFenceNV driDispatchRemapTable[FinishFenceNV_remap_index]
1006 #define _gloffset_GenFencesNV driDispatchRemapTable[GenFencesNV_remap_index]
1007 #define _gloffset_GetFenceivNV driDispatchRemapTable[GetFenceivNV_remap_index]
1008 #define _gloffset_IsFenceNV driDispatchRemapTable[IsFenceNV_remap_index]
1009 #define _gloffset_SetFenceNV driDispatchRemapTable[SetFenceNV_remap_index]
1010 #define _gloffset_TestFenceNV driDispatchRemapTable[TestFenceNV_remap_index]
1011 #define _gloffset_AreProgramsResidentNV driDispatchRemapTable[AreProgramsResidentNV_remap_index]
1012 #define _gloffset_ExecuteProgramNV driDispatchRemapTable[ExecuteProgramNV_remap_index]
1013 #define _gloffset_GetProgramParameterdvNV driDispatchRemapTable[GetProgramParameterdvNV_remap_index]
1014 #define _gloffset_GetProgramParameterfvNV driDispatchRemapTable[GetProgramParameterfvNV_remap_index]
1015 #define _gloffset_GetTrackMatrixivNV driDispatchRemapTable[GetTrackMatrixivNV_remap_index]
1016 #define _gloffset_LoadProgramNV driDispatchRemapTable[LoadProgramNV_remap_index]
1017 #define _gloffset_ProgramParameters4dvNV driDispatchRemapTable[ProgramParameters4dvNV_remap_index]
1018 #define _gloffset_ProgramParameters4fvNV driDispatchRemapTable[ProgramParameters4fvNV_remap_index]
1019 #define _gloffset_RequestResidentProgramsNV driDispatchRemapTable[RequestResidentProgramsNV_remap_index]
1020 #define _gloffset_TrackMatrixNV driDispatchRemapTable[TrackMatrixNV_remap_index]
1021 #define _gloffset_VertexAttrib1dNV driDispatchRemapTable[VertexAttrib1dNV_remap_index]
1022 #define _gloffset_VertexAttrib1dvNV driDispatchRemapTable[VertexAttrib1dvNV_remap_index]
1023 #define _gloffset_VertexAttrib1fNV driDispatchRemapTable[VertexAttrib1fNV_remap_index]
1024 #define _gloffset_VertexAttrib1fvNV driDispatchRemapTable[VertexAttrib1fvNV_remap_index]
1025 #define _gloffset_VertexAttrib1sNV driDispatchRemapTable[VertexAttrib1sNV_remap_index]
1026 #define _gloffset_VertexAttrib1svNV driDispatchRemapTable[VertexAttrib1svNV_remap_index]
1027 #define _gloffset_VertexAttrib2dNV driDispatchRemapTable[VertexAttrib2dNV_remap_index]
1028 #define _gloffset_VertexAttrib2dvNV driDispatchRemapTable[VertexAttrib2dvNV_remap_index]
1029 #define _gloffset_VertexAttrib2fNV driDispatchRemapTable[VertexAttrib2fNV_remap_index]
1030 #define _gloffset_VertexAttrib2fvNV driDispatchRemapTable[VertexAttrib2fvNV_remap_index]
1031 #define _gloffset_VertexAttrib2sNV driDispatchRemapTable[VertexAttrib2sNV_remap_index]
1032 #define _gloffset_VertexAttrib2svNV driDispatchRemapTable[VertexAttrib2svNV_remap_index]
1033 #define _gloffset_VertexAttrib3dNV driDispatchRemapTable[VertexAttrib3dNV_remap_index]
1034 #define _gloffset_VertexAttrib3dvNV driDispatchRemapTable[VertexAttrib3dvNV_remap_index]
1035 #define _gloffset_VertexAttrib3fNV driDispatchRemapTable[VertexAttrib3fNV_remap_index]
1036 #define _gloffset_VertexAttrib3fvNV driDispatchRemapTable[VertexAttrib3fvNV_remap_index]
1037 #define _gloffset_VertexAttrib3sNV driDispatchRemapTable[VertexAttrib3sNV_remap_index]
1038 #define _gloffset_VertexAttrib3svNV driDispatchRemapTable[VertexAttrib3svNV_remap_index]
1039 #define _gloffset_VertexAttrib4dNV driDispatchRemapTable[VertexAttrib4dNV_remap_index]
1040 #define _gloffset_VertexAttrib4dvNV driDispatchRemapTable[VertexAttrib4dvNV_remap_index]
1041 #define _gloffset_VertexAttrib4fNV driDispatchRemapTable[VertexAttrib4fNV_remap_index]
1042 #define _gloffset_VertexAttrib4fvNV driDispatchRemapTable[VertexAttrib4fvNV_remap_index]
1043 #define _gloffset_VertexAttrib4sNV driDispatchRemapTable[VertexAttrib4sNV_remap_index]
1044 #define _gloffset_VertexAttrib4svNV driDispatchRemapTable[VertexAttrib4svNV_remap_index]
1045 #define _gloffset_VertexAttrib4ubNV driDispatchRemapTable[VertexAttrib4ubNV_remap_index]
1046 #define _gloffset_VertexAttrib4ubvNV driDispatchRemapTable[VertexAttrib4ubvNV_remap_index]
1047 #define _gloffset_VertexAttribs1dvNV driDispatchRemapTable[VertexAttribs1dvNV_remap_index]
1048 #define _gloffset_VertexAttribs1fvNV driDispatchRemapTable[VertexAttribs1fvNV_remap_index]
1049 #define _gloffset_VertexAttribs1svNV driDispatchRemapTable[VertexAttribs1svNV_remap_index]
1050 #define _gloffset_VertexAttribs2dvNV driDispatchRemapTable[VertexAttribs2dvNV_remap_index]
1051 #define _gloffset_VertexAttribs2fvNV driDispatchRemapTable[VertexAttribs2fvNV_remap_index]
1052 #define _gloffset_VertexAttribs2svNV driDispatchRemapTable[VertexAttribs2svNV_remap_index]
1053 #define _gloffset_VertexAttribs3dvNV driDispatchRemapTable[VertexAttribs3dvNV_remap_index]
1054 #define _gloffset_VertexAttribs3fvNV driDispatchRemapTable[VertexAttribs3fvNV_remap_index]
1055 #define _gloffset_VertexAttribs3svNV driDispatchRemapTable[VertexAttribs3svNV_remap_index]
1056 #define _gloffset_VertexAttribs4dvNV driDispatchRemapTable[VertexAttribs4dvNV_remap_index]
1057 #define _gloffset_VertexAttribs4fvNV driDispatchRemapTable[VertexAttribs4fvNV_remap_index]
1058 #define _gloffset_VertexAttribs4svNV driDispatchRemapTable[VertexAttribs4svNV_remap_index]
1059 #define _gloffset_VertexAttribs4ubvNV driDispatchRemapTable[VertexAttribs4ubvNV_remap_index]
1060 #define _gloffset_PointParameteriNV driDispatchRemapTable[PointParameteriNV_remap_index]
1061 #define _gloffset_PointParameterivNV driDispatchRemapTable[PointParameterivNV_remap_index]
1062 #define _gloffset_ActiveStencilFaceEXT driDispatchRemapTable[ActiveStencilFaceEXT_remap_index]
1063 #define _gloffset_BindVertexArrayAPPLE driDispatchRemapTable[BindVertexArrayAPPLE_remap_index]
1064 #define _gloffset_DeleteVertexArraysAPPLE driDispatchRemapTable[DeleteVertexArraysAPPLE_remap_index]
1065 #define _gloffset_GenVertexArraysAPPLE driDispatchRemapTable[GenVertexArraysAPPLE_remap_index]
1066 #define _gloffset_IsVertexArrayAPPLE driDispatchRemapTable[IsVertexArrayAPPLE_remap_index]
1067 #define _gloffset_GetProgramNamedParameterdvNV driDispatchRemapTable[GetProgramNamedParameterdvNV_remap_index]
1068 #define _gloffset_GetProgramNamedParameterfvNV driDispatchRemapTable[GetProgramNamedParameterfvNV_remap_index]
1069 #define _gloffset_ProgramNamedParameter4dNV driDispatchRemapTable[ProgramNamedParameter4dNV_remap_index]
1070 #define _gloffset_ProgramNamedParameter4dvNV driDispatchRemapTable[ProgramNamedParameter4dvNV_remap_index]
1071 #define _gloffset_ProgramNamedParameter4fNV driDispatchRemapTable[ProgramNamedParameter4fNV_remap_index]
1072 #define _gloffset_ProgramNamedParameter4fvNV driDispatchRemapTable[ProgramNamedParameter4fvNV_remap_index]
1073 #define _gloffset_DepthBoundsEXT driDispatchRemapTable[DepthBoundsEXT_remap_index]
1074 #define _gloffset_BlendEquationSeparateEXT driDispatchRemapTable[BlendEquationSeparateEXT_remap_index]
1075 #define _gloffset_BufferParameteriAPPLE driDispatchRemapTable[BufferParameteriAPPLE_remap_index]
1076 #define _gloffset_FlushMappedBufferRangeAPPLE driDispatchRemapTable[FlushMappedBufferRangeAPPLE_remap_index]
1077 #define _gloffset_BindFragDataLocationEXT driDispatchRemapTable[BindFragDataLocationEXT_remap_index]
1078 #define _gloffset_GetFragDataLocationEXT driDispatchRemapTable[GetFragDataLocationEXT_remap_index]
1079 #define _gloffset_ClearColorIiEXT driDispatchRemapTable[ClearColorIiEXT_remap_index]
1080 #define _gloffset_ClearColorIuiEXT driDispatchRemapTable[ClearColorIuiEXT_remap_index]
1081 #define _gloffset_GetTexParameterIivEXT driDispatchRemapTable[GetTexParameterIivEXT_remap_index]
1082 #define _gloffset_GetTexParameterIuivEXT driDispatchRemapTable[GetTexParameterIuivEXT_remap_index]
1083 #define _gloffset_TexParameterIivEXT driDispatchRemapTable[TexParameterIivEXT_remap_index]
1084 #define _gloffset_TexParameterIuivEXT driDispatchRemapTable[TexParameterIuivEXT_remap_index]
1085 #define _gloffset_GetTexParameterPointervAPPLE driDispatchRemapTable[GetTexParameterPointervAPPLE_remap_index]
1086 #define _gloffset_TextureRangeAPPLE driDispatchRemapTable[TextureRangeAPPLE_remap_index]
1087 #define _gloffset_GetObjectParameterivAPPLE driDispatchRemapTable[GetObjectParameterivAPPLE_remap_index]
1088 #define _gloffset_ObjectPurgeableAPPLE driDispatchRemapTable[ObjectPurgeableAPPLE_remap_index]
1089 #define _gloffset_ObjectUnpurgeableAPPLE driDispatchRemapTable[ObjectUnpurgeableAPPLE_remap_index]
1090 #define _gloffset_CreateShaderProgramEXT driDispatchRemapTable[CreateShaderProgramEXT_remap_index]
1091 #define _gloffset_TextureBarrierNV driDispatchRemapTable[TextureBarrierNV_remap_index]
1092
1093 #endif /* !FEATURE_remap_table */
1094
1095 typedef void (GLAPIENTRYP _glptr_NewList)(GLuint, GLenum);
1096 #define CALL_NewList(disp, parameters) \
1097 (* GET_NewList(disp)) parameters
1098 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) {
1099 return (_glptr_NewList) (GET_by_offset(disp, _gloffset_NewList));
1100 }
1101
1102 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
1103 SET_by_offset(disp, _gloffset_NewList, fn);
1104 }
1105
1106 typedef void (GLAPIENTRYP _glptr_EndList)(void);
1107 #define CALL_EndList(disp, parameters) \
1108 (* GET_EndList(disp)) parameters
1109 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) {
1110 return (_glptr_EndList) (GET_by_offset(disp, _gloffset_EndList));
1111 }
1112
1113 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
1114 SET_by_offset(disp, _gloffset_EndList, fn);
1115 }
1116
1117 typedef void (GLAPIENTRYP _glptr_CallList)(GLuint);
1118 #define CALL_CallList(disp, parameters) \
1119 (* GET_CallList(disp)) parameters
1120 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) {
1121 return (_glptr_CallList) (GET_by_offset(disp, _gloffset_CallList));
1122 }
1123
1124 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
1125 SET_by_offset(disp, _gloffset_CallList, fn);
1126 }
1127
1128 typedef void (GLAPIENTRYP _glptr_CallLists)(GLsizei, GLenum, const GLvoid *);
1129 #define CALL_CallLists(disp, parameters) \
1130 (* GET_CallLists(disp)) parameters
1131 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
1132 return (_glptr_CallLists) (GET_by_offset(disp, _gloffset_CallLists));
1133 }
1134
1135 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
1136 SET_by_offset(disp, _gloffset_CallLists, fn);
1137 }
1138
1139 typedef void (GLAPIENTRYP _glptr_DeleteLists)(GLuint, GLsizei);
1140 #define CALL_DeleteLists(disp, parameters) \
1141 (* GET_DeleteLists(disp)) parameters
1142 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
1143 return (_glptr_DeleteLists) (GET_by_offset(disp, _gloffset_DeleteLists));
1144 }
1145
1146 static inline void SET_DeleteLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei)) {
1147 SET_by_offset(disp, _gloffset_DeleteLists, fn);
1148 }
1149
1150 typedef GLuint (GLAPIENTRYP _glptr_GenLists)(GLsizei);
1151 #define CALL_GenLists(disp, parameters) \
1152 (* GET_GenLists(disp)) parameters
1153 static inline _glptr_GenLists GET_GenLists(struct _glapi_table *disp) {
1154 return (_glptr_GenLists) (GET_by_offset(disp, _gloffset_GenLists));
1155 }
1156
1157 static inline void SET_GenLists(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLsizei)) {
1158 SET_by_offset(disp, _gloffset_GenLists, fn);
1159 }
1160
1161 typedef void (GLAPIENTRYP _glptr_ListBase)(GLuint);
1162 #define CALL_ListBase(disp, parameters) \
1163 (* GET_ListBase(disp)) parameters
1164 static inline _glptr_ListBase GET_ListBase(struct _glapi_table *disp) {
1165 return (_glptr_ListBase) (GET_by_offset(disp, _gloffset_ListBase));
1166 }
1167
1168 static inline void SET_ListBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
1169 SET_by_offset(disp, _gloffset_ListBase, fn);
1170 }
1171
1172 typedef void (GLAPIENTRYP _glptr_Begin)(GLenum);
1173 #define CALL_Begin(disp, parameters) \
1174 (* GET_Begin(disp)) parameters
1175 static inline _glptr_Begin GET_Begin(struct _glapi_table *disp) {
1176 return (_glptr_Begin) (GET_by_offset(disp, _gloffset_Begin));
1177 }
1178
1179 static inline void SET_Begin(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
1180 SET_by_offset(disp, _gloffset_Begin, fn);
1181 }
1182
1183 typedef void (GLAPIENTRYP _glptr_Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
1184 #define CALL_Bitmap(disp, parameters) \
1185 (* GET_Bitmap(disp)) parameters
1186 static inline _glptr_Bitmap GET_Bitmap(struct _glapi_table *disp) {
1187 return (_glptr_Bitmap) (GET_by_offset(disp, _gloffset_Bitmap));
1188 }
1189
1190 static inline void SET_Bitmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *)) {
1191 SET_by_offset(disp, _gloffset_Bitmap, fn);
1192 }
1193
1194 typedef void (GLAPIENTRYP _glptr_Color3b)(GLbyte, GLbyte, GLbyte);
1195 #define CALL_Color3b(disp, parameters) \
1196 (* GET_Color3b(disp)) parameters
1197 static inline _glptr_Color3b GET_Color3b(struct _glapi_table *disp) {
1198 return (_glptr_Color3b) (GET_by_offset(disp, _gloffset_Color3b));
1199 }
1200
1201 static inline void SET_Color3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
1202 SET_by_offset(disp, _gloffset_Color3b, fn);
1203 }
1204
1205 typedef void (GLAPIENTRYP _glptr_Color3bv)(const GLbyte *);
1206 #define CALL_Color3bv(disp, parameters) \
1207 (* GET_Color3bv(disp)) parameters
1208 static inline _glptr_Color3bv GET_Color3bv(struct _glapi_table *disp) {
1209 return (_glptr_Color3bv) (GET_by_offset(disp, _gloffset_Color3bv));
1210 }
1211
1212 static inline void SET_Color3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
1213 SET_by_offset(disp, _gloffset_Color3bv, fn);
1214 }
1215
1216 typedef void (GLAPIENTRYP _glptr_Color3d)(GLdouble, GLdouble, GLdouble);
1217 #define CALL_Color3d(disp, parameters) \
1218 (* GET_Color3d(disp)) parameters
1219 static inline _glptr_Color3d GET_Color3d(struct _glapi_table *disp) {
1220 return (_glptr_Color3d) (GET_by_offset(disp, _gloffset_Color3d));
1221 }
1222
1223 static inline void SET_Color3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
1224 SET_by_offset(disp, _gloffset_Color3d, fn);
1225 }
1226
1227 typedef void (GLAPIENTRYP _glptr_Color3dv)(const GLdouble *);
1228 #define CALL_Color3dv(disp, parameters) \
1229 (* GET_Color3dv(disp)) parameters
1230 static inline _glptr_Color3dv GET_Color3dv(struct _glapi_table *disp) {
1231 return (_glptr_Color3dv) (GET_by_offset(disp, _gloffset_Color3dv));
1232 }
1233
1234 static inline void SET_Color3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1235 SET_by_offset(disp, _gloffset_Color3dv, fn);
1236 }
1237
1238 typedef void (GLAPIENTRYP _glptr_Color3f)(GLfloat, GLfloat, GLfloat);
1239 #define CALL_Color3f(disp, parameters) \
1240 (* GET_Color3f(disp)) parameters
1241 static inline _glptr_Color3f GET_Color3f(struct _glapi_table *disp) {
1242 return (_glptr_Color3f) (GET_by_offset(disp, _gloffset_Color3f));
1243 }
1244
1245 static inline void SET_Color3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
1246 SET_by_offset(disp, _gloffset_Color3f, fn);
1247 }
1248
1249 typedef void (GLAPIENTRYP _glptr_Color3fv)(const GLfloat *);
1250 #define CALL_Color3fv(disp, parameters) \
1251 (* GET_Color3fv(disp)) parameters
1252 static inline _glptr_Color3fv GET_Color3fv(struct _glapi_table *disp) {
1253 return (_glptr_Color3fv) (GET_by_offset(disp, _gloffset_Color3fv));
1254 }
1255
1256 static inline void SET_Color3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1257 SET_by_offset(disp, _gloffset_Color3fv, fn);
1258 }
1259
1260 typedef void (GLAPIENTRYP _glptr_Color3i)(GLint, GLint, GLint);
1261 #define CALL_Color3i(disp, parameters) \
1262 (* GET_Color3i(disp)) parameters
1263 static inline _glptr_Color3i GET_Color3i(struct _glapi_table *disp) {
1264 return (_glptr_Color3i) (GET_by_offset(disp, _gloffset_Color3i));
1265 }
1266
1267 static inline void SET_Color3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
1268 SET_by_offset(disp, _gloffset_Color3i, fn);
1269 }
1270
1271 typedef void (GLAPIENTRYP _glptr_Color3iv)(const GLint *);
1272 #define CALL_Color3iv(disp, parameters) \
1273 (* GET_Color3iv(disp)) parameters
1274 static inline _glptr_Color3iv GET_Color3iv(struct _glapi_table *disp) {
1275 return (_glptr_Color3iv) (GET_by_offset(disp, _gloffset_Color3iv));
1276 }
1277
1278 static inline void SET_Color3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
1279 SET_by_offset(disp, _gloffset_Color3iv, fn);
1280 }
1281
1282 typedef void (GLAPIENTRYP _glptr_Color3s)(GLshort, GLshort, GLshort);
1283 #define CALL_Color3s(disp, parameters) \
1284 (* GET_Color3s(disp)) parameters
1285 static inline _glptr_Color3s GET_Color3s(struct _glapi_table *disp) {
1286 return (_glptr_Color3s) (GET_by_offset(disp, _gloffset_Color3s));
1287 }
1288
1289 static inline void SET_Color3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
1290 SET_by_offset(disp, _gloffset_Color3s, fn);
1291 }
1292
1293 typedef void (GLAPIENTRYP _glptr_Color3sv)(const GLshort *);
1294 #define CALL_Color3sv(disp, parameters) \
1295 (* GET_Color3sv(disp)) parameters
1296 static inline _glptr_Color3sv GET_Color3sv(struct _glapi_table *disp) {
1297 return (_glptr_Color3sv) (GET_by_offset(disp, _gloffset_Color3sv));
1298 }
1299
1300 static inline void SET_Color3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
1301 SET_by_offset(disp, _gloffset_Color3sv, fn);
1302 }
1303
1304 typedef void (GLAPIENTRYP _glptr_Color3ub)(GLubyte, GLubyte, GLubyte);
1305 #define CALL_Color3ub(disp, parameters) \
1306 (* GET_Color3ub(disp)) parameters
1307 static inline _glptr_Color3ub GET_Color3ub(struct _glapi_table *disp) {
1308 return (_glptr_Color3ub) (GET_by_offset(disp, _gloffset_Color3ub));
1309 }
1310
1311 static inline void SET_Color3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
1312 SET_by_offset(disp, _gloffset_Color3ub, fn);
1313 }
1314
1315 typedef void (GLAPIENTRYP _glptr_Color3ubv)(const GLubyte *);
1316 #define CALL_Color3ubv(disp, parameters) \
1317 (* GET_Color3ubv(disp)) parameters
1318 static inline _glptr_Color3ubv GET_Color3ubv(struct _glapi_table *disp) {
1319 return (_glptr_Color3ubv) (GET_by_offset(disp, _gloffset_Color3ubv));
1320 }
1321
1322 static inline void SET_Color3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
1323 SET_by_offset(disp, _gloffset_Color3ubv, fn);
1324 }
1325
1326 typedef void (GLAPIENTRYP _glptr_Color3ui)(GLuint, GLuint, GLuint);
1327 #define CALL_Color3ui(disp, parameters) \
1328 (* GET_Color3ui(disp)) parameters
1329 static inline _glptr_Color3ui GET_Color3ui(struct _glapi_table *disp) {
1330 return (_glptr_Color3ui) (GET_by_offset(disp, _gloffset_Color3ui));
1331 }
1332
1333 static inline void SET_Color3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
1334 SET_by_offset(disp, _gloffset_Color3ui, fn);
1335 }
1336
1337 typedef void (GLAPIENTRYP _glptr_Color3uiv)(const GLuint *);
1338 #define CALL_Color3uiv(disp, parameters) \
1339 (* GET_Color3uiv(disp)) parameters
1340 static inline _glptr_Color3uiv GET_Color3uiv(struct _glapi_table *disp) {
1341 return (_glptr_Color3uiv) (GET_by_offset(disp, _gloffset_Color3uiv));
1342 }
1343
1344 static inline void SET_Color3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
1345 SET_by_offset(disp, _gloffset_Color3uiv, fn);
1346 }
1347
1348 typedef void (GLAPIENTRYP _glptr_Color3us)(GLushort, GLushort, GLushort);
1349 #define CALL_Color3us(disp, parameters) \
1350 (* GET_Color3us(disp)) parameters
1351 static inline _glptr_Color3us GET_Color3us(struct _glapi_table *disp) {
1352 return (_glptr_Color3us) (GET_by_offset(disp, _gloffset_Color3us));
1353 }
1354
1355 static inline void SET_Color3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
1356 SET_by_offset(disp, _gloffset_Color3us, fn);
1357 }
1358
1359 typedef void (GLAPIENTRYP _glptr_Color3usv)(const GLushort *);
1360 #define CALL_Color3usv(disp, parameters) \
1361 (* GET_Color3usv(disp)) parameters
1362 static inline _glptr_Color3usv GET_Color3usv(struct _glapi_table *disp) {
1363 return (_glptr_Color3usv) (GET_by_offset(disp, _gloffset_Color3usv));
1364 }
1365
1366 static inline void SET_Color3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
1367 SET_by_offset(disp, _gloffset_Color3usv, fn);
1368 }
1369
1370 typedef void (GLAPIENTRYP _glptr_Color4b)(GLbyte, GLbyte, GLbyte, GLbyte);
1371 #define CALL_Color4b(disp, parameters) \
1372 (* GET_Color4b(disp)) parameters
1373 static inline _glptr_Color4b GET_Color4b(struct _glapi_table *disp) {
1374 return (_glptr_Color4b) (GET_by_offset(disp, _gloffset_Color4b));
1375 }
1376
1377 static inline void SET_Color4b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte, GLbyte)) {
1378 SET_by_offset(disp, _gloffset_Color4b, fn);
1379 }
1380
1381 typedef void (GLAPIENTRYP _glptr_Color4bv)(const GLbyte *);
1382 #define CALL_Color4bv(disp, parameters) \
1383 (* GET_Color4bv(disp)) parameters
1384 static inline _glptr_Color4bv GET_Color4bv(struct _glapi_table *disp) {
1385 return (_glptr_Color4bv) (GET_by_offset(disp, _gloffset_Color4bv));
1386 }
1387
1388 static inline void SET_Color4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
1389 SET_by_offset(disp, _gloffset_Color4bv, fn);
1390 }
1391
1392 typedef void (GLAPIENTRYP _glptr_Color4d)(GLdouble, GLdouble, GLdouble, GLdouble);
1393 #define CALL_Color4d(disp, parameters) \
1394 (* GET_Color4d(disp)) parameters
1395 static inline _glptr_Color4d GET_Color4d(struct _glapi_table *disp) {
1396 return (_glptr_Color4d) (GET_by_offset(disp, _gloffset_Color4d));
1397 }
1398
1399 static inline void SET_Color4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
1400 SET_by_offset(disp, _gloffset_Color4d, fn);
1401 }
1402
1403 typedef void (GLAPIENTRYP _glptr_Color4dv)(const GLdouble *);
1404 #define CALL_Color4dv(disp, parameters) \
1405 (* GET_Color4dv(disp)) parameters
1406 static inline _glptr_Color4dv GET_Color4dv(struct _glapi_table *disp) {
1407 return (_glptr_Color4dv) (GET_by_offset(disp, _gloffset_Color4dv));
1408 }
1409
1410 static inline void SET_Color4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1411 SET_by_offset(disp, _gloffset_Color4dv, fn);
1412 }
1413
1414 typedef void (GLAPIENTRYP _glptr_Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
1415 #define CALL_Color4f(disp, parameters) \
1416 (* GET_Color4f(disp)) parameters
1417 static inline _glptr_Color4f GET_Color4f(struct _glapi_table *disp) {
1418 return (_glptr_Color4f) (GET_by_offset(disp, _gloffset_Color4f));
1419 }
1420
1421 static inline void SET_Color4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
1422 SET_by_offset(disp, _gloffset_Color4f, fn);
1423 }
1424
1425 typedef void (GLAPIENTRYP _glptr_Color4fv)(const GLfloat *);
1426 #define CALL_Color4fv(disp, parameters) \
1427 (* GET_Color4fv(disp)) parameters
1428 static inline _glptr_Color4fv GET_Color4fv(struct _glapi_table *disp) {
1429 return (_glptr_Color4fv) (GET_by_offset(disp, _gloffset_Color4fv));
1430 }
1431
1432 static inline void SET_Color4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1433 SET_by_offset(disp, _gloffset_Color4fv, fn);
1434 }
1435
1436 typedef void (GLAPIENTRYP _glptr_Color4i)(GLint, GLint, GLint, GLint);
1437 #define CALL_Color4i(disp, parameters) \
1438 (* GET_Color4i(disp)) parameters
1439 static inline _glptr_Color4i GET_Color4i(struct _glapi_table *disp) {
1440 return (_glptr_Color4i) (GET_by_offset(disp, _gloffset_Color4i));
1441 }
1442
1443 static inline void SET_Color4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
1444 SET_by_offset(disp, _gloffset_Color4i, fn);
1445 }
1446
1447 typedef void (GLAPIENTRYP _glptr_Color4iv)(const GLint *);
1448 #define CALL_Color4iv(disp, parameters) \
1449 (* GET_Color4iv(disp)) parameters
1450 static inline _glptr_Color4iv GET_Color4iv(struct _glapi_table *disp) {
1451 return (_glptr_Color4iv) (GET_by_offset(disp, _gloffset_Color4iv));
1452 }
1453
1454 static inline void SET_Color4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
1455 SET_by_offset(disp, _gloffset_Color4iv, fn);
1456 }
1457
1458 typedef void (GLAPIENTRYP _glptr_Color4s)(GLshort, GLshort, GLshort, GLshort);
1459 #define CALL_Color4s(disp, parameters) \
1460 (* GET_Color4s(disp)) parameters
1461 static inline _glptr_Color4s GET_Color4s(struct _glapi_table *disp) {
1462 return (_glptr_Color4s) (GET_by_offset(disp, _gloffset_Color4s));
1463 }
1464
1465 static inline void SET_Color4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
1466 SET_by_offset(disp, _gloffset_Color4s, fn);
1467 }
1468
1469 typedef void (GLAPIENTRYP _glptr_Color4sv)(const GLshort *);
1470 #define CALL_Color4sv(disp, parameters) \
1471 (* GET_Color4sv(disp)) parameters
1472 static inline _glptr_Color4sv GET_Color4sv(struct _glapi_table *disp) {
1473 return (_glptr_Color4sv) (GET_by_offset(disp, _gloffset_Color4sv));
1474 }
1475
1476 static inline void SET_Color4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
1477 SET_by_offset(disp, _gloffset_Color4sv, fn);
1478 }
1479
1480 typedef void (GLAPIENTRYP _glptr_Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
1481 #define CALL_Color4ub(disp, parameters) \
1482 (* GET_Color4ub(disp)) parameters
1483 static inline _glptr_Color4ub GET_Color4ub(struct _glapi_table *disp) {
1484 return (_glptr_Color4ub) (GET_by_offset(disp, _gloffset_Color4ub));
1485 }
1486
1487 static inline void SET_Color4ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte, GLubyte)) {
1488 SET_by_offset(disp, _gloffset_Color4ub, fn);
1489 }
1490
1491 typedef void (GLAPIENTRYP _glptr_Color4ubv)(const GLubyte *);
1492 #define CALL_Color4ubv(disp, parameters) \
1493 (* GET_Color4ubv(disp)) parameters
1494 static inline _glptr_Color4ubv GET_Color4ubv(struct _glapi_table *disp) {
1495 return (_glptr_Color4ubv) (GET_by_offset(disp, _gloffset_Color4ubv));
1496 }
1497
1498 static inline void SET_Color4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
1499 SET_by_offset(disp, _gloffset_Color4ubv, fn);
1500 }
1501
1502 typedef void (GLAPIENTRYP _glptr_Color4ui)(GLuint, GLuint, GLuint, GLuint);
1503 #define CALL_Color4ui(disp, parameters) \
1504 (* GET_Color4ui(disp)) parameters
1505 static inline _glptr_Color4ui GET_Color4ui(struct _glapi_table *disp) {
1506 return (_glptr_Color4ui) (GET_by_offset(disp, _gloffset_Color4ui));
1507 }
1508
1509 static inline void SET_Color4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
1510 SET_by_offset(disp, _gloffset_Color4ui, fn);
1511 }
1512
1513 typedef void (GLAPIENTRYP _glptr_Color4uiv)(const GLuint *);
1514 #define CALL_Color4uiv(disp, parameters) \
1515 (* GET_Color4uiv(disp)) parameters
1516 static inline _glptr_Color4uiv GET_Color4uiv(struct _glapi_table *disp) {
1517 return (_glptr_Color4uiv) (GET_by_offset(disp, _gloffset_Color4uiv));
1518 }
1519
1520 static inline void SET_Color4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
1521 SET_by_offset(disp, _gloffset_Color4uiv, fn);
1522 }
1523
1524 typedef void (GLAPIENTRYP _glptr_Color4us)(GLushort, GLushort, GLushort, GLushort);
1525 #define CALL_Color4us(disp, parameters) \
1526 (* GET_Color4us(disp)) parameters
1527 static inline _glptr_Color4us GET_Color4us(struct _glapi_table *disp) {
1528 return (_glptr_Color4us) (GET_by_offset(disp, _gloffset_Color4us));
1529 }
1530
1531 static inline void SET_Color4us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort, GLushort)) {
1532 SET_by_offset(disp, _gloffset_Color4us, fn);
1533 }
1534
1535 typedef void (GLAPIENTRYP _glptr_Color4usv)(const GLushort *);
1536 #define CALL_Color4usv(disp, parameters) \
1537 (* GET_Color4usv(disp)) parameters
1538 static inline _glptr_Color4usv GET_Color4usv(struct _glapi_table *disp) {
1539 return (_glptr_Color4usv) (GET_by_offset(disp, _gloffset_Color4usv));
1540 }
1541
1542 static inline void SET_Color4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
1543 SET_by_offset(disp, _gloffset_Color4usv, fn);
1544 }
1545
1546 typedef void (GLAPIENTRYP _glptr_EdgeFlag)(GLboolean);
1547 #define CALL_EdgeFlag(disp, parameters) \
1548 (* GET_EdgeFlag(disp)) parameters
1549 static inline _glptr_EdgeFlag GET_EdgeFlag(struct _glapi_table *disp) {
1550 return (_glptr_EdgeFlag) (GET_by_offset(disp, _gloffset_EdgeFlag));
1551 }
1552
1553 static inline void SET_EdgeFlag(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
1554 SET_by_offset(disp, _gloffset_EdgeFlag, fn);
1555 }
1556
1557 typedef void (GLAPIENTRYP _glptr_EdgeFlagv)(const GLboolean *);
1558 #define CALL_EdgeFlagv(disp, parameters) \
1559 (* GET_EdgeFlagv(disp)) parameters
1560 static inline _glptr_EdgeFlagv GET_EdgeFlagv(struct _glapi_table *disp) {
1561 return (_glptr_EdgeFlagv) (GET_by_offset(disp, _gloffset_EdgeFlagv));
1562 }
1563
1564 static inline void SET_EdgeFlagv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLboolean *)) {
1565 SET_by_offset(disp, _gloffset_EdgeFlagv, fn);
1566 }
1567
1568 typedef void (GLAPIENTRYP _glptr_End)(void);
1569 #define CALL_End(disp, parameters) \
1570 (* GET_End(disp)) parameters
1571 static inline _glptr_End GET_End(struct _glapi_table *disp) {
1572 return (_glptr_End) (GET_by_offset(disp, _gloffset_End));
1573 }
1574
1575 static inline void SET_End(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
1576 SET_by_offset(disp, _gloffset_End, fn);
1577 }
1578
1579 typedef void (GLAPIENTRYP _glptr_Indexd)(GLdouble);
1580 #define CALL_Indexd(disp, parameters) \
1581 (* GET_Indexd(disp)) parameters
1582 static inline _glptr_Indexd GET_Indexd(struct _glapi_table *disp) {
1583 return (_glptr_Indexd) (GET_by_offset(disp, _gloffset_Indexd));
1584 }
1585
1586 static inline void SET_Indexd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
1587 SET_by_offset(disp, _gloffset_Indexd, fn);
1588 }
1589
1590 typedef void (GLAPIENTRYP _glptr_Indexdv)(const GLdouble *);
1591 #define CALL_Indexdv(disp, parameters) \
1592 (* GET_Indexdv(disp)) parameters
1593 static inline _glptr_Indexdv GET_Indexdv(struct _glapi_table *disp) {
1594 return (_glptr_Indexdv) (GET_by_offset(disp, _gloffset_Indexdv));
1595 }
1596
1597 static inline void SET_Indexdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1598 SET_by_offset(disp, _gloffset_Indexdv, fn);
1599 }
1600
1601 typedef void (GLAPIENTRYP _glptr_Indexf)(GLfloat);
1602 #define CALL_Indexf(disp, parameters) \
1603 (* GET_Indexf(disp)) parameters
1604 static inline _glptr_Indexf GET_Indexf(struct _glapi_table *disp) {
1605 return (_glptr_Indexf) (GET_by_offset(disp, _gloffset_Indexf));
1606 }
1607
1608 static inline void SET_Indexf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
1609 SET_by_offset(disp, _gloffset_Indexf, fn);
1610 }
1611
1612 typedef void (GLAPIENTRYP _glptr_Indexfv)(const GLfloat *);
1613 #define CALL_Indexfv(disp, parameters) \
1614 (* GET_Indexfv(disp)) parameters
1615 static inline _glptr_Indexfv GET_Indexfv(struct _glapi_table *disp) {
1616 return (_glptr_Indexfv) (GET_by_offset(disp, _gloffset_Indexfv));
1617 }
1618
1619 static inline void SET_Indexfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1620 SET_by_offset(disp, _gloffset_Indexfv, fn);
1621 }
1622
1623 typedef void (GLAPIENTRYP _glptr_Indexi)(GLint);
1624 #define CALL_Indexi(disp, parameters) \
1625 (* GET_Indexi(disp)) parameters
1626 static inline _glptr_Indexi GET_Indexi(struct _glapi_table *disp) {
1627 return (_glptr_Indexi) (GET_by_offset(disp, _gloffset_Indexi));
1628 }
1629
1630 static inline void SET_Indexi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
1631 SET_by_offset(disp, _gloffset_Indexi, fn);
1632 }
1633
1634 typedef void (GLAPIENTRYP _glptr_Indexiv)(const GLint *);
1635 #define CALL_Indexiv(disp, parameters) \
1636 (* GET_Indexiv(disp)) parameters
1637 static inline _glptr_Indexiv GET_Indexiv(struct _glapi_table *disp) {
1638 return (_glptr_Indexiv) (GET_by_offset(disp, _gloffset_Indexiv));
1639 }
1640
1641 static inline void SET_Indexiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
1642 SET_by_offset(disp, _gloffset_Indexiv, fn);
1643 }
1644
1645 typedef void (GLAPIENTRYP _glptr_Indexs)(GLshort);
1646 #define CALL_Indexs(disp, parameters) \
1647 (* GET_Indexs(disp)) parameters
1648 static inline _glptr_Indexs GET_Indexs(struct _glapi_table *disp) {
1649 return (_glptr_Indexs) (GET_by_offset(disp, _gloffset_Indexs));
1650 }
1651
1652 static inline void SET_Indexs(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
1653 SET_by_offset(disp, _gloffset_Indexs, fn);
1654 }
1655
1656 typedef void (GLAPIENTRYP _glptr_Indexsv)(const GLshort *);
1657 #define CALL_Indexsv(disp, parameters) \
1658 (* GET_Indexsv(disp)) parameters
1659 static inline _glptr_Indexsv GET_Indexsv(struct _glapi_table *disp) {
1660 return (_glptr_Indexsv) (GET_by_offset(disp, _gloffset_Indexsv));
1661 }
1662
1663 static inline void SET_Indexsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
1664 SET_by_offset(disp, _gloffset_Indexsv, fn);
1665 }
1666
1667 typedef void (GLAPIENTRYP _glptr_Normal3b)(GLbyte, GLbyte, GLbyte);
1668 #define CALL_Normal3b(disp, parameters) \
1669 (* GET_Normal3b(disp)) parameters
1670 static inline _glptr_Normal3b GET_Normal3b(struct _glapi_table *disp) {
1671 return (_glptr_Normal3b) (GET_by_offset(disp, _gloffset_Normal3b));
1672 }
1673
1674 static inline void SET_Normal3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
1675 SET_by_offset(disp, _gloffset_Normal3b, fn);
1676 }
1677
1678 typedef void (GLAPIENTRYP _glptr_Normal3bv)(const GLbyte *);
1679 #define CALL_Normal3bv(disp, parameters) \
1680 (* GET_Normal3bv(disp)) parameters
1681 static inline _glptr_Normal3bv GET_Normal3bv(struct _glapi_table *disp) {
1682 return (_glptr_Normal3bv) (GET_by_offset(disp, _gloffset_Normal3bv));
1683 }
1684
1685 static inline void SET_Normal3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
1686 SET_by_offset(disp, _gloffset_Normal3bv, fn);
1687 }
1688
1689 typedef void (GLAPIENTRYP _glptr_Normal3d)(GLdouble, GLdouble, GLdouble);
1690 #define CALL_Normal3d(disp, parameters) \
1691 (* GET_Normal3d(disp)) parameters
1692 static inline _glptr_Normal3d GET_Normal3d(struct _glapi_table *disp) {
1693 return (_glptr_Normal3d) (GET_by_offset(disp, _gloffset_Normal3d));
1694 }
1695
1696 static inline void SET_Normal3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
1697 SET_by_offset(disp, _gloffset_Normal3d, fn);
1698 }
1699
1700 typedef void (GLAPIENTRYP _glptr_Normal3dv)(const GLdouble *);
1701 #define CALL_Normal3dv(disp, parameters) \
1702 (* GET_Normal3dv(disp)) parameters
1703 static inline _glptr_Normal3dv GET_Normal3dv(struct _glapi_table *disp) {
1704 return (_glptr_Normal3dv) (GET_by_offset(disp, _gloffset_Normal3dv));
1705 }
1706
1707 static inline void SET_Normal3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1708 SET_by_offset(disp, _gloffset_Normal3dv, fn);
1709 }
1710
1711 typedef void (GLAPIENTRYP _glptr_Normal3f)(GLfloat, GLfloat, GLfloat);
1712 #define CALL_Normal3f(disp, parameters) \
1713 (* GET_Normal3f(disp)) parameters
1714 static inline _glptr_Normal3f GET_Normal3f(struct _glapi_table *disp) {
1715 return (_glptr_Normal3f) (GET_by_offset(disp, _gloffset_Normal3f));
1716 }
1717
1718 static inline void SET_Normal3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
1719 SET_by_offset(disp, _gloffset_Normal3f, fn);
1720 }
1721
1722 typedef void (GLAPIENTRYP _glptr_Normal3fv)(const GLfloat *);
1723 #define CALL_Normal3fv(disp, parameters) \
1724 (* GET_Normal3fv(disp)) parameters
1725 static inline _glptr_Normal3fv GET_Normal3fv(struct _glapi_table *disp) {
1726 return (_glptr_Normal3fv) (GET_by_offset(disp, _gloffset_Normal3fv));
1727 }
1728
1729 static inline void SET_Normal3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1730 SET_by_offset(disp, _gloffset_Normal3fv, fn);
1731 }
1732
1733 typedef void (GLAPIENTRYP _glptr_Normal3i)(GLint, GLint, GLint);
1734 #define CALL_Normal3i(disp, parameters) \
1735 (* GET_Normal3i(disp)) parameters
1736 static inline _glptr_Normal3i GET_Normal3i(struct _glapi_table *disp) {
1737 return (_glptr_Normal3i) (GET_by_offset(disp, _gloffset_Normal3i));
1738 }
1739
1740 static inline void SET_Normal3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
1741 SET_by_offset(disp, _gloffset_Normal3i, fn);
1742 }
1743
1744 typedef void (GLAPIENTRYP _glptr_Normal3iv)(const GLint *);
1745 #define CALL_Normal3iv(disp, parameters) \
1746 (* GET_Normal3iv(disp)) parameters
1747 static inline _glptr_Normal3iv GET_Normal3iv(struct _glapi_table *disp) {
1748 return (_glptr_Normal3iv) (GET_by_offset(disp, _gloffset_Normal3iv));
1749 }
1750
1751 static inline void SET_Normal3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
1752 SET_by_offset(disp, _gloffset_Normal3iv, fn);
1753 }
1754
1755 typedef void (GLAPIENTRYP _glptr_Normal3s)(GLshort, GLshort, GLshort);
1756 #define CALL_Normal3s(disp, parameters) \
1757 (* GET_Normal3s(disp)) parameters
1758 static inline _glptr_Normal3s GET_Normal3s(struct _glapi_table *disp) {
1759 return (_glptr_Normal3s) (GET_by_offset(disp, _gloffset_Normal3s));
1760 }
1761
1762 static inline void SET_Normal3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
1763 SET_by_offset(disp, _gloffset_Normal3s, fn);
1764 }
1765
1766 typedef void (GLAPIENTRYP _glptr_Normal3sv)(const GLshort *);
1767 #define CALL_Normal3sv(disp, parameters) \
1768 (* GET_Normal3sv(disp)) parameters
1769 static inline _glptr_Normal3sv GET_Normal3sv(struct _glapi_table *disp) {
1770 return (_glptr_Normal3sv) (GET_by_offset(disp, _gloffset_Normal3sv));
1771 }
1772
1773 static inline void SET_Normal3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
1774 SET_by_offset(disp, _gloffset_Normal3sv, fn);
1775 }
1776
1777 typedef void (GLAPIENTRYP _glptr_RasterPos2d)(GLdouble, GLdouble);
1778 #define CALL_RasterPos2d(disp, parameters) \
1779 (* GET_RasterPos2d(disp)) parameters
1780 static inline _glptr_RasterPos2d GET_RasterPos2d(struct _glapi_table *disp) {
1781 return (_glptr_RasterPos2d) (GET_by_offset(disp, _gloffset_RasterPos2d));
1782 }
1783
1784 static inline void SET_RasterPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
1785 SET_by_offset(disp, _gloffset_RasterPos2d, fn);
1786 }
1787
1788 typedef void (GLAPIENTRYP _glptr_RasterPos2dv)(const GLdouble *);
1789 #define CALL_RasterPos2dv(disp, parameters) \
1790 (* GET_RasterPos2dv(disp)) parameters
1791 static inline _glptr_RasterPos2dv GET_RasterPos2dv(struct _glapi_table *disp) {
1792 return (_glptr_RasterPos2dv) (GET_by_offset(disp, _gloffset_RasterPos2dv));
1793 }
1794
1795 static inline void SET_RasterPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1796 SET_by_offset(disp, _gloffset_RasterPos2dv, fn);
1797 }
1798
1799 typedef void (GLAPIENTRYP _glptr_RasterPos2f)(GLfloat, GLfloat);
1800 #define CALL_RasterPos2f(disp, parameters) \
1801 (* GET_RasterPos2f(disp)) parameters
1802 static inline _glptr_RasterPos2f GET_RasterPos2f(struct _glapi_table *disp) {
1803 return (_glptr_RasterPos2f) (GET_by_offset(disp, _gloffset_RasterPos2f));
1804 }
1805
1806 static inline void SET_RasterPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
1807 SET_by_offset(disp, _gloffset_RasterPos2f, fn);
1808 }
1809
1810 typedef void (GLAPIENTRYP _glptr_RasterPos2fv)(const GLfloat *);
1811 #define CALL_RasterPos2fv(disp, parameters) \
1812 (* GET_RasterPos2fv(disp)) parameters
1813 static inline _glptr_RasterPos2fv GET_RasterPos2fv(struct _glapi_table *disp) {
1814 return (_glptr_RasterPos2fv) (GET_by_offset(disp, _gloffset_RasterPos2fv));
1815 }
1816
1817 static inline void SET_RasterPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1818 SET_by_offset(disp, _gloffset_RasterPos2fv, fn);
1819 }
1820
1821 typedef void (GLAPIENTRYP _glptr_RasterPos2i)(GLint, GLint);
1822 #define CALL_RasterPos2i(disp, parameters) \
1823 (* GET_RasterPos2i(disp)) parameters
1824 static inline _glptr_RasterPos2i GET_RasterPos2i(struct _glapi_table *disp) {
1825 return (_glptr_RasterPos2i) (GET_by_offset(disp, _gloffset_RasterPos2i));
1826 }
1827
1828 static inline void SET_RasterPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
1829 SET_by_offset(disp, _gloffset_RasterPos2i, fn);
1830 }
1831
1832 typedef void (GLAPIENTRYP _glptr_RasterPos2iv)(const GLint *);
1833 #define CALL_RasterPos2iv(disp, parameters) \
1834 (* GET_RasterPos2iv(disp)) parameters
1835 static inline _glptr_RasterPos2iv GET_RasterPos2iv(struct _glapi_table *disp) {
1836 return (_glptr_RasterPos2iv) (GET_by_offset(disp, _gloffset_RasterPos2iv));
1837 }
1838
1839 static inline void SET_RasterPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
1840 SET_by_offset(disp, _gloffset_RasterPos2iv, fn);
1841 }
1842
1843 typedef void (GLAPIENTRYP _glptr_RasterPos2s)(GLshort, GLshort);
1844 #define CALL_RasterPos2s(disp, parameters) \
1845 (* GET_RasterPos2s(disp)) parameters
1846 static inline _glptr_RasterPos2s GET_RasterPos2s(struct _glapi_table *disp) {
1847 return (_glptr_RasterPos2s) (GET_by_offset(disp, _gloffset_RasterPos2s));
1848 }
1849
1850 static inline void SET_RasterPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
1851 SET_by_offset(disp, _gloffset_RasterPos2s, fn);
1852 }
1853
1854 typedef void (GLAPIENTRYP _glptr_RasterPos2sv)(const GLshort *);
1855 #define CALL_RasterPos2sv(disp, parameters) \
1856 (* GET_RasterPos2sv(disp)) parameters
1857 static inline _glptr_RasterPos2sv GET_RasterPos2sv(struct _glapi_table *disp) {
1858 return (_glptr_RasterPos2sv) (GET_by_offset(disp, _gloffset_RasterPos2sv));
1859 }
1860
1861 static inline void SET_RasterPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
1862 SET_by_offset(disp, _gloffset_RasterPos2sv, fn);
1863 }
1864
1865 typedef void (GLAPIENTRYP _glptr_RasterPos3d)(GLdouble, GLdouble, GLdouble);
1866 #define CALL_RasterPos3d(disp, parameters) \
1867 (* GET_RasterPos3d(disp)) parameters
1868 static inline _glptr_RasterPos3d GET_RasterPos3d(struct _glapi_table *disp) {
1869 return (_glptr_RasterPos3d) (GET_by_offset(disp, _gloffset_RasterPos3d));
1870 }
1871
1872 static inline void SET_RasterPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
1873 SET_by_offset(disp, _gloffset_RasterPos3d, fn);
1874 }
1875
1876 typedef void (GLAPIENTRYP _glptr_RasterPos3dv)(const GLdouble *);
1877 #define CALL_RasterPos3dv(disp, parameters) \
1878 (* GET_RasterPos3dv(disp)) parameters
1879 static inline _glptr_RasterPos3dv GET_RasterPos3dv(struct _glapi_table *disp) {
1880 return (_glptr_RasterPos3dv) (GET_by_offset(disp, _gloffset_RasterPos3dv));
1881 }
1882
1883 static inline void SET_RasterPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1884 SET_by_offset(disp, _gloffset_RasterPos3dv, fn);
1885 }
1886
1887 typedef void (GLAPIENTRYP _glptr_RasterPos3f)(GLfloat, GLfloat, GLfloat);
1888 #define CALL_RasterPos3f(disp, parameters) \
1889 (* GET_RasterPos3f(disp)) parameters
1890 static inline _glptr_RasterPos3f GET_RasterPos3f(struct _glapi_table *disp) {
1891 return (_glptr_RasterPos3f) (GET_by_offset(disp, _gloffset_RasterPos3f));
1892 }
1893
1894 static inline void SET_RasterPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
1895 SET_by_offset(disp, _gloffset_RasterPos3f, fn);
1896 }
1897
1898 typedef void (GLAPIENTRYP _glptr_RasterPos3fv)(const GLfloat *);
1899 #define CALL_RasterPos3fv(disp, parameters) \
1900 (* GET_RasterPos3fv(disp)) parameters
1901 static inline _glptr_RasterPos3fv GET_RasterPos3fv(struct _glapi_table *disp) {
1902 return (_glptr_RasterPos3fv) (GET_by_offset(disp, _gloffset_RasterPos3fv));
1903 }
1904
1905 static inline void SET_RasterPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1906 SET_by_offset(disp, _gloffset_RasterPos3fv, fn);
1907 }
1908
1909 typedef void (GLAPIENTRYP _glptr_RasterPos3i)(GLint, GLint, GLint);
1910 #define CALL_RasterPos3i(disp, parameters) \
1911 (* GET_RasterPos3i(disp)) parameters
1912 static inline _glptr_RasterPos3i GET_RasterPos3i(struct _glapi_table *disp) {
1913 return (_glptr_RasterPos3i) (GET_by_offset(disp, _gloffset_RasterPos3i));
1914 }
1915
1916 static inline void SET_RasterPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
1917 SET_by_offset(disp, _gloffset_RasterPos3i, fn);
1918 }
1919
1920 typedef void (GLAPIENTRYP _glptr_RasterPos3iv)(const GLint *);
1921 #define CALL_RasterPos3iv(disp, parameters) \
1922 (* GET_RasterPos3iv(disp)) parameters
1923 static inline _glptr_RasterPos3iv GET_RasterPos3iv(struct _glapi_table *disp) {
1924 return (_glptr_RasterPos3iv) (GET_by_offset(disp, _gloffset_RasterPos3iv));
1925 }
1926
1927 static inline void SET_RasterPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
1928 SET_by_offset(disp, _gloffset_RasterPos3iv, fn);
1929 }
1930
1931 typedef void (GLAPIENTRYP _glptr_RasterPos3s)(GLshort, GLshort, GLshort);
1932 #define CALL_RasterPos3s(disp, parameters) \
1933 (* GET_RasterPos3s(disp)) parameters
1934 static inline _glptr_RasterPos3s GET_RasterPos3s(struct _glapi_table *disp) {
1935 return (_glptr_RasterPos3s) (GET_by_offset(disp, _gloffset_RasterPos3s));
1936 }
1937
1938 static inline void SET_RasterPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
1939 SET_by_offset(disp, _gloffset_RasterPos3s, fn);
1940 }
1941
1942 typedef void (GLAPIENTRYP _glptr_RasterPos3sv)(const GLshort *);
1943 #define CALL_RasterPos3sv(disp, parameters) \
1944 (* GET_RasterPos3sv(disp)) parameters
1945 static inline _glptr_RasterPos3sv GET_RasterPos3sv(struct _glapi_table *disp) {
1946 return (_glptr_RasterPos3sv) (GET_by_offset(disp, _gloffset_RasterPos3sv));
1947 }
1948
1949 static inline void SET_RasterPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
1950 SET_by_offset(disp, _gloffset_RasterPos3sv, fn);
1951 }
1952
1953 typedef void (GLAPIENTRYP _glptr_RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble);
1954 #define CALL_RasterPos4d(disp, parameters) \
1955 (* GET_RasterPos4d(disp)) parameters
1956 static inline _glptr_RasterPos4d GET_RasterPos4d(struct _glapi_table *disp) {
1957 return (_glptr_RasterPos4d) (GET_by_offset(disp, _gloffset_RasterPos4d));
1958 }
1959
1960 static inline void SET_RasterPos4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
1961 SET_by_offset(disp, _gloffset_RasterPos4d, fn);
1962 }
1963
1964 typedef void (GLAPIENTRYP _glptr_RasterPos4dv)(const GLdouble *);
1965 #define CALL_RasterPos4dv(disp, parameters) \
1966 (* GET_RasterPos4dv(disp)) parameters
1967 static inline _glptr_RasterPos4dv GET_RasterPos4dv(struct _glapi_table *disp) {
1968 return (_glptr_RasterPos4dv) (GET_by_offset(disp, _gloffset_RasterPos4dv));
1969 }
1970
1971 static inline void SET_RasterPos4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
1972 SET_by_offset(disp, _gloffset_RasterPos4dv, fn);
1973 }
1974
1975 typedef void (GLAPIENTRYP _glptr_RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat);
1976 #define CALL_RasterPos4f(disp, parameters) \
1977 (* GET_RasterPos4f(disp)) parameters
1978 static inline _glptr_RasterPos4f GET_RasterPos4f(struct _glapi_table *disp) {
1979 return (_glptr_RasterPos4f) (GET_by_offset(disp, _gloffset_RasterPos4f));
1980 }
1981
1982 static inline void SET_RasterPos4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
1983 SET_by_offset(disp, _gloffset_RasterPos4f, fn);
1984 }
1985
1986 typedef void (GLAPIENTRYP _glptr_RasterPos4fv)(const GLfloat *);
1987 #define CALL_RasterPos4fv(disp, parameters) \
1988 (* GET_RasterPos4fv(disp)) parameters
1989 static inline _glptr_RasterPos4fv GET_RasterPos4fv(struct _glapi_table *disp) {
1990 return (_glptr_RasterPos4fv) (GET_by_offset(disp, _gloffset_RasterPos4fv));
1991 }
1992
1993 static inline void SET_RasterPos4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
1994 SET_by_offset(disp, _gloffset_RasterPos4fv, fn);
1995 }
1996
1997 typedef void (GLAPIENTRYP _glptr_RasterPos4i)(GLint, GLint, GLint, GLint);
1998 #define CALL_RasterPos4i(disp, parameters) \
1999 (* GET_RasterPos4i(disp)) parameters
2000 static inline _glptr_RasterPos4i GET_RasterPos4i(struct _glapi_table *disp) {
2001 return (_glptr_RasterPos4i) (GET_by_offset(disp, _gloffset_RasterPos4i));
2002 }
2003
2004 static inline void SET_RasterPos4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2005 SET_by_offset(disp, _gloffset_RasterPos4i, fn);
2006 }
2007
2008 typedef void (GLAPIENTRYP _glptr_RasterPos4iv)(const GLint *);
2009 #define CALL_RasterPos4iv(disp, parameters) \
2010 (* GET_RasterPos4iv(disp)) parameters
2011 static inline _glptr_RasterPos4iv GET_RasterPos4iv(struct _glapi_table *disp) {
2012 return (_glptr_RasterPos4iv) (GET_by_offset(disp, _gloffset_RasterPos4iv));
2013 }
2014
2015 static inline void SET_RasterPos4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2016 SET_by_offset(disp, _gloffset_RasterPos4iv, fn);
2017 }
2018
2019 typedef void (GLAPIENTRYP _glptr_RasterPos4s)(GLshort, GLshort, GLshort, GLshort);
2020 #define CALL_RasterPos4s(disp, parameters) \
2021 (* GET_RasterPos4s(disp)) parameters
2022 static inline _glptr_RasterPos4s GET_RasterPos4s(struct _glapi_table *disp) {
2023 return (_glptr_RasterPos4s) (GET_by_offset(disp, _gloffset_RasterPos4s));
2024 }
2025
2026 static inline void SET_RasterPos4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2027 SET_by_offset(disp, _gloffset_RasterPos4s, fn);
2028 }
2029
2030 typedef void (GLAPIENTRYP _glptr_RasterPos4sv)(const GLshort *);
2031 #define CALL_RasterPos4sv(disp, parameters) \
2032 (* GET_RasterPos4sv(disp)) parameters
2033 static inline _glptr_RasterPos4sv GET_RasterPos4sv(struct _glapi_table *disp) {
2034 return (_glptr_RasterPos4sv) (GET_by_offset(disp, _gloffset_RasterPos4sv));
2035 }
2036
2037 static inline void SET_RasterPos4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2038 SET_by_offset(disp, _gloffset_RasterPos4sv, fn);
2039 }
2040
2041 typedef void (GLAPIENTRYP _glptr_Rectd)(GLdouble, GLdouble, GLdouble, GLdouble);
2042 #define CALL_Rectd(disp, parameters) \
2043 (* GET_Rectd(disp)) parameters
2044 static inline _glptr_Rectd GET_Rectd(struct _glapi_table *disp) {
2045 return (_glptr_Rectd) (GET_by_offset(disp, _gloffset_Rectd));
2046 }
2047
2048 static inline void SET_Rectd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2049 SET_by_offset(disp, _gloffset_Rectd, fn);
2050 }
2051
2052 typedef void (GLAPIENTRYP _glptr_Rectdv)(const GLdouble *, const GLdouble *);
2053 #define CALL_Rectdv(disp, parameters) \
2054 (* GET_Rectdv(disp)) parameters
2055 static inline _glptr_Rectdv GET_Rectdv(struct _glapi_table *disp) {
2056 return (_glptr_Rectdv) (GET_by_offset(disp, _gloffset_Rectdv));
2057 }
2058
2059 static inline void SET_Rectdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *, const GLdouble *)) {
2060 SET_by_offset(disp, _gloffset_Rectdv, fn);
2061 }
2062
2063 typedef void (GLAPIENTRYP _glptr_Rectf)(GLfloat, GLfloat, GLfloat, GLfloat);
2064 #define CALL_Rectf(disp, parameters) \
2065 (* GET_Rectf(disp)) parameters
2066 static inline _glptr_Rectf GET_Rectf(struct _glapi_table *disp) {
2067 return (_glptr_Rectf) (GET_by_offset(disp, _gloffset_Rectf));
2068 }
2069
2070 static inline void SET_Rectf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2071 SET_by_offset(disp, _gloffset_Rectf, fn);
2072 }
2073
2074 typedef void (GLAPIENTRYP _glptr_Rectfv)(const GLfloat *, const GLfloat *);
2075 #define CALL_Rectfv(disp, parameters) \
2076 (* GET_Rectfv(disp)) parameters
2077 static inline _glptr_Rectfv GET_Rectfv(struct _glapi_table *disp) {
2078 return (_glptr_Rectfv) (GET_by_offset(disp, _gloffset_Rectfv));
2079 }
2080
2081 static inline void SET_Rectfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *, const GLfloat *)) {
2082 SET_by_offset(disp, _gloffset_Rectfv, fn);
2083 }
2084
2085 typedef void (GLAPIENTRYP _glptr_Recti)(GLint, GLint, GLint, GLint);
2086 #define CALL_Recti(disp, parameters) \
2087 (* GET_Recti(disp)) parameters
2088 static inline _glptr_Recti GET_Recti(struct _glapi_table *disp) {
2089 return (_glptr_Recti) (GET_by_offset(disp, _gloffset_Recti));
2090 }
2091
2092 static inline void SET_Recti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2093 SET_by_offset(disp, _gloffset_Recti, fn);
2094 }
2095
2096 typedef void (GLAPIENTRYP _glptr_Rectiv)(const GLint *, const GLint *);
2097 #define CALL_Rectiv(disp, parameters) \
2098 (* GET_Rectiv(disp)) parameters
2099 static inline _glptr_Rectiv GET_Rectiv(struct _glapi_table *disp) {
2100 return (_glptr_Rectiv) (GET_by_offset(disp, _gloffset_Rectiv));
2101 }
2102
2103 static inline void SET_Rectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *, const GLint *)) {
2104 SET_by_offset(disp, _gloffset_Rectiv, fn);
2105 }
2106
2107 typedef void (GLAPIENTRYP _glptr_Rects)(GLshort, GLshort, GLshort, GLshort);
2108 #define CALL_Rects(disp, parameters) \
2109 (* GET_Rects(disp)) parameters
2110 static inline _glptr_Rects GET_Rects(struct _glapi_table *disp) {
2111 return (_glptr_Rects) (GET_by_offset(disp, _gloffset_Rects));
2112 }
2113
2114 static inline void SET_Rects(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2115 SET_by_offset(disp, _gloffset_Rects, fn);
2116 }
2117
2118 typedef void (GLAPIENTRYP _glptr_Rectsv)(const GLshort *, const GLshort *);
2119 #define CALL_Rectsv(disp, parameters) \
2120 (* GET_Rectsv(disp)) parameters
2121 static inline _glptr_Rectsv GET_Rectsv(struct _glapi_table *disp) {
2122 return (_glptr_Rectsv) (GET_by_offset(disp, _gloffset_Rectsv));
2123 }
2124
2125 static inline void SET_Rectsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *, const GLshort *)) {
2126 SET_by_offset(disp, _gloffset_Rectsv, fn);
2127 }
2128
2129 typedef void (GLAPIENTRYP _glptr_TexCoord1d)(GLdouble);
2130 #define CALL_TexCoord1d(disp, parameters) \
2131 (* GET_TexCoord1d(disp)) parameters
2132 static inline _glptr_TexCoord1d GET_TexCoord1d(struct _glapi_table *disp) {
2133 return (_glptr_TexCoord1d) (GET_by_offset(disp, _gloffset_TexCoord1d));
2134 }
2135
2136 static inline void SET_TexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
2137 SET_by_offset(disp, _gloffset_TexCoord1d, fn);
2138 }
2139
2140 typedef void (GLAPIENTRYP _glptr_TexCoord1dv)(const GLdouble *);
2141 #define CALL_TexCoord1dv(disp, parameters) \
2142 (* GET_TexCoord1dv(disp)) parameters
2143 static inline _glptr_TexCoord1dv GET_TexCoord1dv(struct _glapi_table *disp) {
2144 return (_glptr_TexCoord1dv) (GET_by_offset(disp, _gloffset_TexCoord1dv));
2145 }
2146
2147 static inline void SET_TexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2148 SET_by_offset(disp, _gloffset_TexCoord1dv, fn);
2149 }
2150
2151 typedef void (GLAPIENTRYP _glptr_TexCoord1f)(GLfloat);
2152 #define CALL_TexCoord1f(disp, parameters) \
2153 (* GET_TexCoord1f(disp)) parameters
2154 static inline _glptr_TexCoord1f GET_TexCoord1f(struct _glapi_table *disp) {
2155 return (_glptr_TexCoord1f) (GET_by_offset(disp, _gloffset_TexCoord1f));
2156 }
2157
2158 static inline void SET_TexCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
2159 SET_by_offset(disp, _gloffset_TexCoord1f, fn);
2160 }
2161
2162 typedef void (GLAPIENTRYP _glptr_TexCoord1fv)(const GLfloat *);
2163 #define CALL_TexCoord1fv(disp, parameters) \
2164 (* GET_TexCoord1fv(disp)) parameters
2165 static inline _glptr_TexCoord1fv GET_TexCoord1fv(struct _glapi_table *disp) {
2166 return (_glptr_TexCoord1fv) (GET_by_offset(disp, _gloffset_TexCoord1fv));
2167 }
2168
2169 static inline void SET_TexCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2170 SET_by_offset(disp, _gloffset_TexCoord1fv, fn);
2171 }
2172
2173 typedef void (GLAPIENTRYP _glptr_TexCoord1i)(GLint);
2174 #define CALL_TexCoord1i(disp, parameters) \
2175 (* GET_TexCoord1i(disp)) parameters
2176 static inline _glptr_TexCoord1i GET_TexCoord1i(struct _glapi_table *disp) {
2177 return (_glptr_TexCoord1i) (GET_by_offset(disp, _gloffset_TexCoord1i));
2178 }
2179
2180 static inline void SET_TexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
2181 SET_by_offset(disp, _gloffset_TexCoord1i, fn);
2182 }
2183
2184 typedef void (GLAPIENTRYP _glptr_TexCoord1iv)(const GLint *);
2185 #define CALL_TexCoord1iv(disp, parameters) \
2186 (* GET_TexCoord1iv(disp)) parameters
2187 static inline _glptr_TexCoord1iv GET_TexCoord1iv(struct _glapi_table *disp) {
2188 return (_glptr_TexCoord1iv) (GET_by_offset(disp, _gloffset_TexCoord1iv));
2189 }
2190
2191 static inline void SET_TexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2192 SET_by_offset(disp, _gloffset_TexCoord1iv, fn);
2193 }
2194
2195 typedef void (GLAPIENTRYP _glptr_TexCoord1s)(GLshort);
2196 #define CALL_TexCoord1s(disp, parameters) \
2197 (* GET_TexCoord1s(disp)) parameters
2198 static inline _glptr_TexCoord1s GET_TexCoord1s(struct _glapi_table *disp) {
2199 return (_glptr_TexCoord1s) (GET_by_offset(disp, _gloffset_TexCoord1s));
2200 }
2201
2202 static inline void SET_TexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) {
2203 SET_by_offset(disp, _gloffset_TexCoord1s, fn);
2204 }
2205
2206 typedef void (GLAPIENTRYP _glptr_TexCoord1sv)(const GLshort *);
2207 #define CALL_TexCoord1sv(disp, parameters) \
2208 (* GET_TexCoord1sv(disp)) parameters
2209 static inline _glptr_TexCoord1sv GET_TexCoord1sv(struct _glapi_table *disp) {
2210 return (_glptr_TexCoord1sv) (GET_by_offset(disp, _gloffset_TexCoord1sv));
2211 }
2212
2213 static inline void SET_TexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2214 SET_by_offset(disp, _gloffset_TexCoord1sv, fn);
2215 }
2216
2217 typedef void (GLAPIENTRYP _glptr_TexCoord2d)(GLdouble, GLdouble);
2218 #define CALL_TexCoord2d(disp, parameters) \
2219 (* GET_TexCoord2d(disp)) parameters
2220 static inline _glptr_TexCoord2d GET_TexCoord2d(struct _glapi_table *disp) {
2221 return (_glptr_TexCoord2d) (GET_by_offset(disp, _gloffset_TexCoord2d));
2222 }
2223
2224 static inline void SET_TexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
2225 SET_by_offset(disp, _gloffset_TexCoord2d, fn);
2226 }
2227
2228 typedef void (GLAPIENTRYP _glptr_TexCoord2dv)(const GLdouble *);
2229 #define CALL_TexCoord2dv(disp, parameters) \
2230 (* GET_TexCoord2dv(disp)) parameters
2231 static inline _glptr_TexCoord2dv GET_TexCoord2dv(struct _glapi_table *disp) {
2232 return (_glptr_TexCoord2dv) (GET_by_offset(disp, _gloffset_TexCoord2dv));
2233 }
2234
2235 static inline void SET_TexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2236 SET_by_offset(disp, _gloffset_TexCoord2dv, fn);
2237 }
2238
2239 typedef void (GLAPIENTRYP _glptr_TexCoord2f)(GLfloat, GLfloat);
2240 #define CALL_TexCoord2f(disp, parameters) \
2241 (* GET_TexCoord2f(disp)) parameters
2242 static inline _glptr_TexCoord2f GET_TexCoord2f(struct _glapi_table *disp) {
2243 return (_glptr_TexCoord2f) (GET_by_offset(disp, _gloffset_TexCoord2f));
2244 }
2245
2246 static inline void SET_TexCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
2247 SET_by_offset(disp, _gloffset_TexCoord2f, fn);
2248 }
2249
2250 typedef void (GLAPIENTRYP _glptr_TexCoord2fv)(const GLfloat *);
2251 #define CALL_TexCoord2fv(disp, parameters) \
2252 (* GET_TexCoord2fv(disp)) parameters
2253 static inline _glptr_TexCoord2fv GET_TexCoord2fv(struct _glapi_table *disp) {
2254 return (_glptr_TexCoord2fv) (GET_by_offset(disp, _gloffset_TexCoord2fv));
2255 }
2256
2257 static inline void SET_TexCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2258 SET_by_offset(disp, _gloffset_TexCoord2fv, fn);
2259 }
2260
2261 typedef void (GLAPIENTRYP _glptr_TexCoord2i)(GLint, GLint);
2262 #define CALL_TexCoord2i(disp, parameters) \
2263 (* GET_TexCoord2i(disp)) parameters
2264 static inline _glptr_TexCoord2i GET_TexCoord2i(struct _glapi_table *disp) {
2265 return (_glptr_TexCoord2i) (GET_by_offset(disp, _gloffset_TexCoord2i));
2266 }
2267
2268 static inline void SET_TexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
2269 SET_by_offset(disp, _gloffset_TexCoord2i, fn);
2270 }
2271
2272 typedef void (GLAPIENTRYP _glptr_TexCoord2iv)(const GLint *);
2273 #define CALL_TexCoord2iv(disp, parameters) \
2274 (* GET_TexCoord2iv(disp)) parameters
2275 static inline _glptr_TexCoord2iv GET_TexCoord2iv(struct _glapi_table *disp) {
2276 return (_glptr_TexCoord2iv) (GET_by_offset(disp, _gloffset_TexCoord2iv));
2277 }
2278
2279 static inline void SET_TexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2280 SET_by_offset(disp, _gloffset_TexCoord2iv, fn);
2281 }
2282
2283 typedef void (GLAPIENTRYP _glptr_TexCoord2s)(GLshort, GLshort);
2284 #define CALL_TexCoord2s(disp, parameters) \
2285 (* GET_TexCoord2s(disp)) parameters
2286 static inline _glptr_TexCoord2s GET_TexCoord2s(struct _glapi_table *disp) {
2287 return (_glptr_TexCoord2s) (GET_by_offset(disp, _gloffset_TexCoord2s));
2288 }
2289
2290 static inline void SET_TexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
2291 SET_by_offset(disp, _gloffset_TexCoord2s, fn);
2292 }
2293
2294 typedef void (GLAPIENTRYP _glptr_TexCoord2sv)(const GLshort *);
2295 #define CALL_TexCoord2sv(disp, parameters) \
2296 (* GET_TexCoord2sv(disp)) parameters
2297 static inline _glptr_TexCoord2sv GET_TexCoord2sv(struct _glapi_table *disp) {
2298 return (_glptr_TexCoord2sv) (GET_by_offset(disp, _gloffset_TexCoord2sv));
2299 }
2300
2301 static inline void SET_TexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2302 SET_by_offset(disp, _gloffset_TexCoord2sv, fn);
2303 }
2304
2305 typedef void (GLAPIENTRYP _glptr_TexCoord3d)(GLdouble, GLdouble, GLdouble);
2306 #define CALL_TexCoord3d(disp, parameters) \
2307 (* GET_TexCoord3d(disp)) parameters
2308 static inline _glptr_TexCoord3d GET_TexCoord3d(struct _glapi_table *disp) {
2309 return (_glptr_TexCoord3d) (GET_by_offset(disp, _gloffset_TexCoord3d));
2310 }
2311
2312 static inline void SET_TexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2313 SET_by_offset(disp, _gloffset_TexCoord3d, fn);
2314 }
2315
2316 typedef void (GLAPIENTRYP _glptr_TexCoord3dv)(const GLdouble *);
2317 #define CALL_TexCoord3dv(disp, parameters) \
2318 (* GET_TexCoord3dv(disp)) parameters
2319 static inline _glptr_TexCoord3dv GET_TexCoord3dv(struct _glapi_table *disp) {
2320 return (_glptr_TexCoord3dv) (GET_by_offset(disp, _gloffset_TexCoord3dv));
2321 }
2322
2323 static inline void SET_TexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2324 SET_by_offset(disp, _gloffset_TexCoord3dv, fn);
2325 }
2326
2327 typedef void (GLAPIENTRYP _glptr_TexCoord3f)(GLfloat, GLfloat, GLfloat);
2328 #define CALL_TexCoord3f(disp, parameters) \
2329 (* GET_TexCoord3f(disp)) parameters
2330 static inline _glptr_TexCoord3f GET_TexCoord3f(struct _glapi_table *disp) {
2331 return (_glptr_TexCoord3f) (GET_by_offset(disp, _gloffset_TexCoord3f));
2332 }
2333
2334 static inline void SET_TexCoord3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2335 SET_by_offset(disp, _gloffset_TexCoord3f, fn);
2336 }
2337
2338 typedef void (GLAPIENTRYP _glptr_TexCoord3fv)(const GLfloat *);
2339 #define CALL_TexCoord3fv(disp, parameters) \
2340 (* GET_TexCoord3fv(disp)) parameters
2341 static inline _glptr_TexCoord3fv GET_TexCoord3fv(struct _glapi_table *disp) {
2342 return (_glptr_TexCoord3fv) (GET_by_offset(disp, _gloffset_TexCoord3fv));
2343 }
2344
2345 static inline void SET_TexCoord3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2346 SET_by_offset(disp, _gloffset_TexCoord3fv, fn);
2347 }
2348
2349 typedef void (GLAPIENTRYP _glptr_TexCoord3i)(GLint, GLint, GLint);
2350 #define CALL_TexCoord3i(disp, parameters) \
2351 (* GET_TexCoord3i(disp)) parameters
2352 static inline _glptr_TexCoord3i GET_TexCoord3i(struct _glapi_table *disp) {
2353 return (_glptr_TexCoord3i) (GET_by_offset(disp, _gloffset_TexCoord3i));
2354 }
2355
2356 static inline void SET_TexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2357 SET_by_offset(disp, _gloffset_TexCoord3i, fn);
2358 }
2359
2360 typedef void (GLAPIENTRYP _glptr_TexCoord3iv)(const GLint *);
2361 #define CALL_TexCoord3iv(disp, parameters) \
2362 (* GET_TexCoord3iv(disp)) parameters
2363 static inline _glptr_TexCoord3iv GET_TexCoord3iv(struct _glapi_table *disp) {
2364 return (_glptr_TexCoord3iv) (GET_by_offset(disp, _gloffset_TexCoord3iv));
2365 }
2366
2367 static inline void SET_TexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2368 SET_by_offset(disp, _gloffset_TexCoord3iv, fn);
2369 }
2370
2371 typedef void (GLAPIENTRYP _glptr_TexCoord3s)(GLshort, GLshort, GLshort);
2372 #define CALL_TexCoord3s(disp, parameters) \
2373 (* GET_TexCoord3s(disp)) parameters
2374 static inline _glptr_TexCoord3s GET_TexCoord3s(struct _glapi_table *disp) {
2375 return (_glptr_TexCoord3s) (GET_by_offset(disp, _gloffset_TexCoord3s));
2376 }
2377
2378 static inline void SET_TexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2379 SET_by_offset(disp, _gloffset_TexCoord3s, fn);
2380 }
2381
2382 typedef void (GLAPIENTRYP _glptr_TexCoord3sv)(const GLshort *);
2383 #define CALL_TexCoord3sv(disp, parameters) \
2384 (* GET_TexCoord3sv(disp)) parameters
2385 static inline _glptr_TexCoord3sv GET_TexCoord3sv(struct _glapi_table *disp) {
2386 return (_glptr_TexCoord3sv) (GET_by_offset(disp, _gloffset_TexCoord3sv));
2387 }
2388
2389 static inline void SET_TexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2390 SET_by_offset(disp, _gloffset_TexCoord3sv, fn);
2391 }
2392
2393 typedef void (GLAPIENTRYP _glptr_TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble);
2394 #define CALL_TexCoord4d(disp, parameters) \
2395 (* GET_TexCoord4d(disp)) parameters
2396 static inline _glptr_TexCoord4d GET_TexCoord4d(struct _glapi_table *disp) {
2397 return (_glptr_TexCoord4d) (GET_by_offset(disp, _gloffset_TexCoord4d));
2398 }
2399
2400 static inline void SET_TexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2401 SET_by_offset(disp, _gloffset_TexCoord4d, fn);
2402 }
2403
2404 typedef void (GLAPIENTRYP _glptr_TexCoord4dv)(const GLdouble *);
2405 #define CALL_TexCoord4dv(disp, parameters) \
2406 (* GET_TexCoord4dv(disp)) parameters
2407 static inline _glptr_TexCoord4dv GET_TexCoord4dv(struct _glapi_table *disp) {
2408 return (_glptr_TexCoord4dv) (GET_by_offset(disp, _gloffset_TexCoord4dv));
2409 }
2410
2411 static inline void SET_TexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2412 SET_by_offset(disp, _gloffset_TexCoord4dv, fn);
2413 }
2414
2415 typedef void (GLAPIENTRYP _glptr_TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat);
2416 #define CALL_TexCoord4f(disp, parameters) \
2417 (* GET_TexCoord4f(disp)) parameters
2418 static inline _glptr_TexCoord4f GET_TexCoord4f(struct _glapi_table *disp) {
2419 return (_glptr_TexCoord4f) (GET_by_offset(disp, _gloffset_TexCoord4f));
2420 }
2421
2422 static inline void SET_TexCoord4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2423 SET_by_offset(disp, _gloffset_TexCoord4f, fn);
2424 }
2425
2426 typedef void (GLAPIENTRYP _glptr_TexCoord4fv)(const GLfloat *);
2427 #define CALL_TexCoord4fv(disp, parameters) \
2428 (* GET_TexCoord4fv(disp)) parameters
2429 static inline _glptr_TexCoord4fv GET_TexCoord4fv(struct _glapi_table *disp) {
2430 return (_glptr_TexCoord4fv) (GET_by_offset(disp, _gloffset_TexCoord4fv));
2431 }
2432
2433 static inline void SET_TexCoord4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2434 SET_by_offset(disp, _gloffset_TexCoord4fv, fn);
2435 }
2436
2437 typedef void (GLAPIENTRYP _glptr_TexCoord4i)(GLint, GLint, GLint, GLint);
2438 #define CALL_TexCoord4i(disp, parameters) \
2439 (* GET_TexCoord4i(disp)) parameters
2440 static inline _glptr_TexCoord4i GET_TexCoord4i(struct _glapi_table *disp) {
2441 return (_glptr_TexCoord4i) (GET_by_offset(disp, _gloffset_TexCoord4i));
2442 }
2443
2444 static inline void SET_TexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2445 SET_by_offset(disp, _gloffset_TexCoord4i, fn);
2446 }
2447
2448 typedef void (GLAPIENTRYP _glptr_TexCoord4iv)(const GLint *);
2449 #define CALL_TexCoord4iv(disp, parameters) \
2450 (* GET_TexCoord4iv(disp)) parameters
2451 static inline _glptr_TexCoord4iv GET_TexCoord4iv(struct _glapi_table *disp) {
2452 return (_glptr_TexCoord4iv) (GET_by_offset(disp, _gloffset_TexCoord4iv));
2453 }
2454
2455 static inline void SET_TexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2456 SET_by_offset(disp, _gloffset_TexCoord4iv, fn);
2457 }
2458
2459 typedef void (GLAPIENTRYP _glptr_TexCoord4s)(GLshort, GLshort, GLshort, GLshort);
2460 #define CALL_TexCoord4s(disp, parameters) \
2461 (* GET_TexCoord4s(disp)) parameters
2462 static inline _glptr_TexCoord4s GET_TexCoord4s(struct _glapi_table *disp) {
2463 return (_glptr_TexCoord4s) (GET_by_offset(disp, _gloffset_TexCoord4s));
2464 }
2465
2466 static inline void SET_TexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2467 SET_by_offset(disp, _gloffset_TexCoord4s, fn);
2468 }
2469
2470 typedef void (GLAPIENTRYP _glptr_TexCoord4sv)(const GLshort *);
2471 #define CALL_TexCoord4sv(disp, parameters) \
2472 (* GET_TexCoord4sv(disp)) parameters
2473 static inline _glptr_TexCoord4sv GET_TexCoord4sv(struct _glapi_table *disp) {
2474 return (_glptr_TexCoord4sv) (GET_by_offset(disp, _gloffset_TexCoord4sv));
2475 }
2476
2477 static inline void SET_TexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2478 SET_by_offset(disp, _gloffset_TexCoord4sv, fn);
2479 }
2480
2481 typedef void (GLAPIENTRYP _glptr_Vertex2d)(GLdouble, GLdouble);
2482 #define CALL_Vertex2d(disp, parameters) \
2483 (* GET_Vertex2d(disp)) parameters
2484 static inline _glptr_Vertex2d GET_Vertex2d(struct _glapi_table *disp) {
2485 return (_glptr_Vertex2d) (GET_by_offset(disp, _gloffset_Vertex2d));
2486 }
2487
2488 static inline void SET_Vertex2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
2489 SET_by_offset(disp, _gloffset_Vertex2d, fn);
2490 }
2491
2492 typedef void (GLAPIENTRYP _glptr_Vertex2dv)(const GLdouble *);
2493 #define CALL_Vertex2dv(disp, parameters) \
2494 (* GET_Vertex2dv(disp)) parameters
2495 static inline _glptr_Vertex2dv GET_Vertex2dv(struct _glapi_table *disp) {
2496 return (_glptr_Vertex2dv) (GET_by_offset(disp, _gloffset_Vertex2dv));
2497 }
2498
2499 static inline void SET_Vertex2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2500 SET_by_offset(disp, _gloffset_Vertex2dv, fn);
2501 }
2502
2503 typedef void (GLAPIENTRYP _glptr_Vertex2f)(GLfloat, GLfloat);
2504 #define CALL_Vertex2f(disp, parameters) \
2505 (* GET_Vertex2f(disp)) parameters
2506 static inline _glptr_Vertex2f GET_Vertex2f(struct _glapi_table *disp) {
2507 return (_glptr_Vertex2f) (GET_by_offset(disp, _gloffset_Vertex2f));
2508 }
2509
2510 static inline void SET_Vertex2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
2511 SET_by_offset(disp, _gloffset_Vertex2f, fn);
2512 }
2513
2514 typedef void (GLAPIENTRYP _glptr_Vertex2fv)(const GLfloat *);
2515 #define CALL_Vertex2fv(disp, parameters) \
2516 (* GET_Vertex2fv(disp)) parameters
2517 static inline _glptr_Vertex2fv GET_Vertex2fv(struct _glapi_table *disp) {
2518 return (_glptr_Vertex2fv) (GET_by_offset(disp, _gloffset_Vertex2fv));
2519 }
2520
2521 static inline void SET_Vertex2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2522 SET_by_offset(disp, _gloffset_Vertex2fv, fn);
2523 }
2524
2525 typedef void (GLAPIENTRYP _glptr_Vertex2i)(GLint, GLint);
2526 #define CALL_Vertex2i(disp, parameters) \
2527 (* GET_Vertex2i(disp)) parameters
2528 static inline _glptr_Vertex2i GET_Vertex2i(struct _glapi_table *disp) {
2529 return (_glptr_Vertex2i) (GET_by_offset(disp, _gloffset_Vertex2i));
2530 }
2531
2532 static inline void SET_Vertex2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
2533 SET_by_offset(disp, _gloffset_Vertex2i, fn);
2534 }
2535
2536 typedef void (GLAPIENTRYP _glptr_Vertex2iv)(const GLint *);
2537 #define CALL_Vertex2iv(disp, parameters) \
2538 (* GET_Vertex2iv(disp)) parameters
2539 static inline _glptr_Vertex2iv GET_Vertex2iv(struct _glapi_table *disp) {
2540 return (_glptr_Vertex2iv) (GET_by_offset(disp, _gloffset_Vertex2iv));
2541 }
2542
2543 static inline void SET_Vertex2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2544 SET_by_offset(disp, _gloffset_Vertex2iv, fn);
2545 }
2546
2547 typedef void (GLAPIENTRYP _glptr_Vertex2s)(GLshort, GLshort);
2548 #define CALL_Vertex2s(disp, parameters) \
2549 (* GET_Vertex2s(disp)) parameters
2550 static inline _glptr_Vertex2s GET_Vertex2s(struct _glapi_table *disp) {
2551 return (_glptr_Vertex2s) (GET_by_offset(disp, _gloffset_Vertex2s));
2552 }
2553
2554 static inline void SET_Vertex2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
2555 SET_by_offset(disp, _gloffset_Vertex2s, fn);
2556 }
2557
2558 typedef void (GLAPIENTRYP _glptr_Vertex2sv)(const GLshort *);
2559 #define CALL_Vertex2sv(disp, parameters) \
2560 (* GET_Vertex2sv(disp)) parameters
2561 static inline _glptr_Vertex2sv GET_Vertex2sv(struct _glapi_table *disp) {
2562 return (_glptr_Vertex2sv) (GET_by_offset(disp, _gloffset_Vertex2sv));
2563 }
2564
2565 static inline void SET_Vertex2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2566 SET_by_offset(disp, _gloffset_Vertex2sv, fn);
2567 }
2568
2569 typedef void (GLAPIENTRYP _glptr_Vertex3d)(GLdouble, GLdouble, GLdouble);
2570 #define CALL_Vertex3d(disp, parameters) \
2571 (* GET_Vertex3d(disp)) parameters
2572 static inline _glptr_Vertex3d GET_Vertex3d(struct _glapi_table *disp) {
2573 return (_glptr_Vertex3d) (GET_by_offset(disp, _gloffset_Vertex3d));
2574 }
2575
2576 static inline void SET_Vertex3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
2577 SET_by_offset(disp, _gloffset_Vertex3d, fn);
2578 }
2579
2580 typedef void (GLAPIENTRYP _glptr_Vertex3dv)(const GLdouble *);
2581 #define CALL_Vertex3dv(disp, parameters) \
2582 (* GET_Vertex3dv(disp)) parameters
2583 static inline _glptr_Vertex3dv GET_Vertex3dv(struct _glapi_table *disp) {
2584 return (_glptr_Vertex3dv) (GET_by_offset(disp, _gloffset_Vertex3dv));
2585 }
2586
2587 static inline void SET_Vertex3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2588 SET_by_offset(disp, _gloffset_Vertex3dv, fn);
2589 }
2590
2591 typedef void (GLAPIENTRYP _glptr_Vertex3f)(GLfloat, GLfloat, GLfloat);
2592 #define CALL_Vertex3f(disp, parameters) \
2593 (* GET_Vertex3f(disp)) parameters
2594 static inline _glptr_Vertex3f GET_Vertex3f(struct _glapi_table *disp) {
2595 return (_glptr_Vertex3f) (GET_by_offset(disp, _gloffset_Vertex3f));
2596 }
2597
2598 static inline void SET_Vertex3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
2599 SET_by_offset(disp, _gloffset_Vertex3f, fn);
2600 }
2601
2602 typedef void (GLAPIENTRYP _glptr_Vertex3fv)(const GLfloat *);
2603 #define CALL_Vertex3fv(disp, parameters) \
2604 (* GET_Vertex3fv(disp)) parameters
2605 static inline _glptr_Vertex3fv GET_Vertex3fv(struct _glapi_table *disp) {
2606 return (_glptr_Vertex3fv) (GET_by_offset(disp, _gloffset_Vertex3fv));
2607 }
2608
2609 static inline void SET_Vertex3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2610 SET_by_offset(disp, _gloffset_Vertex3fv, fn);
2611 }
2612
2613 typedef void (GLAPIENTRYP _glptr_Vertex3i)(GLint, GLint, GLint);
2614 #define CALL_Vertex3i(disp, parameters) \
2615 (* GET_Vertex3i(disp)) parameters
2616 static inline _glptr_Vertex3i GET_Vertex3i(struct _glapi_table *disp) {
2617 return (_glptr_Vertex3i) (GET_by_offset(disp, _gloffset_Vertex3i));
2618 }
2619
2620 static inline void SET_Vertex3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
2621 SET_by_offset(disp, _gloffset_Vertex3i, fn);
2622 }
2623
2624 typedef void (GLAPIENTRYP _glptr_Vertex3iv)(const GLint *);
2625 #define CALL_Vertex3iv(disp, parameters) \
2626 (* GET_Vertex3iv(disp)) parameters
2627 static inline _glptr_Vertex3iv GET_Vertex3iv(struct _glapi_table *disp) {
2628 return (_glptr_Vertex3iv) (GET_by_offset(disp, _gloffset_Vertex3iv));
2629 }
2630
2631 static inline void SET_Vertex3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2632 SET_by_offset(disp, _gloffset_Vertex3iv, fn);
2633 }
2634
2635 typedef void (GLAPIENTRYP _glptr_Vertex3s)(GLshort, GLshort, GLshort);
2636 #define CALL_Vertex3s(disp, parameters) \
2637 (* GET_Vertex3s(disp)) parameters
2638 static inline _glptr_Vertex3s GET_Vertex3s(struct _glapi_table *disp) {
2639 return (_glptr_Vertex3s) (GET_by_offset(disp, _gloffset_Vertex3s));
2640 }
2641
2642 static inline void SET_Vertex3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
2643 SET_by_offset(disp, _gloffset_Vertex3s, fn);
2644 }
2645
2646 typedef void (GLAPIENTRYP _glptr_Vertex3sv)(const GLshort *);
2647 #define CALL_Vertex3sv(disp, parameters) \
2648 (* GET_Vertex3sv(disp)) parameters
2649 static inline _glptr_Vertex3sv GET_Vertex3sv(struct _glapi_table *disp) {
2650 return (_glptr_Vertex3sv) (GET_by_offset(disp, _gloffset_Vertex3sv));
2651 }
2652
2653 static inline void SET_Vertex3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2654 SET_by_offset(disp, _gloffset_Vertex3sv, fn);
2655 }
2656
2657 typedef void (GLAPIENTRYP _glptr_Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble);
2658 #define CALL_Vertex4d(disp, parameters) \
2659 (* GET_Vertex4d(disp)) parameters
2660 static inline _glptr_Vertex4d GET_Vertex4d(struct _glapi_table *disp) {
2661 return (_glptr_Vertex4d) (GET_by_offset(disp, _gloffset_Vertex4d));
2662 }
2663
2664 static inline void SET_Vertex4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
2665 SET_by_offset(disp, _gloffset_Vertex4d, fn);
2666 }
2667
2668 typedef void (GLAPIENTRYP _glptr_Vertex4dv)(const GLdouble *);
2669 #define CALL_Vertex4dv(disp, parameters) \
2670 (* GET_Vertex4dv(disp)) parameters
2671 static inline _glptr_Vertex4dv GET_Vertex4dv(struct _glapi_table *disp) {
2672 return (_glptr_Vertex4dv) (GET_by_offset(disp, _gloffset_Vertex4dv));
2673 }
2674
2675 static inline void SET_Vertex4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
2676 SET_by_offset(disp, _gloffset_Vertex4dv, fn);
2677 }
2678
2679 typedef void (GLAPIENTRYP _glptr_Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat);
2680 #define CALL_Vertex4f(disp, parameters) \
2681 (* GET_Vertex4f(disp)) parameters
2682 static inline _glptr_Vertex4f GET_Vertex4f(struct _glapi_table *disp) {
2683 return (_glptr_Vertex4f) (GET_by_offset(disp, _gloffset_Vertex4f));
2684 }
2685
2686 static inline void SET_Vertex4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
2687 SET_by_offset(disp, _gloffset_Vertex4f, fn);
2688 }
2689
2690 typedef void (GLAPIENTRYP _glptr_Vertex4fv)(const GLfloat *);
2691 #define CALL_Vertex4fv(disp, parameters) \
2692 (* GET_Vertex4fv(disp)) parameters
2693 static inline _glptr_Vertex4fv GET_Vertex4fv(struct _glapi_table *disp) {
2694 return (_glptr_Vertex4fv) (GET_by_offset(disp, _gloffset_Vertex4fv));
2695 }
2696
2697 static inline void SET_Vertex4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
2698 SET_by_offset(disp, _gloffset_Vertex4fv, fn);
2699 }
2700
2701 typedef void (GLAPIENTRYP _glptr_Vertex4i)(GLint, GLint, GLint, GLint);
2702 #define CALL_Vertex4i(disp, parameters) \
2703 (* GET_Vertex4i(disp)) parameters
2704 static inline _glptr_Vertex4i GET_Vertex4i(struct _glapi_table *disp) {
2705 return (_glptr_Vertex4i) (GET_by_offset(disp, _gloffset_Vertex4i));
2706 }
2707
2708 static inline void SET_Vertex4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
2709 SET_by_offset(disp, _gloffset_Vertex4i, fn);
2710 }
2711
2712 typedef void (GLAPIENTRYP _glptr_Vertex4iv)(const GLint *);
2713 #define CALL_Vertex4iv(disp, parameters) \
2714 (* GET_Vertex4iv(disp)) parameters
2715 static inline _glptr_Vertex4iv GET_Vertex4iv(struct _glapi_table *disp) {
2716 return (_glptr_Vertex4iv) (GET_by_offset(disp, _gloffset_Vertex4iv));
2717 }
2718
2719 static inline void SET_Vertex4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
2720 SET_by_offset(disp, _gloffset_Vertex4iv, fn);
2721 }
2722
2723 typedef void (GLAPIENTRYP _glptr_Vertex4s)(GLshort, GLshort, GLshort, GLshort);
2724 #define CALL_Vertex4s(disp, parameters) \
2725 (* GET_Vertex4s(disp)) parameters
2726 static inline _glptr_Vertex4s GET_Vertex4s(struct _glapi_table *disp) {
2727 return (_glptr_Vertex4s) (GET_by_offset(disp, _gloffset_Vertex4s));
2728 }
2729
2730 static inline void SET_Vertex4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
2731 SET_by_offset(disp, _gloffset_Vertex4s, fn);
2732 }
2733
2734 typedef void (GLAPIENTRYP _glptr_Vertex4sv)(const GLshort *);
2735 #define CALL_Vertex4sv(disp, parameters) \
2736 (* GET_Vertex4sv(disp)) parameters
2737 static inline _glptr_Vertex4sv GET_Vertex4sv(struct _glapi_table *disp) {
2738 return (_glptr_Vertex4sv) (GET_by_offset(disp, _gloffset_Vertex4sv));
2739 }
2740
2741 static inline void SET_Vertex4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
2742 SET_by_offset(disp, _gloffset_Vertex4sv, fn);
2743 }
2744
2745 typedef void (GLAPIENTRYP _glptr_ClipPlane)(GLenum, const GLdouble *);
2746 #define CALL_ClipPlane(disp, parameters) \
2747 (* GET_ClipPlane(disp)) parameters
2748 static inline _glptr_ClipPlane GET_ClipPlane(struct _glapi_table *disp) {
2749 return (_glptr_ClipPlane) (GET_by_offset(disp, _gloffset_ClipPlane));
2750 }
2751
2752 static inline void SET_ClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) {
2753 SET_by_offset(disp, _gloffset_ClipPlane, fn);
2754 }
2755
2756 typedef void (GLAPIENTRYP _glptr_ColorMaterial)(GLenum, GLenum);
2757 #define CALL_ColorMaterial(disp, parameters) \
2758 (* GET_ColorMaterial(disp)) parameters
2759 static inline _glptr_ColorMaterial GET_ColorMaterial(struct _glapi_table *disp) {
2760 return (_glptr_ColorMaterial) (GET_by_offset(disp, _gloffset_ColorMaterial));
2761 }
2762
2763 static inline void SET_ColorMaterial(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
2764 SET_by_offset(disp, _gloffset_ColorMaterial, fn);
2765 }
2766
2767 typedef void (GLAPIENTRYP _glptr_CullFace)(GLenum);
2768 #define CALL_CullFace(disp, parameters) \
2769 (* GET_CullFace(disp)) parameters
2770 static inline _glptr_CullFace GET_CullFace(struct _glapi_table *disp) {
2771 return (_glptr_CullFace) (GET_by_offset(disp, _gloffset_CullFace));
2772 }
2773
2774 static inline void SET_CullFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
2775 SET_by_offset(disp, _gloffset_CullFace, fn);
2776 }
2777
2778 typedef void (GLAPIENTRYP _glptr_Fogf)(GLenum, GLfloat);
2779 #define CALL_Fogf(disp, parameters) \
2780 (* GET_Fogf(disp)) parameters
2781 static inline _glptr_Fogf GET_Fogf(struct _glapi_table *disp) {
2782 return (_glptr_Fogf) (GET_by_offset(disp, _gloffset_Fogf));
2783 }
2784
2785 static inline void SET_Fogf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
2786 SET_by_offset(disp, _gloffset_Fogf, fn);
2787 }
2788
2789 typedef void (GLAPIENTRYP _glptr_Fogfv)(GLenum, const GLfloat *);
2790 #define CALL_Fogfv(disp, parameters) \
2791 (* GET_Fogfv(disp)) parameters
2792 static inline _glptr_Fogfv GET_Fogfv(struct _glapi_table *disp) {
2793 return (_glptr_Fogfv) (GET_by_offset(disp, _gloffset_Fogfv));
2794 }
2795
2796 static inline void SET_Fogfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
2797 SET_by_offset(disp, _gloffset_Fogfv, fn);
2798 }
2799
2800 typedef void (GLAPIENTRYP _glptr_Fogi)(GLenum, GLint);
2801 #define CALL_Fogi(disp, parameters) \
2802 (* GET_Fogi(disp)) parameters
2803 static inline _glptr_Fogi GET_Fogi(struct _glapi_table *disp) {
2804 return (_glptr_Fogi) (GET_by_offset(disp, _gloffset_Fogi));
2805 }
2806
2807 static inline void SET_Fogi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
2808 SET_by_offset(disp, _gloffset_Fogi, fn);
2809 }
2810
2811 typedef void (GLAPIENTRYP _glptr_Fogiv)(GLenum, const GLint *);
2812 #define CALL_Fogiv(disp, parameters) \
2813 (* GET_Fogiv(disp)) parameters
2814 static inline _glptr_Fogiv GET_Fogiv(struct _glapi_table *disp) {
2815 return (_glptr_Fogiv) (GET_by_offset(disp, _gloffset_Fogiv));
2816 }
2817
2818 static inline void SET_Fogiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
2819 SET_by_offset(disp, _gloffset_Fogiv, fn);
2820 }
2821
2822 typedef void (GLAPIENTRYP _glptr_FrontFace)(GLenum);
2823 #define CALL_FrontFace(disp, parameters) \
2824 (* GET_FrontFace(disp)) parameters
2825 static inline _glptr_FrontFace GET_FrontFace(struct _glapi_table *disp) {
2826 return (_glptr_FrontFace) (GET_by_offset(disp, _gloffset_FrontFace));
2827 }
2828
2829 static inline void SET_FrontFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
2830 SET_by_offset(disp, _gloffset_FrontFace, fn);
2831 }
2832
2833 typedef void (GLAPIENTRYP _glptr_Hint)(GLenum, GLenum);
2834 #define CALL_Hint(disp, parameters) \
2835 (* GET_Hint(disp)) parameters
2836 static inline _glptr_Hint GET_Hint(struct _glapi_table *disp) {
2837 return (_glptr_Hint) (GET_by_offset(disp, _gloffset_Hint));
2838 }
2839
2840 static inline void SET_Hint(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
2841 SET_by_offset(disp, _gloffset_Hint, fn);
2842 }
2843
2844 typedef void (GLAPIENTRYP _glptr_Lightf)(GLenum, GLenum, GLfloat);
2845 #define CALL_Lightf(disp, parameters) \
2846 (* GET_Lightf(disp)) parameters
2847 static inline _glptr_Lightf GET_Lightf(struct _glapi_table *disp) {
2848 return (_glptr_Lightf) (GET_by_offset(disp, _gloffset_Lightf));
2849 }
2850
2851 static inline void SET_Lightf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
2852 SET_by_offset(disp, _gloffset_Lightf, fn);
2853 }
2854
2855 typedef void (GLAPIENTRYP _glptr_Lightfv)(GLenum, GLenum, const GLfloat *);
2856 #define CALL_Lightfv(disp, parameters) \
2857 (* GET_Lightfv(disp)) parameters
2858 static inline _glptr_Lightfv GET_Lightfv(struct _glapi_table *disp) {
2859 return (_glptr_Lightfv) (GET_by_offset(disp, _gloffset_Lightfv));
2860 }
2861
2862 static inline void SET_Lightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
2863 SET_by_offset(disp, _gloffset_Lightfv, fn);
2864 }
2865
2866 typedef void (GLAPIENTRYP _glptr_Lighti)(GLenum, GLenum, GLint);
2867 #define CALL_Lighti(disp, parameters) \
2868 (* GET_Lighti(disp)) parameters
2869 static inline _glptr_Lighti GET_Lighti(struct _glapi_table *disp) {
2870 return (_glptr_Lighti) (GET_by_offset(disp, _gloffset_Lighti));
2871 }
2872
2873 static inline void SET_Lighti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
2874 SET_by_offset(disp, _gloffset_Lighti, fn);
2875 }
2876
2877 typedef void (GLAPIENTRYP _glptr_Lightiv)(GLenum, GLenum, const GLint *);
2878 #define CALL_Lightiv(disp, parameters) \
2879 (* GET_Lightiv(disp)) parameters
2880 static inline _glptr_Lightiv GET_Lightiv(struct _glapi_table *disp) {
2881 return (_glptr_Lightiv) (GET_by_offset(disp, _gloffset_Lightiv));
2882 }
2883
2884 static inline void SET_Lightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
2885 SET_by_offset(disp, _gloffset_Lightiv, fn);
2886 }
2887
2888 typedef void (GLAPIENTRYP _glptr_LightModelf)(GLenum, GLfloat);
2889 #define CALL_LightModelf(disp, parameters) \
2890 (* GET_LightModelf(disp)) parameters
2891 static inline _glptr_LightModelf GET_LightModelf(struct _glapi_table *disp) {
2892 return (_glptr_LightModelf) (GET_by_offset(disp, _gloffset_LightModelf));
2893 }
2894
2895 static inline void SET_LightModelf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
2896 SET_by_offset(disp, _gloffset_LightModelf, fn);
2897 }
2898
2899 typedef void (GLAPIENTRYP _glptr_LightModelfv)(GLenum, const GLfloat *);
2900 #define CALL_LightModelfv(disp, parameters) \
2901 (* GET_LightModelfv(disp)) parameters
2902 static inline _glptr_LightModelfv GET_LightModelfv(struct _glapi_table *disp) {
2903 return (_glptr_LightModelfv) (GET_by_offset(disp, _gloffset_LightModelfv));
2904 }
2905
2906 static inline void SET_LightModelfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
2907 SET_by_offset(disp, _gloffset_LightModelfv, fn);
2908 }
2909
2910 typedef void (GLAPIENTRYP _glptr_LightModeli)(GLenum, GLint);
2911 #define CALL_LightModeli(disp, parameters) \
2912 (* GET_LightModeli(disp)) parameters
2913 static inline _glptr_LightModeli GET_LightModeli(struct _glapi_table *disp) {
2914 return (_glptr_LightModeli) (GET_by_offset(disp, _gloffset_LightModeli));
2915 }
2916
2917 static inline void SET_LightModeli(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
2918 SET_by_offset(disp, _gloffset_LightModeli, fn);
2919 }
2920
2921 typedef void (GLAPIENTRYP _glptr_LightModeliv)(GLenum, const GLint *);
2922 #define CALL_LightModeliv(disp, parameters) \
2923 (* GET_LightModeliv(disp)) parameters
2924 static inline _glptr_LightModeliv GET_LightModeliv(struct _glapi_table *disp) {
2925 return (_glptr_LightModeliv) (GET_by_offset(disp, _gloffset_LightModeliv));
2926 }
2927
2928 static inline void SET_LightModeliv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
2929 SET_by_offset(disp, _gloffset_LightModeliv, fn);
2930 }
2931
2932 typedef void (GLAPIENTRYP _glptr_LineStipple)(GLint, GLushort);
2933 #define CALL_LineStipple(disp, parameters) \
2934 (* GET_LineStipple(disp)) parameters
2935 static inline _glptr_LineStipple GET_LineStipple(struct _glapi_table *disp) {
2936 return (_glptr_LineStipple) (GET_by_offset(disp, _gloffset_LineStipple));
2937 }
2938
2939 static inline void SET_LineStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLushort)) {
2940 SET_by_offset(disp, _gloffset_LineStipple, fn);
2941 }
2942
2943 typedef void (GLAPIENTRYP _glptr_LineWidth)(GLfloat);
2944 #define CALL_LineWidth(disp, parameters) \
2945 (* GET_LineWidth(disp)) parameters
2946 static inline _glptr_LineWidth GET_LineWidth(struct _glapi_table *disp) {
2947 return (_glptr_LineWidth) (GET_by_offset(disp, _gloffset_LineWidth));
2948 }
2949
2950 static inline void SET_LineWidth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
2951 SET_by_offset(disp, _gloffset_LineWidth, fn);
2952 }
2953
2954 typedef void (GLAPIENTRYP _glptr_Materialf)(GLenum, GLenum, GLfloat);
2955 #define CALL_Materialf(disp, parameters) \
2956 (* GET_Materialf(disp)) parameters
2957 static inline _glptr_Materialf GET_Materialf(struct _glapi_table *disp) {
2958 return (_glptr_Materialf) (GET_by_offset(disp, _gloffset_Materialf));
2959 }
2960
2961 static inline void SET_Materialf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
2962 SET_by_offset(disp, _gloffset_Materialf, fn);
2963 }
2964
2965 typedef void (GLAPIENTRYP _glptr_Materialfv)(GLenum, GLenum, const GLfloat *);
2966 #define CALL_Materialfv(disp, parameters) \
2967 (* GET_Materialfv(disp)) parameters
2968 static inline _glptr_Materialfv GET_Materialfv(struct _glapi_table *disp) {
2969 return (_glptr_Materialfv) (GET_by_offset(disp, _gloffset_Materialfv));
2970 }
2971
2972 static inline void SET_Materialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
2973 SET_by_offset(disp, _gloffset_Materialfv, fn);
2974 }
2975
2976 typedef void (GLAPIENTRYP _glptr_Materiali)(GLenum, GLenum, GLint);
2977 #define CALL_Materiali(disp, parameters) \
2978 (* GET_Materiali(disp)) parameters
2979 static inline _glptr_Materiali GET_Materiali(struct _glapi_table *disp) {
2980 return (_glptr_Materiali) (GET_by_offset(disp, _gloffset_Materiali));
2981 }
2982
2983 static inline void SET_Materiali(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
2984 SET_by_offset(disp, _gloffset_Materiali, fn);
2985 }
2986
2987 typedef void (GLAPIENTRYP _glptr_Materialiv)(GLenum, GLenum, const GLint *);
2988 #define CALL_Materialiv(disp, parameters) \
2989 (* GET_Materialiv(disp)) parameters
2990 static inline _glptr_Materialiv GET_Materialiv(struct _glapi_table *disp) {
2991 return (_glptr_Materialiv) (GET_by_offset(disp, _gloffset_Materialiv));
2992 }
2993
2994 static inline void SET_Materialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
2995 SET_by_offset(disp, _gloffset_Materialiv, fn);
2996 }
2997
2998 typedef void (GLAPIENTRYP _glptr_PointSize)(GLfloat);
2999 #define CALL_PointSize(disp, parameters) \
3000 (* GET_PointSize(disp)) parameters
3001 static inline _glptr_PointSize GET_PointSize(struct _glapi_table *disp) {
3002 return (_glptr_PointSize) (GET_by_offset(disp, _gloffset_PointSize));
3003 }
3004
3005 static inline void SET_PointSize(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3006 SET_by_offset(disp, _gloffset_PointSize, fn);
3007 }
3008
3009 typedef void (GLAPIENTRYP _glptr_PolygonMode)(GLenum, GLenum);
3010 #define CALL_PolygonMode(disp, parameters) \
3011 (* GET_PolygonMode(disp)) parameters
3012 static inline _glptr_PolygonMode GET_PolygonMode(struct _glapi_table *disp) {
3013 return (_glptr_PolygonMode) (GET_by_offset(disp, _gloffset_PolygonMode));
3014 }
3015
3016 static inline void SET_PolygonMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3017 SET_by_offset(disp, _gloffset_PolygonMode, fn);
3018 }
3019
3020 typedef void (GLAPIENTRYP _glptr_PolygonStipple)(const GLubyte *);
3021 #define CALL_PolygonStipple(disp, parameters) \
3022 (* GET_PolygonStipple(disp)) parameters
3023 static inline _glptr_PolygonStipple GET_PolygonStipple(struct _glapi_table *disp) {
3024 return (_glptr_PolygonStipple) (GET_by_offset(disp, _gloffset_PolygonStipple));
3025 }
3026
3027 static inline void SET_PolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
3028 SET_by_offset(disp, _gloffset_PolygonStipple, fn);
3029 }
3030
3031 typedef void (GLAPIENTRYP _glptr_Scissor)(GLint, GLint, GLsizei, GLsizei);
3032 #define CALL_Scissor(disp, parameters) \
3033 (* GET_Scissor(disp)) parameters
3034 static inline _glptr_Scissor GET_Scissor(struct _glapi_table *disp) {
3035 return (_glptr_Scissor) (GET_by_offset(disp, _gloffset_Scissor));
3036 }
3037
3038 static inline void SET_Scissor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
3039 SET_by_offset(disp, _gloffset_Scissor, fn);
3040 }
3041
3042 typedef void (GLAPIENTRYP _glptr_ShadeModel)(GLenum);
3043 #define CALL_ShadeModel(disp, parameters) \
3044 (* GET_ShadeModel(disp)) parameters
3045 static inline _glptr_ShadeModel GET_ShadeModel(struct _glapi_table *disp) {
3046 return (_glptr_ShadeModel) (GET_by_offset(disp, _gloffset_ShadeModel));
3047 }
3048
3049 static inline void SET_ShadeModel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3050 SET_by_offset(disp, _gloffset_ShadeModel, fn);
3051 }
3052
3053 typedef void (GLAPIENTRYP _glptr_TexParameterf)(GLenum, GLenum, GLfloat);
3054 #define CALL_TexParameterf(disp, parameters) \
3055 (* GET_TexParameterf(disp)) parameters
3056 static inline _glptr_TexParameterf GET_TexParameterf(struct _glapi_table *disp) {
3057 return (_glptr_TexParameterf) (GET_by_offset(disp, _gloffset_TexParameterf));
3058 }
3059
3060 static inline void SET_TexParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3061 SET_by_offset(disp, _gloffset_TexParameterf, fn);
3062 }
3063
3064 typedef void (GLAPIENTRYP _glptr_TexParameterfv)(GLenum, GLenum, const GLfloat *);
3065 #define CALL_TexParameterfv(disp, parameters) \
3066 (* GET_TexParameterfv(disp)) parameters
3067 static inline _glptr_TexParameterfv GET_TexParameterfv(struct _glapi_table *disp) {
3068 return (_glptr_TexParameterfv) (GET_by_offset(disp, _gloffset_TexParameterfv));
3069 }
3070
3071 static inline void SET_TexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3072 SET_by_offset(disp, _gloffset_TexParameterfv, fn);
3073 }
3074
3075 typedef void (GLAPIENTRYP _glptr_TexParameteri)(GLenum, GLenum, GLint);
3076 #define CALL_TexParameteri(disp, parameters) \
3077 (* GET_TexParameteri(disp)) parameters
3078 static inline _glptr_TexParameteri GET_TexParameteri(struct _glapi_table *disp) {
3079 return (_glptr_TexParameteri) (GET_by_offset(disp, _gloffset_TexParameteri));
3080 }
3081
3082 static inline void SET_TexParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3083 SET_by_offset(disp, _gloffset_TexParameteri, fn);
3084 }
3085
3086 typedef void (GLAPIENTRYP _glptr_TexParameteriv)(GLenum, GLenum, const GLint *);
3087 #define CALL_TexParameteriv(disp, parameters) \
3088 (* GET_TexParameteriv(disp)) parameters
3089 static inline _glptr_TexParameteriv GET_TexParameteriv(struct _glapi_table *disp) {
3090 return (_glptr_TexParameteriv) (GET_by_offset(disp, _gloffset_TexParameteriv));
3091 }
3092
3093 static inline void SET_TexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3094 SET_by_offset(disp, _gloffset_TexParameteriv, fn);
3095 }
3096
3097 typedef void (GLAPIENTRYP _glptr_TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
3098 #define CALL_TexImage1D(disp, parameters) \
3099 (* GET_TexImage1D(disp)) parameters
3100 static inline _glptr_TexImage1D GET_TexImage1D(struct _glapi_table *disp) {
3101 return (_glptr_TexImage1D) (GET_by_offset(disp, _gloffset_TexImage1D));
3102 }
3103
3104 static inline void SET_TexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
3105 SET_by_offset(disp, _gloffset_TexImage1D, fn);
3106 }
3107
3108 typedef void (GLAPIENTRYP _glptr_TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
3109 #define CALL_TexImage2D(disp, parameters) \
3110 (* GET_TexImage2D(disp)) parameters
3111 static inline _glptr_TexImage2D GET_TexImage2D(struct _glapi_table *disp) {
3112 return (_glptr_TexImage2D) (GET_by_offset(disp, _gloffset_TexImage2D));
3113 }
3114
3115 static inline void SET_TexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
3116 SET_by_offset(disp, _gloffset_TexImage2D, fn);
3117 }
3118
3119 typedef void (GLAPIENTRYP _glptr_TexEnvf)(GLenum, GLenum, GLfloat);
3120 #define CALL_TexEnvf(disp, parameters) \
3121 (* GET_TexEnvf(disp)) parameters
3122 static inline _glptr_TexEnvf GET_TexEnvf(struct _glapi_table *disp) {
3123 return (_glptr_TexEnvf) (GET_by_offset(disp, _gloffset_TexEnvf));
3124 }
3125
3126 static inline void SET_TexEnvf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3127 SET_by_offset(disp, _gloffset_TexEnvf, fn);
3128 }
3129
3130 typedef void (GLAPIENTRYP _glptr_TexEnvfv)(GLenum, GLenum, const GLfloat *);
3131 #define CALL_TexEnvfv(disp, parameters) \
3132 (* GET_TexEnvfv(disp)) parameters
3133 static inline _glptr_TexEnvfv GET_TexEnvfv(struct _glapi_table *disp) {
3134 return (_glptr_TexEnvfv) (GET_by_offset(disp, _gloffset_TexEnvfv));
3135 }
3136
3137 static inline void SET_TexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3138 SET_by_offset(disp, _gloffset_TexEnvfv, fn);
3139 }
3140
3141 typedef void (GLAPIENTRYP _glptr_TexEnvi)(GLenum, GLenum, GLint);
3142 #define CALL_TexEnvi(disp, parameters) \
3143 (* GET_TexEnvi(disp)) parameters
3144 static inline _glptr_TexEnvi GET_TexEnvi(struct _glapi_table *disp) {
3145 return (_glptr_TexEnvi) (GET_by_offset(disp, _gloffset_TexEnvi));
3146 }
3147
3148 static inline void SET_TexEnvi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3149 SET_by_offset(disp, _gloffset_TexEnvi, fn);
3150 }
3151
3152 typedef void (GLAPIENTRYP _glptr_TexEnviv)(GLenum, GLenum, const GLint *);
3153 #define CALL_TexEnviv(disp, parameters) \
3154 (* GET_TexEnviv(disp)) parameters
3155 static inline _glptr_TexEnviv GET_TexEnviv(struct _glapi_table *disp) {
3156 return (_glptr_TexEnviv) (GET_by_offset(disp, _gloffset_TexEnviv));
3157 }
3158
3159 static inline void SET_TexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3160 SET_by_offset(disp, _gloffset_TexEnviv, fn);
3161 }
3162
3163 typedef void (GLAPIENTRYP _glptr_TexGend)(GLenum, GLenum, GLdouble);
3164 #define CALL_TexGend(disp, parameters) \
3165 (* GET_TexGend(disp)) parameters
3166 static inline _glptr_TexGend GET_TexGend(struct _glapi_table *disp) {
3167 return (_glptr_TexGend) (GET_by_offset(disp, _gloffset_TexGend));
3168 }
3169
3170 static inline void SET_TexGend(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble)) {
3171 SET_by_offset(disp, _gloffset_TexGend, fn);
3172 }
3173
3174 typedef void (GLAPIENTRYP _glptr_TexGendv)(GLenum, GLenum, const GLdouble *);
3175 #define CALL_TexGendv(disp, parameters) \
3176 (* GET_TexGendv(disp)) parameters
3177 static inline _glptr_TexGendv GET_TexGendv(struct _glapi_table *disp) {
3178 return (_glptr_TexGendv) (GET_by_offset(disp, _gloffset_TexGendv));
3179 }
3180
3181 static inline void SET_TexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLdouble *)) {
3182 SET_by_offset(disp, _gloffset_TexGendv, fn);
3183 }
3184
3185 typedef void (GLAPIENTRYP _glptr_TexGenf)(GLenum, GLenum, GLfloat);
3186 #define CALL_TexGenf(disp, parameters) \
3187 (* GET_TexGenf(disp)) parameters
3188 static inline _glptr_TexGenf GET_TexGenf(struct _glapi_table *disp) {
3189 return (_glptr_TexGenf) (GET_by_offset(disp, _gloffset_TexGenf));
3190 }
3191
3192 static inline void SET_TexGenf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
3193 SET_by_offset(disp, _gloffset_TexGenf, fn);
3194 }
3195
3196 typedef void (GLAPIENTRYP _glptr_TexGenfv)(GLenum, GLenum, const GLfloat *);
3197 #define CALL_TexGenfv(disp, parameters) \
3198 (* GET_TexGenfv(disp)) parameters
3199 static inline _glptr_TexGenfv GET_TexGenfv(struct _glapi_table *disp) {
3200 return (_glptr_TexGenfv) (GET_by_offset(disp, _gloffset_TexGenfv));
3201 }
3202
3203 static inline void SET_TexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
3204 SET_by_offset(disp, _gloffset_TexGenfv, fn);
3205 }
3206
3207 typedef void (GLAPIENTRYP _glptr_TexGeni)(GLenum, GLenum, GLint);
3208 #define CALL_TexGeni(disp, parameters) \
3209 (* GET_TexGeni(disp)) parameters
3210 static inline _glptr_TexGeni GET_TexGeni(struct _glapi_table *disp) {
3211 return (_glptr_TexGeni) (GET_by_offset(disp, _gloffset_TexGeni));
3212 }
3213
3214 static inline void SET_TexGeni(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
3215 SET_by_offset(disp, _gloffset_TexGeni, fn);
3216 }
3217
3218 typedef void (GLAPIENTRYP _glptr_TexGeniv)(GLenum, GLenum, const GLint *);
3219 #define CALL_TexGeniv(disp, parameters) \
3220 (* GET_TexGeniv(disp)) parameters
3221 static inline _glptr_TexGeniv GET_TexGeniv(struct _glapi_table *disp) {
3222 return (_glptr_TexGeniv) (GET_by_offset(disp, _gloffset_TexGeniv));
3223 }
3224
3225 static inline void SET_TexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
3226 SET_by_offset(disp, _gloffset_TexGeniv, fn);
3227 }
3228
3229 typedef void (GLAPIENTRYP _glptr_FeedbackBuffer)(GLsizei, GLenum, GLfloat *);
3230 #define CALL_FeedbackBuffer(disp, parameters) \
3231 (* GET_FeedbackBuffer(disp)) parameters
3232 static inline _glptr_FeedbackBuffer GET_FeedbackBuffer(struct _glapi_table *disp) {
3233 return (_glptr_FeedbackBuffer) (GET_by_offset(disp, _gloffset_FeedbackBuffer));
3234 }
3235
3236 static inline void SET_FeedbackBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, GLfloat *)) {
3237 SET_by_offset(disp, _gloffset_FeedbackBuffer, fn);
3238 }
3239
3240 typedef void (GLAPIENTRYP _glptr_SelectBuffer)(GLsizei, GLuint *);
3241 #define CALL_SelectBuffer(disp, parameters) \
3242 (* GET_SelectBuffer(disp)) parameters
3243 static inline _glptr_SelectBuffer GET_SelectBuffer(struct _glapi_table *disp) {
3244 return (_glptr_SelectBuffer) (GET_by_offset(disp, _gloffset_SelectBuffer));
3245 }
3246
3247 static inline void SET_SelectBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
3248 SET_by_offset(disp, _gloffset_SelectBuffer, fn);
3249 }
3250
3251 typedef GLint (GLAPIENTRYP _glptr_RenderMode)(GLenum);
3252 #define CALL_RenderMode(disp, parameters) \
3253 (* GET_RenderMode(disp)) parameters
3254 static inline _glptr_RenderMode GET_RenderMode(struct _glapi_table *disp) {
3255 return (_glptr_RenderMode) (GET_by_offset(disp, _gloffset_RenderMode));
3256 }
3257
3258 static inline void SET_RenderMode(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLenum)) {
3259 SET_by_offset(disp, _gloffset_RenderMode, fn);
3260 }
3261
3262 typedef void (GLAPIENTRYP _glptr_InitNames)(void);
3263 #define CALL_InitNames(disp, parameters) \
3264 (* GET_InitNames(disp)) parameters
3265 static inline _glptr_InitNames GET_InitNames(struct _glapi_table *disp) {
3266 return (_glptr_InitNames) (GET_by_offset(disp, _gloffset_InitNames));
3267 }
3268
3269 static inline void SET_InitNames(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
3270 SET_by_offset(disp, _gloffset_InitNames, fn);
3271 }
3272
3273 typedef void (GLAPIENTRYP _glptr_LoadName)(GLuint);
3274 #define CALL_LoadName(disp, parameters) \
3275 (* GET_LoadName(disp)) parameters
3276 static inline _glptr_LoadName GET_LoadName(struct _glapi_table *disp) {
3277 return (_glptr_LoadName) (GET_by_offset(disp, _gloffset_LoadName));
3278 }
3279
3280 static inline void SET_LoadName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
3281 SET_by_offset(disp, _gloffset_LoadName, fn);
3282 }
3283
3284 typedef void (GLAPIENTRYP _glptr_PassThrough)(GLfloat);
3285 #define CALL_PassThrough(disp, parameters) \
3286 (* GET_PassThrough(disp)) parameters
3287 static inline _glptr_PassThrough GET_PassThrough(struct _glapi_table *disp) {
3288 return (_glptr_PassThrough) (GET_by_offset(disp, _gloffset_PassThrough));
3289 }
3290
3291 static inline void SET_PassThrough(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3292 SET_by_offset(disp, _gloffset_PassThrough, fn);
3293 }
3294
3295 typedef void (GLAPIENTRYP _glptr_PopName)(void);
3296 #define CALL_PopName(disp, parameters) \
3297 (* GET_PopName(disp)) parameters
3298 static inline _glptr_PopName GET_PopName(struct _glapi_table *disp) {
3299 return (_glptr_PopName) (GET_by_offset(disp, _gloffset_PopName));
3300 }
3301
3302 static inline void SET_PopName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
3303 SET_by_offset(disp, _gloffset_PopName, fn);
3304 }
3305
3306 typedef void (GLAPIENTRYP _glptr_PushName)(GLuint);
3307 #define CALL_PushName(disp, parameters) \
3308 (* GET_PushName(disp)) parameters
3309 static inline _glptr_PushName GET_PushName(struct _glapi_table *disp) {
3310 return (_glptr_PushName) (GET_by_offset(disp, _gloffset_PushName));
3311 }
3312
3313 static inline void SET_PushName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
3314 SET_by_offset(disp, _gloffset_PushName, fn);
3315 }
3316
3317 typedef void (GLAPIENTRYP _glptr_DrawBuffer)(GLenum);
3318 #define CALL_DrawBuffer(disp, parameters) \
3319 (* GET_DrawBuffer(disp)) parameters
3320 static inline _glptr_DrawBuffer GET_DrawBuffer(struct _glapi_table *disp) {
3321 return (_glptr_DrawBuffer) (GET_by_offset(disp, _gloffset_DrawBuffer));
3322 }
3323
3324 static inline void SET_DrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3325 SET_by_offset(disp, _gloffset_DrawBuffer, fn);
3326 }
3327
3328 typedef void (GLAPIENTRYP _glptr_Clear)(GLbitfield);
3329 #define CALL_Clear(disp, parameters) \
3330 (* GET_Clear(disp)) parameters
3331 static inline _glptr_Clear GET_Clear(struct _glapi_table *disp) {
3332 return (_glptr_Clear) (GET_by_offset(disp, _gloffset_Clear));
3333 }
3334
3335 static inline void SET_Clear(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
3336 SET_by_offset(disp, _gloffset_Clear, fn);
3337 }
3338
3339 typedef void (GLAPIENTRYP _glptr_ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat);
3340 #define CALL_ClearAccum(disp, parameters) \
3341 (* GET_ClearAccum(disp)) parameters
3342 static inline _glptr_ClearAccum GET_ClearAccum(struct _glapi_table *disp) {
3343 return (_glptr_ClearAccum) (GET_by_offset(disp, _gloffset_ClearAccum));
3344 }
3345
3346 static inline void SET_ClearAccum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
3347 SET_by_offset(disp, _gloffset_ClearAccum, fn);
3348 }
3349
3350 typedef void (GLAPIENTRYP _glptr_ClearIndex)(GLfloat);
3351 #define CALL_ClearIndex(disp, parameters) \
3352 (* GET_ClearIndex(disp)) parameters
3353 static inline _glptr_ClearIndex GET_ClearIndex(struct _glapi_table *disp) {
3354 return (_glptr_ClearIndex) (GET_by_offset(disp, _gloffset_ClearIndex));
3355 }
3356
3357 static inline void SET_ClearIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3358 SET_by_offset(disp, _gloffset_ClearIndex, fn);
3359 }
3360
3361 typedef void (GLAPIENTRYP _glptr_ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
3362 #define CALL_ClearColor(disp, parameters) \
3363 (* GET_ClearColor(disp)) parameters
3364 static inline _glptr_ClearColor GET_ClearColor(struct _glapi_table *disp) {
3365 return (_glptr_ClearColor) (GET_by_offset(disp, _gloffset_ClearColor));
3366 }
3367
3368 static inline void SET_ClearColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
3369 SET_by_offset(disp, _gloffset_ClearColor, fn);
3370 }
3371
3372 typedef void (GLAPIENTRYP _glptr_ClearStencil)(GLint);
3373 #define CALL_ClearStencil(disp, parameters) \
3374 (* GET_ClearStencil(disp)) parameters
3375 static inline _glptr_ClearStencil GET_ClearStencil(struct _glapi_table *disp) {
3376 return (_glptr_ClearStencil) (GET_by_offset(disp, _gloffset_ClearStencil));
3377 }
3378
3379 static inline void SET_ClearStencil(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
3380 SET_by_offset(disp, _gloffset_ClearStencil, fn);
3381 }
3382
3383 typedef void (GLAPIENTRYP _glptr_ClearDepth)(GLclampd);
3384 #define CALL_ClearDepth(disp, parameters) \
3385 (* GET_ClearDepth(disp)) parameters
3386 static inline _glptr_ClearDepth GET_ClearDepth(struct _glapi_table *disp) {
3387 return (_glptr_ClearDepth) (GET_by_offset(disp, _gloffset_ClearDepth));
3388 }
3389
3390 static inline void SET_ClearDepth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd)) {
3391 SET_by_offset(disp, _gloffset_ClearDepth, fn);
3392 }
3393
3394 typedef void (GLAPIENTRYP _glptr_StencilMask)(GLuint);
3395 #define CALL_StencilMask(disp, parameters) \
3396 (* GET_StencilMask(disp)) parameters
3397 static inline _glptr_StencilMask GET_StencilMask(struct _glapi_table *disp) {
3398 return (_glptr_StencilMask) (GET_by_offset(disp, _gloffset_StencilMask));
3399 }
3400
3401 static inline void SET_StencilMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
3402 SET_by_offset(disp, _gloffset_StencilMask, fn);
3403 }
3404
3405 typedef void (GLAPIENTRYP _glptr_ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean);
3406 #define CALL_ColorMask(disp, parameters) \
3407 (* GET_ColorMask(disp)) parameters
3408 static inline _glptr_ColorMask GET_ColorMask(struct _glapi_table *disp) {
3409 return (_glptr_ColorMask) (GET_by_offset(disp, _gloffset_ColorMask));
3410 }
3411
3412 static inline void SET_ColorMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean, GLboolean, GLboolean, GLboolean)) {
3413 SET_by_offset(disp, _gloffset_ColorMask, fn);
3414 }
3415
3416 typedef void (GLAPIENTRYP _glptr_DepthMask)(GLboolean);
3417 #define CALL_DepthMask(disp, parameters) \
3418 (* GET_DepthMask(disp)) parameters
3419 static inline _glptr_DepthMask GET_DepthMask(struct _glapi_table *disp) {
3420 return (_glptr_DepthMask) (GET_by_offset(disp, _gloffset_DepthMask));
3421 }
3422
3423 static inline void SET_DepthMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) {
3424 SET_by_offset(disp, _gloffset_DepthMask, fn);
3425 }
3426
3427 typedef void (GLAPIENTRYP _glptr_IndexMask)(GLuint);
3428 #define CALL_IndexMask(disp, parameters) \
3429 (* GET_IndexMask(disp)) parameters
3430 static inline _glptr_IndexMask GET_IndexMask(struct _glapi_table *disp) {
3431 return (_glptr_IndexMask) (GET_by_offset(disp, _gloffset_IndexMask));
3432 }
3433
3434 static inline void SET_IndexMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
3435 SET_by_offset(disp, _gloffset_IndexMask, fn);
3436 }
3437
3438 typedef void (GLAPIENTRYP _glptr_Accum)(GLenum, GLfloat);
3439 #define CALL_Accum(disp, parameters) \
3440 (* GET_Accum(disp)) parameters
3441 static inline _glptr_Accum GET_Accum(struct _glapi_table *disp) {
3442 return (_glptr_Accum) (GET_by_offset(disp, _gloffset_Accum));
3443 }
3444
3445 static inline void SET_Accum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3446 SET_by_offset(disp, _gloffset_Accum, fn);
3447 }
3448
3449 typedef void (GLAPIENTRYP _glptr_Disable)(GLenum);
3450 #define CALL_Disable(disp, parameters) \
3451 (* GET_Disable(disp)) parameters
3452 static inline _glptr_Disable GET_Disable(struct _glapi_table *disp) {
3453 return (_glptr_Disable) (GET_by_offset(disp, _gloffset_Disable));
3454 }
3455
3456 static inline void SET_Disable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3457 SET_by_offset(disp, _gloffset_Disable, fn);
3458 }
3459
3460 typedef void (GLAPIENTRYP _glptr_Enable)(GLenum);
3461 #define CALL_Enable(disp, parameters) \
3462 (* GET_Enable(disp)) parameters
3463 static inline _glptr_Enable GET_Enable(struct _glapi_table *disp) {
3464 return (_glptr_Enable) (GET_by_offset(disp, _gloffset_Enable));
3465 }
3466
3467 static inline void SET_Enable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3468 SET_by_offset(disp, _gloffset_Enable, fn);
3469 }
3470
3471 typedef void (GLAPIENTRYP _glptr_Finish)(void);
3472 #define CALL_Finish(disp, parameters) \
3473 (* GET_Finish(disp)) parameters
3474 static inline _glptr_Finish GET_Finish(struct _glapi_table *disp) {
3475 return (_glptr_Finish) (GET_by_offset(disp, _gloffset_Finish));
3476 }
3477
3478 static inline void SET_Finish(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
3479 SET_by_offset(disp, _gloffset_Finish, fn);
3480 }
3481
3482 typedef void (GLAPIENTRYP _glptr_Flush)(void);
3483 #define CALL_Flush(disp, parameters) \
3484 (* GET_Flush(disp)) parameters
3485 static inline _glptr_Flush GET_Flush(struct _glapi_table *disp) {
3486 return (_glptr_Flush) (GET_by_offset(disp, _gloffset_Flush));
3487 }
3488
3489 static inline void SET_Flush(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
3490 SET_by_offset(disp, _gloffset_Flush, fn);
3491 }
3492
3493 typedef void (GLAPIENTRYP _glptr_PopAttrib)(void);
3494 #define CALL_PopAttrib(disp, parameters) \
3495 (* GET_PopAttrib(disp)) parameters
3496 static inline _glptr_PopAttrib GET_PopAttrib(struct _glapi_table *disp) {
3497 return (_glptr_PopAttrib) (GET_by_offset(disp, _gloffset_PopAttrib));
3498 }
3499
3500 static inline void SET_PopAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
3501 SET_by_offset(disp, _gloffset_PopAttrib, fn);
3502 }
3503
3504 typedef void (GLAPIENTRYP _glptr_PushAttrib)(GLbitfield);
3505 #define CALL_PushAttrib(disp, parameters) \
3506 (* GET_PushAttrib(disp)) parameters
3507 static inline _glptr_PushAttrib GET_PushAttrib(struct _glapi_table *disp) {
3508 return (_glptr_PushAttrib) (GET_by_offset(disp, _gloffset_PushAttrib));
3509 }
3510
3511 static inline void SET_PushAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
3512 SET_by_offset(disp, _gloffset_PushAttrib, fn);
3513 }
3514
3515 typedef void (GLAPIENTRYP _glptr_Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
3516 #define CALL_Map1d(disp, parameters) \
3517 (* GET_Map1d(disp)) parameters
3518 static inline _glptr_Map1d GET_Map1d(struct _glapi_table *disp) {
3519 return (_glptr_Map1d) (GET_by_offset(disp, _gloffset_Map1d));
3520 }
3521
3522 static inline void SET_Map1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
3523 SET_by_offset(disp, _gloffset_Map1d, fn);
3524 }
3525
3526 typedef void (GLAPIENTRYP _glptr_Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
3527 #define CALL_Map1f(disp, parameters) \
3528 (* GET_Map1f(disp)) parameters
3529 static inline _glptr_Map1f GET_Map1f(struct _glapi_table *disp) {
3530 return (_glptr_Map1f) (GET_by_offset(disp, _gloffset_Map1f));
3531 }
3532
3533 static inline void SET_Map1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
3534 SET_by_offset(disp, _gloffset_Map1f, fn);
3535 }
3536
3537 typedef void (GLAPIENTRYP _glptr_Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
3538 #define CALL_Map2d(disp, parameters) \
3539 (* GET_Map2d(disp)) parameters
3540 static inline _glptr_Map2d GET_Map2d(struct _glapi_table *disp) {
3541 return (_glptr_Map2d) (GET_by_offset(disp, _gloffset_Map2d));
3542 }
3543
3544 static inline void SET_Map2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) {
3545 SET_by_offset(disp, _gloffset_Map2d, fn);
3546 }
3547
3548 typedef void (GLAPIENTRYP _glptr_Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
3549 #define CALL_Map2f(disp, parameters) \
3550 (* GET_Map2f(disp)) parameters
3551 static inline _glptr_Map2f GET_Map2f(struct _glapi_table *disp) {
3552 return (_glptr_Map2f) (GET_by_offset(disp, _gloffset_Map2f));
3553 }
3554
3555 static inline void SET_Map2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) {
3556 SET_by_offset(disp, _gloffset_Map2f, fn);
3557 }
3558
3559 typedef void (GLAPIENTRYP _glptr_MapGrid1d)(GLint, GLdouble, GLdouble);
3560 #define CALL_MapGrid1d(disp, parameters) \
3561 (* GET_MapGrid1d(disp)) parameters
3562 static inline _glptr_MapGrid1d GET_MapGrid1d(struct _glapi_table *disp) {
3563 return (_glptr_MapGrid1d) (GET_by_offset(disp, _gloffset_MapGrid1d));
3564 }
3565
3566 static inline void SET_MapGrid1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) {
3567 SET_by_offset(disp, _gloffset_MapGrid1d, fn);
3568 }
3569
3570 typedef void (GLAPIENTRYP _glptr_MapGrid1f)(GLint, GLfloat, GLfloat);
3571 #define CALL_MapGrid1f(disp, parameters) \
3572 (* GET_MapGrid1f(disp)) parameters
3573 static inline _glptr_MapGrid1f GET_MapGrid1f(struct _glapi_table *disp) {
3574 return (_glptr_MapGrid1f) (GET_by_offset(disp, _gloffset_MapGrid1f));
3575 }
3576
3577 static inline void SET_MapGrid1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) {
3578 SET_by_offset(disp, _gloffset_MapGrid1f, fn);
3579 }
3580
3581 typedef void (GLAPIENTRYP _glptr_MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
3582 #define CALL_MapGrid2d(disp, parameters) \
3583 (* GET_MapGrid2d(disp)) parameters
3584 static inline _glptr_MapGrid2d GET_MapGrid2d(struct _glapi_table *disp) {
3585 return (_glptr_MapGrid2d) (GET_by_offset(disp, _gloffset_MapGrid2d));
3586 }
3587
3588 static inline void SET_MapGrid2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble)) {
3589 SET_by_offset(disp, _gloffset_MapGrid2d, fn);
3590 }
3591
3592 typedef void (GLAPIENTRYP _glptr_MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
3593 #define CALL_MapGrid2f(disp, parameters) \
3594 (* GET_MapGrid2f(disp)) parameters
3595 static inline _glptr_MapGrid2f GET_MapGrid2f(struct _glapi_table *disp) {
3596 return (_glptr_MapGrid2f) (GET_by_offset(disp, _gloffset_MapGrid2f));
3597 }
3598
3599 static inline void SET_MapGrid2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat)) {
3600 SET_by_offset(disp, _gloffset_MapGrid2f, fn);
3601 }
3602
3603 typedef void (GLAPIENTRYP _glptr_EvalCoord1d)(GLdouble);
3604 #define CALL_EvalCoord1d(disp, parameters) \
3605 (* GET_EvalCoord1d(disp)) parameters
3606 static inline _glptr_EvalCoord1d GET_EvalCoord1d(struct _glapi_table *disp) {
3607 return (_glptr_EvalCoord1d) (GET_by_offset(disp, _gloffset_EvalCoord1d));
3608 }
3609
3610 static inline void SET_EvalCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
3611 SET_by_offset(disp, _gloffset_EvalCoord1d, fn);
3612 }
3613
3614 typedef void (GLAPIENTRYP _glptr_EvalCoord1dv)(const GLdouble *);
3615 #define CALL_EvalCoord1dv(disp, parameters) \
3616 (* GET_EvalCoord1dv(disp)) parameters
3617 static inline _glptr_EvalCoord1dv GET_EvalCoord1dv(struct _glapi_table *disp) {
3618 return (_glptr_EvalCoord1dv) (GET_by_offset(disp, _gloffset_EvalCoord1dv));
3619 }
3620
3621 static inline void SET_EvalCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3622 SET_by_offset(disp, _gloffset_EvalCoord1dv, fn);
3623 }
3624
3625 typedef void (GLAPIENTRYP _glptr_EvalCoord1f)(GLfloat);
3626 #define CALL_EvalCoord1f(disp, parameters) \
3627 (* GET_EvalCoord1f(disp)) parameters
3628 static inline _glptr_EvalCoord1f GET_EvalCoord1f(struct _glapi_table *disp) {
3629 return (_glptr_EvalCoord1f) (GET_by_offset(disp, _gloffset_EvalCoord1f));
3630 }
3631
3632 static inline void SET_EvalCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
3633 SET_by_offset(disp, _gloffset_EvalCoord1f, fn);
3634 }
3635
3636 typedef void (GLAPIENTRYP _glptr_EvalCoord1fv)(const GLfloat *);
3637 #define CALL_EvalCoord1fv(disp, parameters) \
3638 (* GET_EvalCoord1fv(disp)) parameters
3639 static inline _glptr_EvalCoord1fv GET_EvalCoord1fv(struct _glapi_table *disp) {
3640 return (_glptr_EvalCoord1fv) (GET_by_offset(disp, _gloffset_EvalCoord1fv));
3641 }
3642
3643 static inline void SET_EvalCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3644 SET_by_offset(disp, _gloffset_EvalCoord1fv, fn);
3645 }
3646
3647 typedef void (GLAPIENTRYP _glptr_EvalCoord2d)(GLdouble, GLdouble);
3648 #define CALL_EvalCoord2d(disp, parameters) \
3649 (* GET_EvalCoord2d(disp)) parameters
3650 static inline _glptr_EvalCoord2d GET_EvalCoord2d(struct _glapi_table *disp) {
3651 return (_glptr_EvalCoord2d) (GET_by_offset(disp, _gloffset_EvalCoord2d));
3652 }
3653
3654 static inline void SET_EvalCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
3655 SET_by_offset(disp, _gloffset_EvalCoord2d, fn);
3656 }
3657
3658 typedef void (GLAPIENTRYP _glptr_EvalCoord2dv)(const GLdouble *);
3659 #define CALL_EvalCoord2dv(disp, parameters) \
3660 (* GET_EvalCoord2dv(disp)) parameters
3661 static inline _glptr_EvalCoord2dv GET_EvalCoord2dv(struct _glapi_table *disp) {
3662 return (_glptr_EvalCoord2dv) (GET_by_offset(disp, _gloffset_EvalCoord2dv));
3663 }
3664
3665 static inline void SET_EvalCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
3666 SET_by_offset(disp, _gloffset_EvalCoord2dv, fn);
3667 }
3668
3669 typedef void (GLAPIENTRYP _glptr_EvalCoord2f)(GLfloat, GLfloat);
3670 #define CALL_EvalCoord2f(disp, parameters) \
3671 (* GET_EvalCoord2f(disp)) parameters
3672 static inline _glptr_EvalCoord2f GET_EvalCoord2f(struct _glapi_table *disp) {
3673 return (_glptr_EvalCoord2f) (GET_by_offset(disp, _gloffset_EvalCoord2f));
3674 }
3675
3676 static inline void SET_EvalCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
3677 SET_by_offset(disp, _gloffset_EvalCoord2f, fn);
3678 }
3679
3680 typedef void (GLAPIENTRYP _glptr_EvalCoord2fv)(const GLfloat *);
3681 #define CALL_EvalCoord2fv(disp, parameters) \
3682 (* GET_EvalCoord2fv(disp)) parameters
3683 static inline _glptr_EvalCoord2fv GET_EvalCoord2fv(struct _glapi_table *disp) {
3684 return (_glptr_EvalCoord2fv) (GET_by_offset(disp, _gloffset_EvalCoord2fv));
3685 }
3686
3687 static inline void SET_EvalCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
3688 SET_by_offset(disp, _gloffset_EvalCoord2fv, fn);
3689 }
3690
3691 typedef void (GLAPIENTRYP _glptr_EvalMesh1)(GLenum, GLint, GLint);
3692 #define CALL_EvalMesh1(disp, parameters) \
3693 (* GET_EvalMesh1(disp)) parameters
3694 static inline _glptr_EvalMesh1 GET_EvalMesh1(struct _glapi_table *disp) {
3695 return (_glptr_EvalMesh1) (GET_by_offset(disp, _gloffset_EvalMesh1));
3696 }
3697
3698 static inline void SET_EvalMesh1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) {
3699 SET_by_offset(disp, _gloffset_EvalMesh1, fn);
3700 }
3701
3702 typedef void (GLAPIENTRYP _glptr_EvalPoint1)(GLint);
3703 #define CALL_EvalPoint1(disp, parameters) \
3704 (* GET_EvalPoint1(disp)) parameters
3705 static inline _glptr_EvalPoint1 GET_EvalPoint1(struct _glapi_table *disp) {
3706 return (_glptr_EvalPoint1) (GET_by_offset(disp, _gloffset_EvalPoint1));
3707 }
3708
3709 static inline void SET_EvalPoint1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
3710 SET_by_offset(disp, _gloffset_EvalPoint1, fn);
3711 }
3712
3713 typedef void (GLAPIENTRYP _glptr_EvalMesh2)(GLenum, GLint, GLint, GLint, GLint);
3714 #define CALL_EvalMesh2(disp, parameters) \
3715 (* GET_EvalMesh2(disp)) parameters
3716 static inline _glptr_EvalMesh2 GET_EvalMesh2(struct _glapi_table *disp) {
3717 return (_glptr_EvalMesh2) (GET_by_offset(disp, _gloffset_EvalMesh2));
3718 }
3719
3720 static inline void SET_EvalMesh2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) {
3721 SET_by_offset(disp, _gloffset_EvalMesh2, fn);
3722 }
3723
3724 typedef void (GLAPIENTRYP _glptr_EvalPoint2)(GLint, GLint);
3725 #define CALL_EvalPoint2(disp, parameters) \
3726 (* GET_EvalPoint2(disp)) parameters
3727 static inline _glptr_EvalPoint2 GET_EvalPoint2(struct _glapi_table *disp) {
3728 return (_glptr_EvalPoint2) (GET_by_offset(disp, _gloffset_EvalPoint2));
3729 }
3730
3731 static inline void SET_EvalPoint2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
3732 SET_by_offset(disp, _gloffset_EvalPoint2, fn);
3733 }
3734
3735 typedef void (GLAPIENTRYP _glptr_AlphaFunc)(GLenum, GLclampf);
3736 #define CALL_AlphaFunc(disp, parameters) \
3737 (* GET_AlphaFunc(disp)) parameters
3738 static inline _glptr_AlphaFunc GET_AlphaFunc(struct _glapi_table *disp) {
3739 return (_glptr_AlphaFunc) (GET_by_offset(disp, _gloffset_AlphaFunc));
3740 }
3741
3742 static inline void SET_AlphaFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampf)) {
3743 SET_by_offset(disp, _gloffset_AlphaFunc, fn);
3744 }
3745
3746 typedef void (GLAPIENTRYP _glptr_BlendFunc)(GLenum, GLenum);
3747 #define CALL_BlendFunc(disp, parameters) \
3748 (* GET_BlendFunc(disp)) parameters
3749 static inline _glptr_BlendFunc GET_BlendFunc(struct _glapi_table *disp) {
3750 return (_glptr_BlendFunc) (GET_by_offset(disp, _gloffset_BlendFunc));
3751 }
3752
3753 static inline void SET_BlendFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
3754 SET_by_offset(disp, _gloffset_BlendFunc, fn);
3755 }
3756
3757 typedef void (GLAPIENTRYP _glptr_LogicOp)(GLenum);
3758 #define CALL_LogicOp(disp, parameters) \
3759 (* GET_LogicOp(disp)) parameters
3760 static inline _glptr_LogicOp GET_LogicOp(struct _glapi_table *disp) {
3761 return (_glptr_LogicOp) (GET_by_offset(disp, _gloffset_LogicOp));
3762 }
3763
3764 static inline void SET_LogicOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3765 SET_by_offset(disp, _gloffset_LogicOp, fn);
3766 }
3767
3768 typedef void (GLAPIENTRYP _glptr_StencilFunc)(GLenum, GLint, GLuint);
3769 #define CALL_StencilFunc(disp, parameters) \
3770 (* GET_StencilFunc(disp)) parameters
3771 static inline _glptr_StencilFunc GET_StencilFunc(struct _glapi_table *disp) {
3772 return (_glptr_StencilFunc) (GET_by_offset(disp, _gloffset_StencilFunc));
3773 }
3774
3775 static inline void SET_StencilFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint)) {
3776 SET_by_offset(disp, _gloffset_StencilFunc, fn);
3777 }
3778
3779 typedef void (GLAPIENTRYP _glptr_StencilOp)(GLenum, GLenum, GLenum);
3780 #define CALL_StencilOp(disp, parameters) \
3781 (* GET_StencilOp(disp)) parameters
3782 static inline _glptr_StencilOp GET_StencilOp(struct _glapi_table *disp) {
3783 return (_glptr_StencilOp) (GET_by_offset(disp, _gloffset_StencilOp));
3784 }
3785
3786 static inline void SET_StencilOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum)) {
3787 SET_by_offset(disp, _gloffset_StencilOp, fn);
3788 }
3789
3790 typedef void (GLAPIENTRYP _glptr_DepthFunc)(GLenum);
3791 #define CALL_DepthFunc(disp, parameters) \
3792 (* GET_DepthFunc(disp)) parameters
3793 static inline _glptr_DepthFunc GET_DepthFunc(struct _glapi_table *disp) {
3794 return (_glptr_DepthFunc) (GET_by_offset(disp, _gloffset_DepthFunc));
3795 }
3796
3797 static inline void SET_DepthFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3798 SET_by_offset(disp, _gloffset_DepthFunc, fn);
3799 }
3800
3801 typedef void (GLAPIENTRYP _glptr_PixelZoom)(GLfloat, GLfloat);
3802 #define CALL_PixelZoom(disp, parameters) \
3803 (* GET_PixelZoom(disp)) parameters
3804 static inline _glptr_PixelZoom GET_PixelZoom(struct _glapi_table *disp) {
3805 return (_glptr_PixelZoom) (GET_by_offset(disp, _gloffset_PixelZoom));
3806 }
3807
3808 static inline void SET_PixelZoom(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
3809 SET_by_offset(disp, _gloffset_PixelZoom, fn);
3810 }
3811
3812 typedef void (GLAPIENTRYP _glptr_PixelTransferf)(GLenum, GLfloat);
3813 #define CALL_PixelTransferf(disp, parameters) \
3814 (* GET_PixelTransferf(disp)) parameters
3815 static inline _glptr_PixelTransferf GET_PixelTransferf(struct _glapi_table *disp) {
3816 return (_glptr_PixelTransferf) (GET_by_offset(disp, _gloffset_PixelTransferf));
3817 }
3818
3819 static inline void SET_PixelTransferf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3820 SET_by_offset(disp, _gloffset_PixelTransferf, fn);
3821 }
3822
3823 typedef void (GLAPIENTRYP _glptr_PixelTransferi)(GLenum, GLint);
3824 #define CALL_PixelTransferi(disp, parameters) \
3825 (* GET_PixelTransferi(disp)) parameters
3826 static inline _glptr_PixelTransferi GET_PixelTransferi(struct _glapi_table *disp) {
3827 return (_glptr_PixelTransferi) (GET_by_offset(disp, _gloffset_PixelTransferi));
3828 }
3829
3830 static inline void SET_PixelTransferi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
3831 SET_by_offset(disp, _gloffset_PixelTransferi, fn);
3832 }
3833
3834 typedef void (GLAPIENTRYP _glptr_PixelStoref)(GLenum, GLfloat);
3835 #define CALL_PixelStoref(disp, parameters) \
3836 (* GET_PixelStoref(disp)) parameters
3837 static inline _glptr_PixelStoref GET_PixelStoref(struct _glapi_table *disp) {
3838 return (_glptr_PixelStoref) (GET_by_offset(disp, _gloffset_PixelStoref));
3839 }
3840
3841 static inline void SET_PixelStoref(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
3842 SET_by_offset(disp, _gloffset_PixelStoref, fn);
3843 }
3844
3845 typedef void (GLAPIENTRYP _glptr_PixelStorei)(GLenum, GLint);
3846 #define CALL_PixelStorei(disp, parameters) \
3847 (* GET_PixelStorei(disp)) parameters
3848 static inline _glptr_PixelStorei GET_PixelStorei(struct _glapi_table *disp) {
3849 return (_glptr_PixelStorei) (GET_by_offset(disp, _gloffset_PixelStorei));
3850 }
3851
3852 static inline void SET_PixelStorei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
3853 SET_by_offset(disp, _gloffset_PixelStorei, fn);
3854 }
3855
3856 typedef void (GLAPIENTRYP _glptr_PixelMapfv)(GLenum, GLsizei, const GLfloat *);
3857 #define CALL_PixelMapfv(disp, parameters) \
3858 (* GET_PixelMapfv(disp)) parameters
3859 static inline _glptr_PixelMapfv GET_PixelMapfv(struct _glapi_table *disp) {
3860 return (_glptr_PixelMapfv) (GET_by_offset(disp, _gloffset_PixelMapfv));
3861 }
3862
3863 static inline void SET_PixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLfloat *)) {
3864 SET_by_offset(disp, _gloffset_PixelMapfv, fn);
3865 }
3866
3867 typedef void (GLAPIENTRYP _glptr_PixelMapuiv)(GLenum, GLsizei, const GLuint *);
3868 #define CALL_PixelMapuiv(disp, parameters) \
3869 (* GET_PixelMapuiv(disp)) parameters
3870 static inline _glptr_PixelMapuiv GET_PixelMapuiv(struct _glapi_table *disp) {
3871 return (_glptr_PixelMapuiv) (GET_by_offset(disp, _gloffset_PixelMapuiv));
3872 }
3873
3874 static inline void SET_PixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) {
3875 SET_by_offset(disp, _gloffset_PixelMapuiv, fn);
3876 }
3877
3878 typedef void (GLAPIENTRYP _glptr_PixelMapusv)(GLenum, GLsizei, const GLushort *);
3879 #define CALL_PixelMapusv(disp, parameters) \
3880 (* GET_PixelMapusv(disp)) parameters
3881 static inline _glptr_PixelMapusv GET_PixelMapusv(struct _glapi_table *disp) {
3882 return (_glptr_PixelMapusv) (GET_by_offset(disp, _gloffset_PixelMapusv));
3883 }
3884
3885 static inline void SET_PixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLushort *)) {
3886 SET_by_offset(disp, _gloffset_PixelMapusv, fn);
3887 }
3888
3889 typedef void (GLAPIENTRYP _glptr_ReadBuffer)(GLenum);
3890 #define CALL_ReadBuffer(disp, parameters) \
3891 (* GET_ReadBuffer(disp)) parameters
3892 static inline _glptr_ReadBuffer GET_ReadBuffer(struct _glapi_table *disp) {
3893 return (_glptr_ReadBuffer) (GET_by_offset(disp, _gloffset_ReadBuffer));
3894 }
3895
3896 static inline void SET_ReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
3897 SET_by_offset(disp, _gloffset_ReadBuffer, fn);
3898 }
3899
3900 typedef void (GLAPIENTRYP _glptr_CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum);
3901 #define CALL_CopyPixels(disp, parameters) \
3902 (* GET_CopyPixels(disp)) parameters
3903 static inline _glptr_CopyPixels GET_CopyPixels(struct _glapi_table *disp) {
3904 return (_glptr_CopyPixels) (GET_by_offset(disp, _gloffset_CopyPixels));
3905 }
3906
3907 static inline void SET_CopyPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum)) {
3908 SET_by_offset(disp, _gloffset_CopyPixels, fn);
3909 }
3910
3911 typedef void (GLAPIENTRYP _glptr_ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
3912 #define CALL_ReadPixels(disp, parameters) \
3913 (* GET_ReadPixels(disp)) parameters
3914 static inline _glptr_ReadPixels GET_ReadPixels(struct _glapi_table *disp) {
3915 return (_glptr_ReadPixels) (GET_by_offset(disp, _gloffset_ReadPixels));
3916 }
3917
3918 static inline void SET_ReadPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *)) {
3919 SET_by_offset(disp, _gloffset_ReadPixels, fn);
3920 }
3921
3922 typedef void (GLAPIENTRYP _glptr_DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
3923 #define CALL_DrawPixels(disp, parameters) \
3924 (* GET_DrawPixels(disp)) parameters
3925 static inline _glptr_DrawPixels GET_DrawPixels(struct _glapi_table *disp) {
3926 return (_glptr_DrawPixels) (GET_by_offset(disp, _gloffset_DrawPixels));
3927 }
3928
3929 static inline void SET_DrawPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
3930 SET_by_offset(disp, _gloffset_DrawPixels, fn);
3931 }
3932
3933 typedef void (GLAPIENTRYP _glptr_GetBooleanv)(GLenum, GLboolean *);
3934 #define CALL_GetBooleanv(disp, parameters) \
3935 (* GET_GetBooleanv(disp)) parameters
3936 static inline _glptr_GetBooleanv GET_GetBooleanv(struct _glapi_table *disp) {
3937 return (_glptr_GetBooleanv) (GET_by_offset(disp, _gloffset_GetBooleanv));
3938 }
3939
3940 static inline void SET_GetBooleanv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean *)) {
3941 SET_by_offset(disp, _gloffset_GetBooleanv, fn);
3942 }
3943
3944 typedef void (GLAPIENTRYP _glptr_GetClipPlane)(GLenum, GLdouble *);
3945 #define CALL_GetClipPlane(disp, parameters) \
3946 (* GET_GetClipPlane(disp)) parameters
3947 static inline _glptr_GetClipPlane GET_GetClipPlane(struct _glapi_table *disp) {
3948 return (_glptr_GetClipPlane) (GET_by_offset(disp, _gloffset_GetClipPlane));
3949 }
3950
3951 static inline void SET_GetClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
3952 SET_by_offset(disp, _gloffset_GetClipPlane, fn);
3953 }
3954
3955 typedef void (GLAPIENTRYP _glptr_GetDoublev)(GLenum, GLdouble *);
3956 #define CALL_GetDoublev(disp, parameters) \
3957 (* GET_GetDoublev(disp)) parameters
3958 static inline _glptr_GetDoublev GET_GetDoublev(struct _glapi_table *disp) {
3959 return (_glptr_GetDoublev) (GET_by_offset(disp, _gloffset_GetDoublev));
3960 }
3961
3962 static inline void SET_GetDoublev(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) {
3963 SET_by_offset(disp, _gloffset_GetDoublev, fn);
3964 }
3965
3966 typedef GLenum (GLAPIENTRYP _glptr_GetError)(void);
3967 #define CALL_GetError(disp, parameters) \
3968 (* GET_GetError(disp)) parameters
3969 static inline _glptr_GetError GET_GetError(struct _glapi_table *disp) {
3970 return (_glptr_GetError) (GET_by_offset(disp, _gloffset_GetError));
3971 }
3972
3973 static inline void SET_GetError(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) {
3974 SET_by_offset(disp, _gloffset_GetError, fn);
3975 }
3976
3977 typedef void (GLAPIENTRYP _glptr_GetFloatv)(GLenum, GLfloat *);
3978 #define CALL_GetFloatv(disp, parameters) \
3979 (* GET_GetFloatv(disp)) parameters
3980 static inline _glptr_GetFloatv GET_GetFloatv(struct _glapi_table *disp) {
3981 return (_glptr_GetFloatv) (GET_by_offset(disp, _gloffset_GetFloatv));
3982 }
3983
3984 static inline void SET_GetFloatv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
3985 SET_by_offset(disp, _gloffset_GetFloatv, fn);
3986 }
3987
3988 typedef void (GLAPIENTRYP _glptr_GetIntegerv)(GLenum, GLint *);
3989 #define CALL_GetIntegerv(disp, parameters) \
3990 (* GET_GetIntegerv(disp)) parameters
3991 static inline _glptr_GetIntegerv GET_GetIntegerv(struct _glapi_table *disp) {
3992 return (_glptr_GetIntegerv) (GET_by_offset(disp, _gloffset_GetIntegerv));
3993 }
3994
3995 static inline void SET_GetIntegerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) {
3996 SET_by_offset(disp, _gloffset_GetIntegerv, fn);
3997 }
3998
3999 typedef void (GLAPIENTRYP _glptr_GetLightfv)(GLenum, GLenum, GLfloat *);
4000 #define CALL_GetLightfv(disp, parameters) \
4001 (* GET_GetLightfv(disp)) parameters
4002 static inline _glptr_GetLightfv GET_GetLightfv(struct _glapi_table *disp) {
4003 return (_glptr_GetLightfv) (GET_by_offset(disp, _gloffset_GetLightfv));
4004 }
4005
4006 static inline void SET_GetLightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4007 SET_by_offset(disp, _gloffset_GetLightfv, fn);
4008 }
4009
4010 typedef void (GLAPIENTRYP _glptr_GetLightiv)(GLenum, GLenum, GLint *);
4011 #define CALL_GetLightiv(disp, parameters) \
4012 (* GET_GetLightiv(disp)) parameters
4013 static inline _glptr_GetLightiv GET_GetLightiv(struct _glapi_table *disp) {
4014 return (_glptr_GetLightiv) (GET_by_offset(disp, _gloffset_GetLightiv));
4015 }
4016
4017 static inline void SET_GetLightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4018 SET_by_offset(disp, _gloffset_GetLightiv, fn);
4019 }
4020
4021 typedef void (GLAPIENTRYP _glptr_GetMapdv)(GLenum, GLenum, GLdouble *);
4022 #define CALL_GetMapdv(disp, parameters) \
4023 (* GET_GetMapdv(disp)) parameters
4024 static inline _glptr_GetMapdv GET_GetMapdv(struct _glapi_table *disp) {
4025 return (_glptr_GetMapdv) (GET_by_offset(disp, _gloffset_GetMapdv));
4026 }
4027
4028 static inline void SET_GetMapdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
4029 SET_by_offset(disp, _gloffset_GetMapdv, fn);
4030 }
4031
4032 typedef void (GLAPIENTRYP _glptr_GetMapfv)(GLenum, GLenum, GLfloat *);
4033 #define CALL_GetMapfv(disp, parameters) \
4034 (* GET_GetMapfv(disp)) parameters
4035 static inline _glptr_GetMapfv GET_GetMapfv(struct _glapi_table *disp) {
4036 return (_glptr_GetMapfv) (GET_by_offset(disp, _gloffset_GetMapfv));
4037 }
4038
4039 static inline void SET_GetMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4040 SET_by_offset(disp, _gloffset_GetMapfv, fn);
4041 }
4042
4043 typedef void (GLAPIENTRYP _glptr_GetMapiv)(GLenum, GLenum, GLint *);
4044 #define CALL_GetMapiv(disp, parameters) \
4045 (* GET_GetMapiv(disp)) parameters
4046 static inline _glptr_GetMapiv GET_GetMapiv(struct _glapi_table *disp) {
4047 return (_glptr_GetMapiv) (GET_by_offset(disp, _gloffset_GetMapiv));
4048 }
4049
4050 static inline void SET_GetMapiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4051 SET_by_offset(disp, _gloffset_GetMapiv, fn);
4052 }
4053
4054 typedef void (GLAPIENTRYP _glptr_GetMaterialfv)(GLenum, GLenum, GLfloat *);
4055 #define CALL_GetMaterialfv(disp, parameters) \
4056 (* GET_GetMaterialfv(disp)) parameters
4057 static inline _glptr_GetMaterialfv GET_GetMaterialfv(struct _glapi_table *disp) {
4058 return (_glptr_GetMaterialfv) (GET_by_offset(disp, _gloffset_GetMaterialfv));
4059 }
4060
4061 static inline void SET_GetMaterialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4062 SET_by_offset(disp, _gloffset_GetMaterialfv, fn);
4063 }
4064
4065 typedef void (GLAPIENTRYP _glptr_GetMaterialiv)(GLenum, GLenum, GLint *);
4066 #define CALL_GetMaterialiv(disp, parameters) \
4067 (* GET_GetMaterialiv(disp)) parameters
4068 static inline _glptr_GetMaterialiv GET_GetMaterialiv(struct _glapi_table *disp) {
4069 return (_glptr_GetMaterialiv) (GET_by_offset(disp, _gloffset_GetMaterialiv));
4070 }
4071
4072 static inline void SET_GetMaterialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4073 SET_by_offset(disp, _gloffset_GetMaterialiv, fn);
4074 }
4075
4076 typedef void (GLAPIENTRYP _glptr_GetPixelMapfv)(GLenum, GLfloat *);
4077 #define CALL_GetPixelMapfv(disp, parameters) \
4078 (* GET_GetPixelMapfv(disp)) parameters
4079 static inline _glptr_GetPixelMapfv GET_GetPixelMapfv(struct _glapi_table *disp) {
4080 return (_glptr_GetPixelMapfv) (GET_by_offset(disp, _gloffset_GetPixelMapfv));
4081 }
4082
4083 static inline void SET_GetPixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) {
4084 SET_by_offset(disp, _gloffset_GetPixelMapfv, fn);
4085 }
4086
4087 typedef void (GLAPIENTRYP _glptr_GetPixelMapuiv)(GLenum, GLuint *);
4088 #define CALL_GetPixelMapuiv(disp, parameters) \
4089 (* GET_GetPixelMapuiv(disp)) parameters
4090 static inline _glptr_GetPixelMapuiv GET_GetPixelMapuiv(struct _glapi_table *disp) {
4091 return (_glptr_GetPixelMapuiv) (GET_by_offset(disp, _gloffset_GetPixelMapuiv));
4092 }
4093
4094 static inline void SET_GetPixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint *)) {
4095 SET_by_offset(disp, _gloffset_GetPixelMapuiv, fn);
4096 }
4097
4098 typedef void (GLAPIENTRYP _glptr_GetPixelMapusv)(GLenum, GLushort *);
4099 #define CALL_GetPixelMapusv(disp, parameters) \
4100 (* GET_GetPixelMapusv(disp)) parameters
4101 static inline _glptr_GetPixelMapusv GET_GetPixelMapusv(struct _glapi_table *disp) {
4102 return (_glptr_GetPixelMapusv) (GET_by_offset(disp, _gloffset_GetPixelMapusv));
4103 }
4104
4105 static inline void SET_GetPixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLushort *)) {
4106 SET_by_offset(disp, _gloffset_GetPixelMapusv, fn);
4107 }
4108
4109 typedef void (GLAPIENTRYP _glptr_GetPolygonStipple)(GLubyte *);
4110 #define CALL_GetPolygonStipple(disp, parameters) \
4111 (* GET_GetPolygonStipple(disp)) parameters
4112 static inline _glptr_GetPolygonStipple GET_GetPolygonStipple(struct _glapi_table *disp) {
4113 return (_glptr_GetPolygonStipple) (GET_by_offset(disp, _gloffset_GetPolygonStipple));
4114 }
4115
4116 static inline void SET_GetPolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte *)) {
4117 SET_by_offset(disp, _gloffset_GetPolygonStipple, fn);
4118 }
4119
4120 typedef const GLubyte * (GLAPIENTRYP _glptr_GetString)(GLenum);
4121 #define CALL_GetString(disp, parameters) \
4122 (* GET_GetString(disp)) parameters
4123 static inline _glptr_GetString GET_GetString(struct _glapi_table *disp) {
4124 return (_glptr_GetString) (GET_by_offset(disp, _gloffset_GetString));
4125 }
4126
4127 static inline void SET_GetString(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum)) {
4128 SET_by_offset(disp, _gloffset_GetString, fn);
4129 }
4130
4131 typedef void (GLAPIENTRYP _glptr_GetTexEnvfv)(GLenum, GLenum, GLfloat *);
4132 #define CALL_GetTexEnvfv(disp, parameters) \
4133 (* GET_GetTexEnvfv(disp)) parameters
4134 static inline _glptr_GetTexEnvfv GET_GetTexEnvfv(struct _glapi_table *disp) {
4135 return (_glptr_GetTexEnvfv) (GET_by_offset(disp, _gloffset_GetTexEnvfv));
4136 }
4137
4138 static inline void SET_GetTexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4139 SET_by_offset(disp, _gloffset_GetTexEnvfv, fn);
4140 }
4141
4142 typedef void (GLAPIENTRYP _glptr_GetTexEnviv)(GLenum, GLenum, GLint *);
4143 #define CALL_GetTexEnviv(disp, parameters) \
4144 (* GET_GetTexEnviv(disp)) parameters
4145 static inline _glptr_GetTexEnviv GET_GetTexEnviv(struct _glapi_table *disp) {
4146 return (_glptr_GetTexEnviv) (GET_by_offset(disp, _gloffset_GetTexEnviv));
4147 }
4148
4149 static inline void SET_GetTexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4150 SET_by_offset(disp, _gloffset_GetTexEnviv, fn);
4151 }
4152
4153 typedef void (GLAPIENTRYP _glptr_GetTexGendv)(GLenum, GLenum, GLdouble *);
4154 #define CALL_GetTexGendv(disp, parameters) \
4155 (* GET_GetTexGendv(disp)) parameters
4156 static inline _glptr_GetTexGendv GET_GetTexGendv(struct _glapi_table *disp) {
4157 return (_glptr_GetTexGendv) (GET_by_offset(disp, _gloffset_GetTexGendv));
4158 }
4159
4160 static inline void SET_GetTexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) {
4161 SET_by_offset(disp, _gloffset_GetTexGendv, fn);
4162 }
4163
4164 typedef void (GLAPIENTRYP _glptr_GetTexGenfv)(GLenum, GLenum, GLfloat *);
4165 #define CALL_GetTexGenfv(disp, parameters) \
4166 (* GET_GetTexGenfv(disp)) parameters
4167 static inline _glptr_GetTexGenfv GET_GetTexGenfv(struct _glapi_table *disp) {
4168 return (_glptr_GetTexGenfv) (GET_by_offset(disp, _gloffset_GetTexGenfv));
4169 }
4170
4171 static inline void SET_GetTexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4172 SET_by_offset(disp, _gloffset_GetTexGenfv, fn);
4173 }
4174
4175 typedef void (GLAPIENTRYP _glptr_GetTexGeniv)(GLenum, GLenum, GLint *);
4176 #define CALL_GetTexGeniv(disp, parameters) \
4177 (* GET_GetTexGeniv(disp)) parameters
4178 static inline _glptr_GetTexGeniv GET_GetTexGeniv(struct _glapi_table *disp) {
4179 return (_glptr_GetTexGeniv) (GET_by_offset(disp, _gloffset_GetTexGeniv));
4180 }
4181
4182 static inline void SET_GetTexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4183 SET_by_offset(disp, _gloffset_GetTexGeniv, fn);
4184 }
4185
4186 typedef void (GLAPIENTRYP _glptr_GetTexImage)(GLenum, GLint, GLenum, GLenum, GLvoid *);
4187 #define CALL_GetTexImage(disp, parameters) \
4188 (* GET_GetTexImage(disp)) parameters
4189 static inline _glptr_GetTexImage GET_GetTexImage(struct _glapi_table *disp) {
4190 return (_glptr_GetTexImage) (GET_by_offset(disp, _gloffset_GetTexImage));
4191 }
4192
4193 static inline void SET_GetTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLvoid *)) {
4194 SET_by_offset(disp, _gloffset_GetTexImage, fn);
4195 }
4196
4197 typedef void (GLAPIENTRYP _glptr_GetTexParameterfv)(GLenum, GLenum, GLfloat *);
4198 #define CALL_GetTexParameterfv(disp, parameters) \
4199 (* GET_GetTexParameterfv(disp)) parameters
4200 static inline _glptr_GetTexParameterfv GET_GetTexParameterfv(struct _glapi_table *disp) {
4201 return (_glptr_GetTexParameterfv) (GET_by_offset(disp, _gloffset_GetTexParameterfv));
4202 }
4203
4204 static inline void SET_GetTexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4205 SET_by_offset(disp, _gloffset_GetTexParameterfv, fn);
4206 }
4207
4208 typedef void (GLAPIENTRYP _glptr_GetTexParameteriv)(GLenum, GLenum, GLint *);
4209 #define CALL_GetTexParameteriv(disp, parameters) \
4210 (* GET_GetTexParameteriv(disp)) parameters
4211 static inline _glptr_GetTexParameteriv GET_GetTexParameteriv(struct _glapi_table *disp) {
4212 return (_glptr_GetTexParameteriv) (GET_by_offset(disp, _gloffset_GetTexParameteriv));
4213 }
4214
4215 static inline void SET_GetTexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4216 SET_by_offset(disp, _gloffset_GetTexParameteriv, fn);
4217 }
4218
4219 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *);
4220 #define CALL_GetTexLevelParameterfv(disp, parameters) \
4221 (* GET_GetTexLevelParameterfv(disp)) parameters
4222 static inline _glptr_GetTexLevelParameterfv GET_GetTexLevelParameterfv(struct _glapi_table *disp) {
4223 return (_glptr_GetTexLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTexLevelParameterfv));
4224 }
4225
4226 static inline void SET_GetTexLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLfloat *)) {
4227 SET_by_offset(disp, _gloffset_GetTexLevelParameterfv, fn);
4228 }
4229
4230 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *);
4231 #define CALL_GetTexLevelParameteriv(disp, parameters) \
4232 (* GET_GetTexLevelParameteriv(disp)) parameters
4233 static inline _glptr_GetTexLevelParameteriv GET_GetTexLevelParameteriv(struct _glapi_table *disp) {
4234 return (_glptr_GetTexLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTexLevelParameteriv));
4235 }
4236
4237 static inline void SET_GetTexLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint *)) {
4238 SET_by_offset(disp, _gloffset_GetTexLevelParameteriv, fn);
4239 }
4240
4241 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabled)(GLenum);
4242 #define CALL_IsEnabled(disp, parameters) \
4243 (* GET_IsEnabled(disp)) parameters
4244 static inline _glptr_IsEnabled GET_IsEnabled(struct _glapi_table *disp) {
4245 return (_glptr_IsEnabled) (GET_by_offset(disp, _gloffset_IsEnabled));
4246 }
4247
4248 static inline void SET_IsEnabled(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
4249 SET_by_offset(disp, _gloffset_IsEnabled, fn);
4250 }
4251
4252 typedef GLboolean (GLAPIENTRYP _glptr_IsList)(GLuint);
4253 #define CALL_IsList(disp, parameters) \
4254 (* GET_IsList(disp)) parameters
4255 static inline _glptr_IsList GET_IsList(struct _glapi_table *disp) {
4256 return (_glptr_IsList) (GET_by_offset(disp, _gloffset_IsList));
4257 }
4258
4259 static inline void SET_IsList(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
4260 SET_by_offset(disp, _gloffset_IsList, fn);
4261 }
4262
4263 typedef void (GLAPIENTRYP _glptr_DepthRange)(GLclampd, GLclampd);
4264 #define CALL_DepthRange(disp, parameters) \
4265 (* GET_DepthRange(disp)) parameters
4266 static inline _glptr_DepthRange GET_DepthRange(struct _glapi_table *disp) {
4267 return (_glptr_DepthRange) (GET_by_offset(disp, _gloffset_DepthRange));
4268 }
4269
4270 static inline void SET_DepthRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
4271 SET_by_offset(disp, _gloffset_DepthRange, fn);
4272 }
4273
4274 typedef void (GLAPIENTRYP _glptr_Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
4275 #define CALL_Frustum(disp, parameters) \
4276 (* GET_Frustum(disp)) parameters
4277 static inline _glptr_Frustum GET_Frustum(struct _glapi_table *disp) {
4278 return (_glptr_Frustum) (GET_by_offset(disp, _gloffset_Frustum));
4279 }
4280
4281 static inline void SET_Frustum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
4282 SET_by_offset(disp, _gloffset_Frustum, fn);
4283 }
4284
4285 typedef void (GLAPIENTRYP _glptr_LoadIdentity)(void);
4286 #define CALL_LoadIdentity(disp, parameters) \
4287 (* GET_LoadIdentity(disp)) parameters
4288 static inline _glptr_LoadIdentity GET_LoadIdentity(struct _glapi_table *disp) {
4289 return (_glptr_LoadIdentity) (GET_by_offset(disp, _gloffset_LoadIdentity));
4290 }
4291
4292 static inline void SET_LoadIdentity(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4293 SET_by_offset(disp, _gloffset_LoadIdentity, fn);
4294 }
4295
4296 typedef void (GLAPIENTRYP _glptr_LoadMatrixf)(const GLfloat *);
4297 #define CALL_LoadMatrixf(disp, parameters) \
4298 (* GET_LoadMatrixf(disp)) parameters
4299 static inline _glptr_LoadMatrixf GET_LoadMatrixf(struct _glapi_table *disp) {
4300 return (_glptr_LoadMatrixf) (GET_by_offset(disp, _gloffset_LoadMatrixf));
4301 }
4302
4303 static inline void SET_LoadMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
4304 SET_by_offset(disp, _gloffset_LoadMatrixf, fn);
4305 }
4306
4307 typedef void (GLAPIENTRYP _glptr_LoadMatrixd)(const GLdouble *);
4308 #define CALL_LoadMatrixd(disp, parameters) \
4309 (* GET_LoadMatrixd(disp)) parameters
4310 static inline _glptr_LoadMatrixd GET_LoadMatrixd(struct _glapi_table *disp) {
4311 return (_glptr_LoadMatrixd) (GET_by_offset(disp, _gloffset_LoadMatrixd));
4312 }
4313
4314 static inline void SET_LoadMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
4315 SET_by_offset(disp, _gloffset_LoadMatrixd, fn);
4316 }
4317
4318 typedef void (GLAPIENTRYP _glptr_MatrixMode)(GLenum);
4319 #define CALL_MatrixMode(disp, parameters) \
4320 (* GET_MatrixMode(disp)) parameters
4321 static inline _glptr_MatrixMode GET_MatrixMode(struct _glapi_table *disp) {
4322 return (_glptr_MatrixMode) (GET_by_offset(disp, _gloffset_MatrixMode));
4323 }
4324
4325 static inline void SET_MatrixMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4326 SET_by_offset(disp, _gloffset_MatrixMode, fn);
4327 }
4328
4329 typedef void (GLAPIENTRYP _glptr_MultMatrixf)(const GLfloat *);
4330 #define CALL_MultMatrixf(disp, parameters) \
4331 (* GET_MultMatrixf(disp)) parameters
4332 static inline _glptr_MultMatrixf GET_MultMatrixf(struct _glapi_table *disp) {
4333 return (_glptr_MultMatrixf) (GET_by_offset(disp, _gloffset_MultMatrixf));
4334 }
4335
4336 static inline void SET_MultMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
4337 SET_by_offset(disp, _gloffset_MultMatrixf, fn);
4338 }
4339
4340 typedef void (GLAPIENTRYP _glptr_MultMatrixd)(const GLdouble *);
4341 #define CALL_MultMatrixd(disp, parameters) \
4342 (* GET_MultMatrixd(disp)) parameters
4343 static inline _glptr_MultMatrixd GET_MultMatrixd(struct _glapi_table *disp) {
4344 return (_glptr_MultMatrixd) (GET_by_offset(disp, _gloffset_MultMatrixd));
4345 }
4346
4347 static inline void SET_MultMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
4348 SET_by_offset(disp, _gloffset_MultMatrixd, fn);
4349 }
4350
4351 typedef void (GLAPIENTRYP _glptr_Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
4352 #define CALL_Ortho(disp, parameters) \
4353 (* GET_Ortho(disp)) parameters
4354 static inline _glptr_Ortho GET_Ortho(struct _glapi_table *disp) {
4355 return (_glptr_Ortho) (GET_by_offset(disp, _gloffset_Ortho));
4356 }
4357
4358 static inline void SET_Ortho(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) {
4359 SET_by_offset(disp, _gloffset_Ortho, fn);
4360 }
4361
4362 typedef void (GLAPIENTRYP _glptr_PopMatrix)(void);
4363 #define CALL_PopMatrix(disp, parameters) \
4364 (* GET_PopMatrix(disp)) parameters
4365 static inline _glptr_PopMatrix GET_PopMatrix(struct _glapi_table *disp) {
4366 return (_glptr_PopMatrix) (GET_by_offset(disp, _gloffset_PopMatrix));
4367 }
4368
4369 static inline void SET_PopMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4370 SET_by_offset(disp, _gloffset_PopMatrix, fn);
4371 }
4372
4373 typedef void (GLAPIENTRYP _glptr_PushMatrix)(void);
4374 #define CALL_PushMatrix(disp, parameters) \
4375 (* GET_PushMatrix(disp)) parameters
4376 static inline _glptr_PushMatrix GET_PushMatrix(struct _glapi_table *disp) {
4377 return (_glptr_PushMatrix) (GET_by_offset(disp, _gloffset_PushMatrix));
4378 }
4379
4380 static inline void SET_PushMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4381 SET_by_offset(disp, _gloffset_PushMatrix, fn);
4382 }
4383
4384 typedef void (GLAPIENTRYP _glptr_Rotated)(GLdouble, GLdouble, GLdouble, GLdouble);
4385 #define CALL_Rotated(disp, parameters) \
4386 (* GET_Rotated(disp)) parameters
4387 static inline _glptr_Rotated GET_Rotated(struct _glapi_table *disp) {
4388 return (_glptr_Rotated) (GET_by_offset(disp, _gloffset_Rotated));
4389 }
4390
4391 static inline void SET_Rotated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
4392 SET_by_offset(disp, _gloffset_Rotated, fn);
4393 }
4394
4395 typedef void (GLAPIENTRYP _glptr_Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat);
4396 #define CALL_Rotatef(disp, parameters) \
4397 (* GET_Rotatef(disp)) parameters
4398 static inline _glptr_Rotatef GET_Rotatef(struct _glapi_table *disp) {
4399 return (_glptr_Rotatef) (GET_by_offset(disp, _gloffset_Rotatef));
4400 }
4401
4402 static inline void SET_Rotatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
4403 SET_by_offset(disp, _gloffset_Rotatef, fn);
4404 }
4405
4406 typedef void (GLAPIENTRYP _glptr_Scaled)(GLdouble, GLdouble, GLdouble);
4407 #define CALL_Scaled(disp, parameters) \
4408 (* GET_Scaled(disp)) parameters
4409 static inline _glptr_Scaled GET_Scaled(struct _glapi_table *disp) {
4410 return (_glptr_Scaled) (GET_by_offset(disp, _gloffset_Scaled));
4411 }
4412
4413 static inline void SET_Scaled(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
4414 SET_by_offset(disp, _gloffset_Scaled, fn);
4415 }
4416
4417 typedef void (GLAPIENTRYP _glptr_Scalef)(GLfloat, GLfloat, GLfloat);
4418 #define CALL_Scalef(disp, parameters) \
4419 (* GET_Scalef(disp)) parameters
4420 static inline _glptr_Scalef GET_Scalef(struct _glapi_table *disp) {
4421 return (_glptr_Scalef) (GET_by_offset(disp, _gloffset_Scalef));
4422 }
4423
4424 static inline void SET_Scalef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
4425 SET_by_offset(disp, _gloffset_Scalef, fn);
4426 }
4427
4428 typedef void (GLAPIENTRYP _glptr_Translated)(GLdouble, GLdouble, GLdouble);
4429 #define CALL_Translated(disp, parameters) \
4430 (* GET_Translated(disp)) parameters
4431 static inline _glptr_Translated GET_Translated(struct _glapi_table *disp) {
4432 return (_glptr_Translated) (GET_by_offset(disp, _gloffset_Translated));
4433 }
4434
4435 static inline void SET_Translated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
4436 SET_by_offset(disp, _gloffset_Translated, fn);
4437 }
4438
4439 typedef void (GLAPIENTRYP _glptr_Translatef)(GLfloat, GLfloat, GLfloat);
4440 #define CALL_Translatef(disp, parameters) \
4441 (* GET_Translatef(disp)) parameters
4442 static inline _glptr_Translatef GET_Translatef(struct _glapi_table *disp) {
4443 return (_glptr_Translatef) (GET_by_offset(disp, _gloffset_Translatef));
4444 }
4445
4446 static inline void SET_Translatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
4447 SET_by_offset(disp, _gloffset_Translatef, fn);
4448 }
4449
4450 typedef void (GLAPIENTRYP _glptr_Viewport)(GLint, GLint, GLsizei, GLsizei);
4451 #define CALL_Viewport(disp, parameters) \
4452 (* GET_Viewport(disp)) parameters
4453 static inline _glptr_Viewport GET_Viewport(struct _glapi_table *disp) {
4454 return (_glptr_Viewport) (GET_by_offset(disp, _gloffset_Viewport));
4455 }
4456
4457 static inline void SET_Viewport(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) {
4458 SET_by_offset(disp, _gloffset_Viewport, fn);
4459 }
4460
4461 typedef void (GLAPIENTRYP _glptr_ArrayElement)(GLint);
4462 #define CALL_ArrayElement(disp, parameters) \
4463 (* GET_ArrayElement(disp)) parameters
4464 static inline _glptr_ArrayElement GET_ArrayElement(struct _glapi_table *disp) {
4465 return (_glptr_ArrayElement) (GET_by_offset(disp, _gloffset_ArrayElement));
4466 }
4467
4468 static inline void SET_ArrayElement(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) {
4469 SET_by_offset(disp, _gloffset_ArrayElement, fn);
4470 }
4471
4472 typedef void (GLAPIENTRYP _glptr_BindTexture)(GLenum, GLuint);
4473 #define CALL_BindTexture(disp, parameters) \
4474 (* GET_BindTexture(disp)) parameters
4475 static inline _glptr_BindTexture GET_BindTexture(struct _glapi_table *disp) {
4476 return (_glptr_BindTexture) (GET_by_offset(disp, _gloffset_BindTexture));
4477 }
4478
4479 static inline void SET_BindTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
4480 SET_by_offset(disp, _gloffset_BindTexture, fn);
4481 }
4482
4483 typedef void (GLAPIENTRYP _glptr_ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
4484 #define CALL_ColorPointer(disp, parameters) \
4485 (* GET_ColorPointer(disp)) parameters
4486 static inline _glptr_ColorPointer GET_ColorPointer(struct _glapi_table *disp) {
4487 return (_glptr_ColorPointer) (GET_by_offset(disp, _gloffset_ColorPointer));
4488 }
4489
4490 static inline void SET_ColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
4491 SET_by_offset(disp, _gloffset_ColorPointer, fn);
4492 }
4493
4494 typedef void (GLAPIENTRYP _glptr_DisableClientState)(GLenum);
4495 #define CALL_DisableClientState(disp, parameters) \
4496 (* GET_DisableClientState(disp)) parameters
4497 static inline _glptr_DisableClientState GET_DisableClientState(struct _glapi_table *disp) {
4498 return (_glptr_DisableClientState) (GET_by_offset(disp, _gloffset_DisableClientState));
4499 }
4500
4501 static inline void SET_DisableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4502 SET_by_offset(disp, _gloffset_DisableClientState, fn);
4503 }
4504
4505 typedef void (GLAPIENTRYP _glptr_DrawArrays)(GLenum, GLint, GLsizei);
4506 #define CALL_DrawArrays(disp, parameters) \
4507 (* GET_DrawArrays(disp)) parameters
4508 static inline _glptr_DrawArrays GET_DrawArrays(struct _glapi_table *disp) {
4509 return (_glptr_DrawArrays) (GET_by_offset(disp, _gloffset_DrawArrays));
4510 }
4511
4512 static inline void SET_DrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei)) {
4513 SET_by_offset(disp, _gloffset_DrawArrays, fn);
4514 }
4515
4516 typedef void (GLAPIENTRYP _glptr_DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *);
4517 #define CALL_DrawElements(disp, parameters) \
4518 (* GET_DrawElements(disp)) parameters
4519 static inline _glptr_DrawElements GET_DrawElements(struct _glapi_table *disp) {
4520 return (_glptr_DrawElements) (GET_by_offset(disp, _gloffset_DrawElements));
4521 }
4522
4523 static inline void SET_DrawElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *)) {
4524 SET_by_offset(disp, _gloffset_DrawElements, fn);
4525 }
4526
4527 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointer)(GLsizei, const GLvoid *);
4528 #define CALL_EdgeFlagPointer(disp, parameters) \
4529 (* GET_EdgeFlagPointer(disp)) parameters
4530 static inline _glptr_EdgeFlagPointer GET_EdgeFlagPointer(struct _glapi_table *disp) {
4531 return (_glptr_EdgeFlagPointer) (GET_by_offset(disp, _gloffset_EdgeFlagPointer));
4532 }
4533
4534 static inline void SET_EdgeFlagPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
4535 SET_by_offset(disp, _gloffset_EdgeFlagPointer, fn);
4536 }
4537
4538 typedef void (GLAPIENTRYP _glptr_EnableClientState)(GLenum);
4539 #define CALL_EnableClientState(disp, parameters) \
4540 (* GET_EnableClientState(disp)) parameters
4541 static inline _glptr_EnableClientState GET_EnableClientState(struct _glapi_table *disp) {
4542 return (_glptr_EnableClientState) (GET_by_offset(disp, _gloffset_EnableClientState));
4543 }
4544
4545 static inline void SET_EnableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4546 SET_by_offset(disp, _gloffset_EnableClientState, fn);
4547 }
4548
4549 typedef void (GLAPIENTRYP _glptr_IndexPointer)(GLenum, GLsizei, const GLvoid *);
4550 #define CALL_IndexPointer(disp, parameters) \
4551 (* GET_IndexPointer(disp)) parameters
4552 static inline _glptr_IndexPointer GET_IndexPointer(struct _glapi_table *disp) {
4553 return (_glptr_IndexPointer) (GET_by_offset(disp, _gloffset_IndexPointer));
4554 }
4555
4556 static inline void SET_IndexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
4557 SET_by_offset(disp, _gloffset_IndexPointer, fn);
4558 }
4559
4560 typedef void (GLAPIENTRYP _glptr_Indexub)(GLubyte);
4561 #define CALL_Indexub(disp, parameters) \
4562 (* GET_Indexub(disp)) parameters
4563 static inline _glptr_Indexub GET_Indexub(struct _glapi_table *disp) {
4564 return (_glptr_Indexub) (GET_by_offset(disp, _gloffset_Indexub));
4565 }
4566
4567 static inline void SET_Indexub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte)) {
4568 SET_by_offset(disp, _gloffset_Indexub, fn);
4569 }
4570
4571 typedef void (GLAPIENTRYP _glptr_Indexubv)(const GLubyte *);
4572 #define CALL_Indexubv(disp, parameters) \
4573 (* GET_Indexubv(disp)) parameters
4574 static inline _glptr_Indexubv GET_Indexubv(struct _glapi_table *disp) {
4575 return (_glptr_Indexubv) (GET_by_offset(disp, _gloffset_Indexubv));
4576 }
4577
4578 static inline void SET_Indexubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
4579 SET_by_offset(disp, _gloffset_Indexubv, fn);
4580 }
4581
4582 typedef void (GLAPIENTRYP _glptr_InterleavedArrays)(GLenum, GLsizei, const GLvoid *);
4583 #define CALL_InterleavedArrays(disp, parameters) \
4584 (* GET_InterleavedArrays(disp)) parameters
4585 static inline _glptr_InterleavedArrays GET_InterleavedArrays(struct _glapi_table *disp) {
4586 return (_glptr_InterleavedArrays) (GET_by_offset(disp, _gloffset_InterleavedArrays));
4587 }
4588
4589 static inline void SET_InterleavedArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
4590 SET_by_offset(disp, _gloffset_InterleavedArrays, fn);
4591 }
4592
4593 typedef void (GLAPIENTRYP _glptr_NormalPointer)(GLenum, GLsizei, const GLvoid *);
4594 #define CALL_NormalPointer(disp, parameters) \
4595 (* GET_NormalPointer(disp)) parameters
4596 static inline _glptr_NormalPointer GET_NormalPointer(struct _glapi_table *disp) {
4597 return (_glptr_NormalPointer) (GET_by_offset(disp, _gloffset_NormalPointer));
4598 }
4599
4600 static inline void SET_NormalPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
4601 SET_by_offset(disp, _gloffset_NormalPointer, fn);
4602 }
4603
4604 typedef void (GLAPIENTRYP _glptr_PolygonOffset)(GLfloat, GLfloat);
4605 #define CALL_PolygonOffset(disp, parameters) \
4606 (* GET_PolygonOffset(disp)) parameters
4607 static inline _glptr_PolygonOffset GET_PolygonOffset(struct _glapi_table *disp) {
4608 return (_glptr_PolygonOffset) (GET_by_offset(disp, _gloffset_PolygonOffset));
4609 }
4610
4611 static inline void SET_PolygonOffset(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
4612 SET_by_offset(disp, _gloffset_PolygonOffset, fn);
4613 }
4614
4615 typedef void (GLAPIENTRYP _glptr_TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *);
4616 #define CALL_TexCoordPointer(disp, parameters) \
4617 (* GET_TexCoordPointer(disp)) parameters
4618 static inline _glptr_TexCoordPointer GET_TexCoordPointer(struct _glapi_table *disp) {
4619 return (_glptr_TexCoordPointer) (GET_by_offset(disp, _gloffset_TexCoordPointer));
4620 }
4621
4622 static inline void SET_TexCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
4623 SET_by_offset(disp, _gloffset_TexCoordPointer, fn);
4624 }
4625
4626 typedef void (GLAPIENTRYP _glptr_VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *);
4627 #define CALL_VertexPointer(disp, parameters) \
4628 (* GET_VertexPointer(disp)) parameters
4629 static inline _glptr_VertexPointer GET_VertexPointer(struct _glapi_table *disp) {
4630 return (_glptr_VertexPointer) (GET_by_offset(disp, _gloffset_VertexPointer));
4631 }
4632
4633 static inline void SET_VertexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
4634 SET_by_offset(disp, _gloffset_VertexPointer, fn);
4635 }
4636
4637 typedef GLboolean (GLAPIENTRYP _glptr_AreTexturesResident)(GLsizei, const GLuint *, GLboolean *);
4638 #define CALL_AreTexturesResident(disp, parameters) \
4639 (* GET_AreTexturesResident(disp)) parameters
4640 static inline _glptr_AreTexturesResident GET_AreTexturesResident(struct _glapi_table *disp) {
4641 return (_glptr_AreTexturesResident) (GET_by_offset(disp, _gloffset_AreTexturesResident));
4642 }
4643
4644 static inline void SET_AreTexturesResident(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
4645 SET_by_offset(disp, _gloffset_AreTexturesResident, fn);
4646 }
4647
4648 typedef void (GLAPIENTRYP _glptr_CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
4649 #define CALL_CopyTexImage1D(disp, parameters) \
4650 (* GET_CopyTexImage1D(disp)) parameters
4651 static inline _glptr_CopyTexImage1D GET_CopyTexImage1D(struct _glapi_table *disp) {
4652 return (_glptr_CopyTexImage1D) (GET_by_offset(disp, _gloffset_CopyTexImage1D));
4653 }
4654
4655 static inline void SET_CopyTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint)) {
4656 SET_by_offset(disp, _gloffset_CopyTexImage1D, fn);
4657 }
4658
4659 typedef void (GLAPIENTRYP _glptr_CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
4660 #define CALL_CopyTexImage2D(disp, parameters) \
4661 (* GET_CopyTexImage2D(disp)) parameters
4662 static inline _glptr_CopyTexImage2D GET_CopyTexImage2D(struct _glapi_table *disp) {
4663 return (_glptr_CopyTexImage2D) (GET_by_offset(disp, _gloffset_CopyTexImage2D));
4664 }
4665
4666 static inline void SET_CopyTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint)) {
4667 SET_by_offset(disp, _gloffset_CopyTexImage2D, fn);
4668 }
4669
4670 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
4671 #define CALL_CopyTexSubImage1D(disp, parameters) \
4672 (* GET_CopyTexSubImage1D(disp)) parameters
4673 static inline _glptr_CopyTexSubImage1D GET_CopyTexSubImage1D(struct _glapi_table *disp) {
4674 return (_glptr_CopyTexSubImage1D) (GET_by_offset(disp, _gloffset_CopyTexSubImage1D));
4675 }
4676
4677 static inline void SET_CopyTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei)) {
4678 SET_by_offset(disp, _gloffset_CopyTexSubImage1D, fn);
4679 }
4680
4681 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
4682 #define CALL_CopyTexSubImage2D(disp, parameters) \
4683 (* GET_CopyTexSubImage2D(disp)) parameters
4684 static inline _glptr_CopyTexSubImage2D GET_CopyTexSubImage2D(struct _glapi_table *disp) {
4685 return (_glptr_CopyTexSubImage2D) (GET_by_offset(disp, _gloffset_CopyTexSubImage2D));
4686 }
4687
4688 static inline void SET_CopyTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
4689 SET_by_offset(disp, _gloffset_CopyTexSubImage2D, fn);
4690 }
4691
4692 typedef void (GLAPIENTRYP _glptr_DeleteTextures)(GLsizei, const GLuint *);
4693 #define CALL_DeleteTextures(disp, parameters) \
4694 (* GET_DeleteTextures(disp)) parameters
4695 static inline _glptr_DeleteTextures GET_DeleteTextures(struct _glapi_table *disp) {
4696 return (_glptr_DeleteTextures) (GET_by_offset(disp, _gloffset_DeleteTextures));
4697 }
4698
4699 static inline void SET_DeleteTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
4700 SET_by_offset(disp, _gloffset_DeleteTextures, fn);
4701 }
4702
4703 typedef void (GLAPIENTRYP _glptr_GenTextures)(GLsizei, GLuint *);
4704 #define CALL_GenTextures(disp, parameters) \
4705 (* GET_GenTextures(disp)) parameters
4706 static inline _glptr_GenTextures GET_GenTextures(struct _glapi_table *disp) {
4707 return (_glptr_GenTextures) (GET_by_offset(disp, _gloffset_GenTextures));
4708 }
4709
4710 static inline void SET_GenTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
4711 SET_by_offset(disp, _gloffset_GenTextures, fn);
4712 }
4713
4714 typedef void (GLAPIENTRYP _glptr_GetPointerv)(GLenum, GLvoid **);
4715 #define CALL_GetPointerv(disp, parameters) \
4716 (* GET_GetPointerv(disp)) parameters
4717 static inline _glptr_GetPointerv GET_GetPointerv(struct _glapi_table *disp) {
4718 return (_glptr_GetPointerv) (GET_by_offset(disp, _gloffset_GetPointerv));
4719 }
4720
4721 static inline void SET_GetPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid **)) {
4722 SET_by_offset(disp, _gloffset_GetPointerv, fn);
4723 }
4724
4725 typedef GLboolean (GLAPIENTRYP _glptr_IsTexture)(GLuint);
4726 #define CALL_IsTexture(disp, parameters) \
4727 (* GET_IsTexture(disp)) parameters
4728 static inline _glptr_IsTexture GET_IsTexture(struct _glapi_table *disp) {
4729 return (_glptr_IsTexture) (GET_by_offset(disp, _gloffset_IsTexture));
4730 }
4731
4732 static inline void SET_IsTexture(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
4733 SET_by_offset(disp, _gloffset_IsTexture, fn);
4734 }
4735
4736 typedef void (GLAPIENTRYP _glptr_PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *);
4737 #define CALL_PrioritizeTextures(disp, parameters) \
4738 (* GET_PrioritizeTextures(disp)) parameters
4739 static inline _glptr_PrioritizeTextures GET_PrioritizeTextures(struct _glapi_table *disp) {
4740 return (_glptr_PrioritizeTextures) (GET_by_offset(disp, _gloffset_PrioritizeTextures));
4741 }
4742
4743 static inline void SET_PrioritizeTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, const GLclampf *)) {
4744 SET_by_offset(disp, _gloffset_PrioritizeTextures, fn);
4745 }
4746
4747 typedef void (GLAPIENTRYP _glptr_TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
4748 #define CALL_TexSubImage1D(disp, parameters) \
4749 (* GET_TexSubImage1D(disp)) parameters
4750 static inline _glptr_TexSubImage1D GET_TexSubImage1D(struct _glapi_table *disp) {
4751 return (_glptr_TexSubImage1D) (GET_by_offset(disp, _gloffset_TexSubImage1D));
4752 }
4753
4754 static inline void SET_TexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) {
4755 SET_by_offset(disp, _gloffset_TexSubImage1D, fn);
4756 }
4757
4758 typedef void (GLAPIENTRYP _glptr_TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
4759 #define CALL_TexSubImage2D(disp, parameters) \
4760 (* GET_TexSubImage2D(disp)) parameters
4761 static inline _glptr_TexSubImage2D GET_TexSubImage2D(struct _glapi_table *disp) {
4762 return (_glptr_TexSubImage2D) (GET_by_offset(disp, _gloffset_TexSubImage2D));
4763 }
4764
4765 static inline void SET_TexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
4766 SET_by_offset(disp, _gloffset_TexSubImage2D, fn);
4767 }
4768
4769 typedef void (GLAPIENTRYP _glptr_PopClientAttrib)(void);
4770 #define CALL_PopClientAttrib(disp, parameters) \
4771 (* GET_PopClientAttrib(disp)) parameters
4772 static inline _glptr_PopClientAttrib GET_PopClientAttrib(struct _glapi_table *disp) {
4773 return (_glptr_PopClientAttrib) (GET_by_offset(disp, _gloffset_PopClientAttrib));
4774 }
4775
4776 static inline void SET_PopClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
4777 SET_by_offset(disp, _gloffset_PopClientAttrib, fn);
4778 }
4779
4780 typedef void (GLAPIENTRYP _glptr_PushClientAttrib)(GLbitfield);
4781 #define CALL_PushClientAttrib(disp, parameters) \
4782 (* GET_PushClientAttrib(disp)) parameters
4783 static inline _glptr_PushClientAttrib GET_PushClientAttrib(struct _glapi_table *disp) {
4784 return (_glptr_PushClientAttrib) (GET_by_offset(disp, _gloffset_PushClientAttrib));
4785 }
4786
4787 static inline void SET_PushClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
4788 SET_by_offset(disp, _gloffset_PushClientAttrib, fn);
4789 }
4790
4791 typedef void (GLAPIENTRYP _glptr_BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf);
4792 #define CALL_BlendColor(disp, parameters) \
4793 (* GET_BlendColor(disp)) parameters
4794 static inline _glptr_BlendColor GET_BlendColor(struct _glapi_table *disp) {
4795 return (_glptr_BlendColor) (GET_by_offset(disp, _gloffset_BlendColor));
4796 }
4797
4798 static inline void SET_BlendColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) {
4799 SET_by_offset(disp, _gloffset_BlendColor, fn);
4800 }
4801
4802 typedef void (GLAPIENTRYP _glptr_BlendEquation)(GLenum);
4803 #define CALL_BlendEquation(disp, parameters) \
4804 (* GET_BlendEquation(disp)) parameters
4805 static inline _glptr_BlendEquation GET_BlendEquation(struct _glapi_table *disp) {
4806 return (_glptr_BlendEquation) (GET_by_offset(disp, _gloffset_BlendEquation));
4807 }
4808
4809 static inline void SET_BlendEquation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
4810 SET_by_offset(disp, _gloffset_BlendEquation, fn);
4811 }
4812
4813 typedef void (GLAPIENTRYP _glptr_DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
4814 #define CALL_DrawRangeElements(disp, parameters) \
4815 (* GET_DrawRangeElements(disp)) parameters
4816 static inline _glptr_DrawRangeElements GET_DrawRangeElements(struct _glapi_table *disp) {
4817 return (_glptr_DrawRangeElements) (GET_by_offset(disp, _gloffset_DrawRangeElements));
4818 }
4819
4820 static inline void SET_DrawRangeElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *)) {
4821 SET_by_offset(disp, _gloffset_DrawRangeElements, fn);
4822 }
4823
4824 typedef void (GLAPIENTRYP _glptr_ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
4825 #define CALL_ColorTable(disp, parameters) \
4826 (* GET_ColorTable(disp)) parameters
4827 static inline _glptr_ColorTable GET_ColorTable(struct _glapi_table *disp) {
4828 return (_glptr_ColorTable) (GET_by_offset(disp, _gloffset_ColorTable));
4829 }
4830
4831 static inline void SET_ColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
4832 SET_by_offset(disp, _gloffset_ColorTable, fn);
4833 }
4834
4835 typedef void (GLAPIENTRYP _glptr_ColorTableParameterfv)(GLenum, GLenum, const GLfloat *);
4836 #define CALL_ColorTableParameterfv(disp, parameters) \
4837 (* GET_ColorTableParameterfv(disp)) parameters
4838 static inline _glptr_ColorTableParameterfv GET_ColorTableParameterfv(struct _glapi_table *disp) {
4839 return (_glptr_ColorTableParameterfv) (GET_by_offset(disp, _gloffset_ColorTableParameterfv));
4840 }
4841
4842 static inline void SET_ColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
4843 SET_by_offset(disp, _gloffset_ColorTableParameterfv, fn);
4844 }
4845
4846 typedef void (GLAPIENTRYP _glptr_ColorTableParameteriv)(GLenum, GLenum, const GLint *);
4847 #define CALL_ColorTableParameteriv(disp, parameters) \
4848 (* GET_ColorTableParameteriv(disp)) parameters
4849 static inline _glptr_ColorTableParameteriv GET_ColorTableParameteriv(struct _glapi_table *disp) {
4850 return (_glptr_ColorTableParameteriv) (GET_by_offset(disp, _gloffset_ColorTableParameteriv));
4851 }
4852
4853 static inline void SET_ColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
4854 SET_by_offset(disp, _gloffset_ColorTableParameteriv, fn);
4855 }
4856
4857 typedef void (GLAPIENTRYP _glptr_CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei);
4858 #define CALL_CopyColorTable(disp, parameters) \
4859 (* GET_CopyColorTable(disp)) parameters
4860 static inline _glptr_CopyColorTable GET_CopyColorTable(struct _glapi_table *disp) {
4861 return (_glptr_CopyColorTable) (GET_by_offset(disp, _gloffset_CopyColorTable));
4862 }
4863
4864 static inline void SET_CopyColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
4865 SET_by_offset(disp, _gloffset_CopyColorTable, fn);
4866 }
4867
4868 typedef void (GLAPIENTRYP _glptr_GetColorTable)(GLenum, GLenum, GLenum, GLvoid *);
4869 #define CALL_GetColorTable(disp, parameters) \
4870 (* GET_GetColorTable(disp)) parameters
4871 static inline _glptr_GetColorTable GET_GetColorTable(struct _glapi_table *disp) {
4872 return (_glptr_GetColorTable) (GET_by_offset(disp, _gloffset_GetColorTable));
4873 }
4874
4875 static inline void SET_GetColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
4876 SET_by_offset(disp, _gloffset_GetColorTable, fn);
4877 }
4878
4879 typedef void (GLAPIENTRYP _glptr_GetColorTableParameterfv)(GLenum, GLenum, GLfloat *);
4880 #define CALL_GetColorTableParameterfv(disp, parameters) \
4881 (* GET_GetColorTableParameterfv(disp)) parameters
4882 static inline _glptr_GetColorTableParameterfv GET_GetColorTableParameterfv(struct _glapi_table *disp) {
4883 return (_glptr_GetColorTableParameterfv) (GET_by_offset(disp, _gloffset_GetColorTableParameterfv));
4884 }
4885
4886 static inline void SET_GetColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
4887 SET_by_offset(disp, _gloffset_GetColorTableParameterfv, fn);
4888 }
4889
4890 typedef void (GLAPIENTRYP _glptr_GetColorTableParameteriv)(GLenum, GLenum, GLint *);
4891 #define CALL_GetColorTableParameteriv(disp, parameters) \
4892 (* GET_GetColorTableParameteriv(disp)) parameters
4893 static inline _glptr_GetColorTableParameteriv GET_GetColorTableParameteriv(struct _glapi_table *disp) {
4894 return (_glptr_GetColorTableParameteriv) (GET_by_offset(disp, _gloffset_GetColorTableParameteriv));
4895 }
4896
4897 static inline void SET_GetColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
4898 SET_by_offset(disp, _gloffset_GetColorTableParameteriv, fn);
4899 }
4900
4901 typedef void (GLAPIENTRYP _glptr_ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
4902 #define CALL_ColorSubTable(disp, parameters) \
4903 (* GET_ColorSubTable(disp)) parameters
4904 static inline _glptr_ColorSubTable GET_ColorSubTable(struct _glapi_table *disp) {
4905 return (_glptr_ColorSubTable) (GET_by_offset(disp, _gloffset_ColorSubTable));
4906 }
4907
4908 static inline void SET_ColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
4909 SET_by_offset(disp, _gloffset_ColorSubTable, fn);
4910 }
4911
4912 typedef void (GLAPIENTRYP _glptr_CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei);
4913 #define CALL_CopyColorSubTable(disp, parameters) \
4914 (* GET_CopyColorSubTable(disp)) parameters
4915 static inline _glptr_CopyColorSubTable GET_CopyColorSubTable(struct _glapi_table *disp) {
4916 return (_glptr_CopyColorSubTable) (GET_by_offset(disp, _gloffset_CopyColorSubTable));
4917 }
4918
4919 static inline void SET_CopyColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLint, GLint, GLsizei)) {
4920 SET_by_offset(disp, _gloffset_CopyColorSubTable, fn);
4921 }
4922
4923 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
4924 #define CALL_ConvolutionFilter1D(disp, parameters) \
4925 (* GET_ConvolutionFilter1D(disp)) parameters
4926 static inline _glptr_ConvolutionFilter1D GET_ConvolutionFilter1D(struct _glapi_table *disp) {
4927 return (_glptr_ConvolutionFilter1D) (GET_by_offset(disp, _gloffset_ConvolutionFilter1D));
4928 }
4929
4930 static inline void SET_ConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) {
4931 SET_by_offset(disp, _gloffset_ConvolutionFilter1D, fn);
4932 }
4933
4934 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
4935 #define CALL_ConvolutionFilter2D(disp, parameters) \
4936 (* GET_ConvolutionFilter2D(disp)) parameters
4937 static inline _glptr_ConvolutionFilter2D GET_ConvolutionFilter2D(struct _glapi_table *disp) {
4938 return (_glptr_ConvolutionFilter2D) (GET_by_offset(disp, _gloffset_ConvolutionFilter2D));
4939 }
4940
4941 static inline void SET_ConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
4942 SET_by_offset(disp, _gloffset_ConvolutionFilter2D, fn);
4943 }
4944
4945 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterf)(GLenum, GLenum, GLfloat);
4946 #define CALL_ConvolutionParameterf(disp, parameters) \
4947 (* GET_ConvolutionParameterf(disp)) parameters
4948 static inline _glptr_ConvolutionParameterf GET_ConvolutionParameterf(struct _glapi_table *disp) {
4949 return (_glptr_ConvolutionParameterf) (GET_by_offset(disp, _gloffset_ConvolutionParameterf));
4950 }
4951
4952 static inline void SET_ConvolutionParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) {
4953 SET_by_offset(disp, _gloffset_ConvolutionParameterf, fn);
4954 }
4955
4956 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *);
4957 #define CALL_ConvolutionParameterfv(disp, parameters) \
4958 (* GET_ConvolutionParameterfv(disp)) parameters
4959 static inline _glptr_ConvolutionParameterfv GET_ConvolutionParameterfv(struct _glapi_table *disp) {
4960 return (_glptr_ConvolutionParameterfv) (GET_by_offset(disp, _gloffset_ConvolutionParameterfv));
4961 }
4962
4963 static inline void SET_ConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) {
4964 SET_by_offset(disp, _gloffset_ConvolutionParameterfv, fn);
4965 }
4966
4967 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteri)(GLenum, GLenum, GLint);
4968 #define CALL_ConvolutionParameteri(disp, parameters) \
4969 (* GET_ConvolutionParameteri(disp)) parameters
4970 static inline _glptr_ConvolutionParameteri GET_ConvolutionParameteri(struct _glapi_table *disp) {
4971 return (_glptr_ConvolutionParameteri) (GET_by_offset(disp, _gloffset_ConvolutionParameteri));
4972 }
4973
4974 static inline void SET_ConvolutionParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
4975 SET_by_offset(disp, _gloffset_ConvolutionParameteri, fn);
4976 }
4977
4978 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteriv)(GLenum, GLenum, const GLint *);
4979 #define CALL_ConvolutionParameteriv(disp, parameters) \
4980 (* GET_ConvolutionParameteriv(disp)) parameters
4981 static inline _glptr_ConvolutionParameteriv GET_ConvolutionParameteriv(struct _glapi_table *disp) {
4982 return (_glptr_ConvolutionParameteriv) (GET_by_offset(disp, _gloffset_ConvolutionParameteriv));
4983 }
4984
4985 static inline void SET_ConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
4986 SET_by_offset(disp, _gloffset_ConvolutionParameteriv, fn);
4987 }
4988
4989 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter1D)(GLenum, GLenum, GLint, GLint, GLsizei);
4990 #define CALL_CopyConvolutionFilter1D(disp, parameters) \
4991 (* GET_CopyConvolutionFilter1D(disp)) parameters
4992 static inline _glptr_CopyConvolutionFilter1D GET_CopyConvolutionFilter1D(struct _glapi_table *disp) {
4993 return (_glptr_CopyConvolutionFilter1D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter1D));
4994 }
4995
4996 static inline void SET_CopyConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) {
4997 SET_by_offset(disp, _gloffset_CopyConvolutionFilter1D, fn);
4998 }
4999
5000 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter2D)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
5001 #define CALL_CopyConvolutionFilter2D(disp, parameters) \
5002 (* GET_CopyConvolutionFilter2D(disp)) parameters
5003 static inline _glptr_CopyConvolutionFilter2D GET_CopyConvolutionFilter2D(struct _glapi_table *disp) {
5004 return (_glptr_CopyConvolutionFilter2D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter2D));
5005 }
5006
5007 static inline void SET_CopyConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei)) {
5008 SET_by_offset(disp, _gloffset_CopyConvolutionFilter2D, fn);
5009 }
5010
5011 typedef void (GLAPIENTRYP _glptr_GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *);
5012 #define CALL_GetConvolutionFilter(disp, parameters) \
5013 (* GET_GetConvolutionFilter(disp)) parameters
5014 static inline _glptr_GetConvolutionFilter GET_GetConvolutionFilter(struct _glapi_table *disp) {
5015 return (_glptr_GetConvolutionFilter) (GET_by_offset(disp, _gloffset_GetConvolutionFilter));
5016 }
5017
5018 static inline void SET_GetConvolutionFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) {
5019 SET_by_offset(disp, _gloffset_GetConvolutionFilter, fn);
5020 }
5021
5022 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *);
5023 #define CALL_GetConvolutionParameterfv(disp, parameters) \
5024 (* GET_GetConvolutionParameterfv(disp)) parameters
5025 static inline _glptr_GetConvolutionParameterfv GET_GetConvolutionParameterfv(struct _glapi_table *disp) {
5026 return (_glptr_GetConvolutionParameterfv) (GET_by_offset(disp, _gloffset_GetConvolutionParameterfv));
5027 }
5028
5029 static inline void SET_GetConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5030 SET_by_offset(disp, _gloffset_GetConvolutionParameterfv, fn);
5031 }
5032
5033 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameteriv)(GLenum, GLenum, GLint *);
5034 #define CALL_GetConvolutionParameteriv(disp, parameters) \
5035 (* GET_GetConvolutionParameteriv(disp)) parameters
5036 static inline _glptr_GetConvolutionParameteriv GET_GetConvolutionParameteriv(struct _glapi_table *disp) {
5037 return (_glptr_GetConvolutionParameteriv) (GET_by_offset(disp, _gloffset_GetConvolutionParameteriv));
5038 }
5039
5040 static inline void SET_GetConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5041 SET_by_offset(disp, _gloffset_GetConvolutionParameteriv, fn);
5042 }
5043
5044 typedef void (GLAPIENTRYP _glptr_GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
5045 #define CALL_GetSeparableFilter(disp, parameters) \
5046 (* GET_GetSeparableFilter(disp)) parameters
5047 static inline _glptr_GetSeparableFilter GET_GetSeparableFilter(struct _glapi_table *disp) {
5048 return (_glptr_GetSeparableFilter) (GET_by_offset(disp, _gloffset_GetSeparableFilter));
5049 }
5050
5051 static inline void SET_GetSeparableFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *)) {
5052 SET_by_offset(disp, _gloffset_GetSeparableFilter, fn);
5053 }
5054
5055 typedef void (GLAPIENTRYP _glptr_SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
5056 #define CALL_SeparableFilter2D(disp, parameters) \
5057 (* GET_SeparableFilter2D(disp)) parameters
5058 static inline _glptr_SeparableFilter2D GET_SeparableFilter2D(struct _glapi_table *disp) {
5059 return (_glptr_SeparableFilter2D) (GET_by_offset(disp, _gloffset_SeparableFilter2D));
5060 }
5061
5062 static inline void SET_SeparableFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *)) {
5063 SET_by_offset(disp, _gloffset_SeparableFilter2D, fn);
5064 }
5065
5066 typedef void (GLAPIENTRYP _glptr_GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
5067 #define CALL_GetHistogram(disp, parameters) \
5068 (* GET_GetHistogram(disp)) parameters
5069 static inline _glptr_GetHistogram GET_GetHistogram(struct _glapi_table *disp) {
5070 return (_glptr_GetHistogram) (GET_by_offset(disp, _gloffset_GetHistogram));
5071 }
5072
5073 static inline void SET_GetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
5074 SET_by_offset(disp, _gloffset_GetHistogram, fn);
5075 }
5076
5077 typedef void (GLAPIENTRYP _glptr_GetHistogramParameterfv)(GLenum, GLenum, GLfloat *);
5078 #define CALL_GetHistogramParameterfv(disp, parameters) \
5079 (* GET_GetHistogramParameterfv(disp)) parameters
5080 static inline _glptr_GetHistogramParameterfv GET_GetHistogramParameterfv(struct _glapi_table *disp) {
5081 return (_glptr_GetHistogramParameterfv) (GET_by_offset(disp, _gloffset_GetHistogramParameterfv));
5082 }
5083
5084 static inline void SET_GetHistogramParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5085 SET_by_offset(disp, _gloffset_GetHistogramParameterfv, fn);
5086 }
5087
5088 typedef void (GLAPIENTRYP _glptr_GetHistogramParameteriv)(GLenum, GLenum, GLint *);
5089 #define CALL_GetHistogramParameteriv(disp, parameters) \
5090 (* GET_GetHistogramParameteriv(disp)) parameters
5091 static inline _glptr_GetHistogramParameteriv GET_GetHistogramParameteriv(struct _glapi_table *disp) {
5092 return (_glptr_GetHistogramParameteriv) (GET_by_offset(disp, _gloffset_GetHistogramParameteriv));
5093 }
5094
5095 static inline void SET_GetHistogramParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5096 SET_by_offset(disp, _gloffset_GetHistogramParameteriv, fn);
5097 }
5098
5099 typedef void (GLAPIENTRYP _glptr_GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
5100 #define CALL_GetMinmax(disp, parameters) \
5101 (* GET_GetMinmax(disp)) parameters
5102 static inline _glptr_GetMinmax GET_GetMinmax(struct _glapi_table *disp) {
5103 return (_glptr_GetMinmax) (GET_by_offset(disp, _gloffset_GetMinmax));
5104 }
5105
5106 static inline void SET_GetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) {
5107 SET_by_offset(disp, _gloffset_GetMinmax, fn);
5108 }
5109
5110 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *);
5111 #define CALL_GetMinmaxParameterfv(disp, parameters) \
5112 (* GET_GetMinmaxParameterfv(disp)) parameters
5113 static inline _glptr_GetMinmaxParameterfv GET_GetMinmaxParameterfv(struct _glapi_table *disp) {
5114 return (_glptr_GetMinmaxParameterfv) (GET_by_offset(disp, _gloffset_GetMinmaxParameterfv));
5115 }
5116
5117 static inline void SET_GetMinmaxParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
5118 SET_by_offset(disp, _gloffset_GetMinmaxParameterfv, fn);
5119 }
5120
5121 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameteriv)(GLenum, GLenum, GLint *);
5122 #define CALL_GetMinmaxParameteriv(disp, parameters) \
5123 (* GET_GetMinmaxParameteriv(disp)) parameters
5124 static inline _glptr_GetMinmaxParameteriv GET_GetMinmaxParameteriv(struct _glapi_table *disp) {
5125 return (_glptr_GetMinmaxParameteriv) (GET_by_offset(disp, _gloffset_GetMinmaxParameteriv));
5126 }
5127
5128 static inline void SET_GetMinmaxParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5129 SET_by_offset(disp, _gloffset_GetMinmaxParameteriv, fn);
5130 }
5131
5132 typedef void (GLAPIENTRYP _glptr_Histogram)(GLenum, GLsizei, GLenum, GLboolean);
5133 #define CALL_Histogram(disp, parameters) \
5134 (* GET_Histogram(disp)) parameters
5135 static inline _glptr_Histogram GET_Histogram(struct _glapi_table *disp) {
5136 return (_glptr_Histogram) (GET_by_offset(disp, _gloffset_Histogram));
5137 }
5138
5139 static inline void SET_Histogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLboolean)) {
5140 SET_by_offset(disp, _gloffset_Histogram, fn);
5141 }
5142
5143 typedef void (GLAPIENTRYP _glptr_Minmax)(GLenum, GLenum, GLboolean);
5144 #define CALL_Minmax(disp, parameters) \
5145 (* GET_Minmax(disp)) parameters
5146 static inline _glptr_Minmax GET_Minmax(struct _glapi_table *disp) {
5147 return (_glptr_Minmax) (GET_by_offset(disp, _gloffset_Minmax));
5148 }
5149
5150 static inline void SET_Minmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLboolean)) {
5151 SET_by_offset(disp, _gloffset_Minmax, fn);
5152 }
5153
5154 typedef void (GLAPIENTRYP _glptr_ResetHistogram)(GLenum);
5155 #define CALL_ResetHistogram(disp, parameters) \
5156 (* GET_ResetHistogram(disp)) parameters
5157 static inline _glptr_ResetHistogram GET_ResetHistogram(struct _glapi_table *disp) {
5158 return (_glptr_ResetHistogram) (GET_by_offset(disp, _gloffset_ResetHistogram));
5159 }
5160
5161 static inline void SET_ResetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5162 SET_by_offset(disp, _gloffset_ResetHistogram, fn);
5163 }
5164
5165 typedef void (GLAPIENTRYP _glptr_ResetMinmax)(GLenum);
5166 #define CALL_ResetMinmax(disp, parameters) \
5167 (* GET_ResetMinmax(disp)) parameters
5168 static inline _glptr_ResetMinmax GET_ResetMinmax(struct _glapi_table *disp) {
5169 return (_glptr_ResetMinmax) (GET_by_offset(disp, _gloffset_ResetMinmax));
5170 }
5171
5172 static inline void SET_ResetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5173 SET_by_offset(disp, _gloffset_ResetMinmax, fn);
5174 }
5175
5176 typedef void (GLAPIENTRYP _glptr_TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
5177 #define CALL_TexImage3D(disp, parameters) \
5178 (* GET_TexImage3D(disp)) parameters
5179 static inline _glptr_TexImage3D GET_TexImage3D(struct _glapi_table *disp) {
5180 return (_glptr_TexImage3D) (GET_by_offset(disp, _gloffset_TexImage3D));
5181 }
5182
5183 static inline void SET_TexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) {
5184 SET_by_offset(disp, _gloffset_TexImage3D, fn);
5185 }
5186
5187 typedef void (GLAPIENTRYP _glptr_TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
5188 #define CALL_TexSubImage3D(disp, parameters) \
5189 (* GET_TexSubImage3D(disp)) parameters
5190 static inline _glptr_TexSubImage3D GET_TexSubImage3D(struct _glapi_table *disp) {
5191 return (_glptr_TexSubImage3D) (GET_by_offset(disp, _gloffset_TexSubImage3D));
5192 }
5193
5194 static inline void SET_TexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) {
5195 SET_by_offset(disp, _gloffset_TexSubImage3D, fn);
5196 }
5197
5198 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
5199 #define CALL_CopyTexSubImage3D(disp, parameters) \
5200 (* GET_CopyTexSubImage3D(disp)) parameters
5201 static inline _glptr_CopyTexSubImage3D GET_CopyTexSubImage3D(struct _glapi_table *disp) {
5202 return (_glptr_CopyTexSubImage3D) (GET_by_offset(disp, _gloffset_CopyTexSubImage3D));
5203 }
5204
5205 static inline void SET_CopyTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) {
5206 SET_by_offset(disp, _gloffset_CopyTexSubImage3D, fn);
5207 }
5208
5209 typedef const GLubyte * (GLAPIENTRYP _glptr_GetStringi)(GLenum, GLuint);
5210 #define CALL_GetStringi(disp, parameters) \
5211 (* GET_GetStringi(disp)) parameters
5212 static inline _glptr_GetStringi GET_GetStringi(struct _glapi_table *disp) {
5213 return (_glptr_GetStringi) (GET_by_offset(disp, _gloffset_GetStringi));
5214 }
5215
5216 static inline void SET_GetStringi(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum, GLuint)) {
5217 SET_by_offset(disp, _gloffset_GetStringi, fn);
5218 }
5219
5220 typedef void (GLAPIENTRYP _glptr_GetBufferParameteri64v)(GLenum, GLenum, GLint64 *);
5221 #define CALL_GetBufferParameteri64v(disp, parameters) \
5222 (* GET_GetBufferParameteri64v(disp)) parameters
5223 static inline _glptr_GetBufferParameteri64v GET_GetBufferParameteri64v(struct _glapi_table *disp) {
5224 return (_glptr_GetBufferParameteri64v) (GET_by_offset(disp, _gloffset_GetBufferParameteri64v));
5225 }
5226
5227 static inline void SET_GetBufferParameteri64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint64 *)) {
5228 SET_by_offset(disp, _gloffset_GetBufferParameteri64v, fn);
5229 }
5230
5231 typedef void (GLAPIENTRYP _glptr_GetInteger64i_v)(GLenum, GLuint, GLint64 *);
5232 #define CALL_GetInteger64i_v(disp, parameters) \
5233 (* GET_GetInteger64i_v(disp)) parameters
5234 static inline _glptr_GetInteger64i_v GET_GetInteger64i_v(struct _glapi_table *disp) {
5235 return (_glptr_GetInteger64i_v) (GET_by_offset(disp, _gloffset_GetInteger64i_v));
5236 }
5237
5238 static inline void SET_GetInteger64i_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint64 *)) {
5239 SET_by_offset(disp, _gloffset_GetInteger64i_v, fn);
5240 }
5241
5242 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixdARB)(const GLdouble *);
5243 #define CALL_LoadTransposeMatrixdARB(disp, parameters) \
5244 (* GET_LoadTransposeMatrixdARB(disp)) parameters
5245 static inline _glptr_LoadTransposeMatrixdARB GET_LoadTransposeMatrixdARB(struct _glapi_table *disp) {
5246 return (_glptr_LoadTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB));
5247 }
5248
5249 static inline void SET_LoadTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5250 SET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB, fn);
5251 }
5252
5253 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixfARB)(const GLfloat *);
5254 #define CALL_LoadTransposeMatrixfARB(disp, parameters) \
5255 (* GET_LoadTransposeMatrixfARB(disp)) parameters
5256 static inline _glptr_LoadTransposeMatrixfARB GET_LoadTransposeMatrixfARB(struct _glapi_table *disp) {
5257 return (_glptr_LoadTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB));
5258 }
5259
5260 static inline void SET_LoadTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5261 SET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB, fn);
5262 }
5263
5264 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixdARB)(const GLdouble *);
5265 #define CALL_MultTransposeMatrixdARB(disp, parameters) \
5266 (* GET_MultTransposeMatrixdARB(disp)) parameters
5267 static inline _glptr_MultTransposeMatrixdARB GET_MultTransposeMatrixdARB(struct _glapi_table *disp) {
5268 return (_glptr_MultTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixdARB));
5269 }
5270
5271 static inline void SET_MultTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5272 SET_by_offset(disp, _gloffset_MultTransposeMatrixdARB, fn);
5273 }
5274
5275 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixfARB)(const GLfloat *);
5276 #define CALL_MultTransposeMatrixfARB(disp, parameters) \
5277 (* GET_MultTransposeMatrixfARB(disp)) parameters
5278 static inline _glptr_MultTransposeMatrixfARB GET_MultTransposeMatrixfARB(struct _glapi_table *disp) {
5279 return (_glptr_MultTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixfARB));
5280 }
5281
5282 static inline void SET_MultTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5283 SET_by_offset(disp, _gloffset_MultTransposeMatrixfARB, fn);
5284 }
5285
5286 typedef void (GLAPIENTRYP _glptr_SampleCoverageARB)(GLclampf, GLboolean);
5287 #define CALL_SampleCoverageARB(disp, parameters) \
5288 (* GET_SampleCoverageARB(disp)) parameters
5289 static inline _glptr_SampleCoverageARB GET_SampleCoverageARB(struct _glapi_table *disp) {
5290 return (_glptr_SampleCoverageARB) (GET_by_offset(disp, _gloffset_SampleCoverageARB));
5291 }
5292
5293 static inline void SET_SampleCoverageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
5294 SET_by_offset(disp, _gloffset_SampleCoverageARB, fn);
5295 }
5296
5297 typedef void (GLAPIENTRYP _glptr_BindBufferARB)(GLenum, GLuint);
5298 #define CALL_BindBufferARB(disp, parameters) \
5299 (* GET_BindBufferARB(disp)) parameters
5300 static inline _glptr_BindBufferARB GET_BindBufferARB(struct _glapi_table *disp) {
5301 return (_glptr_BindBufferARB) (GET_by_offset(disp, _gloffset_BindBufferARB));
5302 }
5303
5304 static inline void SET_BindBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) {
5305 SET_by_offset(disp, _gloffset_BindBufferARB, fn);
5306 }
5307
5308 typedef void (GLAPIENTRYP _glptr_BufferDataARB)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum);
5309 #define CALL_BufferDataARB(disp, parameters) \
5310 (* GET_BufferDataARB(disp)) parameters
5311 static inline _glptr_BufferDataARB GET_BufferDataARB(struct _glapi_table *disp) {
5312 return (_glptr_BufferDataARB) (GET_by_offset(disp, _gloffset_BufferDataARB));
5313 }
5314
5315 static inline void SET_BufferDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum)) {
5316 SET_by_offset(disp, _gloffset_BufferDataARB, fn);
5317 }
5318
5319 typedef void (GLAPIENTRYP _glptr_BufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *);
5320 #define CALL_BufferSubDataARB(disp, parameters) \
5321 (* GET_BufferSubDataARB(disp)) parameters
5322 static inline _glptr_BufferSubDataARB GET_BufferSubDataARB(struct _glapi_table *disp) {
5323 return (_glptr_BufferSubDataARB) (GET_by_offset(disp, _gloffset_BufferSubDataARB));
5324 }
5325
5326 static inline void SET_BufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *)) {
5327 SET_by_offset(disp, _gloffset_BufferSubDataARB, fn);
5328 }
5329
5330 typedef void (GLAPIENTRYP _glptr_DeleteBuffersARB)(GLsizei, const GLuint *);
5331 #define CALL_DeleteBuffersARB(disp, parameters) \
5332 (* GET_DeleteBuffersARB(disp)) parameters
5333 static inline _glptr_DeleteBuffersARB GET_DeleteBuffersARB(struct _glapi_table *disp) {
5334 return (_glptr_DeleteBuffersARB) (GET_by_offset(disp, _gloffset_DeleteBuffersARB));
5335 }
5336
5337 static inline void SET_DeleteBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
5338 SET_by_offset(disp, _gloffset_DeleteBuffersARB, fn);
5339 }
5340
5341 typedef void (GLAPIENTRYP _glptr_GenBuffersARB)(GLsizei, GLuint *);
5342 #define CALL_GenBuffersARB(disp, parameters) \
5343 (* GET_GenBuffersARB(disp)) parameters
5344 static inline _glptr_GenBuffersARB GET_GenBuffersARB(struct _glapi_table *disp) {
5345 return (_glptr_GenBuffersARB) (GET_by_offset(disp, _gloffset_GenBuffersARB));
5346 }
5347
5348 static inline void SET_GenBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
5349 SET_by_offset(disp, _gloffset_GenBuffersARB, fn);
5350 }
5351
5352 typedef void (GLAPIENTRYP _glptr_GetBufferParameterivARB)(GLenum, GLenum, GLint *);
5353 #define CALL_GetBufferParameterivARB(disp, parameters) \
5354 (* GET_GetBufferParameterivARB(disp)) parameters
5355 static inline _glptr_GetBufferParameterivARB GET_GetBufferParameterivARB(struct _glapi_table *disp) {
5356 return (_glptr_GetBufferParameterivARB) (GET_by_offset(disp, _gloffset_GetBufferParameterivARB));
5357 }
5358
5359 static inline void SET_GetBufferParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
5360 SET_by_offset(disp, _gloffset_GetBufferParameterivARB, fn);
5361 }
5362
5363 typedef void (GLAPIENTRYP _glptr_GetBufferPointervARB)(GLenum, GLenum, GLvoid **);
5364 #define CALL_GetBufferPointervARB(disp, parameters) \
5365 (* GET_GetBufferPointervARB(disp)) parameters
5366 static inline _glptr_GetBufferPointervARB GET_GetBufferPointervARB(struct _glapi_table *disp) {
5367 return (_glptr_GetBufferPointervARB) (GET_by_offset(disp, _gloffset_GetBufferPointervARB));
5368 }
5369
5370 static inline void SET_GetBufferPointervARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
5371 SET_by_offset(disp, _gloffset_GetBufferPointervARB, fn);
5372 }
5373
5374 typedef void (GLAPIENTRYP _glptr_GetBufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *);
5375 #define CALL_GetBufferSubDataARB(disp, parameters) \
5376 (* GET_GetBufferSubDataARB(disp)) parameters
5377 static inline _glptr_GetBufferSubDataARB GET_GetBufferSubDataARB(struct _glapi_table *disp) {
5378 return (_glptr_GetBufferSubDataARB) (GET_by_offset(disp, _gloffset_GetBufferSubDataARB));
5379 }
5380
5381 static inline void SET_GetBufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *)) {
5382 SET_by_offset(disp, _gloffset_GetBufferSubDataARB, fn);
5383 }
5384
5385 typedef GLboolean (GLAPIENTRYP _glptr_IsBufferARB)(GLuint);
5386 #define CALL_IsBufferARB(disp, parameters) \
5387 (* GET_IsBufferARB(disp)) parameters
5388 static inline _glptr_IsBufferARB GET_IsBufferARB(struct _glapi_table *disp) {
5389 return (_glptr_IsBufferARB) (GET_by_offset(disp, _gloffset_IsBufferARB));
5390 }
5391
5392 static inline void SET_IsBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
5393 SET_by_offset(disp, _gloffset_IsBufferARB, fn);
5394 }
5395
5396 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferARB)(GLenum, GLenum);
5397 #define CALL_MapBufferARB(disp, parameters) \
5398 (* GET_MapBufferARB(disp)) parameters
5399 static inline _glptr_MapBufferARB GET_MapBufferARB(struct _glapi_table *disp) {
5400 return (_glptr_MapBufferARB) (GET_by_offset(disp, _gloffset_MapBufferARB));
5401 }
5402
5403 static inline void SET_MapBufferARB(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLenum)) {
5404 SET_by_offset(disp, _gloffset_MapBufferARB, fn);
5405 }
5406
5407 typedef GLboolean (GLAPIENTRYP _glptr_UnmapBufferARB)(GLenum);
5408 #define CALL_UnmapBufferARB(disp, parameters) \
5409 (* GET_UnmapBufferARB(disp)) parameters
5410 static inline _glptr_UnmapBufferARB GET_UnmapBufferARB(struct _glapi_table *disp) {
5411 return (_glptr_UnmapBufferARB) (GET_by_offset(disp, _gloffset_UnmapBufferARB));
5412 }
5413
5414 static inline void SET_UnmapBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) {
5415 SET_by_offset(disp, _gloffset_UnmapBufferARB, fn);
5416 }
5417
5418 typedef void (GLAPIENTRYP _glptr_AttachObjectARB)(GLhandleARB, GLhandleARB);
5419 #define CALL_AttachObjectARB(disp, parameters) \
5420 (* GET_AttachObjectARB(disp)) parameters
5421 static inline _glptr_AttachObjectARB GET_AttachObjectARB(struct _glapi_table *disp) {
5422 return (_glptr_AttachObjectARB) (GET_by_offset(disp, _gloffset_AttachObjectARB));
5423 }
5424
5425 static inline void SET_AttachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
5426 SET_by_offset(disp, _gloffset_AttachObjectARB, fn);
5427 }
5428
5429 typedef void (GLAPIENTRYP _glptr_CompileShaderARB)(GLhandleARB);
5430 #define CALL_CompileShaderARB(disp, parameters) \
5431 (* GET_CompileShaderARB(disp)) parameters
5432 static inline _glptr_CompileShaderARB GET_CompileShaderARB(struct _glapi_table *disp) {
5433 return (_glptr_CompileShaderARB) (GET_by_offset(disp, _gloffset_CompileShaderARB));
5434 }
5435
5436 static inline void SET_CompileShaderARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
5437 SET_by_offset(disp, _gloffset_CompileShaderARB, fn);
5438 }
5439
5440 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateProgramObjectARB)(void);
5441 #define CALL_CreateProgramObjectARB(disp, parameters) \
5442 (* GET_CreateProgramObjectARB(disp)) parameters
5443 static inline _glptr_CreateProgramObjectARB GET_CreateProgramObjectARB(struct _glapi_table *disp) {
5444 return (_glptr_CreateProgramObjectARB) (GET_by_offset(disp, _gloffset_CreateProgramObjectARB));
5445 }
5446
5447 static inline void SET_CreateProgramObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(void)) {
5448 SET_by_offset(disp, _gloffset_CreateProgramObjectARB, fn);
5449 }
5450
5451 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateShaderObjectARB)(GLenum);
5452 #define CALL_CreateShaderObjectARB(disp, parameters) \
5453 (* GET_CreateShaderObjectARB(disp)) parameters
5454 static inline _glptr_CreateShaderObjectARB GET_CreateShaderObjectARB(struct _glapi_table *disp) {
5455 return (_glptr_CreateShaderObjectARB) (GET_by_offset(disp, _gloffset_CreateShaderObjectARB));
5456 }
5457
5458 static inline void SET_CreateShaderObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
5459 SET_by_offset(disp, _gloffset_CreateShaderObjectARB, fn);
5460 }
5461
5462 typedef void (GLAPIENTRYP _glptr_DeleteObjectARB)(GLhandleARB);
5463 #define CALL_DeleteObjectARB(disp, parameters) \
5464 (* GET_DeleteObjectARB(disp)) parameters
5465 static inline _glptr_DeleteObjectARB GET_DeleteObjectARB(struct _glapi_table *disp) {
5466 return (_glptr_DeleteObjectARB) (GET_by_offset(disp, _gloffset_DeleteObjectARB));
5467 }
5468
5469 static inline void SET_DeleteObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
5470 SET_by_offset(disp, _gloffset_DeleteObjectARB, fn);
5471 }
5472
5473 typedef void (GLAPIENTRYP _glptr_DetachObjectARB)(GLhandleARB, GLhandleARB);
5474 #define CALL_DetachObjectARB(disp, parameters) \
5475 (* GET_DetachObjectARB(disp)) parameters
5476 static inline _glptr_DetachObjectARB GET_DetachObjectARB(struct _glapi_table *disp) {
5477 return (_glptr_DetachObjectARB) (GET_by_offset(disp, _gloffset_DetachObjectARB));
5478 }
5479
5480 static inline void SET_DetachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) {
5481 SET_by_offset(disp, _gloffset_DetachObjectARB, fn);
5482 }
5483
5484 typedef void (GLAPIENTRYP _glptr_GetAttachedObjectsARB)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *);
5485 #define CALL_GetAttachedObjectsARB(disp, parameters) \
5486 (* GET_GetAttachedObjectsARB(disp)) parameters
5487 static inline _glptr_GetAttachedObjectsARB GET_GetAttachedObjectsARB(struct _glapi_table *disp) {
5488 return (_glptr_GetAttachedObjectsARB) (GET_by_offset(disp, _gloffset_GetAttachedObjectsARB));
5489 }
5490
5491 static inline void SET_GetAttachedObjectsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *)) {
5492 SET_by_offset(disp, _gloffset_GetAttachedObjectsARB, fn);
5493 }
5494
5495 typedef GLhandleARB (GLAPIENTRYP _glptr_GetHandleARB)(GLenum);
5496 #define CALL_GetHandleARB(disp, parameters) \
5497 (* GET_GetHandleARB(disp)) parameters
5498 static inline _glptr_GetHandleARB GET_GetHandleARB(struct _glapi_table *disp) {
5499 return (_glptr_GetHandleARB) (GET_by_offset(disp, _gloffset_GetHandleARB));
5500 }
5501
5502 static inline void SET_GetHandleARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) {
5503 SET_by_offset(disp, _gloffset_GetHandleARB, fn);
5504 }
5505
5506 typedef void (GLAPIENTRYP _glptr_GetInfoLogARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
5507 #define CALL_GetInfoLogARB(disp, parameters) \
5508 (* GET_GetInfoLogARB(disp)) parameters
5509 static inline _glptr_GetInfoLogARB GET_GetInfoLogARB(struct _glapi_table *disp) {
5510 return (_glptr_GetInfoLogARB) (GET_by_offset(disp, _gloffset_GetInfoLogARB));
5511 }
5512
5513 static inline void SET_GetInfoLogARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
5514 SET_by_offset(disp, _gloffset_GetInfoLogARB, fn);
5515 }
5516
5517 typedef void (GLAPIENTRYP _glptr_GetObjectParameterfvARB)(GLhandleARB, GLenum, GLfloat *);
5518 #define CALL_GetObjectParameterfvARB(disp, parameters) \
5519 (* GET_GetObjectParameterfvARB(disp)) parameters
5520 static inline _glptr_GetObjectParameterfvARB GET_GetObjectParameterfvARB(struct _glapi_table *disp) {
5521 return (_glptr_GetObjectParameterfvARB) (GET_by_offset(disp, _gloffset_GetObjectParameterfvARB));
5522 }
5523
5524 static inline void SET_GetObjectParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLfloat *)) {
5525 SET_by_offset(disp, _gloffset_GetObjectParameterfvARB, fn);
5526 }
5527
5528 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivARB)(GLhandleARB, GLenum, GLint *);
5529 #define CALL_GetObjectParameterivARB(disp, parameters) \
5530 (* GET_GetObjectParameterivARB(disp)) parameters
5531 static inline _glptr_GetObjectParameterivARB GET_GetObjectParameterivARB(struct _glapi_table *disp) {
5532 return (_glptr_GetObjectParameterivARB) (GET_by_offset(disp, _gloffset_GetObjectParameterivARB));
5533 }
5534
5535 static inline void SET_GetObjectParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLint *)) {
5536 SET_by_offset(disp, _gloffset_GetObjectParameterivARB, fn);
5537 }
5538
5539 typedef void (GLAPIENTRYP _glptr_GetShaderSourceARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *);
5540 #define CALL_GetShaderSourceARB(disp, parameters) \
5541 (* GET_GetShaderSourceARB(disp)) parameters
5542 static inline _glptr_GetShaderSourceARB GET_GetShaderSourceARB(struct _glapi_table *disp) {
5543 return (_glptr_GetShaderSourceARB) (GET_by_offset(disp, _gloffset_GetShaderSourceARB));
5544 }
5545
5546 static inline void SET_GetShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) {
5547 SET_by_offset(disp, _gloffset_GetShaderSourceARB, fn);
5548 }
5549
5550 typedef void (GLAPIENTRYP _glptr_LinkProgramARB)(GLhandleARB);
5551 #define CALL_LinkProgramARB(disp, parameters) \
5552 (* GET_LinkProgramARB(disp)) parameters
5553 static inline _glptr_LinkProgramARB GET_LinkProgramARB(struct _glapi_table *disp) {
5554 return (_glptr_LinkProgramARB) (GET_by_offset(disp, _gloffset_LinkProgramARB));
5555 }
5556
5557 static inline void SET_LinkProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
5558 SET_by_offset(disp, _gloffset_LinkProgramARB, fn);
5559 }
5560
5561 typedef void (GLAPIENTRYP _glptr_ShaderSourceARB)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *);
5562 #define CALL_ShaderSourceARB(disp, parameters) \
5563 (* GET_ShaderSourceARB(disp)) parameters
5564 static inline _glptr_ShaderSourceARB GET_ShaderSourceARB(struct _glapi_table *disp) {
5565 return (_glptr_ShaderSourceARB) (GET_by_offset(disp, _gloffset_ShaderSourceARB));
5566 }
5567
5568 static inline void SET_ShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *)) {
5569 SET_by_offset(disp, _gloffset_ShaderSourceARB, fn);
5570 }
5571
5572 typedef void (GLAPIENTRYP _glptr_ValidateProgramARB)(GLhandleARB);
5573 #define CALL_ValidateProgramARB(disp, parameters) \
5574 (* GET_ValidateProgramARB(disp)) parameters
5575 static inline _glptr_ValidateProgramARB GET_ValidateProgramARB(struct _glapi_table *disp) {
5576 return (_glptr_ValidateProgramARB) (GET_by_offset(disp, _gloffset_ValidateProgramARB));
5577 }
5578
5579 static inline void SET_ValidateProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) {
5580 SET_by_offset(disp, _gloffset_ValidateProgramARB, fn);
5581 }
5582
5583 typedef void (GLAPIENTRYP _glptr_GetActiveAttribARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *);
5584 #define CALL_GetActiveAttribARB(disp, parameters) \
5585 (* GET_GetActiveAttribARB(disp)) parameters
5586 static inline _glptr_GetActiveAttribARB GET_GetActiveAttribARB(struct _glapi_table *disp) {
5587 return (_glptr_GetActiveAttribARB) (GET_by_offset(disp, _gloffset_GetActiveAttribARB));
5588 }
5589
5590 static inline void SET_GetActiveAttribARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) {
5591 SET_by_offset(disp, _gloffset_GetActiveAttribARB, fn);
5592 }
5593
5594 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRange)(GLenum, GLintptr, GLsizeiptr);
5595 #define CALL_FlushMappedBufferRange(disp, parameters) \
5596 (* GET_FlushMappedBufferRange(disp)) parameters
5597 static inline _glptr_FlushMappedBufferRange GET_FlushMappedBufferRange(struct _glapi_table *disp) {
5598 return (_glptr_FlushMappedBufferRange) (GET_by_offset(disp, _gloffset_FlushMappedBufferRange));
5599 }
5600
5601 static inline void SET_FlushMappedBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
5602 SET_by_offset(disp, _gloffset_FlushMappedBufferRange, fn);
5603 }
5604
5605 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferRange)(GLenum, GLintptr, GLsizeiptr, GLbitfield);
5606 #define CALL_MapBufferRange(disp, parameters) \
5607 (* GET_MapBufferRange(disp)) parameters
5608 static inline _glptr_MapBufferRange GET_MapBufferRange(struct _glapi_table *disp) {
5609 return (_glptr_MapBufferRange) (GET_by_offset(disp, _gloffset_MapBufferRange));
5610 }
5611
5612 static inline void SET_MapBufferRange(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLbitfield)) {
5613 SET_by_offset(disp, _gloffset_MapBufferRange, fn);
5614 }
5615
5616 typedef void (GLAPIENTRYP _glptr_BindVertexArray)(GLuint);
5617 #define CALL_BindVertexArray(disp, parameters) \
5618 (* GET_BindVertexArray(disp)) parameters
5619 static inline _glptr_BindVertexArray GET_BindVertexArray(struct _glapi_table *disp) {
5620 return (_glptr_BindVertexArray) (GET_by_offset(disp, _gloffset_BindVertexArray));
5621 }
5622
5623 static inline void SET_BindVertexArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
5624 SET_by_offset(disp, _gloffset_BindVertexArray, fn);
5625 }
5626
5627 typedef void (GLAPIENTRYP _glptr_GenVertexArrays)(GLsizei, GLuint *);
5628 #define CALL_GenVertexArrays(disp, parameters) \
5629 (* GET_GenVertexArrays(disp)) parameters
5630 static inline _glptr_GenVertexArrays GET_GenVertexArrays(struct _glapi_table *disp) {
5631 return (_glptr_GenVertexArrays) (GET_by_offset(disp, _gloffset_GenVertexArrays));
5632 }
5633
5634 static inline void SET_GenVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
5635 SET_by_offset(disp, _gloffset_GenVertexArrays, fn);
5636 }
5637
5638 typedef void (GLAPIENTRYP _glptr_TexStorage1D)(GLenum, GLsizei, GLenum, GLsizei);
5639 #define CALL_TexStorage1D(disp, parameters) \
5640 (* GET_TexStorage1D(disp)) parameters
5641 static inline _glptr_TexStorage1D GET_TexStorage1D(struct _glapi_table *disp) {
5642 return (_glptr_TexStorage1D) (GET_by_offset(disp, _gloffset_TexStorage1D));
5643 }
5644
5645 static inline void SET_TexStorage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei)) {
5646 SET_by_offset(disp, _gloffset_TexStorage1D, fn);
5647 }
5648
5649 typedef void (GLAPIENTRYP _glptr_TexStorage2D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei);
5650 #define CALL_TexStorage2D(disp, parameters) \
5651 (* GET_TexStorage2D(disp)) parameters
5652 static inline _glptr_TexStorage2D GET_TexStorage2D(struct _glapi_table *disp) {
5653 return (_glptr_TexStorage2D) (GET_by_offset(disp, _gloffset_TexStorage2D));
5654 }
5655
5656 static inline void SET_TexStorage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
5657 SET_by_offset(disp, _gloffset_TexStorage2D, fn);
5658 }
5659
5660 typedef void (GLAPIENTRYP _glptr_TexStorage3D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
5661 #define CALL_TexStorage3D(disp, parameters) \
5662 (* GET_TexStorage3D(disp)) parameters
5663 static inline _glptr_TexStorage3D GET_TexStorage3D(struct _glapi_table *disp) {
5664 return (_glptr_TexStorage3D) (GET_by_offset(disp, _gloffset_TexStorage3D));
5665 }
5666
5667 static inline void SET_TexStorage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
5668 SET_by_offset(disp, _gloffset_TexStorage3D, fn);
5669 }
5670
5671 typedef void (GLAPIENTRYP _glptr_TextureStorage1DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei);
5672 #define CALL_TextureStorage1DEXT(disp, parameters) \
5673 (* GET_TextureStorage1DEXT(disp)) parameters
5674 static inline _glptr_TextureStorage1DEXT GET_TextureStorage1DEXT(struct _glapi_table *disp) {
5675 return (_glptr_TextureStorage1DEXT) (GET_by_offset(disp, _gloffset_TextureStorage1DEXT));
5676 }
5677
5678 static inline void SET_TextureStorage1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei)) {
5679 SET_by_offset(disp, _gloffset_TextureStorage1DEXT, fn);
5680 }
5681
5682 typedef void (GLAPIENTRYP _glptr_TextureStorage2DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei);
5683 #define CALL_TextureStorage2DEXT(disp, parameters) \
5684 (* GET_TextureStorage2DEXT(disp)) parameters
5685 static inline _glptr_TextureStorage2DEXT GET_TextureStorage2DEXT(struct _glapi_table *disp) {
5686 return (_glptr_TextureStorage2DEXT) (GET_by_offset(disp, _gloffset_TextureStorage2DEXT));
5687 }
5688
5689 static inline void SET_TextureStorage2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei)) {
5690 SET_by_offset(disp, _gloffset_TextureStorage2DEXT, fn);
5691 }
5692
5693 typedef void (GLAPIENTRYP _glptr_TextureStorage3DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei);
5694 #define CALL_TextureStorage3DEXT(disp, parameters) \
5695 (* GET_TextureStorage3DEXT(disp)) parameters
5696 static inline _glptr_TextureStorage3DEXT GET_TextureStorage3DEXT(struct _glapi_table *disp) {
5697 return (_glptr_TextureStorage3DEXT) (GET_by_offset(disp, _gloffset_TextureStorage3DEXT));
5698 }
5699
5700 static inline void SET_TextureStorage3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) {
5701 SET_by_offset(disp, _gloffset_TextureStorage3DEXT, fn);
5702 }
5703
5704 typedef void (GLAPIENTRYP _glptr_PolygonOffsetEXT)(GLfloat, GLfloat);
5705 #define CALL_PolygonOffsetEXT(disp, parameters) \
5706 (* GET_PolygonOffsetEXT(disp)) parameters
5707 static inline _glptr_PolygonOffsetEXT GET_PolygonOffsetEXT(struct _glapi_table *disp) {
5708 return (_glptr_PolygonOffsetEXT) (GET_by_offset(disp, _gloffset_PolygonOffsetEXT));
5709 }
5710
5711 static inline void SET_PolygonOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
5712 SET_by_offset(disp, _gloffset_PolygonOffsetEXT, fn);
5713 }
5714
5715 typedef void (GLAPIENTRYP _glptr_SampleMaskSGIS)(GLclampf, GLboolean);
5716 #define CALL_SampleMaskSGIS(disp, parameters) \
5717 (* GET_SampleMaskSGIS(disp)) parameters
5718 static inline _glptr_SampleMaskSGIS GET_SampleMaskSGIS(struct _glapi_table *disp) {
5719 return (_glptr_SampleMaskSGIS) (GET_by_offset(disp, _gloffset_SampleMaskSGIS));
5720 }
5721
5722 static inline void SET_SampleMaskSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) {
5723 SET_by_offset(disp, _gloffset_SampleMaskSGIS, fn);
5724 }
5725
5726 typedef void (GLAPIENTRYP _glptr_SamplePatternSGIS)(GLenum);
5727 #define CALL_SamplePatternSGIS(disp, parameters) \
5728 (* GET_SamplePatternSGIS(disp)) parameters
5729 static inline _glptr_SamplePatternSGIS GET_SamplePatternSGIS(struct _glapi_table *disp) {
5730 return (_glptr_SamplePatternSGIS) (GET_by_offset(disp, _gloffset_SamplePatternSGIS));
5731 }
5732
5733 static inline void SET_SamplePatternSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
5734 SET_by_offset(disp, _gloffset_SamplePatternSGIS, fn);
5735 }
5736
5737 typedef void (GLAPIENTRYP _glptr_ColorPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
5738 #define CALL_ColorPointerEXT(disp, parameters) \
5739 (* GET_ColorPointerEXT(disp)) parameters
5740 static inline _glptr_ColorPointerEXT GET_ColorPointerEXT(struct _glapi_table *disp) {
5741 return (_glptr_ColorPointerEXT) (GET_by_offset(disp, _gloffset_ColorPointerEXT));
5742 }
5743
5744 static inline void SET_ColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
5745 SET_by_offset(disp, _gloffset_ColorPointerEXT, fn);
5746 }
5747
5748 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointerEXT)(GLsizei, GLsizei, const GLboolean *);
5749 #define CALL_EdgeFlagPointerEXT(disp, parameters) \
5750 (* GET_EdgeFlagPointerEXT(disp)) parameters
5751 static inline _glptr_EdgeFlagPointerEXT GET_EdgeFlagPointerEXT(struct _glapi_table *disp) {
5752 return (_glptr_EdgeFlagPointerEXT) (GET_by_offset(disp, _gloffset_EdgeFlagPointerEXT));
5753 }
5754
5755 static inline void SET_EdgeFlagPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, const GLboolean *)) {
5756 SET_by_offset(disp, _gloffset_EdgeFlagPointerEXT, fn);
5757 }
5758
5759 typedef void (GLAPIENTRYP _glptr_IndexPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
5760 #define CALL_IndexPointerEXT(disp, parameters) \
5761 (* GET_IndexPointerEXT(disp)) parameters
5762 static inline _glptr_IndexPointerEXT GET_IndexPointerEXT(struct _glapi_table *disp) {
5763 return (_glptr_IndexPointerEXT) (GET_by_offset(disp, _gloffset_IndexPointerEXT));
5764 }
5765
5766 static inline void SET_IndexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
5767 SET_by_offset(disp, _gloffset_IndexPointerEXT, fn);
5768 }
5769
5770 typedef void (GLAPIENTRYP _glptr_NormalPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *);
5771 #define CALL_NormalPointerEXT(disp, parameters) \
5772 (* GET_NormalPointerEXT(disp)) parameters
5773 static inline _glptr_NormalPointerEXT GET_NormalPointerEXT(struct _glapi_table *disp) {
5774 return (_glptr_NormalPointerEXT) (GET_by_offset(disp, _gloffset_NormalPointerEXT));
5775 }
5776
5777 static inline void SET_NormalPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) {
5778 SET_by_offset(disp, _gloffset_NormalPointerEXT, fn);
5779 }
5780
5781 typedef void (GLAPIENTRYP _glptr_TexCoordPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
5782 #define CALL_TexCoordPointerEXT(disp, parameters) \
5783 (* GET_TexCoordPointerEXT(disp)) parameters
5784 static inline _glptr_TexCoordPointerEXT GET_TexCoordPointerEXT(struct _glapi_table *disp) {
5785 return (_glptr_TexCoordPointerEXT) (GET_by_offset(disp, _gloffset_TexCoordPointerEXT));
5786 }
5787
5788 static inline void SET_TexCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
5789 SET_by_offset(disp, _gloffset_TexCoordPointerEXT, fn);
5790 }
5791
5792 typedef void (GLAPIENTRYP _glptr_VertexPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
5793 #define CALL_VertexPointerEXT(disp, parameters) \
5794 (* GET_VertexPointerEXT(disp)) parameters
5795 static inline _glptr_VertexPointerEXT GET_VertexPointerEXT(struct _glapi_table *disp) {
5796 return (_glptr_VertexPointerEXT) (GET_by_offset(disp, _gloffset_VertexPointerEXT));
5797 }
5798
5799 static inline void SET_VertexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) {
5800 SET_by_offset(disp, _gloffset_VertexPointerEXT, fn);
5801 }
5802
5803 typedef void (GLAPIENTRYP _glptr_PointParameterfEXT)(GLenum, GLfloat);
5804 #define CALL_PointParameterfEXT(disp, parameters) \
5805 (* GET_PointParameterfEXT(disp)) parameters
5806 static inline _glptr_PointParameterfEXT GET_PointParameterfEXT(struct _glapi_table *disp) {
5807 return (_glptr_PointParameterfEXT) (GET_by_offset(disp, _gloffset_PointParameterfEXT));
5808 }
5809
5810 static inline void SET_PointParameterfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
5811 SET_by_offset(disp, _gloffset_PointParameterfEXT, fn);
5812 }
5813
5814 typedef void (GLAPIENTRYP _glptr_PointParameterfvEXT)(GLenum, const GLfloat *);
5815 #define CALL_PointParameterfvEXT(disp, parameters) \
5816 (* GET_PointParameterfvEXT(disp)) parameters
5817 static inline _glptr_PointParameterfvEXT GET_PointParameterfvEXT(struct _glapi_table *disp) {
5818 return (_glptr_PointParameterfvEXT) (GET_by_offset(disp, _gloffset_PointParameterfvEXT));
5819 }
5820
5821 static inline void SET_PointParameterfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
5822 SET_by_offset(disp, _gloffset_PointParameterfvEXT, fn);
5823 }
5824
5825 typedef void (GLAPIENTRYP _glptr_LockArraysEXT)(GLint, GLsizei);
5826 #define CALL_LockArraysEXT(disp, parameters) \
5827 (* GET_LockArraysEXT(disp)) parameters
5828 static inline _glptr_LockArraysEXT GET_LockArraysEXT(struct _glapi_table *disp) {
5829 return (_glptr_LockArraysEXT) (GET_by_offset(disp, _gloffset_LockArraysEXT));
5830 }
5831
5832 static inline void SET_LockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei)) {
5833 SET_by_offset(disp, _gloffset_LockArraysEXT, fn);
5834 }
5835
5836 typedef void (GLAPIENTRYP _glptr_UnlockArraysEXT)(void);
5837 #define CALL_UnlockArraysEXT(disp, parameters) \
5838 (* GET_UnlockArraysEXT(disp)) parameters
5839 static inline _glptr_UnlockArraysEXT GET_UnlockArraysEXT(struct _glapi_table *disp) {
5840 return (_glptr_UnlockArraysEXT) (GET_by_offset(disp, _gloffset_UnlockArraysEXT));
5841 }
5842
5843 static inline void SET_UnlockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
5844 SET_by_offset(disp, _gloffset_UnlockArraysEXT, fn);
5845 }
5846
5847 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bEXT)(GLbyte, GLbyte, GLbyte);
5848 #define CALL_SecondaryColor3bEXT(disp, parameters) \
5849 (* GET_SecondaryColor3bEXT(disp)) parameters
5850 static inline _glptr_SecondaryColor3bEXT GET_SecondaryColor3bEXT(struct _glapi_table *disp) {
5851 return (_glptr_SecondaryColor3bEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bEXT));
5852 }
5853
5854 static inline void SET_SecondaryColor3bEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) {
5855 SET_by_offset(disp, _gloffset_SecondaryColor3bEXT, fn);
5856 }
5857
5858 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bvEXT)(const GLbyte *);
5859 #define CALL_SecondaryColor3bvEXT(disp, parameters) \
5860 (* GET_SecondaryColor3bvEXT(disp)) parameters
5861 static inline _glptr_SecondaryColor3bvEXT GET_SecondaryColor3bvEXT(struct _glapi_table *disp) {
5862 return (_glptr_SecondaryColor3bvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bvEXT));
5863 }
5864
5865 static inline void SET_SecondaryColor3bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) {
5866 SET_by_offset(disp, _gloffset_SecondaryColor3bvEXT, fn);
5867 }
5868
5869 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dEXT)(GLdouble, GLdouble, GLdouble);
5870 #define CALL_SecondaryColor3dEXT(disp, parameters) \
5871 (* GET_SecondaryColor3dEXT(disp)) parameters
5872 static inline _glptr_SecondaryColor3dEXT GET_SecondaryColor3dEXT(struct _glapi_table *disp) {
5873 return (_glptr_SecondaryColor3dEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dEXT));
5874 }
5875
5876 static inline void SET_SecondaryColor3dEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
5877 SET_by_offset(disp, _gloffset_SecondaryColor3dEXT, fn);
5878 }
5879
5880 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dvEXT)(const GLdouble *);
5881 #define CALL_SecondaryColor3dvEXT(disp, parameters) \
5882 (* GET_SecondaryColor3dvEXT(disp)) parameters
5883 static inline _glptr_SecondaryColor3dvEXT GET_SecondaryColor3dvEXT(struct _glapi_table *disp) {
5884 return (_glptr_SecondaryColor3dvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dvEXT));
5885 }
5886
5887 static inline void SET_SecondaryColor3dvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
5888 SET_by_offset(disp, _gloffset_SecondaryColor3dvEXT, fn);
5889 }
5890
5891 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fEXT)(GLfloat, GLfloat, GLfloat);
5892 #define CALL_SecondaryColor3fEXT(disp, parameters) \
5893 (* GET_SecondaryColor3fEXT(disp)) parameters
5894 static inline _glptr_SecondaryColor3fEXT GET_SecondaryColor3fEXT(struct _glapi_table *disp) {
5895 return (_glptr_SecondaryColor3fEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fEXT));
5896 }
5897
5898 static inline void SET_SecondaryColor3fEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
5899 SET_by_offset(disp, _gloffset_SecondaryColor3fEXT, fn);
5900 }
5901
5902 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fvEXT)(const GLfloat *);
5903 #define CALL_SecondaryColor3fvEXT(disp, parameters) \
5904 (* GET_SecondaryColor3fvEXT(disp)) parameters
5905 static inline _glptr_SecondaryColor3fvEXT GET_SecondaryColor3fvEXT(struct _glapi_table *disp) {
5906 return (_glptr_SecondaryColor3fvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fvEXT));
5907 }
5908
5909 static inline void SET_SecondaryColor3fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
5910 SET_by_offset(disp, _gloffset_SecondaryColor3fvEXT, fn);
5911 }
5912
5913 typedef void (GLAPIENTRYP _glptr_SecondaryColor3iEXT)(GLint, GLint, GLint);
5914 #define CALL_SecondaryColor3iEXT(disp, parameters) \
5915 (* GET_SecondaryColor3iEXT(disp)) parameters
5916 static inline _glptr_SecondaryColor3iEXT GET_SecondaryColor3iEXT(struct _glapi_table *disp) {
5917 return (_glptr_SecondaryColor3iEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3iEXT));
5918 }
5919
5920 static inline void SET_SecondaryColor3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
5921 SET_by_offset(disp, _gloffset_SecondaryColor3iEXT, fn);
5922 }
5923
5924 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ivEXT)(const GLint *);
5925 #define CALL_SecondaryColor3ivEXT(disp, parameters) \
5926 (* GET_SecondaryColor3ivEXT(disp)) parameters
5927 static inline _glptr_SecondaryColor3ivEXT GET_SecondaryColor3ivEXT(struct _glapi_table *disp) {
5928 return (_glptr_SecondaryColor3ivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ivEXT));
5929 }
5930
5931 static inline void SET_SecondaryColor3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
5932 SET_by_offset(disp, _gloffset_SecondaryColor3ivEXT, fn);
5933 }
5934
5935 typedef void (GLAPIENTRYP _glptr_SecondaryColor3sEXT)(GLshort, GLshort, GLshort);
5936 #define CALL_SecondaryColor3sEXT(disp, parameters) \
5937 (* GET_SecondaryColor3sEXT(disp)) parameters
5938 static inline _glptr_SecondaryColor3sEXT GET_SecondaryColor3sEXT(struct _glapi_table *disp) {
5939 return (_glptr_SecondaryColor3sEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3sEXT));
5940 }
5941
5942 static inline void SET_SecondaryColor3sEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
5943 SET_by_offset(disp, _gloffset_SecondaryColor3sEXT, fn);
5944 }
5945
5946 typedef void (GLAPIENTRYP _glptr_SecondaryColor3svEXT)(const GLshort *);
5947 #define CALL_SecondaryColor3svEXT(disp, parameters) \
5948 (* GET_SecondaryColor3svEXT(disp)) parameters
5949 static inline _glptr_SecondaryColor3svEXT GET_SecondaryColor3svEXT(struct _glapi_table *disp) {
5950 return (_glptr_SecondaryColor3svEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3svEXT));
5951 }
5952
5953 static inline void SET_SecondaryColor3svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
5954 SET_by_offset(disp, _gloffset_SecondaryColor3svEXT, fn);
5955 }
5956
5957 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubEXT)(GLubyte, GLubyte, GLubyte);
5958 #define CALL_SecondaryColor3ubEXT(disp, parameters) \
5959 (* GET_SecondaryColor3ubEXT(disp)) parameters
5960 static inline _glptr_SecondaryColor3ubEXT GET_SecondaryColor3ubEXT(struct _glapi_table *disp) {
5961 return (_glptr_SecondaryColor3ubEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubEXT));
5962 }
5963
5964 static inline void SET_SecondaryColor3ubEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) {
5965 SET_by_offset(disp, _gloffset_SecondaryColor3ubEXT, fn);
5966 }
5967
5968 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubvEXT)(const GLubyte *);
5969 #define CALL_SecondaryColor3ubvEXT(disp, parameters) \
5970 (* GET_SecondaryColor3ubvEXT(disp)) parameters
5971 static inline _glptr_SecondaryColor3ubvEXT GET_SecondaryColor3ubvEXT(struct _glapi_table *disp) {
5972 return (_glptr_SecondaryColor3ubvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT));
5973 }
5974
5975 static inline void SET_SecondaryColor3ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) {
5976 SET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT, fn);
5977 }
5978
5979 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uiEXT)(GLuint, GLuint, GLuint);
5980 #define CALL_SecondaryColor3uiEXT(disp, parameters) \
5981 (* GET_SecondaryColor3uiEXT(disp)) parameters
5982 static inline _glptr_SecondaryColor3uiEXT GET_SecondaryColor3uiEXT(struct _glapi_table *disp) {
5983 return (_glptr_SecondaryColor3uiEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uiEXT));
5984 }
5985
5986 static inline void SET_SecondaryColor3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
5987 SET_by_offset(disp, _gloffset_SecondaryColor3uiEXT, fn);
5988 }
5989
5990 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uivEXT)(const GLuint *);
5991 #define CALL_SecondaryColor3uivEXT(disp, parameters) \
5992 (* GET_SecondaryColor3uivEXT(disp)) parameters
5993 static inline _glptr_SecondaryColor3uivEXT GET_SecondaryColor3uivEXT(struct _glapi_table *disp) {
5994 return (_glptr_SecondaryColor3uivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uivEXT));
5995 }
5996
5997 static inline void SET_SecondaryColor3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) {
5998 SET_by_offset(disp, _gloffset_SecondaryColor3uivEXT, fn);
5999 }
6000
6001 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usEXT)(GLushort, GLushort, GLushort);
6002 #define CALL_SecondaryColor3usEXT(disp, parameters) \
6003 (* GET_SecondaryColor3usEXT(disp)) parameters
6004 static inline _glptr_SecondaryColor3usEXT GET_SecondaryColor3usEXT(struct _glapi_table *disp) {
6005 return (_glptr_SecondaryColor3usEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usEXT));
6006 }
6007
6008 static inline void SET_SecondaryColor3usEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) {
6009 SET_by_offset(disp, _gloffset_SecondaryColor3usEXT, fn);
6010 }
6011
6012 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usvEXT)(const GLushort *);
6013 #define CALL_SecondaryColor3usvEXT(disp, parameters) \
6014 (* GET_SecondaryColor3usvEXT(disp)) parameters
6015 static inline _glptr_SecondaryColor3usvEXT GET_SecondaryColor3usvEXT(struct _glapi_table *disp) {
6016 return (_glptr_SecondaryColor3usvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usvEXT));
6017 }
6018
6019 static inline void SET_SecondaryColor3usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) {
6020 SET_by_offset(disp, _gloffset_SecondaryColor3usvEXT, fn);
6021 }
6022
6023 typedef void (GLAPIENTRYP _glptr_SecondaryColorPointerEXT)(GLint, GLenum, GLsizei, const GLvoid *);
6024 #define CALL_SecondaryColorPointerEXT(disp, parameters) \
6025 (* GET_SecondaryColorPointerEXT(disp)) parameters
6026 static inline _glptr_SecondaryColorPointerEXT GET_SecondaryColorPointerEXT(struct _glapi_table *disp) {
6027 return (_glptr_SecondaryColorPointerEXT) (GET_by_offset(disp, _gloffset_SecondaryColorPointerEXT));
6028 }
6029
6030 static inline void SET_SecondaryColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) {
6031 SET_by_offset(disp, _gloffset_SecondaryColorPointerEXT, fn);
6032 }
6033
6034 typedef void (GLAPIENTRYP _glptr_FogCoordPointerEXT)(GLenum, GLsizei, const GLvoid *);
6035 #define CALL_FogCoordPointerEXT(disp, parameters) \
6036 (* GET_FogCoordPointerEXT(disp)) parameters
6037 static inline _glptr_FogCoordPointerEXT GET_FogCoordPointerEXT(struct _glapi_table *disp) {
6038 return (_glptr_FogCoordPointerEXT) (GET_by_offset(disp, _gloffset_FogCoordPointerEXT));
6039 }
6040
6041 static inline void SET_FogCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) {
6042 SET_by_offset(disp, _gloffset_FogCoordPointerEXT, fn);
6043 }
6044
6045 typedef void (GLAPIENTRYP _glptr_FogCoorddEXT)(GLdouble);
6046 #define CALL_FogCoorddEXT(disp, parameters) \
6047 (* GET_FogCoorddEXT(disp)) parameters
6048 static inline _glptr_FogCoorddEXT GET_FogCoorddEXT(struct _glapi_table *disp) {
6049 return (_glptr_FogCoorddEXT) (GET_by_offset(disp, _gloffset_FogCoorddEXT));
6050 }
6051
6052 static inline void SET_FogCoorddEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) {
6053 SET_by_offset(disp, _gloffset_FogCoorddEXT, fn);
6054 }
6055
6056 typedef void (GLAPIENTRYP _glptr_FogCoorddvEXT)(const GLdouble *);
6057 #define CALL_FogCoorddvEXT(disp, parameters) \
6058 (* GET_FogCoorddvEXT(disp)) parameters
6059 static inline _glptr_FogCoorddvEXT GET_FogCoorddvEXT(struct _glapi_table *disp) {
6060 return (_glptr_FogCoorddvEXT) (GET_by_offset(disp, _gloffset_FogCoorddvEXT));
6061 }
6062
6063 static inline void SET_FogCoorddvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
6064 SET_by_offset(disp, _gloffset_FogCoorddvEXT, fn);
6065 }
6066
6067 typedef void (GLAPIENTRYP _glptr_FogCoordfEXT)(GLfloat);
6068 #define CALL_FogCoordfEXT(disp, parameters) \
6069 (* GET_FogCoordfEXT(disp)) parameters
6070 static inline _glptr_FogCoordfEXT GET_FogCoordfEXT(struct _glapi_table *disp) {
6071 return (_glptr_FogCoordfEXT) (GET_by_offset(disp, _gloffset_FogCoordfEXT));
6072 }
6073
6074 static inline void SET_FogCoordfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) {
6075 SET_by_offset(disp, _gloffset_FogCoordfEXT, fn);
6076 }
6077
6078 typedef void (GLAPIENTRYP _glptr_FogCoordfvEXT)(const GLfloat *);
6079 #define CALL_FogCoordfvEXT(disp, parameters) \
6080 (* GET_FogCoordfvEXT(disp)) parameters
6081 static inline _glptr_FogCoordfvEXT GET_FogCoordfvEXT(struct _glapi_table *disp) {
6082 return (_glptr_FogCoordfvEXT) (GET_by_offset(disp, _gloffset_FogCoordfvEXT));
6083 }
6084
6085 static inline void SET_FogCoordfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
6086 SET_by_offset(disp, _gloffset_FogCoordfvEXT, fn);
6087 }
6088
6089 typedef void (GLAPIENTRYP _glptr_PixelTexGenSGIX)(GLenum);
6090 #define CALL_PixelTexGenSGIX(disp, parameters) \
6091 (* GET_PixelTexGenSGIX(disp)) parameters
6092 static inline _glptr_PixelTexGenSGIX GET_PixelTexGenSGIX(struct _glapi_table *disp) {
6093 return (_glptr_PixelTexGenSGIX) (GET_by_offset(disp, _gloffset_PixelTexGenSGIX));
6094 }
6095
6096 static inline void SET_PixelTexGenSGIX(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
6097 SET_by_offset(disp, _gloffset_PixelTexGenSGIX, fn);
6098 }
6099
6100 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateEXT)(GLenum, GLenum, GLenum, GLenum);
6101 #define CALL_BlendFuncSeparateEXT(disp, parameters) \
6102 (* GET_BlendFuncSeparateEXT(disp)) parameters
6103 static inline _glptr_BlendFuncSeparateEXT GET_BlendFuncSeparateEXT(struct _glapi_table *disp) {
6104 return (_glptr_BlendFuncSeparateEXT) (GET_by_offset(disp, _gloffset_BlendFuncSeparateEXT));
6105 }
6106
6107 static inline void SET_BlendFuncSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
6108 SET_by_offset(disp, _gloffset_BlendFuncSeparateEXT, fn);
6109 }
6110
6111 typedef void (GLAPIENTRYP _glptr_FlushVertexArrayRangeNV)(void);
6112 #define CALL_FlushVertexArrayRangeNV(disp, parameters) \
6113 (* GET_FlushVertexArrayRangeNV(disp)) parameters
6114 static inline _glptr_FlushVertexArrayRangeNV GET_FlushVertexArrayRangeNV(struct _glapi_table *disp) {
6115 return (_glptr_FlushVertexArrayRangeNV) (GET_by_offset(disp, _gloffset_FlushVertexArrayRangeNV));
6116 }
6117
6118 static inline void SET_FlushVertexArrayRangeNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
6119 SET_by_offset(disp, _gloffset_FlushVertexArrayRangeNV, fn);
6120 }
6121
6122 typedef void (GLAPIENTRYP _glptr_VertexArrayRangeNV)(GLsizei, const GLvoid *);
6123 #define CALL_VertexArrayRangeNV(disp, parameters) \
6124 (* GET_VertexArrayRangeNV(disp)) parameters
6125 static inline _glptr_VertexArrayRangeNV GET_VertexArrayRangeNV(struct _glapi_table *disp) {
6126 return (_glptr_VertexArrayRangeNV) (GET_by_offset(disp, _gloffset_VertexArrayRangeNV));
6127 }
6128
6129 static inline void SET_VertexArrayRangeNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) {
6130 SET_by_offset(disp, _gloffset_VertexArrayRangeNV, fn);
6131 }
6132
6133 typedef void (GLAPIENTRYP _glptr_CombinerInputNV)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum);
6134 #define CALL_CombinerInputNV(disp, parameters) \
6135 (* GET_CombinerInputNV(disp)) parameters
6136 static inline _glptr_CombinerInputNV GET_CombinerInputNV(struct _glapi_table *disp) {
6137 return (_glptr_CombinerInputNV) (GET_by_offset(disp, _gloffset_CombinerInputNV));
6138 }
6139
6140 static inline void SET_CombinerInputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum)) {
6141 SET_by_offset(disp, _gloffset_CombinerInputNV, fn);
6142 }
6143
6144 typedef void (GLAPIENTRYP _glptr_CombinerOutputNV)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean);
6145 #define CALL_CombinerOutputNV(disp, parameters) \
6146 (* GET_CombinerOutputNV(disp)) parameters
6147 static inline _glptr_CombinerOutputNV GET_CombinerOutputNV(struct _glapi_table *disp) {
6148 return (_glptr_CombinerOutputNV) (GET_by_offset(disp, _gloffset_CombinerOutputNV));
6149 }
6150
6151 static inline void SET_CombinerOutputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean)) {
6152 SET_by_offset(disp, _gloffset_CombinerOutputNV, fn);
6153 }
6154
6155 typedef void (GLAPIENTRYP _glptr_CombinerParameterfNV)(GLenum, GLfloat);
6156 #define CALL_CombinerParameterfNV(disp, parameters) \
6157 (* GET_CombinerParameterfNV(disp)) parameters
6158 static inline _glptr_CombinerParameterfNV GET_CombinerParameterfNV(struct _glapi_table *disp) {
6159 return (_glptr_CombinerParameterfNV) (GET_by_offset(disp, _gloffset_CombinerParameterfNV));
6160 }
6161
6162 static inline void SET_CombinerParameterfNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) {
6163 SET_by_offset(disp, _gloffset_CombinerParameterfNV, fn);
6164 }
6165
6166 typedef void (GLAPIENTRYP _glptr_CombinerParameterfvNV)(GLenum, const GLfloat *);
6167 #define CALL_CombinerParameterfvNV(disp, parameters) \
6168 (* GET_CombinerParameterfvNV(disp)) parameters
6169 static inline _glptr_CombinerParameterfvNV GET_CombinerParameterfvNV(struct _glapi_table *disp) {
6170 return (_glptr_CombinerParameterfvNV) (GET_by_offset(disp, _gloffset_CombinerParameterfvNV));
6171 }
6172
6173 static inline void SET_CombinerParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) {
6174 SET_by_offset(disp, _gloffset_CombinerParameterfvNV, fn);
6175 }
6176
6177 typedef void (GLAPIENTRYP _glptr_CombinerParameteriNV)(GLenum, GLint);
6178 #define CALL_CombinerParameteriNV(disp, parameters) \
6179 (* GET_CombinerParameteriNV(disp)) parameters
6180 static inline _glptr_CombinerParameteriNV GET_CombinerParameteriNV(struct _glapi_table *disp) {
6181 return (_glptr_CombinerParameteriNV) (GET_by_offset(disp, _gloffset_CombinerParameteriNV));
6182 }
6183
6184 static inline void SET_CombinerParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
6185 SET_by_offset(disp, _gloffset_CombinerParameteriNV, fn);
6186 }
6187
6188 typedef void (GLAPIENTRYP _glptr_CombinerParameterivNV)(GLenum, const GLint *);
6189 #define CALL_CombinerParameterivNV(disp, parameters) \
6190 (* GET_CombinerParameterivNV(disp)) parameters
6191 static inline _glptr_CombinerParameterivNV GET_CombinerParameterivNV(struct _glapi_table *disp) {
6192 return (_glptr_CombinerParameterivNV) (GET_by_offset(disp, _gloffset_CombinerParameterivNV));
6193 }
6194
6195 static inline void SET_CombinerParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
6196 SET_by_offset(disp, _gloffset_CombinerParameterivNV, fn);
6197 }
6198
6199 typedef void (GLAPIENTRYP _glptr_FinalCombinerInputNV)(GLenum, GLenum, GLenum, GLenum);
6200 #define CALL_FinalCombinerInputNV(disp, parameters) \
6201 (* GET_FinalCombinerInputNV(disp)) parameters
6202 static inline _glptr_FinalCombinerInputNV GET_FinalCombinerInputNV(struct _glapi_table *disp) {
6203 return (_glptr_FinalCombinerInputNV) (GET_by_offset(disp, _gloffset_FinalCombinerInputNV));
6204 }
6205
6206 static inline void SET_FinalCombinerInputNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) {
6207 SET_by_offset(disp, _gloffset_FinalCombinerInputNV, fn);
6208 }
6209
6210 typedef void (GLAPIENTRYP _glptr_GetCombinerInputParameterfvNV)(GLenum, GLenum, GLenum, GLenum, GLfloat *);
6211 #define CALL_GetCombinerInputParameterfvNV(disp, parameters) \
6212 (* GET_GetCombinerInputParameterfvNV(disp)) parameters
6213 static inline _glptr_GetCombinerInputParameterfvNV GET_GetCombinerInputParameterfvNV(struct _glapi_table *disp) {
6214 return (_glptr_GetCombinerInputParameterfvNV) (GET_by_offset(disp, _gloffset_GetCombinerInputParameterfvNV));
6215 }
6216
6217 static inline void SET_GetCombinerInputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLfloat *)) {
6218 SET_by_offset(disp, _gloffset_GetCombinerInputParameterfvNV, fn);
6219 }
6220
6221 typedef void (GLAPIENTRYP _glptr_GetCombinerInputParameterivNV)(GLenum, GLenum, GLenum, GLenum, GLint *);
6222 #define CALL_GetCombinerInputParameterivNV(disp, parameters) \
6223 (* GET_GetCombinerInputParameterivNV(disp)) parameters
6224 static inline _glptr_GetCombinerInputParameterivNV GET_GetCombinerInputParameterivNV(struct _glapi_table *disp) {
6225 return (_glptr_GetCombinerInputParameterivNV) (GET_by_offset(disp, _gloffset_GetCombinerInputParameterivNV));
6226 }
6227
6228 static inline void SET_GetCombinerInputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum, GLint *)) {
6229 SET_by_offset(disp, _gloffset_GetCombinerInputParameterivNV, fn);
6230 }
6231
6232 typedef void (GLAPIENTRYP _glptr_GetCombinerOutputParameterfvNV)(GLenum, GLenum, GLenum, GLfloat *);
6233 #define CALL_GetCombinerOutputParameterfvNV(disp, parameters) \
6234 (* GET_GetCombinerOutputParameterfvNV(disp)) parameters
6235 static inline _glptr_GetCombinerOutputParameterfvNV GET_GetCombinerOutputParameterfvNV(struct _glapi_table *disp) {
6236 return (_glptr_GetCombinerOutputParameterfvNV) (GET_by_offset(disp, _gloffset_GetCombinerOutputParameterfvNV));
6237 }
6238
6239 static inline void SET_GetCombinerOutputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLfloat *)) {
6240 SET_by_offset(disp, _gloffset_GetCombinerOutputParameterfvNV, fn);
6241 }
6242
6243 typedef void (GLAPIENTRYP _glptr_GetCombinerOutputParameterivNV)(GLenum, GLenum, GLenum, GLint *);
6244 #define CALL_GetCombinerOutputParameterivNV(disp, parameters) \
6245 (* GET_GetCombinerOutputParameterivNV(disp)) parameters
6246 static inline _glptr_GetCombinerOutputParameterivNV GET_GetCombinerOutputParameterivNV(struct _glapi_table *disp) {
6247 return (_glptr_GetCombinerOutputParameterivNV) (GET_by_offset(disp, _gloffset_GetCombinerOutputParameterivNV));
6248 }
6249
6250 static inline void SET_GetCombinerOutputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) {
6251 SET_by_offset(disp, _gloffset_GetCombinerOutputParameterivNV, fn);
6252 }
6253
6254 typedef void (GLAPIENTRYP _glptr_GetFinalCombinerInputParameterfvNV)(GLenum, GLenum, GLfloat *);
6255 #define CALL_GetFinalCombinerInputParameterfvNV(disp, parameters) \
6256 (* GET_GetFinalCombinerInputParameterfvNV(disp)) parameters
6257 static inline _glptr_GetFinalCombinerInputParameterfvNV GET_GetFinalCombinerInputParameterfvNV(struct _glapi_table *disp) {
6258 return (_glptr_GetFinalCombinerInputParameterfvNV) (GET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterfvNV));
6259 }
6260
6261 static inline void SET_GetFinalCombinerInputParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) {
6262 SET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterfvNV, fn);
6263 }
6264
6265 typedef void (GLAPIENTRYP _glptr_GetFinalCombinerInputParameterivNV)(GLenum, GLenum, GLint *);
6266 #define CALL_GetFinalCombinerInputParameterivNV(disp, parameters) \
6267 (* GET_GetFinalCombinerInputParameterivNV(disp)) parameters
6268 static inline _glptr_GetFinalCombinerInputParameterivNV GET_GetFinalCombinerInputParameterivNV(struct _glapi_table *disp) {
6269 return (_glptr_GetFinalCombinerInputParameterivNV) (GET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterivNV));
6270 }
6271
6272 static inline void SET_GetFinalCombinerInputParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
6273 SET_by_offset(disp, _gloffset_GetFinalCombinerInputParameterivNV, fn);
6274 }
6275
6276 typedef void (GLAPIENTRYP _glptr_WindowPos2dMESA)(GLdouble, GLdouble);
6277 #define CALL_WindowPos2dMESA(disp, parameters) \
6278 (* GET_WindowPos2dMESA(disp)) parameters
6279 static inline _glptr_WindowPos2dMESA GET_WindowPos2dMESA(struct _glapi_table *disp) {
6280 return (_glptr_WindowPos2dMESA) (GET_by_offset(disp, _gloffset_WindowPos2dMESA));
6281 }
6282
6283 static inline void SET_WindowPos2dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) {
6284 SET_by_offset(disp, _gloffset_WindowPos2dMESA, fn);
6285 }
6286
6287 typedef void (GLAPIENTRYP _glptr_WindowPos2dvMESA)(const GLdouble *);
6288 #define CALL_WindowPos2dvMESA(disp, parameters) \
6289 (* GET_WindowPos2dvMESA(disp)) parameters
6290 static inline _glptr_WindowPos2dvMESA GET_WindowPos2dvMESA(struct _glapi_table *disp) {
6291 return (_glptr_WindowPos2dvMESA) (GET_by_offset(disp, _gloffset_WindowPos2dvMESA));
6292 }
6293
6294 static inline void SET_WindowPos2dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
6295 SET_by_offset(disp, _gloffset_WindowPos2dvMESA, fn);
6296 }
6297
6298 typedef void (GLAPIENTRYP _glptr_WindowPos2fMESA)(GLfloat, GLfloat);
6299 #define CALL_WindowPos2fMESA(disp, parameters) \
6300 (* GET_WindowPos2fMESA(disp)) parameters
6301 static inline _glptr_WindowPos2fMESA GET_WindowPos2fMESA(struct _glapi_table *disp) {
6302 return (_glptr_WindowPos2fMESA) (GET_by_offset(disp, _gloffset_WindowPos2fMESA));
6303 }
6304
6305 static inline void SET_WindowPos2fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) {
6306 SET_by_offset(disp, _gloffset_WindowPos2fMESA, fn);
6307 }
6308
6309 typedef void (GLAPIENTRYP _glptr_WindowPos2fvMESA)(const GLfloat *);
6310 #define CALL_WindowPos2fvMESA(disp, parameters) \
6311 (* GET_WindowPos2fvMESA(disp)) parameters
6312 static inline _glptr_WindowPos2fvMESA GET_WindowPos2fvMESA(struct _glapi_table *disp) {
6313 return (_glptr_WindowPos2fvMESA) (GET_by_offset(disp, _gloffset_WindowPos2fvMESA));
6314 }
6315
6316 static inline void SET_WindowPos2fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
6317 SET_by_offset(disp, _gloffset_WindowPos2fvMESA, fn);
6318 }
6319
6320 typedef void (GLAPIENTRYP _glptr_WindowPos2iMESA)(GLint, GLint);
6321 #define CALL_WindowPos2iMESA(disp, parameters) \
6322 (* GET_WindowPos2iMESA(disp)) parameters
6323 static inline _glptr_WindowPos2iMESA GET_WindowPos2iMESA(struct _glapi_table *disp) {
6324 return (_glptr_WindowPos2iMESA) (GET_by_offset(disp, _gloffset_WindowPos2iMESA));
6325 }
6326
6327 static inline void SET_WindowPos2iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) {
6328 SET_by_offset(disp, _gloffset_WindowPos2iMESA, fn);
6329 }
6330
6331 typedef void (GLAPIENTRYP _glptr_WindowPos2ivMESA)(const GLint *);
6332 #define CALL_WindowPos2ivMESA(disp, parameters) \
6333 (* GET_WindowPos2ivMESA(disp)) parameters
6334 static inline _glptr_WindowPos2ivMESA GET_WindowPos2ivMESA(struct _glapi_table *disp) {
6335 return (_glptr_WindowPos2ivMESA) (GET_by_offset(disp, _gloffset_WindowPos2ivMESA));
6336 }
6337
6338 static inline void SET_WindowPos2ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
6339 SET_by_offset(disp, _gloffset_WindowPos2ivMESA, fn);
6340 }
6341
6342 typedef void (GLAPIENTRYP _glptr_WindowPos2sMESA)(GLshort, GLshort);
6343 #define CALL_WindowPos2sMESA(disp, parameters) \
6344 (* GET_WindowPos2sMESA(disp)) parameters
6345 static inline _glptr_WindowPos2sMESA GET_WindowPos2sMESA(struct _glapi_table *disp) {
6346 return (_glptr_WindowPos2sMESA) (GET_by_offset(disp, _gloffset_WindowPos2sMESA));
6347 }
6348
6349 static inline void SET_WindowPos2sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) {
6350 SET_by_offset(disp, _gloffset_WindowPos2sMESA, fn);
6351 }
6352
6353 typedef void (GLAPIENTRYP _glptr_WindowPos2svMESA)(const GLshort *);
6354 #define CALL_WindowPos2svMESA(disp, parameters) \
6355 (* GET_WindowPos2svMESA(disp)) parameters
6356 static inline _glptr_WindowPos2svMESA GET_WindowPos2svMESA(struct _glapi_table *disp) {
6357 return (_glptr_WindowPos2svMESA) (GET_by_offset(disp, _gloffset_WindowPos2svMESA));
6358 }
6359
6360 static inline void SET_WindowPos2svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
6361 SET_by_offset(disp, _gloffset_WindowPos2svMESA, fn);
6362 }
6363
6364 typedef void (GLAPIENTRYP _glptr_WindowPos3dMESA)(GLdouble, GLdouble, GLdouble);
6365 #define CALL_WindowPos3dMESA(disp, parameters) \
6366 (* GET_WindowPos3dMESA(disp)) parameters
6367 static inline _glptr_WindowPos3dMESA GET_WindowPos3dMESA(struct _glapi_table *disp) {
6368 return (_glptr_WindowPos3dMESA) (GET_by_offset(disp, _gloffset_WindowPos3dMESA));
6369 }
6370
6371 static inline void SET_WindowPos3dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) {
6372 SET_by_offset(disp, _gloffset_WindowPos3dMESA, fn);
6373 }
6374
6375 typedef void (GLAPIENTRYP _glptr_WindowPos3dvMESA)(const GLdouble *);
6376 #define CALL_WindowPos3dvMESA(disp, parameters) \
6377 (* GET_WindowPos3dvMESA(disp)) parameters
6378 static inline _glptr_WindowPos3dvMESA GET_WindowPos3dvMESA(struct _glapi_table *disp) {
6379 return (_glptr_WindowPos3dvMESA) (GET_by_offset(disp, _gloffset_WindowPos3dvMESA));
6380 }
6381
6382 static inline void SET_WindowPos3dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
6383 SET_by_offset(disp, _gloffset_WindowPos3dvMESA, fn);
6384 }
6385
6386 typedef void (GLAPIENTRYP _glptr_WindowPos3fMESA)(GLfloat, GLfloat, GLfloat);
6387 #define CALL_WindowPos3fMESA(disp, parameters) \
6388 (* GET_WindowPos3fMESA(disp)) parameters
6389 static inline _glptr_WindowPos3fMESA GET_WindowPos3fMESA(struct _glapi_table *disp) {
6390 return (_glptr_WindowPos3fMESA) (GET_by_offset(disp, _gloffset_WindowPos3fMESA));
6391 }
6392
6393 static inline void SET_WindowPos3fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) {
6394 SET_by_offset(disp, _gloffset_WindowPos3fMESA, fn);
6395 }
6396
6397 typedef void (GLAPIENTRYP _glptr_WindowPos3fvMESA)(const GLfloat *);
6398 #define CALL_WindowPos3fvMESA(disp, parameters) \
6399 (* GET_WindowPos3fvMESA(disp)) parameters
6400 static inline _glptr_WindowPos3fvMESA GET_WindowPos3fvMESA(struct _glapi_table *disp) {
6401 return (_glptr_WindowPos3fvMESA) (GET_by_offset(disp, _gloffset_WindowPos3fvMESA));
6402 }
6403
6404 static inline void SET_WindowPos3fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
6405 SET_by_offset(disp, _gloffset_WindowPos3fvMESA, fn);
6406 }
6407
6408 typedef void (GLAPIENTRYP _glptr_WindowPos3iMESA)(GLint, GLint, GLint);
6409 #define CALL_WindowPos3iMESA(disp, parameters) \
6410 (* GET_WindowPos3iMESA(disp)) parameters
6411 static inline _glptr_WindowPos3iMESA GET_WindowPos3iMESA(struct _glapi_table *disp) {
6412 return (_glptr_WindowPos3iMESA) (GET_by_offset(disp, _gloffset_WindowPos3iMESA));
6413 }
6414
6415 static inline void SET_WindowPos3iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) {
6416 SET_by_offset(disp, _gloffset_WindowPos3iMESA, fn);
6417 }
6418
6419 typedef void (GLAPIENTRYP _glptr_WindowPos3ivMESA)(const GLint *);
6420 #define CALL_WindowPos3ivMESA(disp, parameters) \
6421 (* GET_WindowPos3ivMESA(disp)) parameters
6422 static inline _glptr_WindowPos3ivMESA GET_WindowPos3ivMESA(struct _glapi_table *disp) {
6423 return (_glptr_WindowPos3ivMESA) (GET_by_offset(disp, _gloffset_WindowPos3ivMESA));
6424 }
6425
6426 static inline void SET_WindowPos3ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
6427 SET_by_offset(disp, _gloffset_WindowPos3ivMESA, fn);
6428 }
6429
6430 typedef void (GLAPIENTRYP _glptr_WindowPos3sMESA)(GLshort, GLshort, GLshort);
6431 #define CALL_WindowPos3sMESA(disp, parameters) \
6432 (* GET_WindowPos3sMESA(disp)) parameters
6433 static inline _glptr_WindowPos3sMESA GET_WindowPos3sMESA(struct _glapi_table *disp) {
6434 return (_glptr_WindowPos3sMESA) (GET_by_offset(disp, _gloffset_WindowPos3sMESA));
6435 }
6436
6437 static inline void SET_WindowPos3sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) {
6438 SET_by_offset(disp, _gloffset_WindowPos3sMESA, fn);
6439 }
6440
6441 typedef void (GLAPIENTRYP _glptr_WindowPos3svMESA)(const GLshort *);
6442 #define CALL_WindowPos3svMESA(disp, parameters) \
6443 (* GET_WindowPos3svMESA(disp)) parameters
6444 static inline _glptr_WindowPos3svMESA GET_WindowPos3svMESA(struct _glapi_table *disp) {
6445 return (_glptr_WindowPos3svMESA) (GET_by_offset(disp, _gloffset_WindowPos3svMESA));
6446 }
6447
6448 static inline void SET_WindowPos3svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
6449 SET_by_offset(disp, _gloffset_WindowPos3svMESA, fn);
6450 }
6451
6452 typedef void (GLAPIENTRYP _glptr_WindowPos4dMESA)(GLdouble, GLdouble, GLdouble, GLdouble);
6453 #define CALL_WindowPos4dMESA(disp, parameters) \
6454 (* GET_WindowPos4dMESA(disp)) parameters
6455 static inline _glptr_WindowPos4dMESA GET_WindowPos4dMESA(struct _glapi_table *disp) {
6456 return (_glptr_WindowPos4dMESA) (GET_by_offset(disp, _gloffset_WindowPos4dMESA));
6457 }
6458
6459 static inline void SET_WindowPos4dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) {
6460 SET_by_offset(disp, _gloffset_WindowPos4dMESA, fn);
6461 }
6462
6463 typedef void (GLAPIENTRYP _glptr_WindowPos4dvMESA)(const GLdouble *);
6464 #define CALL_WindowPos4dvMESA(disp, parameters) \
6465 (* GET_WindowPos4dvMESA(disp)) parameters
6466 static inline _glptr_WindowPos4dvMESA GET_WindowPos4dvMESA(struct _glapi_table *disp) {
6467 return (_glptr_WindowPos4dvMESA) (GET_by_offset(disp, _gloffset_WindowPos4dvMESA));
6468 }
6469
6470 static inline void SET_WindowPos4dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) {
6471 SET_by_offset(disp, _gloffset_WindowPos4dvMESA, fn);
6472 }
6473
6474 typedef void (GLAPIENTRYP _glptr_WindowPos4fMESA)(GLfloat, GLfloat, GLfloat, GLfloat);
6475 #define CALL_WindowPos4fMESA(disp, parameters) \
6476 (* GET_WindowPos4fMESA(disp)) parameters
6477 static inline _glptr_WindowPos4fMESA GET_WindowPos4fMESA(struct _glapi_table *disp) {
6478 return (_glptr_WindowPos4fMESA) (GET_by_offset(disp, _gloffset_WindowPos4fMESA));
6479 }
6480
6481 static inline void SET_WindowPos4fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) {
6482 SET_by_offset(disp, _gloffset_WindowPos4fMESA, fn);
6483 }
6484
6485 typedef void (GLAPIENTRYP _glptr_WindowPos4fvMESA)(const GLfloat *);
6486 #define CALL_WindowPos4fvMESA(disp, parameters) \
6487 (* GET_WindowPos4fvMESA(disp)) parameters
6488 static inline _glptr_WindowPos4fvMESA GET_WindowPos4fvMESA(struct _glapi_table *disp) {
6489 return (_glptr_WindowPos4fvMESA) (GET_by_offset(disp, _gloffset_WindowPos4fvMESA));
6490 }
6491
6492 static inline void SET_WindowPos4fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) {
6493 SET_by_offset(disp, _gloffset_WindowPos4fvMESA, fn);
6494 }
6495
6496 typedef void (GLAPIENTRYP _glptr_WindowPos4iMESA)(GLint, GLint, GLint, GLint);
6497 #define CALL_WindowPos4iMESA(disp, parameters) \
6498 (* GET_WindowPos4iMESA(disp)) parameters
6499 static inline _glptr_WindowPos4iMESA GET_WindowPos4iMESA(struct _glapi_table *disp) {
6500 return (_glptr_WindowPos4iMESA) (GET_by_offset(disp, _gloffset_WindowPos4iMESA));
6501 }
6502
6503 static inline void SET_WindowPos4iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
6504 SET_by_offset(disp, _gloffset_WindowPos4iMESA, fn);
6505 }
6506
6507 typedef void (GLAPIENTRYP _glptr_WindowPos4ivMESA)(const GLint *);
6508 #define CALL_WindowPos4ivMESA(disp, parameters) \
6509 (* GET_WindowPos4ivMESA(disp)) parameters
6510 static inline _glptr_WindowPos4ivMESA GET_WindowPos4ivMESA(struct _glapi_table *disp) {
6511 return (_glptr_WindowPos4ivMESA) (GET_by_offset(disp, _gloffset_WindowPos4ivMESA));
6512 }
6513
6514 static inline void SET_WindowPos4ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) {
6515 SET_by_offset(disp, _gloffset_WindowPos4ivMESA, fn);
6516 }
6517
6518 typedef void (GLAPIENTRYP _glptr_WindowPos4sMESA)(GLshort, GLshort, GLshort, GLshort);
6519 #define CALL_WindowPos4sMESA(disp, parameters) \
6520 (* GET_WindowPos4sMESA(disp)) parameters
6521 static inline _glptr_WindowPos4sMESA GET_WindowPos4sMESA(struct _glapi_table *disp) {
6522 return (_glptr_WindowPos4sMESA) (GET_by_offset(disp, _gloffset_WindowPos4sMESA));
6523 }
6524
6525 static inline void SET_WindowPos4sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) {
6526 SET_by_offset(disp, _gloffset_WindowPos4sMESA, fn);
6527 }
6528
6529 typedef void (GLAPIENTRYP _glptr_WindowPos4svMESA)(const GLshort *);
6530 #define CALL_WindowPos4svMESA(disp, parameters) \
6531 (* GET_WindowPos4svMESA(disp)) parameters
6532 static inline _glptr_WindowPos4svMESA GET_WindowPos4svMESA(struct _glapi_table *disp) {
6533 return (_glptr_WindowPos4svMESA) (GET_by_offset(disp, _gloffset_WindowPos4svMESA));
6534 }
6535
6536 static inline void SET_WindowPos4svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) {
6537 SET_by_offset(disp, _gloffset_WindowPos4svMESA, fn);
6538 }
6539
6540 typedef void (GLAPIENTRYP _glptr_MultiModeDrawArraysIBM)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint);
6541 #define CALL_MultiModeDrawArraysIBM(disp, parameters) \
6542 (* GET_MultiModeDrawArraysIBM(disp)) parameters
6543 static inline _glptr_MultiModeDrawArraysIBM GET_MultiModeDrawArraysIBM(struct _glapi_table *disp) {
6544 return (_glptr_MultiModeDrawArraysIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM));
6545 }
6546
6547 static inline void SET_MultiModeDrawArraysIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint)) {
6548 SET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM, fn);
6549 }
6550
6551 typedef void (GLAPIENTRYP _glptr_MultiModeDrawElementsIBM)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint);
6552 #define CALL_MultiModeDrawElementsIBM(disp, parameters) \
6553 (* GET_MultiModeDrawElementsIBM(disp)) parameters
6554 static inline _glptr_MultiModeDrawElementsIBM GET_MultiModeDrawElementsIBM(struct _glapi_table *disp) {
6555 return (_glptr_MultiModeDrawElementsIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM));
6556 }
6557
6558 static inline void SET_MultiModeDrawElementsIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint)) {
6559 SET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM, fn);
6560 }
6561
6562 typedef void (GLAPIENTRYP _glptr_DeleteFencesNV)(GLsizei, const GLuint *);
6563 #define CALL_DeleteFencesNV(disp, parameters) \
6564 (* GET_DeleteFencesNV(disp)) parameters
6565 static inline _glptr_DeleteFencesNV GET_DeleteFencesNV(struct _glapi_table *disp) {
6566 return (_glptr_DeleteFencesNV) (GET_by_offset(disp, _gloffset_DeleteFencesNV));
6567 }
6568
6569 static inline void SET_DeleteFencesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
6570 SET_by_offset(disp, _gloffset_DeleteFencesNV, fn);
6571 }
6572
6573 typedef void (GLAPIENTRYP _glptr_FinishFenceNV)(GLuint);
6574 #define CALL_FinishFenceNV(disp, parameters) \
6575 (* GET_FinishFenceNV(disp)) parameters
6576 static inline _glptr_FinishFenceNV GET_FinishFenceNV(struct _glapi_table *disp) {
6577 return (_glptr_FinishFenceNV) (GET_by_offset(disp, _gloffset_FinishFenceNV));
6578 }
6579
6580 static inline void SET_FinishFenceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
6581 SET_by_offset(disp, _gloffset_FinishFenceNV, fn);
6582 }
6583
6584 typedef void (GLAPIENTRYP _glptr_GenFencesNV)(GLsizei, GLuint *);
6585 #define CALL_GenFencesNV(disp, parameters) \
6586 (* GET_GenFencesNV(disp)) parameters
6587 static inline _glptr_GenFencesNV GET_GenFencesNV(struct _glapi_table *disp) {
6588 return (_glptr_GenFencesNV) (GET_by_offset(disp, _gloffset_GenFencesNV));
6589 }
6590
6591 static inline void SET_GenFencesNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
6592 SET_by_offset(disp, _gloffset_GenFencesNV, fn);
6593 }
6594
6595 typedef void (GLAPIENTRYP _glptr_GetFenceivNV)(GLuint, GLenum, GLint *);
6596 #define CALL_GetFenceivNV(disp, parameters) \
6597 (* GET_GetFenceivNV(disp)) parameters
6598 static inline _glptr_GetFenceivNV GET_GetFenceivNV(struct _glapi_table *disp) {
6599 return (_glptr_GetFenceivNV) (GET_by_offset(disp, _gloffset_GetFenceivNV));
6600 }
6601
6602 static inline void SET_GetFenceivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) {
6603 SET_by_offset(disp, _gloffset_GetFenceivNV, fn);
6604 }
6605
6606 typedef GLboolean (GLAPIENTRYP _glptr_IsFenceNV)(GLuint);
6607 #define CALL_IsFenceNV(disp, parameters) \
6608 (* GET_IsFenceNV(disp)) parameters
6609 static inline _glptr_IsFenceNV GET_IsFenceNV(struct _glapi_table *disp) {
6610 return (_glptr_IsFenceNV) (GET_by_offset(disp, _gloffset_IsFenceNV));
6611 }
6612
6613 static inline void SET_IsFenceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
6614 SET_by_offset(disp, _gloffset_IsFenceNV, fn);
6615 }
6616
6617 typedef void (GLAPIENTRYP _glptr_SetFenceNV)(GLuint, GLenum);
6618 #define CALL_SetFenceNV(disp, parameters) \
6619 (* GET_SetFenceNV(disp)) parameters
6620 static inline _glptr_SetFenceNV GET_SetFenceNV(struct _glapi_table *disp) {
6621 return (_glptr_SetFenceNV) (GET_by_offset(disp, _gloffset_SetFenceNV));
6622 }
6623
6624 static inline void SET_SetFenceNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
6625 SET_by_offset(disp, _gloffset_SetFenceNV, fn);
6626 }
6627
6628 typedef GLboolean (GLAPIENTRYP _glptr_TestFenceNV)(GLuint);
6629 #define CALL_TestFenceNV(disp, parameters) \
6630 (* GET_TestFenceNV(disp)) parameters
6631 static inline _glptr_TestFenceNV GET_TestFenceNV(struct _glapi_table *disp) {
6632 return (_glptr_TestFenceNV) (GET_by_offset(disp, _gloffset_TestFenceNV));
6633 }
6634
6635 static inline void SET_TestFenceNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
6636 SET_by_offset(disp, _gloffset_TestFenceNV, fn);
6637 }
6638
6639 typedef GLboolean (GLAPIENTRYP _glptr_AreProgramsResidentNV)(GLsizei, const GLuint *, GLboolean *);
6640 #define CALL_AreProgramsResidentNV(disp, parameters) \
6641 (* GET_AreProgramsResidentNV(disp)) parameters
6642 static inline _glptr_AreProgramsResidentNV GET_AreProgramsResidentNV(struct _glapi_table *disp) {
6643 return (_glptr_AreProgramsResidentNV) (GET_by_offset(disp, _gloffset_AreProgramsResidentNV));
6644 }
6645
6646 static inline void SET_AreProgramsResidentNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) {
6647 SET_by_offset(disp, _gloffset_AreProgramsResidentNV, fn);
6648 }
6649
6650 typedef void (GLAPIENTRYP _glptr_ExecuteProgramNV)(GLenum, GLuint, const GLfloat *);
6651 #define CALL_ExecuteProgramNV(disp, parameters) \
6652 (* GET_ExecuteProgramNV(disp)) parameters
6653 static inline _glptr_ExecuteProgramNV GET_ExecuteProgramNV(struct _glapi_table *disp) {
6654 return (_glptr_ExecuteProgramNV) (GET_by_offset(disp, _gloffset_ExecuteProgramNV));
6655 }
6656
6657 static inline void SET_ExecuteProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) {
6658 SET_by_offset(disp, _gloffset_ExecuteProgramNV, fn);
6659 }
6660
6661 typedef void (GLAPIENTRYP _glptr_GetProgramParameterdvNV)(GLenum, GLuint, GLenum, GLdouble *);
6662 #define CALL_GetProgramParameterdvNV(disp, parameters) \
6663 (* GET_GetProgramParameterdvNV(disp)) parameters
6664 static inline _glptr_GetProgramParameterdvNV GET_GetProgramParameterdvNV(struct _glapi_table *disp) {
6665 return (_glptr_GetProgramParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterdvNV));
6666 }
6667
6668 static inline void SET_GetProgramParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLdouble *)) {
6669 SET_by_offset(disp, _gloffset_GetProgramParameterdvNV, fn);
6670 }
6671
6672 typedef void (GLAPIENTRYP _glptr_GetProgramParameterfvNV)(GLenum, GLuint, GLenum, GLfloat *);
6673 #define CALL_GetProgramParameterfvNV(disp, parameters) \
6674 (* GET_GetProgramParameterfvNV(disp)) parameters
6675 static inline _glptr_GetProgramParameterfvNV GET_GetProgramParameterfvNV(struct _glapi_table *disp) {
6676 return (_glptr_GetProgramParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterfvNV));
6677 }
6678
6679 static inline void SET_GetProgramParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLfloat *)) {
6680 SET_by_offset(disp, _gloffset_GetProgramParameterfvNV, fn);
6681 }
6682
6683 typedef void (GLAPIENTRYP _glptr_GetTrackMatrixivNV)(GLenum, GLuint, GLenum, GLint *);
6684 #define CALL_GetTrackMatrixivNV(disp, parameters) \
6685 (* GET_GetTrackMatrixivNV(disp)) parameters
6686 static inline _glptr_GetTrackMatrixivNV GET_GetTrackMatrixivNV(struct _glapi_table *disp) {
6687 return (_glptr_GetTrackMatrixivNV) (GET_by_offset(disp, _gloffset_GetTrackMatrixivNV));
6688 }
6689
6690 static inline void SET_GetTrackMatrixivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
6691 SET_by_offset(disp, _gloffset_GetTrackMatrixivNV, fn);
6692 }
6693
6694 typedef void (GLAPIENTRYP _glptr_LoadProgramNV)(GLenum, GLuint, GLsizei, const GLubyte *);
6695 #define CALL_LoadProgramNV(disp, parameters) \
6696 (* GET_LoadProgramNV(disp)) parameters
6697 static inline _glptr_LoadProgramNV GET_LoadProgramNV(struct _glapi_table *disp) {
6698 return (_glptr_LoadProgramNV) (GET_by_offset(disp, _gloffset_LoadProgramNV));
6699 }
6700
6701 static inline void SET_LoadProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLubyte *)) {
6702 SET_by_offset(disp, _gloffset_LoadProgramNV, fn);
6703 }
6704
6705 typedef void (GLAPIENTRYP _glptr_ProgramParameters4dvNV)(GLenum, GLuint, GLsizei, const GLdouble *);
6706 #define CALL_ProgramParameters4dvNV(disp, parameters) \
6707 (* GET_ProgramParameters4dvNV(disp)) parameters
6708 static inline _glptr_ProgramParameters4dvNV GET_ProgramParameters4dvNV(struct _glapi_table *disp) {
6709 return (_glptr_ProgramParameters4dvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4dvNV));
6710 }
6711
6712 static inline void SET_ProgramParameters4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLdouble *)) {
6713 SET_by_offset(disp, _gloffset_ProgramParameters4dvNV, fn);
6714 }
6715
6716 typedef void (GLAPIENTRYP _glptr_ProgramParameters4fvNV)(GLenum, GLuint, GLsizei, const GLfloat *);
6717 #define CALL_ProgramParameters4fvNV(disp, parameters) \
6718 (* GET_ProgramParameters4fvNV(disp)) parameters
6719 static inline _glptr_ProgramParameters4fvNV GET_ProgramParameters4fvNV(struct _glapi_table *disp) {
6720 return (_glptr_ProgramParameters4fvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4fvNV));
6721 }
6722
6723 static inline void SET_ProgramParameters4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) {
6724 SET_by_offset(disp, _gloffset_ProgramParameters4fvNV, fn);
6725 }
6726
6727 typedef void (GLAPIENTRYP _glptr_RequestResidentProgramsNV)(GLsizei, const GLuint *);
6728 #define CALL_RequestResidentProgramsNV(disp, parameters) \
6729 (* GET_RequestResidentProgramsNV(disp)) parameters
6730 static inline _glptr_RequestResidentProgramsNV GET_RequestResidentProgramsNV(struct _glapi_table *disp) {
6731 return (_glptr_RequestResidentProgramsNV) (GET_by_offset(disp, _gloffset_RequestResidentProgramsNV));
6732 }
6733
6734 static inline void SET_RequestResidentProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
6735 SET_by_offset(disp, _gloffset_RequestResidentProgramsNV, fn);
6736 }
6737
6738 typedef void (GLAPIENTRYP _glptr_TrackMatrixNV)(GLenum, GLuint, GLenum, GLenum);
6739 #define CALL_TrackMatrixNV(disp, parameters) \
6740 (* GET_TrackMatrixNV(disp)) parameters
6741 static inline _glptr_TrackMatrixNV GET_TrackMatrixNV(struct _glapi_table *disp) {
6742 return (_glptr_TrackMatrixNV) (GET_by_offset(disp, _gloffset_TrackMatrixNV));
6743 }
6744
6745 static inline void SET_TrackMatrixNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLenum)) {
6746 SET_by_offset(disp, _gloffset_TrackMatrixNV, fn);
6747 }
6748
6749 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dNV)(GLuint, GLdouble);
6750 #define CALL_VertexAttrib1dNV(disp, parameters) \
6751 (* GET_VertexAttrib1dNV(disp)) parameters
6752 static inline _glptr_VertexAttrib1dNV GET_VertexAttrib1dNV(struct _glapi_table *disp) {
6753 return (_glptr_VertexAttrib1dNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dNV));
6754 }
6755
6756 static inline void SET_VertexAttrib1dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) {
6757 SET_by_offset(disp, _gloffset_VertexAttrib1dNV, fn);
6758 }
6759
6760 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvNV)(GLuint, const GLdouble *);
6761 #define CALL_VertexAttrib1dvNV(disp, parameters) \
6762 (* GET_VertexAttrib1dvNV(disp)) parameters
6763 static inline _glptr_VertexAttrib1dvNV GET_VertexAttrib1dvNV(struct _glapi_table *disp) {
6764 return (_glptr_VertexAttrib1dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dvNV));
6765 }
6766
6767 static inline void SET_VertexAttrib1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
6768 SET_by_offset(disp, _gloffset_VertexAttrib1dvNV, fn);
6769 }
6770
6771 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fNV)(GLuint, GLfloat);
6772 #define CALL_VertexAttrib1fNV(disp, parameters) \
6773 (* GET_VertexAttrib1fNV(disp)) parameters
6774 static inline _glptr_VertexAttrib1fNV GET_VertexAttrib1fNV(struct _glapi_table *disp) {
6775 return (_glptr_VertexAttrib1fNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fNV));
6776 }
6777
6778 static inline void SET_VertexAttrib1fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) {
6779 SET_by_offset(disp, _gloffset_VertexAttrib1fNV, fn);
6780 }
6781
6782 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvNV)(GLuint, const GLfloat *);
6783 #define CALL_VertexAttrib1fvNV(disp, parameters) \
6784 (* GET_VertexAttrib1fvNV(disp)) parameters
6785 static inline _glptr_VertexAttrib1fvNV GET_VertexAttrib1fvNV(struct _glapi_table *disp) {
6786 return (_glptr_VertexAttrib1fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fvNV));
6787 }
6788
6789 static inline void SET_VertexAttrib1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
6790 SET_by_offset(disp, _gloffset_VertexAttrib1fvNV, fn);
6791 }
6792
6793 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sNV)(GLuint, GLshort);
6794 #define CALL_VertexAttrib1sNV(disp, parameters) \
6795 (* GET_VertexAttrib1sNV(disp)) parameters
6796 static inline _glptr_VertexAttrib1sNV GET_VertexAttrib1sNV(struct _glapi_table *disp) {
6797 return (_glptr_VertexAttrib1sNV) (GET_by_offset(disp, _gloffset_VertexAttrib1sNV));
6798 }
6799
6800 static inline void SET_VertexAttrib1sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) {
6801 SET_by_offset(disp, _gloffset_VertexAttrib1sNV, fn);
6802 }
6803
6804 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svNV)(GLuint, const GLshort *);
6805 #define CALL_VertexAttrib1svNV(disp, parameters) \
6806 (* GET_VertexAttrib1svNV(disp)) parameters
6807 static inline _glptr_VertexAttrib1svNV GET_VertexAttrib1svNV(struct _glapi_table *disp) {
6808 return (_glptr_VertexAttrib1svNV) (GET_by_offset(disp, _gloffset_VertexAttrib1svNV));
6809 }
6810
6811 static inline void SET_VertexAttrib1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
6812 SET_by_offset(disp, _gloffset_VertexAttrib1svNV, fn);
6813 }
6814
6815 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dNV)(GLuint, GLdouble, GLdouble);
6816 #define CALL_VertexAttrib2dNV(disp, parameters) \
6817 (* GET_VertexAttrib2dNV(disp)) parameters
6818 static inline _glptr_VertexAttrib2dNV GET_VertexAttrib2dNV(struct _glapi_table *disp) {
6819 return (_glptr_VertexAttrib2dNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dNV));
6820 }
6821
6822 static inline void SET_VertexAttrib2dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) {
6823 SET_by_offset(disp, _gloffset_VertexAttrib2dNV, fn);
6824 }
6825
6826 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvNV)(GLuint, const GLdouble *);
6827 #define CALL_VertexAttrib2dvNV(disp, parameters) \
6828 (* GET_VertexAttrib2dvNV(disp)) parameters
6829 static inline _glptr_VertexAttrib2dvNV GET_VertexAttrib2dvNV(struct _glapi_table *disp) {
6830 return (_glptr_VertexAttrib2dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dvNV));
6831 }
6832
6833 static inline void SET_VertexAttrib2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
6834 SET_by_offset(disp, _gloffset_VertexAttrib2dvNV, fn);
6835 }
6836
6837 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fNV)(GLuint, GLfloat, GLfloat);
6838 #define CALL_VertexAttrib2fNV(disp, parameters) \
6839 (* GET_VertexAttrib2fNV(disp)) parameters
6840 static inline _glptr_VertexAttrib2fNV GET_VertexAttrib2fNV(struct _glapi_table *disp) {
6841 return (_glptr_VertexAttrib2fNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fNV));
6842 }
6843
6844 static inline void SET_VertexAttrib2fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) {
6845 SET_by_offset(disp, _gloffset_VertexAttrib2fNV, fn);
6846 }
6847
6848 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvNV)(GLuint, const GLfloat *);
6849 #define CALL_VertexAttrib2fvNV(disp, parameters) \
6850 (* GET_VertexAttrib2fvNV(disp)) parameters
6851 static inline _glptr_VertexAttrib2fvNV GET_VertexAttrib2fvNV(struct _glapi_table *disp) {
6852 return (_glptr_VertexAttrib2fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fvNV));
6853 }
6854
6855 static inline void SET_VertexAttrib2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
6856 SET_by_offset(disp, _gloffset_VertexAttrib2fvNV, fn);
6857 }
6858
6859 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sNV)(GLuint, GLshort, GLshort);
6860 #define CALL_VertexAttrib2sNV(disp, parameters) \
6861 (* GET_VertexAttrib2sNV(disp)) parameters
6862 static inline _glptr_VertexAttrib2sNV GET_VertexAttrib2sNV(struct _glapi_table *disp) {
6863 return (_glptr_VertexAttrib2sNV) (GET_by_offset(disp, _gloffset_VertexAttrib2sNV));
6864 }
6865
6866 static inline void SET_VertexAttrib2sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) {
6867 SET_by_offset(disp, _gloffset_VertexAttrib2sNV, fn);
6868 }
6869
6870 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svNV)(GLuint, const GLshort *);
6871 #define CALL_VertexAttrib2svNV(disp, parameters) \
6872 (* GET_VertexAttrib2svNV(disp)) parameters
6873 static inline _glptr_VertexAttrib2svNV GET_VertexAttrib2svNV(struct _glapi_table *disp) {
6874 return (_glptr_VertexAttrib2svNV) (GET_by_offset(disp, _gloffset_VertexAttrib2svNV));
6875 }
6876
6877 static inline void SET_VertexAttrib2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
6878 SET_by_offset(disp, _gloffset_VertexAttrib2svNV, fn);
6879 }
6880
6881 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dNV)(GLuint, GLdouble, GLdouble, GLdouble);
6882 #define CALL_VertexAttrib3dNV(disp, parameters) \
6883 (* GET_VertexAttrib3dNV(disp)) parameters
6884 static inline _glptr_VertexAttrib3dNV GET_VertexAttrib3dNV(struct _glapi_table *disp) {
6885 return (_glptr_VertexAttrib3dNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dNV));
6886 }
6887
6888 static inline void SET_VertexAttrib3dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) {
6889 SET_by_offset(disp, _gloffset_VertexAttrib3dNV, fn);
6890 }
6891
6892 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvNV)(GLuint, const GLdouble *);
6893 #define CALL_VertexAttrib3dvNV(disp, parameters) \
6894 (* GET_VertexAttrib3dvNV(disp)) parameters
6895 static inline _glptr_VertexAttrib3dvNV GET_VertexAttrib3dvNV(struct _glapi_table *disp) {
6896 return (_glptr_VertexAttrib3dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dvNV));
6897 }
6898
6899 static inline void SET_VertexAttrib3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
6900 SET_by_offset(disp, _gloffset_VertexAttrib3dvNV, fn);
6901 }
6902
6903 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fNV)(GLuint, GLfloat, GLfloat, GLfloat);
6904 #define CALL_VertexAttrib3fNV(disp, parameters) \
6905 (* GET_VertexAttrib3fNV(disp)) parameters
6906 static inline _glptr_VertexAttrib3fNV GET_VertexAttrib3fNV(struct _glapi_table *disp) {
6907 return (_glptr_VertexAttrib3fNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fNV));
6908 }
6909
6910 static inline void SET_VertexAttrib3fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) {
6911 SET_by_offset(disp, _gloffset_VertexAttrib3fNV, fn);
6912 }
6913
6914 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvNV)(GLuint, const GLfloat *);
6915 #define CALL_VertexAttrib3fvNV(disp, parameters) \
6916 (* GET_VertexAttrib3fvNV(disp)) parameters
6917 static inline _glptr_VertexAttrib3fvNV GET_VertexAttrib3fvNV(struct _glapi_table *disp) {
6918 return (_glptr_VertexAttrib3fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fvNV));
6919 }
6920
6921 static inline void SET_VertexAttrib3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
6922 SET_by_offset(disp, _gloffset_VertexAttrib3fvNV, fn);
6923 }
6924
6925 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sNV)(GLuint, GLshort, GLshort, GLshort);
6926 #define CALL_VertexAttrib3sNV(disp, parameters) \
6927 (* GET_VertexAttrib3sNV(disp)) parameters
6928 static inline _glptr_VertexAttrib3sNV GET_VertexAttrib3sNV(struct _glapi_table *disp) {
6929 return (_glptr_VertexAttrib3sNV) (GET_by_offset(disp, _gloffset_VertexAttrib3sNV));
6930 }
6931
6932 static inline void SET_VertexAttrib3sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) {
6933 SET_by_offset(disp, _gloffset_VertexAttrib3sNV, fn);
6934 }
6935
6936 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svNV)(GLuint, const GLshort *);
6937 #define CALL_VertexAttrib3svNV(disp, parameters) \
6938 (* GET_VertexAttrib3svNV(disp)) parameters
6939 static inline _glptr_VertexAttrib3svNV GET_VertexAttrib3svNV(struct _glapi_table *disp) {
6940 return (_glptr_VertexAttrib3svNV) (GET_by_offset(disp, _gloffset_VertexAttrib3svNV));
6941 }
6942
6943 static inline void SET_VertexAttrib3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
6944 SET_by_offset(disp, _gloffset_VertexAttrib3svNV, fn);
6945 }
6946
6947 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dNV)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
6948 #define CALL_VertexAttrib4dNV(disp, parameters) \
6949 (* GET_VertexAttrib4dNV(disp)) parameters
6950 static inline _glptr_VertexAttrib4dNV GET_VertexAttrib4dNV(struct _glapi_table *disp) {
6951 return (_glptr_VertexAttrib4dNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dNV));
6952 }
6953
6954 static inline void SET_VertexAttrib4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) {
6955 SET_by_offset(disp, _gloffset_VertexAttrib4dNV, fn);
6956 }
6957
6958 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvNV)(GLuint, const GLdouble *);
6959 #define CALL_VertexAttrib4dvNV(disp, parameters) \
6960 (* GET_VertexAttrib4dvNV(disp)) parameters
6961 static inline _glptr_VertexAttrib4dvNV GET_VertexAttrib4dvNV(struct _glapi_table *disp) {
6962 return (_glptr_VertexAttrib4dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dvNV));
6963 }
6964
6965 static inline void SET_VertexAttrib4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) {
6966 SET_by_offset(disp, _gloffset_VertexAttrib4dvNV, fn);
6967 }
6968
6969 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fNV)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
6970 #define CALL_VertexAttrib4fNV(disp, parameters) \
6971 (* GET_VertexAttrib4fNV(disp)) parameters
6972 static inline _glptr_VertexAttrib4fNV GET_VertexAttrib4fNV(struct _glapi_table *disp) {
6973 return (_glptr_VertexAttrib4fNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fNV));
6974 }
6975
6976 static inline void SET_VertexAttrib4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
6977 SET_by_offset(disp, _gloffset_VertexAttrib4fNV, fn);
6978 }
6979
6980 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvNV)(GLuint, const GLfloat *);
6981 #define CALL_VertexAttrib4fvNV(disp, parameters) \
6982 (* GET_VertexAttrib4fvNV(disp)) parameters
6983 static inline _glptr_VertexAttrib4fvNV GET_VertexAttrib4fvNV(struct _glapi_table *disp) {
6984 return (_glptr_VertexAttrib4fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fvNV));
6985 }
6986
6987 static inline void SET_VertexAttrib4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
6988 SET_by_offset(disp, _gloffset_VertexAttrib4fvNV, fn);
6989 }
6990
6991 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sNV)(GLuint, GLshort, GLshort, GLshort, GLshort);
6992 #define CALL_VertexAttrib4sNV(disp, parameters) \
6993 (* GET_VertexAttrib4sNV(disp)) parameters
6994 static inline _glptr_VertexAttrib4sNV GET_VertexAttrib4sNV(struct _glapi_table *disp) {
6995 return (_glptr_VertexAttrib4sNV) (GET_by_offset(disp, _gloffset_VertexAttrib4sNV));
6996 }
6997
6998 static inline void SET_VertexAttrib4sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) {
6999 SET_by_offset(disp, _gloffset_VertexAttrib4sNV, fn);
7000 }
7001
7002 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svNV)(GLuint, const GLshort *);
7003 #define CALL_VertexAttrib4svNV(disp, parameters) \
7004 (* GET_VertexAttrib4svNV(disp)) parameters
7005 static inline _glptr_VertexAttrib4svNV GET_VertexAttrib4svNV(struct _glapi_table *disp) {
7006 return (_glptr_VertexAttrib4svNV) (GET_by_offset(disp, _gloffset_VertexAttrib4svNV));
7007 }
7008
7009 static inline void SET_VertexAttrib4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) {
7010 SET_by_offset(disp, _gloffset_VertexAttrib4svNV, fn);
7011 }
7012
7013 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubNV)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
7014 #define CALL_VertexAttrib4ubNV(disp, parameters) \
7015 (* GET_VertexAttrib4ubNV(disp)) parameters
7016 static inline _glptr_VertexAttrib4ubNV GET_VertexAttrib4ubNV(struct _glapi_table *disp) {
7017 return (_glptr_VertexAttrib4ubNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubNV));
7018 }
7019
7020 static inline void SET_VertexAttrib4ubNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) {
7021 SET_by_offset(disp, _gloffset_VertexAttrib4ubNV, fn);
7022 }
7023
7024 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvNV)(GLuint, const GLubyte *);
7025 #define CALL_VertexAttrib4ubvNV(disp, parameters) \
7026 (* GET_VertexAttrib4ubvNV(disp)) parameters
7027 static inline _glptr_VertexAttrib4ubvNV GET_VertexAttrib4ubvNV(struct _glapi_table *disp) {
7028 return (_glptr_VertexAttrib4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvNV));
7029 }
7030
7031 static inline void SET_VertexAttrib4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) {
7032 SET_by_offset(disp, _gloffset_VertexAttrib4ubvNV, fn);
7033 }
7034
7035 typedef void (GLAPIENTRYP _glptr_VertexAttribs1dvNV)(GLuint, GLsizei, const GLdouble *);
7036 #define CALL_VertexAttribs1dvNV(disp, parameters) \
7037 (* GET_VertexAttribs1dvNV(disp)) parameters
7038 static inline _glptr_VertexAttribs1dvNV GET_VertexAttribs1dvNV(struct _glapi_table *disp) {
7039 return (_glptr_VertexAttribs1dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1dvNV));
7040 }
7041
7042 static inline void SET_VertexAttribs1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
7043 SET_by_offset(disp, _gloffset_VertexAttribs1dvNV, fn);
7044 }
7045
7046 typedef void (GLAPIENTRYP _glptr_VertexAttribs1fvNV)(GLuint, GLsizei, const GLfloat *);
7047 #define CALL_VertexAttribs1fvNV(disp, parameters) \
7048 (* GET_VertexAttribs1fvNV(disp)) parameters
7049 static inline _glptr_VertexAttribs1fvNV GET_VertexAttribs1fvNV(struct _glapi_table *disp) {
7050 return (_glptr_VertexAttribs1fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1fvNV));
7051 }
7052
7053 static inline void SET_VertexAttribs1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
7054 SET_by_offset(disp, _gloffset_VertexAttribs1fvNV, fn);
7055 }
7056
7057 typedef void (GLAPIENTRYP _glptr_VertexAttribs1svNV)(GLuint, GLsizei, const GLshort *);
7058 #define CALL_VertexAttribs1svNV(disp, parameters) \
7059 (* GET_VertexAttribs1svNV(disp)) parameters
7060 static inline _glptr_VertexAttribs1svNV GET_VertexAttribs1svNV(struct _glapi_table *disp) {
7061 return (_glptr_VertexAttribs1svNV) (GET_by_offset(disp, _gloffset_VertexAttribs1svNV));
7062 }
7063
7064 static inline void SET_VertexAttribs1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
7065 SET_by_offset(disp, _gloffset_VertexAttribs1svNV, fn);
7066 }
7067
7068 typedef void (GLAPIENTRYP _glptr_VertexAttribs2dvNV)(GLuint, GLsizei, const GLdouble *);
7069 #define CALL_VertexAttribs2dvNV(disp, parameters) \
7070 (* GET_VertexAttribs2dvNV(disp)) parameters
7071 static inline _glptr_VertexAttribs2dvNV GET_VertexAttribs2dvNV(struct _glapi_table *disp) {
7072 return (_glptr_VertexAttribs2dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2dvNV));
7073 }
7074
7075 static inline void SET_VertexAttribs2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
7076 SET_by_offset(disp, _gloffset_VertexAttribs2dvNV, fn);
7077 }
7078
7079 typedef void (GLAPIENTRYP _glptr_VertexAttribs2fvNV)(GLuint, GLsizei, const GLfloat *);
7080 #define CALL_VertexAttribs2fvNV(disp, parameters) \
7081 (* GET_VertexAttribs2fvNV(disp)) parameters
7082 static inline _glptr_VertexAttribs2fvNV GET_VertexAttribs2fvNV(struct _glapi_table *disp) {
7083 return (_glptr_VertexAttribs2fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2fvNV));
7084 }
7085
7086 static inline void SET_VertexAttribs2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
7087 SET_by_offset(disp, _gloffset_VertexAttribs2fvNV, fn);
7088 }
7089
7090 typedef void (GLAPIENTRYP _glptr_VertexAttribs2svNV)(GLuint, GLsizei, const GLshort *);
7091 #define CALL_VertexAttribs2svNV(disp, parameters) \
7092 (* GET_VertexAttribs2svNV(disp)) parameters
7093 static inline _glptr_VertexAttribs2svNV GET_VertexAttribs2svNV(struct _glapi_table *disp) {
7094 return (_glptr_VertexAttribs2svNV) (GET_by_offset(disp, _gloffset_VertexAttribs2svNV));
7095 }
7096
7097 static inline void SET_VertexAttribs2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
7098 SET_by_offset(disp, _gloffset_VertexAttribs2svNV, fn);
7099 }
7100
7101 typedef void (GLAPIENTRYP _glptr_VertexAttribs3dvNV)(GLuint, GLsizei, const GLdouble *);
7102 #define CALL_VertexAttribs3dvNV(disp, parameters) \
7103 (* GET_VertexAttribs3dvNV(disp)) parameters
7104 static inline _glptr_VertexAttribs3dvNV GET_VertexAttribs3dvNV(struct _glapi_table *disp) {
7105 return (_glptr_VertexAttribs3dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3dvNV));
7106 }
7107
7108 static inline void SET_VertexAttribs3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
7109 SET_by_offset(disp, _gloffset_VertexAttribs3dvNV, fn);
7110 }
7111
7112 typedef void (GLAPIENTRYP _glptr_VertexAttribs3fvNV)(GLuint, GLsizei, const GLfloat *);
7113 #define CALL_VertexAttribs3fvNV(disp, parameters) \
7114 (* GET_VertexAttribs3fvNV(disp)) parameters
7115 static inline _glptr_VertexAttribs3fvNV GET_VertexAttribs3fvNV(struct _glapi_table *disp) {
7116 return (_glptr_VertexAttribs3fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3fvNV));
7117 }
7118
7119 static inline void SET_VertexAttribs3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
7120 SET_by_offset(disp, _gloffset_VertexAttribs3fvNV, fn);
7121 }
7122
7123 typedef void (GLAPIENTRYP _glptr_VertexAttribs3svNV)(GLuint, GLsizei, const GLshort *);
7124 #define CALL_VertexAttribs3svNV(disp, parameters) \
7125 (* GET_VertexAttribs3svNV(disp)) parameters
7126 static inline _glptr_VertexAttribs3svNV GET_VertexAttribs3svNV(struct _glapi_table *disp) {
7127 return (_glptr_VertexAttribs3svNV) (GET_by_offset(disp, _gloffset_VertexAttribs3svNV));
7128 }
7129
7130 static inline void SET_VertexAttribs3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
7131 SET_by_offset(disp, _gloffset_VertexAttribs3svNV, fn);
7132 }
7133
7134 typedef void (GLAPIENTRYP _glptr_VertexAttribs4dvNV)(GLuint, GLsizei, const GLdouble *);
7135 #define CALL_VertexAttribs4dvNV(disp, parameters) \
7136 (* GET_VertexAttribs4dvNV(disp)) parameters
7137 static inline _glptr_VertexAttribs4dvNV GET_VertexAttribs4dvNV(struct _glapi_table *disp) {
7138 return (_glptr_VertexAttribs4dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4dvNV));
7139 }
7140
7141 static inline void SET_VertexAttribs4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) {
7142 SET_by_offset(disp, _gloffset_VertexAttribs4dvNV, fn);
7143 }
7144
7145 typedef void (GLAPIENTRYP _glptr_VertexAttribs4fvNV)(GLuint, GLsizei, const GLfloat *);
7146 #define CALL_VertexAttribs4fvNV(disp, parameters) \
7147 (* GET_VertexAttribs4fvNV(disp)) parameters
7148 static inline _glptr_VertexAttribs4fvNV GET_VertexAttribs4fvNV(struct _glapi_table *disp) {
7149 return (_glptr_VertexAttribs4fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4fvNV));
7150 }
7151
7152 static inline void SET_VertexAttribs4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
7153 SET_by_offset(disp, _gloffset_VertexAttribs4fvNV, fn);
7154 }
7155
7156 typedef void (GLAPIENTRYP _glptr_VertexAttribs4svNV)(GLuint, GLsizei, const GLshort *);
7157 #define CALL_VertexAttribs4svNV(disp, parameters) \
7158 (* GET_VertexAttribs4svNV(disp)) parameters
7159 static inline _glptr_VertexAttribs4svNV GET_VertexAttribs4svNV(struct _glapi_table *disp) {
7160 return (_glptr_VertexAttribs4svNV) (GET_by_offset(disp, _gloffset_VertexAttribs4svNV));
7161 }
7162
7163 static inline void SET_VertexAttribs4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) {
7164 SET_by_offset(disp, _gloffset_VertexAttribs4svNV, fn);
7165 }
7166
7167 typedef void (GLAPIENTRYP _glptr_VertexAttribs4ubvNV)(GLuint, GLsizei, const GLubyte *);
7168 #define CALL_VertexAttribs4ubvNV(disp, parameters) \
7169 (* GET_VertexAttribs4ubvNV(disp)) parameters
7170 static inline _glptr_VertexAttribs4ubvNV GET_VertexAttribs4ubvNV(struct _glapi_table *disp) {
7171 return (_glptr_VertexAttribs4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4ubvNV));
7172 }
7173
7174 static inline void SET_VertexAttribs4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *)) {
7175 SET_by_offset(disp, _gloffset_VertexAttribs4ubvNV, fn);
7176 }
7177
7178 typedef void (GLAPIENTRYP _glptr_PointParameteriNV)(GLenum, GLint);
7179 #define CALL_PointParameteriNV(disp, parameters) \
7180 (* GET_PointParameteriNV(disp)) parameters
7181 static inline _glptr_PointParameteriNV GET_PointParameteriNV(struct _glapi_table *disp) {
7182 return (_glptr_PointParameteriNV) (GET_by_offset(disp, _gloffset_PointParameteriNV));
7183 }
7184
7185 static inline void SET_PointParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) {
7186 SET_by_offset(disp, _gloffset_PointParameteriNV, fn);
7187 }
7188
7189 typedef void (GLAPIENTRYP _glptr_PointParameterivNV)(GLenum, const GLint *);
7190 #define CALL_PointParameterivNV(disp, parameters) \
7191 (* GET_PointParameterivNV(disp)) parameters
7192 static inline _glptr_PointParameterivNV GET_PointParameterivNV(struct _glapi_table *disp) {
7193 return (_glptr_PointParameterivNV) (GET_by_offset(disp, _gloffset_PointParameterivNV));
7194 }
7195
7196 static inline void SET_PointParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) {
7197 SET_by_offset(disp, _gloffset_PointParameterivNV, fn);
7198 }
7199
7200 typedef void (GLAPIENTRYP _glptr_ActiveStencilFaceEXT)(GLenum);
7201 #define CALL_ActiveStencilFaceEXT(disp, parameters) \
7202 (* GET_ActiveStencilFaceEXT(disp)) parameters
7203 static inline _glptr_ActiveStencilFaceEXT GET_ActiveStencilFaceEXT(struct _glapi_table *disp) {
7204 return (_glptr_ActiveStencilFaceEXT) (GET_by_offset(disp, _gloffset_ActiveStencilFaceEXT));
7205 }
7206
7207 static inline void SET_ActiveStencilFaceEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) {
7208 SET_by_offset(disp, _gloffset_ActiveStencilFaceEXT, fn);
7209 }
7210
7211 typedef void (GLAPIENTRYP _glptr_BindVertexArrayAPPLE)(GLuint);
7212 #define CALL_BindVertexArrayAPPLE(disp, parameters) \
7213 (* GET_BindVertexArrayAPPLE(disp)) parameters
7214 static inline _glptr_BindVertexArrayAPPLE GET_BindVertexArrayAPPLE(struct _glapi_table *disp) {
7215 return (_glptr_BindVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_BindVertexArrayAPPLE));
7216 }
7217
7218 static inline void SET_BindVertexArrayAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
7219 SET_by_offset(disp, _gloffset_BindVertexArrayAPPLE, fn);
7220 }
7221
7222 typedef void (GLAPIENTRYP _glptr_DeleteVertexArraysAPPLE)(GLsizei, const GLuint *);
7223 #define CALL_DeleteVertexArraysAPPLE(disp, parameters) \
7224 (* GET_DeleteVertexArraysAPPLE(disp)) parameters
7225 static inline _glptr_DeleteVertexArraysAPPLE GET_DeleteVertexArraysAPPLE(struct _glapi_table *disp) {
7226 return (_glptr_DeleteVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE));
7227 }
7228
7229 static inline void SET_DeleteVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) {
7230 SET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE, fn);
7231 }
7232
7233 typedef void (GLAPIENTRYP _glptr_GenVertexArraysAPPLE)(GLsizei, GLuint *);
7234 #define CALL_GenVertexArraysAPPLE(disp, parameters) \
7235 (* GET_GenVertexArraysAPPLE(disp)) parameters
7236 static inline _glptr_GenVertexArraysAPPLE GET_GenVertexArraysAPPLE(struct _glapi_table *disp) {
7237 return (_glptr_GenVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_GenVertexArraysAPPLE));
7238 }
7239
7240 static inline void SET_GenVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) {
7241 SET_by_offset(disp, _gloffset_GenVertexArraysAPPLE, fn);
7242 }
7243
7244 typedef GLboolean (GLAPIENTRYP _glptr_IsVertexArrayAPPLE)(GLuint);
7245 #define CALL_IsVertexArrayAPPLE(disp, parameters) \
7246 (* GET_IsVertexArrayAPPLE(disp)) parameters
7247 static inline _glptr_IsVertexArrayAPPLE GET_IsVertexArrayAPPLE(struct _glapi_table *disp) {
7248 return (_glptr_IsVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_IsVertexArrayAPPLE));
7249 }
7250
7251 static inline void SET_IsVertexArrayAPPLE(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) {
7252 SET_by_offset(disp, _gloffset_IsVertexArrayAPPLE, fn);
7253 }
7254
7255 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterdvNV)(GLuint, GLsizei, const GLubyte *, GLdouble *);
7256 #define CALL_GetProgramNamedParameterdvNV(disp, parameters) \
7257 (* GET_GetProgramNamedParameterdvNV(disp)) parameters
7258 static inline _glptr_GetProgramNamedParameterdvNV GET_GetProgramNamedParameterdvNV(struct _glapi_table *disp) {
7259 return (_glptr_GetProgramNamedParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV));
7260 }
7261
7262 static inline void SET_GetProgramNamedParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble *)) {
7263 SET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV, fn);
7264 }
7265
7266 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterfvNV)(GLuint, GLsizei, const GLubyte *, GLfloat *);
7267 #define CALL_GetProgramNamedParameterfvNV(disp, parameters) \
7268 (* GET_GetProgramNamedParameterfvNV(disp)) parameters
7269 static inline _glptr_GetProgramNamedParameterfvNV GET_GetProgramNamedParameterfvNV(struct _glapi_table *disp) {
7270 return (_glptr_GetProgramNamedParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV));
7271 }
7272
7273 static inline void SET_GetProgramNamedParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat *)) {
7274 SET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV, fn);
7275 }
7276
7277 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dNV)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble);
7278 #define CALL_ProgramNamedParameter4dNV(disp, parameters) \
7279 (* GET_ProgramNamedParameter4dNV(disp)) parameters
7280 static inline _glptr_ProgramNamedParameter4dNV GET_ProgramNamedParameter4dNV(struct _glapi_table *disp) {
7281 return (_glptr_ProgramNamedParameter4dNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV));
7282 }
7283
7284 static inline void SET_ProgramNamedParameter4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble)) {
7285 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV, fn);
7286 }
7287
7288 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dvNV)(GLuint, GLsizei, const GLubyte *, const GLdouble *);
7289 #define CALL_ProgramNamedParameter4dvNV(disp, parameters) \
7290 (* GET_ProgramNamedParameter4dvNV(disp)) parameters
7291 static inline _glptr_ProgramNamedParameter4dvNV GET_ProgramNamedParameter4dvNV(struct _glapi_table *disp) {
7292 return (_glptr_ProgramNamedParameter4dvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV));
7293 }
7294
7295 static inline void SET_ProgramNamedParameter4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLdouble *)) {
7296 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV, fn);
7297 }
7298
7299 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fNV)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat);
7300 #define CALL_ProgramNamedParameter4fNV(disp, parameters) \
7301 (* GET_ProgramNamedParameter4fNV(disp)) parameters
7302 static inline _glptr_ProgramNamedParameter4fNV GET_ProgramNamedParameter4fNV(struct _glapi_table *disp) {
7303 return (_glptr_ProgramNamedParameter4fNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV));
7304 }
7305
7306 static inline void SET_ProgramNamedParameter4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat)) {
7307 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV, fn);
7308 }
7309
7310 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fvNV)(GLuint, GLsizei, const GLubyte *, const GLfloat *);
7311 #define CALL_ProgramNamedParameter4fvNV(disp, parameters) \
7312 (* GET_ProgramNamedParameter4fvNV(disp)) parameters
7313 static inline _glptr_ProgramNamedParameter4fvNV GET_ProgramNamedParameter4fvNV(struct _glapi_table *disp) {
7314 return (_glptr_ProgramNamedParameter4fvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV));
7315 }
7316
7317 static inline void SET_ProgramNamedParameter4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLfloat *)) {
7318 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV, fn);
7319 }
7320
7321 typedef void (GLAPIENTRYP _glptr_DepthBoundsEXT)(GLclampd, GLclampd);
7322 #define CALL_DepthBoundsEXT(disp, parameters) \
7323 (* GET_DepthBoundsEXT(disp)) parameters
7324 static inline _glptr_DepthBoundsEXT GET_DepthBoundsEXT(struct _glapi_table *disp) {
7325 return (_glptr_DepthBoundsEXT) (GET_by_offset(disp, _gloffset_DepthBoundsEXT));
7326 }
7327
7328 static inline void SET_DepthBoundsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) {
7329 SET_by_offset(disp, _gloffset_DepthBoundsEXT, fn);
7330 }
7331
7332 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateEXT)(GLenum, GLenum);
7333 #define CALL_BlendEquationSeparateEXT(disp, parameters) \
7334 (* GET_BlendEquationSeparateEXT(disp)) parameters
7335 static inline _glptr_BlendEquationSeparateEXT GET_BlendEquationSeparateEXT(struct _glapi_table *disp) {
7336 return (_glptr_BlendEquationSeparateEXT) (GET_by_offset(disp, _gloffset_BlendEquationSeparateEXT));
7337 }
7338
7339 static inline void SET_BlendEquationSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
7340 SET_by_offset(disp, _gloffset_BlendEquationSeparateEXT, fn);
7341 }
7342
7343 typedef void (GLAPIENTRYP _glptr_BufferParameteriAPPLE)(GLenum, GLenum, GLint);
7344 #define CALL_BufferParameteriAPPLE(disp, parameters) \
7345 (* GET_BufferParameteriAPPLE(disp)) parameters
7346 static inline _glptr_BufferParameteriAPPLE GET_BufferParameteriAPPLE(struct _glapi_table *disp) {
7347 return (_glptr_BufferParameteriAPPLE) (GET_by_offset(disp, _gloffset_BufferParameteriAPPLE));
7348 }
7349
7350 static inline void SET_BufferParameteriAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) {
7351 SET_by_offset(disp, _gloffset_BufferParameteriAPPLE, fn);
7352 }
7353
7354 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRangeAPPLE)(GLenum, GLintptr, GLsizeiptr);
7355 #define CALL_FlushMappedBufferRangeAPPLE(disp, parameters) \
7356 (* GET_FlushMappedBufferRangeAPPLE(disp)) parameters
7357 static inline _glptr_FlushMappedBufferRangeAPPLE GET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp) {
7358 return (_glptr_FlushMappedBufferRangeAPPLE) (GET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE));
7359 }
7360
7361 static inline void SET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) {
7362 SET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE, fn);
7363 }
7364
7365 typedef void (GLAPIENTRYP _glptr_BindFragDataLocationEXT)(GLuint, GLuint, const GLchar *);
7366 #define CALL_BindFragDataLocationEXT(disp, parameters) \
7367 (* GET_BindFragDataLocationEXT(disp)) parameters
7368 static inline _glptr_BindFragDataLocationEXT GET_BindFragDataLocationEXT(struct _glapi_table *disp) {
7369 return (_glptr_BindFragDataLocationEXT) (GET_by_offset(disp, _gloffset_BindFragDataLocationEXT));
7370 }
7371
7372 static inline void SET_BindFragDataLocationEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLchar *)) {
7373 SET_by_offset(disp, _gloffset_BindFragDataLocationEXT, fn);
7374 }
7375
7376 typedef GLint (GLAPIENTRYP _glptr_GetFragDataLocationEXT)(GLuint, const GLchar *);
7377 #define CALL_GetFragDataLocationEXT(disp, parameters) \
7378 (* GET_GetFragDataLocationEXT(disp)) parameters
7379 static inline _glptr_GetFragDataLocationEXT GET_GetFragDataLocationEXT(struct _glapi_table *disp) {
7380 return (_glptr_GetFragDataLocationEXT) (GET_by_offset(disp, _gloffset_GetFragDataLocationEXT));
7381 }
7382
7383 static inline void SET_GetFragDataLocationEXT(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) {
7384 SET_by_offset(disp, _gloffset_GetFragDataLocationEXT, fn);
7385 }
7386
7387 typedef void (GLAPIENTRYP _glptr_ClearColorIiEXT)(GLint, GLint, GLint, GLint);
7388 #define CALL_ClearColorIiEXT(disp, parameters) \
7389 (* GET_ClearColorIiEXT(disp)) parameters
7390 static inline _glptr_ClearColorIiEXT GET_ClearColorIiEXT(struct _glapi_table *disp) {
7391 return (_glptr_ClearColorIiEXT) (GET_by_offset(disp, _gloffset_ClearColorIiEXT));
7392 }
7393
7394 static inline void SET_ClearColorIiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) {
7395 SET_by_offset(disp, _gloffset_ClearColorIiEXT, fn);
7396 }
7397
7398 typedef void (GLAPIENTRYP _glptr_ClearColorIuiEXT)(GLuint, GLuint, GLuint, GLuint);
7399 #define CALL_ClearColorIuiEXT(disp, parameters) \
7400 (* GET_ClearColorIuiEXT(disp)) parameters
7401 static inline _glptr_ClearColorIuiEXT GET_ClearColorIuiEXT(struct _glapi_table *disp) {
7402 return (_glptr_ClearColorIuiEXT) (GET_by_offset(disp, _gloffset_ClearColorIuiEXT));
7403 }
7404
7405 static inline void SET_ClearColorIuiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) {
7406 SET_by_offset(disp, _gloffset_ClearColorIuiEXT, fn);
7407 }
7408
7409 typedef void (GLAPIENTRYP _glptr_GetTexParameterIivEXT)(GLenum, GLenum, GLint *);
7410 #define CALL_GetTexParameterIivEXT(disp, parameters) \
7411 (* GET_GetTexParameterIivEXT(disp)) parameters
7412 static inline _glptr_GetTexParameterIivEXT GET_GetTexParameterIivEXT(struct _glapi_table *disp) {
7413 return (_glptr_GetTexParameterIivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIivEXT));
7414 }
7415
7416 static inline void SET_GetTexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) {
7417 SET_by_offset(disp, _gloffset_GetTexParameterIivEXT, fn);
7418 }
7419
7420 typedef void (GLAPIENTRYP _glptr_GetTexParameterIuivEXT)(GLenum, GLenum, GLuint *);
7421 #define CALL_GetTexParameterIuivEXT(disp, parameters) \
7422 (* GET_GetTexParameterIuivEXT(disp)) parameters
7423 static inline _glptr_GetTexParameterIuivEXT GET_GetTexParameterIuivEXT(struct _glapi_table *disp) {
7424 return (_glptr_GetTexParameterIuivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIuivEXT));
7425 }
7426
7427 static inline void SET_GetTexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint *)) {
7428 SET_by_offset(disp, _gloffset_GetTexParameterIuivEXT, fn);
7429 }
7430
7431 typedef void (GLAPIENTRYP _glptr_TexParameterIivEXT)(GLenum, GLenum, const GLint *);
7432 #define CALL_TexParameterIivEXT(disp, parameters) \
7433 (* GET_TexParameterIivEXT(disp)) parameters
7434 static inline _glptr_TexParameterIivEXT GET_TexParameterIivEXT(struct _glapi_table *disp) {
7435 return (_glptr_TexParameterIivEXT) (GET_by_offset(disp, _gloffset_TexParameterIivEXT));
7436 }
7437
7438 static inline void SET_TexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) {
7439 SET_by_offset(disp, _gloffset_TexParameterIivEXT, fn);
7440 }
7441
7442 typedef void (GLAPIENTRYP _glptr_TexParameterIuivEXT)(GLenum, GLenum, const GLuint *);
7443 #define CALL_TexParameterIuivEXT(disp, parameters) \
7444 (* GET_TexParameterIuivEXT(disp)) parameters
7445 static inline _glptr_TexParameterIuivEXT GET_TexParameterIuivEXT(struct _glapi_table *disp) {
7446 return (_glptr_TexParameterIuivEXT) (GET_by_offset(disp, _gloffset_TexParameterIuivEXT));
7447 }
7448
7449 static inline void SET_TexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) {
7450 SET_by_offset(disp, _gloffset_TexParameterIuivEXT, fn);
7451 }
7452
7453 typedef void (GLAPIENTRYP _glptr_GetTexParameterPointervAPPLE)(GLenum, GLenum, GLvoid **);
7454 #define CALL_GetTexParameterPointervAPPLE(disp, parameters) \
7455 (* GET_GetTexParameterPointervAPPLE(disp)) parameters
7456 static inline _glptr_GetTexParameterPointervAPPLE GET_GetTexParameterPointervAPPLE(struct _glapi_table *disp) {
7457 return (_glptr_GetTexParameterPointervAPPLE) (GET_by_offset(disp, _gloffset_GetTexParameterPointervAPPLE));
7458 }
7459
7460 static inline void SET_GetTexParameterPointervAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) {
7461 SET_by_offset(disp, _gloffset_GetTexParameterPointervAPPLE, fn);
7462 }
7463
7464 typedef void (GLAPIENTRYP _glptr_TextureRangeAPPLE)(GLenum, GLsizei, GLvoid *);
7465 #define CALL_TextureRangeAPPLE(disp, parameters) \
7466 (* GET_TextureRangeAPPLE(disp)) parameters
7467 static inline _glptr_TextureRangeAPPLE GET_TextureRangeAPPLE(struct _glapi_table *disp) {
7468 return (_glptr_TextureRangeAPPLE) (GET_by_offset(disp, _gloffset_TextureRangeAPPLE));
7469 }
7470
7471 static inline void SET_TextureRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLvoid *)) {
7472 SET_by_offset(disp, _gloffset_TextureRangeAPPLE, fn);
7473 }
7474
7475 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivAPPLE)(GLenum, GLuint, GLenum, GLint *);
7476 #define CALL_GetObjectParameterivAPPLE(disp, parameters) \
7477 (* GET_GetObjectParameterivAPPLE(disp)) parameters
7478 static inline _glptr_GetObjectParameterivAPPLE GET_GetObjectParameterivAPPLE(struct _glapi_table *disp) {
7479 return (_glptr_GetObjectParameterivAPPLE) (GET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE));
7480 }
7481
7482 static inline void SET_GetObjectParameterivAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) {
7483 SET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE, fn);
7484 }
7485
7486 typedef GLenum (GLAPIENTRYP _glptr_ObjectPurgeableAPPLE)(GLenum, GLuint, GLenum);
7487 #define CALL_ObjectPurgeableAPPLE(disp, parameters) \
7488 (* GET_ObjectPurgeableAPPLE(disp)) parameters
7489 static inline _glptr_ObjectPurgeableAPPLE GET_ObjectPurgeableAPPLE(struct _glapi_table *disp) {
7490 return (_glptr_ObjectPurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE));
7491 }
7492
7493 static inline void SET_ObjectPurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
7494 SET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE, fn);
7495 }
7496
7497 typedef GLenum (GLAPIENTRYP _glptr_ObjectUnpurgeableAPPLE)(GLenum, GLuint, GLenum);
7498 #define CALL_ObjectUnpurgeableAPPLE(disp, parameters) \
7499 (* GET_ObjectUnpurgeableAPPLE(disp)) parameters
7500 static inline _glptr_ObjectUnpurgeableAPPLE GET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp) {
7501 return (_glptr_ObjectUnpurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE));
7502 }
7503
7504 static inline void SET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) {
7505 SET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE, fn);
7506 }
7507
7508 typedef GLuint (GLAPIENTRYP _glptr_CreateShaderProgramEXT)(GLenum, const GLchar *);
7509 #define CALL_CreateShaderProgramEXT(disp, parameters) \
7510 (* GET_CreateShaderProgramEXT(disp)) parameters
7511 static inline _glptr_CreateShaderProgramEXT GET_CreateShaderProgramEXT(struct _glapi_table *disp) {
7512 return (_glptr_CreateShaderProgramEXT) (GET_by_offset(disp, _gloffset_CreateShaderProgramEXT));
7513 }
7514
7515 static inline void SET_CreateShaderProgramEXT(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum, const GLchar *)) {
7516 SET_by_offset(disp, _gloffset_CreateShaderProgramEXT, fn);
7517 }
7518
7519 typedef void (GLAPIENTRYP _glptr_TextureBarrierNV)(void);
7520 #define CALL_TextureBarrierNV(disp, parameters) \
7521 (* GET_TextureBarrierNV(disp)) parameters
7522 static inline _glptr_TextureBarrierNV GET_TextureBarrierNV(struct _glapi_table *disp) {
7523 return (_glptr_TextureBarrierNV) (GET_by_offset(disp, _gloffset_TextureBarrierNV));
7524 }
7525
7526 static inline void SET_TextureBarrierNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
7527 SET_by_offset(disp, _gloffset_TextureBarrierNV, fn);
7528 }
7529
7530
7531 #endif /* !defined( _DISPATCH_H_ ) */