1 /* DO NOT EDIT - This file generated automatically by gl_table.py (from Mesa) script */ 2 3 /* 4 * (C) Copyright IBM Corporation 2005 5 * All Rights Reserved. 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a 8 * copy of this software and associated documentation files (the "Software"), 9 * to deal in the Software without restriction, including without limitation 10 * the rights to use, copy, modify, merge, publish, distribute, sub license, 11 * and/or sell copies of the Software, and to permit persons to whom the 12 * Software is furnished to do so, subject to the following conditions: 13 * 14 * The above copyright notice and this permission notice (including the next 15 * paragraph) shall be included in all copies or substantial portions of the 16 * Software. 17 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 21 * IBM, 22 * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 25 * SOFTWARE. 26 */ 27 28 #if !defined( _DISPATCH_H_ ) 29 # define _DISPATCH_H_ 30 31 32 /** 33 * \file main/dispatch.h 34 * Macros for handling GL dispatch tables. 35 * 36 * For each known GL function, there are 3 macros in this file. The first 37 * macro is named CALL_FuncName and is used to call that GL function using 38 * the specified dispatch table. The other 2 macros, called GET_FuncName 39 * can SET_FuncName, are used to get and set the dispatch pointer for the 40 * named function in the specified dispatch table. 41 */ 42 43 /* GLXEXT is defined when building the GLX extension in the xserver. 44 */ 45 #if !defined(GLXEXT) 46 #include "main/mfeatures.h" 47 #endif 48 49 #define CALL_by_offset(disp, cast, offset, parameters) \ 50 (*(cast (GET_by_offset(disp, offset)))) parameters 51 #define GET_by_offset(disp, offset) \ 52 (offset >= 0) ? (((_glapi_proc *)(disp))[offset]) : NULL 53 #define SET_by_offset(disp, offset, fn) \ 54 do { \ 55 if ( (offset) < 0 ) { \ 56 /* fprintf( stderr, "[%s:%u] SET_by_offset(%p, %d, %s)!\n", */ \ 57 /* __func__, __LINE__, disp, offset, # fn); */ \ 58 /* abort(); */ \ 59 } \ 60 else { \ 61 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \ 62 } \ 63 } while(0) 64 65 /* total number of offsets below */ 66 #define _gloffset_COUNT 970 67 68 #define _gloffset_NewList 0 69 #define _gloffset_EndList 1 70 #define _gloffset_CallList 2 71 #define _gloffset_CallLists 3 72 #define _gloffset_DeleteLists 4 73 #define _gloffset_GenLists 5 74 #define _gloffset_ListBase 6 75 #define _gloffset_Begin 7 76 #define _gloffset_Bitmap 8 77 #define _gloffset_Color3b 9 78 #define _gloffset_Color3bv 10 79 #define _gloffset_Color3d 11 80 #define _gloffset_Color3dv 12 81 #define _gloffset_Color3f 13 82 #define _gloffset_Color3fv 14 83 #define _gloffset_Color3i 15 84 #define _gloffset_Color3iv 16 85 #define _gloffset_Color3s 17 86 #define _gloffset_Color3sv 18 87 #define _gloffset_Color3ub 19 88 #define _gloffset_Color3ubv 20 89 #define _gloffset_Color3ui 21 90 #define _gloffset_Color3uiv 22 91 #define _gloffset_Color3us 23 92 #define _gloffset_Color3usv 24 93 #define _gloffset_Color4b 25 94 #define _gloffset_Color4bv 26 95 #define _gloffset_Color4d 27 96 #define _gloffset_Color4dv 28 97 #define _gloffset_Color4f 29 98 #define _gloffset_Color4fv 30 99 #define _gloffset_Color4i 31 100 #define _gloffset_Color4iv 32 101 #define _gloffset_Color4s 33 102 #define _gloffset_Color4sv 34 103 #define _gloffset_Color4ub 35 104 #define _gloffset_Color4ubv 36 105 #define _gloffset_Color4ui 37 106 #define _gloffset_Color4uiv 38 107 #define _gloffset_Color4us 39 108 #define _gloffset_Color4usv 40 109 #define _gloffset_EdgeFlag 41 110 #define _gloffset_EdgeFlagv 42 111 #define _gloffset_End 43 112 #define _gloffset_Indexd 44 113 #define _gloffset_Indexdv 45 114 #define _gloffset_Indexf 46 115 #define _gloffset_Indexfv 47 116 #define _gloffset_Indexi 48 117 #define _gloffset_Indexiv 49 118 #define _gloffset_Indexs 50 119 #define _gloffset_Indexsv 51 120 #define _gloffset_Normal3b 52 121 #define _gloffset_Normal3bv 53 122 #define _gloffset_Normal3d 54 123 #define _gloffset_Normal3dv 55 124 #define _gloffset_Normal3f 56 125 #define _gloffset_Normal3fv 57 126 #define _gloffset_Normal3i 58 127 #define _gloffset_Normal3iv 59 128 #define _gloffset_Normal3s 60 129 #define _gloffset_Normal3sv 61 130 #define _gloffset_RasterPos2d 62 131 #define _gloffset_RasterPos2dv 63 132 #define _gloffset_RasterPos2f 64 133 #define _gloffset_RasterPos2fv 65 134 #define _gloffset_RasterPos2i 66 135 #define _gloffset_RasterPos2iv 67 136 #define _gloffset_RasterPos2s 68 137 #define _gloffset_RasterPos2sv 69 138 #define _gloffset_RasterPos3d 70 139 #define _gloffset_RasterPos3dv 71 140 #define _gloffset_RasterPos3f 72 141 #define _gloffset_RasterPos3fv 73 142 #define _gloffset_RasterPos3i 74 143 #define _gloffset_RasterPos3iv 75 144 #define _gloffset_RasterPos3s 76 145 #define _gloffset_RasterPos3sv 77 146 #define _gloffset_RasterPos4d 78 147 #define _gloffset_RasterPos4dv 79 148 #define _gloffset_RasterPos4f 80 149 #define _gloffset_RasterPos4fv 81 150 #define _gloffset_RasterPos4i 82 151 #define _gloffset_RasterPos4iv 83 152 #define _gloffset_RasterPos4s 84 153 #define _gloffset_RasterPos4sv 85 154 #define _gloffset_Rectd 86 155 #define _gloffset_Rectdv 87 156 #define _gloffset_Rectf 88 157 #define _gloffset_Rectfv 89 158 #define _gloffset_Recti 90 159 #define _gloffset_Rectiv 91 160 #define _gloffset_Rects 92 161 #define _gloffset_Rectsv 93 162 #define _gloffset_TexCoord1d 94 163 #define _gloffset_TexCoord1dv 95 164 #define _gloffset_TexCoord1f 96 165 #define _gloffset_TexCoord1fv 97 166 #define _gloffset_TexCoord1i 98 167 #define _gloffset_TexCoord1iv 99 168 #define _gloffset_TexCoord1s 100 169 #define _gloffset_TexCoord1sv 101 170 #define _gloffset_TexCoord2d 102 171 #define _gloffset_TexCoord2dv 103 172 #define _gloffset_TexCoord2f 104 173 #define _gloffset_TexCoord2fv 105 174 #define _gloffset_TexCoord2i 106 175 #define _gloffset_TexCoord2iv 107 176 #define _gloffset_TexCoord2s 108 177 #define _gloffset_TexCoord2sv 109 178 #define _gloffset_TexCoord3d 110 179 #define _gloffset_TexCoord3dv 111 180 #define _gloffset_TexCoord3f 112 181 #define _gloffset_TexCoord3fv 113 182 #define _gloffset_TexCoord3i 114 183 #define _gloffset_TexCoord3iv 115 184 #define _gloffset_TexCoord3s 116 185 #define _gloffset_TexCoord3sv 117 186 #define _gloffset_TexCoord4d 118 187 #define _gloffset_TexCoord4dv 119 188 #define _gloffset_TexCoord4f 120 189 #define _gloffset_TexCoord4fv 121 190 #define _gloffset_TexCoord4i 122 191 #define _gloffset_TexCoord4iv 123 192 #define _gloffset_TexCoord4s 124 193 #define _gloffset_TexCoord4sv 125 194 #define _gloffset_Vertex2d 126 195 #define _gloffset_Vertex2dv 127 196 #define _gloffset_Vertex2f 128 197 #define _gloffset_Vertex2fv 129 198 #define _gloffset_Vertex2i 130 199 #define _gloffset_Vertex2iv 131 200 #define _gloffset_Vertex2s 132 201 #define _gloffset_Vertex2sv 133 202 #define _gloffset_Vertex3d 134 203 #define _gloffset_Vertex3dv 135 204 #define _gloffset_Vertex3f 136 205 #define _gloffset_Vertex3fv 137 206 #define _gloffset_Vertex3i 138 207 #define _gloffset_Vertex3iv 139 208 #define _gloffset_Vertex3s 140 209 #define _gloffset_Vertex3sv 141 210 #define _gloffset_Vertex4d 142 211 #define _gloffset_Vertex4dv 143 212 #define _gloffset_Vertex4f 144 213 #define _gloffset_Vertex4fv 145 214 #define _gloffset_Vertex4i 146 215 #define _gloffset_Vertex4iv 147 216 #define _gloffset_Vertex4s 148 217 #define _gloffset_Vertex4sv 149 218 #define _gloffset_ClipPlane 150 219 #define _gloffset_ColorMaterial 151 220 #define _gloffset_CullFace 152 221 #define _gloffset_Fogf 153 222 #define _gloffset_Fogfv 154 223 #define _gloffset_Fogi 155 224 #define _gloffset_Fogiv 156 225 #define _gloffset_FrontFace 157 226 #define _gloffset_Hint 158 227 #define _gloffset_Lightf 159 228 #define _gloffset_Lightfv 160 229 #define _gloffset_Lighti 161 230 #define _gloffset_Lightiv 162 231 #define _gloffset_LightModelf 163 232 #define _gloffset_LightModelfv 164 233 #define _gloffset_LightModeli 165 234 #define _gloffset_LightModeliv 166 235 #define _gloffset_LineStipple 167 236 #define _gloffset_LineWidth 168 237 #define _gloffset_Materialf 169 238 #define _gloffset_Materialfv 170 239 #define _gloffset_Materiali 171 240 #define _gloffset_Materialiv 172 241 #define _gloffset_PointSize 173 242 #define _gloffset_PolygonMode 174 243 #define _gloffset_PolygonStipple 175 244 #define _gloffset_Scissor 176 245 #define _gloffset_ShadeModel 177 246 #define _gloffset_TexParameterf 178 247 #define _gloffset_TexParameterfv 179 248 #define _gloffset_TexParameteri 180 249 #define _gloffset_TexParameteriv 181 250 #define _gloffset_TexImage1D 182 251 #define _gloffset_TexImage2D 183 252 #define _gloffset_TexEnvf 184 253 #define _gloffset_TexEnvfv 185 254 #define _gloffset_TexEnvi 186 255 #define _gloffset_TexEnviv 187 256 #define _gloffset_TexGend 188 257 #define _gloffset_TexGendv 189 258 #define _gloffset_TexGenf 190 259 #define _gloffset_TexGenfv 191 260 #define _gloffset_TexGeni 192 261 #define _gloffset_TexGeniv 193 262 #define _gloffset_FeedbackBuffer 194 263 #define _gloffset_SelectBuffer 195 264 #define _gloffset_RenderMode 196 265 #define _gloffset_InitNames 197 266 #define _gloffset_LoadName 198 267 #define _gloffset_PassThrough 199 268 #define _gloffset_PopName 200 269 #define _gloffset_PushName 201 270 #define _gloffset_DrawBuffer 202 271 #define _gloffset_Clear 203 272 #define _gloffset_ClearAccum 204 273 #define _gloffset_ClearIndex 205 274 #define _gloffset_ClearColor 206 275 #define _gloffset_ClearStencil 207 276 #define _gloffset_ClearDepth 208 277 #define _gloffset_StencilMask 209 278 #define _gloffset_ColorMask 210 279 #define _gloffset_DepthMask 211 280 #define _gloffset_IndexMask 212 281 #define _gloffset_Accum 213 282 #define _gloffset_Disable 214 283 #define _gloffset_Enable 215 284 #define _gloffset_Finish 216 285 #define _gloffset_Flush 217 286 #define _gloffset_PopAttrib 218 287 #define _gloffset_PushAttrib 219 288 #define _gloffset_Map1d 220 289 #define _gloffset_Map1f 221 290 #define _gloffset_Map2d 222 291 #define _gloffset_Map2f 223 292 #define _gloffset_MapGrid1d 224 293 #define _gloffset_MapGrid1f 225 294 #define _gloffset_MapGrid2d 226 295 #define _gloffset_MapGrid2f 227 296 #define _gloffset_EvalCoord1d 228 297 #define _gloffset_EvalCoord1dv 229 298 #define _gloffset_EvalCoord1f 230 299 #define _gloffset_EvalCoord1fv 231 300 #define _gloffset_EvalCoord2d 232 301 #define _gloffset_EvalCoord2dv 233 302 #define _gloffset_EvalCoord2f 234 303 #define _gloffset_EvalCoord2fv 235 304 #define _gloffset_EvalMesh1 236 305 #define _gloffset_EvalPoint1 237 306 #define _gloffset_EvalMesh2 238 307 #define _gloffset_EvalPoint2 239 308 #define _gloffset_AlphaFunc 240 309 #define _gloffset_BlendFunc 241 310 #define _gloffset_LogicOp 242 311 #define _gloffset_StencilFunc 243 312 #define _gloffset_StencilOp 244 313 #define _gloffset_DepthFunc 245 314 #define _gloffset_PixelZoom 246 315 #define _gloffset_PixelTransferf 247 316 #define _gloffset_PixelTransferi 248 317 #define _gloffset_PixelStoref 249 318 #define _gloffset_PixelStorei 250 319 #define _gloffset_PixelMapfv 251 320 #define _gloffset_PixelMapuiv 252 321 #define _gloffset_PixelMapusv 253 322 #define _gloffset_ReadBuffer 254 323 #define _gloffset_CopyPixels 255 324 #define _gloffset_ReadPixels 256 325 #define _gloffset_DrawPixels 257 326 #define _gloffset_GetBooleanv 258 327 #define _gloffset_GetClipPlane 259 328 #define _gloffset_GetDoublev 260 329 #define _gloffset_GetError 261 330 #define _gloffset_GetFloatv 262 331 #define _gloffset_GetIntegerv 263 332 #define _gloffset_GetLightfv 264 333 #define _gloffset_GetLightiv 265 334 #define _gloffset_GetMapdv 266 335 #define _gloffset_GetMapfv 267 336 #define _gloffset_GetMapiv 268 337 #define _gloffset_GetMaterialfv 269 338 #define _gloffset_GetMaterialiv 270 339 #define _gloffset_GetPixelMapfv 271 340 #define _gloffset_GetPixelMapuiv 272 341 #define _gloffset_GetPixelMapusv 273 342 #define _gloffset_GetPolygonStipple 274 343 #define _gloffset_GetString 275 344 #define _gloffset_GetTexEnvfv 276 345 #define _gloffset_GetTexEnviv 277 346 #define _gloffset_GetTexGendv 278 347 #define _gloffset_GetTexGenfv 279 348 #define _gloffset_GetTexGeniv 280 349 #define _gloffset_GetTexImage 281 350 #define _gloffset_GetTexParameterfv 282 351 #define _gloffset_GetTexParameteriv 283 352 #define _gloffset_GetTexLevelParameterfv 284 353 #define _gloffset_GetTexLevelParameteriv 285 354 #define _gloffset_IsEnabled 286 355 #define _gloffset_IsList 287 356 #define _gloffset_DepthRange 288 357 #define _gloffset_Frustum 289 358 #define _gloffset_LoadIdentity 290 359 #define _gloffset_LoadMatrixf 291 360 #define _gloffset_LoadMatrixd 292 361 #define _gloffset_MatrixMode 293 362 #define _gloffset_MultMatrixf 294 363 #define _gloffset_MultMatrixd 295 364 #define _gloffset_Ortho 296 365 #define _gloffset_PopMatrix 297 366 #define _gloffset_PushMatrix 298 367 #define _gloffset_Rotated 299 368 #define _gloffset_Rotatef 300 369 #define _gloffset_Scaled 301 370 #define _gloffset_Scalef 302 371 #define _gloffset_Translated 303 372 #define _gloffset_Translatef 304 373 #define _gloffset_Viewport 305 374 #define _gloffset_ArrayElement 306 375 #define _gloffset_BindTexture 307 376 #define _gloffset_ColorPointer 308 377 #define _gloffset_DisableClientState 309 378 #define _gloffset_DrawArrays 310 379 #define _gloffset_DrawElements 311 380 #define _gloffset_EdgeFlagPointer 312 381 #define _gloffset_EnableClientState 313 382 #define _gloffset_IndexPointer 314 383 #define _gloffset_Indexub 315 384 #define _gloffset_Indexubv 316 385 #define _gloffset_InterleavedArrays 317 386 #define _gloffset_NormalPointer 318 387 #define _gloffset_PolygonOffset 319 388 #define _gloffset_TexCoordPointer 320 389 #define _gloffset_VertexPointer 321 390 #define _gloffset_AreTexturesResident 322 391 #define _gloffset_CopyTexImage1D 323 392 #define _gloffset_CopyTexImage2D 324 393 #define _gloffset_CopyTexSubImage1D 325 394 #define _gloffset_CopyTexSubImage2D 326 395 #define _gloffset_DeleteTextures 327 396 #define _gloffset_GenTextures 328 397 #define _gloffset_GetPointerv 329 398 #define _gloffset_IsTexture 330 399 #define _gloffset_PrioritizeTextures 331 400 #define _gloffset_TexSubImage1D 332 401 #define _gloffset_TexSubImage2D 333 402 #define _gloffset_PopClientAttrib 334 403 #define _gloffset_PushClientAttrib 335 404 #define _gloffset_BlendColor 336 405 #define _gloffset_BlendEquation 337 406 #define _gloffset_DrawRangeElements 338 407 #define _gloffset_ColorTable 339 408 #define _gloffset_ColorTableParameterfv 340 409 #define _gloffset_ColorTableParameteriv 341 410 #define _gloffset_CopyColorTable 342 411 #define _gloffset_GetColorTable 343 412 #define _gloffset_GetColorTableParameterfv 344 413 #define _gloffset_GetColorTableParameteriv 345 414 #define _gloffset_ColorSubTable 346 415 #define _gloffset_CopyColorSubTable 347 416 #define _gloffset_ConvolutionFilter1D 348 417 #define _gloffset_ConvolutionFilter2D 349 418 #define _gloffset_ConvolutionParameterf 350 419 #define _gloffset_ConvolutionParameterfv 351 420 #define _gloffset_ConvolutionParameteri 352 421 #define _gloffset_ConvolutionParameteriv 353 422 #define _gloffset_CopyConvolutionFilter1D 354 423 #define _gloffset_CopyConvolutionFilter2D 355 424 #define _gloffset_GetConvolutionFilter 356 425 #define _gloffset_GetConvolutionParameterfv 357 426 #define _gloffset_GetConvolutionParameteriv 358 427 #define _gloffset_GetSeparableFilter 359 428 #define _gloffset_SeparableFilter2D 360 429 #define _gloffset_GetHistogram 361 430 #define _gloffset_GetHistogramParameterfv 362 431 #define _gloffset_GetHistogramParameteriv 363 432 #define _gloffset_GetMinmax 364 433 #define _gloffset_GetMinmaxParameterfv 365 434 #define _gloffset_GetMinmaxParameteriv 366 435 #define _gloffset_Histogram 367 436 #define _gloffset_Minmax 368 437 #define _gloffset_ResetHistogram 369 438 #define _gloffset_ResetMinmax 370 439 #define _gloffset_TexImage3D 371 440 #define _gloffset_TexSubImage3D 372 441 #define _gloffset_CopyTexSubImage3D 373 442 #define _gloffset_ActiveTextureARB 374 443 #define _gloffset_ClientActiveTextureARB 375 444 #define _gloffset_MultiTexCoord1dARB 376 445 #define _gloffset_MultiTexCoord1dvARB 377 446 #define _gloffset_MultiTexCoord1fARB 378 447 #define _gloffset_MultiTexCoord1fvARB 379 448 #define _gloffset_MultiTexCoord1iARB 380 449 #define _gloffset_MultiTexCoord1ivARB 381 450 #define _gloffset_MultiTexCoord1sARB 382 451 #define _gloffset_MultiTexCoord1svARB 383 452 #define _gloffset_MultiTexCoord2dARB 384 453 #define _gloffset_MultiTexCoord2dvARB 385 454 #define _gloffset_MultiTexCoord2fARB 386 455 #define _gloffset_MultiTexCoord2fvARB 387 456 #define _gloffset_MultiTexCoord2iARB 388 457 #define _gloffset_MultiTexCoord2ivARB 389 458 #define _gloffset_MultiTexCoord2sARB 390 459 #define _gloffset_MultiTexCoord2svARB 391 460 #define _gloffset_MultiTexCoord3dARB 392 461 #define _gloffset_MultiTexCoord3dvARB 393 462 #define _gloffset_MultiTexCoord3fARB 394 463 #define _gloffset_MultiTexCoord3fvARB 395 464 #define _gloffset_MultiTexCoord3iARB 396 465 #define _gloffset_MultiTexCoord3ivARB 397 466 #define _gloffset_MultiTexCoord3sARB 398 467 #define _gloffset_MultiTexCoord3svARB 399 468 #define _gloffset_MultiTexCoord4dARB 400 469 #define _gloffset_MultiTexCoord4dvARB 401 470 #define _gloffset_MultiTexCoord4fARB 402 471 #define _gloffset_MultiTexCoord4fvARB 403 472 #define _gloffset_MultiTexCoord4iARB 404 473 #define _gloffset_MultiTexCoord4ivARB 405 474 #define _gloffset_MultiTexCoord4sARB 406 475 #define _gloffset_MultiTexCoord4svARB 407 476 477 #if !FEATURE_remap_table 478 479 #define _gloffset_AttachShader 408 480 #define _gloffset_CreateProgram 409 481 #define _gloffset_CreateShader 410 482 #define _gloffset_DeleteProgram 411 483 #define _gloffset_DeleteShader 412 484 #define _gloffset_DetachShader 413 485 #define _gloffset_GetAttachedShaders 414 486 #define _gloffset_GetProgramInfoLog 415 487 #define _gloffset_GetProgramiv 416 488 #define _gloffset_GetShaderInfoLog 417 489 #define _gloffset_GetShaderiv 418 490 #define _gloffset_IsProgram 419 491 #define _gloffset_IsShader 420 492 #define _gloffset_StencilFuncSeparate 421 493 #define _gloffset_StencilMaskSeparate 422 494 #define _gloffset_StencilOpSeparate 423 495 #define _gloffset_UniformMatrix2x3fv 424 496 #define _gloffset_UniformMatrix2x4fv 425 497 #define _gloffset_UniformMatrix3x2fv 426 498 #define _gloffset_UniformMatrix3x4fv 427 499 #define _gloffset_UniformMatrix4x2fv 428 500 #define _gloffset_UniformMatrix4x3fv 429 501 #define _gloffset_ClampColor 430 502 #define _gloffset_ClearBufferfi 431 503 #define _gloffset_ClearBufferfv 432 504 #define _gloffset_ClearBufferiv 433 505 #define _gloffset_ClearBufferuiv 434 506 #define _gloffset_GetStringi 435 507 #define _gloffset_FramebufferTexture 436 508 #define _gloffset_GetBufferParameteri64v 437 509 #define _gloffset_GetInteger64i_v 438 510 #define _gloffset_VertexAttribDivisor 439 511 #define _gloffset_LoadTransposeMatrixdARB 440 512 #define _gloffset_LoadTransposeMatrixfARB 441 513 #define _gloffset_MultTransposeMatrixdARB 442 514 #define _gloffset_MultTransposeMatrixfARB 443 515 #define _gloffset_SampleCoverageARB 444 516 #define _gloffset_CompressedTexImage1DARB 445 517 #define _gloffset_CompressedTexImage2DARB 446 518 #define _gloffset_CompressedTexImage3DARB 447 519 #define _gloffset_CompressedTexSubImage1DARB 448 520 #define _gloffset_CompressedTexSubImage2DARB 449 521 #define _gloffset_CompressedTexSubImage3DARB 450 522 #define _gloffset_GetCompressedTexImageARB 451 523 #define _gloffset_DisableVertexAttribArrayARB 452 524 #define _gloffset_EnableVertexAttribArrayARB 453 525 #define _gloffset_GetProgramEnvParameterdvARB 454 526 #define _gloffset_GetProgramEnvParameterfvARB 455 527 #define _gloffset_GetProgramLocalParameterdvARB 456 528 #define _gloffset_GetProgramLocalParameterfvARB 457 529 #define _gloffset_GetProgramStringARB 458 530 #define _gloffset_GetProgramivARB 459 531 #define _gloffset_GetVertexAttribdvARB 460 532 #define _gloffset_GetVertexAttribfvARB 461 533 #define _gloffset_GetVertexAttribivARB 462 534 #define _gloffset_ProgramEnvParameter4dARB 463 535 #define _gloffset_ProgramEnvParameter4dvARB 464 536 #define _gloffset_ProgramEnvParameter4fARB 465 537 #define _gloffset_ProgramEnvParameter4fvARB 466 538 #define _gloffset_ProgramLocalParameter4dARB 467 539 #define _gloffset_ProgramLocalParameter4dvARB 468 540 #define _gloffset_ProgramLocalParameter4fARB 469 541 #define _gloffset_ProgramLocalParameter4fvARB 470 542 #define _gloffset_ProgramStringARB 471 543 #define _gloffset_VertexAttrib1dARB 472 544 #define _gloffset_VertexAttrib1dvARB 473 545 #define _gloffset_VertexAttrib1fARB 474 546 #define _gloffset_VertexAttrib1fvARB 475 547 #define _gloffset_VertexAttrib1sARB 476 548 #define _gloffset_VertexAttrib1svARB 477 549 #define _gloffset_VertexAttrib2dARB 478 550 #define _gloffset_VertexAttrib2dvARB 479 551 #define _gloffset_VertexAttrib2fARB 480 552 #define _gloffset_VertexAttrib2fvARB 481 553 #define _gloffset_VertexAttrib2sARB 482 554 #define _gloffset_VertexAttrib2svARB 483 555 #define _gloffset_VertexAttrib3dARB 484 556 #define _gloffset_VertexAttrib3dvARB 485 557 #define _gloffset_VertexAttrib3fARB 486 558 #define _gloffset_VertexAttrib3fvARB 487 559 #define _gloffset_VertexAttrib3sARB 488 560 #define _gloffset_VertexAttrib3svARB 489 561 #define _gloffset_VertexAttrib4NbvARB 490 562 #define _gloffset_VertexAttrib4NivARB 491 563 #define _gloffset_VertexAttrib4NsvARB 492 564 #define _gloffset_VertexAttrib4NubARB 493 565 #define _gloffset_VertexAttrib4NubvARB 494 566 #define _gloffset_VertexAttrib4NuivARB 495 567 #define _gloffset_VertexAttrib4NusvARB 496 568 #define _gloffset_VertexAttrib4bvARB 497 569 #define _gloffset_VertexAttrib4dARB 498 570 #define _gloffset_VertexAttrib4dvARB 499 571 #define _gloffset_VertexAttrib4fARB 500 572 #define _gloffset_VertexAttrib4fvARB 501 573 #define _gloffset_VertexAttrib4ivARB 502 574 #define _gloffset_VertexAttrib4sARB 503 575 #define _gloffset_VertexAttrib4svARB 504 576 #define _gloffset_VertexAttrib4ubvARB 505 577 #define _gloffset_VertexAttrib4uivARB 506 578 #define _gloffset_VertexAttrib4usvARB 507 579 #define _gloffset_VertexAttribPointerARB 508 580 #define _gloffset_BindBufferARB 509 581 #define _gloffset_BufferDataARB 510 582 #define _gloffset_BufferSubDataARB 511 583 #define _gloffset_DeleteBuffersARB 512 584 #define _gloffset_GenBuffersARB 513 585 #define _gloffset_GetBufferParameterivARB 514 586 #define _gloffset_GetBufferPointervARB 515 587 #define _gloffset_GetBufferSubDataARB 516 588 #define _gloffset_IsBufferARB 517 589 #define _gloffset_MapBufferARB 518 590 #define _gloffset_UnmapBufferARB 519 591 #define _gloffset_BeginQueryARB 520 592 #define _gloffset_DeleteQueriesARB 521 593 #define _gloffset_EndQueryARB 522 594 #define _gloffset_GenQueriesARB 523 595 #define _gloffset_GetQueryObjectivARB 524 596 #define _gloffset_GetQueryObjectuivARB 525 597 #define _gloffset_GetQueryivARB 526 598 #define _gloffset_IsQueryARB 527 599 #define _gloffset_AttachObjectARB 528 600 #define _gloffset_CompileShaderARB 529 601 #define _gloffset_CreateProgramObjectARB 530 602 #define _gloffset_CreateShaderObjectARB 531 603 #define _gloffset_DeleteObjectARB 532 604 #define _gloffset_DetachObjectARB 533 605 #define _gloffset_GetActiveUniformARB 534 606 #define _gloffset_GetAttachedObjectsARB 535 607 #define _gloffset_GetHandleARB 536 608 #define _gloffset_GetInfoLogARB 537 609 #define _gloffset_GetObjectParameterfvARB 538 610 #define _gloffset_GetObjectParameterivARB 539 611 #define _gloffset_GetShaderSourceARB 540 612 #define _gloffset_GetUniformLocationARB 541 613 #define _gloffset_GetUniformfvARB 542 614 #define _gloffset_GetUniformivARB 543 615 #define _gloffset_LinkProgramARB 544 616 #define _gloffset_ShaderSourceARB 545 617 #define _gloffset_Uniform1fARB 546 618 #define _gloffset_Uniform1fvARB 547 619 #define _gloffset_Uniform1iARB 548 620 #define _gloffset_Uniform1ivARB 549 621 #define _gloffset_Uniform2fARB 550 622 #define _gloffset_Uniform2fvARB 551 623 #define _gloffset_Uniform2iARB 552 624 #define _gloffset_Uniform2ivARB 553 625 #define _gloffset_Uniform3fARB 554 626 #define _gloffset_Uniform3fvARB 555 627 #define _gloffset_Uniform3iARB 556 628 #define _gloffset_Uniform3ivARB 557 629 #define _gloffset_Uniform4fARB 558 630 #define _gloffset_Uniform4fvARB 559 631 #define _gloffset_Uniform4iARB 560 632 #define _gloffset_Uniform4ivARB 561 633 #define _gloffset_UniformMatrix2fvARB 562 634 #define _gloffset_UniformMatrix3fvARB 563 635 #define _gloffset_UniformMatrix4fvARB 564 636 #define _gloffset_UseProgramObjectARB 565 637 #define _gloffset_ValidateProgramARB 566 638 #define _gloffset_BindAttribLocationARB 567 639 #define _gloffset_GetActiveAttribARB 568 640 #define _gloffset_GetAttribLocationARB 569 641 #define _gloffset_DrawBuffersARB 570 642 #define _gloffset_ClampColorARB 571 643 #define _gloffset_DrawArraysInstancedARB 572 644 #define _gloffset_DrawElementsInstancedARB 573 645 #define _gloffset_RenderbufferStorageMultisample 574 646 #define _gloffset_FramebufferTextureARB 575 647 #define _gloffset_FramebufferTextureFaceARB 576 648 #define _gloffset_ProgramParameteriARB 577 649 #define _gloffset_VertexAttribDivisorARB 578 650 #define _gloffset_FlushMappedBufferRange 579 651 #define _gloffset_MapBufferRange 580 652 #define _gloffset_TexBufferARB 581 653 #define _gloffset_BindVertexArray 582 654 #define _gloffset_GenVertexArrays 583 655 #define _gloffset_GetActiveUniformBlockName 584 656 #define _gloffset_GetActiveUniformBlockiv 585 657 #define _gloffset_GetActiveUniformName 586 658 #define _gloffset_GetActiveUniformsiv 587 659 #define _gloffset_GetUniformBlockIndex 588 660 #define _gloffset_GetUniformIndices 589 661 #define _gloffset_UniformBlockBinding 590 662 #define _gloffset_CopyBufferSubData 591 663 #define _gloffset_ClientWaitSync 592 664 #define _gloffset_DeleteSync 593 665 #define _gloffset_FenceSync 594 666 #define _gloffset_GetInteger64v 595 667 #define _gloffset_GetSynciv 596 668 #define _gloffset_IsSync 597 669 #define _gloffset_WaitSync 598 670 #define _gloffset_DrawElementsBaseVertex 599 671 #define _gloffset_DrawElementsInstancedBaseVertex 600 672 #define _gloffset_DrawRangeElementsBaseVertex 601 673 #define _gloffset_MultiDrawElementsBaseVertex 602 674 #define _gloffset_BlendEquationSeparateiARB 603 675 #define _gloffset_BlendEquationiARB 604 676 #define _gloffset_BlendFuncSeparateiARB 605 677 #define _gloffset_BlendFunciARB 606 678 #define _gloffset_BindFragDataLocationIndexed 607 679 #define _gloffset_GetFragDataIndex 608 680 #define _gloffset_BindSampler 609 681 #define _gloffset_DeleteSamplers 610 682 #define _gloffset_GenSamplers 611 683 #define _gloffset_GetSamplerParameterIiv 612 684 #define _gloffset_GetSamplerParameterIuiv 613 685 #define _gloffset_GetSamplerParameterfv 614 686 #define _gloffset_GetSamplerParameteriv 615 687 #define _gloffset_IsSampler 616 688 #define _gloffset_SamplerParameterIiv 617 689 #define _gloffset_SamplerParameterIuiv 618 690 #define _gloffset_SamplerParameterf 619 691 #define _gloffset_SamplerParameterfv 620 692 #define _gloffset_SamplerParameteri 621 693 #define _gloffset_SamplerParameteriv 622 694 #define _gloffset_QueryCounter 623 695 #define _gloffset_ColorP3ui 624 696 #define _gloffset_ColorP3uiv 625 697 #define _gloffset_ColorP4ui 626 698 #define _gloffset_ColorP4uiv 627 699 #define _gloffset_MultiTexCoordP1ui 628 700 #define _gloffset_MultiTexCoordP1uiv 629 701 #define _gloffset_MultiTexCoordP2ui 630 702 #define _gloffset_MultiTexCoordP2uiv 631 703 #define _gloffset_MultiTexCoordP3ui 632 704 #define _gloffset_MultiTexCoordP3uiv 633 705 #define _gloffset_MultiTexCoordP4ui 634 706 #define _gloffset_MultiTexCoordP4uiv 635 707 #define _gloffset_NormalP3ui 636 708 #define _gloffset_NormalP3uiv 637 709 #define _gloffset_SecondaryColorP3ui 638 710 #define _gloffset_SecondaryColorP3uiv 639 711 #define _gloffset_TexCoordP1ui 640 712 #define _gloffset_TexCoordP1uiv 641 713 #define _gloffset_TexCoordP2ui 642 714 #define _gloffset_TexCoordP2uiv 643 715 #define _gloffset_TexCoordP3ui 644 716 #define _gloffset_TexCoordP3uiv 645 717 #define _gloffset_TexCoordP4ui 646 718 #define _gloffset_TexCoordP4uiv 647 719 #define _gloffset_VertexAttribP1ui 648 720 #define _gloffset_VertexAttribP1uiv 649 721 #define _gloffset_VertexAttribP2ui 650 722 #define _gloffset_VertexAttribP2uiv 651 723 #define _gloffset_VertexAttribP3ui 652 724 #define _gloffset_VertexAttribP3uiv 653 725 #define _gloffset_VertexAttribP4ui 654 726 #define _gloffset_VertexAttribP4uiv 655 727 #define _gloffset_VertexP2ui 656 728 #define _gloffset_VertexP2uiv 657 729 #define _gloffset_VertexP3ui 658 730 #define _gloffset_VertexP3uiv 659 731 #define _gloffset_VertexP4ui 660 732 #define _gloffset_VertexP4uiv 661 733 #define _gloffset_BindTransformFeedback 662 734 #define _gloffset_DeleteTransformFeedbacks 663 735 #define _gloffset_DrawTransformFeedback 664 736 #define _gloffset_GenTransformFeedbacks 665 737 #define _gloffset_IsTransformFeedback 666 738 #define _gloffset_PauseTransformFeedback 667 739 #define _gloffset_ResumeTransformFeedback 668 740 #define _gloffset_BeginQueryIndexed 669 741 #define _gloffset_DrawTransformFeedbackStream 670 742 #define _gloffset_EndQueryIndexed 671 743 #define _gloffset_GetQueryIndexediv 672 744 #define _gloffset_ClearDepthf 673 745 #define _gloffset_DepthRangef 674 746 #define _gloffset_GetShaderPrecisionFormat 675 747 #define _gloffset_ReleaseShaderCompiler 676 748 #define _gloffset_ShaderBinary 677 749 #define _gloffset_DebugMessageCallbackARB 678 750 #define _gloffset_DebugMessageControlARB 679 751 #define _gloffset_DebugMessageInsertARB 680 752 #define _gloffset_GetDebugMessageLogARB 681 753 #define _gloffset_GetGraphicsResetStatusARB 682 754 #define _gloffset_GetnColorTableARB 683 755 #define _gloffset_GetnCompressedTexImageARB 684 756 #define _gloffset_GetnConvolutionFilterARB 685 757 #define _gloffset_GetnHistogramARB 686 758 #define _gloffset_GetnMapdvARB 687 759 #define _gloffset_GetnMapfvARB 688 760 #define _gloffset_GetnMapivARB 689 761 #define _gloffset_GetnMinmaxARB 690 762 #define _gloffset_GetnPixelMapfvARB 691 763 #define _gloffset_GetnPixelMapuivARB 692 764 #define _gloffset_GetnPixelMapusvARB 693 765 #define _gloffset_GetnPolygonStippleARB 694 766 #define _gloffset_GetnSeparableFilterARB 695 767 #define _gloffset_GetnTexImageARB 696 768 #define _gloffset_GetnUniformdvARB 697 769 #define _gloffset_GetnUniformfvARB 698 770 #define _gloffset_GetnUniformivARB 699 771 #define _gloffset_GetnUniformuivARB 700 772 #define _gloffset_ReadnPixelsARB 701 773 #define _gloffset_DrawArraysInstancedBaseInstance 702 774 #define _gloffset_DrawElementsInstancedBaseInstance 703 775 #define _gloffset_DrawElementsInstancedBaseVertexBaseInstance 704 776 #define _gloffset_DrawTransformFeedbackInstanced 705 777 #define _gloffset_DrawTransformFeedbackStreamInstanced 706 778 #define _gloffset_TexStorage1D 707 779 #define _gloffset_TexStorage2D 708 780 #define _gloffset_TexStorage3D 709 781 #define _gloffset_TextureStorage1DEXT 710 782 #define _gloffset_TextureStorage2DEXT 711 783 #define _gloffset_TextureStorage3DEXT 712 784 #define _gloffset_InvalidateBufferData 713 785 #define _gloffset_InvalidateBufferSubData 714 786 #define _gloffset_InvalidateFramebuffer 715 787 #define _gloffset_InvalidateSubFramebuffer 716 788 #define _gloffset_InvalidateTexImage 717 789 #define _gloffset_InvalidateTexSubImage 718 790 #define _gloffset_PolygonOffsetEXT 719 791 #define _gloffset_SampleMaskSGIS 720 792 #define _gloffset_SamplePatternSGIS 721 793 #define _gloffset_ColorPointerEXT 722 794 #define _gloffset_EdgeFlagPointerEXT 723 795 #define _gloffset_IndexPointerEXT 724 796 #define _gloffset_NormalPointerEXT 725 797 #define _gloffset_TexCoordPointerEXT 726 798 #define _gloffset_VertexPointerEXT 727 799 #define _gloffset_PointParameterfEXT 728 800 #define _gloffset_PointParameterfvEXT 729 801 #define _gloffset_LockArraysEXT 730 802 #define _gloffset_UnlockArraysEXT 731 803 #define _gloffset_SecondaryColor3bEXT 732 804 #define _gloffset_SecondaryColor3bvEXT 733 805 #define _gloffset_SecondaryColor3dEXT 734 806 #define _gloffset_SecondaryColor3dvEXT 735 807 #define _gloffset_SecondaryColor3fEXT 736 808 #define _gloffset_SecondaryColor3fvEXT 737 809 #define _gloffset_SecondaryColor3iEXT 738 810 #define _gloffset_SecondaryColor3ivEXT 739 811 #define _gloffset_SecondaryColor3sEXT 740 812 #define _gloffset_SecondaryColor3svEXT 741 813 #define _gloffset_SecondaryColor3ubEXT 742 814 #define _gloffset_SecondaryColor3ubvEXT 743 815 #define _gloffset_SecondaryColor3uiEXT 744 816 #define _gloffset_SecondaryColor3uivEXT 745 817 #define _gloffset_SecondaryColor3usEXT 746 818 #define _gloffset_SecondaryColor3usvEXT 747 819 #define _gloffset_SecondaryColorPointerEXT 748 820 #define _gloffset_MultiDrawArraysEXT 749 821 #define _gloffset_MultiDrawElementsEXT 750 822 #define _gloffset_FogCoordPointerEXT 751 823 #define _gloffset_FogCoorddEXT 752 824 #define _gloffset_FogCoorddvEXT 753 825 #define _gloffset_FogCoordfEXT 754 826 #define _gloffset_FogCoordfvEXT 755 827 #define _gloffset_BlendFuncSeparateEXT 756 828 #define _gloffset_ResizeBuffersMESA 757 829 #define _gloffset_WindowPos2dMESA 758 830 #define _gloffset_WindowPos2dvMESA 759 831 #define _gloffset_WindowPos2fMESA 760 832 #define _gloffset_WindowPos2fvMESA 761 833 #define _gloffset_WindowPos2iMESA 762 834 #define _gloffset_WindowPos2ivMESA 763 835 #define _gloffset_WindowPos2sMESA 764 836 #define _gloffset_WindowPos2svMESA 765 837 #define _gloffset_WindowPos3dMESA 766 838 #define _gloffset_WindowPos3dvMESA 767 839 #define _gloffset_WindowPos3fMESA 768 840 #define _gloffset_WindowPos3fvMESA 769 841 #define _gloffset_WindowPos3iMESA 770 842 #define _gloffset_WindowPos3ivMESA 771 843 #define _gloffset_WindowPos3sMESA 772 844 #define _gloffset_WindowPos3svMESA 773 845 #define _gloffset_WindowPos4dMESA 774 846 #define _gloffset_WindowPos4dvMESA 775 847 #define _gloffset_WindowPos4fMESA 776 848 #define _gloffset_WindowPos4fvMESA 777 849 #define _gloffset_WindowPos4iMESA 778 850 #define _gloffset_WindowPos4ivMESA 779 851 #define _gloffset_WindowPos4sMESA 780 852 #define _gloffset_WindowPos4svMESA 781 853 #define _gloffset_MultiModeDrawArraysIBM 782 854 #define _gloffset_MultiModeDrawElementsIBM 783 855 #define _gloffset_AreProgramsResidentNV 784 856 #define _gloffset_BindProgramNV 785 857 #define _gloffset_DeleteProgramsNV 786 858 #define _gloffset_ExecuteProgramNV 787 859 #define _gloffset_GenProgramsNV 788 860 #define _gloffset_GetProgramParameterdvNV 789 861 #define _gloffset_GetProgramParameterfvNV 790 862 #define _gloffset_GetProgramStringNV 791 863 #define _gloffset_GetProgramivNV 792 864 #define _gloffset_GetTrackMatrixivNV 793 865 #define _gloffset_GetVertexAttribPointervNV 794 866 #define _gloffset_GetVertexAttribdvNV 795 867 #define _gloffset_GetVertexAttribfvNV 796 868 #define _gloffset_GetVertexAttribivNV 797 869 #define _gloffset_IsProgramNV 798 870 #define _gloffset_LoadProgramNV 799 871 #define _gloffset_ProgramParameters4dvNV 800 872 #define _gloffset_ProgramParameters4fvNV 801 873 #define _gloffset_RequestResidentProgramsNV 802 874 #define _gloffset_TrackMatrixNV 803 875 #define _gloffset_VertexAttrib1dNV 804 876 #define _gloffset_VertexAttrib1dvNV 805 877 #define _gloffset_VertexAttrib1fNV 806 878 #define _gloffset_VertexAttrib1fvNV 807 879 #define _gloffset_VertexAttrib1sNV 808 880 #define _gloffset_VertexAttrib1svNV 809 881 #define _gloffset_VertexAttrib2dNV 810 882 #define _gloffset_VertexAttrib2dvNV 811 883 #define _gloffset_VertexAttrib2fNV 812 884 #define _gloffset_VertexAttrib2fvNV 813 885 #define _gloffset_VertexAttrib2sNV 814 886 #define _gloffset_VertexAttrib2svNV 815 887 #define _gloffset_VertexAttrib3dNV 816 888 #define _gloffset_VertexAttrib3dvNV 817 889 #define _gloffset_VertexAttrib3fNV 818 890 #define _gloffset_VertexAttrib3fvNV 819 891 #define _gloffset_VertexAttrib3sNV 820 892 #define _gloffset_VertexAttrib3svNV 821 893 #define _gloffset_VertexAttrib4dNV 822 894 #define _gloffset_VertexAttrib4dvNV 823 895 #define _gloffset_VertexAttrib4fNV 824 896 #define _gloffset_VertexAttrib4fvNV 825 897 #define _gloffset_VertexAttrib4sNV 826 898 #define _gloffset_VertexAttrib4svNV 827 899 #define _gloffset_VertexAttrib4ubNV 828 900 #define _gloffset_VertexAttrib4ubvNV 829 901 #define _gloffset_VertexAttribPointerNV 830 902 #define _gloffset_VertexAttribs1dvNV 831 903 #define _gloffset_VertexAttribs1fvNV 832 904 #define _gloffset_VertexAttribs1svNV 833 905 #define _gloffset_VertexAttribs2dvNV 834 906 #define _gloffset_VertexAttribs2fvNV 835 907 #define _gloffset_VertexAttribs2svNV 836 908 #define _gloffset_VertexAttribs3dvNV 837 909 #define _gloffset_VertexAttribs3fvNV 838 910 #define _gloffset_VertexAttribs3svNV 839 911 #define _gloffset_VertexAttribs4dvNV 840 912 #define _gloffset_VertexAttribs4fvNV 841 913 #define _gloffset_VertexAttribs4svNV 842 914 #define _gloffset_VertexAttribs4ubvNV 843 915 #define _gloffset_GetTexBumpParameterfvATI 844 916 #define _gloffset_GetTexBumpParameterivATI 845 917 #define _gloffset_TexBumpParameterfvATI 846 918 #define _gloffset_TexBumpParameterivATI 847 919 #define _gloffset_AlphaFragmentOp1ATI 848 920 #define _gloffset_AlphaFragmentOp2ATI 849 921 #define _gloffset_AlphaFragmentOp3ATI 850 922 #define _gloffset_BeginFragmentShaderATI 851 923 #define _gloffset_BindFragmentShaderATI 852 924 #define _gloffset_ColorFragmentOp1ATI 853 925 #define _gloffset_ColorFragmentOp2ATI 854 926 #define _gloffset_ColorFragmentOp3ATI 855 927 #define _gloffset_DeleteFragmentShaderATI 856 928 #define _gloffset_EndFragmentShaderATI 857 929 #define _gloffset_GenFragmentShadersATI 858 930 #define _gloffset_PassTexCoordATI 859 931 #define _gloffset_SampleMapATI 860 932 #define _gloffset_SetFragmentShaderConstantATI 861 933 #define _gloffset_PointParameteriNV 862 934 #define _gloffset_PointParameterivNV 863 935 #define _gloffset_ActiveStencilFaceEXT 864 936 #define _gloffset_BindVertexArrayAPPLE 865 937 #define _gloffset_DeleteVertexArraysAPPLE 866 938 #define _gloffset_GenVertexArraysAPPLE 867 939 #define _gloffset_IsVertexArrayAPPLE 868 940 #define _gloffset_GetProgramNamedParameterdvNV 869 941 #define _gloffset_GetProgramNamedParameterfvNV 870 942 #define _gloffset_ProgramNamedParameter4dNV 871 943 #define _gloffset_ProgramNamedParameter4dvNV 872 944 #define _gloffset_ProgramNamedParameter4fNV 873 945 #define _gloffset_ProgramNamedParameter4fvNV 874 946 #define _gloffset_PrimitiveRestartIndexNV 875 947 #define _gloffset_PrimitiveRestartNV 876 948 #define _gloffset_DepthBoundsEXT 877 949 #define _gloffset_BlendEquationSeparateEXT 878 950 #define _gloffset_BindFramebufferEXT 879 951 #define _gloffset_BindRenderbufferEXT 880 952 #define _gloffset_CheckFramebufferStatusEXT 881 953 #define _gloffset_DeleteFramebuffersEXT 882 954 #define _gloffset_DeleteRenderbuffersEXT 883 955 #define _gloffset_FramebufferRenderbufferEXT 884 956 #define _gloffset_FramebufferTexture1DEXT 885 957 #define _gloffset_FramebufferTexture2DEXT 886 958 #define _gloffset_FramebufferTexture3DEXT 887 959 #define _gloffset_GenFramebuffersEXT 888 960 #define _gloffset_GenRenderbuffersEXT 889 961 #define _gloffset_GenerateMipmapEXT 890 962 #define _gloffset_GetFramebufferAttachmentParameterivEXT 891 963 #define _gloffset_GetRenderbufferParameterivEXT 892 964 #define _gloffset_IsFramebufferEXT 893 965 #define _gloffset_IsRenderbufferEXT 894 966 #define _gloffset_RenderbufferStorageEXT 895 967 #define _gloffset_BlitFramebufferEXT 896 968 #define _gloffset_BufferParameteriAPPLE 897 969 #define _gloffset_FlushMappedBufferRangeAPPLE 898 970 #define _gloffset_BindFragDataLocationEXT 899 971 #define _gloffset_GetFragDataLocationEXT 900 972 #define _gloffset_GetUniformuivEXT 901 973 #define _gloffset_GetVertexAttribIivEXT 902 974 #define _gloffset_GetVertexAttribIuivEXT 903 975 #define _gloffset_Uniform1uiEXT 904 976 #define _gloffset_Uniform1uivEXT 905 977 #define _gloffset_Uniform2uiEXT 906 978 #define _gloffset_Uniform2uivEXT 907 979 #define _gloffset_Uniform3uiEXT 908 980 #define _gloffset_Uniform3uivEXT 909 981 #define _gloffset_Uniform4uiEXT 910 982 #define _gloffset_Uniform4uivEXT 911 983 #define _gloffset_VertexAttribI1iEXT 912 984 #define _gloffset_VertexAttribI1ivEXT 913 985 #define _gloffset_VertexAttribI1uiEXT 914 986 #define _gloffset_VertexAttribI1uivEXT 915 987 #define _gloffset_VertexAttribI2iEXT 916 988 #define _gloffset_VertexAttribI2ivEXT 917 989 #define _gloffset_VertexAttribI2uiEXT 918 990 #define _gloffset_VertexAttribI2uivEXT 919 991 #define _gloffset_VertexAttribI3iEXT 920 992 #define _gloffset_VertexAttribI3ivEXT 921 993 #define _gloffset_VertexAttribI3uiEXT 922 994 #define _gloffset_VertexAttribI3uivEXT 923 995 #define _gloffset_VertexAttribI4bvEXT 924 996 #define _gloffset_VertexAttribI4iEXT 925 997 #define _gloffset_VertexAttribI4ivEXT 926 998 #define _gloffset_VertexAttribI4svEXT 927 999 #define _gloffset_VertexAttribI4ubvEXT 928 1000 #define _gloffset_VertexAttribI4uiEXT 929 1001 #define _gloffset_VertexAttribI4uivEXT 930 1002 #define _gloffset_VertexAttribI4usvEXT 931 1003 #define _gloffset_VertexAttribIPointerEXT 932 1004 #define _gloffset_FramebufferTextureLayerEXT 933 1005 #define _gloffset_ColorMaskIndexedEXT 934 1006 #define _gloffset_DisableIndexedEXT 935 1007 #define _gloffset_EnableIndexedEXT 936 1008 #define _gloffset_GetBooleanIndexedvEXT 937 1009 #define _gloffset_GetIntegerIndexedvEXT 938 1010 #define _gloffset_IsEnabledIndexedEXT 939 1011 #define _gloffset_ClearColorIiEXT 940 1012 #define _gloffset_ClearColorIuiEXT 941 1013 #define _gloffset_GetTexParameterIivEXT 942 1014 #define _gloffset_GetTexParameterIuivEXT 943 1015 #define _gloffset_TexParameterIivEXT 944 1016 #define _gloffset_TexParameterIuivEXT 945 1017 #define _gloffset_BeginConditionalRenderNV 946 1018 #define _gloffset_EndConditionalRenderNV 947 1019 #define _gloffset_BeginTransformFeedbackEXT 948 1020 #define _gloffset_BindBufferBaseEXT 949 1021 #define _gloffset_BindBufferOffsetEXT 950 1022 #define _gloffset_BindBufferRangeEXT 951 1023 #define _gloffset_EndTransformFeedbackEXT 952 1024 #define _gloffset_GetTransformFeedbackVaryingEXT 953 1025 #define _gloffset_TransformFeedbackVaryingsEXT 954 1026 #define _gloffset_ProvokingVertexEXT 955 1027 #define _gloffset_GetObjectParameterivAPPLE 956 1028 #define _gloffset_ObjectPurgeableAPPLE 957 1029 #define _gloffset_ObjectUnpurgeableAPPLE 958 1030 #define _gloffset_ActiveProgramEXT 959 1031 #define _gloffset_CreateShaderProgramEXT 960 1032 #define _gloffset_UseShaderProgramEXT 961 1033 #define _gloffset_TextureBarrierNV 962 1034 #define _gloffset_StencilFuncSeparateATI 963 1035 #define _gloffset_ProgramEnvParameters4fvEXT 964 1036 #define _gloffset_ProgramLocalParameters4fvEXT 965 1037 #define _gloffset_GetQueryObjecti64vEXT 966 1038 #define _gloffset_GetQueryObjectui64vEXT 967 1039 #define _gloffset_EGLImageTargetRenderbufferStorageOES 968 1040 #define _gloffset_EGLImageTargetTexture2DOES 969 1041 1042 #else /* !FEATURE_remap_table */ 1043 1044 #define driDispatchRemapTable_size 562 1045 extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; 1046 1047 #define AttachShader_remap_index 0 1048 #define CreateProgram_remap_index 1 1049 #define CreateShader_remap_index 2 1050 #define DeleteProgram_remap_index 3 1051 #define DeleteShader_remap_index 4 1052 #define DetachShader_remap_index 5 1053 #define GetAttachedShaders_remap_index 6 1054 #define GetProgramInfoLog_remap_index 7 1055 #define GetProgramiv_remap_index 8 1056 #define GetShaderInfoLog_remap_index 9 1057 #define GetShaderiv_remap_index 10 1058 #define IsProgram_remap_index 11 1059 #define IsShader_remap_index 12 1060 #define StencilFuncSeparate_remap_index 13 1061 #define StencilMaskSeparate_remap_index 14 1062 #define StencilOpSeparate_remap_index 15 1063 #define UniformMatrix2x3fv_remap_index 16 1064 #define UniformMatrix2x4fv_remap_index 17 1065 #define UniformMatrix3x2fv_remap_index 18 1066 #define UniformMatrix3x4fv_remap_index 19 1067 #define UniformMatrix4x2fv_remap_index 20 1068 #define UniformMatrix4x3fv_remap_index 21 1069 #define ClampColor_remap_index 22 1070 #define ClearBufferfi_remap_index 23 1071 #define ClearBufferfv_remap_index 24 1072 #define ClearBufferiv_remap_index 25 1073 #define ClearBufferuiv_remap_index 26 1074 #define GetStringi_remap_index 27 1075 #define FramebufferTexture_remap_index 28 1076 #define GetBufferParameteri64v_remap_index 29 1077 #define GetInteger64i_v_remap_index 30 1078 #define VertexAttribDivisor_remap_index 31 1079 #define LoadTransposeMatrixdARB_remap_index 32 1080 #define LoadTransposeMatrixfARB_remap_index 33 1081 #define MultTransposeMatrixdARB_remap_index 34 1082 #define MultTransposeMatrixfARB_remap_index 35 1083 #define SampleCoverageARB_remap_index 36 1084 #define CompressedTexImage1DARB_remap_index 37 1085 #define CompressedTexImage2DARB_remap_index 38 1086 #define CompressedTexImage3DARB_remap_index 39 1087 #define CompressedTexSubImage1DARB_remap_index 40 1088 #define CompressedTexSubImage2DARB_remap_index 41 1089 #define CompressedTexSubImage3DARB_remap_index 42 1090 #define GetCompressedTexImageARB_remap_index 43 1091 #define DisableVertexAttribArrayARB_remap_index 44 1092 #define EnableVertexAttribArrayARB_remap_index 45 1093 #define GetProgramEnvParameterdvARB_remap_index 46 1094 #define GetProgramEnvParameterfvARB_remap_index 47 1095 #define GetProgramLocalParameterdvARB_remap_index 48 1096 #define GetProgramLocalParameterfvARB_remap_index 49 1097 #define GetProgramStringARB_remap_index 50 1098 #define GetProgramivARB_remap_index 51 1099 #define GetVertexAttribdvARB_remap_index 52 1100 #define GetVertexAttribfvARB_remap_index 53 1101 #define GetVertexAttribivARB_remap_index 54 1102 #define ProgramEnvParameter4dARB_remap_index 55 1103 #define ProgramEnvParameter4dvARB_remap_index 56 1104 #define ProgramEnvParameter4fARB_remap_index 57 1105 #define ProgramEnvParameter4fvARB_remap_index 58 1106 #define ProgramLocalParameter4dARB_remap_index 59 1107 #define ProgramLocalParameter4dvARB_remap_index 60 1108 #define ProgramLocalParameter4fARB_remap_index 61 1109 #define ProgramLocalParameter4fvARB_remap_index 62 1110 #define ProgramStringARB_remap_index 63 1111 #define VertexAttrib1dARB_remap_index 64 1112 #define VertexAttrib1dvARB_remap_index 65 1113 #define VertexAttrib1fARB_remap_index 66 1114 #define VertexAttrib1fvARB_remap_index 67 1115 #define VertexAttrib1sARB_remap_index 68 1116 #define VertexAttrib1svARB_remap_index 69 1117 #define VertexAttrib2dARB_remap_index 70 1118 #define VertexAttrib2dvARB_remap_index 71 1119 #define VertexAttrib2fARB_remap_index 72 1120 #define VertexAttrib2fvARB_remap_index 73 1121 #define VertexAttrib2sARB_remap_index 74 1122 #define VertexAttrib2svARB_remap_index 75 1123 #define VertexAttrib3dARB_remap_index 76 1124 #define VertexAttrib3dvARB_remap_index 77 1125 #define VertexAttrib3fARB_remap_index 78 1126 #define VertexAttrib3fvARB_remap_index 79 1127 #define VertexAttrib3sARB_remap_index 80 1128 #define VertexAttrib3svARB_remap_index 81 1129 #define VertexAttrib4NbvARB_remap_index 82 1130 #define VertexAttrib4NivARB_remap_index 83 1131 #define VertexAttrib4NsvARB_remap_index 84 1132 #define VertexAttrib4NubARB_remap_index 85 1133 #define VertexAttrib4NubvARB_remap_index 86 1134 #define VertexAttrib4NuivARB_remap_index 87 1135 #define VertexAttrib4NusvARB_remap_index 88 1136 #define VertexAttrib4bvARB_remap_index 89 1137 #define VertexAttrib4dARB_remap_index 90 1138 #define VertexAttrib4dvARB_remap_index 91 1139 #define VertexAttrib4fARB_remap_index 92 1140 #define VertexAttrib4fvARB_remap_index 93 1141 #define VertexAttrib4ivARB_remap_index 94 1142 #define VertexAttrib4sARB_remap_index 95 1143 #define VertexAttrib4svARB_remap_index 96 1144 #define VertexAttrib4ubvARB_remap_index 97 1145 #define VertexAttrib4uivARB_remap_index 98 1146 #define VertexAttrib4usvARB_remap_index 99 1147 #define VertexAttribPointerARB_remap_index 100 1148 #define BindBufferARB_remap_index 101 1149 #define BufferDataARB_remap_index 102 1150 #define BufferSubDataARB_remap_index 103 1151 #define DeleteBuffersARB_remap_index 104 1152 #define GenBuffersARB_remap_index 105 1153 #define GetBufferParameterivARB_remap_index 106 1154 #define GetBufferPointervARB_remap_index 107 1155 #define GetBufferSubDataARB_remap_index 108 1156 #define IsBufferARB_remap_index 109 1157 #define MapBufferARB_remap_index 110 1158 #define UnmapBufferARB_remap_index 111 1159 #define BeginQueryARB_remap_index 112 1160 #define DeleteQueriesARB_remap_index 113 1161 #define EndQueryARB_remap_index 114 1162 #define GenQueriesARB_remap_index 115 1163 #define GetQueryObjectivARB_remap_index 116 1164 #define GetQueryObjectuivARB_remap_index 117 1165 #define GetQueryivARB_remap_index 118 1166 #define IsQueryARB_remap_index 119 1167 #define AttachObjectARB_remap_index 120 1168 #define CompileShaderARB_remap_index 121 1169 #define CreateProgramObjectARB_remap_index 122 1170 #define CreateShaderObjectARB_remap_index 123 1171 #define DeleteObjectARB_remap_index 124 1172 #define DetachObjectARB_remap_index 125 1173 #define GetActiveUniformARB_remap_index 126 1174 #define GetAttachedObjectsARB_remap_index 127 1175 #define GetHandleARB_remap_index 128 1176 #define GetInfoLogARB_remap_index 129 1177 #define GetObjectParameterfvARB_remap_index 130 1178 #define GetObjectParameterivARB_remap_index 131 1179 #define GetShaderSourceARB_remap_index 132 1180 #define GetUniformLocationARB_remap_index 133 1181 #define GetUniformfvARB_remap_index 134 1182 #define GetUniformivARB_remap_index 135 1183 #define LinkProgramARB_remap_index 136 1184 #define ShaderSourceARB_remap_index 137 1185 #define Uniform1fARB_remap_index 138 1186 #define Uniform1fvARB_remap_index 139 1187 #define Uniform1iARB_remap_index 140 1188 #define Uniform1ivARB_remap_index 141 1189 #define Uniform2fARB_remap_index 142 1190 #define Uniform2fvARB_remap_index 143 1191 #define Uniform2iARB_remap_index 144 1192 #define Uniform2ivARB_remap_index 145 1193 #define Uniform3fARB_remap_index 146 1194 #define Uniform3fvARB_remap_index 147 1195 #define Uniform3iARB_remap_index 148 1196 #define Uniform3ivARB_remap_index 149 1197 #define Uniform4fARB_remap_index 150 1198 #define Uniform4fvARB_remap_index 151 1199 #define Uniform4iARB_remap_index 152 1200 #define Uniform4ivARB_remap_index 153 1201 #define UniformMatrix2fvARB_remap_index 154 1202 #define UniformMatrix3fvARB_remap_index 155 1203 #define UniformMatrix4fvARB_remap_index 156 1204 #define UseProgramObjectARB_remap_index 157 1205 #define ValidateProgramARB_remap_index 158 1206 #define BindAttribLocationARB_remap_index 159 1207 #define GetActiveAttribARB_remap_index 160 1208 #define GetAttribLocationARB_remap_index 161 1209 #define DrawBuffersARB_remap_index 162 1210 #define ClampColorARB_remap_index 163 1211 #define DrawArraysInstancedARB_remap_index 164 1212 #define DrawElementsInstancedARB_remap_index 165 1213 #define RenderbufferStorageMultisample_remap_index 166 1214 #define FramebufferTextureARB_remap_index 167 1215 #define FramebufferTextureFaceARB_remap_index 168 1216 #define ProgramParameteriARB_remap_index 169 1217 #define VertexAttribDivisorARB_remap_index 170 1218 #define FlushMappedBufferRange_remap_index 171 1219 #define MapBufferRange_remap_index 172 1220 #define TexBufferARB_remap_index 173 1221 #define BindVertexArray_remap_index 174 1222 #define GenVertexArrays_remap_index 175 1223 #define GetActiveUniformBlockName_remap_index 176 1224 #define GetActiveUniformBlockiv_remap_index 177 1225 #define GetActiveUniformName_remap_index 178 1226 #define GetActiveUniformsiv_remap_index 179 1227 #define GetUniformBlockIndex_remap_index 180 1228 #define GetUniformIndices_remap_index 181 1229 #define UniformBlockBinding_remap_index 182 1230 #define CopyBufferSubData_remap_index 183 1231 #define ClientWaitSync_remap_index 184 1232 #define DeleteSync_remap_index 185 1233 #define FenceSync_remap_index 186 1234 #define GetInteger64v_remap_index 187 1235 #define GetSynciv_remap_index 188 1236 #define IsSync_remap_index 189 1237 #define WaitSync_remap_index 190 1238 #define DrawElementsBaseVertex_remap_index 191 1239 #define DrawElementsInstancedBaseVertex_remap_index 192 1240 #define DrawRangeElementsBaseVertex_remap_index 193 1241 #define MultiDrawElementsBaseVertex_remap_index 194 1242 #define BlendEquationSeparateiARB_remap_index 195 1243 #define BlendEquationiARB_remap_index 196 1244 #define BlendFuncSeparateiARB_remap_index 197 1245 #define BlendFunciARB_remap_index 198 1246 #define BindFragDataLocationIndexed_remap_index 199 1247 #define GetFragDataIndex_remap_index 200 1248 #define BindSampler_remap_index 201 1249 #define DeleteSamplers_remap_index 202 1250 #define GenSamplers_remap_index 203 1251 #define GetSamplerParameterIiv_remap_index 204 1252 #define GetSamplerParameterIuiv_remap_index 205 1253 #define GetSamplerParameterfv_remap_index 206 1254 #define GetSamplerParameteriv_remap_index 207 1255 #define IsSampler_remap_index 208 1256 #define SamplerParameterIiv_remap_index 209 1257 #define SamplerParameterIuiv_remap_index 210 1258 #define SamplerParameterf_remap_index 211 1259 #define SamplerParameterfv_remap_index 212 1260 #define SamplerParameteri_remap_index 213 1261 #define SamplerParameteriv_remap_index 214 1262 #define QueryCounter_remap_index 215 1263 #define ColorP3ui_remap_index 216 1264 #define ColorP3uiv_remap_index 217 1265 #define ColorP4ui_remap_index 218 1266 #define ColorP4uiv_remap_index 219 1267 #define MultiTexCoordP1ui_remap_index 220 1268 #define MultiTexCoordP1uiv_remap_index 221 1269 #define MultiTexCoordP2ui_remap_index 222 1270 #define MultiTexCoordP2uiv_remap_index 223 1271 #define MultiTexCoordP3ui_remap_index 224 1272 #define MultiTexCoordP3uiv_remap_index 225 1273 #define MultiTexCoordP4ui_remap_index 226 1274 #define MultiTexCoordP4uiv_remap_index 227 1275 #define NormalP3ui_remap_index 228 1276 #define NormalP3uiv_remap_index 229 1277 #define SecondaryColorP3ui_remap_index 230 1278 #define SecondaryColorP3uiv_remap_index 231 1279 #define TexCoordP1ui_remap_index 232 1280 #define TexCoordP1uiv_remap_index 233 1281 #define TexCoordP2ui_remap_index 234 1282 #define TexCoordP2uiv_remap_index 235 1283 #define TexCoordP3ui_remap_index 236 1284 #define TexCoordP3uiv_remap_index 237 1285 #define TexCoordP4ui_remap_index 238 1286 #define TexCoordP4uiv_remap_index 239 1287 #define VertexAttribP1ui_remap_index 240 1288 #define VertexAttribP1uiv_remap_index 241 1289 #define VertexAttribP2ui_remap_index 242 1290 #define VertexAttribP2uiv_remap_index 243 1291 #define VertexAttribP3ui_remap_index 244 1292 #define VertexAttribP3uiv_remap_index 245 1293 #define VertexAttribP4ui_remap_index 246 1294 #define VertexAttribP4uiv_remap_index 247 1295 #define VertexP2ui_remap_index 248 1296 #define VertexP2uiv_remap_index 249 1297 #define VertexP3ui_remap_index 250 1298 #define VertexP3uiv_remap_index 251 1299 #define VertexP4ui_remap_index 252 1300 #define VertexP4uiv_remap_index 253 1301 #define BindTransformFeedback_remap_index 254 1302 #define DeleteTransformFeedbacks_remap_index 255 1303 #define DrawTransformFeedback_remap_index 256 1304 #define GenTransformFeedbacks_remap_index 257 1305 #define IsTransformFeedback_remap_index 258 1306 #define PauseTransformFeedback_remap_index 259 1307 #define ResumeTransformFeedback_remap_index 260 1308 #define BeginQueryIndexed_remap_index 261 1309 #define DrawTransformFeedbackStream_remap_index 262 1310 #define EndQueryIndexed_remap_index 263 1311 #define GetQueryIndexediv_remap_index 264 1312 #define ClearDepthf_remap_index 265 1313 #define DepthRangef_remap_index 266 1314 #define GetShaderPrecisionFormat_remap_index 267 1315 #define ReleaseShaderCompiler_remap_index 268 1316 #define ShaderBinary_remap_index 269 1317 #define DebugMessageCallbackARB_remap_index 270 1318 #define DebugMessageControlARB_remap_index 271 1319 #define DebugMessageInsertARB_remap_index 272 1320 #define GetDebugMessageLogARB_remap_index 273 1321 #define GetGraphicsResetStatusARB_remap_index 274 1322 #define GetnColorTableARB_remap_index 275 1323 #define GetnCompressedTexImageARB_remap_index 276 1324 #define GetnConvolutionFilterARB_remap_index 277 1325 #define GetnHistogramARB_remap_index 278 1326 #define GetnMapdvARB_remap_index 279 1327 #define GetnMapfvARB_remap_index 280 1328 #define GetnMapivARB_remap_index 281 1329 #define GetnMinmaxARB_remap_index 282 1330 #define GetnPixelMapfvARB_remap_index 283 1331 #define GetnPixelMapuivARB_remap_index 284 1332 #define GetnPixelMapusvARB_remap_index 285 1333 #define GetnPolygonStippleARB_remap_index 286 1334 #define GetnSeparableFilterARB_remap_index 287 1335 #define GetnTexImageARB_remap_index 288 1336 #define GetnUniformdvARB_remap_index 289 1337 #define GetnUniformfvARB_remap_index 290 1338 #define GetnUniformivARB_remap_index 291 1339 #define GetnUniformuivARB_remap_index 292 1340 #define ReadnPixelsARB_remap_index 293 1341 #define DrawArraysInstancedBaseInstance_remap_index 294 1342 #define DrawElementsInstancedBaseInstance_remap_index 295 1343 #define DrawElementsInstancedBaseVertexBaseInstance_remap_index 296 1344 #define DrawTransformFeedbackInstanced_remap_index 297 1345 #define DrawTransformFeedbackStreamInstanced_remap_index 298 1346 #define TexStorage1D_remap_index 299 1347 #define TexStorage2D_remap_index 300 1348 #define TexStorage3D_remap_index 301 1349 #define TextureStorage1DEXT_remap_index 302 1350 #define TextureStorage2DEXT_remap_index 303 1351 #define TextureStorage3DEXT_remap_index 304 1352 #define InvalidateBufferData_remap_index 305 1353 #define InvalidateBufferSubData_remap_index 306 1354 #define InvalidateFramebuffer_remap_index 307 1355 #define InvalidateSubFramebuffer_remap_index 308 1356 #define InvalidateTexImage_remap_index 309 1357 #define InvalidateTexSubImage_remap_index 310 1358 #define PolygonOffsetEXT_remap_index 311 1359 #define SampleMaskSGIS_remap_index 312 1360 #define SamplePatternSGIS_remap_index 313 1361 #define ColorPointerEXT_remap_index 314 1362 #define EdgeFlagPointerEXT_remap_index 315 1363 #define IndexPointerEXT_remap_index 316 1364 #define NormalPointerEXT_remap_index 317 1365 #define TexCoordPointerEXT_remap_index 318 1366 #define VertexPointerEXT_remap_index 319 1367 #define PointParameterfEXT_remap_index 320 1368 #define PointParameterfvEXT_remap_index 321 1369 #define LockArraysEXT_remap_index 322 1370 #define UnlockArraysEXT_remap_index 323 1371 #define SecondaryColor3bEXT_remap_index 324 1372 #define SecondaryColor3bvEXT_remap_index 325 1373 #define SecondaryColor3dEXT_remap_index 326 1374 #define SecondaryColor3dvEXT_remap_index 327 1375 #define SecondaryColor3fEXT_remap_index 328 1376 #define SecondaryColor3fvEXT_remap_index 329 1377 #define SecondaryColor3iEXT_remap_index 330 1378 #define SecondaryColor3ivEXT_remap_index 331 1379 #define SecondaryColor3sEXT_remap_index 332 1380 #define SecondaryColor3svEXT_remap_index 333 1381 #define SecondaryColor3ubEXT_remap_index 334 1382 #define SecondaryColor3ubvEXT_remap_index 335 1383 #define SecondaryColor3uiEXT_remap_index 336 1384 #define SecondaryColor3uivEXT_remap_index 337 1385 #define SecondaryColor3usEXT_remap_index 338 1386 #define SecondaryColor3usvEXT_remap_index 339 1387 #define SecondaryColorPointerEXT_remap_index 340 1388 #define MultiDrawArraysEXT_remap_index 341 1389 #define MultiDrawElementsEXT_remap_index 342 1390 #define FogCoordPointerEXT_remap_index 343 1391 #define FogCoorddEXT_remap_index 344 1392 #define FogCoorddvEXT_remap_index 345 1393 #define FogCoordfEXT_remap_index 346 1394 #define FogCoordfvEXT_remap_index 347 1395 #define BlendFuncSeparateEXT_remap_index 348 1396 #define ResizeBuffersMESA_remap_index 349 1397 #define WindowPos2dMESA_remap_index 350 1398 #define WindowPos2dvMESA_remap_index 351 1399 #define WindowPos2fMESA_remap_index 352 1400 #define WindowPos2fvMESA_remap_index 353 1401 #define WindowPos2iMESA_remap_index 354 1402 #define WindowPos2ivMESA_remap_index 355 1403 #define WindowPos2sMESA_remap_index 356 1404 #define WindowPos2svMESA_remap_index 357 1405 #define WindowPos3dMESA_remap_index 358 1406 #define WindowPos3dvMESA_remap_index 359 1407 #define WindowPos3fMESA_remap_index 360 1408 #define WindowPos3fvMESA_remap_index 361 1409 #define WindowPos3iMESA_remap_index 362 1410 #define WindowPos3ivMESA_remap_index 363 1411 #define WindowPos3sMESA_remap_index 364 1412 #define WindowPos3svMESA_remap_index 365 1413 #define WindowPos4dMESA_remap_index 366 1414 #define WindowPos4dvMESA_remap_index 367 1415 #define WindowPos4fMESA_remap_index 368 1416 #define WindowPos4fvMESA_remap_index 369 1417 #define WindowPos4iMESA_remap_index 370 1418 #define WindowPos4ivMESA_remap_index 371 1419 #define WindowPos4sMESA_remap_index 372 1420 #define WindowPos4svMESA_remap_index 373 1421 #define MultiModeDrawArraysIBM_remap_index 374 1422 #define MultiModeDrawElementsIBM_remap_index 375 1423 #define AreProgramsResidentNV_remap_index 376 1424 #define BindProgramNV_remap_index 377 1425 #define DeleteProgramsNV_remap_index 378 1426 #define ExecuteProgramNV_remap_index 379 1427 #define GenProgramsNV_remap_index 380 1428 #define GetProgramParameterdvNV_remap_index 381 1429 #define GetProgramParameterfvNV_remap_index 382 1430 #define GetProgramStringNV_remap_index 383 1431 #define GetProgramivNV_remap_index 384 1432 #define GetTrackMatrixivNV_remap_index 385 1433 #define GetVertexAttribPointervNV_remap_index 386 1434 #define GetVertexAttribdvNV_remap_index 387 1435 #define GetVertexAttribfvNV_remap_index 388 1436 #define GetVertexAttribivNV_remap_index 389 1437 #define IsProgramNV_remap_index 390 1438 #define LoadProgramNV_remap_index 391 1439 #define ProgramParameters4dvNV_remap_index 392 1440 #define ProgramParameters4fvNV_remap_index 393 1441 #define RequestResidentProgramsNV_remap_index 394 1442 #define TrackMatrixNV_remap_index 395 1443 #define VertexAttrib1dNV_remap_index 396 1444 #define VertexAttrib1dvNV_remap_index 397 1445 #define VertexAttrib1fNV_remap_index 398 1446 #define VertexAttrib1fvNV_remap_index 399 1447 #define VertexAttrib1sNV_remap_index 400 1448 #define VertexAttrib1svNV_remap_index 401 1449 #define VertexAttrib2dNV_remap_index 402 1450 #define VertexAttrib2dvNV_remap_index 403 1451 #define VertexAttrib2fNV_remap_index 404 1452 #define VertexAttrib2fvNV_remap_index 405 1453 #define VertexAttrib2sNV_remap_index 406 1454 #define VertexAttrib2svNV_remap_index 407 1455 #define VertexAttrib3dNV_remap_index 408 1456 #define VertexAttrib3dvNV_remap_index 409 1457 #define VertexAttrib3fNV_remap_index 410 1458 #define VertexAttrib3fvNV_remap_index 411 1459 #define VertexAttrib3sNV_remap_index 412 1460 #define VertexAttrib3svNV_remap_index 413 1461 #define VertexAttrib4dNV_remap_index 414 1462 #define VertexAttrib4dvNV_remap_index 415 1463 #define VertexAttrib4fNV_remap_index 416 1464 #define VertexAttrib4fvNV_remap_index 417 1465 #define VertexAttrib4sNV_remap_index 418 1466 #define VertexAttrib4svNV_remap_index 419 1467 #define VertexAttrib4ubNV_remap_index 420 1468 #define VertexAttrib4ubvNV_remap_index 421 1469 #define VertexAttribPointerNV_remap_index 422 1470 #define VertexAttribs1dvNV_remap_index 423 1471 #define VertexAttribs1fvNV_remap_index 424 1472 #define VertexAttribs1svNV_remap_index 425 1473 #define VertexAttribs2dvNV_remap_index 426 1474 #define VertexAttribs2fvNV_remap_index 427 1475 #define VertexAttribs2svNV_remap_index 428 1476 #define VertexAttribs3dvNV_remap_index 429 1477 #define VertexAttribs3fvNV_remap_index 430 1478 #define VertexAttribs3svNV_remap_index 431 1479 #define VertexAttribs4dvNV_remap_index 432 1480 #define VertexAttribs4fvNV_remap_index 433 1481 #define VertexAttribs4svNV_remap_index 434 1482 #define VertexAttribs4ubvNV_remap_index 435 1483 #define GetTexBumpParameterfvATI_remap_index 436 1484 #define GetTexBumpParameterivATI_remap_index 437 1485 #define TexBumpParameterfvATI_remap_index 438 1486 #define TexBumpParameterivATI_remap_index 439 1487 #define AlphaFragmentOp1ATI_remap_index 440 1488 #define AlphaFragmentOp2ATI_remap_index 441 1489 #define AlphaFragmentOp3ATI_remap_index 442 1490 #define BeginFragmentShaderATI_remap_index 443 1491 #define BindFragmentShaderATI_remap_index 444 1492 #define ColorFragmentOp1ATI_remap_index 445 1493 #define ColorFragmentOp2ATI_remap_index 446 1494 #define ColorFragmentOp3ATI_remap_index 447 1495 #define DeleteFragmentShaderATI_remap_index 448 1496 #define EndFragmentShaderATI_remap_index 449 1497 #define GenFragmentShadersATI_remap_index 450 1498 #define PassTexCoordATI_remap_index 451 1499 #define SampleMapATI_remap_index 452 1500 #define SetFragmentShaderConstantATI_remap_index 453 1501 #define PointParameteriNV_remap_index 454 1502 #define PointParameterivNV_remap_index 455 1503 #define ActiveStencilFaceEXT_remap_index 456 1504 #define BindVertexArrayAPPLE_remap_index 457 1505 #define DeleteVertexArraysAPPLE_remap_index 458 1506 #define GenVertexArraysAPPLE_remap_index 459 1507 #define IsVertexArrayAPPLE_remap_index 460 1508 #define GetProgramNamedParameterdvNV_remap_index 461 1509 #define GetProgramNamedParameterfvNV_remap_index 462 1510 #define ProgramNamedParameter4dNV_remap_index 463 1511 #define ProgramNamedParameter4dvNV_remap_index 464 1512 #define ProgramNamedParameter4fNV_remap_index 465 1513 #define ProgramNamedParameter4fvNV_remap_index 466 1514 #define PrimitiveRestartIndexNV_remap_index 467 1515 #define PrimitiveRestartNV_remap_index 468 1516 #define DepthBoundsEXT_remap_index 469 1517 #define BlendEquationSeparateEXT_remap_index 470 1518 #define BindFramebufferEXT_remap_index 471 1519 #define BindRenderbufferEXT_remap_index 472 1520 #define CheckFramebufferStatusEXT_remap_index 473 1521 #define DeleteFramebuffersEXT_remap_index 474 1522 #define DeleteRenderbuffersEXT_remap_index 475 1523 #define FramebufferRenderbufferEXT_remap_index 476 1524 #define FramebufferTexture1DEXT_remap_index 477 1525 #define FramebufferTexture2DEXT_remap_index 478 1526 #define FramebufferTexture3DEXT_remap_index 479 1527 #define GenFramebuffersEXT_remap_index 480 1528 #define GenRenderbuffersEXT_remap_index 481 1529 #define GenerateMipmapEXT_remap_index 482 1530 #define GetFramebufferAttachmentParameterivEXT_remap_index 483 1531 #define GetRenderbufferParameterivEXT_remap_index 484 1532 #define IsFramebufferEXT_remap_index 485 1533 #define IsRenderbufferEXT_remap_index 486 1534 #define RenderbufferStorageEXT_remap_index 487 1535 #define BlitFramebufferEXT_remap_index 488 1536 #define BufferParameteriAPPLE_remap_index 489 1537 #define FlushMappedBufferRangeAPPLE_remap_index 490 1538 #define BindFragDataLocationEXT_remap_index 491 1539 #define GetFragDataLocationEXT_remap_index 492 1540 #define GetUniformuivEXT_remap_index 493 1541 #define GetVertexAttribIivEXT_remap_index 494 1542 #define GetVertexAttribIuivEXT_remap_index 495 1543 #define Uniform1uiEXT_remap_index 496 1544 #define Uniform1uivEXT_remap_index 497 1545 #define Uniform2uiEXT_remap_index 498 1546 #define Uniform2uivEXT_remap_index 499 1547 #define Uniform3uiEXT_remap_index 500 1548 #define Uniform3uivEXT_remap_index 501 1549 #define Uniform4uiEXT_remap_index 502 1550 #define Uniform4uivEXT_remap_index 503 1551 #define VertexAttribI1iEXT_remap_index 504 1552 #define VertexAttribI1ivEXT_remap_index 505 1553 #define VertexAttribI1uiEXT_remap_index 506 1554 #define VertexAttribI1uivEXT_remap_index 507 1555 #define VertexAttribI2iEXT_remap_index 508 1556 #define VertexAttribI2ivEXT_remap_index 509 1557 #define VertexAttribI2uiEXT_remap_index 510 1558 #define VertexAttribI2uivEXT_remap_index 511 1559 #define VertexAttribI3iEXT_remap_index 512 1560 #define VertexAttribI3ivEXT_remap_index 513 1561 #define VertexAttribI3uiEXT_remap_index 514 1562 #define VertexAttribI3uivEXT_remap_index 515 1563 #define VertexAttribI4bvEXT_remap_index 516 1564 #define VertexAttribI4iEXT_remap_index 517 1565 #define VertexAttribI4ivEXT_remap_index 518 1566 #define VertexAttribI4svEXT_remap_index 519 1567 #define VertexAttribI4ubvEXT_remap_index 520 1568 #define VertexAttribI4uiEXT_remap_index 521 1569 #define VertexAttribI4uivEXT_remap_index 522 1570 #define VertexAttribI4usvEXT_remap_index 523 1571 #define VertexAttribIPointerEXT_remap_index 524 1572 #define FramebufferTextureLayerEXT_remap_index 525 1573 #define ColorMaskIndexedEXT_remap_index 526 1574 #define DisableIndexedEXT_remap_index 527 1575 #define EnableIndexedEXT_remap_index 528 1576 #define GetBooleanIndexedvEXT_remap_index 529 1577 #define GetIntegerIndexedvEXT_remap_index 530 1578 #define IsEnabledIndexedEXT_remap_index 531 1579 #define ClearColorIiEXT_remap_index 532 1580 #define ClearColorIuiEXT_remap_index 533 1581 #define GetTexParameterIivEXT_remap_index 534 1582 #define GetTexParameterIuivEXT_remap_index 535 1583 #define TexParameterIivEXT_remap_index 536 1584 #define TexParameterIuivEXT_remap_index 537 1585 #define BeginConditionalRenderNV_remap_index 538 1586 #define EndConditionalRenderNV_remap_index 539 1587 #define BeginTransformFeedbackEXT_remap_index 540 1588 #define BindBufferBaseEXT_remap_index 541 1589 #define BindBufferOffsetEXT_remap_index 542 1590 #define BindBufferRangeEXT_remap_index 543 1591 #define EndTransformFeedbackEXT_remap_index 544 1592 #define GetTransformFeedbackVaryingEXT_remap_index 545 1593 #define TransformFeedbackVaryingsEXT_remap_index 546 1594 #define ProvokingVertexEXT_remap_index 547 1595 #define GetObjectParameterivAPPLE_remap_index 548 1596 #define ObjectPurgeableAPPLE_remap_index 549 1597 #define ObjectUnpurgeableAPPLE_remap_index 550 1598 #define ActiveProgramEXT_remap_index 551 1599 #define CreateShaderProgramEXT_remap_index 552 1600 #define UseShaderProgramEXT_remap_index 553 1601 #define TextureBarrierNV_remap_index 554 1602 #define StencilFuncSeparateATI_remap_index 555 1603 #define ProgramEnvParameters4fvEXT_remap_index 556 1604 #define ProgramLocalParameters4fvEXT_remap_index 557 1605 #define GetQueryObjecti64vEXT_remap_index 558 1606 #define GetQueryObjectui64vEXT_remap_index 559 1607 #define EGLImageTargetRenderbufferStorageOES_remap_index 560 1608 #define EGLImageTargetTexture2DOES_remap_index 561 1609 1610 #define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index] 1611 #define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index] 1612 #define _gloffset_CreateShader driDispatchRemapTable[CreateShader_remap_index] 1613 #define _gloffset_DeleteProgram driDispatchRemapTable[DeleteProgram_remap_index] 1614 #define _gloffset_DeleteShader driDispatchRemapTable[DeleteShader_remap_index] 1615 #define _gloffset_DetachShader driDispatchRemapTable[DetachShader_remap_index] 1616 #define _gloffset_GetAttachedShaders driDispatchRemapTable[GetAttachedShaders_remap_index] 1617 #define _gloffset_GetProgramInfoLog driDispatchRemapTable[GetProgramInfoLog_remap_index] 1618 #define _gloffset_GetProgramiv driDispatchRemapTable[GetProgramiv_remap_index] 1619 #define _gloffset_GetShaderInfoLog driDispatchRemapTable[GetShaderInfoLog_remap_index] 1620 #define _gloffset_GetShaderiv driDispatchRemapTable[GetShaderiv_remap_index] 1621 #define _gloffset_IsProgram driDispatchRemapTable[IsProgram_remap_index] 1622 #define _gloffset_IsShader driDispatchRemapTable[IsShader_remap_index] 1623 #define _gloffset_StencilFuncSeparate driDispatchRemapTable[StencilFuncSeparate_remap_index] 1624 #define _gloffset_StencilMaskSeparate driDispatchRemapTable[StencilMaskSeparate_remap_index] 1625 #define _gloffset_StencilOpSeparate driDispatchRemapTable[StencilOpSeparate_remap_index] 1626 #define _gloffset_UniformMatrix2x3fv driDispatchRemapTable[UniformMatrix2x3fv_remap_index] 1627 #define _gloffset_UniformMatrix2x4fv driDispatchRemapTable[UniformMatrix2x4fv_remap_index] 1628 #define _gloffset_UniformMatrix3x2fv driDispatchRemapTable[UniformMatrix3x2fv_remap_index] 1629 #define _gloffset_UniformMatrix3x4fv driDispatchRemapTable[UniformMatrix3x4fv_remap_index] 1630 #define _gloffset_UniformMatrix4x2fv driDispatchRemapTable[UniformMatrix4x2fv_remap_index] 1631 #define _gloffset_UniformMatrix4x3fv driDispatchRemapTable[UniformMatrix4x3fv_remap_index] 1632 #define _gloffset_ClampColor driDispatchRemapTable[ClampColor_remap_index] 1633 #define _gloffset_ClearBufferfi driDispatchRemapTable[ClearBufferfi_remap_index] 1634 #define _gloffset_ClearBufferfv driDispatchRemapTable[ClearBufferfv_remap_index] 1635 #define _gloffset_ClearBufferiv driDispatchRemapTable[ClearBufferiv_remap_index] 1636 #define _gloffset_ClearBufferuiv driDispatchRemapTable[ClearBufferuiv_remap_index] 1637 #define _gloffset_GetStringi driDispatchRemapTable[GetStringi_remap_index] 1638 #define _gloffset_FramebufferTexture driDispatchRemapTable[FramebufferTexture_remap_index] 1639 #define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index] 1640 #define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index] 1641 #define _gloffset_VertexAttribDivisor driDispatchRemapTable[VertexAttribDivisor_remap_index] 1642 #define _gloffset_LoadTransposeMatrixdARB driDispatchRemapTable[LoadTransposeMatrixdARB_remap_index] 1643 #define _gloffset_LoadTransposeMatrixfARB driDispatchRemapTable[LoadTransposeMatrixfARB_remap_index] 1644 #define _gloffset_MultTransposeMatrixdARB driDispatchRemapTable[MultTransposeMatrixdARB_remap_index] 1645 #define _gloffset_MultTransposeMatrixfARB driDispatchRemapTable[MultTransposeMatrixfARB_remap_index] 1646 #define _gloffset_SampleCoverageARB driDispatchRemapTable[SampleCoverageARB_remap_index] 1647 #define _gloffset_CompressedTexImage1DARB driDispatchRemapTable[CompressedTexImage1DARB_remap_index] 1648 #define _gloffset_CompressedTexImage2DARB driDispatchRemapTable[CompressedTexImage2DARB_remap_index] 1649 #define _gloffset_CompressedTexImage3DARB driDispatchRemapTable[CompressedTexImage3DARB_remap_index] 1650 #define _gloffset_CompressedTexSubImage1DARB driDispatchRemapTable[CompressedTexSubImage1DARB_remap_index] 1651 #define _gloffset_CompressedTexSubImage2DARB driDispatchRemapTable[CompressedTexSubImage2DARB_remap_index] 1652 #define _gloffset_CompressedTexSubImage3DARB driDispatchRemapTable[CompressedTexSubImage3DARB_remap_index] 1653 #define _gloffset_GetCompressedTexImageARB driDispatchRemapTable[GetCompressedTexImageARB_remap_index] 1654 #define _gloffset_DisableVertexAttribArrayARB driDispatchRemapTable[DisableVertexAttribArrayARB_remap_index] 1655 #define _gloffset_EnableVertexAttribArrayARB driDispatchRemapTable[EnableVertexAttribArrayARB_remap_index] 1656 #define _gloffset_GetProgramEnvParameterdvARB driDispatchRemapTable[GetProgramEnvParameterdvARB_remap_index] 1657 #define _gloffset_GetProgramEnvParameterfvARB driDispatchRemapTable[GetProgramEnvParameterfvARB_remap_index] 1658 #define _gloffset_GetProgramLocalParameterdvARB driDispatchRemapTable[GetProgramLocalParameterdvARB_remap_index] 1659 #define _gloffset_GetProgramLocalParameterfvARB driDispatchRemapTable[GetProgramLocalParameterfvARB_remap_index] 1660 #define _gloffset_GetProgramStringARB driDispatchRemapTable[GetProgramStringARB_remap_index] 1661 #define _gloffset_GetProgramivARB driDispatchRemapTable[GetProgramivARB_remap_index] 1662 #define _gloffset_GetVertexAttribdvARB driDispatchRemapTable[GetVertexAttribdvARB_remap_index] 1663 #define _gloffset_GetVertexAttribfvARB driDispatchRemapTable[GetVertexAttribfvARB_remap_index] 1664 #define _gloffset_GetVertexAttribivARB driDispatchRemapTable[GetVertexAttribivARB_remap_index] 1665 #define _gloffset_ProgramEnvParameter4dARB driDispatchRemapTable[ProgramEnvParameter4dARB_remap_index] 1666 #define _gloffset_ProgramEnvParameter4dvARB driDispatchRemapTable[ProgramEnvParameter4dvARB_remap_index] 1667 #define _gloffset_ProgramEnvParameter4fARB driDispatchRemapTable[ProgramEnvParameter4fARB_remap_index] 1668 #define _gloffset_ProgramEnvParameter4fvARB driDispatchRemapTable[ProgramEnvParameter4fvARB_remap_index] 1669 #define _gloffset_ProgramLocalParameter4dARB driDispatchRemapTable[ProgramLocalParameter4dARB_remap_index] 1670 #define _gloffset_ProgramLocalParameter4dvARB driDispatchRemapTable[ProgramLocalParameter4dvARB_remap_index] 1671 #define _gloffset_ProgramLocalParameter4fARB driDispatchRemapTable[ProgramLocalParameter4fARB_remap_index] 1672 #define _gloffset_ProgramLocalParameter4fvARB driDispatchRemapTable[ProgramLocalParameter4fvARB_remap_index] 1673 #define _gloffset_ProgramStringARB driDispatchRemapTable[ProgramStringARB_remap_index] 1674 #define _gloffset_VertexAttrib1dARB driDispatchRemapTable[VertexAttrib1dARB_remap_index] 1675 #define _gloffset_VertexAttrib1dvARB driDispatchRemapTable[VertexAttrib1dvARB_remap_index] 1676 #define _gloffset_VertexAttrib1fARB driDispatchRemapTable[VertexAttrib1fARB_remap_index] 1677 #define _gloffset_VertexAttrib1fvARB driDispatchRemapTable[VertexAttrib1fvARB_remap_index] 1678 #define _gloffset_VertexAttrib1sARB driDispatchRemapTable[VertexAttrib1sARB_remap_index] 1679 #define _gloffset_VertexAttrib1svARB driDispatchRemapTable[VertexAttrib1svARB_remap_index] 1680 #define _gloffset_VertexAttrib2dARB driDispatchRemapTable[VertexAttrib2dARB_remap_index] 1681 #define _gloffset_VertexAttrib2dvARB driDispatchRemapTable[VertexAttrib2dvARB_remap_index] 1682 #define _gloffset_VertexAttrib2fARB driDispatchRemapTable[VertexAttrib2fARB_remap_index] 1683 #define _gloffset_VertexAttrib2fvARB driDispatchRemapTable[VertexAttrib2fvARB_remap_index] 1684 #define _gloffset_VertexAttrib2sARB driDispatchRemapTable[VertexAttrib2sARB_remap_index] 1685 #define _gloffset_VertexAttrib2svARB driDispatchRemapTable[VertexAttrib2svARB_remap_index] 1686 #define _gloffset_VertexAttrib3dARB driDispatchRemapTable[VertexAttrib3dARB_remap_index] 1687 #define _gloffset_VertexAttrib3dvARB driDispatchRemapTable[VertexAttrib3dvARB_remap_index] 1688 #define _gloffset_VertexAttrib3fARB driDispatchRemapTable[VertexAttrib3fARB_remap_index] 1689 #define _gloffset_VertexAttrib3fvARB driDispatchRemapTable[VertexAttrib3fvARB_remap_index] 1690 #define _gloffset_VertexAttrib3sARB driDispatchRemapTable[VertexAttrib3sARB_remap_index] 1691 #define _gloffset_VertexAttrib3svARB driDispatchRemapTable[VertexAttrib3svARB_remap_index] 1692 #define _gloffset_VertexAttrib4NbvARB driDispatchRemapTable[VertexAttrib4NbvARB_remap_index] 1693 #define _gloffset_VertexAttrib4NivARB driDispatchRemapTable[VertexAttrib4NivARB_remap_index] 1694 #define _gloffset_VertexAttrib4NsvARB driDispatchRemapTable[VertexAttrib4NsvARB_remap_index] 1695 #define _gloffset_VertexAttrib4NubARB driDispatchRemapTable[VertexAttrib4NubARB_remap_index] 1696 #define _gloffset_VertexAttrib4NubvARB driDispatchRemapTable[VertexAttrib4NubvARB_remap_index] 1697 #define _gloffset_VertexAttrib4NuivARB driDispatchRemapTable[VertexAttrib4NuivARB_remap_index] 1698 #define _gloffset_VertexAttrib4NusvARB driDispatchRemapTable[VertexAttrib4NusvARB_remap_index] 1699 #define _gloffset_VertexAttrib4bvARB driDispatchRemapTable[VertexAttrib4bvARB_remap_index] 1700 #define _gloffset_VertexAttrib4dARB driDispatchRemapTable[VertexAttrib4dARB_remap_index] 1701 #define _gloffset_VertexAttrib4dvARB driDispatchRemapTable[VertexAttrib4dvARB_remap_index] 1702 #define _gloffset_VertexAttrib4fARB driDispatchRemapTable[VertexAttrib4fARB_remap_index] 1703 #define _gloffset_VertexAttrib4fvARB driDispatchRemapTable[VertexAttrib4fvARB_remap_index] 1704 #define _gloffset_VertexAttrib4ivARB driDispatchRemapTable[VertexAttrib4ivARB_remap_index] 1705 #define _gloffset_VertexAttrib4sARB driDispatchRemapTable[VertexAttrib4sARB_remap_index] 1706 #define _gloffset_VertexAttrib4svARB driDispatchRemapTable[VertexAttrib4svARB_remap_index] 1707 #define _gloffset_VertexAttrib4ubvARB driDispatchRemapTable[VertexAttrib4ubvARB_remap_index] 1708 #define _gloffset_VertexAttrib4uivARB driDispatchRemapTable[VertexAttrib4uivARB_remap_index] 1709 #define _gloffset_VertexAttrib4usvARB driDispatchRemapTable[VertexAttrib4usvARB_remap_index] 1710 #define _gloffset_VertexAttribPointerARB driDispatchRemapTable[VertexAttribPointerARB_remap_index] 1711 #define _gloffset_BindBufferARB driDispatchRemapTable[BindBufferARB_remap_index] 1712 #define _gloffset_BufferDataARB driDispatchRemapTable[BufferDataARB_remap_index] 1713 #define _gloffset_BufferSubDataARB driDispatchRemapTable[BufferSubDataARB_remap_index] 1714 #define _gloffset_DeleteBuffersARB driDispatchRemapTable[DeleteBuffersARB_remap_index] 1715 #define _gloffset_GenBuffersARB driDispatchRemapTable[GenBuffersARB_remap_index] 1716 #define _gloffset_GetBufferParameterivARB driDispatchRemapTable[GetBufferParameterivARB_remap_index] 1717 #define _gloffset_GetBufferPointervARB driDispatchRemapTable[GetBufferPointervARB_remap_index] 1718 #define _gloffset_GetBufferSubDataARB driDispatchRemapTable[GetBufferSubDataARB_remap_index] 1719 #define _gloffset_IsBufferARB driDispatchRemapTable[IsBufferARB_remap_index] 1720 #define _gloffset_MapBufferARB driDispatchRemapTable[MapBufferARB_remap_index] 1721 #define _gloffset_UnmapBufferARB driDispatchRemapTable[UnmapBufferARB_remap_index] 1722 #define _gloffset_BeginQueryARB driDispatchRemapTable[BeginQueryARB_remap_index] 1723 #define _gloffset_DeleteQueriesARB driDispatchRemapTable[DeleteQueriesARB_remap_index] 1724 #define _gloffset_EndQueryARB driDispatchRemapTable[EndQueryARB_remap_index] 1725 #define _gloffset_GenQueriesARB driDispatchRemapTable[GenQueriesARB_remap_index] 1726 #define _gloffset_GetQueryObjectivARB driDispatchRemapTable[GetQueryObjectivARB_remap_index] 1727 #define _gloffset_GetQueryObjectuivARB driDispatchRemapTable[GetQueryObjectuivARB_remap_index] 1728 #define _gloffset_GetQueryivARB driDispatchRemapTable[GetQueryivARB_remap_index] 1729 #define _gloffset_IsQueryARB driDispatchRemapTable[IsQueryARB_remap_index] 1730 #define _gloffset_AttachObjectARB driDispatchRemapTable[AttachObjectARB_remap_index] 1731 #define _gloffset_CompileShaderARB driDispatchRemapTable[CompileShaderARB_remap_index] 1732 #define _gloffset_CreateProgramObjectARB driDispatchRemapTable[CreateProgramObjectARB_remap_index] 1733 #define _gloffset_CreateShaderObjectARB driDispatchRemapTable[CreateShaderObjectARB_remap_index] 1734 #define _gloffset_DeleteObjectARB driDispatchRemapTable[DeleteObjectARB_remap_index] 1735 #define _gloffset_DetachObjectARB driDispatchRemapTable[DetachObjectARB_remap_index] 1736 #define _gloffset_GetActiveUniformARB driDispatchRemapTable[GetActiveUniformARB_remap_index] 1737 #define _gloffset_GetAttachedObjectsARB driDispatchRemapTable[GetAttachedObjectsARB_remap_index] 1738 #define _gloffset_GetHandleARB driDispatchRemapTable[GetHandleARB_remap_index] 1739 #define _gloffset_GetInfoLogARB driDispatchRemapTable[GetInfoLogARB_remap_index] 1740 #define _gloffset_GetObjectParameterfvARB driDispatchRemapTable[GetObjectParameterfvARB_remap_index] 1741 #define _gloffset_GetObjectParameterivARB driDispatchRemapTable[GetObjectParameterivARB_remap_index] 1742 #define _gloffset_GetShaderSourceARB driDispatchRemapTable[GetShaderSourceARB_remap_index] 1743 #define _gloffset_GetUniformLocationARB driDispatchRemapTable[GetUniformLocationARB_remap_index] 1744 #define _gloffset_GetUniformfvARB driDispatchRemapTable[GetUniformfvARB_remap_index] 1745 #define _gloffset_GetUniformivARB driDispatchRemapTable[GetUniformivARB_remap_index] 1746 #define _gloffset_LinkProgramARB driDispatchRemapTable[LinkProgramARB_remap_index] 1747 #define _gloffset_ShaderSourceARB driDispatchRemapTable[ShaderSourceARB_remap_index] 1748 #define _gloffset_Uniform1fARB driDispatchRemapTable[Uniform1fARB_remap_index] 1749 #define _gloffset_Uniform1fvARB driDispatchRemapTable[Uniform1fvARB_remap_index] 1750 #define _gloffset_Uniform1iARB driDispatchRemapTable[Uniform1iARB_remap_index] 1751 #define _gloffset_Uniform1ivARB driDispatchRemapTable[Uniform1ivARB_remap_index] 1752 #define _gloffset_Uniform2fARB driDispatchRemapTable[Uniform2fARB_remap_index] 1753 #define _gloffset_Uniform2fvARB driDispatchRemapTable[Uniform2fvARB_remap_index] 1754 #define _gloffset_Uniform2iARB driDispatchRemapTable[Uniform2iARB_remap_index] 1755 #define _gloffset_Uniform2ivARB driDispatchRemapTable[Uniform2ivARB_remap_index] 1756 #define _gloffset_Uniform3fARB driDispatchRemapTable[Uniform3fARB_remap_index] 1757 #define _gloffset_Uniform3fvARB driDispatchRemapTable[Uniform3fvARB_remap_index] 1758 #define _gloffset_Uniform3iARB driDispatchRemapTable[Uniform3iARB_remap_index] 1759 #define _gloffset_Uniform3ivARB driDispatchRemapTable[Uniform3ivARB_remap_index] 1760 #define _gloffset_Uniform4fARB driDispatchRemapTable[Uniform4fARB_remap_index] 1761 #define _gloffset_Uniform4fvARB driDispatchRemapTable[Uniform4fvARB_remap_index] 1762 #define _gloffset_Uniform4iARB driDispatchRemapTable[Uniform4iARB_remap_index] 1763 #define _gloffset_Uniform4ivARB driDispatchRemapTable[Uniform4ivARB_remap_index] 1764 #define _gloffset_UniformMatrix2fvARB driDispatchRemapTable[UniformMatrix2fvARB_remap_index] 1765 #define _gloffset_UniformMatrix3fvARB driDispatchRemapTable[UniformMatrix3fvARB_remap_index] 1766 #define _gloffset_UniformMatrix4fvARB driDispatchRemapTable[UniformMatrix4fvARB_remap_index] 1767 #define _gloffset_UseProgramObjectARB driDispatchRemapTable[UseProgramObjectARB_remap_index] 1768 #define _gloffset_ValidateProgramARB driDispatchRemapTable[ValidateProgramARB_remap_index] 1769 #define _gloffset_BindAttribLocationARB driDispatchRemapTable[BindAttribLocationARB_remap_index] 1770 #define _gloffset_GetActiveAttribARB driDispatchRemapTable[GetActiveAttribARB_remap_index] 1771 #define _gloffset_GetAttribLocationARB driDispatchRemapTable[GetAttribLocationARB_remap_index] 1772 #define _gloffset_DrawBuffersARB driDispatchRemapTable[DrawBuffersARB_remap_index] 1773 #define _gloffset_ClampColorARB driDispatchRemapTable[ClampColorARB_remap_index] 1774 #define _gloffset_DrawArraysInstancedARB driDispatchRemapTable[DrawArraysInstancedARB_remap_index] 1775 #define _gloffset_DrawElementsInstancedARB driDispatchRemapTable[DrawElementsInstancedARB_remap_index] 1776 #define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index] 1777 #define _gloffset_FramebufferTextureARB driDispatchRemapTable[FramebufferTextureARB_remap_index] 1778 #define _gloffset_FramebufferTextureFaceARB driDispatchRemapTable[FramebufferTextureFaceARB_remap_index] 1779 #define _gloffset_ProgramParameteriARB driDispatchRemapTable[ProgramParameteriARB_remap_index] 1780 #define _gloffset_VertexAttribDivisorARB driDispatchRemapTable[VertexAttribDivisorARB_remap_index] 1781 #define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index] 1782 #define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index] 1783 #define _gloffset_TexBufferARB driDispatchRemapTable[TexBufferARB_remap_index] 1784 #define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index] 1785 #define _gloffset_GenVertexArrays driDispatchRemapTable[GenVertexArrays_remap_index] 1786 #define _gloffset_GetActiveUniformBlockName driDispatchRemapTable[GetActiveUniformBlockName_remap_index] 1787 #define _gloffset_GetActiveUniformBlockiv driDispatchRemapTable[GetActiveUniformBlockiv_remap_index] 1788 #define _gloffset_GetActiveUniformName driDispatchRemapTable[GetActiveUniformName_remap_index] 1789 #define _gloffset_GetActiveUniformsiv driDispatchRemapTable[GetActiveUniformsiv_remap_index] 1790 #define _gloffset_GetUniformBlockIndex driDispatchRemapTable[GetUniformBlockIndex_remap_index] 1791 #define _gloffset_GetUniformIndices driDispatchRemapTable[GetUniformIndices_remap_index] 1792 #define _gloffset_UniformBlockBinding driDispatchRemapTable[UniformBlockBinding_remap_index] 1793 #define _gloffset_CopyBufferSubData driDispatchRemapTable[CopyBufferSubData_remap_index] 1794 #define _gloffset_ClientWaitSync driDispatchRemapTable[ClientWaitSync_remap_index] 1795 #define _gloffset_DeleteSync driDispatchRemapTable[DeleteSync_remap_index] 1796 #define _gloffset_FenceSync driDispatchRemapTable[FenceSync_remap_index] 1797 #define _gloffset_GetInteger64v driDispatchRemapTable[GetInteger64v_remap_index] 1798 #define _gloffset_GetSynciv driDispatchRemapTable[GetSynciv_remap_index] 1799 #define _gloffset_IsSync driDispatchRemapTable[IsSync_remap_index] 1800 #define _gloffset_WaitSync driDispatchRemapTable[WaitSync_remap_index] 1801 #define _gloffset_DrawElementsBaseVertex driDispatchRemapTable[DrawElementsBaseVertex_remap_index] 1802 #define _gloffset_DrawElementsInstancedBaseVertex driDispatchRemapTable[DrawElementsInstancedBaseVertex_remap_index] 1803 #define _gloffset_DrawRangeElementsBaseVertex driDispatchRemapTable[DrawRangeElementsBaseVertex_remap_index] 1804 #define _gloffset_MultiDrawElementsBaseVertex driDispatchRemapTable[MultiDrawElementsBaseVertex_remap_index] 1805 #define _gloffset_BlendEquationSeparateiARB driDispatchRemapTable[BlendEquationSeparateiARB_remap_index] 1806 #define _gloffset_BlendEquationiARB driDispatchRemapTable[BlendEquationiARB_remap_index] 1807 #define _gloffset_BlendFuncSeparateiARB driDispatchRemapTable[BlendFuncSeparateiARB_remap_index] 1808 #define _gloffset_BlendFunciARB driDispatchRemapTable[BlendFunciARB_remap_index] 1809 #define _gloffset_BindFragDataLocationIndexed driDispatchRemapTable[BindFragDataLocationIndexed_remap_index] 1810 #define _gloffset_GetFragDataIndex driDispatchRemapTable[GetFragDataIndex_remap_index] 1811 #define _gloffset_BindSampler driDispatchRemapTable[BindSampler_remap_index] 1812 #define _gloffset_DeleteSamplers driDispatchRemapTable[DeleteSamplers_remap_index] 1813 #define _gloffset_GenSamplers driDispatchRemapTable[GenSamplers_remap_index] 1814 #define _gloffset_GetSamplerParameterIiv driDispatchRemapTable[GetSamplerParameterIiv_remap_index] 1815 #define _gloffset_GetSamplerParameterIuiv driDispatchRemapTable[GetSamplerParameterIuiv_remap_index] 1816 #define _gloffset_GetSamplerParameterfv driDispatchRemapTable[GetSamplerParameterfv_remap_index] 1817 #define _gloffset_GetSamplerParameteriv driDispatchRemapTable[GetSamplerParameteriv_remap_index] 1818 #define _gloffset_IsSampler driDispatchRemapTable[IsSampler_remap_index] 1819 #define _gloffset_SamplerParameterIiv driDispatchRemapTable[SamplerParameterIiv_remap_index] 1820 #define _gloffset_SamplerParameterIuiv driDispatchRemapTable[SamplerParameterIuiv_remap_index] 1821 #define _gloffset_SamplerParameterf driDispatchRemapTable[SamplerParameterf_remap_index] 1822 #define _gloffset_SamplerParameterfv driDispatchRemapTable[SamplerParameterfv_remap_index] 1823 #define _gloffset_SamplerParameteri driDispatchRemapTable[SamplerParameteri_remap_index] 1824 #define _gloffset_SamplerParameteriv driDispatchRemapTable[SamplerParameteriv_remap_index] 1825 #define _gloffset_QueryCounter driDispatchRemapTable[QueryCounter_remap_index] 1826 #define _gloffset_ColorP3ui driDispatchRemapTable[ColorP3ui_remap_index] 1827 #define _gloffset_ColorP3uiv driDispatchRemapTable[ColorP3uiv_remap_index] 1828 #define _gloffset_ColorP4ui driDispatchRemapTable[ColorP4ui_remap_index] 1829 #define _gloffset_ColorP4uiv driDispatchRemapTable[ColorP4uiv_remap_index] 1830 #define _gloffset_MultiTexCoordP1ui driDispatchRemapTable[MultiTexCoordP1ui_remap_index] 1831 #define _gloffset_MultiTexCoordP1uiv driDispatchRemapTable[MultiTexCoordP1uiv_remap_index] 1832 #define _gloffset_MultiTexCoordP2ui driDispatchRemapTable[MultiTexCoordP2ui_remap_index] 1833 #define _gloffset_MultiTexCoordP2uiv driDispatchRemapTable[MultiTexCoordP2uiv_remap_index] 1834 #define _gloffset_MultiTexCoordP3ui driDispatchRemapTable[MultiTexCoordP3ui_remap_index] 1835 #define _gloffset_MultiTexCoordP3uiv driDispatchRemapTable[MultiTexCoordP3uiv_remap_index] 1836 #define _gloffset_MultiTexCoordP4ui driDispatchRemapTable[MultiTexCoordP4ui_remap_index] 1837 #define _gloffset_MultiTexCoordP4uiv driDispatchRemapTable[MultiTexCoordP4uiv_remap_index] 1838 #define _gloffset_NormalP3ui driDispatchRemapTable[NormalP3ui_remap_index] 1839 #define _gloffset_NormalP3uiv driDispatchRemapTable[NormalP3uiv_remap_index] 1840 #define _gloffset_SecondaryColorP3ui driDispatchRemapTable[SecondaryColorP3ui_remap_index] 1841 #define _gloffset_SecondaryColorP3uiv driDispatchRemapTable[SecondaryColorP3uiv_remap_index] 1842 #define _gloffset_TexCoordP1ui driDispatchRemapTable[TexCoordP1ui_remap_index] 1843 #define _gloffset_TexCoordP1uiv driDispatchRemapTable[TexCoordP1uiv_remap_index] 1844 #define _gloffset_TexCoordP2ui driDispatchRemapTable[TexCoordP2ui_remap_index] 1845 #define _gloffset_TexCoordP2uiv driDispatchRemapTable[TexCoordP2uiv_remap_index] 1846 #define _gloffset_TexCoordP3ui driDispatchRemapTable[TexCoordP3ui_remap_index] 1847 #define _gloffset_TexCoordP3uiv driDispatchRemapTable[TexCoordP3uiv_remap_index] 1848 #define _gloffset_TexCoordP4ui driDispatchRemapTable[TexCoordP4ui_remap_index] 1849 #define _gloffset_TexCoordP4uiv driDispatchRemapTable[TexCoordP4uiv_remap_index] 1850 #define _gloffset_VertexAttribP1ui driDispatchRemapTable[VertexAttribP1ui_remap_index] 1851 #define _gloffset_VertexAttribP1uiv driDispatchRemapTable[VertexAttribP1uiv_remap_index] 1852 #define _gloffset_VertexAttribP2ui driDispatchRemapTable[VertexAttribP2ui_remap_index] 1853 #define _gloffset_VertexAttribP2uiv driDispatchRemapTable[VertexAttribP2uiv_remap_index] 1854 #define _gloffset_VertexAttribP3ui driDispatchRemapTable[VertexAttribP3ui_remap_index] 1855 #define _gloffset_VertexAttribP3uiv driDispatchRemapTable[VertexAttribP3uiv_remap_index] 1856 #define _gloffset_VertexAttribP4ui driDispatchRemapTable[VertexAttribP4ui_remap_index] 1857 #define _gloffset_VertexAttribP4uiv driDispatchRemapTable[VertexAttribP4uiv_remap_index] 1858 #define _gloffset_VertexP2ui driDispatchRemapTable[VertexP2ui_remap_index] 1859 #define _gloffset_VertexP2uiv driDispatchRemapTable[VertexP2uiv_remap_index] 1860 #define _gloffset_VertexP3ui driDispatchRemapTable[VertexP3ui_remap_index] 1861 #define _gloffset_VertexP3uiv driDispatchRemapTable[VertexP3uiv_remap_index] 1862 #define _gloffset_VertexP4ui driDispatchRemapTable[VertexP4ui_remap_index] 1863 #define _gloffset_VertexP4uiv driDispatchRemapTable[VertexP4uiv_remap_index] 1864 #define _gloffset_BindTransformFeedback driDispatchRemapTable[BindTransformFeedback_remap_index] 1865 #define _gloffset_DeleteTransformFeedbacks driDispatchRemapTable[DeleteTransformFeedbacks_remap_index] 1866 #define _gloffset_DrawTransformFeedback driDispatchRemapTable[DrawTransformFeedback_remap_index] 1867 #define _gloffset_GenTransformFeedbacks driDispatchRemapTable[GenTransformFeedbacks_remap_index] 1868 #define _gloffset_IsTransformFeedback driDispatchRemapTable[IsTransformFeedback_remap_index] 1869 #define _gloffset_PauseTransformFeedback driDispatchRemapTable[PauseTransformFeedback_remap_index] 1870 #define _gloffset_ResumeTransformFeedback driDispatchRemapTable[ResumeTransformFeedback_remap_index] 1871 #define _gloffset_BeginQueryIndexed driDispatchRemapTable[BeginQueryIndexed_remap_index] 1872 #define _gloffset_DrawTransformFeedbackStream driDispatchRemapTable[DrawTransformFeedbackStream_remap_index] 1873 #define _gloffset_EndQueryIndexed driDispatchRemapTable[EndQueryIndexed_remap_index] 1874 #define _gloffset_GetQueryIndexediv driDispatchRemapTable[GetQueryIndexediv_remap_index] 1875 #define _gloffset_ClearDepthf driDispatchRemapTable[ClearDepthf_remap_index] 1876 #define _gloffset_DepthRangef driDispatchRemapTable[DepthRangef_remap_index] 1877 #define _gloffset_GetShaderPrecisionFormat driDispatchRemapTable[GetShaderPrecisionFormat_remap_index] 1878 #define _gloffset_ReleaseShaderCompiler driDispatchRemapTable[ReleaseShaderCompiler_remap_index] 1879 #define _gloffset_ShaderBinary driDispatchRemapTable[ShaderBinary_remap_index] 1880 #define _gloffset_DebugMessageCallbackARB driDispatchRemapTable[DebugMessageCallbackARB_remap_index] 1881 #define _gloffset_DebugMessageControlARB driDispatchRemapTable[DebugMessageControlARB_remap_index] 1882 #define _gloffset_DebugMessageInsertARB driDispatchRemapTable[DebugMessageInsertARB_remap_index] 1883 #define _gloffset_GetDebugMessageLogARB driDispatchRemapTable[GetDebugMessageLogARB_remap_index] 1884 #define _gloffset_GetGraphicsResetStatusARB driDispatchRemapTable[GetGraphicsResetStatusARB_remap_index] 1885 #define _gloffset_GetnColorTableARB driDispatchRemapTable[GetnColorTableARB_remap_index] 1886 #define _gloffset_GetnCompressedTexImageARB driDispatchRemapTable[GetnCompressedTexImageARB_remap_index] 1887 #define _gloffset_GetnConvolutionFilterARB driDispatchRemapTable[GetnConvolutionFilterARB_remap_index] 1888 #define _gloffset_GetnHistogramARB driDispatchRemapTable[GetnHistogramARB_remap_index] 1889 #define _gloffset_GetnMapdvARB driDispatchRemapTable[GetnMapdvARB_remap_index] 1890 #define _gloffset_GetnMapfvARB driDispatchRemapTable[GetnMapfvARB_remap_index] 1891 #define _gloffset_GetnMapivARB driDispatchRemapTable[GetnMapivARB_remap_index] 1892 #define _gloffset_GetnMinmaxARB driDispatchRemapTable[GetnMinmaxARB_remap_index] 1893 #define _gloffset_GetnPixelMapfvARB driDispatchRemapTable[GetnPixelMapfvARB_remap_index] 1894 #define _gloffset_GetnPixelMapuivARB driDispatchRemapTable[GetnPixelMapuivARB_remap_index] 1895 #define _gloffset_GetnPixelMapusvARB driDispatchRemapTable[GetnPixelMapusvARB_remap_index] 1896 #define _gloffset_GetnPolygonStippleARB driDispatchRemapTable[GetnPolygonStippleARB_remap_index] 1897 #define _gloffset_GetnSeparableFilterARB driDispatchRemapTable[GetnSeparableFilterARB_remap_index] 1898 #define _gloffset_GetnTexImageARB driDispatchRemapTable[GetnTexImageARB_remap_index] 1899 #define _gloffset_GetnUniformdvARB driDispatchRemapTable[GetnUniformdvARB_remap_index] 1900 #define _gloffset_GetnUniformfvARB driDispatchRemapTable[GetnUniformfvARB_remap_index] 1901 #define _gloffset_GetnUniformivARB driDispatchRemapTable[GetnUniformivARB_remap_index] 1902 #define _gloffset_GetnUniformuivARB driDispatchRemapTable[GetnUniformuivARB_remap_index] 1903 #define _gloffset_ReadnPixelsARB driDispatchRemapTable[ReadnPixelsARB_remap_index] 1904 #define _gloffset_DrawArraysInstancedBaseInstance driDispatchRemapTable[DrawArraysInstancedBaseInstance_remap_index] 1905 #define _gloffset_DrawElementsInstancedBaseInstance driDispatchRemapTable[DrawElementsInstancedBaseInstance_remap_index] 1906 #define _gloffset_DrawElementsInstancedBaseVertexBaseInstance driDispatchRemapTable[DrawElementsInstancedBaseVertexBaseInstance_remap_index] 1907 #define _gloffset_DrawTransformFeedbackInstanced driDispatchRemapTable[DrawTransformFeedbackInstanced_remap_index] 1908 #define _gloffset_DrawTransformFeedbackStreamInstanced driDispatchRemapTable[DrawTransformFeedbackStreamInstanced_remap_index] 1909 #define _gloffset_TexStorage1D driDispatchRemapTable[TexStorage1D_remap_index] 1910 #define _gloffset_TexStorage2D driDispatchRemapTable[TexStorage2D_remap_index] 1911 #define _gloffset_TexStorage3D driDispatchRemapTable[TexStorage3D_remap_index] 1912 #define _gloffset_TextureStorage1DEXT driDispatchRemapTable[TextureStorage1DEXT_remap_index] 1913 #define _gloffset_TextureStorage2DEXT driDispatchRemapTable[TextureStorage2DEXT_remap_index] 1914 #define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index] 1915 #define _gloffset_InvalidateBufferData driDispatchRemapTable[InvalidateBufferData_remap_index] 1916 #define _gloffset_InvalidateBufferSubData driDispatchRemapTable[InvalidateBufferSubData_remap_index] 1917 #define _gloffset_InvalidateFramebuffer driDispatchRemapTable[InvalidateFramebuffer_remap_index] 1918 #define _gloffset_InvalidateSubFramebuffer driDispatchRemapTable[InvalidateSubFramebuffer_remap_index] 1919 #define _gloffset_InvalidateTexImage driDispatchRemapTable[InvalidateTexImage_remap_index] 1920 #define _gloffset_InvalidateTexSubImage driDispatchRemapTable[InvalidateTexSubImage_remap_index] 1921 #define _gloffset_PolygonOffsetEXT driDispatchRemapTable[PolygonOffsetEXT_remap_index] 1922 #define _gloffset_SampleMaskSGIS driDispatchRemapTable[SampleMaskSGIS_remap_index] 1923 #define _gloffset_SamplePatternSGIS driDispatchRemapTable[SamplePatternSGIS_remap_index] 1924 #define _gloffset_ColorPointerEXT driDispatchRemapTable[ColorPointerEXT_remap_index] 1925 #define _gloffset_EdgeFlagPointerEXT driDispatchRemapTable[EdgeFlagPointerEXT_remap_index] 1926 #define _gloffset_IndexPointerEXT driDispatchRemapTable[IndexPointerEXT_remap_index] 1927 #define _gloffset_NormalPointerEXT driDispatchRemapTable[NormalPointerEXT_remap_index] 1928 #define _gloffset_TexCoordPointerEXT driDispatchRemapTable[TexCoordPointerEXT_remap_index] 1929 #define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index] 1930 #define _gloffset_PointParameterfEXT driDispatchRemapTable[PointParameterfEXT_remap_index] 1931 #define _gloffset_PointParameterfvEXT driDispatchRemapTable[PointParameterfvEXT_remap_index] 1932 #define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index] 1933 #define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index] 1934 #define _gloffset_SecondaryColor3bEXT driDispatchRemapTable[SecondaryColor3bEXT_remap_index] 1935 #define _gloffset_SecondaryColor3bvEXT driDispatchRemapTable[SecondaryColor3bvEXT_remap_index] 1936 #define _gloffset_SecondaryColor3dEXT driDispatchRemapTable[SecondaryColor3dEXT_remap_index] 1937 #define _gloffset_SecondaryColor3dvEXT driDispatchRemapTable[SecondaryColor3dvEXT_remap_index] 1938 #define _gloffset_SecondaryColor3fEXT driDispatchRemapTable[SecondaryColor3fEXT_remap_index] 1939 #define _gloffset_SecondaryColor3fvEXT driDispatchRemapTable[SecondaryColor3fvEXT_remap_index] 1940 #define _gloffset_SecondaryColor3iEXT driDispatchRemapTable[SecondaryColor3iEXT_remap_index] 1941 #define _gloffset_SecondaryColor3ivEXT driDispatchRemapTable[SecondaryColor3ivEXT_remap_index] 1942 #define _gloffset_SecondaryColor3sEXT driDispatchRemapTable[SecondaryColor3sEXT_remap_index] 1943 #define _gloffset_SecondaryColor3svEXT driDispatchRemapTable[SecondaryColor3svEXT_remap_index] 1944 #define _gloffset_SecondaryColor3ubEXT driDispatchRemapTable[SecondaryColor3ubEXT_remap_index] 1945 #define _gloffset_SecondaryColor3ubvEXT driDispatchRemapTable[SecondaryColor3ubvEXT_remap_index] 1946 #define _gloffset_SecondaryColor3uiEXT driDispatchRemapTable[SecondaryColor3uiEXT_remap_index] 1947 #define _gloffset_SecondaryColor3uivEXT driDispatchRemapTable[SecondaryColor3uivEXT_remap_index] 1948 #define _gloffset_SecondaryColor3usEXT driDispatchRemapTable[SecondaryColor3usEXT_remap_index] 1949 #define _gloffset_SecondaryColor3usvEXT driDispatchRemapTable[SecondaryColor3usvEXT_remap_index] 1950 #define _gloffset_SecondaryColorPointerEXT driDispatchRemapTable[SecondaryColorPointerEXT_remap_index] 1951 #define _gloffset_MultiDrawArraysEXT driDispatchRemapTable[MultiDrawArraysEXT_remap_index] 1952 #define _gloffset_MultiDrawElementsEXT driDispatchRemapTable[MultiDrawElementsEXT_remap_index] 1953 #define _gloffset_FogCoordPointerEXT driDispatchRemapTable[FogCoordPointerEXT_remap_index] 1954 #define _gloffset_FogCoorddEXT driDispatchRemapTable[FogCoorddEXT_remap_index] 1955 #define _gloffset_FogCoorddvEXT driDispatchRemapTable[FogCoorddvEXT_remap_index] 1956 #define _gloffset_FogCoordfEXT driDispatchRemapTable[FogCoordfEXT_remap_index] 1957 #define _gloffset_FogCoordfvEXT driDispatchRemapTable[FogCoordfvEXT_remap_index] 1958 #define _gloffset_BlendFuncSeparateEXT driDispatchRemapTable[BlendFuncSeparateEXT_remap_index] 1959 #define _gloffset_ResizeBuffersMESA driDispatchRemapTable[ResizeBuffersMESA_remap_index] 1960 #define _gloffset_WindowPos2dMESA driDispatchRemapTable[WindowPos2dMESA_remap_index] 1961 #define _gloffset_WindowPos2dvMESA driDispatchRemapTable[WindowPos2dvMESA_remap_index] 1962 #define _gloffset_WindowPos2fMESA driDispatchRemapTable[WindowPos2fMESA_remap_index] 1963 #define _gloffset_WindowPos2fvMESA driDispatchRemapTable[WindowPos2fvMESA_remap_index] 1964 #define _gloffset_WindowPos2iMESA driDispatchRemapTable[WindowPos2iMESA_remap_index] 1965 #define _gloffset_WindowPos2ivMESA driDispatchRemapTable[WindowPos2ivMESA_remap_index] 1966 #define _gloffset_WindowPos2sMESA driDispatchRemapTable[WindowPos2sMESA_remap_index] 1967 #define _gloffset_WindowPos2svMESA driDispatchRemapTable[WindowPos2svMESA_remap_index] 1968 #define _gloffset_WindowPos3dMESA driDispatchRemapTable[WindowPos3dMESA_remap_index] 1969 #define _gloffset_WindowPos3dvMESA driDispatchRemapTable[WindowPos3dvMESA_remap_index] 1970 #define _gloffset_WindowPos3fMESA driDispatchRemapTable[WindowPos3fMESA_remap_index] 1971 #define _gloffset_WindowPos3fvMESA driDispatchRemapTable[WindowPos3fvMESA_remap_index] 1972 #define _gloffset_WindowPos3iMESA driDispatchRemapTable[WindowPos3iMESA_remap_index] 1973 #define _gloffset_WindowPos3ivMESA driDispatchRemapTable[WindowPos3ivMESA_remap_index] 1974 #define _gloffset_WindowPos3sMESA driDispatchRemapTable[WindowPos3sMESA_remap_index] 1975 #define _gloffset_WindowPos3svMESA driDispatchRemapTable[WindowPos3svMESA_remap_index] 1976 #define _gloffset_WindowPos4dMESA driDispatchRemapTable[WindowPos4dMESA_remap_index] 1977 #define _gloffset_WindowPos4dvMESA driDispatchRemapTable[WindowPos4dvMESA_remap_index] 1978 #define _gloffset_WindowPos4fMESA driDispatchRemapTable[WindowPos4fMESA_remap_index] 1979 #define _gloffset_WindowPos4fvMESA driDispatchRemapTable[WindowPos4fvMESA_remap_index] 1980 #define _gloffset_WindowPos4iMESA driDispatchRemapTable[WindowPos4iMESA_remap_index] 1981 #define _gloffset_WindowPos4ivMESA driDispatchRemapTable[WindowPos4ivMESA_remap_index] 1982 #define _gloffset_WindowPos4sMESA driDispatchRemapTable[WindowPos4sMESA_remap_index] 1983 #define _gloffset_WindowPos4svMESA driDispatchRemapTable[WindowPos4svMESA_remap_index] 1984 #define _gloffset_MultiModeDrawArraysIBM driDispatchRemapTable[MultiModeDrawArraysIBM_remap_index] 1985 #define _gloffset_MultiModeDrawElementsIBM driDispatchRemapTable[MultiModeDrawElementsIBM_remap_index] 1986 #define _gloffset_AreProgramsResidentNV driDispatchRemapTable[AreProgramsResidentNV_remap_index] 1987 #define _gloffset_BindProgramNV driDispatchRemapTable[BindProgramNV_remap_index] 1988 #define _gloffset_DeleteProgramsNV driDispatchRemapTable[DeleteProgramsNV_remap_index] 1989 #define _gloffset_ExecuteProgramNV driDispatchRemapTable[ExecuteProgramNV_remap_index] 1990 #define _gloffset_GenProgramsNV driDispatchRemapTable[GenProgramsNV_remap_index] 1991 #define _gloffset_GetProgramParameterdvNV driDispatchRemapTable[GetProgramParameterdvNV_remap_index] 1992 #define _gloffset_GetProgramParameterfvNV driDispatchRemapTable[GetProgramParameterfvNV_remap_index] 1993 #define _gloffset_GetProgramStringNV driDispatchRemapTable[GetProgramStringNV_remap_index] 1994 #define _gloffset_GetProgramivNV driDispatchRemapTable[GetProgramivNV_remap_index] 1995 #define _gloffset_GetTrackMatrixivNV driDispatchRemapTable[GetTrackMatrixivNV_remap_index] 1996 #define _gloffset_GetVertexAttribPointervNV driDispatchRemapTable[GetVertexAttribPointervNV_remap_index] 1997 #define _gloffset_GetVertexAttribdvNV driDispatchRemapTable[GetVertexAttribdvNV_remap_index] 1998 #define _gloffset_GetVertexAttribfvNV driDispatchRemapTable[GetVertexAttribfvNV_remap_index] 1999 #define _gloffset_GetVertexAttribivNV driDispatchRemapTable[GetVertexAttribivNV_remap_index] 2000 #define _gloffset_IsProgramNV driDispatchRemapTable[IsProgramNV_remap_index] 2001 #define _gloffset_LoadProgramNV driDispatchRemapTable[LoadProgramNV_remap_index] 2002 #define _gloffset_ProgramParameters4dvNV driDispatchRemapTable[ProgramParameters4dvNV_remap_index] 2003 #define _gloffset_ProgramParameters4fvNV driDispatchRemapTable[ProgramParameters4fvNV_remap_index] 2004 #define _gloffset_RequestResidentProgramsNV driDispatchRemapTable[RequestResidentProgramsNV_remap_index] 2005 #define _gloffset_TrackMatrixNV driDispatchRemapTable[TrackMatrixNV_remap_index] 2006 #define _gloffset_VertexAttrib1dNV driDispatchRemapTable[VertexAttrib1dNV_remap_index] 2007 #define _gloffset_VertexAttrib1dvNV driDispatchRemapTable[VertexAttrib1dvNV_remap_index] 2008 #define _gloffset_VertexAttrib1fNV driDispatchRemapTable[VertexAttrib1fNV_remap_index] 2009 #define _gloffset_VertexAttrib1fvNV driDispatchRemapTable[VertexAttrib1fvNV_remap_index] 2010 #define _gloffset_VertexAttrib1sNV driDispatchRemapTable[VertexAttrib1sNV_remap_index] 2011 #define _gloffset_VertexAttrib1svNV driDispatchRemapTable[VertexAttrib1svNV_remap_index] 2012 #define _gloffset_VertexAttrib2dNV driDispatchRemapTable[VertexAttrib2dNV_remap_index] 2013 #define _gloffset_VertexAttrib2dvNV driDispatchRemapTable[VertexAttrib2dvNV_remap_index] 2014 #define _gloffset_VertexAttrib2fNV driDispatchRemapTable[VertexAttrib2fNV_remap_index] 2015 #define _gloffset_VertexAttrib2fvNV driDispatchRemapTable[VertexAttrib2fvNV_remap_index] 2016 #define _gloffset_VertexAttrib2sNV driDispatchRemapTable[VertexAttrib2sNV_remap_index] 2017 #define _gloffset_VertexAttrib2svNV driDispatchRemapTable[VertexAttrib2svNV_remap_index] 2018 #define _gloffset_VertexAttrib3dNV driDispatchRemapTable[VertexAttrib3dNV_remap_index] 2019 #define _gloffset_VertexAttrib3dvNV driDispatchRemapTable[VertexAttrib3dvNV_remap_index] 2020 #define _gloffset_VertexAttrib3fNV driDispatchRemapTable[VertexAttrib3fNV_remap_index] 2021 #define _gloffset_VertexAttrib3fvNV driDispatchRemapTable[VertexAttrib3fvNV_remap_index] 2022 #define _gloffset_VertexAttrib3sNV driDispatchRemapTable[VertexAttrib3sNV_remap_index] 2023 #define _gloffset_VertexAttrib3svNV driDispatchRemapTable[VertexAttrib3svNV_remap_index] 2024 #define _gloffset_VertexAttrib4dNV driDispatchRemapTable[VertexAttrib4dNV_remap_index] 2025 #define _gloffset_VertexAttrib4dvNV driDispatchRemapTable[VertexAttrib4dvNV_remap_index] 2026 #define _gloffset_VertexAttrib4fNV driDispatchRemapTable[VertexAttrib4fNV_remap_index] 2027 #define _gloffset_VertexAttrib4fvNV driDispatchRemapTable[VertexAttrib4fvNV_remap_index] 2028 #define _gloffset_VertexAttrib4sNV driDispatchRemapTable[VertexAttrib4sNV_remap_index] 2029 #define _gloffset_VertexAttrib4svNV driDispatchRemapTable[VertexAttrib4svNV_remap_index] 2030 #define _gloffset_VertexAttrib4ubNV driDispatchRemapTable[VertexAttrib4ubNV_remap_index] 2031 #define _gloffset_VertexAttrib4ubvNV driDispatchRemapTable[VertexAttrib4ubvNV_remap_index] 2032 #define _gloffset_VertexAttribPointerNV driDispatchRemapTable[VertexAttribPointerNV_remap_index] 2033 #define _gloffset_VertexAttribs1dvNV driDispatchRemapTable[VertexAttribs1dvNV_remap_index] 2034 #define _gloffset_VertexAttribs1fvNV driDispatchRemapTable[VertexAttribs1fvNV_remap_index] 2035 #define _gloffset_VertexAttribs1svNV driDispatchRemapTable[VertexAttribs1svNV_remap_index] 2036 #define _gloffset_VertexAttribs2dvNV driDispatchRemapTable[VertexAttribs2dvNV_remap_index] 2037 #define _gloffset_VertexAttribs2fvNV driDispatchRemapTable[VertexAttribs2fvNV_remap_index] 2038 #define _gloffset_VertexAttribs2svNV driDispatchRemapTable[VertexAttribs2svNV_remap_index] 2039 #define _gloffset_VertexAttribs3dvNV driDispatchRemapTable[VertexAttribs3dvNV_remap_index] 2040 #define _gloffset_VertexAttribs3fvNV driDispatchRemapTable[VertexAttribs3fvNV_remap_index] 2041 #define _gloffset_VertexAttribs3svNV driDispatchRemapTable[VertexAttribs3svNV_remap_index] 2042 #define _gloffset_VertexAttribs4dvNV driDispatchRemapTable[VertexAttribs4dvNV_remap_index] 2043 #define _gloffset_VertexAttribs4fvNV driDispatchRemapTable[VertexAttribs4fvNV_remap_index] 2044 #define _gloffset_VertexAttribs4svNV driDispatchRemapTable[VertexAttribs4svNV_remap_index] 2045 #define _gloffset_VertexAttribs4ubvNV driDispatchRemapTable[VertexAttribs4ubvNV_remap_index] 2046 #define _gloffset_GetTexBumpParameterfvATI driDispatchRemapTable[GetTexBumpParameterfvATI_remap_index] 2047 #define _gloffset_GetTexBumpParameterivATI driDispatchRemapTable[GetTexBumpParameterivATI_remap_index] 2048 #define _gloffset_TexBumpParameterfvATI driDispatchRemapTable[TexBumpParameterfvATI_remap_index] 2049 #define _gloffset_TexBumpParameterivATI driDispatchRemapTable[TexBumpParameterivATI_remap_index] 2050 #define _gloffset_AlphaFragmentOp1ATI driDispatchRemapTable[AlphaFragmentOp1ATI_remap_index] 2051 #define _gloffset_AlphaFragmentOp2ATI driDispatchRemapTable[AlphaFragmentOp2ATI_remap_index] 2052 #define _gloffset_AlphaFragmentOp3ATI driDispatchRemapTable[AlphaFragmentOp3ATI_remap_index] 2053 #define _gloffset_BeginFragmentShaderATI driDispatchRemapTable[BeginFragmentShaderATI_remap_index] 2054 #define _gloffset_BindFragmentShaderATI driDispatchRemapTable[BindFragmentShaderATI_remap_index] 2055 #define _gloffset_ColorFragmentOp1ATI driDispatchRemapTable[ColorFragmentOp1ATI_remap_index] 2056 #define _gloffset_ColorFragmentOp2ATI driDispatchRemapTable[ColorFragmentOp2ATI_remap_index] 2057 #define _gloffset_ColorFragmentOp3ATI driDispatchRemapTable[ColorFragmentOp3ATI_remap_index] 2058 #define _gloffset_DeleteFragmentShaderATI driDispatchRemapTable[DeleteFragmentShaderATI_remap_index] 2059 #define _gloffset_EndFragmentShaderATI driDispatchRemapTable[EndFragmentShaderATI_remap_index] 2060 #define _gloffset_GenFragmentShadersATI driDispatchRemapTable[GenFragmentShadersATI_remap_index] 2061 #define _gloffset_PassTexCoordATI driDispatchRemapTable[PassTexCoordATI_remap_index] 2062 #define _gloffset_SampleMapATI driDispatchRemapTable[SampleMapATI_remap_index] 2063 #define _gloffset_SetFragmentShaderConstantATI driDispatchRemapTable[SetFragmentShaderConstantATI_remap_index] 2064 #define _gloffset_PointParameteriNV driDispatchRemapTable[PointParameteriNV_remap_index] 2065 #define _gloffset_PointParameterivNV driDispatchRemapTable[PointParameterivNV_remap_index] 2066 #define _gloffset_ActiveStencilFaceEXT driDispatchRemapTable[ActiveStencilFaceEXT_remap_index] 2067 #define _gloffset_BindVertexArrayAPPLE driDispatchRemapTable[BindVertexArrayAPPLE_remap_index] 2068 #define _gloffset_DeleteVertexArraysAPPLE driDispatchRemapTable[DeleteVertexArraysAPPLE_remap_index] 2069 #define _gloffset_GenVertexArraysAPPLE driDispatchRemapTable[GenVertexArraysAPPLE_remap_index] 2070 #define _gloffset_IsVertexArrayAPPLE driDispatchRemapTable[IsVertexArrayAPPLE_remap_index] 2071 #define _gloffset_GetProgramNamedParameterdvNV driDispatchRemapTable[GetProgramNamedParameterdvNV_remap_index] 2072 #define _gloffset_GetProgramNamedParameterfvNV driDispatchRemapTable[GetProgramNamedParameterfvNV_remap_index] 2073 #define _gloffset_ProgramNamedParameter4dNV driDispatchRemapTable[ProgramNamedParameter4dNV_remap_index] 2074 #define _gloffset_ProgramNamedParameter4dvNV driDispatchRemapTable[ProgramNamedParameter4dvNV_remap_index] 2075 #define _gloffset_ProgramNamedParameter4fNV driDispatchRemapTable[ProgramNamedParameter4fNV_remap_index] 2076 #define _gloffset_ProgramNamedParameter4fvNV driDispatchRemapTable[ProgramNamedParameter4fvNV_remap_index] 2077 #define _gloffset_PrimitiveRestartIndexNV driDispatchRemapTable[PrimitiveRestartIndexNV_remap_index] 2078 #define _gloffset_PrimitiveRestartNV driDispatchRemapTable[PrimitiveRestartNV_remap_index] 2079 #define _gloffset_DepthBoundsEXT driDispatchRemapTable[DepthBoundsEXT_remap_index] 2080 #define _gloffset_BlendEquationSeparateEXT driDispatchRemapTable[BlendEquationSeparateEXT_remap_index] 2081 #define _gloffset_BindFramebufferEXT driDispatchRemapTable[BindFramebufferEXT_remap_index] 2082 #define _gloffset_BindRenderbufferEXT driDispatchRemapTable[BindRenderbufferEXT_remap_index] 2083 #define _gloffset_CheckFramebufferStatusEXT driDispatchRemapTable[CheckFramebufferStatusEXT_remap_index] 2084 #define _gloffset_DeleteFramebuffersEXT driDispatchRemapTable[DeleteFramebuffersEXT_remap_index] 2085 #define _gloffset_DeleteRenderbuffersEXT driDispatchRemapTable[DeleteRenderbuffersEXT_remap_index] 2086 #define _gloffset_FramebufferRenderbufferEXT driDispatchRemapTable[FramebufferRenderbufferEXT_remap_index] 2087 #define _gloffset_FramebufferTexture1DEXT driDispatchRemapTable[FramebufferTexture1DEXT_remap_index] 2088 #define _gloffset_FramebufferTexture2DEXT driDispatchRemapTable[FramebufferTexture2DEXT_remap_index] 2089 #define _gloffset_FramebufferTexture3DEXT driDispatchRemapTable[FramebufferTexture3DEXT_remap_index] 2090 #define _gloffset_GenFramebuffersEXT driDispatchRemapTable[GenFramebuffersEXT_remap_index] 2091 #define _gloffset_GenRenderbuffersEXT driDispatchRemapTable[GenRenderbuffersEXT_remap_index] 2092 #define _gloffset_GenerateMipmapEXT driDispatchRemapTable[GenerateMipmapEXT_remap_index] 2093 #define _gloffset_GetFramebufferAttachmentParameterivEXT driDispatchRemapTable[GetFramebufferAttachmentParameterivEXT_remap_index] 2094 #define _gloffset_GetRenderbufferParameterivEXT driDispatchRemapTable[GetRenderbufferParameterivEXT_remap_index] 2095 #define _gloffset_IsFramebufferEXT driDispatchRemapTable[IsFramebufferEXT_remap_index] 2096 #define _gloffset_IsRenderbufferEXT driDispatchRemapTable[IsRenderbufferEXT_remap_index] 2097 #define _gloffset_RenderbufferStorageEXT driDispatchRemapTable[RenderbufferStorageEXT_remap_index] 2098 #define _gloffset_BlitFramebufferEXT driDispatchRemapTable[BlitFramebufferEXT_remap_index] 2099 #define _gloffset_BufferParameteriAPPLE driDispatchRemapTable[BufferParameteriAPPLE_remap_index] 2100 #define _gloffset_FlushMappedBufferRangeAPPLE driDispatchRemapTable[FlushMappedBufferRangeAPPLE_remap_index] 2101 #define _gloffset_BindFragDataLocationEXT driDispatchRemapTable[BindFragDataLocationEXT_remap_index] 2102 #define _gloffset_GetFragDataLocationEXT driDispatchRemapTable[GetFragDataLocationEXT_remap_index] 2103 #define _gloffset_GetUniformuivEXT driDispatchRemapTable[GetUniformuivEXT_remap_index] 2104 #define _gloffset_GetVertexAttribIivEXT driDispatchRemapTable[GetVertexAttribIivEXT_remap_index] 2105 #define _gloffset_GetVertexAttribIuivEXT driDispatchRemapTable[GetVertexAttribIuivEXT_remap_index] 2106 #define _gloffset_Uniform1uiEXT driDispatchRemapTable[Uniform1uiEXT_remap_index] 2107 #define _gloffset_Uniform1uivEXT driDispatchRemapTable[Uniform1uivEXT_remap_index] 2108 #define _gloffset_Uniform2uiEXT driDispatchRemapTable[Uniform2uiEXT_remap_index] 2109 #define _gloffset_Uniform2uivEXT driDispatchRemapTable[Uniform2uivEXT_remap_index] 2110 #define _gloffset_Uniform3uiEXT driDispatchRemapTable[Uniform3uiEXT_remap_index] 2111 #define _gloffset_Uniform3uivEXT driDispatchRemapTable[Uniform3uivEXT_remap_index] 2112 #define _gloffset_Uniform4uiEXT driDispatchRemapTable[Uniform4uiEXT_remap_index] 2113 #define _gloffset_Uniform4uivEXT driDispatchRemapTable[Uniform4uivEXT_remap_index] 2114 #define _gloffset_VertexAttribI1iEXT driDispatchRemapTable[VertexAttribI1iEXT_remap_index] 2115 #define _gloffset_VertexAttribI1ivEXT driDispatchRemapTable[VertexAttribI1ivEXT_remap_index] 2116 #define _gloffset_VertexAttribI1uiEXT driDispatchRemapTable[VertexAttribI1uiEXT_remap_index] 2117 #define _gloffset_VertexAttribI1uivEXT driDispatchRemapTable[VertexAttribI1uivEXT_remap_index] 2118 #define _gloffset_VertexAttribI2iEXT driDispatchRemapTable[VertexAttribI2iEXT_remap_index] 2119 #define _gloffset_VertexAttribI2ivEXT driDispatchRemapTable[VertexAttribI2ivEXT_remap_index] 2120 #define _gloffset_VertexAttribI2uiEXT driDispatchRemapTable[VertexAttribI2uiEXT_remap_index] 2121 #define _gloffset_VertexAttribI2uivEXT driDispatchRemapTable[VertexAttribI2uivEXT_remap_index] 2122 #define _gloffset_VertexAttribI3iEXT driDispatchRemapTable[VertexAttribI3iEXT_remap_index] 2123 #define _gloffset_VertexAttribI3ivEXT driDispatchRemapTable[VertexAttribI3ivEXT_remap_index] 2124 #define _gloffset_VertexAttribI3uiEXT driDispatchRemapTable[VertexAttribI3uiEXT_remap_index] 2125 #define _gloffset_VertexAttribI3uivEXT driDispatchRemapTable[VertexAttribI3uivEXT_remap_index] 2126 #define _gloffset_VertexAttribI4bvEXT driDispatchRemapTable[VertexAttribI4bvEXT_remap_index] 2127 #define _gloffset_VertexAttribI4iEXT driDispatchRemapTable[VertexAttribI4iEXT_remap_index] 2128 #define _gloffset_VertexAttribI4ivEXT driDispatchRemapTable[VertexAttribI4ivEXT_remap_index] 2129 #define _gloffset_VertexAttribI4svEXT driDispatchRemapTable[VertexAttribI4svEXT_remap_index] 2130 #define _gloffset_VertexAttribI4ubvEXT driDispatchRemapTable[VertexAttribI4ubvEXT_remap_index] 2131 #define _gloffset_VertexAttribI4uiEXT driDispatchRemapTable[VertexAttribI4uiEXT_remap_index] 2132 #define _gloffset_VertexAttribI4uivEXT driDispatchRemapTable[VertexAttribI4uivEXT_remap_index] 2133 #define _gloffset_VertexAttribI4usvEXT driDispatchRemapTable[VertexAttribI4usvEXT_remap_index] 2134 #define _gloffset_VertexAttribIPointerEXT driDispatchRemapTable[VertexAttribIPointerEXT_remap_index] 2135 #define _gloffset_FramebufferTextureLayerEXT driDispatchRemapTable[FramebufferTextureLayerEXT_remap_index] 2136 #define _gloffset_ColorMaskIndexedEXT driDispatchRemapTable[ColorMaskIndexedEXT_remap_index] 2137 #define _gloffset_DisableIndexedEXT driDispatchRemapTable[DisableIndexedEXT_remap_index] 2138 #define _gloffset_EnableIndexedEXT driDispatchRemapTable[EnableIndexedEXT_remap_index] 2139 #define _gloffset_GetBooleanIndexedvEXT driDispatchRemapTable[GetBooleanIndexedvEXT_remap_index] 2140 #define _gloffset_GetIntegerIndexedvEXT driDispatchRemapTable[GetIntegerIndexedvEXT_remap_index] 2141 #define _gloffset_IsEnabledIndexedEXT driDispatchRemapTable[IsEnabledIndexedEXT_remap_index] 2142 #define _gloffset_ClearColorIiEXT driDispatchRemapTable[ClearColorIiEXT_remap_index] 2143 #define _gloffset_ClearColorIuiEXT driDispatchRemapTable[ClearColorIuiEXT_remap_index] 2144 #define _gloffset_GetTexParameterIivEXT driDispatchRemapTable[GetTexParameterIivEXT_remap_index] 2145 #define _gloffset_GetTexParameterIuivEXT driDispatchRemapTable[GetTexParameterIuivEXT_remap_index] 2146 #define _gloffset_TexParameterIivEXT driDispatchRemapTable[TexParameterIivEXT_remap_index] 2147 #define _gloffset_TexParameterIuivEXT driDispatchRemapTable[TexParameterIuivEXT_remap_index] 2148 #define _gloffset_BeginConditionalRenderNV driDispatchRemapTable[BeginConditionalRenderNV_remap_index] 2149 #define _gloffset_EndConditionalRenderNV driDispatchRemapTable[EndConditionalRenderNV_remap_index] 2150 #define _gloffset_BeginTransformFeedbackEXT driDispatchRemapTable[BeginTransformFeedbackEXT_remap_index] 2151 #define _gloffset_BindBufferBaseEXT driDispatchRemapTable[BindBufferBaseEXT_remap_index] 2152 #define _gloffset_BindBufferOffsetEXT driDispatchRemapTable[BindBufferOffsetEXT_remap_index] 2153 #define _gloffset_BindBufferRangeEXT driDispatchRemapTable[BindBufferRangeEXT_remap_index] 2154 #define _gloffset_EndTransformFeedbackEXT driDispatchRemapTable[EndTransformFeedbackEXT_remap_index] 2155 #define _gloffset_GetTransformFeedbackVaryingEXT driDispatchRemapTable[GetTransformFeedbackVaryingEXT_remap_index] 2156 #define _gloffset_TransformFeedbackVaryingsEXT driDispatchRemapTable[TransformFeedbackVaryingsEXT_remap_index] 2157 #define _gloffset_ProvokingVertexEXT driDispatchRemapTable[ProvokingVertexEXT_remap_index] 2158 #define _gloffset_GetObjectParameterivAPPLE driDispatchRemapTable[GetObjectParameterivAPPLE_remap_index] 2159 #define _gloffset_ObjectPurgeableAPPLE driDispatchRemapTable[ObjectPurgeableAPPLE_remap_index] 2160 #define _gloffset_ObjectUnpurgeableAPPLE driDispatchRemapTable[ObjectUnpurgeableAPPLE_remap_index] 2161 #define _gloffset_ActiveProgramEXT driDispatchRemapTable[ActiveProgramEXT_remap_index] 2162 #define _gloffset_CreateShaderProgramEXT driDispatchRemapTable[CreateShaderProgramEXT_remap_index] 2163 #define _gloffset_UseShaderProgramEXT driDispatchRemapTable[UseShaderProgramEXT_remap_index] 2164 #define _gloffset_TextureBarrierNV driDispatchRemapTable[TextureBarrierNV_remap_index] 2165 #define _gloffset_StencilFuncSeparateATI driDispatchRemapTable[StencilFuncSeparateATI_remap_index] 2166 #define _gloffset_ProgramEnvParameters4fvEXT driDispatchRemapTable[ProgramEnvParameters4fvEXT_remap_index] 2167 #define _gloffset_ProgramLocalParameters4fvEXT driDispatchRemapTable[ProgramLocalParameters4fvEXT_remap_index] 2168 #define _gloffset_GetQueryObjecti64vEXT driDispatchRemapTable[GetQueryObjecti64vEXT_remap_index] 2169 #define _gloffset_GetQueryObjectui64vEXT driDispatchRemapTable[GetQueryObjectui64vEXT_remap_index] 2170 #define _gloffset_EGLImageTargetRenderbufferStorageOES driDispatchRemapTable[EGLImageTargetRenderbufferStorageOES_remap_index] 2171 #define _gloffset_EGLImageTargetTexture2DOES driDispatchRemapTable[EGLImageTargetTexture2DOES_remap_index] 2172 2173 #endif /* !FEATURE_remap_table */ 2174 2175 typedef void (GLAPIENTRYP _glptr_NewList)(GLuint, GLenum); 2176 #define CALL_NewList(disp, parameters) \ 2177 (* GET_NewList(disp)) parameters 2178 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) { 2179 return (_glptr_NewList) (GET_by_offset(disp, _gloffset_NewList)); 2180 } 2181 2182 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) { 2183 SET_by_offset(disp, _gloffset_NewList, fn); 2184 } 2185 2186 typedef void (GLAPIENTRYP _glptr_EndList)(void); 2187 #define CALL_EndList(disp, parameters) \ 2188 (* GET_EndList(disp)) parameters 2189 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) { 2190 return (_glptr_EndList) (GET_by_offset(disp, _gloffset_EndList)); 2191 } 2192 2193 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 2194 SET_by_offset(disp, _gloffset_EndList, fn); 2195 } 2196 2197 typedef void (GLAPIENTRYP _glptr_CallList)(GLuint); 2198 #define CALL_CallList(disp, parameters) \ 2199 (* GET_CallList(disp)) parameters 2200 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) { 2201 return (_glptr_CallList) (GET_by_offset(disp, _gloffset_CallList)); 2202 } 2203 2204 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 2205 SET_by_offset(disp, _gloffset_CallList, fn); 2206 } 2207 2208 typedef void (GLAPIENTRYP _glptr_CallLists)(GLsizei, GLenum, const GLvoid *); 2209 #define CALL_CallLists(disp, parameters) \ 2210 (* GET_CallLists(disp)) parameters 2211 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) { 2212 return (_glptr_CallLists) (GET_by_offset(disp, _gloffset_CallLists)); 2213 } 2214 2215 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) { 2216 SET_by_offset(disp, _gloffset_CallLists, fn); 2217 } 2218 2219 typedef void (GLAPIENTRYP _glptr_DeleteLists)(GLuint, GLsizei); 2220 #define CALL_DeleteLists(disp, parameters) \ 2221 (* GET_DeleteLists(disp)) parameters 2222 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) { 2223 return (_glptr_DeleteLists) (GET_by_offset(disp, _gloffset_DeleteLists)); 2224 } 2225 2226 static inline void SET_DeleteLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei)) { 2227 SET_by_offset(disp, _gloffset_DeleteLists, fn); 2228 } 2229 2230 typedef GLuint (GLAPIENTRYP _glptr_GenLists)(GLsizei); 2231 #define CALL_GenLists(disp, parameters) \ 2232 (* GET_GenLists(disp)) parameters 2233 static inline _glptr_GenLists GET_GenLists(struct _glapi_table *disp) { 2234 return (_glptr_GenLists) (GET_by_offset(disp, _gloffset_GenLists)); 2235 } 2236 2237 static inline void SET_GenLists(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLsizei)) { 2238 SET_by_offset(disp, _gloffset_GenLists, fn); 2239 } 2240 2241 typedef void (GLAPIENTRYP _glptr_ListBase)(GLuint); 2242 #define CALL_ListBase(disp, parameters) \ 2243 (* GET_ListBase(disp)) parameters 2244 static inline _glptr_ListBase GET_ListBase(struct _glapi_table *disp) { 2245 return (_glptr_ListBase) (GET_by_offset(disp, _gloffset_ListBase)); 2246 } 2247 2248 static inline void SET_ListBase(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 2249 SET_by_offset(disp, _gloffset_ListBase, fn); 2250 } 2251 2252 typedef void (GLAPIENTRYP _glptr_Begin)(GLenum); 2253 #define CALL_Begin(disp, parameters) \ 2254 (* GET_Begin(disp)) parameters 2255 static inline _glptr_Begin GET_Begin(struct _glapi_table *disp) { 2256 return (_glptr_Begin) (GET_by_offset(disp, _gloffset_Begin)); 2257 } 2258 2259 static inline void SET_Begin(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 2260 SET_by_offset(disp, _gloffset_Begin, fn); 2261 } 2262 2263 typedef void (GLAPIENTRYP _glptr_Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *); 2264 #define CALL_Bitmap(disp, parameters) \ 2265 (* GET_Bitmap(disp)) parameters 2266 static inline _glptr_Bitmap GET_Bitmap(struct _glapi_table *disp) { 2267 return (_glptr_Bitmap) (GET_by_offset(disp, _gloffset_Bitmap)); 2268 } 2269 2270 static inline void SET_Bitmap(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *)) { 2271 SET_by_offset(disp, _gloffset_Bitmap, fn); 2272 } 2273 2274 typedef void (GLAPIENTRYP _glptr_Color3b)(GLbyte, GLbyte, GLbyte); 2275 #define CALL_Color3b(disp, parameters) \ 2276 (* GET_Color3b(disp)) parameters 2277 static inline _glptr_Color3b GET_Color3b(struct _glapi_table *disp) { 2278 return (_glptr_Color3b) (GET_by_offset(disp, _gloffset_Color3b)); 2279 } 2280 2281 static inline void SET_Color3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) { 2282 SET_by_offset(disp, _gloffset_Color3b, fn); 2283 } 2284 2285 typedef void (GLAPIENTRYP _glptr_Color3bv)(const GLbyte *); 2286 #define CALL_Color3bv(disp, parameters) \ 2287 (* GET_Color3bv(disp)) parameters 2288 static inline _glptr_Color3bv GET_Color3bv(struct _glapi_table *disp) { 2289 return (_glptr_Color3bv) (GET_by_offset(disp, _gloffset_Color3bv)); 2290 } 2291 2292 static inline void SET_Color3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) { 2293 SET_by_offset(disp, _gloffset_Color3bv, fn); 2294 } 2295 2296 typedef void (GLAPIENTRYP _glptr_Color3d)(GLdouble, GLdouble, GLdouble); 2297 #define CALL_Color3d(disp, parameters) \ 2298 (* GET_Color3d(disp)) parameters 2299 static inline _glptr_Color3d GET_Color3d(struct _glapi_table *disp) { 2300 return (_glptr_Color3d) (GET_by_offset(disp, _gloffset_Color3d)); 2301 } 2302 2303 static inline void SET_Color3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 2304 SET_by_offset(disp, _gloffset_Color3d, fn); 2305 } 2306 2307 typedef void (GLAPIENTRYP _glptr_Color3dv)(const GLdouble *); 2308 #define CALL_Color3dv(disp, parameters) \ 2309 (* GET_Color3dv(disp)) parameters 2310 static inline _glptr_Color3dv GET_Color3dv(struct _glapi_table *disp) { 2311 return (_glptr_Color3dv) (GET_by_offset(disp, _gloffset_Color3dv)); 2312 } 2313 2314 static inline void SET_Color3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 2315 SET_by_offset(disp, _gloffset_Color3dv, fn); 2316 } 2317 2318 typedef void (GLAPIENTRYP _glptr_Color3f)(GLfloat, GLfloat, GLfloat); 2319 #define CALL_Color3f(disp, parameters) \ 2320 (* GET_Color3f(disp)) parameters 2321 static inline _glptr_Color3f GET_Color3f(struct _glapi_table *disp) { 2322 return (_glptr_Color3f) (GET_by_offset(disp, _gloffset_Color3f)); 2323 } 2324 2325 static inline void SET_Color3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 2326 SET_by_offset(disp, _gloffset_Color3f, fn); 2327 } 2328 2329 typedef void (GLAPIENTRYP _glptr_Color3fv)(const GLfloat *); 2330 #define CALL_Color3fv(disp, parameters) \ 2331 (* GET_Color3fv(disp)) parameters 2332 static inline _glptr_Color3fv GET_Color3fv(struct _glapi_table *disp) { 2333 return (_glptr_Color3fv) (GET_by_offset(disp, _gloffset_Color3fv)); 2334 } 2335 2336 static inline void SET_Color3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 2337 SET_by_offset(disp, _gloffset_Color3fv, fn); 2338 } 2339 2340 typedef void (GLAPIENTRYP _glptr_Color3i)(GLint, GLint, GLint); 2341 #define CALL_Color3i(disp, parameters) \ 2342 (* GET_Color3i(disp)) parameters 2343 static inline _glptr_Color3i GET_Color3i(struct _glapi_table *disp) { 2344 return (_glptr_Color3i) (GET_by_offset(disp, _gloffset_Color3i)); 2345 } 2346 2347 static inline void SET_Color3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 2348 SET_by_offset(disp, _gloffset_Color3i, fn); 2349 } 2350 2351 typedef void (GLAPIENTRYP _glptr_Color3iv)(const GLint *); 2352 #define CALL_Color3iv(disp, parameters) \ 2353 (* GET_Color3iv(disp)) parameters 2354 static inline _glptr_Color3iv GET_Color3iv(struct _glapi_table *disp) { 2355 return (_glptr_Color3iv) (GET_by_offset(disp, _gloffset_Color3iv)); 2356 } 2357 2358 static inline void SET_Color3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 2359 SET_by_offset(disp, _gloffset_Color3iv, fn); 2360 } 2361 2362 typedef void (GLAPIENTRYP _glptr_Color3s)(GLshort, GLshort, GLshort); 2363 #define CALL_Color3s(disp, parameters) \ 2364 (* GET_Color3s(disp)) parameters 2365 static inline _glptr_Color3s GET_Color3s(struct _glapi_table *disp) { 2366 return (_glptr_Color3s) (GET_by_offset(disp, _gloffset_Color3s)); 2367 } 2368 2369 static inline void SET_Color3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 2370 SET_by_offset(disp, _gloffset_Color3s, fn); 2371 } 2372 2373 typedef void (GLAPIENTRYP _glptr_Color3sv)(const GLshort *); 2374 #define CALL_Color3sv(disp, parameters) \ 2375 (* GET_Color3sv(disp)) parameters 2376 static inline _glptr_Color3sv GET_Color3sv(struct _glapi_table *disp) { 2377 return (_glptr_Color3sv) (GET_by_offset(disp, _gloffset_Color3sv)); 2378 } 2379 2380 static inline void SET_Color3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 2381 SET_by_offset(disp, _gloffset_Color3sv, fn); 2382 } 2383 2384 typedef void (GLAPIENTRYP _glptr_Color3ub)(GLubyte, GLubyte, GLubyte); 2385 #define CALL_Color3ub(disp, parameters) \ 2386 (* GET_Color3ub(disp)) parameters 2387 static inline _glptr_Color3ub GET_Color3ub(struct _glapi_table *disp) { 2388 return (_glptr_Color3ub) (GET_by_offset(disp, _gloffset_Color3ub)); 2389 } 2390 2391 static inline void SET_Color3ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) { 2392 SET_by_offset(disp, _gloffset_Color3ub, fn); 2393 } 2394 2395 typedef void (GLAPIENTRYP _glptr_Color3ubv)(const GLubyte *); 2396 #define CALL_Color3ubv(disp, parameters) \ 2397 (* GET_Color3ubv(disp)) parameters 2398 static inline _glptr_Color3ubv GET_Color3ubv(struct _glapi_table *disp) { 2399 return (_glptr_Color3ubv) (GET_by_offset(disp, _gloffset_Color3ubv)); 2400 } 2401 2402 static inline void SET_Color3ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) { 2403 SET_by_offset(disp, _gloffset_Color3ubv, fn); 2404 } 2405 2406 typedef void (GLAPIENTRYP _glptr_Color3ui)(GLuint, GLuint, GLuint); 2407 #define CALL_Color3ui(disp, parameters) \ 2408 (* GET_Color3ui(disp)) parameters 2409 static inline _glptr_Color3ui GET_Color3ui(struct _glapi_table *disp) { 2410 return (_glptr_Color3ui) (GET_by_offset(disp, _gloffset_Color3ui)); 2411 } 2412 2413 static inline void SET_Color3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) { 2414 SET_by_offset(disp, _gloffset_Color3ui, fn); 2415 } 2416 2417 typedef void (GLAPIENTRYP _glptr_Color3uiv)(const GLuint *); 2418 #define CALL_Color3uiv(disp, parameters) \ 2419 (* GET_Color3uiv(disp)) parameters 2420 static inline _glptr_Color3uiv GET_Color3uiv(struct _glapi_table *disp) { 2421 return (_glptr_Color3uiv) (GET_by_offset(disp, _gloffset_Color3uiv)); 2422 } 2423 2424 static inline void SET_Color3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) { 2425 SET_by_offset(disp, _gloffset_Color3uiv, fn); 2426 } 2427 2428 typedef void (GLAPIENTRYP _glptr_Color3us)(GLushort, GLushort, GLushort); 2429 #define CALL_Color3us(disp, parameters) \ 2430 (* GET_Color3us(disp)) parameters 2431 static inline _glptr_Color3us GET_Color3us(struct _glapi_table *disp) { 2432 return (_glptr_Color3us) (GET_by_offset(disp, _gloffset_Color3us)); 2433 } 2434 2435 static inline void SET_Color3us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) { 2436 SET_by_offset(disp, _gloffset_Color3us, fn); 2437 } 2438 2439 typedef void (GLAPIENTRYP _glptr_Color3usv)(const GLushort *); 2440 #define CALL_Color3usv(disp, parameters) \ 2441 (* GET_Color3usv(disp)) parameters 2442 static inline _glptr_Color3usv GET_Color3usv(struct _glapi_table *disp) { 2443 return (_glptr_Color3usv) (GET_by_offset(disp, _gloffset_Color3usv)); 2444 } 2445 2446 static inline void SET_Color3usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) { 2447 SET_by_offset(disp, _gloffset_Color3usv, fn); 2448 } 2449 2450 typedef void (GLAPIENTRYP _glptr_Color4b)(GLbyte, GLbyte, GLbyte, GLbyte); 2451 #define CALL_Color4b(disp, parameters) \ 2452 (* GET_Color4b(disp)) parameters 2453 static inline _glptr_Color4b GET_Color4b(struct _glapi_table *disp) { 2454 return (_glptr_Color4b) (GET_by_offset(disp, _gloffset_Color4b)); 2455 } 2456 2457 static inline void SET_Color4b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte, GLbyte)) { 2458 SET_by_offset(disp, _gloffset_Color4b, fn); 2459 } 2460 2461 typedef void (GLAPIENTRYP _glptr_Color4bv)(const GLbyte *); 2462 #define CALL_Color4bv(disp, parameters) \ 2463 (* GET_Color4bv(disp)) parameters 2464 static inline _glptr_Color4bv GET_Color4bv(struct _glapi_table *disp) { 2465 return (_glptr_Color4bv) (GET_by_offset(disp, _gloffset_Color4bv)); 2466 } 2467 2468 static inline void SET_Color4bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) { 2469 SET_by_offset(disp, _gloffset_Color4bv, fn); 2470 } 2471 2472 typedef void (GLAPIENTRYP _glptr_Color4d)(GLdouble, GLdouble, GLdouble, GLdouble); 2473 #define CALL_Color4d(disp, parameters) \ 2474 (* GET_Color4d(disp)) parameters 2475 static inline _glptr_Color4d GET_Color4d(struct _glapi_table *disp) { 2476 return (_glptr_Color4d) (GET_by_offset(disp, _gloffset_Color4d)); 2477 } 2478 2479 static inline void SET_Color4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 2480 SET_by_offset(disp, _gloffset_Color4d, fn); 2481 } 2482 2483 typedef void (GLAPIENTRYP _glptr_Color4dv)(const GLdouble *); 2484 #define CALL_Color4dv(disp, parameters) \ 2485 (* GET_Color4dv(disp)) parameters 2486 static inline _glptr_Color4dv GET_Color4dv(struct _glapi_table *disp) { 2487 return (_glptr_Color4dv) (GET_by_offset(disp, _gloffset_Color4dv)); 2488 } 2489 2490 static inline void SET_Color4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 2491 SET_by_offset(disp, _gloffset_Color4dv, fn); 2492 } 2493 2494 typedef void (GLAPIENTRYP _glptr_Color4f)(GLfloat, GLfloat, GLfloat, GLfloat); 2495 #define CALL_Color4f(disp, parameters) \ 2496 (* GET_Color4f(disp)) parameters 2497 static inline _glptr_Color4f GET_Color4f(struct _glapi_table *disp) { 2498 return (_glptr_Color4f) (GET_by_offset(disp, _gloffset_Color4f)); 2499 } 2500 2501 static inline void SET_Color4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 2502 SET_by_offset(disp, _gloffset_Color4f, fn); 2503 } 2504 2505 typedef void (GLAPIENTRYP _glptr_Color4fv)(const GLfloat *); 2506 #define CALL_Color4fv(disp, parameters) \ 2507 (* GET_Color4fv(disp)) parameters 2508 static inline _glptr_Color4fv GET_Color4fv(struct _glapi_table *disp) { 2509 return (_glptr_Color4fv) (GET_by_offset(disp, _gloffset_Color4fv)); 2510 } 2511 2512 static inline void SET_Color4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 2513 SET_by_offset(disp, _gloffset_Color4fv, fn); 2514 } 2515 2516 typedef void (GLAPIENTRYP _glptr_Color4i)(GLint, GLint, GLint, GLint); 2517 #define CALL_Color4i(disp, parameters) \ 2518 (* GET_Color4i(disp)) parameters 2519 static inline _glptr_Color4i GET_Color4i(struct _glapi_table *disp) { 2520 return (_glptr_Color4i) (GET_by_offset(disp, _gloffset_Color4i)); 2521 } 2522 2523 static inline void SET_Color4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 2524 SET_by_offset(disp, _gloffset_Color4i, fn); 2525 } 2526 2527 typedef void (GLAPIENTRYP _glptr_Color4iv)(const GLint *); 2528 #define CALL_Color4iv(disp, parameters) \ 2529 (* GET_Color4iv(disp)) parameters 2530 static inline _glptr_Color4iv GET_Color4iv(struct _glapi_table *disp) { 2531 return (_glptr_Color4iv) (GET_by_offset(disp, _gloffset_Color4iv)); 2532 } 2533 2534 static inline void SET_Color4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 2535 SET_by_offset(disp, _gloffset_Color4iv, fn); 2536 } 2537 2538 typedef void (GLAPIENTRYP _glptr_Color4s)(GLshort, GLshort, GLshort, GLshort); 2539 #define CALL_Color4s(disp, parameters) \ 2540 (* GET_Color4s(disp)) parameters 2541 static inline _glptr_Color4s GET_Color4s(struct _glapi_table *disp) { 2542 return (_glptr_Color4s) (GET_by_offset(disp, _gloffset_Color4s)); 2543 } 2544 2545 static inline void SET_Color4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) { 2546 SET_by_offset(disp, _gloffset_Color4s, fn); 2547 } 2548 2549 typedef void (GLAPIENTRYP _glptr_Color4sv)(const GLshort *); 2550 #define CALL_Color4sv(disp, parameters) \ 2551 (* GET_Color4sv(disp)) parameters 2552 static inline _glptr_Color4sv GET_Color4sv(struct _glapi_table *disp) { 2553 return (_glptr_Color4sv) (GET_by_offset(disp, _gloffset_Color4sv)); 2554 } 2555 2556 static inline void SET_Color4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 2557 SET_by_offset(disp, _gloffset_Color4sv, fn); 2558 } 2559 2560 typedef void (GLAPIENTRYP _glptr_Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte); 2561 #define CALL_Color4ub(disp, parameters) \ 2562 (* GET_Color4ub(disp)) parameters 2563 static inline _glptr_Color4ub GET_Color4ub(struct _glapi_table *disp) { 2564 return (_glptr_Color4ub) (GET_by_offset(disp, _gloffset_Color4ub)); 2565 } 2566 2567 static inline void SET_Color4ub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte, GLubyte)) { 2568 SET_by_offset(disp, _gloffset_Color4ub, fn); 2569 } 2570 2571 typedef void (GLAPIENTRYP _glptr_Color4ubv)(const GLubyte *); 2572 #define CALL_Color4ubv(disp, parameters) \ 2573 (* GET_Color4ubv(disp)) parameters 2574 static inline _glptr_Color4ubv GET_Color4ubv(struct _glapi_table *disp) { 2575 return (_glptr_Color4ubv) (GET_by_offset(disp, _gloffset_Color4ubv)); 2576 } 2577 2578 static inline void SET_Color4ubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) { 2579 SET_by_offset(disp, _gloffset_Color4ubv, fn); 2580 } 2581 2582 typedef void (GLAPIENTRYP _glptr_Color4ui)(GLuint, GLuint, GLuint, GLuint); 2583 #define CALL_Color4ui(disp, parameters) \ 2584 (* GET_Color4ui(disp)) parameters 2585 static inline _glptr_Color4ui GET_Color4ui(struct _glapi_table *disp) { 2586 return (_glptr_Color4ui) (GET_by_offset(disp, _gloffset_Color4ui)); 2587 } 2588 2589 static inline void SET_Color4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) { 2590 SET_by_offset(disp, _gloffset_Color4ui, fn); 2591 } 2592 2593 typedef void (GLAPIENTRYP _glptr_Color4uiv)(const GLuint *); 2594 #define CALL_Color4uiv(disp, parameters) \ 2595 (* GET_Color4uiv(disp)) parameters 2596 static inline _glptr_Color4uiv GET_Color4uiv(struct _glapi_table *disp) { 2597 return (_glptr_Color4uiv) (GET_by_offset(disp, _gloffset_Color4uiv)); 2598 } 2599 2600 static inline void SET_Color4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) { 2601 SET_by_offset(disp, _gloffset_Color4uiv, fn); 2602 } 2603 2604 typedef void (GLAPIENTRYP _glptr_Color4us)(GLushort, GLushort, GLushort, GLushort); 2605 #define CALL_Color4us(disp, parameters) \ 2606 (* GET_Color4us(disp)) parameters 2607 static inline _glptr_Color4us GET_Color4us(struct _glapi_table *disp) { 2608 return (_glptr_Color4us) (GET_by_offset(disp, _gloffset_Color4us)); 2609 } 2610 2611 static inline void SET_Color4us(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort, GLushort)) { 2612 SET_by_offset(disp, _gloffset_Color4us, fn); 2613 } 2614 2615 typedef void (GLAPIENTRYP _glptr_Color4usv)(const GLushort *); 2616 #define CALL_Color4usv(disp, parameters) \ 2617 (* GET_Color4usv(disp)) parameters 2618 static inline _glptr_Color4usv GET_Color4usv(struct _glapi_table *disp) { 2619 return (_glptr_Color4usv) (GET_by_offset(disp, _gloffset_Color4usv)); 2620 } 2621 2622 static inline void SET_Color4usv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) { 2623 SET_by_offset(disp, _gloffset_Color4usv, fn); 2624 } 2625 2626 typedef void (GLAPIENTRYP _glptr_EdgeFlag)(GLboolean); 2627 #define CALL_EdgeFlag(disp, parameters) \ 2628 (* GET_EdgeFlag(disp)) parameters 2629 static inline _glptr_EdgeFlag GET_EdgeFlag(struct _glapi_table *disp) { 2630 return (_glptr_EdgeFlag) (GET_by_offset(disp, _gloffset_EdgeFlag)); 2631 } 2632 2633 static inline void SET_EdgeFlag(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) { 2634 SET_by_offset(disp, _gloffset_EdgeFlag, fn); 2635 } 2636 2637 typedef void (GLAPIENTRYP _glptr_EdgeFlagv)(const GLboolean *); 2638 #define CALL_EdgeFlagv(disp, parameters) \ 2639 (* GET_EdgeFlagv(disp)) parameters 2640 static inline _glptr_EdgeFlagv GET_EdgeFlagv(struct _glapi_table *disp) { 2641 return (_glptr_EdgeFlagv) (GET_by_offset(disp, _gloffset_EdgeFlagv)); 2642 } 2643 2644 static inline void SET_EdgeFlagv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLboolean *)) { 2645 SET_by_offset(disp, _gloffset_EdgeFlagv, fn); 2646 } 2647 2648 typedef void (GLAPIENTRYP _glptr_End)(void); 2649 #define CALL_End(disp, parameters) \ 2650 (* GET_End(disp)) parameters 2651 static inline _glptr_End GET_End(struct _glapi_table *disp) { 2652 return (_glptr_End) (GET_by_offset(disp, _gloffset_End)); 2653 } 2654 2655 static inline void SET_End(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 2656 SET_by_offset(disp, _gloffset_End, fn); 2657 } 2658 2659 typedef void (GLAPIENTRYP _glptr_Indexd)(GLdouble); 2660 #define CALL_Indexd(disp, parameters) \ 2661 (* GET_Indexd(disp)) parameters 2662 static inline _glptr_Indexd GET_Indexd(struct _glapi_table *disp) { 2663 return (_glptr_Indexd) (GET_by_offset(disp, _gloffset_Indexd)); 2664 } 2665 2666 static inline void SET_Indexd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) { 2667 SET_by_offset(disp, _gloffset_Indexd, fn); 2668 } 2669 2670 typedef void (GLAPIENTRYP _glptr_Indexdv)(const GLdouble *); 2671 #define CALL_Indexdv(disp, parameters) \ 2672 (* GET_Indexdv(disp)) parameters 2673 static inline _glptr_Indexdv GET_Indexdv(struct _glapi_table *disp) { 2674 return (_glptr_Indexdv) (GET_by_offset(disp, _gloffset_Indexdv)); 2675 } 2676 2677 static inline void SET_Indexdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 2678 SET_by_offset(disp, _gloffset_Indexdv, fn); 2679 } 2680 2681 typedef void (GLAPIENTRYP _glptr_Indexf)(GLfloat); 2682 #define CALL_Indexf(disp, parameters) \ 2683 (* GET_Indexf(disp)) parameters 2684 static inline _glptr_Indexf GET_Indexf(struct _glapi_table *disp) { 2685 return (_glptr_Indexf) (GET_by_offset(disp, _gloffset_Indexf)); 2686 } 2687 2688 static inline void SET_Indexf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 2689 SET_by_offset(disp, _gloffset_Indexf, fn); 2690 } 2691 2692 typedef void (GLAPIENTRYP _glptr_Indexfv)(const GLfloat *); 2693 #define CALL_Indexfv(disp, parameters) \ 2694 (* GET_Indexfv(disp)) parameters 2695 static inline _glptr_Indexfv GET_Indexfv(struct _glapi_table *disp) { 2696 return (_glptr_Indexfv) (GET_by_offset(disp, _gloffset_Indexfv)); 2697 } 2698 2699 static inline void SET_Indexfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 2700 SET_by_offset(disp, _gloffset_Indexfv, fn); 2701 } 2702 2703 typedef void (GLAPIENTRYP _glptr_Indexi)(GLint); 2704 #define CALL_Indexi(disp, parameters) \ 2705 (* GET_Indexi(disp)) parameters 2706 static inline _glptr_Indexi GET_Indexi(struct _glapi_table *disp) { 2707 return (_glptr_Indexi) (GET_by_offset(disp, _gloffset_Indexi)); 2708 } 2709 2710 static inline void SET_Indexi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) { 2711 SET_by_offset(disp, _gloffset_Indexi, fn); 2712 } 2713 2714 typedef void (GLAPIENTRYP _glptr_Indexiv)(const GLint *); 2715 #define CALL_Indexiv(disp, parameters) \ 2716 (* GET_Indexiv(disp)) parameters 2717 static inline _glptr_Indexiv GET_Indexiv(struct _glapi_table *disp) { 2718 return (_glptr_Indexiv) (GET_by_offset(disp, _gloffset_Indexiv)); 2719 } 2720 2721 static inline void SET_Indexiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 2722 SET_by_offset(disp, _gloffset_Indexiv, fn); 2723 } 2724 2725 typedef void (GLAPIENTRYP _glptr_Indexs)(GLshort); 2726 #define CALL_Indexs(disp, parameters) \ 2727 (* GET_Indexs(disp)) parameters 2728 static inline _glptr_Indexs GET_Indexs(struct _glapi_table *disp) { 2729 return (_glptr_Indexs) (GET_by_offset(disp, _gloffset_Indexs)); 2730 } 2731 2732 static inline void SET_Indexs(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) { 2733 SET_by_offset(disp, _gloffset_Indexs, fn); 2734 } 2735 2736 typedef void (GLAPIENTRYP _glptr_Indexsv)(const GLshort *); 2737 #define CALL_Indexsv(disp, parameters) \ 2738 (* GET_Indexsv(disp)) parameters 2739 static inline _glptr_Indexsv GET_Indexsv(struct _glapi_table *disp) { 2740 return (_glptr_Indexsv) (GET_by_offset(disp, _gloffset_Indexsv)); 2741 } 2742 2743 static inline void SET_Indexsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 2744 SET_by_offset(disp, _gloffset_Indexsv, fn); 2745 } 2746 2747 typedef void (GLAPIENTRYP _glptr_Normal3b)(GLbyte, GLbyte, GLbyte); 2748 #define CALL_Normal3b(disp, parameters) \ 2749 (* GET_Normal3b(disp)) parameters 2750 static inline _glptr_Normal3b GET_Normal3b(struct _glapi_table *disp) { 2751 return (_glptr_Normal3b) (GET_by_offset(disp, _gloffset_Normal3b)); 2752 } 2753 2754 static inline void SET_Normal3b(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) { 2755 SET_by_offset(disp, _gloffset_Normal3b, fn); 2756 } 2757 2758 typedef void (GLAPIENTRYP _glptr_Normal3bv)(const GLbyte *); 2759 #define CALL_Normal3bv(disp, parameters) \ 2760 (* GET_Normal3bv(disp)) parameters 2761 static inline _glptr_Normal3bv GET_Normal3bv(struct _glapi_table *disp) { 2762 return (_glptr_Normal3bv) (GET_by_offset(disp, _gloffset_Normal3bv)); 2763 } 2764 2765 static inline void SET_Normal3bv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) { 2766 SET_by_offset(disp, _gloffset_Normal3bv, fn); 2767 } 2768 2769 typedef void (GLAPIENTRYP _glptr_Normal3d)(GLdouble, GLdouble, GLdouble); 2770 #define CALL_Normal3d(disp, parameters) \ 2771 (* GET_Normal3d(disp)) parameters 2772 static inline _glptr_Normal3d GET_Normal3d(struct _glapi_table *disp) { 2773 return (_glptr_Normal3d) (GET_by_offset(disp, _gloffset_Normal3d)); 2774 } 2775 2776 static inline void SET_Normal3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 2777 SET_by_offset(disp, _gloffset_Normal3d, fn); 2778 } 2779 2780 typedef void (GLAPIENTRYP _glptr_Normal3dv)(const GLdouble *); 2781 #define CALL_Normal3dv(disp, parameters) \ 2782 (* GET_Normal3dv(disp)) parameters 2783 static inline _glptr_Normal3dv GET_Normal3dv(struct _glapi_table *disp) { 2784 return (_glptr_Normal3dv) (GET_by_offset(disp, _gloffset_Normal3dv)); 2785 } 2786 2787 static inline void SET_Normal3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 2788 SET_by_offset(disp, _gloffset_Normal3dv, fn); 2789 } 2790 2791 typedef void (GLAPIENTRYP _glptr_Normal3f)(GLfloat, GLfloat, GLfloat); 2792 #define CALL_Normal3f(disp, parameters) \ 2793 (* GET_Normal3f(disp)) parameters 2794 static inline _glptr_Normal3f GET_Normal3f(struct _glapi_table *disp) { 2795 return (_glptr_Normal3f) (GET_by_offset(disp, _gloffset_Normal3f)); 2796 } 2797 2798 static inline void SET_Normal3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 2799 SET_by_offset(disp, _gloffset_Normal3f, fn); 2800 } 2801 2802 typedef void (GLAPIENTRYP _glptr_Normal3fv)(const GLfloat *); 2803 #define CALL_Normal3fv(disp, parameters) \ 2804 (* GET_Normal3fv(disp)) parameters 2805 static inline _glptr_Normal3fv GET_Normal3fv(struct _glapi_table *disp) { 2806 return (_glptr_Normal3fv) (GET_by_offset(disp, _gloffset_Normal3fv)); 2807 } 2808 2809 static inline void SET_Normal3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 2810 SET_by_offset(disp, _gloffset_Normal3fv, fn); 2811 } 2812 2813 typedef void (GLAPIENTRYP _glptr_Normal3i)(GLint, GLint, GLint); 2814 #define CALL_Normal3i(disp, parameters) \ 2815 (* GET_Normal3i(disp)) parameters 2816 static inline _glptr_Normal3i GET_Normal3i(struct _glapi_table *disp) { 2817 return (_glptr_Normal3i) (GET_by_offset(disp, _gloffset_Normal3i)); 2818 } 2819 2820 static inline void SET_Normal3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 2821 SET_by_offset(disp, _gloffset_Normal3i, fn); 2822 } 2823 2824 typedef void (GLAPIENTRYP _glptr_Normal3iv)(const GLint *); 2825 #define CALL_Normal3iv(disp, parameters) \ 2826 (* GET_Normal3iv(disp)) parameters 2827 static inline _glptr_Normal3iv GET_Normal3iv(struct _glapi_table *disp) { 2828 return (_glptr_Normal3iv) (GET_by_offset(disp, _gloffset_Normal3iv)); 2829 } 2830 2831 static inline void SET_Normal3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 2832 SET_by_offset(disp, _gloffset_Normal3iv, fn); 2833 } 2834 2835 typedef void (GLAPIENTRYP _glptr_Normal3s)(GLshort, GLshort, GLshort); 2836 #define CALL_Normal3s(disp, parameters) \ 2837 (* GET_Normal3s(disp)) parameters 2838 static inline _glptr_Normal3s GET_Normal3s(struct _glapi_table *disp) { 2839 return (_glptr_Normal3s) (GET_by_offset(disp, _gloffset_Normal3s)); 2840 } 2841 2842 static inline void SET_Normal3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 2843 SET_by_offset(disp, _gloffset_Normal3s, fn); 2844 } 2845 2846 typedef void (GLAPIENTRYP _glptr_Normal3sv)(const GLshort *); 2847 #define CALL_Normal3sv(disp, parameters) \ 2848 (* GET_Normal3sv(disp)) parameters 2849 static inline _glptr_Normal3sv GET_Normal3sv(struct _glapi_table *disp) { 2850 return (_glptr_Normal3sv) (GET_by_offset(disp, _gloffset_Normal3sv)); 2851 } 2852 2853 static inline void SET_Normal3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 2854 SET_by_offset(disp, _gloffset_Normal3sv, fn); 2855 } 2856 2857 typedef void (GLAPIENTRYP _glptr_RasterPos2d)(GLdouble, GLdouble); 2858 #define CALL_RasterPos2d(disp, parameters) \ 2859 (* GET_RasterPos2d(disp)) parameters 2860 static inline _glptr_RasterPos2d GET_RasterPos2d(struct _glapi_table *disp) { 2861 return (_glptr_RasterPos2d) (GET_by_offset(disp, _gloffset_RasterPos2d)); 2862 } 2863 2864 static inline void SET_RasterPos2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) { 2865 SET_by_offset(disp, _gloffset_RasterPos2d, fn); 2866 } 2867 2868 typedef void (GLAPIENTRYP _glptr_RasterPos2dv)(const GLdouble *); 2869 #define CALL_RasterPos2dv(disp, parameters) \ 2870 (* GET_RasterPos2dv(disp)) parameters 2871 static inline _glptr_RasterPos2dv GET_RasterPos2dv(struct _glapi_table *disp) { 2872 return (_glptr_RasterPos2dv) (GET_by_offset(disp, _gloffset_RasterPos2dv)); 2873 } 2874 2875 static inline void SET_RasterPos2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 2876 SET_by_offset(disp, _gloffset_RasterPos2dv, fn); 2877 } 2878 2879 typedef void (GLAPIENTRYP _glptr_RasterPos2f)(GLfloat, GLfloat); 2880 #define CALL_RasterPos2f(disp, parameters) \ 2881 (* GET_RasterPos2f(disp)) parameters 2882 static inline _glptr_RasterPos2f GET_RasterPos2f(struct _glapi_table *disp) { 2883 return (_glptr_RasterPos2f) (GET_by_offset(disp, _gloffset_RasterPos2f)); 2884 } 2885 2886 static inline void SET_RasterPos2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 2887 SET_by_offset(disp, _gloffset_RasterPos2f, fn); 2888 } 2889 2890 typedef void (GLAPIENTRYP _glptr_RasterPos2fv)(const GLfloat *); 2891 #define CALL_RasterPos2fv(disp, parameters) \ 2892 (* GET_RasterPos2fv(disp)) parameters 2893 static inline _glptr_RasterPos2fv GET_RasterPos2fv(struct _glapi_table *disp) { 2894 return (_glptr_RasterPos2fv) (GET_by_offset(disp, _gloffset_RasterPos2fv)); 2895 } 2896 2897 static inline void SET_RasterPos2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 2898 SET_by_offset(disp, _gloffset_RasterPos2fv, fn); 2899 } 2900 2901 typedef void (GLAPIENTRYP _glptr_RasterPos2i)(GLint, GLint); 2902 #define CALL_RasterPos2i(disp, parameters) \ 2903 (* GET_RasterPos2i(disp)) parameters 2904 static inline _glptr_RasterPos2i GET_RasterPos2i(struct _glapi_table *disp) { 2905 return (_glptr_RasterPos2i) (GET_by_offset(disp, _gloffset_RasterPos2i)); 2906 } 2907 2908 static inline void SET_RasterPos2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) { 2909 SET_by_offset(disp, _gloffset_RasterPos2i, fn); 2910 } 2911 2912 typedef void (GLAPIENTRYP _glptr_RasterPos2iv)(const GLint *); 2913 #define CALL_RasterPos2iv(disp, parameters) \ 2914 (* GET_RasterPos2iv(disp)) parameters 2915 static inline _glptr_RasterPos2iv GET_RasterPos2iv(struct _glapi_table *disp) { 2916 return (_glptr_RasterPos2iv) (GET_by_offset(disp, _gloffset_RasterPos2iv)); 2917 } 2918 2919 static inline void SET_RasterPos2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 2920 SET_by_offset(disp, _gloffset_RasterPos2iv, fn); 2921 } 2922 2923 typedef void (GLAPIENTRYP _glptr_RasterPos2s)(GLshort, GLshort); 2924 #define CALL_RasterPos2s(disp, parameters) \ 2925 (* GET_RasterPos2s(disp)) parameters 2926 static inline _glptr_RasterPos2s GET_RasterPos2s(struct _glapi_table *disp) { 2927 return (_glptr_RasterPos2s) (GET_by_offset(disp, _gloffset_RasterPos2s)); 2928 } 2929 2930 static inline void SET_RasterPos2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) { 2931 SET_by_offset(disp, _gloffset_RasterPos2s, fn); 2932 } 2933 2934 typedef void (GLAPIENTRYP _glptr_RasterPos2sv)(const GLshort *); 2935 #define CALL_RasterPos2sv(disp, parameters) \ 2936 (* GET_RasterPos2sv(disp)) parameters 2937 static inline _glptr_RasterPos2sv GET_RasterPos2sv(struct _glapi_table *disp) { 2938 return (_glptr_RasterPos2sv) (GET_by_offset(disp, _gloffset_RasterPos2sv)); 2939 } 2940 2941 static inline void SET_RasterPos2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 2942 SET_by_offset(disp, _gloffset_RasterPos2sv, fn); 2943 } 2944 2945 typedef void (GLAPIENTRYP _glptr_RasterPos3d)(GLdouble, GLdouble, GLdouble); 2946 #define CALL_RasterPos3d(disp, parameters) \ 2947 (* GET_RasterPos3d(disp)) parameters 2948 static inline _glptr_RasterPos3d GET_RasterPos3d(struct _glapi_table *disp) { 2949 return (_glptr_RasterPos3d) (GET_by_offset(disp, _gloffset_RasterPos3d)); 2950 } 2951 2952 static inline void SET_RasterPos3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 2953 SET_by_offset(disp, _gloffset_RasterPos3d, fn); 2954 } 2955 2956 typedef void (GLAPIENTRYP _glptr_RasterPos3dv)(const GLdouble *); 2957 #define CALL_RasterPos3dv(disp, parameters) \ 2958 (* GET_RasterPos3dv(disp)) parameters 2959 static inline _glptr_RasterPos3dv GET_RasterPos3dv(struct _glapi_table *disp) { 2960 return (_glptr_RasterPos3dv) (GET_by_offset(disp, _gloffset_RasterPos3dv)); 2961 } 2962 2963 static inline void SET_RasterPos3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 2964 SET_by_offset(disp, _gloffset_RasterPos3dv, fn); 2965 } 2966 2967 typedef void (GLAPIENTRYP _glptr_RasterPos3f)(GLfloat, GLfloat, GLfloat); 2968 #define CALL_RasterPos3f(disp, parameters) \ 2969 (* GET_RasterPos3f(disp)) parameters 2970 static inline _glptr_RasterPos3f GET_RasterPos3f(struct _glapi_table *disp) { 2971 return (_glptr_RasterPos3f) (GET_by_offset(disp, _gloffset_RasterPos3f)); 2972 } 2973 2974 static inline void SET_RasterPos3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 2975 SET_by_offset(disp, _gloffset_RasterPos3f, fn); 2976 } 2977 2978 typedef void (GLAPIENTRYP _glptr_RasterPos3fv)(const GLfloat *); 2979 #define CALL_RasterPos3fv(disp, parameters) \ 2980 (* GET_RasterPos3fv(disp)) parameters 2981 static inline _glptr_RasterPos3fv GET_RasterPos3fv(struct _glapi_table *disp) { 2982 return (_glptr_RasterPos3fv) (GET_by_offset(disp, _gloffset_RasterPos3fv)); 2983 } 2984 2985 static inline void SET_RasterPos3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 2986 SET_by_offset(disp, _gloffset_RasterPos3fv, fn); 2987 } 2988 2989 typedef void (GLAPIENTRYP _glptr_RasterPos3i)(GLint, GLint, GLint); 2990 #define CALL_RasterPos3i(disp, parameters) \ 2991 (* GET_RasterPos3i(disp)) parameters 2992 static inline _glptr_RasterPos3i GET_RasterPos3i(struct _glapi_table *disp) { 2993 return (_glptr_RasterPos3i) (GET_by_offset(disp, _gloffset_RasterPos3i)); 2994 } 2995 2996 static inline void SET_RasterPos3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 2997 SET_by_offset(disp, _gloffset_RasterPos3i, fn); 2998 } 2999 3000 typedef void (GLAPIENTRYP _glptr_RasterPos3iv)(const GLint *); 3001 #define CALL_RasterPos3iv(disp, parameters) \ 3002 (* GET_RasterPos3iv(disp)) parameters 3003 static inline _glptr_RasterPos3iv GET_RasterPos3iv(struct _glapi_table *disp) { 3004 return (_glptr_RasterPos3iv) (GET_by_offset(disp, _gloffset_RasterPos3iv)); 3005 } 3006 3007 static inline void SET_RasterPos3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3008 SET_by_offset(disp, _gloffset_RasterPos3iv, fn); 3009 } 3010 3011 typedef void (GLAPIENTRYP _glptr_RasterPos3s)(GLshort, GLshort, GLshort); 3012 #define CALL_RasterPos3s(disp, parameters) \ 3013 (* GET_RasterPos3s(disp)) parameters 3014 static inline _glptr_RasterPos3s GET_RasterPos3s(struct _glapi_table *disp) { 3015 return (_glptr_RasterPos3s) (GET_by_offset(disp, _gloffset_RasterPos3s)); 3016 } 3017 3018 static inline void SET_RasterPos3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 3019 SET_by_offset(disp, _gloffset_RasterPos3s, fn); 3020 } 3021 3022 typedef void (GLAPIENTRYP _glptr_RasterPos3sv)(const GLshort *); 3023 #define CALL_RasterPos3sv(disp, parameters) \ 3024 (* GET_RasterPos3sv(disp)) parameters 3025 static inline _glptr_RasterPos3sv GET_RasterPos3sv(struct _glapi_table *disp) { 3026 return (_glptr_RasterPos3sv) (GET_by_offset(disp, _gloffset_RasterPos3sv)); 3027 } 3028 3029 static inline void SET_RasterPos3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3030 SET_by_offset(disp, _gloffset_RasterPos3sv, fn); 3031 } 3032 3033 typedef void (GLAPIENTRYP _glptr_RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble); 3034 #define CALL_RasterPos4d(disp, parameters) \ 3035 (* GET_RasterPos4d(disp)) parameters 3036 static inline _glptr_RasterPos4d GET_RasterPos4d(struct _glapi_table *disp) { 3037 return (_glptr_RasterPos4d) (GET_by_offset(disp, _gloffset_RasterPos4d)); 3038 } 3039 3040 static inline void SET_RasterPos4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 3041 SET_by_offset(disp, _gloffset_RasterPos4d, fn); 3042 } 3043 3044 typedef void (GLAPIENTRYP _glptr_RasterPos4dv)(const GLdouble *); 3045 #define CALL_RasterPos4dv(disp, parameters) \ 3046 (* GET_RasterPos4dv(disp)) parameters 3047 static inline _glptr_RasterPos4dv GET_RasterPos4dv(struct _glapi_table *disp) { 3048 return (_glptr_RasterPos4dv) (GET_by_offset(disp, _gloffset_RasterPos4dv)); 3049 } 3050 3051 static inline void SET_RasterPos4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3052 SET_by_offset(disp, _gloffset_RasterPos4dv, fn); 3053 } 3054 3055 typedef void (GLAPIENTRYP _glptr_RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat); 3056 #define CALL_RasterPos4f(disp, parameters) \ 3057 (* GET_RasterPos4f(disp)) parameters 3058 static inline _glptr_RasterPos4f GET_RasterPos4f(struct _glapi_table *disp) { 3059 return (_glptr_RasterPos4f) (GET_by_offset(disp, _gloffset_RasterPos4f)); 3060 } 3061 3062 static inline void SET_RasterPos4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 3063 SET_by_offset(disp, _gloffset_RasterPos4f, fn); 3064 } 3065 3066 typedef void (GLAPIENTRYP _glptr_RasterPos4fv)(const GLfloat *); 3067 #define CALL_RasterPos4fv(disp, parameters) \ 3068 (* GET_RasterPos4fv(disp)) parameters 3069 static inline _glptr_RasterPos4fv GET_RasterPos4fv(struct _glapi_table *disp) { 3070 return (_glptr_RasterPos4fv) (GET_by_offset(disp, _gloffset_RasterPos4fv)); 3071 } 3072 3073 static inline void SET_RasterPos4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3074 SET_by_offset(disp, _gloffset_RasterPos4fv, fn); 3075 } 3076 3077 typedef void (GLAPIENTRYP _glptr_RasterPos4i)(GLint, GLint, GLint, GLint); 3078 #define CALL_RasterPos4i(disp, parameters) \ 3079 (* GET_RasterPos4i(disp)) parameters 3080 static inline _glptr_RasterPos4i GET_RasterPos4i(struct _glapi_table *disp) { 3081 return (_glptr_RasterPos4i) (GET_by_offset(disp, _gloffset_RasterPos4i)); 3082 } 3083 3084 static inline void SET_RasterPos4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 3085 SET_by_offset(disp, _gloffset_RasterPos4i, fn); 3086 } 3087 3088 typedef void (GLAPIENTRYP _glptr_RasterPos4iv)(const GLint *); 3089 #define CALL_RasterPos4iv(disp, parameters) \ 3090 (* GET_RasterPos4iv(disp)) parameters 3091 static inline _glptr_RasterPos4iv GET_RasterPos4iv(struct _glapi_table *disp) { 3092 return (_glptr_RasterPos4iv) (GET_by_offset(disp, _gloffset_RasterPos4iv)); 3093 } 3094 3095 static inline void SET_RasterPos4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3096 SET_by_offset(disp, _gloffset_RasterPos4iv, fn); 3097 } 3098 3099 typedef void (GLAPIENTRYP _glptr_RasterPos4s)(GLshort, GLshort, GLshort, GLshort); 3100 #define CALL_RasterPos4s(disp, parameters) \ 3101 (* GET_RasterPos4s(disp)) parameters 3102 static inline _glptr_RasterPos4s GET_RasterPos4s(struct _glapi_table *disp) { 3103 return (_glptr_RasterPos4s) (GET_by_offset(disp, _gloffset_RasterPos4s)); 3104 } 3105 3106 static inline void SET_RasterPos4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) { 3107 SET_by_offset(disp, _gloffset_RasterPos4s, fn); 3108 } 3109 3110 typedef void (GLAPIENTRYP _glptr_RasterPos4sv)(const GLshort *); 3111 #define CALL_RasterPos4sv(disp, parameters) \ 3112 (* GET_RasterPos4sv(disp)) parameters 3113 static inline _glptr_RasterPos4sv GET_RasterPos4sv(struct _glapi_table *disp) { 3114 return (_glptr_RasterPos4sv) (GET_by_offset(disp, _gloffset_RasterPos4sv)); 3115 } 3116 3117 static inline void SET_RasterPos4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3118 SET_by_offset(disp, _gloffset_RasterPos4sv, fn); 3119 } 3120 3121 typedef void (GLAPIENTRYP _glptr_Rectd)(GLdouble, GLdouble, GLdouble, GLdouble); 3122 #define CALL_Rectd(disp, parameters) \ 3123 (* GET_Rectd(disp)) parameters 3124 static inline _glptr_Rectd GET_Rectd(struct _glapi_table *disp) { 3125 return (_glptr_Rectd) (GET_by_offset(disp, _gloffset_Rectd)); 3126 } 3127 3128 static inline void SET_Rectd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 3129 SET_by_offset(disp, _gloffset_Rectd, fn); 3130 } 3131 3132 typedef void (GLAPIENTRYP _glptr_Rectdv)(const GLdouble *, const GLdouble *); 3133 #define CALL_Rectdv(disp, parameters) \ 3134 (* GET_Rectdv(disp)) parameters 3135 static inline _glptr_Rectdv GET_Rectdv(struct _glapi_table *disp) { 3136 return (_glptr_Rectdv) (GET_by_offset(disp, _gloffset_Rectdv)); 3137 } 3138 3139 static inline void SET_Rectdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *, const GLdouble *)) { 3140 SET_by_offset(disp, _gloffset_Rectdv, fn); 3141 } 3142 3143 typedef void (GLAPIENTRYP _glptr_Rectf)(GLfloat, GLfloat, GLfloat, GLfloat); 3144 #define CALL_Rectf(disp, parameters) \ 3145 (* GET_Rectf(disp)) parameters 3146 static inline _glptr_Rectf GET_Rectf(struct _glapi_table *disp) { 3147 return (_glptr_Rectf) (GET_by_offset(disp, _gloffset_Rectf)); 3148 } 3149 3150 static inline void SET_Rectf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 3151 SET_by_offset(disp, _gloffset_Rectf, fn); 3152 } 3153 3154 typedef void (GLAPIENTRYP _glptr_Rectfv)(const GLfloat *, const GLfloat *); 3155 #define CALL_Rectfv(disp, parameters) \ 3156 (* GET_Rectfv(disp)) parameters 3157 static inline _glptr_Rectfv GET_Rectfv(struct _glapi_table *disp) { 3158 return (_glptr_Rectfv) (GET_by_offset(disp, _gloffset_Rectfv)); 3159 } 3160 3161 static inline void SET_Rectfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *, const GLfloat *)) { 3162 SET_by_offset(disp, _gloffset_Rectfv, fn); 3163 } 3164 3165 typedef void (GLAPIENTRYP _glptr_Recti)(GLint, GLint, GLint, GLint); 3166 #define CALL_Recti(disp, parameters) \ 3167 (* GET_Recti(disp)) parameters 3168 static inline _glptr_Recti GET_Recti(struct _glapi_table *disp) { 3169 return (_glptr_Recti) (GET_by_offset(disp, _gloffset_Recti)); 3170 } 3171 3172 static inline void SET_Recti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 3173 SET_by_offset(disp, _gloffset_Recti, fn); 3174 } 3175 3176 typedef void (GLAPIENTRYP _glptr_Rectiv)(const GLint *, const GLint *); 3177 #define CALL_Rectiv(disp, parameters) \ 3178 (* GET_Rectiv(disp)) parameters 3179 static inline _glptr_Rectiv GET_Rectiv(struct _glapi_table *disp) { 3180 return (_glptr_Rectiv) (GET_by_offset(disp, _gloffset_Rectiv)); 3181 } 3182 3183 static inline void SET_Rectiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *, const GLint *)) { 3184 SET_by_offset(disp, _gloffset_Rectiv, fn); 3185 } 3186 3187 typedef void (GLAPIENTRYP _glptr_Rects)(GLshort, GLshort, GLshort, GLshort); 3188 #define CALL_Rects(disp, parameters) \ 3189 (* GET_Rects(disp)) parameters 3190 static inline _glptr_Rects GET_Rects(struct _glapi_table *disp) { 3191 return (_glptr_Rects) (GET_by_offset(disp, _gloffset_Rects)); 3192 } 3193 3194 static inline void SET_Rects(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) { 3195 SET_by_offset(disp, _gloffset_Rects, fn); 3196 } 3197 3198 typedef void (GLAPIENTRYP _glptr_Rectsv)(const GLshort *, const GLshort *); 3199 #define CALL_Rectsv(disp, parameters) \ 3200 (* GET_Rectsv(disp)) parameters 3201 static inline _glptr_Rectsv GET_Rectsv(struct _glapi_table *disp) { 3202 return (_glptr_Rectsv) (GET_by_offset(disp, _gloffset_Rectsv)); 3203 } 3204 3205 static inline void SET_Rectsv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *, const GLshort *)) { 3206 SET_by_offset(disp, _gloffset_Rectsv, fn); 3207 } 3208 3209 typedef void (GLAPIENTRYP _glptr_TexCoord1d)(GLdouble); 3210 #define CALL_TexCoord1d(disp, parameters) \ 3211 (* GET_TexCoord1d(disp)) parameters 3212 static inline _glptr_TexCoord1d GET_TexCoord1d(struct _glapi_table *disp) { 3213 return (_glptr_TexCoord1d) (GET_by_offset(disp, _gloffset_TexCoord1d)); 3214 } 3215 3216 static inline void SET_TexCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) { 3217 SET_by_offset(disp, _gloffset_TexCoord1d, fn); 3218 } 3219 3220 typedef void (GLAPIENTRYP _glptr_TexCoord1dv)(const GLdouble *); 3221 #define CALL_TexCoord1dv(disp, parameters) \ 3222 (* GET_TexCoord1dv(disp)) parameters 3223 static inline _glptr_TexCoord1dv GET_TexCoord1dv(struct _glapi_table *disp) { 3224 return (_glptr_TexCoord1dv) (GET_by_offset(disp, _gloffset_TexCoord1dv)); 3225 } 3226 3227 static inline void SET_TexCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3228 SET_by_offset(disp, _gloffset_TexCoord1dv, fn); 3229 } 3230 3231 typedef void (GLAPIENTRYP _glptr_TexCoord1f)(GLfloat); 3232 #define CALL_TexCoord1f(disp, parameters) \ 3233 (* GET_TexCoord1f(disp)) parameters 3234 static inline _glptr_TexCoord1f GET_TexCoord1f(struct _glapi_table *disp) { 3235 return (_glptr_TexCoord1f) (GET_by_offset(disp, _gloffset_TexCoord1f)); 3236 } 3237 3238 static inline void SET_TexCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 3239 SET_by_offset(disp, _gloffset_TexCoord1f, fn); 3240 } 3241 3242 typedef void (GLAPIENTRYP _glptr_TexCoord1fv)(const GLfloat *); 3243 #define CALL_TexCoord1fv(disp, parameters) \ 3244 (* GET_TexCoord1fv(disp)) parameters 3245 static inline _glptr_TexCoord1fv GET_TexCoord1fv(struct _glapi_table *disp) { 3246 return (_glptr_TexCoord1fv) (GET_by_offset(disp, _gloffset_TexCoord1fv)); 3247 } 3248 3249 static inline void SET_TexCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3250 SET_by_offset(disp, _gloffset_TexCoord1fv, fn); 3251 } 3252 3253 typedef void (GLAPIENTRYP _glptr_TexCoord1i)(GLint); 3254 #define CALL_TexCoord1i(disp, parameters) \ 3255 (* GET_TexCoord1i(disp)) parameters 3256 static inline _glptr_TexCoord1i GET_TexCoord1i(struct _glapi_table *disp) { 3257 return (_glptr_TexCoord1i) (GET_by_offset(disp, _gloffset_TexCoord1i)); 3258 } 3259 3260 static inline void SET_TexCoord1i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) { 3261 SET_by_offset(disp, _gloffset_TexCoord1i, fn); 3262 } 3263 3264 typedef void (GLAPIENTRYP _glptr_TexCoord1iv)(const GLint *); 3265 #define CALL_TexCoord1iv(disp, parameters) \ 3266 (* GET_TexCoord1iv(disp)) parameters 3267 static inline _glptr_TexCoord1iv GET_TexCoord1iv(struct _glapi_table *disp) { 3268 return (_glptr_TexCoord1iv) (GET_by_offset(disp, _gloffset_TexCoord1iv)); 3269 } 3270 3271 static inline void SET_TexCoord1iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3272 SET_by_offset(disp, _gloffset_TexCoord1iv, fn); 3273 } 3274 3275 typedef void (GLAPIENTRYP _glptr_TexCoord1s)(GLshort); 3276 #define CALL_TexCoord1s(disp, parameters) \ 3277 (* GET_TexCoord1s(disp)) parameters 3278 static inline _glptr_TexCoord1s GET_TexCoord1s(struct _glapi_table *disp) { 3279 return (_glptr_TexCoord1s) (GET_by_offset(disp, _gloffset_TexCoord1s)); 3280 } 3281 3282 static inline void SET_TexCoord1s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort)) { 3283 SET_by_offset(disp, _gloffset_TexCoord1s, fn); 3284 } 3285 3286 typedef void (GLAPIENTRYP _glptr_TexCoord1sv)(const GLshort *); 3287 #define CALL_TexCoord1sv(disp, parameters) \ 3288 (* GET_TexCoord1sv(disp)) parameters 3289 static inline _glptr_TexCoord1sv GET_TexCoord1sv(struct _glapi_table *disp) { 3290 return (_glptr_TexCoord1sv) (GET_by_offset(disp, _gloffset_TexCoord1sv)); 3291 } 3292 3293 static inline void SET_TexCoord1sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3294 SET_by_offset(disp, _gloffset_TexCoord1sv, fn); 3295 } 3296 3297 typedef void (GLAPIENTRYP _glptr_TexCoord2d)(GLdouble, GLdouble); 3298 #define CALL_TexCoord2d(disp, parameters) \ 3299 (* GET_TexCoord2d(disp)) parameters 3300 static inline _glptr_TexCoord2d GET_TexCoord2d(struct _glapi_table *disp) { 3301 return (_glptr_TexCoord2d) (GET_by_offset(disp, _gloffset_TexCoord2d)); 3302 } 3303 3304 static inline void SET_TexCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) { 3305 SET_by_offset(disp, _gloffset_TexCoord2d, fn); 3306 } 3307 3308 typedef void (GLAPIENTRYP _glptr_TexCoord2dv)(const GLdouble *); 3309 #define CALL_TexCoord2dv(disp, parameters) \ 3310 (* GET_TexCoord2dv(disp)) parameters 3311 static inline _glptr_TexCoord2dv GET_TexCoord2dv(struct _glapi_table *disp) { 3312 return (_glptr_TexCoord2dv) (GET_by_offset(disp, _gloffset_TexCoord2dv)); 3313 } 3314 3315 static inline void SET_TexCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3316 SET_by_offset(disp, _gloffset_TexCoord2dv, fn); 3317 } 3318 3319 typedef void (GLAPIENTRYP _glptr_TexCoord2f)(GLfloat, GLfloat); 3320 #define CALL_TexCoord2f(disp, parameters) \ 3321 (* GET_TexCoord2f(disp)) parameters 3322 static inline _glptr_TexCoord2f GET_TexCoord2f(struct _glapi_table *disp) { 3323 return (_glptr_TexCoord2f) (GET_by_offset(disp, _gloffset_TexCoord2f)); 3324 } 3325 3326 static inline void SET_TexCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 3327 SET_by_offset(disp, _gloffset_TexCoord2f, fn); 3328 } 3329 3330 typedef void (GLAPIENTRYP _glptr_TexCoord2fv)(const GLfloat *); 3331 #define CALL_TexCoord2fv(disp, parameters) \ 3332 (* GET_TexCoord2fv(disp)) parameters 3333 static inline _glptr_TexCoord2fv GET_TexCoord2fv(struct _glapi_table *disp) { 3334 return (_glptr_TexCoord2fv) (GET_by_offset(disp, _gloffset_TexCoord2fv)); 3335 } 3336 3337 static inline void SET_TexCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3338 SET_by_offset(disp, _gloffset_TexCoord2fv, fn); 3339 } 3340 3341 typedef void (GLAPIENTRYP _glptr_TexCoord2i)(GLint, GLint); 3342 #define CALL_TexCoord2i(disp, parameters) \ 3343 (* GET_TexCoord2i(disp)) parameters 3344 static inline _glptr_TexCoord2i GET_TexCoord2i(struct _glapi_table *disp) { 3345 return (_glptr_TexCoord2i) (GET_by_offset(disp, _gloffset_TexCoord2i)); 3346 } 3347 3348 static inline void SET_TexCoord2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) { 3349 SET_by_offset(disp, _gloffset_TexCoord2i, fn); 3350 } 3351 3352 typedef void (GLAPIENTRYP _glptr_TexCoord2iv)(const GLint *); 3353 #define CALL_TexCoord2iv(disp, parameters) \ 3354 (* GET_TexCoord2iv(disp)) parameters 3355 static inline _glptr_TexCoord2iv GET_TexCoord2iv(struct _glapi_table *disp) { 3356 return (_glptr_TexCoord2iv) (GET_by_offset(disp, _gloffset_TexCoord2iv)); 3357 } 3358 3359 static inline void SET_TexCoord2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3360 SET_by_offset(disp, _gloffset_TexCoord2iv, fn); 3361 } 3362 3363 typedef void (GLAPIENTRYP _glptr_TexCoord2s)(GLshort, GLshort); 3364 #define CALL_TexCoord2s(disp, parameters) \ 3365 (* GET_TexCoord2s(disp)) parameters 3366 static inline _glptr_TexCoord2s GET_TexCoord2s(struct _glapi_table *disp) { 3367 return (_glptr_TexCoord2s) (GET_by_offset(disp, _gloffset_TexCoord2s)); 3368 } 3369 3370 static inline void SET_TexCoord2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) { 3371 SET_by_offset(disp, _gloffset_TexCoord2s, fn); 3372 } 3373 3374 typedef void (GLAPIENTRYP _glptr_TexCoord2sv)(const GLshort *); 3375 #define CALL_TexCoord2sv(disp, parameters) \ 3376 (* GET_TexCoord2sv(disp)) parameters 3377 static inline _glptr_TexCoord2sv GET_TexCoord2sv(struct _glapi_table *disp) { 3378 return (_glptr_TexCoord2sv) (GET_by_offset(disp, _gloffset_TexCoord2sv)); 3379 } 3380 3381 static inline void SET_TexCoord2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3382 SET_by_offset(disp, _gloffset_TexCoord2sv, fn); 3383 } 3384 3385 typedef void (GLAPIENTRYP _glptr_TexCoord3d)(GLdouble, GLdouble, GLdouble); 3386 #define CALL_TexCoord3d(disp, parameters) \ 3387 (* GET_TexCoord3d(disp)) parameters 3388 static inline _glptr_TexCoord3d GET_TexCoord3d(struct _glapi_table *disp) { 3389 return (_glptr_TexCoord3d) (GET_by_offset(disp, _gloffset_TexCoord3d)); 3390 } 3391 3392 static inline void SET_TexCoord3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 3393 SET_by_offset(disp, _gloffset_TexCoord3d, fn); 3394 } 3395 3396 typedef void (GLAPIENTRYP _glptr_TexCoord3dv)(const GLdouble *); 3397 #define CALL_TexCoord3dv(disp, parameters) \ 3398 (* GET_TexCoord3dv(disp)) parameters 3399 static inline _glptr_TexCoord3dv GET_TexCoord3dv(struct _glapi_table *disp) { 3400 return (_glptr_TexCoord3dv) (GET_by_offset(disp, _gloffset_TexCoord3dv)); 3401 } 3402 3403 static inline void SET_TexCoord3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3404 SET_by_offset(disp, _gloffset_TexCoord3dv, fn); 3405 } 3406 3407 typedef void (GLAPIENTRYP _glptr_TexCoord3f)(GLfloat, GLfloat, GLfloat); 3408 #define CALL_TexCoord3f(disp, parameters) \ 3409 (* GET_TexCoord3f(disp)) parameters 3410 static inline _glptr_TexCoord3f GET_TexCoord3f(struct _glapi_table *disp) { 3411 return (_glptr_TexCoord3f) (GET_by_offset(disp, _gloffset_TexCoord3f)); 3412 } 3413 3414 static inline void SET_TexCoord3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 3415 SET_by_offset(disp, _gloffset_TexCoord3f, fn); 3416 } 3417 3418 typedef void (GLAPIENTRYP _glptr_TexCoord3fv)(const GLfloat *); 3419 #define CALL_TexCoord3fv(disp, parameters) \ 3420 (* GET_TexCoord3fv(disp)) parameters 3421 static inline _glptr_TexCoord3fv GET_TexCoord3fv(struct _glapi_table *disp) { 3422 return (_glptr_TexCoord3fv) (GET_by_offset(disp, _gloffset_TexCoord3fv)); 3423 } 3424 3425 static inline void SET_TexCoord3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3426 SET_by_offset(disp, _gloffset_TexCoord3fv, fn); 3427 } 3428 3429 typedef void (GLAPIENTRYP _glptr_TexCoord3i)(GLint, GLint, GLint); 3430 #define CALL_TexCoord3i(disp, parameters) \ 3431 (* GET_TexCoord3i(disp)) parameters 3432 static inline _glptr_TexCoord3i GET_TexCoord3i(struct _glapi_table *disp) { 3433 return (_glptr_TexCoord3i) (GET_by_offset(disp, _gloffset_TexCoord3i)); 3434 } 3435 3436 static inline void SET_TexCoord3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 3437 SET_by_offset(disp, _gloffset_TexCoord3i, fn); 3438 } 3439 3440 typedef void (GLAPIENTRYP _glptr_TexCoord3iv)(const GLint *); 3441 #define CALL_TexCoord3iv(disp, parameters) \ 3442 (* GET_TexCoord3iv(disp)) parameters 3443 static inline _glptr_TexCoord3iv GET_TexCoord3iv(struct _glapi_table *disp) { 3444 return (_glptr_TexCoord3iv) (GET_by_offset(disp, _gloffset_TexCoord3iv)); 3445 } 3446 3447 static inline void SET_TexCoord3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3448 SET_by_offset(disp, _gloffset_TexCoord3iv, fn); 3449 } 3450 3451 typedef void (GLAPIENTRYP _glptr_TexCoord3s)(GLshort, GLshort, GLshort); 3452 #define CALL_TexCoord3s(disp, parameters) \ 3453 (* GET_TexCoord3s(disp)) parameters 3454 static inline _glptr_TexCoord3s GET_TexCoord3s(struct _glapi_table *disp) { 3455 return (_glptr_TexCoord3s) (GET_by_offset(disp, _gloffset_TexCoord3s)); 3456 } 3457 3458 static inline void SET_TexCoord3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 3459 SET_by_offset(disp, _gloffset_TexCoord3s, fn); 3460 } 3461 3462 typedef void (GLAPIENTRYP _glptr_TexCoord3sv)(const GLshort *); 3463 #define CALL_TexCoord3sv(disp, parameters) \ 3464 (* GET_TexCoord3sv(disp)) parameters 3465 static inline _glptr_TexCoord3sv GET_TexCoord3sv(struct _glapi_table *disp) { 3466 return (_glptr_TexCoord3sv) (GET_by_offset(disp, _gloffset_TexCoord3sv)); 3467 } 3468 3469 static inline void SET_TexCoord3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3470 SET_by_offset(disp, _gloffset_TexCoord3sv, fn); 3471 } 3472 3473 typedef void (GLAPIENTRYP _glptr_TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble); 3474 #define CALL_TexCoord4d(disp, parameters) \ 3475 (* GET_TexCoord4d(disp)) parameters 3476 static inline _glptr_TexCoord4d GET_TexCoord4d(struct _glapi_table *disp) { 3477 return (_glptr_TexCoord4d) (GET_by_offset(disp, _gloffset_TexCoord4d)); 3478 } 3479 3480 static inline void SET_TexCoord4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 3481 SET_by_offset(disp, _gloffset_TexCoord4d, fn); 3482 } 3483 3484 typedef void (GLAPIENTRYP _glptr_TexCoord4dv)(const GLdouble *); 3485 #define CALL_TexCoord4dv(disp, parameters) \ 3486 (* GET_TexCoord4dv(disp)) parameters 3487 static inline _glptr_TexCoord4dv GET_TexCoord4dv(struct _glapi_table *disp) { 3488 return (_glptr_TexCoord4dv) (GET_by_offset(disp, _gloffset_TexCoord4dv)); 3489 } 3490 3491 static inline void SET_TexCoord4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3492 SET_by_offset(disp, _gloffset_TexCoord4dv, fn); 3493 } 3494 3495 typedef void (GLAPIENTRYP _glptr_TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat); 3496 #define CALL_TexCoord4f(disp, parameters) \ 3497 (* GET_TexCoord4f(disp)) parameters 3498 static inline _glptr_TexCoord4f GET_TexCoord4f(struct _glapi_table *disp) { 3499 return (_glptr_TexCoord4f) (GET_by_offset(disp, _gloffset_TexCoord4f)); 3500 } 3501 3502 static inline void SET_TexCoord4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 3503 SET_by_offset(disp, _gloffset_TexCoord4f, fn); 3504 } 3505 3506 typedef void (GLAPIENTRYP _glptr_TexCoord4fv)(const GLfloat *); 3507 #define CALL_TexCoord4fv(disp, parameters) \ 3508 (* GET_TexCoord4fv(disp)) parameters 3509 static inline _glptr_TexCoord4fv GET_TexCoord4fv(struct _glapi_table *disp) { 3510 return (_glptr_TexCoord4fv) (GET_by_offset(disp, _gloffset_TexCoord4fv)); 3511 } 3512 3513 static inline void SET_TexCoord4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3514 SET_by_offset(disp, _gloffset_TexCoord4fv, fn); 3515 } 3516 3517 typedef void (GLAPIENTRYP _glptr_TexCoord4i)(GLint, GLint, GLint, GLint); 3518 #define CALL_TexCoord4i(disp, parameters) \ 3519 (* GET_TexCoord4i(disp)) parameters 3520 static inline _glptr_TexCoord4i GET_TexCoord4i(struct _glapi_table *disp) { 3521 return (_glptr_TexCoord4i) (GET_by_offset(disp, _gloffset_TexCoord4i)); 3522 } 3523 3524 static inline void SET_TexCoord4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 3525 SET_by_offset(disp, _gloffset_TexCoord4i, fn); 3526 } 3527 3528 typedef void (GLAPIENTRYP _glptr_TexCoord4iv)(const GLint *); 3529 #define CALL_TexCoord4iv(disp, parameters) \ 3530 (* GET_TexCoord4iv(disp)) parameters 3531 static inline _glptr_TexCoord4iv GET_TexCoord4iv(struct _glapi_table *disp) { 3532 return (_glptr_TexCoord4iv) (GET_by_offset(disp, _gloffset_TexCoord4iv)); 3533 } 3534 3535 static inline void SET_TexCoord4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3536 SET_by_offset(disp, _gloffset_TexCoord4iv, fn); 3537 } 3538 3539 typedef void (GLAPIENTRYP _glptr_TexCoord4s)(GLshort, GLshort, GLshort, GLshort); 3540 #define CALL_TexCoord4s(disp, parameters) \ 3541 (* GET_TexCoord4s(disp)) parameters 3542 static inline _glptr_TexCoord4s GET_TexCoord4s(struct _glapi_table *disp) { 3543 return (_glptr_TexCoord4s) (GET_by_offset(disp, _gloffset_TexCoord4s)); 3544 } 3545 3546 static inline void SET_TexCoord4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) { 3547 SET_by_offset(disp, _gloffset_TexCoord4s, fn); 3548 } 3549 3550 typedef void (GLAPIENTRYP _glptr_TexCoord4sv)(const GLshort *); 3551 #define CALL_TexCoord4sv(disp, parameters) \ 3552 (* GET_TexCoord4sv(disp)) parameters 3553 static inline _glptr_TexCoord4sv GET_TexCoord4sv(struct _glapi_table *disp) { 3554 return (_glptr_TexCoord4sv) (GET_by_offset(disp, _gloffset_TexCoord4sv)); 3555 } 3556 3557 static inline void SET_TexCoord4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3558 SET_by_offset(disp, _gloffset_TexCoord4sv, fn); 3559 } 3560 3561 typedef void (GLAPIENTRYP _glptr_Vertex2d)(GLdouble, GLdouble); 3562 #define CALL_Vertex2d(disp, parameters) \ 3563 (* GET_Vertex2d(disp)) parameters 3564 static inline _glptr_Vertex2d GET_Vertex2d(struct _glapi_table *disp) { 3565 return (_glptr_Vertex2d) (GET_by_offset(disp, _gloffset_Vertex2d)); 3566 } 3567 3568 static inline void SET_Vertex2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) { 3569 SET_by_offset(disp, _gloffset_Vertex2d, fn); 3570 } 3571 3572 typedef void (GLAPIENTRYP _glptr_Vertex2dv)(const GLdouble *); 3573 #define CALL_Vertex2dv(disp, parameters) \ 3574 (* GET_Vertex2dv(disp)) parameters 3575 static inline _glptr_Vertex2dv GET_Vertex2dv(struct _glapi_table *disp) { 3576 return (_glptr_Vertex2dv) (GET_by_offset(disp, _gloffset_Vertex2dv)); 3577 } 3578 3579 static inline void SET_Vertex2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3580 SET_by_offset(disp, _gloffset_Vertex2dv, fn); 3581 } 3582 3583 typedef void (GLAPIENTRYP _glptr_Vertex2f)(GLfloat, GLfloat); 3584 #define CALL_Vertex2f(disp, parameters) \ 3585 (* GET_Vertex2f(disp)) parameters 3586 static inline _glptr_Vertex2f GET_Vertex2f(struct _glapi_table *disp) { 3587 return (_glptr_Vertex2f) (GET_by_offset(disp, _gloffset_Vertex2f)); 3588 } 3589 3590 static inline void SET_Vertex2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 3591 SET_by_offset(disp, _gloffset_Vertex2f, fn); 3592 } 3593 3594 typedef void (GLAPIENTRYP _glptr_Vertex2fv)(const GLfloat *); 3595 #define CALL_Vertex2fv(disp, parameters) \ 3596 (* GET_Vertex2fv(disp)) parameters 3597 static inline _glptr_Vertex2fv GET_Vertex2fv(struct _glapi_table *disp) { 3598 return (_glptr_Vertex2fv) (GET_by_offset(disp, _gloffset_Vertex2fv)); 3599 } 3600 3601 static inline void SET_Vertex2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3602 SET_by_offset(disp, _gloffset_Vertex2fv, fn); 3603 } 3604 3605 typedef void (GLAPIENTRYP _glptr_Vertex2i)(GLint, GLint); 3606 #define CALL_Vertex2i(disp, parameters) \ 3607 (* GET_Vertex2i(disp)) parameters 3608 static inline _glptr_Vertex2i GET_Vertex2i(struct _glapi_table *disp) { 3609 return (_glptr_Vertex2i) (GET_by_offset(disp, _gloffset_Vertex2i)); 3610 } 3611 3612 static inline void SET_Vertex2i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) { 3613 SET_by_offset(disp, _gloffset_Vertex2i, fn); 3614 } 3615 3616 typedef void (GLAPIENTRYP _glptr_Vertex2iv)(const GLint *); 3617 #define CALL_Vertex2iv(disp, parameters) \ 3618 (* GET_Vertex2iv(disp)) parameters 3619 static inline _glptr_Vertex2iv GET_Vertex2iv(struct _glapi_table *disp) { 3620 return (_glptr_Vertex2iv) (GET_by_offset(disp, _gloffset_Vertex2iv)); 3621 } 3622 3623 static inline void SET_Vertex2iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3624 SET_by_offset(disp, _gloffset_Vertex2iv, fn); 3625 } 3626 3627 typedef void (GLAPIENTRYP _glptr_Vertex2s)(GLshort, GLshort); 3628 #define CALL_Vertex2s(disp, parameters) \ 3629 (* GET_Vertex2s(disp)) parameters 3630 static inline _glptr_Vertex2s GET_Vertex2s(struct _glapi_table *disp) { 3631 return (_glptr_Vertex2s) (GET_by_offset(disp, _gloffset_Vertex2s)); 3632 } 3633 3634 static inline void SET_Vertex2s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) { 3635 SET_by_offset(disp, _gloffset_Vertex2s, fn); 3636 } 3637 3638 typedef void (GLAPIENTRYP _glptr_Vertex2sv)(const GLshort *); 3639 #define CALL_Vertex2sv(disp, parameters) \ 3640 (* GET_Vertex2sv(disp)) parameters 3641 static inline _glptr_Vertex2sv GET_Vertex2sv(struct _glapi_table *disp) { 3642 return (_glptr_Vertex2sv) (GET_by_offset(disp, _gloffset_Vertex2sv)); 3643 } 3644 3645 static inline void SET_Vertex2sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3646 SET_by_offset(disp, _gloffset_Vertex2sv, fn); 3647 } 3648 3649 typedef void (GLAPIENTRYP _glptr_Vertex3d)(GLdouble, GLdouble, GLdouble); 3650 #define CALL_Vertex3d(disp, parameters) \ 3651 (* GET_Vertex3d(disp)) parameters 3652 static inline _glptr_Vertex3d GET_Vertex3d(struct _glapi_table *disp) { 3653 return (_glptr_Vertex3d) (GET_by_offset(disp, _gloffset_Vertex3d)); 3654 } 3655 3656 static inline void SET_Vertex3d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 3657 SET_by_offset(disp, _gloffset_Vertex3d, fn); 3658 } 3659 3660 typedef void (GLAPIENTRYP _glptr_Vertex3dv)(const GLdouble *); 3661 #define CALL_Vertex3dv(disp, parameters) \ 3662 (* GET_Vertex3dv(disp)) parameters 3663 static inline _glptr_Vertex3dv GET_Vertex3dv(struct _glapi_table *disp) { 3664 return (_glptr_Vertex3dv) (GET_by_offset(disp, _gloffset_Vertex3dv)); 3665 } 3666 3667 static inline void SET_Vertex3dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3668 SET_by_offset(disp, _gloffset_Vertex3dv, fn); 3669 } 3670 3671 typedef void (GLAPIENTRYP _glptr_Vertex3f)(GLfloat, GLfloat, GLfloat); 3672 #define CALL_Vertex3f(disp, parameters) \ 3673 (* GET_Vertex3f(disp)) parameters 3674 static inline _glptr_Vertex3f GET_Vertex3f(struct _glapi_table *disp) { 3675 return (_glptr_Vertex3f) (GET_by_offset(disp, _gloffset_Vertex3f)); 3676 } 3677 3678 static inline void SET_Vertex3f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 3679 SET_by_offset(disp, _gloffset_Vertex3f, fn); 3680 } 3681 3682 typedef void (GLAPIENTRYP _glptr_Vertex3fv)(const GLfloat *); 3683 #define CALL_Vertex3fv(disp, parameters) \ 3684 (* GET_Vertex3fv(disp)) parameters 3685 static inline _glptr_Vertex3fv GET_Vertex3fv(struct _glapi_table *disp) { 3686 return (_glptr_Vertex3fv) (GET_by_offset(disp, _gloffset_Vertex3fv)); 3687 } 3688 3689 static inline void SET_Vertex3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3690 SET_by_offset(disp, _gloffset_Vertex3fv, fn); 3691 } 3692 3693 typedef void (GLAPIENTRYP _glptr_Vertex3i)(GLint, GLint, GLint); 3694 #define CALL_Vertex3i(disp, parameters) \ 3695 (* GET_Vertex3i(disp)) parameters 3696 static inline _glptr_Vertex3i GET_Vertex3i(struct _glapi_table *disp) { 3697 return (_glptr_Vertex3i) (GET_by_offset(disp, _gloffset_Vertex3i)); 3698 } 3699 3700 static inline void SET_Vertex3i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 3701 SET_by_offset(disp, _gloffset_Vertex3i, fn); 3702 } 3703 3704 typedef void (GLAPIENTRYP _glptr_Vertex3iv)(const GLint *); 3705 #define CALL_Vertex3iv(disp, parameters) \ 3706 (* GET_Vertex3iv(disp)) parameters 3707 static inline _glptr_Vertex3iv GET_Vertex3iv(struct _glapi_table *disp) { 3708 return (_glptr_Vertex3iv) (GET_by_offset(disp, _gloffset_Vertex3iv)); 3709 } 3710 3711 static inline void SET_Vertex3iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3712 SET_by_offset(disp, _gloffset_Vertex3iv, fn); 3713 } 3714 3715 typedef void (GLAPIENTRYP _glptr_Vertex3s)(GLshort, GLshort, GLshort); 3716 #define CALL_Vertex3s(disp, parameters) \ 3717 (* GET_Vertex3s(disp)) parameters 3718 static inline _glptr_Vertex3s GET_Vertex3s(struct _glapi_table *disp) { 3719 return (_glptr_Vertex3s) (GET_by_offset(disp, _gloffset_Vertex3s)); 3720 } 3721 3722 static inline void SET_Vertex3s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 3723 SET_by_offset(disp, _gloffset_Vertex3s, fn); 3724 } 3725 3726 typedef void (GLAPIENTRYP _glptr_Vertex3sv)(const GLshort *); 3727 #define CALL_Vertex3sv(disp, parameters) \ 3728 (* GET_Vertex3sv(disp)) parameters 3729 static inline _glptr_Vertex3sv GET_Vertex3sv(struct _glapi_table *disp) { 3730 return (_glptr_Vertex3sv) (GET_by_offset(disp, _gloffset_Vertex3sv)); 3731 } 3732 3733 static inline void SET_Vertex3sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3734 SET_by_offset(disp, _gloffset_Vertex3sv, fn); 3735 } 3736 3737 typedef void (GLAPIENTRYP _glptr_Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble); 3738 #define CALL_Vertex4d(disp, parameters) \ 3739 (* GET_Vertex4d(disp)) parameters 3740 static inline _glptr_Vertex4d GET_Vertex4d(struct _glapi_table *disp) { 3741 return (_glptr_Vertex4d) (GET_by_offset(disp, _gloffset_Vertex4d)); 3742 } 3743 3744 static inline void SET_Vertex4d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 3745 SET_by_offset(disp, _gloffset_Vertex4d, fn); 3746 } 3747 3748 typedef void (GLAPIENTRYP _glptr_Vertex4dv)(const GLdouble *); 3749 #define CALL_Vertex4dv(disp, parameters) \ 3750 (* GET_Vertex4dv(disp)) parameters 3751 static inline _glptr_Vertex4dv GET_Vertex4dv(struct _glapi_table *disp) { 3752 return (_glptr_Vertex4dv) (GET_by_offset(disp, _gloffset_Vertex4dv)); 3753 } 3754 3755 static inline void SET_Vertex4dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 3756 SET_by_offset(disp, _gloffset_Vertex4dv, fn); 3757 } 3758 3759 typedef void (GLAPIENTRYP _glptr_Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat); 3760 #define CALL_Vertex4f(disp, parameters) \ 3761 (* GET_Vertex4f(disp)) parameters 3762 static inline _glptr_Vertex4f GET_Vertex4f(struct _glapi_table *disp) { 3763 return (_glptr_Vertex4f) (GET_by_offset(disp, _gloffset_Vertex4f)); 3764 } 3765 3766 static inline void SET_Vertex4f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 3767 SET_by_offset(disp, _gloffset_Vertex4f, fn); 3768 } 3769 3770 typedef void (GLAPIENTRYP _glptr_Vertex4fv)(const GLfloat *); 3771 #define CALL_Vertex4fv(disp, parameters) \ 3772 (* GET_Vertex4fv(disp)) parameters 3773 static inline _glptr_Vertex4fv GET_Vertex4fv(struct _glapi_table *disp) { 3774 return (_glptr_Vertex4fv) (GET_by_offset(disp, _gloffset_Vertex4fv)); 3775 } 3776 3777 static inline void SET_Vertex4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 3778 SET_by_offset(disp, _gloffset_Vertex4fv, fn); 3779 } 3780 3781 typedef void (GLAPIENTRYP _glptr_Vertex4i)(GLint, GLint, GLint, GLint); 3782 #define CALL_Vertex4i(disp, parameters) \ 3783 (* GET_Vertex4i(disp)) parameters 3784 static inline _glptr_Vertex4i GET_Vertex4i(struct _glapi_table *disp) { 3785 return (_glptr_Vertex4i) (GET_by_offset(disp, _gloffset_Vertex4i)); 3786 } 3787 3788 static inline void SET_Vertex4i(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 3789 SET_by_offset(disp, _gloffset_Vertex4i, fn); 3790 } 3791 3792 typedef void (GLAPIENTRYP _glptr_Vertex4iv)(const GLint *); 3793 #define CALL_Vertex4iv(disp, parameters) \ 3794 (* GET_Vertex4iv(disp)) parameters 3795 static inline _glptr_Vertex4iv GET_Vertex4iv(struct _glapi_table *disp) { 3796 return (_glptr_Vertex4iv) (GET_by_offset(disp, _gloffset_Vertex4iv)); 3797 } 3798 3799 static inline void SET_Vertex4iv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 3800 SET_by_offset(disp, _gloffset_Vertex4iv, fn); 3801 } 3802 3803 typedef void (GLAPIENTRYP _glptr_Vertex4s)(GLshort, GLshort, GLshort, GLshort); 3804 #define CALL_Vertex4s(disp, parameters) \ 3805 (* GET_Vertex4s(disp)) parameters 3806 static inline _glptr_Vertex4s GET_Vertex4s(struct _glapi_table *disp) { 3807 return (_glptr_Vertex4s) (GET_by_offset(disp, _gloffset_Vertex4s)); 3808 } 3809 3810 static inline void SET_Vertex4s(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) { 3811 SET_by_offset(disp, _gloffset_Vertex4s, fn); 3812 } 3813 3814 typedef void (GLAPIENTRYP _glptr_Vertex4sv)(const GLshort *); 3815 #define CALL_Vertex4sv(disp, parameters) \ 3816 (* GET_Vertex4sv(disp)) parameters 3817 static inline _glptr_Vertex4sv GET_Vertex4sv(struct _glapi_table *disp) { 3818 return (_glptr_Vertex4sv) (GET_by_offset(disp, _gloffset_Vertex4sv)); 3819 } 3820 3821 static inline void SET_Vertex4sv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 3822 SET_by_offset(disp, _gloffset_Vertex4sv, fn); 3823 } 3824 3825 typedef void (GLAPIENTRYP _glptr_ClipPlane)(GLenum, const GLdouble *); 3826 #define CALL_ClipPlane(disp, parameters) \ 3827 (* GET_ClipPlane(disp)) parameters 3828 static inline _glptr_ClipPlane GET_ClipPlane(struct _glapi_table *disp) { 3829 return (_glptr_ClipPlane) (GET_by_offset(disp, _gloffset_ClipPlane)); 3830 } 3831 3832 static inline void SET_ClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) { 3833 SET_by_offset(disp, _gloffset_ClipPlane, fn); 3834 } 3835 3836 typedef void (GLAPIENTRYP _glptr_ColorMaterial)(GLenum, GLenum); 3837 #define CALL_ColorMaterial(disp, parameters) \ 3838 (* GET_ColorMaterial(disp)) parameters 3839 static inline _glptr_ColorMaterial GET_ColorMaterial(struct _glapi_table *disp) { 3840 return (_glptr_ColorMaterial) (GET_by_offset(disp, _gloffset_ColorMaterial)); 3841 } 3842 3843 static inline void SET_ColorMaterial(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 3844 SET_by_offset(disp, _gloffset_ColorMaterial, fn); 3845 } 3846 3847 typedef void (GLAPIENTRYP _glptr_CullFace)(GLenum); 3848 #define CALL_CullFace(disp, parameters) \ 3849 (* GET_CullFace(disp)) parameters 3850 static inline _glptr_CullFace GET_CullFace(struct _glapi_table *disp) { 3851 return (_glptr_CullFace) (GET_by_offset(disp, _gloffset_CullFace)); 3852 } 3853 3854 static inline void SET_CullFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 3855 SET_by_offset(disp, _gloffset_CullFace, fn); 3856 } 3857 3858 typedef void (GLAPIENTRYP _glptr_Fogf)(GLenum, GLfloat); 3859 #define CALL_Fogf(disp, parameters) \ 3860 (* GET_Fogf(disp)) parameters 3861 static inline _glptr_Fogf GET_Fogf(struct _glapi_table *disp) { 3862 return (_glptr_Fogf) (GET_by_offset(disp, _gloffset_Fogf)); 3863 } 3864 3865 static inline void SET_Fogf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 3866 SET_by_offset(disp, _gloffset_Fogf, fn); 3867 } 3868 3869 typedef void (GLAPIENTRYP _glptr_Fogfv)(GLenum, const GLfloat *); 3870 #define CALL_Fogfv(disp, parameters) \ 3871 (* GET_Fogfv(disp)) parameters 3872 static inline _glptr_Fogfv GET_Fogfv(struct _glapi_table *disp) { 3873 return (_glptr_Fogfv) (GET_by_offset(disp, _gloffset_Fogfv)); 3874 } 3875 3876 static inline void SET_Fogfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 3877 SET_by_offset(disp, _gloffset_Fogfv, fn); 3878 } 3879 3880 typedef void (GLAPIENTRYP _glptr_Fogi)(GLenum, GLint); 3881 #define CALL_Fogi(disp, parameters) \ 3882 (* GET_Fogi(disp)) parameters 3883 static inline _glptr_Fogi GET_Fogi(struct _glapi_table *disp) { 3884 return (_glptr_Fogi) (GET_by_offset(disp, _gloffset_Fogi)); 3885 } 3886 3887 static inline void SET_Fogi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) { 3888 SET_by_offset(disp, _gloffset_Fogi, fn); 3889 } 3890 3891 typedef void (GLAPIENTRYP _glptr_Fogiv)(GLenum, const GLint *); 3892 #define CALL_Fogiv(disp, parameters) \ 3893 (* GET_Fogiv(disp)) parameters 3894 static inline _glptr_Fogiv GET_Fogiv(struct _glapi_table *disp) { 3895 return (_glptr_Fogiv) (GET_by_offset(disp, _gloffset_Fogiv)); 3896 } 3897 3898 static inline void SET_Fogiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 3899 SET_by_offset(disp, _gloffset_Fogiv, fn); 3900 } 3901 3902 typedef void (GLAPIENTRYP _glptr_FrontFace)(GLenum); 3903 #define CALL_FrontFace(disp, parameters) \ 3904 (* GET_FrontFace(disp)) parameters 3905 static inline _glptr_FrontFace GET_FrontFace(struct _glapi_table *disp) { 3906 return (_glptr_FrontFace) (GET_by_offset(disp, _gloffset_FrontFace)); 3907 } 3908 3909 static inline void SET_FrontFace(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 3910 SET_by_offset(disp, _gloffset_FrontFace, fn); 3911 } 3912 3913 typedef void (GLAPIENTRYP _glptr_Hint)(GLenum, GLenum); 3914 #define CALL_Hint(disp, parameters) \ 3915 (* GET_Hint(disp)) parameters 3916 static inline _glptr_Hint GET_Hint(struct _glapi_table *disp) { 3917 return (_glptr_Hint) (GET_by_offset(disp, _gloffset_Hint)); 3918 } 3919 3920 static inline void SET_Hint(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 3921 SET_by_offset(disp, _gloffset_Hint, fn); 3922 } 3923 3924 typedef void (GLAPIENTRYP _glptr_Lightf)(GLenum, GLenum, GLfloat); 3925 #define CALL_Lightf(disp, parameters) \ 3926 (* GET_Lightf(disp)) parameters 3927 static inline _glptr_Lightf GET_Lightf(struct _glapi_table *disp) { 3928 return (_glptr_Lightf) (GET_by_offset(disp, _gloffset_Lightf)); 3929 } 3930 3931 static inline void SET_Lightf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) { 3932 SET_by_offset(disp, _gloffset_Lightf, fn); 3933 } 3934 3935 typedef void (GLAPIENTRYP _glptr_Lightfv)(GLenum, GLenum, const GLfloat *); 3936 #define CALL_Lightfv(disp, parameters) \ 3937 (* GET_Lightfv(disp)) parameters 3938 static inline _glptr_Lightfv GET_Lightfv(struct _glapi_table *disp) { 3939 return (_glptr_Lightfv) (GET_by_offset(disp, _gloffset_Lightfv)); 3940 } 3941 3942 static inline void SET_Lightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 3943 SET_by_offset(disp, _gloffset_Lightfv, fn); 3944 } 3945 3946 typedef void (GLAPIENTRYP _glptr_Lighti)(GLenum, GLenum, GLint); 3947 #define CALL_Lighti(disp, parameters) \ 3948 (* GET_Lighti(disp)) parameters 3949 static inline _glptr_Lighti GET_Lighti(struct _glapi_table *disp) { 3950 return (_glptr_Lighti) (GET_by_offset(disp, _gloffset_Lighti)); 3951 } 3952 3953 static inline void SET_Lighti(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 3954 SET_by_offset(disp, _gloffset_Lighti, fn); 3955 } 3956 3957 typedef void (GLAPIENTRYP _glptr_Lightiv)(GLenum, GLenum, const GLint *); 3958 #define CALL_Lightiv(disp, parameters) \ 3959 (* GET_Lightiv(disp)) parameters 3960 static inline _glptr_Lightiv GET_Lightiv(struct _glapi_table *disp) { 3961 return (_glptr_Lightiv) (GET_by_offset(disp, _gloffset_Lightiv)); 3962 } 3963 3964 static inline void SET_Lightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 3965 SET_by_offset(disp, _gloffset_Lightiv, fn); 3966 } 3967 3968 typedef void (GLAPIENTRYP _glptr_LightModelf)(GLenum, GLfloat); 3969 #define CALL_LightModelf(disp, parameters) \ 3970 (* GET_LightModelf(disp)) parameters 3971 static inline _glptr_LightModelf GET_LightModelf(struct _glapi_table *disp) { 3972 return (_glptr_LightModelf) (GET_by_offset(disp, _gloffset_LightModelf)); 3973 } 3974 3975 static inline void SET_LightModelf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 3976 SET_by_offset(disp, _gloffset_LightModelf, fn); 3977 } 3978 3979 typedef void (GLAPIENTRYP _glptr_LightModelfv)(GLenum, const GLfloat *); 3980 #define CALL_LightModelfv(disp, parameters) \ 3981 (* GET_LightModelfv(disp)) parameters 3982 static inline _glptr_LightModelfv GET_LightModelfv(struct _glapi_table *disp) { 3983 return (_glptr_LightModelfv) (GET_by_offset(disp, _gloffset_LightModelfv)); 3984 } 3985 3986 static inline void SET_LightModelfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 3987 SET_by_offset(disp, _gloffset_LightModelfv, fn); 3988 } 3989 3990 typedef void (GLAPIENTRYP _glptr_LightModeli)(GLenum, GLint); 3991 #define CALL_LightModeli(disp, parameters) \ 3992 (* GET_LightModeli(disp)) parameters 3993 static inline _glptr_LightModeli GET_LightModeli(struct _glapi_table *disp) { 3994 return (_glptr_LightModeli) (GET_by_offset(disp, _gloffset_LightModeli)); 3995 } 3996 3997 static inline void SET_LightModeli(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) { 3998 SET_by_offset(disp, _gloffset_LightModeli, fn); 3999 } 4000 4001 typedef void (GLAPIENTRYP _glptr_LightModeliv)(GLenum, const GLint *); 4002 #define CALL_LightModeliv(disp, parameters) \ 4003 (* GET_LightModeliv(disp)) parameters 4004 static inline _glptr_LightModeliv GET_LightModeliv(struct _glapi_table *disp) { 4005 return (_glptr_LightModeliv) (GET_by_offset(disp, _gloffset_LightModeliv)); 4006 } 4007 4008 static inline void SET_LightModeliv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 4009 SET_by_offset(disp, _gloffset_LightModeliv, fn); 4010 } 4011 4012 typedef void (GLAPIENTRYP _glptr_LineStipple)(GLint, GLushort); 4013 #define CALL_LineStipple(disp, parameters) \ 4014 (* GET_LineStipple(disp)) parameters 4015 static inline _glptr_LineStipple GET_LineStipple(struct _glapi_table *disp) { 4016 return (_glptr_LineStipple) (GET_by_offset(disp, _gloffset_LineStipple)); 4017 } 4018 4019 static inline void SET_LineStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLushort)) { 4020 SET_by_offset(disp, _gloffset_LineStipple, fn); 4021 } 4022 4023 typedef void (GLAPIENTRYP _glptr_LineWidth)(GLfloat); 4024 #define CALL_LineWidth(disp, parameters) \ 4025 (* GET_LineWidth(disp)) parameters 4026 static inline _glptr_LineWidth GET_LineWidth(struct _glapi_table *disp) { 4027 return (_glptr_LineWidth) (GET_by_offset(disp, _gloffset_LineWidth)); 4028 } 4029 4030 static inline void SET_LineWidth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 4031 SET_by_offset(disp, _gloffset_LineWidth, fn); 4032 } 4033 4034 typedef void (GLAPIENTRYP _glptr_Materialf)(GLenum, GLenum, GLfloat); 4035 #define CALL_Materialf(disp, parameters) \ 4036 (* GET_Materialf(disp)) parameters 4037 static inline _glptr_Materialf GET_Materialf(struct _glapi_table *disp) { 4038 return (_glptr_Materialf) (GET_by_offset(disp, _gloffset_Materialf)); 4039 } 4040 4041 static inline void SET_Materialf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) { 4042 SET_by_offset(disp, _gloffset_Materialf, fn); 4043 } 4044 4045 typedef void (GLAPIENTRYP _glptr_Materialfv)(GLenum, GLenum, const GLfloat *); 4046 #define CALL_Materialfv(disp, parameters) \ 4047 (* GET_Materialfv(disp)) parameters 4048 static inline _glptr_Materialfv GET_Materialfv(struct _glapi_table *disp) { 4049 return (_glptr_Materialfv) (GET_by_offset(disp, _gloffset_Materialfv)); 4050 } 4051 4052 static inline void SET_Materialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 4053 SET_by_offset(disp, _gloffset_Materialfv, fn); 4054 } 4055 4056 typedef void (GLAPIENTRYP _glptr_Materiali)(GLenum, GLenum, GLint); 4057 #define CALL_Materiali(disp, parameters) \ 4058 (* GET_Materiali(disp)) parameters 4059 static inline _glptr_Materiali GET_Materiali(struct _glapi_table *disp) { 4060 return (_glptr_Materiali) (GET_by_offset(disp, _gloffset_Materiali)); 4061 } 4062 4063 static inline void SET_Materiali(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 4064 SET_by_offset(disp, _gloffset_Materiali, fn); 4065 } 4066 4067 typedef void (GLAPIENTRYP _glptr_Materialiv)(GLenum, GLenum, const GLint *); 4068 #define CALL_Materialiv(disp, parameters) \ 4069 (* GET_Materialiv(disp)) parameters 4070 static inline _glptr_Materialiv GET_Materialiv(struct _glapi_table *disp) { 4071 return (_glptr_Materialiv) (GET_by_offset(disp, _gloffset_Materialiv)); 4072 } 4073 4074 static inline void SET_Materialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 4075 SET_by_offset(disp, _gloffset_Materialiv, fn); 4076 } 4077 4078 typedef void (GLAPIENTRYP _glptr_PointSize)(GLfloat); 4079 #define CALL_PointSize(disp, parameters) \ 4080 (* GET_PointSize(disp)) parameters 4081 static inline _glptr_PointSize GET_PointSize(struct _glapi_table *disp) { 4082 return (_glptr_PointSize) (GET_by_offset(disp, _gloffset_PointSize)); 4083 } 4084 4085 static inline void SET_PointSize(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 4086 SET_by_offset(disp, _gloffset_PointSize, fn); 4087 } 4088 4089 typedef void (GLAPIENTRYP _glptr_PolygonMode)(GLenum, GLenum); 4090 #define CALL_PolygonMode(disp, parameters) \ 4091 (* GET_PolygonMode(disp)) parameters 4092 static inline _glptr_PolygonMode GET_PolygonMode(struct _glapi_table *disp) { 4093 return (_glptr_PolygonMode) (GET_by_offset(disp, _gloffset_PolygonMode)); 4094 } 4095 4096 static inline void SET_PolygonMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 4097 SET_by_offset(disp, _gloffset_PolygonMode, fn); 4098 } 4099 4100 typedef void (GLAPIENTRYP _glptr_PolygonStipple)(const GLubyte *); 4101 #define CALL_PolygonStipple(disp, parameters) \ 4102 (* GET_PolygonStipple(disp)) parameters 4103 static inline _glptr_PolygonStipple GET_PolygonStipple(struct _glapi_table *disp) { 4104 return (_glptr_PolygonStipple) (GET_by_offset(disp, _gloffset_PolygonStipple)); 4105 } 4106 4107 static inline void SET_PolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) { 4108 SET_by_offset(disp, _gloffset_PolygonStipple, fn); 4109 } 4110 4111 typedef void (GLAPIENTRYP _glptr_Scissor)(GLint, GLint, GLsizei, GLsizei); 4112 #define CALL_Scissor(disp, parameters) \ 4113 (* GET_Scissor(disp)) parameters 4114 static inline _glptr_Scissor GET_Scissor(struct _glapi_table *disp) { 4115 return (_glptr_Scissor) (GET_by_offset(disp, _gloffset_Scissor)); 4116 } 4117 4118 static inline void SET_Scissor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) { 4119 SET_by_offset(disp, _gloffset_Scissor, fn); 4120 } 4121 4122 typedef void (GLAPIENTRYP _glptr_ShadeModel)(GLenum); 4123 #define CALL_ShadeModel(disp, parameters) \ 4124 (* GET_ShadeModel(disp)) parameters 4125 static inline _glptr_ShadeModel GET_ShadeModel(struct _glapi_table *disp) { 4126 return (_glptr_ShadeModel) (GET_by_offset(disp, _gloffset_ShadeModel)); 4127 } 4128 4129 static inline void SET_ShadeModel(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4130 SET_by_offset(disp, _gloffset_ShadeModel, fn); 4131 } 4132 4133 typedef void (GLAPIENTRYP _glptr_TexParameterf)(GLenum, GLenum, GLfloat); 4134 #define CALL_TexParameterf(disp, parameters) \ 4135 (* GET_TexParameterf(disp)) parameters 4136 static inline _glptr_TexParameterf GET_TexParameterf(struct _glapi_table *disp) { 4137 return (_glptr_TexParameterf) (GET_by_offset(disp, _gloffset_TexParameterf)); 4138 } 4139 4140 static inline void SET_TexParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) { 4141 SET_by_offset(disp, _gloffset_TexParameterf, fn); 4142 } 4143 4144 typedef void (GLAPIENTRYP _glptr_TexParameterfv)(GLenum, GLenum, const GLfloat *); 4145 #define CALL_TexParameterfv(disp, parameters) \ 4146 (* GET_TexParameterfv(disp)) parameters 4147 static inline _glptr_TexParameterfv GET_TexParameterfv(struct _glapi_table *disp) { 4148 return (_glptr_TexParameterfv) (GET_by_offset(disp, _gloffset_TexParameterfv)); 4149 } 4150 4151 static inline void SET_TexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 4152 SET_by_offset(disp, _gloffset_TexParameterfv, fn); 4153 } 4154 4155 typedef void (GLAPIENTRYP _glptr_TexParameteri)(GLenum, GLenum, GLint); 4156 #define CALL_TexParameteri(disp, parameters) \ 4157 (* GET_TexParameteri(disp)) parameters 4158 static inline _glptr_TexParameteri GET_TexParameteri(struct _glapi_table *disp) { 4159 return (_glptr_TexParameteri) (GET_by_offset(disp, _gloffset_TexParameteri)); 4160 } 4161 4162 static inline void SET_TexParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 4163 SET_by_offset(disp, _gloffset_TexParameteri, fn); 4164 } 4165 4166 typedef void (GLAPIENTRYP _glptr_TexParameteriv)(GLenum, GLenum, const GLint *); 4167 #define CALL_TexParameteriv(disp, parameters) \ 4168 (* GET_TexParameteriv(disp)) parameters 4169 static inline _glptr_TexParameteriv GET_TexParameteriv(struct _glapi_table *disp) { 4170 return (_glptr_TexParameteriv) (GET_by_offset(disp, _gloffset_TexParameteriv)); 4171 } 4172 4173 static inline void SET_TexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 4174 SET_by_offset(disp, _gloffset_TexParameteriv, fn); 4175 } 4176 4177 typedef void (GLAPIENTRYP _glptr_TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *); 4178 #define CALL_TexImage1D(disp, parameters) \ 4179 (* GET_TexImage1D(disp)) parameters 4180 static inline _glptr_TexImage1D GET_TexImage1D(struct _glapi_table *disp) { 4181 return (_glptr_TexImage1D) (GET_by_offset(disp, _gloffset_TexImage1D)); 4182 } 4183 4184 static inline void SET_TexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) { 4185 SET_by_offset(disp, _gloffset_TexImage1D, fn); 4186 } 4187 4188 typedef void (GLAPIENTRYP _glptr_TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *); 4189 #define CALL_TexImage2D(disp, parameters) \ 4190 (* GET_TexImage2D(disp)) parameters 4191 static inline _glptr_TexImage2D GET_TexImage2D(struct _glapi_table *disp) { 4192 return (_glptr_TexImage2D) (GET_by_offset(disp, _gloffset_TexImage2D)); 4193 } 4194 4195 static inline void SET_TexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) { 4196 SET_by_offset(disp, _gloffset_TexImage2D, fn); 4197 } 4198 4199 typedef void (GLAPIENTRYP _glptr_TexEnvf)(GLenum, GLenum, GLfloat); 4200 #define CALL_TexEnvf(disp, parameters) \ 4201 (* GET_TexEnvf(disp)) parameters 4202 static inline _glptr_TexEnvf GET_TexEnvf(struct _glapi_table *disp) { 4203 return (_glptr_TexEnvf) (GET_by_offset(disp, _gloffset_TexEnvf)); 4204 } 4205 4206 static inline void SET_TexEnvf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) { 4207 SET_by_offset(disp, _gloffset_TexEnvf, fn); 4208 } 4209 4210 typedef void (GLAPIENTRYP _glptr_TexEnvfv)(GLenum, GLenum, const GLfloat *); 4211 #define CALL_TexEnvfv(disp, parameters) \ 4212 (* GET_TexEnvfv(disp)) parameters 4213 static inline _glptr_TexEnvfv GET_TexEnvfv(struct _glapi_table *disp) { 4214 return (_glptr_TexEnvfv) (GET_by_offset(disp, _gloffset_TexEnvfv)); 4215 } 4216 4217 static inline void SET_TexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 4218 SET_by_offset(disp, _gloffset_TexEnvfv, fn); 4219 } 4220 4221 typedef void (GLAPIENTRYP _glptr_TexEnvi)(GLenum, GLenum, GLint); 4222 #define CALL_TexEnvi(disp, parameters) \ 4223 (* GET_TexEnvi(disp)) parameters 4224 static inline _glptr_TexEnvi GET_TexEnvi(struct _glapi_table *disp) { 4225 return (_glptr_TexEnvi) (GET_by_offset(disp, _gloffset_TexEnvi)); 4226 } 4227 4228 static inline void SET_TexEnvi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 4229 SET_by_offset(disp, _gloffset_TexEnvi, fn); 4230 } 4231 4232 typedef void (GLAPIENTRYP _glptr_TexEnviv)(GLenum, GLenum, const GLint *); 4233 #define CALL_TexEnviv(disp, parameters) \ 4234 (* GET_TexEnviv(disp)) parameters 4235 static inline _glptr_TexEnviv GET_TexEnviv(struct _glapi_table *disp) { 4236 return (_glptr_TexEnviv) (GET_by_offset(disp, _gloffset_TexEnviv)); 4237 } 4238 4239 static inline void SET_TexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 4240 SET_by_offset(disp, _gloffset_TexEnviv, fn); 4241 } 4242 4243 typedef void (GLAPIENTRYP _glptr_TexGend)(GLenum, GLenum, GLdouble); 4244 #define CALL_TexGend(disp, parameters) \ 4245 (* GET_TexGend(disp)) parameters 4246 static inline _glptr_TexGend GET_TexGend(struct _glapi_table *disp) { 4247 return (_glptr_TexGend) (GET_by_offset(disp, _gloffset_TexGend)); 4248 } 4249 4250 static inline void SET_TexGend(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble)) { 4251 SET_by_offset(disp, _gloffset_TexGend, fn); 4252 } 4253 4254 typedef void (GLAPIENTRYP _glptr_TexGendv)(GLenum, GLenum, const GLdouble *); 4255 #define CALL_TexGendv(disp, parameters) \ 4256 (* GET_TexGendv(disp)) parameters 4257 static inline _glptr_TexGendv GET_TexGendv(struct _glapi_table *disp) { 4258 return (_glptr_TexGendv) (GET_by_offset(disp, _gloffset_TexGendv)); 4259 } 4260 4261 static inline void SET_TexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLdouble *)) { 4262 SET_by_offset(disp, _gloffset_TexGendv, fn); 4263 } 4264 4265 typedef void (GLAPIENTRYP _glptr_TexGenf)(GLenum, GLenum, GLfloat); 4266 #define CALL_TexGenf(disp, parameters) \ 4267 (* GET_TexGenf(disp)) parameters 4268 static inline _glptr_TexGenf GET_TexGenf(struct _glapi_table *disp) { 4269 return (_glptr_TexGenf) (GET_by_offset(disp, _gloffset_TexGenf)); 4270 } 4271 4272 static inline void SET_TexGenf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) { 4273 SET_by_offset(disp, _gloffset_TexGenf, fn); 4274 } 4275 4276 typedef void (GLAPIENTRYP _glptr_TexGenfv)(GLenum, GLenum, const GLfloat *); 4277 #define CALL_TexGenfv(disp, parameters) \ 4278 (* GET_TexGenfv(disp)) parameters 4279 static inline _glptr_TexGenfv GET_TexGenfv(struct _glapi_table *disp) { 4280 return (_glptr_TexGenfv) (GET_by_offset(disp, _gloffset_TexGenfv)); 4281 } 4282 4283 static inline void SET_TexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 4284 SET_by_offset(disp, _gloffset_TexGenfv, fn); 4285 } 4286 4287 typedef void (GLAPIENTRYP _glptr_TexGeni)(GLenum, GLenum, GLint); 4288 #define CALL_TexGeni(disp, parameters) \ 4289 (* GET_TexGeni(disp)) parameters 4290 static inline _glptr_TexGeni GET_TexGeni(struct _glapi_table *disp) { 4291 return (_glptr_TexGeni) (GET_by_offset(disp, _gloffset_TexGeni)); 4292 } 4293 4294 static inline void SET_TexGeni(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 4295 SET_by_offset(disp, _gloffset_TexGeni, fn); 4296 } 4297 4298 typedef void (GLAPIENTRYP _glptr_TexGeniv)(GLenum, GLenum, const GLint *); 4299 #define CALL_TexGeniv(disp, parameters) \ 4300 (* GET_TexGeniv(disp)) parameters 4301 static inline _glptr_TexGeniv GET_TexGeniv(struct _glapi_table *disp) { 4302 return (_glptr_TexGeniv) (GET_by_offset(disp, _gloffset_TexGeniv)); 4303 } 4304 4305 static inline void SET_TexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 4306 SET_by_offset(disp, _gloffset_TexGeniv, fn); 4307 } 4308 4309 typedef void (GLAPIENTRYP _glptr_FeedbackBuffer)(GLsizei, GLenum, GLfloat *); 4310 #define CALL_FeedbackBuffer(disp, parameters) \ 4311 (* GET_FeedbackBuffer(disp)) parameters 4312 static inline _glptr_FeedbackBuffer GET_FeedbackBuffer(struct _glapi_table *disp) { 4313 return (_glptr_FeedbackBuffer) (GET_by_offset(disp, _gloffset_FeedbackBuffer)); 4314 } 4315 4316 static inline void SET_FeedbackBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, GLfloat *)) { 4317 SET_by_offset(disp, _gloffset_FeedbackBuffer, fn); 4318 } 4319 4320 typedef void (GLAPIENTRYP _glptr_SelectBuffer)(GLsizei, GLuint *); 4321 #define CALL_SelectBuffer(disp, parameters) \ 4322 (* GET_SelectBuffer(disp)) parameters 4323 static inline _glptr_SelectBuffer GET_SelectBuffer(struct _glapi_table *disp) { 4324 return (_glptr_SelectBuffer) (GET_by_offset(disp, _gloffset_SelectBuffer)); 4325 } 4326 4327 static inline void SET_SelectBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 4328 SET_by_offset(disp, _gloffset_SelectBuffer, fn); 4329 } 4330 4331 typedef GLint (GLAPIENTRYP _glptr_RenderMode)(GLenum); 4332 #define CALL_RenderMode(disp, parameters) \ 4333 (* GET_RenderMode(disp)) parameters 4334 static inline _glptr_RenderMode GET_RenderMode(struct _glapi_table *disp) { 4335 return (_glptr_RenderMode) (GET_by_offset(disp, _gloffset_RenderMode)); 4336 } 4337 4338 static inline void SET_RenderMode(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLenum)) { 4339 SET_by_offset(disp, _gloffset_RenderMode, fn); 4340 } 4341 4342 typedef void (GLAPIENTRYP _glptr_InitNames)(void); 4343 #define CALL_InitNames(disp, parameters) \ 4344 (* GET_InitNames(disp)) parameters 4345 static inline _glptr_InitNames GET_InitNames(struct _glapi_table *disp) { 4346 return (_glptr_InitNames) (GET_by_offset(disp, _gloffset_InitNames)); 4347 } 4348 4349 static inline void SET_InitNames(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 4350 SET_by_offset(disp, _gloffset_InitNames, fn); 4351 } 4352 4353 typedef void (GLAPIENTRYP _glptr_LoadName)(GLuint); 4354 #define CALL_LoadName(disp, parameters) \ 4355 (* GET_LoadName(disp)) parameters 4356 static inline _glptr_LoadName GET_LoadName(struct _glapi_table *disp) { 4357 return (_glptr_LoadName) (GET_by_offset(disp, _gloffset_LoadName)); 4358 } 4359 4360 static inline void SET_LoadName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 4361 SET_by_offset(disp, _gloffset_LoadName, fn); 4362 } 4363 4364 typedef void (GLAPIENTRYP _glptr_PassThrough)(GLfloat); 4365 #define CALL_PassThrough(disp, parameters) \ 4366 (* GET_PassThrough(disp)) parameters 4367 static inline _glptr_PassThrough GET_PassThrough(struct _glapi_table *disp) { 4368 return (_glptr_PassThrough) (GET_by_offset(disp, _gloffset_PassThrough)); 4369 } 4370 4371 static inline void SET_PassThrough(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 4372 SET_by_offset(disp, _gloffset_PassThrough, fn); 4373 } 4374 4375 typedef void (GLAPIENTRYP _glptr_PopName)(void); 4376 #define CALL_PopName(disp, parameters) \ 4377 (* GET_PopName(disp)) parameters 4378 static inline _glptr_PopName GET_PopName(struct _glapi_table *disp) { 4379 return (_glptr_PopName) (GET_by_offset(disp, _gloffset_PopName)); 4380 } 4381 4382 static inline void SET_PopName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 4383 SET_by_offset(disp, _gloffset_PopName, fn); 4384 } 4385 4386 typedef void (GLAPIENTRYP _glptr_PushName)(GLuint); 4387 #define CALL_PushName(disp, parameters) \ 4388 (* GET_PushName(disp)) parameters 4389 static inline _glptr_PushName GET_PushName(struct _glapi_table *disp) { 4390 return (_glptr_PushName) (GET_by_offset(disp, _gloffset_PushName)); 4391 } 4392 4393 static inline void SET_PushName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 4394 SET_by_offset(disp, _gloffset_PushName, fn); 4395 } 4396 4397 typedef void (GLAPIENTRYP _glptr_DrawBuffer)(GLenum); 4398 #define CALL_DrawBuffer(disp, parameters) \ 4399 (* GET_DrawBuffer(disp)) parameters 4400 static inline _glptr_DrawBuffer GET_DrawBuffer(struct _glapi_table *disp) { 4401 return (_glptr_DrawBuffer) (GET_by_offset(disp, _gloffset_DrawBuffer)); 4402 } 4403 4404 static inline void SET_DrawBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4405 SET_by_offset(disp, _gloffset_DrawBuffer, fn); 4406 } 4407 4408 typedef void (GLAPIENTRYP _glptr_Clear)(GLbitfield); 4409 #define CALL_Clear(disp, parameters) \ 4410 (* GET_Clear(disp)) parameters 4411 static inline _glptr_Clear GET_Clear(struct _glapi_table *disp) { 4412 return (_glptr_Clear) (GET_by_offset(disp, _gloffset_Clear)); 4413 } 4414 4415 static inline void SET_Clear(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) { 4416 SET_by_offset(disp, _gloffset_Clear, fn); 4417 } 4418 4419 typedef void (GLAPIENTRYP _glptr_ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat); 4420 #define CALL_ClearAccum(disp, parameters) \ 4421 (* GET_ClearAccum(disp)) parameters 4422 static inline _glptr_ClearAccum GET_ClearAccum(struct _glapi_table *disp) { 4423 return (_glptr_ClearAccum) (GET_by_offset(disp, _gloffset_ClearAccum)); 4424 } 4425 4426 static inline void SET_ClearAccum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 4427 SET_by_offset(disp, _gloffset_ClearAccum, fn); 4428 } 4429 4430 typedef void (GLAPIENTRYP _glptr_ClearIndex)(GLfloat); 4431 #define CALL_ClearIndex(disp, parameters) \ 4432 (* GET_ClearIndex(disp)) parameters 4433 static inline _glptr_ClearIndex GET_ClearIndex(struct _glapi_table *disp) { 4434 return (_glptr_ClearIndex) (GET_by_offset(disp, _gloffset_ClearIndex)); 4435 } 4436 4437 static inline void SET_ClearIndex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 4438 SET_by_offset(disp, _gloffset_ClearIndex, fn); 4439 } 4440 4441 typedef void (GLAPIENTRYP _glptr_ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf); 4442 #define CALL_ClearColor(disp, parameters) \ 4443 (* GET_ClearColor(disp)) parameters 4444 static inline _glptr_ClearColor GET_ClearColor(struct _glapi_table *disp) { 4445 return (_glptr_ClearColor) (GET_by_offset(disp, _gloffset_ClearColor)); 4446 } 4447 4448 static inline void SET_ClearColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) { 4449 SET_by_offset(disp, _gloffset_ClearColor, fn); 4450 } 4451 4452 typedef void (GLAPIENTRYP _glptr_ClearStencil)(GLint); 4453 #define CALL_ClearStencil(disp, parameters) \ 4454 (* GET_ClearStencil(disp)) parameters 4455 static inline _glptr_ClearStencil GET_ClearStencil(struct _glapi_table *disp) { 4456 return (_glptr_ClearStencil) (GET_by_offset(disp, _gloffset_ClearStencil)); 4457 } 4458 4459 static inline void SET_ClearStencil(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) { 4460 SET_by_offset(disp, _gloffset_ClearStencil, fn); 4461 } 4462 4463 typedef void (GLAPIENTRYP _glptr_ClearDepth)(GLclampd); 4464 #define CALL_ClearDepth(disp, parameters) \ 4465 (* GET_ClearDepth(disp)) parameters 4466 static inline _glptr_ClearDepth GET_ClearDepth(struct _glapi_table *disp) { 4467 return (_glptr_ClearDepth) (GET_by_offset(disp, _gloffset_ClearDepth)); 4468 } 4469 4470 static inline void SET_ClearDepth(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd)) { 4471 SET_by_offset(disp, _gloffset_ClearDepth, fn); 4472 } 4473 4474 typedef void (GLAPIENTRYP _glptr_StencilMask)(GLuint); 4475 #define CALL_StencilMask(disp, parameters) \ 4476 (* GET_StencilMask(disp)) parameters 4477 static inline _glptr_StencilMask GET_StencilMask(struct _glapi_table *disp) { 4478 return (_glptr_StencilMask) (GET_by_offset(disp, _gloffset_StencilMask)); 4479 } 4480 4481 static inline void SET_StencilMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 4482 SET_by_offset(disp, _gloffset_StencilMask, fn); 4483 } 4484 4485 typedef void (GLAPIENTRYP _glptr_ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean); 4486 #define CALL_ColorMask(disp, parameters) \ 4487 (* GET_ColorMask(disp)) parameters 4488 static inline _glptr_ColorMask GET_ColorMask(struct _glapi_table *disp) { 4489 return (_glptr_ColorMask) (GET_by_offset(disp, _gloffset_ColorMask)); 4490 } 4491 4492 static inline void SET_ColorMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean, GLboolean, GLboolean, GLboolean)) { 4493 SET_by_offset(disp, _gloffset_ColorMask, fn); 4494 } 4495 4496 typedef void (GLAPIENTRYP _glptr_DepthMask)(GLboolean); 4497 #define CALL_DepthMask(disp, parameters) \ 4498 (* GET_DepthMask(disp)) parameters 4499 static inline _glptr_DepthMask GET_DepthMask(struct _glapi_table *disp) { 4500 return (_glptr_DepthMask) (GET_by_offset(disp, _gloffset_DepthMask)); 4501 } 4502 4503 static inline void SET_DepthMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLboolean)) { 4504 SET_by_offset(disp, _gloffset_DepthMask, fn); 4505 } 4506 4507 typedef void (GLAPIENTRYP _glptr_IndexMask)(GLuint); 4508 #define CALL_IndexMask(disp, parameters) \ 4509 (* GET_IndexMask(disp)) parameters 4510 static inline _glptr_IndexMask GET_IndexMask(struct _glapi_table *disp) { 4511 return (_glptr_IndexMask) (GET_by_offset(disp, _gloffset_IndexMask)); 4512 } 4513 4514 static inline void SET_IndexMask(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 4515 SET_by_offset(disp, _gloffset_IndexMask, fn); 4516 } 4517 4518 typedef void (GLAPIENTRYP _glptr_Accum)(GLenum, GLfloat); 4519 #define CALL_Accum(disp, parameters) \ 4520 (* GET_Accum(disp)) parameters 4521 static inline _glptr_Accum GET_Accum(struct _glapi_table *disp) { 4522 return (_glptr_Accum) (GET_by_offset(disp, _gloffset_Accum)); 4523 } 4524 4525 static inline void SET_Accum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 4526 SET_by_offset(disp, _gloffset_Accum, fn); 4527 } 4528 4529 typedef void (GLAPIENTRYP _glptr_Disable)(GLenum); 4530 #define CALL_Disable(disp, parameters) \ 4531 (* GET_Disable(disp)) parameters 4532 static inline _glptr_Disable GET_Disable(struct _glapi_table *disp) { 4533 return (_glptr_Disable) (GET_by_offset(disp, _gloffset_Disable)); 4534 } 4535 4536 static inline void SET_Disable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4537 SET_by_offset(disp, _gloffset_Disable, fn); 4538 } 4539 4540 typedef void (GLAPIENTRYP _glptr_Enable)(GLenum); 4541 #define CALL_Enable(disp, parameters) \ 4542 (* GET_Enable(disp)) parameters 4543 static inline _glptr_Enable GET_Enable(struct _glapi_table *disp) { 4544 return (_glptr_Enable) (GET_by_offset(disp, _gloffset_Enable)); 4545 } 4546 4547 static inline void SET_Enable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4548 SET_by_offset(disp, _gloffset_Enable, fn); 4549 } 4550 4551 typedef void (GLAPIENTRYP _glptr_Finish)(void); 4552 #define CALL_Finish(disp, parameters) \ 4553 (* GET_Finish(disp)) parameters 4554 static inline _glptr_Finish GET_Finish(struct _glapi_table *disp) { 4555 return (_glptr_Finish) (GET_by_offset(disp, _gloffset_Finish)); 4556 } 4557 4558 static inline void SET_Finish(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 4559 SET_by_offset(disp, _gloffset_Finish, fn); 4560 } 4561 4562 typedef void (GLAPIENTRYP _glptr_Flush)(void); 4563 #define CALL_Flush(disp, parameters) \ 4564 (* GET_Flush(disp)) parameters 4565 static inline _glptr_Flush GET_Flush(struct _glapi_table *disp) { 4566 return (_glptr_Flush) (GET_by_offset(disp, _gloffset_Flush)); 4567 } 4568 4569 static inline void SET_Flush(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 4570 SET_by_offset(disp, _gloffset_Flush, fn); 4571 } 4572 4573 typedef void (GLAPIENTRYP _glptr_PopAttrib)(void); 4574 #define CALL_PopAttrib(disp, parameters) \ 4575 (* GET_PopAttrib(disp)) parameters 4576 static inline _glptr_PopAttrib GET_PopAttrib(struct _glapi_table *disp) { 4577 return (_glptr_PopAttrib) (GET_by_offset(disp, _gloffset_PopAttrib)); 4578 } 4579 4580 static inline void SET_PopAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 4581 SET_by_offset(disp, _gloffset_PopAttrib, fn); 4582 } 4583 4584 typedef void (GLAPIENTRYP _glptr_PushAttrib)(GLbitfield); 4585 #define CALL_PushAttrib(disp, parameters) \ 4586 (* GET_PushAttrib(disp)) parameters 4587 static inline _glptr_PushAttrib GET_PushAttrib(struct _glapi_table *disp) { 4588 return (_glptr_PushAttrib) (GET_by_offset(disp, _gloffset_PushAttrib)); 4589 } 4590 4591 static inline void SET_PushAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) { 4592 SET_by_offset(disp, _gloffset_PushAttrib, fn); 4593 } 4594 4595 typedef void (GLAPIENTRYP _glptr_Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *); 4596 #define CALL_Map1d(disp, parameters) \ 4597 (* GET_Map1d(disp)) parameters 4598 static inline _glptr_Map1d GET_Map1d(struct _glapi_table *disp) { 4599 return (_glptr_Map1d) (GET_by_offset(disp, _gloffset_Map1d)); 4600 } 4601 4602 static inline void SET_Map1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) { 4603 SET_by_offset(disp, _gloffset_Map1d, fn); 4604 } 4605 4606 typedef void (GLAPIENTRYP _glptr_Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *); 4607 #define CALL_Map1f(disp, parameters) \ 4608 (* GET_Map1f(disp)) parameters 4609 static inline _glptr_Map1f GET_Map1f(struct _glapi_table *disp) { 4610 return (_glptr_Map1f) (GET_by_offset(disp, _gloffset_Map1f)); 4611 } 4612 4613 static inline void SET_Map1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) { 4614 SET_by_offset(disp, _gloffset_Map1f, fn); 4615 } 4616 4617 typedef void (GLAPIENTRYP _glptr_Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *); 4618 #define CALL_Map2d(disp, parameters) \ 4619 (* GET_Map2d(disp)) parameters 4620 static inline _glptr_Map2d GET_Map2d(struct _glapi_table *disp) { 4621 return (_glptr_Map2d) (GET_by_offset(disp, _gloffset_Map2d)); 4622 } 4623 4624 static inline void SET_Map2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *)) { 4625 SET_by_offset(disp, _gloffset_Map2d, fn); 4626 } 4627 4628 typedef void (GLAPIENTRYP _glptr_Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *); 4629 #define CALL_Map2f(disp, parameters) \ 4630 (* GET_Map2f(disp)) parameters 4631 static inline _glptr_Map2f GET_Map2f(struct _glapi_table *disp) { 4632 return (_glptr_Map2f) (GET_by_offset(disp, _gloffset_Map2f)); 4633 } 4634 4635 static inline void SET_Map2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *)) { 4636 SET_by_offset(disp, _gloffset_Map2f, fn); 4637 } 4638 4639 typedef void (GLAPIENTRYP _glptr_MapGrid1d)(GLint, GLdouble, GLdouble); 4640 #define CALL_MapGrid1d(disp, parameters) \ 4641 (* GET_MapGrid1d(disp)) parameters 4642 static inline _glptr_MapGrid1d GET_MapGrid1d(struct _glapi_table *disp) { 4643 return (_glptr_MapGrid1d) (GET_by_offset(disp, _gloffset_MapGrid1d)); 4644 } 4645 4646 static inline void SET_MapGrid1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble)) { 4647 SET_by_offset(disp, _gloffset_MapGrid1d, fn); 4648 } 4649 4650 typedef void (GLAPIENTRYP _glptr_MapGrid1f)(GLint, GLfloat, GLfloat); 4651 #define CALL_MapGrid1f(disp, parameters) \ 4652 (* GET_MapGrid1f(disp)) parameters 4653 static inline _glptr_MapGrid1f GET_MapGrid1f(struct _glapi_table *disp) { 4654 return (_glptr_MapGrid1f) (GET_by_offset(disp, _gloffset_MapGrid1f)); 4655 } 4656 4657 static inline void SET_MapGrid1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) { 4658 SET_by_offset(disp, _gloffset_MapGrid1f, fn); 4659 } 4660 4661 typedef void (GLAPIENTRYP _glptr_MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble); 4662 #define CALL_MapGrid2d(disp, parameters) \ 4663 (* GET_MapGrid2d(disp)) parameters 4664 static inline _glptr_MapGrid2d GET_MapGrid2d(struct _glapi_table *disp) { 4665 return (_glptr_MapGrid2d) (GET_by_offset(disp, _gloffset_MapGrid2d)); 4666 } 4667 4668 static inline void SET_MapGrid2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble)) { 4669 SET_by_offset(disp, _gloffset_MapGrid2d, fn); 4670 } 4671 4672 typedef void (GLAPIENTRYP _glptr_MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat); 4673 #define CALL_MapGrid2f(disp, parameters) \ 4674 (* GET_MapGrid2f(disp)) parameters 4675 static inline _glptr_MapGrid2f GET_MapGrid2f(struct _glapi_table *disp) { 4676 return (_glptr_MapGrid2f) (GET_by_offset(disp, _gloffset_MapGrid2f)); 4677 } 4678 4679 static inline void SET_MapGrid2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat)) { 4680 SET_by_offset(disp, _gloffset_MapGrid2f, fn); 4681 } 4682 4683 typedef void (GLAPIENTRYP _glptr_EvalCoord1d)(GLdouble); 4684 #define CALL_EvalCoord1d(disp, parameters) \ 4685 (* GET_EvalCoord1d(disp)) parameters 4686 static inline _glptr_EvalCoord1d GET_EvalCoord1d(struct _glapi_table *disp) { 4687 return (_glptr_EvalCoord1d) (GET_by_offset(disp, _gloffset_EvalCoord1d)); 4688 } 4689 4690 static inline void SET_EvalCoord1d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) { 4691 SET_by_offset(disp, _gloffset_EvalCoord1d, fn); 4692 } 4693 4694 typedef void (GLAPIENTRYP _glptr_EvalCoord1dv)(const GLdouble *); 4695 #define CALL_EvalCoord1dv(disp, parameters) \ 4696 (* GET_EvalCoord1dv(disp)) parameters 4697 static inline _glptr_EvalCoord1dv GET_EvalCoord1dv(struct _glapi_table *disp) { 4698 return (_glptr_EvalCoord1dv) (GET_by_offset(disp, _gloffset_EvalCoord1dv)); 4699 } 4700 4701 static inline void SET_EvalCoord1dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 4702 SET_by_offset(disp, _gloffset_EvalCoord1dv, fn); 4703 } 4704 4705 typedef void (GLAPIENTRYP _glptr_EvalCoord1f)(GLfloat); 4706 #define CALL_EvalCoord1f(disp, parameters) \ 4707 (* GET_EvalCoord1f(disp)) parameters 4708 static inline _glptr_EvalCoord1f GET_EvalCoord1f(struct _glapi_table *disp) { 4709 return (_glptr_EvalCoord1f) (GET_by_offset(disp, _gloffset_EvalCoord1f)); 4710 } 4711 4712 static inline void SET_EvalCoord1f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 4713 SET_by_offset(disp, _gloffset_EvalCoord1f, fn); 4714 } 4715 4716 typedef void (GLAPIENTRYP _glptr_EvalCoord1fv)(const GLfloat *); 4717 #define CALL_EvalCoord1fv(disp, parameters) \ 4718 (* GET_EvalCoord1fv(disp)) parameters 4719 static inline _glptr_EvalCoord1fv GET_EvalCoord1fv(struct _glapi_table *disp) { 4720 return (_glptr_EvalCoord1fv) (GET_by_offset(disp, _gloffset_EvalCoord1fv)); 4721 } 4722 4723 static inline void SET_EvalCoord1fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 4724 SET_by_offset(disp, _gloffset_EvalCoord1fv, fn); 4725 } 4726 4727 typedef void (GLAPIENTRYP _glptr_EvalCoord2d)(GLdouble, GLdouble); 4728 #define CALL_EvalCoord2d(disp, parameters) \ 4729 (* GET_EvalCoord2d(disp)) parameters 4730 static inline _glptr_EvalCoord2d GET_EvalCoord2d(struct _glapi_table *disp) { 4731 return (_glptr_EvalCoord2d) (GET_by_offset(disp, _gloffset_EvalCoord2d)); 4732 } 4733 4734 static inline void SET_EvalCoord2d(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) { 4735 SET_by_offset(disp, _gloffset_EvalCoord2d, fn); 4736 } 4737 4738 typedef void (GLAPIENTRYP _glptr_EvalCoord2dv)(const GLdouble *); 4739 #define CALL_EvalCoord2dv(disp, parameters) \ 4740 (* GET_EvalCoord2dv(disp)) parameters 4741 static inline _glptr_EvalCoord2dv GET_EvalCoord2dv(struct _glapi_table *disp) { 4742 return (_glptr_EvalCoord2dv) (GET_by_offset(disp, _gloffset_EvalCoord2dv)); 4743 } 4744 4745 static inline void SET_EvalCoord2dv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 4746 SET_by_offset(disp, _gloffset_EvalCoord2dv, fn); 4747 } 4748 4749 typedef void (GLAPIENTRYP _glptr_EvalCoord2f)(GLfloat, GLfloat); 4750 #define CALL_EvalCoord2f(disp, parameters) \ 4751 (* GET_EvalCoord2f(disp)) parameters 4752 static inline _glptr_EvalCoord2f GET_EvalCoord2f(struct _glapi_table *disp) { 4753 return (_glptr_EvalCoord2f) (GET_by_offset(disp, _gloffset_EvalCoord2f)); 4754 } 4755 4756 static inline void SET_EvalCoord2f(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 4757 SET_by_offset(disp, _gloffset_EvalCoord2f, fn); 4758 } 4759 4760 typedef void (GLAPIENTRYP _glptr_EvalCoord2fv)(const GLfloat *); 4761 #define CALL_EvalCoord2fv(disp, parameters) \ 4762 (* GET_EvalCoord2fv(disp)) parameters 4763 static inline _glptr_EvalCoord2fv GET_EvalCoord2fv(struct _glapi_table *disp) { 4764 return (_glptr_EvalCoord2fv) (GET_by_offset(disp, _gloffset_EvalCoord2fv)); 4765 } 4766 4767 static inline void SET_EvalCoord2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 4768 SET_by_offset(disp, _gloffset_EvalCoord2fv, fn); 4769 } 4770 4771 typedef void (GLAPIENTRYP _glptr_EvalMesh1)(GLenum, GLint, GLint); 4772 #define CALL_EvalMesh1(disp, parameters) \ 4773 (* GET_EvalMesh1(disp)) parameters 4774 static inline _glptr_EvalMesh1 GET_EvalMesh1(struct _glapi_table *disp) { 4775 return (_glptr_EvalMesh1) (GET_by_offset(disp, _gloffset_EvalMesh1)); 4776 } 4777 4778 static inline void SET_EvalMesh1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) { 4779 SET_by_offset(disp, _gloffset_EvalMesh1, fn); 4780 } 4781 4782 typedef void (GLAPIENTRYP _glptr_EvalPoint1)(GLint); 4783 #define CALL_EvalPoint1(disp, parameters) \ 4784 (* GET_EvalPoint1(disp)) parameters 4785 static inline _glptr_EvalPoint1 GET_EvalPoint1(struct _glapi_table *disp) { 4786 return (_glptr_EvalPoint1) (GET_by_offset(disp, _gloffset_EvalPoint1)); 4787 } 4788 4789 static inline void SET_EvalPoint1(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) { 4790 SET_by_offset(disp, _gloffset_EvalPoint1, fn); 4791 } 4792 4793 typedef void (GLAPIENTRYP _glptr_EvalMesh2)(GLenum, GLint, GLint, GLint, GLint); 4794 #define CALL_EvalMesh2(disp, parameters) \ 4795 (* GET_EvalMesh2(disp)) parameters 4796 static inline _glptr_EvalMesh2 GET_EvalMesh2(struct _glapi_table *disp) { 4797 return (_glptr_EvalMesh2) (GET_by_offset(disp, _gloffset_EvalMesh2)); 4798 } 4799 4800 static inline void SET_EvalMesh2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) { 4801 SET_by_offset(disp, _gloffset_EvalMesh2, fn); 4802 } 4803 4804 typedef void (GLAPIENTRYP _glptr_EvalPoint2)(GLint, GLint); 4805 #define CALL_EvalPoint2(disp, parameters) \ 4806 (* GET_EvalPoint2(disp)) parameters 4807 static inline _glptr_EvalPoint2 GET_EvalPoint2(struct _glapi_table *disp) { 4808 return (_glptr_EvalPoint2) (GET_by_offset(disp, _gloffset_EvalPoint2)); 4809 } 4810 4811 static inline void SET_EvalPoint2(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) { 4812 SET_by_offset(disp, _gloffset_EvalPoint2, fn); 4813 } 4814 4815 typedef void (GLAPIENTRYP _glptr_AlphaFunc)(GLenum, GLclampf); 4816 #define CALL_AlphaFunc(disp, parameters) \ 4817 (* GET_AlphaFunc(disp)) parameters 4818 static inline _glptr_AlphaFunc GET_AlphaFunc(struct _glapi_table *disp) { 4819 return (_glptr_AlphaFunc) (GET_by_offset(disp, _gloffset_AlphaFunc)); 4820 } 4821 4822 static inline void SET_AlphaFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLclampf)) { 4823 SET_by_offset(disp, _gloffset_AlphaFunc, fn); 4824 } 4825 4826 typedef void (GLAPIENTRYP _glptr_BlendFunc)(GLenum, GLenum); 4827 #define CALL_BlendFunc(disp, parameters) \ 4828 (* GET_BlendFunc(disp)) parameters 4829 static inline _glptr_BlendFunc GET_BlendFunc(struct _glapi_table *disp) { 4830 return (_glptr_BlendFunc) (GET_by_offset(disp, _gloffset_BlendFunc)); 4831 } 4832 4833 static inline void SET_BlendFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 4834 SET_by_offset(disp, _gloffset_BlendFunc, fn); 4835 } 4836 4837 typedef void (GLAPIENTRYP _glptr_LogicOp)(GLenum); 4838 #define CALL_LogicOp(disp, parameters) \ 4839 (* GET_LogicOp(disp)) parameters 4840 static inline _glptr_LogicOp GET_LogicOp(struct _glapi_table *disp) { 4841 return (_glptr_LogicOp) (GET_by_offset(disp, _gloffset_LogicOp)); 4842 } 4843 4844 static inline void SET_LogicOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4845 SET_by_offset(disp, _gloffset_LogicOp, fn); 4846 } 4847 4848 typedef void (GLAPIENTRYP _glptr_StencilFunc)(GLenum, GLint, GLuint); 4849 #define CALL_StencilFunc(disp, parameters) \ 4850 (* GET_StencilFunc(disp)) parameters 4851 static inline _glptr_StencilFunc GET_StencilFunc(struct _glapi_table *disp) { 4852 return (_glptr_StencilFunc) (GET_by_offset(disp, _gloffset_StencilFunc)); 4853 } 4854 4855 static inline void SET_StencilFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLuint)) { 4856 SET_by_offset(disp, _gloffset_StencilFunc, fn); 4857 } 4858 4859 typedef void (GLAPIENTRYP _glptr_StencilOp)(GLenum, GLenum, GLenum); 4860 #define CALL_StencilOp(disp, parameters) \ 4861 (* GET_StencilOp(disp)) parameters 4862 static inline _glptr_StencilOp GET_StencilOp(struct _glapi_table *disp) { 4863 return (_glptr_StencilOp) (GET_by_offset(disp, _gloffset_StencilOp)); 4864 } 4865 4866 static inline void SET_StencilOp(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum)) { 4867 SET_by_offset(disp, _gloffset_StencilOp, fn); 4868 } 4869 4870 typedef void (GLAPIENTRYP _glptr_DepthFunc)(GLenum); 4871 #define CALL_DepthFunc(disp, parameters) \ 4872 (* GET_DepthFunc(disp)) parameters 4873 static inline _glptr_DepthFunc GET_DepthFunc(struct _glapi_table *disp) { 4874 return (_glptr_DepthFunc) (GET_by_offset(disp, _gloffset_DepthFunc)); 4875 } 4876 4877 static inline void SET_DepthFunc(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4878 SET_by_offset(disp, _gloffset_DepthFunc, fn); 4879 } 4880 4881 typedef void (GLAPIENTRYP _glptr_PixelZoom)(GLfloat, GLfloat); 4882 #define CALL_PixelZoom(disp, parameters) \ 4883 (* GET_PixelZoom(disp)) parameters 4884 static inline _glptr_PixelZoom GET_PixelZoom(struct _glapi_table *disp) { 4885 return (_glptr_PixelZoom) (GET_by_offset(disp, _gloffset_PixelZoom)); 4886 } 4887 4888 static inline void SET_PixelZoom(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 4889 SET_by_offset(disp, _gloffset_PixelZoom, fn); 4890 } 4891 4892 typedef void (GLAPIENTRYP _glptr_PixelTransferf)(GLenum, GLfloat); 4893 #define CALL_PixelTransferf(disp, parameters) \ 4894 (* GET_PixelTransferf(disp)) parameters 4895 static inline _glptr_PixelTransferf GET_PixelTransferf(struct _glapi_table *disp) { 4896 return (_glptr_PixelTransferf) (GET_by_offset(disp, _gloffset_PixelTransferf)); 4897 } 4898 4899 static inline void SET_PixelTransferf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 4900 SET_by_offset(disp, _gloffset_PixelTransferf, fn); 4901 } 4902 4903 typedef void (GLAPIENTRYP _glptr_PixelTransferi)(GLenum, GLint); 4904 #define CALL_PixelTransferi(disp, parameters) \ 4905 (* GET_PixelTransferi(disp)) parameters 4906 static inline _glptr_PixelTransferi GET_PixelTransferi(struct _glapi_table *disp) { 4907 return (_glptr_PixelTransferi) (GET_by_offset(disp, _gloffset_PixelTransferi)); 4908 } 4909 4910 static inline void SET_PixelTransferi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) { 4911 SET_by_offset(disp, _gloffset_PixelTransferi, fn); 4912 } 4913 4914 typedef void (GLAPIENTRYP _glptr_PixelStoref)(GLenum, GLfloat); 4915 #define CALL_PixelStoref(disp, parameters) \ 4916 (* GET_PixelStoref(disp)) parameters 4917 static inline _glptr_PixelStoref GET_PixelStoref(struct _glapi_table *disp) { 4918 return (_glptr_PixelStoref) (GET_by_offset(disp, _gloffset_PixelStoref)); 4919 } 4920 4921 static inline void SET_PixelStoref(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 4922 SET_by_offset(disp, _gloffset_PixelStoref, fn); 4923 } 4924 4925 typedef void (GLAPIENTRYP _glptr_PixelStorei)(GLenum, GLint); 4926 #define CALL_PixelStorei(disp, parameters) \ 4927 (* GET_PixelStorei(disp)) parameters 4928 static inline _glptr_PixelStorei GET_PixelStorei(struct _glapi_table *disp) { 4929 return (_glptr_PixelStorei) (GET_by_offset(disp, _gloffset_PixelStorei)); 4930 } 4931 4932 static inline void SET_PixelStorei(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) { 4933 SET_by_offset(disp, _gloffset_PixelStorei, fn); 4934 } 4935 4936 typedef void (GLAPIENTRYP _glptr_PixelMapfv)(GLenum, GLsizei, const GLfloat *); 4937 #define CALL_PixelMapfv(disp, parameters) \ 4938 (* GET_PixelMapfv(disp)) parameters 4939 static inline _glptr_PixelMapfv GET_PixelMapfv(struct _glapi_table *disp) { 4940 return (_glptr_PixelMapfv) (GET_by_offset(disp, _gloffset_PixelMapfv)); 4941 } 4942 4943 static inline void SET_PixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLfloat *)) { 4944 SET_by_offset(disp, _gloffset_PixelMapfv, fn); 4945 } 4946 4947 typedef void (GLAPIENTRYP _glptr_PixelMapuiv)(GLenum, GLsizei, const GLuint *); 4948 #define CALL_PixelMapuiv(disp, parameters) \ 4949 (* GET_PixelMapuiv(disp)) parameters 4950 static inline _glptr_PixelMapuiv GET_PixelMapuiv(struct _glapi_table *disp) { 4951 return (_glptr_PixelMapuiv) (GET_by_offset(disp, _gloffset_PixelMapuiv)); 4952 } 4953 4954 static inline void SET_PixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLuint *)) { 4955 SET_by_offset(disp, _gloffset_PixelMapuiv, fn); 4956 } 4957 4958 typedef void (GLAPIENTRYP _glptr_PixelMapusv)(GLenum, GLsizei, const GLushort *); 4959 #define CALL_PixelMapusv(disp, parameters) \ 4960 (* GET_PixelMapusv(disp)) parameters 4961 static inline _glptr_PixelMapusv GET_PixelMapusv(struct _glapi_table *disp) { 4962 return (_glptr_PixelMapusv) (GET_by_offset(disp, _gloffset_PixelMapusv)); 4963 } 4964 4965 static inline void SET_PixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLushort *)) { 4966 SET_by_offset(disp, _gloffset_PixelMapusv, fn); 4967 } 4968 4969 typedef void (GLAPIENTRYP _glptr_ReadBuffer)(GLenum); 4970 #define CALL_ReadBuffer(disp, parameters) \ 4971 (* GET_ReadBuffer(disp)) parameters 4972 static inline _glptr_ReadBuffer GET_ReadBuffer(struct _glapi_table *disp) { 4973 return (_glptr_ReadBuffer) (GET_by_offset(disp, _gloffset_ReadBuffer)); 4974 } 4975 4976 static inline void SET_ReadBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 4977 SET_by_offset(disp, _gloffset_ReadBuffer, fn); 4978 } 4979 4980 typedef void (GLAPIENTRYP _glptr_CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum); 4981 #define CALL_CopyPixels(disp, parameters) \ 4982 (* GET_CopyPixels(disp)) parameters 4983 static inline _glptr_CopyPixels GET_CopyPixels(struct _glapi_table *disp) { 4984 return (_glptr_CopyPixels) (GET_by_offset(disp, _gloffset_CopyPixels)); 4985 } 4986 4987 static inline void SET_CopyPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum)) { 4988 SET_by_offset(disp, _gloffset_CopyPixels, fn); 4989 } 4990 4991 typedef void (GLAPIENTRYP _glptr_ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *); 4992 #define CALL_ReadPixels(disp, parameters) \ 4993 (* GET_ReadPixels(disp)) parameters 4994 static inline _glptr_ReadPixels GET_ReadPixels(struct _glapi_table *disp) { 4995 return (_glptr_ReadPixels) (GET_by_offset(disp, _gloffset_ReadPixels)); 4996 } 4997 4998 static inline void SET_ReadPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *)) { 4999 SET_by_offset(disp, _gloffset_ReadPixels, fn); 5000 } 5001 5002 typedef void (GLAPIENTRYP _glptr_DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); 5003 #define CALL_DrawPixels(disp, parameters) \ 5004 (* GET_DrawPixels(disp)) parameters 5005 static inline _glptr_DrawPixels GET_DrawPixels(struct _glapi_table *disp) { 5006 return (_glptr_DrawPixels) (GET_by_offset(disp, _gloffset_DrawPixels)); 5007 } 5008 5009 static inline void SET_DrawPixels(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) { 5010 SET_by_offset(disp, _gloffset_DrawPixels, fn); 5011 } 5012 5013 typedef void (GLAPIENTRYP _glptr_GetBooleanv)(GLenum, GLboolean *); 5014 #define CALL_GetBooleanv(disp, parameters) \ 5015 (* GET_GetBooleanv(disp)) parameters 5016 static inline _glptr_GetBooleanv GET_GetBooleanv(struct _glapi_table *disp) { 5017 return (_glptr_GetBooleanv) (GET_by_offset(disp, _gloffset_GetBooleanv)); 5018 } 5019 5020 static inline void SET_GetBooleanv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean *)) { 5021 SET_by_offset(disp, _gloffset_GetBooleanv, fn); 5022 } 5023 5024 typedef void (GLAPIENTRYP _glptr_GetClipPlane)(GLenum, GLdouble *); 5025 #define CALL_GetClipPlane(disp, parameters) \ 5026 (* GET_GetClipPlane(disp)) parameters 5027 static inline _glptr_GetClipPlane GET_GetClipPlane(struct _glapi_table *disp) { 5028 return (_glptr_GetClipPlane) (GET_by_offset(disp, _gloffset_GetClipPlane)); 5029 } 5030 5031 static inline void SET_GetClipPlane(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) { 5032 SET_by_offset(disp, _gloffset_GetClipPlane, fn); 5033 } 5034 5035 typedef void (GLAPIENTRYP _glptr_GetDoublev)(GLenum, GLdouble *); 5036 #define CALL_GetDoublev(disp, parameters) \ 5037 (* GET_GetDoublev(disp)) parameters 5038 static inline _glptr_GetDoublev GET_GetDoublev(struct _glapi_table *disp) { 5039 return (_glptr_GetDoublev) (GET_by_offset(disp, _gloffset_GetDoublev)); 5040 } 5041 5042 static inline void SET_GetDoublev(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble *)) { 5043 SET_by_offset(disp, _gloffset_GetDoublev, fn); 5044 } 5045 5046 typedef GLenum (GLAPIENTRYP _glptr_GetError)(void); 5047 #define CALL_GetError(disp, parameters) \ 5048 (* GET_GetError(disp)) parameters 5049 static inline _glptr_GetError GET_GetError(struct _glapi_table *disp) { 5050 return (_glptr_GetError) (GET_by_offset(disp, _gloffset_GetError)); 5051 } 5052 5053 static inline void SET_GetError(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) { 5054 SET_by_offset(disp, _gloffset_GetError, fn); 5055 } 5056 5057 typedef void (GLAPIENTRYP _glptr_GetFloatv)(GLenum, GLfloat *); 5058 #define CALL_GetFloatv(disp, parameters) \ 5059 (* GET_GetFloatv(disp)) parameters 5060 static inline _glptr_GetFloatv GET_GetFloatv(struct _glapi_table *disp) { 5061 return (_glptr_GetFloatv) (GET_by_offset(disp, _gloffset_GetFloatv)); 5062 } 5063 5064 static inline void SET_GetFloatv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) { 5065 SET_by_offset(disp, _gloffset_GetFloatv, fn); 5066 } 5067 5068 typedef void (GLAPIENTRYP _glptr_GetIntegerv)(GLenum, GLint *); 5069 #define CALL_GetIntegerv(disp, parameters) \ 5070 (* GET_GetIntegerv(disp)) parameters 5071 static inline _glptr_GetIntegerv GET_GetIntegerv(struct _glapi_table *disp) { 5072 return (_glptr_GetIntegerv) (GET_by_offset(disp, _gloffset_GetIntegerv)); 5073 } 5074 5075 static inline void SET_GetIntegerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) { 5076 SET_by_offset(disp, _gloffset_GetIntegerv, fn); 5077 } 5078 5079 typedef void (GLAPIENTRYP _glptr_GetLightfv)(GLenum, GLenum, GLfloat *); 5080 #define CALL_GetLightfv(disp, parameters) \ 5081 (* GET_GetLightfv(disp)) parameters 5082 static inline _glptr_GetLightfv GET_GetLightfv(struct _glapi_table *disp) { 5083 return (_glptr_GetLightfv) (GET_by_offset(disp, _gloffset_GetLightfv)); 5084 } 5085 5086 static inline void SET_GetLightfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5087 SET_by_offset(disp, _gloffset_GetLightfv, fn); 5088 } 5089 5090 typedef void (GLAPIENTRYP _glptr_GetLightiv)(GLenum, GLenum, GLint *); 5091 #define CALL_GetLightiv(disp, parameters) \ 5092 (* GET_GetLightiv(disp)) parameters 5093 static inline _glptr_GetLightiv GET_GetLightiv(struct _glapi_table *disp) { 5094 return (_glptr_GetLightiv) (GET_by_offset(disp, _gloffset_GetLightiv)); 5095 } 5096 5097 static inline void SET_GetLightiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5098 SET_by_offset(disp, _gloffset_GetLightiv, fn); 5099 } 5100 5101 typedef void (GLAPIENTRYP _glptr_GetMapdv)(GLenum, GLenum, GLdouble *); 5102 #define CALL_GetMapdv(disp, parameters) \ 5103 (* GET_GetMapdv(disp)) parameters 5104 static inline _glptr_GetMapdv GET_GetMapdv(struct _glapi_table *disp) { 5105 return (_glptr_GetMapdv) (GET_by_offset(disp, _gloffset_GetMapdv)); 5106 } 5107 5108 static inline void SET_GetMapdv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) { 5109 SET_by_offset(disp, _gloffset_GetMapdv, fn); 5110 } 5111 5112 typedef void (GLAPIENTRYP _glptr_GetMapfv)(GLenum, GLenum, GLfloat *); 5113 #define CALL_GetMapfv(disp, parameters) \ 5114 (* GET_GetMapfv(disp)) parameters 5115 static inline _glptr_GetMapfv GET_GetMapfv(struct _glapi_table *disp) { 5116 return (_glptr_GetMapfv) (GET_by_offset(disp, _gloffset_GetMapfv)); 5117 } 5118 5119 static inline void SET_GetMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5120 SET_by_offset(disp, _gloffset_GetMapfv, fn); 5121 } 5122 5123 typedef void (GLAPIENTRYP _glptr_GetMapiv)(GLenum, GLenum, GLint *); 5124 #define CALL_GetMapiv(disp, parameters) \ 5125 (* GET_GetMapiv(disp)) parameters 5126 static inline _glptr_GetMapiv GET_GetMapiv(struct _glapi_table *disp) { 5127 return (_glptr_GetMapiv) (GET_by_offset(disp, _gloffset_GetMapiv)); 5128 } 5129 5130 static inline void SET_GetMapiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5131 SET_by_offset(disp, _gloffset_GetMapiv, fn); 5132 } 5133 5134 typedef void (GLAPIENTRYP _glptr_GetMaterialfv)(GLenum, GLenum, GLfloat *); 5135 #define CALL_GetMaterialfv(disp, parameters) \ 5136 (* GET_GetMaterialfv(disp)) parameters 5137 static inline _glptr_GetMaterialfv GET_GetMaterialfv(struct _glapi_table *disp) { 5138 return (_glptr_GetMaterialfv) (GET_by_offset(disp, _gloffset_GetMaterialfv)); 5139 } 5140 5141 static inline void SET_GetMaterialfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5142 SET_by_offset(disp, _gloffset_GetMaterialfv, fn); 5143 } 5144 5145 typedef void (GLAPIENTRYP _glptr_GetMaterialiv)(GLenum, GLenum, GLint *); 5146 #define CALL_GetMaterialiv(disp, parameters) \ 5147 (* GET_GetMaterialiv(disp)) parameters 5148 static inline _glptr_GetMaterialiv GET_GetMaterialiv(struct _glapi_table *disp) { 5149 return (_glptr_GetMaterialiv) (GET_by_offset(disp, _gloffset_GetMaterialiv)); 5150 } 5151 5152 static inline void SET_GetMaterialiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5153 SET_by_offset(disp, _gloffset_GetMaterialiv, fn); 5154 } 5155 5156 typedef void (GLAPIENTRYP _glptr_GetPixelMapfv)(GLenum, GLfloat *); 5157 #define CALL_GetPixelMapfv(disp, parameters) \ 5158 (* GET_GetPixelMapfv(disp)) parameters 5159 static inline _glptr_GetPixelMapfv GET_GetPixelMapfv(struct _glapi_table *disp) { 5160 return (_glptr_GetPixelMapfv) (GET_by_offset(disp, _gloffset_GetPixelMapfv)); 5161 } 5162 5163 static inline void SET_GetPixelMapfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) { 5164 SET_by_offset(disp, _gloffset_GetPixelMapfv, fn); 5165 } 5166 5167 typedef void (GLAPIENTRYP _glptr_GetPixelMapuiv)(GLenum, GLuint *); 5168 #define CALL_GetPixelMapuiv(disp, parameters) \ 5169 (* GET_GetPixelMapuiv(disp)) parameters 5170 static inline _glptr_GetPixelMapuiv GET_GetPixelMapuiv(struct _glapi_table *disp) { 5171 return (_glptr_GetPixelMapuiv) (GET_by_offset(disp, _gloffset_GetPixelMapuiv)); 5172 } 5173 5174 static inline void SET_GetPixelMapuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint *)) { 5175 SET_by_offset(disp, _gloffset_GetPixelMapuiv, fn); 5176 } 5177 5178 typedef void (GLAPIENTRYP _glptr_GetPixelMapusv)(GLenum, GLushort *); 5179 #define CALL_GetPixelMapusv(disp, parameters) \ 5180 (* GET_GetPixelMapusv(disp)) parameters 5181 static inline _glptr_GetPixelMapusv GET_GetPixelMapusv(struct _glapi_table *disp) { 5182 return (_glptr_GetPixelMapusv) (GET_by_offset(disp, _gloffset_GetPixelMapusv)); 5183 } 5184 5185 static inline void SET_GetPixelMapusv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLushort *)) { 5186 SET_by_offset(disp, _gloffset_GetPixelMapusv, fn); 5187 } 5188 5189 typedef void (GLAPIENTRYP _glptr_GetPolygonStipple)(GLubyte *); 5190 #define CALL_GetPolygonStipple(disp, parameters) \ 5191 (* GET_GetPolygonStipple(disp)) parameters 5192 static inline _glptr_GetPolygonStipple GET_GetPolygonStipple(struct _glapi_table *disp) { 5193 return (_glptr_GetPolygonStipple) (GET_by_offset(disp, _gloffset_GetPolygonStipple)); 5194 } 5195 5196 static inline void SET_GetPolygonStipple(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte *)) { 5197 SET_by_offset(disp, _gloffset_GetPolygonStipple, fn); 5198 } 5199 5200 typedef const GLubyte * (GLAPIENTRYP _glptr_GetString)(GLenum); 5201 #define CALL_GetString(disp, parameters) \ 5202 (* GET_GetString(disp)) parameters 5203 static inline _glptr_GetString GET_GetString(struct _glapi_table *disp) { 5204 return (_glptr_GetString) (GET_by_offset(disp, _gloffset_GetString)); 5205 } 5206 5207 static inline void SET_GetString(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum)) { 5208 SET_by_offset(disp, _gloffset_GetString, fn); 5209 } 5210 5211 typedef void (GLAPIENTRYP _glptr_GetTexEnvfv)(GLenum, GLenum, GLfloat *); 5212 #define CALL_GetTexEnvfv(disp, parameters) \ 5213 (* GET_GetTexEnvfv(disp)) parameters 5214 static inline _glptr_GetTexEnvfv GET_GetTexEnvfv(struct _glapi_table *disp) { 5215 return (_glptr_GetTexEnvfv) (GET_by_offset(disp, _gloffset_GetTexEnvfv)); 5216 } 5217 5218 static inline void SET_GetTexEnvfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5219 SET_by_offset(disp, _gloffset_GetTexEnvfv, fn); 5220 } 5221 5222 typedef void (GLAPIENTRYP _glptr_GetTexEnviv)(GLenum, GLenum, GLint *); 5223 #define CALL_GetTexEnviv(disp, parameters) \ 5224 (* GET_GetTexEnviv(disp)) parameters 5225 static inline _glptr_GetTexEnviv GET_GetTexEnviv(struct _glapi_table *disp) { 5226 return (_glptr_GetTexEnviv) (GET_by_offset(disp, _gloffset_GetTexEnviv)); 5227 } 5228 5229 static inline void SET_GetTexEnviv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5230 SET_by_offset(disp, _gloffset_GetTexEnviv, fn); 5231 } 5232 5233 typedef void (GLAPIENTRYP _glptr_GetTexGendv)(GLenum, GLenum, GLdouble *); 5234 #define CALL_GetTexGendv(disp, parameters) \ 5235 (* GET_GetTexGendv(disp)) parameters 5236 static inline _glptr_GetTexGendv GET_GetTexGendv(struct _glapi_table *disp) { 5237 return (_glptr_GetTexGendv) (GET_by_offset(disp, _gloffset_GetTexGendv)); 5238 } 5239 5240 static inline void SET_GetTexGendv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLdouble *)) { 5241 SET_by_offset(disp, _gloffset_GetTexGendv, fn); 5242 } 5243 5244 typedef void (GLAPIENTRYP _glptr_GetTexGenfv)(GLenum, GLenum, GLfloat *); 5245 #define CALL_GetTexGenfv(disp, parameters) \ 5246 (* GET_GetTexGenfv(disp)) parameters 5247 static inline _glptr_GetTexGenfv GET_GetTexGenfv(struct _glapi_table *disp) { 5248 return (_glptr_GetTexGenfv) (GET_by_offset(disp, _gloffset_GetTexGenfv)); 5249 } 5250 5251 static inline void SET_GetTexGenfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5252 SET_by_offset(disp, _gloffset_GetTexGenfv, fn); 5253 } 5254 5255 typedef void (GLAPIENTRYP _glptr_GetTexGeniv)(GLenum, GLenum, GLint *); 5256 #define CALL_GetTexGeniv(disp, parameters) \ 5257 (* GET_GetTexGeniv(disp)) parameters 5258 static inline _glptr_GetTexGeniv GET_GetTexGeniv(struct _glapi_table *disp) { 5259 return (_glptr_GetTexGeniv) (GET_by_offset(disp, _gloffset_GetTexGeniv)); 5260 } 5261 5262 static inline void SET_GetTexGeniv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5263 SET_by_offset(disp, _gloffset_GetTexGeniv, fn); 5264 } 5265 5266 typedef void (GLAPIENTRYP _glptr_GetTexImage)(GLenum, GLint, GLenum, GLenum, GLvoid *); 5267 #define CALL_GetTexImage(disp, parameters) \ 5268 (* GET_GetTexImage(disp)) parameters 5269 static inline _glptr_GetTexImage GET_GetTexImage(struct _glapi_table *disp) { 5270 return (_glptr_GetTexImage) (GET_by_offset(disp, _gloffset_GetTexImage)); 5271 } 5272 5273 static inline void SET_GetTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLvoid *)) { 5274 SET_by_offset(disp, _gloffset_GetTexImage, fn); 5275 } 5276 5277 typedef void (GLAPIENTRYP _glptr_GetTexParameterfv)(GLenum, GLenum, GLfloat *); 5278 #define CALL_GetTexParameterfv(disp, parameters) \ 5279 (* GET_GetTexParameterfv(disp)) parameters 5280 static inline _glptr_GetTexParameterfv GET_GetTexParameterfv(struct _glapi_table *disp) { 5281 return (_glptr_GetTexParameterfv) (GET_by_offset(disp, _gloffset_GetTexParameterfv)); 5282 } 5283 5284 static inline void SET_GetTexParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5285 SET_by_offset(disp, _gloffset_GetTexParameterfv, fn); 5286 } 5287 5288 typedef void (GLAPIENTRYP _glptr_GetTexParameteriv)(GLenum, GLenum, GLint *); 5289 #define CALL_GetTexParameteriv(disp, parameters) \ 5290 (* GET_GetTexParameteriv(disp)) parameters 5291 static inline _glptr_GetTexParameteriv GET_GetTexParameteriv(struct _glapi_table *disp) { 5292 return (_glptr_GetTexParameteriv) (GET_by_offset(disp, _gloffset_GetTexParameteriv)); 5293 } 5294 5295 static inline void SET_GetTexParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5296 SET_by_offset(disp, _gloffset_GetTexParameteriv, fn); 5297 } 5298 5299 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *); 5300 #define CALL_GetTexLevelParameterfv(disp, parameters) \ 5301 (* GET_GetTexLevelParameterfv(disp)) parameters 5302 static inline _glptr_GetTexLevelParameterfv GET_GetTexLevelParameterfv(struct _glapi_table *disp) { 5303 return (_glptr_GetTexLevelParameterfv) (GET_by_offset(disp, _gloffset_GetTexLevelParameterfv)); 5304 } 5305 5306 static inline void SET_GetTexLevelParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLfloat *)) { 5307 SET_by_offset(disp, _gloffset_GetTexLevelParameterfv, fn); 5308 } 5309 5310 typedef void (GLAPIENTRYP _glptr_GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *); 5311 #define CALL_GetTexLevelParameteriv(disp, parameters) \ 5312 (* GET_GetTexLevelParameteriv(disp)) parameters 5313 static inline _glptr_GetTexLevelParameteriv GET_GetTexLevelParameteriv(struct _glapi_table *disp) { 5314 return (_glptr_GetTexLevelParameteriv) (GET_by_offset(disp, _gloffset_GetTexLevelParameteriv)); 5315 } 5316 5317 static inline void SET_GetTexLevelParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint *)) { 5318 SET_by_offset(disp, _gloffset_GetTexLevelParameteriv, fn); 5319 } 5320 5321 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabled)(GLenum); 5322 #define CALL_IsEnabled(disp, parameters) \ 5323 (* GET_IsEnabled(disp)) parameters 5324 static inline _glptr_IsEnabled GET_IsEnabled(struct _glapi_table *disp) { 5325 return (_glptr_IsEnabled) (GET_by_offset(disp, _gloffset_IsEnabled)); 5326 } 5327 5328 static inline void SET_IsEnabled(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) { 5329 SET_by_offset(disp, _gloffset_IsEnabled, fn); 5330 } 5331 5332 typedef GLboolean (GLAPIENTRYP _glptr_IsList)(GLuint); 5333 #define CALL_IsList(disp, parameters) \ 5334 (* GET_IsList(disp)) parameters 5335 static inline _glptr_IsList GET_IsList(struct _glapi_table *disp) { 5336 return (_glptr_IsList) (GET_by_offset(disp, _gloffset_IsList)); 5337 } 5338 5339 static inline void SET_IsList(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 5340 SET_by_offset(disp, _gloffset_IsList, fn); 5341 } 5342 5343 typedef void (GLAPIENTRYP _glptr_DepthRange)(GLclampd, GLclampd); 5344 #define CALL_DepthRange(disp, parameters) \ 5345 (* GET_DepthRange(disp)) parameters 5346 static inline _glptr_DepthRange GET_DepthRange(struct _glapi_table *disp) { 5347 return (_glptr_DepthRange) (GET_by_offset(disp, _gloffset_DepthRange)); 5348 } 5349 5350 static inline void SET_DepthRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) { 5351 SET_by_offset(disp, _gloffset_DepthRange, fn); 5352 } 5353 5354 typedef void (GLAPIENTRYP _glptr_Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble); 5355 #define CALL_Frustum(disp, parameters) \ 5356 (* GET_Frustum(disp)) parameters 5357 static inline _glptr_Frustum GET_Frustum(struct _glapi_table *disp) { 5358 return (_glptr_Frustum) (GET_by_offset(disp, _gloffset_Frustum)); 5359 } 5360 5361 static inline void SET_Frustum(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) { 5362 SET_by_offset(disp, _gloffset_Frustum, fn); 5363 } 5364 5365 typedef void (GLAPIENTRYP _glptr_LoadIdentity)(void); 5366 #define CALL_LoadIdentity(disp, parameters) \ 5367 (* GET_LoadIdentity(disp)) parameters 5368 static inline _glptr_LoadIdentity GET_LoadIdentity(struct _glapi_table *disp) { 5369 return (_glptr_LoadIdentity) (GET_by_offset(disp, _gloffset_LoadIdentity)); 5370 } 5371 5372 static inline void SET_LoadIdentity(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 5373 SET_by_offset(disp, _gloffset_LoadIdentity, fn); 5374 } 5375 5376 typedef void (GLAPIENTRYP _glptr_LoadMatrixf)(const GLfloat *); 5377 #define CALL_LoadMatrixf(disp, parameters) \ 5378 (* GET_LoadMatrixf(disp)) parameters 5379 static inline _glptr_LoadMatrixf GET_LoadMatrixf(struct _glapi_table *disp) { 5380 return (_glptr_LoadMatrixf) (GET_by_offset(disp, _gloffset_LoadMatrixf)); 5381 } 5382 5383 static inline void SET_LoadMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 5384 SET_by_offset(disp, _gloffset_LoadMatrixf, fn); 5385 } 5386 5387 typedef void (GLAPIENTRYP _glptr_LoadMatrixd)(const GLdouble *); 5388 #define CALL_LoadMatrixd(disp, parameters) \ 5389 (* GET_LoadMatrixd(disp)) parameters 5390 static inline _glptr_LoadMatrixd GET_LoadMatrixd(struct _glapi_table *disp) { 5391 return (_glptr_LoadMatrixd) (GET_by_offset(disp, _gloffset_LoadMatrixd)); 5392 } 5393 5394 static inline void SET_LoadMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 5395 SET_by_offset(disp, _gloffset_LoadMatrixd, fn); 5396 } 5397 5398 typedef void (GLAPIENTRYP _glptr_MatrixMode)(GLenum); 5399 #define CALL_MatrixMode(disp, parameters) \ 5400 (* GET_MatrixMode(disp)) parameters 5401 static inline _glptr_MatrixMode GET_MatrixMode(struct _glapi_table *disp) { 5402 return (_glptr_MatrixMode) (GET_by_offset(disp, _gloffset_MatrixMode)); 5403 } 5404 5405 static inline void SET_MatrixMode(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 5406 SET_by_offset(disp, _gloffset_MatrixMode, fn); 5407 } 5408 5409 typedef void (GLAPIENTRYP _glptr_MultMatrixf)(const GLfloat *); 5410 #define CALL_MultMatrixf(disp, parameters) \ 5411 (* GET_MultMatrixf(disp)) parameters 5412 static inline _glptr_MultMatrixf GET_MultMatrixf(struct _glapi_table *disp) { 5413 return (_glptr_MultMatrixf) (GET_by_offset(disp, _gloffset_MultMatrixf)); 5414 } 5415 5416 static inline void SET_MultMatrixf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 5417 SET_by_offset(disp, _gloffset_MultMatrixf, fn); 5418 } 5419 5420 typedef void (GLAPIENTRYP _glptr_MultMatrixd)(const GLdouble *); 5421 #define CALL_MultMatrixd(disp, parameters) \ 5422 (* GET_MultMatrixd(disp)) parameters 5423 static inline _glptr_MultMatrixd GET_MultMatrixd(struct _glapi_table *disp) { 5424 return (_glptr_MultMatrixd) (GET_by_offset(disp, _gloffset_MultMatrixd)); 5425 } 5426 5427 static inline void SET_MultMatrixd(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 5428 SET_by_offset(disp, _gloffset_MultMatrixd, fn); 5429 } 5430 5431 typedef void (GLAPIENTRYP _glptr_Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble); 5432 #define CALL_Ortho(disp, parameters) \ 5433 (* GET_Ortho(disp)) parameters 5434 static inline _glptr_Ortho GET_Ortho(struct _glapi_table *disp) { 5435 return (_glptr_Ortho) (GET_by_offset(disp, _gloffset_Ortho)); 5436 } 5437 5438 static inline void SET_Ortho(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble)) { 5439 SET_by_offset(disp, _gloffset_Ortho, fn); 5440 } 5441 5442 typedef void (GLAPIENTRYP _glptr_PopMatrix)(void); 5443 #define CALL_PopMatrix(disp, parameters) \ 5444 (* GET_PopMatrix(disp)) parameters 5445 static inline _glptr_PopMatrix GET_PopMatrix(struct _glapi_table *disp) { 5446 return (_glptr_PopMatrix) (GET_by_offset(disp, _gloffset_PopMatrix)); 5447 } 5448 5449 static inline void SET_PopMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 5450 SET_by_offset(disp, _gloffset_PopMatrix, fn); 5451 } 5452 5453 typedef void (GLAPIENTRYP _glptr_PushMatrix)(void); 5454 #define CALL_PushMatrix(disp, parameters) \ 5455 (* GET_PushMatrix(disp)) parameters 5456 static inline _glptr_PushMatrix GET_PushMatrix(struct _glapi_table *disp) { 5457 return (_glptr_PushMatrix) (GET_by_offset(disp, _gloffset_PushMatrix)); 5458 } 5459 5460 static inline void SET_PushMatrix(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 5461 SET_by_offset(disp, _gloffset_PushMatrix, fn); 5462 } 5463 5464 typedef void (GLAPIENTRYP _glptr_Rotated)(GLdouble, GLdouble, GLdouble, GLdouble); 5465 #define CALL_Rotated(disp, parameters) \ 5466 (* GET_Rotated(disp)) parameters 5467 static inline _glptr_Rotated GET_Rotated(struct _glapi_table *disp) { 5468 return (_glptr_Rotated) (GET_by_offset(disp, _gloffset_Rotated)); 5469 } 5470 5471 static inline void SET_Rotated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 5472 SET_by_offset(disp, _gloffset_Rotated, fn); 5473 } 5474 5475 typedef void (GLAPIENTRYP _glptr_Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat); 5476 #define CALL_Rotatef(disp, parameters) \ 5477 (* GET_Rotatef(disp)) parameters 5478 static inline _glptr_Rotatef GET_Rotatef(struct _glapi_table *disp) { 5479 return (_glptr_Rotatef) (GET_by_offset(disp, _gloffset_Rotatef)); 5480 } 5481 5482 static inline void SET_Rotatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 5483 SET_by_offset(disp, _gloffset_Rotatef, fn); 5484 } 5485 5486 typedef void (GLAPIENTRYP _glptr_Scaled)(GLdouble, GLdouble, GLdouble); 5487 #define CALL_Scaled(disp, parameters) \ 5488 (* GET_Scaled(disp)) parameters 5489 static inline _glptr_Scaled GET_Scaled(struct _glapi_table *disp) { 5490 return (_glptr_Scaled) (GET_by_offset(disp, _gloffset_Scaled)); 5491 } 5492 5493 static inline void SET_Scaled(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 5494 SET_by_offset(disp, _gloffset_Scaled, fn); 5495 } 5496 5497 typedef void (GLAPIENTRYP _glptr_Scalef)(GLfloat, GLfloat, GLfloat); 5498 #define CALL_Scalef(disp, parameters) \ 5499 (* GET_Scalef(disp)) parameters 5500 static inline _glptr_Scalef GET_Scalef(struct _glapi_table *disp) { 5501 return (_glptr_Scalef) (GET_by_offset(disp, _gloffset_Scalef)); 5502 } 5503 5504 static inline void SET_Scalef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 5505 SET_by_offset(disp, _gloffset_Scalef, fn); 5506 } 5507 5508 typedef void (GLAPIENTRYP _glptr_Translated)(GLdouble, GLdouble, GLdouble); 5509 #define CALL_Translated(disp, parameters) \ 5510 (* GET_Translated(disp)) parameters 5511 static inline _glptr_Translated GET_Translated(struct _glapi_table *disp) { 5512 return (_glptr_Translated) (GET_by_offset(disp, _gloffset_Translated)); 5513 } 5514 5515 static inline void SET_Translated(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 5516 SET_by_offset(disp, _gloffset_Translated, fn); 5517 } 5518 5519 typedef void (GLAPIENTRYP _glptr_Translatef)(GLfloat, GLfloat, GLfloat); 5520 #define CALL_Translatef(disp, parameters) \ 5521 (* GET_Translatef(disp)) parameters 5522 static inline _glptr_Translatef GET_Translatef(struct _glapi_table *disp) { 5523 return (_glptr_Translatef) (GET_by_offset(disp, _gloffset_Translatef)); 5524 } 5525 5526 static inline void SET_Translatef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 5527 SET_by_offset(disp, _gloffset_Translatef, fn); 5528 } 5529 5530 typedef void (GLAPIENTRYP _glptr_Viewport)(GLint, GLint, GLsizei, GLsizei); 5531 #define CALL_Viewport(disp, parameters) \ 5532 (* GET_Viewport(disp)) parameters 5533 static inline _glptr_Viewport GET_Viewport(struct _glapi_table *disp) { 5534 return (_glptr_Viewport) (GET_by_offset(disp, _gloffset_Viewport)); 5535 } 5536 5537 static inline void SET_Viewport(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei)) { 5538 SET_by_offset(disp, _gloffset_Viewport, fn); 5539 } 5540 5541 typedef void (GLAPIENTRYP _glptr_ArrayElement)(GLint); 5542 #define CALL_ArrayElement(disp, parameters) \ 5543 (* GET_ArrayElement(disp)) parameters 5544 static inline _glptr_ArrayElement GET_ArrayElement(struct _glapi_table *disp) { 5545 return (_glptr_ArrayElement) (GET_by_offset(disp, _gloffset_ArrayElement)); 5546 } 5547 5548 static inline void SET_ArrayElement(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint)) { 5549 SET_by_offset(disp, _gloffset_ArrayElement, fn); 5550 } 5551 5552 typedef void (GLAPIENTRYP _glptr_BindTexture)(GLenum, GLuint); 5553 #define CALL_BindTexture(disp, parameters) \ 5554 (* GET_BindTexture(disp)) parameters 5555 static inline _glptr_BindTexture GET_BindTexture(struct _glapi_table *disp) { 5556 return (_glptr_BindTexture) (GET_by_offset(disp, _gloffset_BindTexture)); 5557 } 5558 5559 static inline void SET_BindTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 5560 SET_by_offset(disp, _gloffset_BindTexture, fn); 5561 } 5562 5563 typedef void (GLAPIENTRYP _glptr_ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *); 5564 #define CALL_ColorPointer(disp, parameters) \ 5565 (* GET_ColorPointer(disp)) parameters 5566 static inline _glptr_ColorPointer GET_ColorPointer(struct _glapi_table *disp) { 5567 return (_glptr_ColorPointer) (GET_by_offset(disp, _gloffset_ColorPointer)); 5568 } 5569 5570 static inline void SET_ColorPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) { 5571 SET_by_offset(disp, _gloffset_ColorPointer, fn); 5572 } 5573 5574 typedef void (GLAPIENTRYP _glptr_DisableClientState)(GLenum); 5575 #define CALL_DisableClientState(disp, parameters) \ 5576 (* GET_DisableClientState(disp)) parameters 5577 static inline _glptr_DisableClientState GET_DisableClientState(struct _glapi_table *disp) { 5578 return (_glptr_DisableClientState) (GET_by_offset(disp, _gloffset_DisableClientState)); 5579 } 5580 5581 static inline void SET_DisableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 5582 SET_by_offset(disp, _gloffset_DisableClientState, fn); 5583 } 5584 5585 typedef void (GLAPIENTRYP _glptr_DrawArrays)(GLenum, GLint, GLsizei); 5586 #define CALL_DrawArrays(disp, parameters) \ 5587 (* GET_DrawArrays(disp)) parameters 5588 static inline _glptr_DrawArrays GET_DrawArrays(struct _glapi_table *disp) { 5589 return (_glptr_DrawArrays) (GET_by_offset(disp, _gloffset_DrawArrays)); 5590 } 5591 5592 static inline void SET_DrawArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei)) { 5593 SET_by_offset(disp, _gloffset_DrawArrays, fn); 5594 } 5595 5596 typedef void (GLAPIENTRYP _glptr_DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *); 5597 #define CALL_DrawElements(disp, parameters) \ 5598 (* GET_DrawElements(disp)) parameters 5599 static inline _glptr_DrawElements GET_DrawElements(struct _glapi_table *disp) { 5600 return (_glptr_DrawElements) (GET_by_offset(disp, _gloffset_DrawElements)); 5601 } 5602 5603 static inline void SET_DrawElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *)) { 5604 SET_by_offset(disp, _gloffset_DrawElements, fn); 5605 } 5606 5607 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointer)(GLsizei, const GLvoid *); 5608 #define CALL_EdgeFlagPointer(disp, parameters) \ 5609 (* GET_EdgeFlagPointer(disp)) parameters 5610 static inline _glptr_EdgeFlagPointer GET_EdgeFlagPointer(struct _glapi_table *disp) { 5611 return (_glptr_EdgeFlagPointer) (GET_by_offset(disp, _gloffset_EdgeFlagPointer)); 5612 } 5613 5614 static inline void SET_EdgeFlagPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLvoid *)) { 5615 SET_by_offset(disp, _gloffset_EdgeFlagPointer, fn); 5616 } 5617 5618 typedef void (GLAPIENTRYP _glptr_EnableClientState)(GLenum); 5619 #define CALL_EnableClientState(disp, parameters) \ 5620 (* GET_EnableClientState(disp)) parameters 5621 static inline _glptr_EnableClientState GET_EnableClientState(struct _glapi_table *disp) { 5622 return (_glptr_EnableClientState) (GET_by_offset(disp, _gloffset_EnableClientState)); 5623 } 5624 5625 static inline void SET_EnableClientState(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 5626 SET_by_offset(disp, _gloffset_EnableClientState, fn); 5627 } 5628 5629 typedef void (GLAPIENTRYP _glptr_IndexPointer)(GLenum, GLsizei, const GLvoid *); 5630 #define CALL_IndexPointer(disp, parameters) \ 5631 (* GET_IndexPointer(disp)) parameters 5632 static inline _glptr_IndexPointer GET_IndexPointer(struct _glapi_table *disp) { 5633 return (_glptr_IndexPointer) (GET_by_offset(disp, _gloffset_IndexPointer)); 5634 } 5635 5636 static inline void SET_IndexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) { 5637 SET_by_offset(disp, _gloffset_IndexPointer, fn); 5638 } 5639 5640 typedef void (GLAPIENTRYP _glptr_Indexub)(GLubyte); 5641 #define CALL_Indexub(disp, parameters) \ 5642 (* GET_Indexub(disp)) parameters 5643 static inline _glptr_Indexub GET_Indexub(struct _glapi_table *disp) { 5644 return (_glptr_Indexub) (GET_by_offset(disp, _gloffset_Indexub)); 5645 } 5646 5647 static inline void SET_Indexub(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte)) { 5648 SET_by_offset(disp, _gloffset_Indexub, fn); 5649 } 5650 5651 typedef void (GLAPIENTRYP _glptr_Indexubv)(const GLubyte *); 5652 #define CALL_Indexubv(disp, parameters) \ 5653 (* GET_Indexubv(disp)) parameters 5654 static inline _glptr_Indexubv GET_Indexubv(struct _glapi_table *disp) { 5655 return (_glptr_Indexubv) (GET_by_offset(disp, _gloffset_Indexubv)); 5656 } 5657 5658 static inline void SET_Indexubv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) { 5659 SET_by_offset(disp, _gloffset_Indexubv, fn); 5660 } 5661 5662 typedef void (GLAPIENTRYP _glptr_InterleavedArrays)(GLenum, GLsizei, const GLvoid *); 5663 #define CALL_InterleavedArrays(disp, parameters) \ 5664 (* GET_InterleavedArrays(disp)) parameters 5665 static inline _glptr_InterleavedArrays GET_InterleavedArrays(struct _glapi_table *disp) { 5666 return (_glptr_InterleavedArrays) (GET_by_offset(disp, _gloffset_InterleavedArrays)); 5667 } 5668 5669 static inline void SET_InterleavedArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) { 5670 SET_by_offset(disp, _gloffset_InterleavedArrays, fn); 5671 } 5672 5673 typedef void (GLAPIENTRYP _glptr_NormalPointer)(GLenum, GLsizei, const GLvoid *); 5674 #define CALL_NormalPointer(disp, parameters) \ 5675 (* GET_NormalPointer(disp)) parameters 5676 static inline _glptr_NormalPointer GET_NormalPointer(struct _glapi_table *disp) { 5677 return (_glptr_NormalPointer) (GET_by_offset(disp, _gloffset_NormalPointer)); 5678 } 5679 5680 static inline void SET_NormalPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) { 5681 SET_by_offset(disp, _gloffset_NormalPointer, fn); 5682 } 5683 5684 typedef void (GLAPIENTRYP _glptr_PolygonOffset)(GLfloat, GLfloat); 5685 #define CALL_PolygonOffset(disp, parameters) \ 5686 (* GET_PolygonOffset(disp)) parameters 5687 static inline _glptr_PolygonOffset GET_PolygonOffset(struct _glapi_table *disp) { 5688 return (_glptr_PolygonOffset) (GET_by_offset(disp, _gloffset_PolygonOffset)); 5689 } 5690 5691 static inline void SET_PolygonOffset(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 5692 SET_by_offset(disp, _gloffset_PolygonOffset, fn); 5693 } 5694 5695 typedef void (GLAPIENTRYP _glptr_TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *); 5696 #define CALL_TexCoordPointer(disp, parameters) \ 5697 (* GET_TexCoordPointer(disp)) parameters 5698 static inline _glptr_TexCoordPointer GET_TexCoordPointer(struct _glapi_table *disp) { 5699 return (_glptr_TexCoordPointer) (GET_by_offset(disp, _gloffset_TexCoordPointer)); 5700 } 5701 5702 static inline void SET_TexCoordPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) { 5703 SET_by_offset(disp, _gloffset_TexCoordPointer, fn); 5704 } 5705 5706 typedef void (GLAPIENTRYP _glptr_VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *); 5707 #define CALL_VertexPointer(disp, parameters) \ 5708 (* GET_VertexPointer(disp)) parameters 5709 static inline _glptr_VertexPointer GET_VertexPointer(struct _glapi_table *disp) { 5710 return (_glptr_VertexPointer) (GET_by_offset(disp, _gloffset_VertexPointer)); 5711 } 5712 5713 static inline void SET_VertexPointer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) { 5714 SET_by_offset(disp, _gloffset_VertexPointer, fn); 5715 } 5716 5717 typedef GLboolean (GLAPIENTRYP _glptr_AreTexturesResident)(GLsizei, const GLuint *, GLboolean *); 5718 #define CALL_AreTexturesResident(disp, parameters) \ 5719 (* GET_AreTexturesResident(disp)) parameters 5720 static inline _glptr_AreTexturesResident GET_AreTexturesResident(struct _glapi_table *disp) { 5721 return (_glptr_AreTexturesResident) (GET_by_offset(disp, _gloffset_AreTexturesResident)); 5722 } 5723 5724 static inline void SET_AreTexturesResident(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) { 5725 SET_by_offset(disp, _gloffset_AreTexturesResident, fn); 5726 } 5727 5728 typedef void (GLAPIENTRYP _glptr_CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint); 5729 #define CALL_CopyTexImage1D(disp, parameters) \ 5730 (* GET_CopyTexImage1D(disp)) parameters 5731 static inline _glptr_CopyTexImage1D GET_CopyTexImage1D(struct _glapi_table *disp) { 5732 return (_glptr_CopyTexImage1D) (GET_by_offset(disp, _gloffset_CopyTexImage1D)); 5733 } 5734 5735 static inline void SET_CopyTexImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint)) { 5736 SET_by_offset(disp, _gloffset_CopyTexImage1D, fn); 5737 } 5738 5739 typedef void (GLAPIENTRYP _glptr_CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint); 5740 #define CALL_CopyTexImage2D(disp, parameters) \ 5741 (* GET_CopyTexImage2D(disp)) parameters 5742 static inline _glptr_CopyTexImage2D GET_CopyTexImage2D(struct _glapi_table *disp) { 5743 return (_glptr_CopyTexImage2D) (GET_by_offset(disp, _gloffset_CopyTexImage2D)); 5744 } 5745 5746 static inline void SET_CopyTexImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint)) { 5747 SET_by_offset(disp, _gloffset_CopyTexImage2D, fn); 5748 } 5749 5750 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei); 5751 #define CALL_CopyTexSubImage1D(disp, parameters) \ 5752 (* GET_CopyTexSubImage1D(disp)) parameters 5753 static inline _glptr_CopyTexSubImage1D GET_CopyTexSubImage1D(struct _glapi_table *disp) { 5754 return (_glptr_CopyTexSubImage1D) (GET_by_offset(disp, _gloffset_CopyTexSubImage1D)); 5755 } 5756 5757 static inline void SET_CopyTexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei)) { 5758 SET_by_offset(disp, _gloffset_CopyTexSubImage1D, fn); 5759 } 5760 5761 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei); 5762 #define CALL_CopyTexSubImage2D(disp, parameters) \ 5763 (* GET_CopyTexSubImage2D(disp)) parameters 5764 static inline _glptr_CopyTexSubImage2D GET_CopyTexSubImage2D(struct _glapi_table *disp) { 5765 return (_glptr_CopyTexSubImage2D) (GET_by_offset(disp, _gloffset_CopyTexSubImage2D)); 5766 } 5767 5768 static inline void SET_CopyTexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) { 5769 SET_by_offset(disp, _gloffset_CopyTexSubImage2D, fn); 5770 } 5771 5772 typedef void (GLAPIENTRYP _glptr_DeleteTextures)(GLsizei, const GLuint *); 5773 #define CALL_DeleteTextures(disp, parameters) \ 5774 (* GET_DeleteTextures(disp)) parameters 5775 static inline _glptr_DeleteTextures GET_DeleteTextures(struct _glapi_table *disp) { 5776 return (_glptr_DeleteTextures) (GET_by_offset(disp, _gloffset_DeleteTextures)); 5777 } 5778 5779 static inline void SET_DeleteTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 5780 SET_by_offset(disp, _gloffset_DeleteTextures, fn); 5781 } 5782 5783 typedef void (GLAPIENTRYP _glptr_GenTextures)(GLsizei, GLuint *); 5784 #define CALL_GenTextures(disp, parameters) \ 5785 (* GET_GenTextures(disp)) parameters 5786 static inline _glptr_GenTextures GET_GenTextures(struct _glapi_table *disp) { 5787 return (_glptr_GenTextures) (GET_by_offset(disp, _gloffset_GenTextures)); 5788 } 5789 5790 static inline void SET_GenTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 5791 SET_by_offset(disp, _gloffset_GenTextures, fn); 5792 } 5793 5794 typedef void (GLAPIENTRYP _glptr_GetPointerv)(GLenum, GLvoid **); 5795 #define CALL_GetPointerv(disp, parameters) \ 5796 (* GET_GetPointerv(disp)) parameters 5797 static inline _glptr_GetPointerv GET_GetPointerv(struct _glapi_table *disp) { 5798 return (_glptr_GetPointerv) (GET_by_offset(disp, _gloffset_GetPointerv)); 5799 } 5800 5801 static inline void SET_GetPointerv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid **)) { 5802 SET_by_offset(disp, _gloffset_GetPointerv, fn); 5803 } 5804 5805 typedef GLboolean (GLAPIENTRYP _glptr_IsTexture)(GLuint); 5806 #define CALL_IsTexture(disp, parameters) \ 5807 (* GET_IsTexture(disp)) parameters 5808 static inline _glptr_IsTexture GET_IsTexture(struct _glapi_table *disp) { 5809 return (_glptr_IsTexture) (GET_by_offset(disp, _gloffset_IsTexture)); 5810 } 5811 5812 static inline void SET_IsTexture(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 5813 SET_by_offset(disp, _gloffset_IsTexture, fn); 5814 } 5815 5816 typedef void (GLAPIENTRYP _glptr_PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *); 5817 #define CALL_PrioritizeTextures(disp, parameters) \ 5818 (* GET_PrioritizeTextures(disp)) parameters 5819 static inline _glptr_PrioritizeTextures GET_PrioritizeTextures(struct _glapi_table *disp) { 5820 return (_glptr_PrioritizeTextures) (GET_by_offset(disp, _gloffset_PrioritizeTextures)); 5821 } 5822 5823 static inline void SET_PrioritizeTextures(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, const GLclampf *)) { 5824 SET_by_offset(disp, _gloffset_PrioritizeTextures, fn); 5825 } 5826 5827 typedef void (GLAPIENTRYP _glptr_TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *); 5828 #define CALL_TexSubImage1D(disp, parameters) \ 5829 (* GET_TexSubImage1D(disp)) parameters 5830 static inline _glptr_TexSubImage1D GET_TexSubImage1D(struct _glapi_table *disp) { 5831 return (_glptr_TexSubImage1D) (GET_by_offset(disp, _gloffset_TexSubImage1D)); 5832 } 5833 5834 static inline void SET_TexSubImage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *)) { 5835 SET_by_offset(disp, _gloffset_TexSubImage1D, fn); 5836 } 5837 5838 typedef void (GLAPIENTRYP _glptr_TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); 5839 #define CALL_TexSubImage2D(disp, parameters) \ 5840 (* GET_TexSubImage2D(disp)) parameters 5841 static inline _glptr_TexSubImage2D GET_TexSubImage2D(struct _glapi_table *disp) { 5842 return (_glptr_TexSubImage2D) (GET_by_offset(disp, _gloffset_TexSubImage2D)); 5843 } 5844 5845 static inline void SET_TexSubImage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) { 5846 SET_by_offset(disp, _gloffset_TexSubImage2D, fn); 5847 } 5848 5849 typedef void (GLAPIENTRYP _glptr_PopClientAttrib)(void); 5850 #define CALL_PopClientAttrib(disp, parameters) \ 5851 (* GET_PopClientAttrib(disp)) parameters 5852 static inline _glptr_PopClientAttrib GET_PopClientAttrib(struct _glapi_table *disp) { 5853 return (_glptr_PopClientAttrib) (GET_by_offset(disp, _gloffset_PopClientAttrib)); 5854 } 5855 5856 static inline void SET_PopClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 5857 SET_by_offset(disp, _gloffset_PopClientAttrib, fn); 5858 } 5859 5860 typedef void (GLAPIENTRYP _glptr_PushClientAttrib)(GLbitfield); 5861 #define CALL_PushClientAttrib(disp, parameters) \ 5862 (* GET_PushClientAttrib(disp)) parameters 5863 static inline _glptr_PushClientAttrib GET_PushClientAttrib(struct _glapi_table *disp) { 5864 return (_glptr_PushClientAttrib) (GET_by_offset(disp, _gloffset_PushClientAttrib)); 5865 } 5866 5867 static inline void SET_PushClientAttrib(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) { 5868 SET_by_offset(disp, _gloffset_PushClientAttrib, fn); 5869 } 5870 5871 typedef void (GLAPIENTRYP _glptr_BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf); 5872 #define CALL_BlendColor(disp, parameters) \ 5873 (* GET_BlendColor(disp)) parameters 5874 static inline _glptr_BlendColor GET_BlendColor(struct _glapi_table *disp) { 5875 return (_glptr_BlendColor) (GET_by_offset(disp, _gloffset_BlendColor)); 5876 } 5877 5878 static inline void SET_BlendColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf, GLclampf, GLclampf)) { 5879 SET_by_offset(disp, _gloffset_BlendColor, fn); 5880 } 5881 5882 typedef void (GLAPIENTRYP _glptr_BlendEquation)(GLenum); 5883 #define CALL_BlendEquation(disp, parameters) \ 5884 (* GET_BlendEquation(disp)) parameters 5885 static inline _glptr_BlendEquation GET_BlendEquation(struct _glapi_table *disp) { 5886 return (_glptr_BlendEquation) (GET_by_offset(disp, _gloffset_BlendEquation)); 5887 } 5888 5889 static inline void SET_BlendEquation(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 5890 SET_by_offset(disp, _gloffset_BlendEquation, fn); 5891 } 5892 5893 typedef void (GLAPIENTRYP _glptr_DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *); 5894 #define CALL_DrawRangeElements(disp, parameters) \ 5895 (* GET_DrawRangeElements(disp)) parameters 5896 static inline _glptr_DrawRangeElements GET_DrawRangeElements(struct _glapi_table *disp) { 5897 return (_glptr_DrawRangeElements) (GET_by_offset(disp, _gloffset_DrawRangeElements)); 5898 } 5899 5900 static inline void SET_DrawRangeElements(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *)) { 5901 SET_by_offset(disp, _gloffset_DrawRangeElements, fn); 5902 } 5903 5904 typedef void (GLAPIENTRYP _glptr_ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); 5905 #define CALL_ColorTable(disp, parameters) \ 5906 (* GET_ColorTable(disp)) parameters 5907 static inline _glptr_ColorTable GET_ColorTable(struct _glapi_table *disp) { 5908 return (_glptr_ColorTable) (GET_by_offset(disp, _gloffset_ColorTable)); 5909 } 5910 5911 static inline void SET_ColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) { 5912 SET_by_offset(disp, _gloffset_ColorTable, fn); 5913 } 5914 5915 typedef void (GLAPIENTRYP _glptr_ColorTableParameterfv)(GLenum, GLenum, const GLfloat *); 5916 #define CALL_ColorTableParameterfv(disp, parameters) \ 5917 (* GET_ColorTableParameterfv(disp)) parameters 5918 static inline _glptr_ColorTableParameterfv GET_ColorTableParameterfv(struct _glapi_table *disp) { 5919 return (_glptr_ColorTableParameterfv) (GET_by_offset(disp, _gloffset_ColorTableParameterfv)); 5920 } 5921 5922 static inline void SET_ColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 5923 SET_by_offset(disp, _gloffset_ColorTableParameterfv, fn); 5924 } 5925 5926 typedef void (GLAPIENTRYP _glptr_ColorTableParameteriv)(GLenum, GLenum, const GLint *); 5927 #define CALL_ColorTableParameteriv(disp, parameters) \ 5928 (* GET_ColorTableParameteriv(disp)) parameters 5929 static inline _glptr_ColorTableParameteriv GET_ColorTableParameteriv(struct _glapi_table *disp) { 5930 return (_glptr_ColorTableParameteriv) (GET_by_offset(disp, _gloffset_ColorTableParameteriv)); 5931 } 5932 5933 static inline void SET_ColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 5934 SET_by_offset(disp, _gloffset_ColorTableParameteriv, fn); 5935 } 5936 5937 typedef void (GLAPIENTRYP _glptr_CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei); 5938 #define CALL_CopyColorTable(disp, parameters) \ 5939 (* GET_CopyColorTable(disp)) parameters 5940 static inline _glptr_CopyColorTable GET_CopyColorTable(struct _glapi_table *disp) { 5941 return (_glptr_CopyColorTable) (GET_by_offset(disp, _gloffset_CopyColorTable)); 5942 } 5943 5944 static inline void SET_CopyColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) { 5945 SET_by_offset(disp, _gloffset_CopyColorTable, fn); 5946 } 5947 5948 typedef void (GLAPIENTRYP _glptr_GetColorTable)(GLenum, GLenum, GLenum, GLvoid *); 5949 #define CALL_GetColorTable(disp, parameters) \ 5950 (* GET_GetColorTable(disp)) parameters 5951 static inline _glptr_GetColorTable GET_GetColorTable(struct _glapi_table *disp) { 5952 return (_glptr_GetColorTable) (GET_by_offset(disp, _gloffset_GetColorTable)); 5953 } 5954 5955 static inline void SET_GetColorTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) { 5956 SET_by_offset(disp, _gloffset_GetColorTable, fn); 5957 } 5958 5959 typedef void (GLAPIENTRYP _glptr_GetColorTableParameterfv)(GLenum, GLenum, GLfloat *); 5960 #define CALL_GetColorTableParameterfv(disp, parameters) \ 5961 (* GET_GetColorTableParameterfv(disp)) parameters 5962 static inline _glptr_GetColorTableParameterfv GET_GetColorTableParameterfv(struct _glapi_table *disp) { 5963 return (_glptr_GetColorTableParameterfv) (GET_by_offset(disp, _gloffset_GetColorTableParameterfv)); 5964 } 5965 5966 static inline void SET_GetColorTableParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 5967 SET_by_offset(disp, _gloffset_GetColorTableParameterfv, fn); 5968 } 5969 5970 typedef void (GLAPIENTRYP _glptr_GetColorTableParameteriv)(GLenum, GLenum, GLint *); 5971 #define CALL_GetColorTableParameteriv(disp, parameters) \ 5972 (* GET_GetColorTableParameteriv(disp)) parameters 5973 static inline _glptr_GetColorTableParameteriv GET_GetColorTableParameteriv(struct _glapi_table *disp) { 5974 return (_glptr_GetColorTableParameteriv) (GET_by_offset(disp, _gloffset_GetColorTableParameteriv)); 5975 } 5976 5977 static inline void SET_GetColorTableParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 5978 SET_by_offset(disp, _gloffset_GetColorTableParameteriv, fn); 5979 } 5980 5981 typedef void (GLAPIENTRYP _glptr_ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); 5982 #define CALL_ColorSubTable(disp, parameters) \ 5983 (* GET_ColorSubTable(disp)) parameters 5984 static inline _glptr_ColorSubTable GET_ColorSubTable(struct _glapi_table *disp) { 5985 return (_glptr_ColorSubTable) (GET_by_offset(disp, _gloffset_ColorSubTable)); 5986 } 5987 5988 static inline void SET_ColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) { 5989 SET_by_offset(disp, _gloffset_ColorSubTable, fn); 5990 } 5991 5992 typedef void (GLAPIENTRYP _glptr_CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei); 5993 #define CALL_CopyColorSubTable(disp, parameters) \ 5994 (* GET_CopyColorSubTable(disp)) parameters 5995 static inline _glptr_CopyColorSubTable GET_CopyColorSubTable(struct _glapi_table *disp) { 5996 return (_glptr_CopyColorSubTable) (GET_by_offset(disp, _gloffset_CopyColorSubTable)); 5997 } 5998 5999 static inline void SET_CopyColorSubTable(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLint, GLint, GLsizei)) { 6000 SET_by_offset(disp, _gloffset_CopyColorSubTable, fn); 6001 } 6002 6003 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *); 6004 #define CALL_ConvolutionFilter1D(disp, parameters) \ 6005 (* GET_ConvolutionFilter1D(disp)) parameters 6006 static inline _glptr_ConvolutionFilter1D GET_ConvolutionFilter1D(struct _glapi_table *disp) { 6007 return (_glptr_ConvolutionFilter1D) (GET_by_offset(disp, _gloffset_ConvolutionFilter1D)); 6008 } 6009 6010 static inline void SET_ConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *)) { 6011 SET_by_offset(disp, _gloffset_ConvolutionFilter1D, fn); 6012 } 6013 6014 typedef void (GLAPIENTRYP _glptr_ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); 6015 #define CALL_ConvolutionFilter2D(disp, parameters) \ 6016 (* GET_ConvolutionFilter2D(disp)) parameters 6017 static inline _glptr_ConvolutionFilter2D GET_ConvolutionFilter2D(struct _glapi_table *disp) { 6018 return (_glptr_ConvolutionFilter2D) (GET_by_offset(disp, _gloffset_ConvolutionFilter2D)); 6019 } 6020 6021 static inline void SET_ConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) { 6022 SET_by_offset(disp, _gloffset_ConvolutionFilter2D, fn); 6023 } 6024 6025 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterf)(GLenum, GLenum, GLfloat); 6026 #define CALL_ConvolutionParameterf(disp, parameters) \ 6027 (* GET_ConvolutionParameterf(disp)) parameters 6028 static inline _glptr_ConvolutionParameterf GET_ConvolutionParameterf(struct _glapi_table *disp) { 6029 return (_glptr_ConvolutionParameterf) (GET_by_offset(disp, _gloffset_ConvolutionParameterf)); 6030 } 6031 6032 static inline void SET_ConvolutionParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat)) { 6033 SET_by_offset(disp, _gloffset_ConvolutionParameterf, fn); 6034 } 6035 6036 typedef void (GLAPIENTRYP _glptr_ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *); 6037 #define CALL_ConvolutionParameterfv(disp, parameters) \ 6038 (* GET_ConvolutionParameterfv(disp)) parameters 6039 static inline _glptr_ConvolutionParameterfv GET_ConvolutionParameterfv(struct _glapi_table *disp) { 6040 return (_glptr_ConvolutionParameterfv) (GET_by_offset(disp, _gloffset_ConvolutionParameterfv)); 6041 } 6042 6043 static inline void SET_ConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLfloat *)) { 6044 SET_by_offset(disp, _gloffset_ConvolutionParameterfv, fn); 6045 } 6046 6047 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteri)(GLenum, GLenum, GLint); 6048 #define CALL_ConvolutionParameteri(disp, parameters) \ 6049 (* GET_ConvolutionParameteri(disp)) parameters 6050 static inline _glptr_ConvolutionParameteri GET_ConvolutionParameteri(struct _glapi_table *disp) { 6051 return (_glptr_ConvolutionParameteri) (GET_by_offset(disp, _gloffset_ConvolutionParameteri)); 6052 } 6053 6054 static inline void SET_ConvolutionParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 6055 SET_by_offset(disp, _gloffset_ConvolutionParameteri, fn); 6056 } 6057 6058 typedef void (GLAPIENTRYP _glptr_ConvolutionParameteriv)(GLenum, GLenum, const GLint *); 6059 #define CALL_ConvolutionParameteriv(disp, parameters) \ 6060 (* GET_ConvolutionParameteriv(disp)) parameters 6061 static inline _glptr_ConvolutionParameteriv GET_ConvolutionParameteriv(struct _glapi_table *disp) { 6062 return (_glptr_ConvolutionParameteriv) (GET_by_offset(disp, _gloffset_ConvolutionParameteriv)); 6063 } 6064 6065 static inline void SET_ConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 6066 SET_by_offset(disp, _gloffset_ConvolutionParameteriv, fn); 6067 } 6068 6069 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter1D)(GLenum, GLenum, GLint, GLint, GLsizei); 6070 #define CALL_CopyConvolutionFilter1D(disp, parameters) \ 6071 (* GET_CopyConvolutionFilter1D(disp)) parameters 6072 static inline _glptr_CopyConvolutionFilter1D GET_CopyConvolutionFilter1D(struct _glapi_table *disp) { 6073 return (_glptr_CopyConvolutionFilter1D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter1D)); 6074 } 6075 6076 static inline void SET_CopyConvolutionFilter1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei)) { 6077 SET_by_offset(disp, _gloffset_CopyConvolutionFilter1D, fn); 6078 } 6079 6080 typedef void (GLAPIENTRYP _glptr_CopyConvolutionFilter2D)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei); 6081 #define CALL_CopyConvolutionFilter2D(disp, parameters) \ 6082 (* GET_CopyConvolutionFilter2D(disp)) parameters 6083 static inline _glptr_CopyConvolutionFilter2D GET_CopyConvolutionFilter2D(struct _glapi_table *disp) { 6084 return (_glptr_CopyConvolutionFilter2D) (GET_by_offset(disp, _gloffset_CopyConvolutionFilter2D)); 6085 } 6086 6087 static inline void SET_CopyConvolutionFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei)) { 6088 SET_by_offset(disp, _gloffset_CopyConvolutionFilter2D, fn); 6089 } 6090 6091 typedef void (GLAPIENTRYP _glptr_GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *); 6092 #define CALL_GetConvolutionFilter(disp, parameters) \ 6093 (* GET_GetConvolutionFilter(disp)) parameters 6094 static inline _glptr_GetConvolutionFilter GET_GetConvolutionFilter(struct _glapi_table *disp) { 6095 return (_glptr_GetConvolutionFilter) (GET_by_offset(disp, _gloffset_GetConvolutionFilter)); 6096 } 6097 6098 static inline void SET_GetConvolutionFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *)) { 6099 SET_by_offset(disp, _gloffset_GetConvolutionFilter, fn); 6100 } 6101 6102 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *); 6103 #define CALL_GetConvolutionParameterfv(disp, parameters) \ 6104 (* GET_GetConvolutionParameterfv(disp)) parameters 6105 static inline _glptr_GetConvolutionParameterfv GET_GetConvolutionParameterfv(struct _glapi_table *disp) { 6106 return (_glptr_GetConvolutionParameterfv) (GET_by_offset(disp, _gloffset_GetConvolutionParameterfv)); 6107 } 6108 6109 static inline void SET_GetConvolutionParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 6110 SET_by_offset(disp, _gloffset_GetConvolutionParameterfv, fn); 6111 } 6112 6113 typedef void (GLAPIENTRYP _glptr_GetConvolutionParameteriv)(GLenum, GLenum, GLint *); 6114 #define CALL_GetConvolutionParameteriv(disp, parameters) \ 6115 (* GET_GetConvolutionParameteriv(disp)) parameters 6116 static inline _glptr_GetConvolutionParameteriv GET_GetConvolutionParameteriv(struct _glapi_table *disp) { 6117 return (_glptr_GetConvolutionParameteriv) (GET_by_offset(disp, _gloffset_GetConvolutionParameteriv)); 6118 } 6119 6120 static inline void SET_GetConvolutionParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 6121 SET_by_offset(disp, _gloffset_GetConvolutionParameteriv, fn); 6122 } 6123 6124 typedef void (GLAPIENTRYP _glptr_GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *); 6125 #define CALL_GetSeparableFilter(disp, parameters) \ 6126 (* GET_GetSeparableFilter(disp)) parameters 6127 static inline _glptr_GetSeparableFilter GET_GetSeparableFilter(struct _glapi_table *disp) { 6128 return (_glptr_GetSeparableFilter) (GET_by_offset(disp, _gloffset_GetSeparableFilter)); 6129 } 6130 6131 static inline void SET_GetSeparableFilter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *)) { 6132 SET_by_offset(disp, _gloffset_GetSeparableFilter, fn); 6133 } 6134 6135 typedef void (GLAPIENTRYP _glptr_SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *); 6136 #define CALL_SeparableFilter2D(disp, parameters) \ 6137 (* GET_SeparableFilter2D(disp)) parameters 6138 static inline _glptr_SeparableFilter2D GET_SeparableFilter2D(struct _glapi_table *disp) { 6139 return (_glptr_SeparableFilter2D) (GET_by_offset(disp, _gloffset_SeparableFilter2D)); 6140 } 6141 6142 static inline void SET_SeparableFilter2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *)) { 6143 SET_by_offset(disp, _gloffset_SeparableFilter2D, fn); 6144 } 6145 6146 typedef void (GLAPIENTRYP _glptr_GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *); 6147 #define CALL_GetHistogram(disp, parameters) \ 6148 (* GET_GetHistogram(disp)) parameters 6149 static inline _glptr_GetHistogram GET_GetHistogram(struct _glapi_table *disp) { 6150 return (_glptr_GetHistogram) (GET_by_offset(disp, _gloffset_GetHistogram)); 6151 } 6152 6153 static inline void SET_GetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) { 6154 SET_by_offset(disp, _gloffset_GetHistogram, fn); 6155 } 6156 6157 typedef void (GLAPIENTRYP _glptr_GetHistogramParameterfv)(GLenum, GLenum, GLfloat *); 6158 #define CALL_GetHistogramParameterfv(disp, parameters) \ 6159 (* GET_GetHistogramParameterfv(disp)) parameters 6160 static inline _glptr_GetHistogramParameterfv GET_GetHistogramParameterfv(struct _glapi_table *disp) { 6161 return (_glptr_GetHistogramParameterfv) (GET_by_offset(disp, _gloffset_GetHistogramParameterfv)); 6162 } 6163 6164 static inline void SET_GetHistogramParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 6165 SET_by_offset(disp, _gloffset_GetHistogramParameterfv, fn); 6166 } 6167 6168 typedef void (GLAPIENTRYP _glptr_GetHistogramParameteriv)(GLenum, GLenum, GLint *); 6169 #define CALL_GetHistogramParameteriv(disp, parameters) \ 6170 (* GET_GetHistogramParameteriv(disp)) parameters 6171 static inline _glptr_GetHistogramParameteriv GET_GetHistogramParameteriv(struct _glapi_table *disp) { 6172 return (_glptr_GetHistogramParameteriv) (GET_by_offset(disp, _gloffset_GetHistogramParameteriv)); 6173 } 6174 6175 static inline void SET_GetHistogramParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 6176 SET_by_offset(disp, _gloffset_GetHistogramParameteriv, fn); 6177 } 6178 6179 typedef void (GLAPIENTRYP _glptr_GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *); 6180 #define CALL_GetMinmax(disp, parameters) \ 6181 (* GET_GetMinmax(disp)) parameters 6182 static inline _glptr_GetMinmax GET_GetMinmax(struct _glapi_table *disp) { 6183 return (_glptr_GetMinmax) (GET_by_offset(disp, _gloffset_GetMinmax)); 6184 } 6185 6186 static inline void SET_GetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLvoid *)) { 6187 SET_by_offset(disp, _gloffset_GetMinmax, fn); 6188 } 6189 6190 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *); 6191 #define CALL_GetMinmaxParameterfv(disp, parameters) \ 6192 (* GET_GetMinmaxParameterfv(disp)) parameters 6193 static inline _glptr_GetMinmaxParameterfv GET_GetMinmaxParameterfv(struct _glapi_table *disp) { 6194 return (_glptr_GetMinmaxParameterfv) (GET_by_offset(disp, _gloffset_GetMinmaxParameterfv)); 6195 } 6196 6197 static inline void SET_GetMinmaxParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLfloat *)) { 6198 SET_by_offset(disp, _gloffset_GetMinmaxParameterfv, fn); 6199 } 6200 6201 typedef void (GLAPIENTRYP _glptr_GetMinmaxParameteriv)(GLenum, GLenum, GLint *); 6202 #define CALL_GetMinmaxParameteriv(disp, parameters) \ 6203 (* GET_GetMinmaxParameteriv(disp)) parameters 6204 static inline _glptr_GetMinmaxParameteriv GET_GetMinmaxParameteriv(struct _glapi_table *disp) { 6205 return (_glptr_GetMinmaxParameteriv) (GET_by_offset(disp, _gloffset_GetMinmaxParameteriv)); 6206 } 6207 6208 static inline void SET_GetMinmaxParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 6209 SET_by_offset(disp, _gloffset_GetMinmaxParameteriv, fn); 6210 } 6211 6212 typedef void (GLAPIENTRYP _glptr_Histogram)(GLenum, GLsizei, GLenum, GLboolean); 6213 #define CALL_Histogram(disp, parameters) \ 6214 (* GET_Histogram(disp)) parameters 6215 static inline _glptr_Histogram GET_Histogram(struct _glapi_table *disp) { 6216 return (_glptr_Histogram) (GET_by_offset(disp, _gloffset_Histogram)); 6217 } 6218 6219 static inline void SET_Histogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLboolean)) { 6220 SET_by_offset(disp, _gloffset_Histogram, fn); 6221 } 6222 6223 typedef void (GLAPIENTRYP _glptr_Minmax)(GLenum, GLenum, GLboolean); 6224 #define CALL_Minmax(disp, parameters) \ 6225 (* GET_Minmax(disp)) parameters 6226 static inline _glptr_Minmax GET_Minmax(struct _glapi_table *disp) { 6227 return (_glptr_Minmax) (GET_by_offset(disp, _gloffset_Minmax)); 6228 } 6229 6230 static inline void SET_Minmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLboolean)) { 6231 SET_by_offset(disp, _gloffset_Minmax, fn); 6232 } 6233 6234 typedef void (GLAPIENTRYP _glptr_ResetHistogram)(GLenum); 6235 #define CALL_ResetHistogram(disp, parameters) \ 6236 (* GET_ResetHistogram(disp)) parameters 6237 static inline _glptr_ResetHistogram GET_ResetHistogram(struct _glapi_table *disp) { 6238 return (_glptr_ResetHistogram) (GET_by_offset(disp, _gloffset_ResetHistogram)); 6239 } 6240 6241 static inline void SET_ResetHistogram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 6242 SET_by_offset(disp, _gloffset_ResetHistogram, fn); 6243 } 6244 6245 typedef void (GLAPIENTRYP _glptr_ResetMinmax)(GLenum); 6246 #define CALL_ResetMinmax(disp, parameters) \ 6247 (* GET_ResetMinmax(disp)) parameters 6248 static inline _glptr_ResetMinmax GET_ResetMinmax(struct _glapi_table *disp) { 6249 return (_glptr_ResetMinmax) (GET_by_offset(disp, _gloffset_ResetMinmax)); 6250 } 6251 6252 static inline void SET_ResetMinmax(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 6253 SET_by_offset(disp, _gloffset_ResetMinmax, fn); 6254 } 6255 6256 typedef void (GLAPIENTRYP _glptr_TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *); 6257 #define CALL_TexImage3D(disp, parameters) \ 6258 (* GET_TexImage3D(disp)) parameters 6259 static inline _glptr_TexImage3D GET_TexImage3D(struct _glapi_table *disp) { 6260 return (_glptr_TexImage3D) (GET_by_offset(disp, _gloffset_TexImage3D)); 6261 } 6262 6263 static inline void SET_TexImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *)) { 6264 SET_by_offset(disp, _gloffset_TexImage3D, fn); 6265 } 6266 6267 typedef void (GLAPIENTRYP _glptr_TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *); 6268 #define CALL_TexSubImage3D(disp, parameters) \ 6269 (* GET_TexSubImage3D(disp)) parameters 6270 static inline _glptr_TexSubImage3D GET_TexSubImage3D(struct _glapi_table *disp) { 6271 return (_glptr_TexSubImage3D) (GET_by_offset(disp, _gloffset_TexSubImage3D)); 6272 } 6273 6274 static inline void SET_TexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *)) { 6275 SET_by_offset(disp, _gloffset_TexSubImage3D, fn); 6276 } 6277 6278 typedef void (GLAPIENTRYP _glptr_CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei); 6279 #define CALL_CopyTexSubImage3D(disp, parameters) \ 6280 (* GET_CopyTexSubImage3D(disp)) parameters 6281 static inline _glptr_CopyTexSubImage3D GET_CopyTexSubImage3D(struct _glapi_table *disp) { 6282 return (_glptr_CopyTexSubImage3D) (GET_by_offset(disp, _gloffset_CopyTexSubImage3D)); 6283 } 6284 6285 static inline void SET_CopyTexSubImage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei)) { 6286 SET_by_offset(disp, _gloffset_CopyTexSubImage3D, fn); 6287 } 6288 6289 typedef void (GLAPIENTRYP _glptr_ActiveTextureARB)(GLenum); 6290 #define CALL_ActiveTextureARB(disp, parameters) \ 6291 (* GET_ActiveTextureARB(disp)) parameters 6292 static inline _glptr_ActiveTextureARB GET_ActiveTextureARB(struct _glapi_table *disp) { 6293 return (_glptr_ActiveTextureARB) (GET_by_offset(disp, _gloffset_ActiveTextureARB)); 6294 } 6295 6296 static inline void SET_ActiveTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 6297 SET_by_offset(disp, _gloffset_ActiveTextureARB, fn); 6298 } 6299 6300 typedef void (GLAPIENTRYP _glptr_ClientActiveTextureARB)(GLenum); 6301 #define CALL_ClientActiveTextureARB(disp, parameters) \ 6302 (* GET_ClientActiveTextureARB(disp)) parameters 6303 static inline _glptr_ClientActiveTextureARB GET_ClientActiveTextureARB(struct _glapi_table *disp) { 6304 return (_glptr_ClientActiveTextureARB) (GET_by_offset(disp, _gloffset_ClientActiveTextureARB)); 6305 } 6306 6307 static inline void SET_ClientActiveTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 6308 SET_by_offset(disp, _gloffset_ClientActiveTextureARB, fn); 6309 } 6310 6311 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dARB)(GLenum, GLdouble); 6312 #define CALL_MultiTexCoord1dARB(disp, parameters) \ 6313 (* GET_MultiTexCoord1dARB(disp)) parameters 6314 static inline _glptr_MultiTexCoord1dARB GET_MultiTexCoord1dARB(struct _glapi_table *disp) { 6315 return (_glptr_MultiTexCoord1dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1dARB)); 6316 } 6317 6318 static inline void SET_MultiTexCoord1dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble)) { 6319 SET_by_offset(disp, _gloffset_MultiTexCoord1dARB, fn); 6320 } 6321 6322 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1dvARB)(GLenum, const GLdouble *); 6323 #define CALL_MultiTexCoord1dvARB(disp, parameters) \ 6324 (* GET_MultiTexCoord1dvARB(disp)) parameters 6325 static inline _glptr_MultiTexCoord1dvARB GET_MultiTexCoord1dvARB(struct _glapi_table *disp) { 6326 return (_glptr_MultiTexCoord1dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1dvARB)); 6327 } 6328 6329 static inline void SET_MultiTexCoord1dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) { 6330 SET_by_offset(disp, _gloffset_MultiTexCoord1dvARB, fn); 6331 } 6332 6333 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fARB)(GLenum, GLfloat); 6334 #define CALL_MultiTexCoord1fARB(disp, parameters) \ 6335 (* GET_MultiTexCoord1fARB(disp)) parameters 6336 static inline _glptr_MultiTexCoord1fARB GET_MultiTexCoord1fARB(struct _glapi_table *disp) { 6337 return (_glptr_MultiTexCoord1fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fARB)); 6338 } 6339 6340 static inline void SET_MultiTexCoord1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 6341 SET_by_offset(disp, _gloffset_MultiTexCoord1fARB, fn); 6342 } 6343 6344 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1fvARB)(GLenum, const GLfloat *); 6345 #define CALL_MultiTexCoord1fvARB(disp, parameters) \ 6346 (* GET_MultiTexCoord1fvARB(disp)) parameters 6347 static inline _glptr_MultiTexCoord1fvARB GET_MultiTexCoord1fvARB(struct _glapi_table *disp) { 6348 return (_glptr_MultiTexCoord1fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1fvARB)); 6349 } 6350 6351 static inline void SET_MultiTexCoord1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 6352 SET_by_offset(disp, _gloffset_MultiTexCoord1fvARB, fn); 6353 } 6354 6355 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1iARB)(GLenum, GLint); 6356 #define CALL_MultiTexCoord1iARB(disp, parameters) \ 6357 (* GET_MultiTexCoord1iARB(disp)) parameters 6358 static inline _glptr_MultiTexCoord1iARB GET_MultiTexCoord1iARB(struct _glapi_table *disp) { 6359 return (_glptr_MultiTexCoord1iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1iARB)); 6360 } 6361 6362 static inline void SET_MultiTexCoord1iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) { 6363 SET_by_offset(disp, _gloffset_MultiTexCoord1iARB, fn); 6364 } 6365 6366 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1ivARB)(GLenum, const GLint *); 6367 #define CALL_MultiTexCoord1ivARB(disp, parameters) \ 6368 (* GET_MultiTexCoord1ivARB(disp)) parameters 6369 static inline _glptr_MultiTexCoord1ivARB GET_MultiTexCoord1ivARB(struct _glapi_table *disp) { 6370 return (_glptr_MultiTexCoord1ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1ivARB)); 6371 } 6372 6373 static inline void SET_MultiTexCoord1ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 6374 SET_by_offset(disp, _gloffset_MultiTexCoord1ivARB, fn); 6375 } 6376 6377 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1sARB)(GLenum, GLshort); 6378 #define CALL_MultiTexCoord1sARB(disp, parameters) \ 6379 (* GET_MultiTexCoord1sARB(disp)) parameters 6380 static inline _glptr_MultiTexCoord1sARB GET_MultiTexCoord1sARB(struct _glapi_table *disp) { 6381 return (_glptr_MultiTexCoord1sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1sARB)); 6382 } 6383 6384 static inline void SET_MultiTexCoord1sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort)) { 6385 SET_by_offset(disp, _gloffset_MultiTexCoord1sARB, fn); 6386 } 6387 6388 typedef void (GLAPIENTRYP _glptr_MultiTexCoord1svARB)(GLenum, const GLshort *); 6389 #define CALL_MultiTexCoord1svARB(disp, parameters) \ 6390 (* GET_MultiTexCoord1svARB(disp)) parameters 6391 static inline _glptr_MultiTexCoord1svARB GET_MultiTexCoord1svARB(struct _glapi_table *disp) { 6392 return (_glptr_MultiTexCoord1svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord1svARB)); 6393 } 6394 6395 static inline void SET_MultiTexCoord1svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) { 6396 SET_by_offset(disp, _gloffset_MultiTexCoord1svARB, fn); 6397 } 6398 6399 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dARB)(GLenum, GLdouble, GLdouble); 6400 #define CALL_MultiTexCoord2dARB(disp, parameters) \ 6401 (* GET_MultiTexCoord2dARB(disp)) parameters 6402 static inline _glptr_MultiTexCoord2dARB GET_MultiTexCoord2dARB(struct _glapi_table *disp) { 6403 return (_glptr_MultiTexCoord2dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2dARB)); 6404 } 6405 6406 static inline void SET_MultiTexCoord2dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble)) { 6407 SET_by_offset(disp, _gloffset_MultiTexCoord2dARB, fn); 6408 } 6409 6410 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2dvARB)(GLenum, const GLdouble *); 6411 #define CALL_MultiTexCoord2dvARB(disp, parameters) \ 6412 (* GET_MultiTexCoord2dvARB(disp)) parameters 6413 static inline _glptr_MultiTexCoord2dvARB GET_MultiTexCoord2dvARB(struct _glapi_table *disp) { 6414 return (_glptr_MultiTexCoord2dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2dvARB)); 6415 } 6416 6417 static inline void SET_MultiTexCoord2dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) { 6418 SET_by_offset(disp, _gloffset_MultiTexCoord2dvARB, fn); 6419 } 6420 6421 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fARB)(GLenum, GLfloat, GLfloat); 6422 #define CALL_MultiTexCoord2fARB(disp, parameters) \ 6423 (* GET_MultiTexCoord2fARB(disp)) parameters 6424 static inline _glptr_MultiTexCoord2fARB GET_MultiTexCoord2fARB(struct _glapi_table *disp) { 6425 return (_glptr_MultiTexCoord2fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fARB)); 6426 } 6427 6428 static inline void SET_MultiTexCoord2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat)) { 6429 SET_by_offset(disp, _gloffset_MultiTexCoord2fARB, fn); 6430 } 6431 6432 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2fvARB)(GLenum, const GLfloat *); 6433 #define CALL_MultiTexCoord2fvARB(disp, parameters) \ 6434 (* GET_MultiTexCoord2fvARB(disp)) parameters 6435 static inline _glptr_MultiTexCoord2fvARB GET_MultiTexCoord2fvARB(struct _glapi_table *disp) { 6436 return (_glptr_MultiTexCoord2fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2fvARB)); 6437 } 6438 6439 static inline void SET_MultiTexCoord2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 6440 SET_by_offset(disp, _gloffset_MultiTexCoord2fvARB, fn); 6441 } 6442 6443 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2iARB)(GLenum, GLint, GLint); 6444 #define CALL_MultiTexCoord2iARB(disp, parameters) \ 6445 (* GET_MultiTexCoord2iARB(disp)) parameters 6446 static inline _glptr_MultiTexCoord2iARB GET_MultiTexCoord2iARB(struct _glapi_table *disp) { 6447 return (_glptr_MultiTexCoord2iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2iARB)); 6448 } 6449 6450 static inline void SET_MultiTexCoord2iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint)) { 6451 SET_by_offset(disp, _gloffset_MultiTexCoord2iARB, fn); 6452 } 6453 6454 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2ivARB)(GLenum, const GLint *); 6455 #define CALL_MultiTexCoord2ivARB(disp, parameters) \ 6456 (* GET_MultiTexCoord2ivARB(disp)) parameters 6457 static inline _glptr_MultiTexCoord2ivARB GET_MultiTexCoord2ivARB(struct _glapi_table *disp) { 6458 return (_glptr_MultiTexCoord2ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2ivARB)); 6459 } 6460 6461 static inline void SET_MultiTexCoord2ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 6462 SET_by_offset(disp, _gloffset_MultiTexCoord2ivARB, fn); 6463 } 6464 6465 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2sARB)(GLenum, GLshort, GLshort); 6466 #define CALL_MultiTexCoord2sARB(disp, parameters) \ 6467 (* GET_MultiTexCoord2sARB(disp)) parameters 6468 static inline _glptr_MultiTexCoord2sARB GET_MultiTexCoord2sARB(struct _glapi_table *disp) { 6469 return (_glptr_MultiTexCoord2sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2sARB)); 6470 } 6471 6472 static inline void SET_MultiTexCoord2sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort)) { 6473 SET_by_offset(disp, _gloffset_MultiTexCoord2sARB, fn); 6474 } 6475 6476 typedef void (GLAPIENTRYP _glptr_MultiTexCoord2svARB)(GLenum, const GLshort *); 6477 #define CALL_MultiTexCoord2svARB(disp, parameters) \ 6478 (* GET_MultiTexCoord2svARB(disp)) parameters 6479 static inline _glptr_MultiTexCoord2svARB GET_MultiTexCoord2svARB(struct _glapi_table *disp) { 6480 return (_glptr_MultiTexCoord2svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord2svARB)); 6481 } 6482 6483 static inline void SET_MultiTexCoord2svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) { 6484 SET_by_offset(disp, _gloffset_MultiTexCoord2svARB, fn); 6485 } 6486 6487 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dARB)(GLenum, GLdouble, GLdouble, GLdouble); 6488 #define CALL_MultiTexCoord3dARB(disp, parameters) \ 6489 (* GET_MultiTexCoord3dARB(disp)) parameters 6490 static inline _glptr_MultiTexCoord3dARB GET_MultiTexCoord3dARB(struct _glapi_table *disp) { 6491 return (_glptr_MultiTexCoord3dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3dARB)); 6492 } 6493 6494 static inline void SET_MultiTexCoord3dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble)) { 6495 SET_by_offset(disp, _gloffset_MultiTexCoord3dARB, fn); 6496 } 6497 6498 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3dvARB)(GLenum, const GLdouble *); 6499 #define CALL_MultiTexCoord3dvARB(disp, parameters) \ 6500 (* GET_MultiTexCoord3dvARB(disp)) parameters 6501 static inline _glptr_MultiTexCoord3dvARB GET_MultiTexCoord3dvARB(struct _glapi_table *disp) { 6502 return (_glptr_MultiTexCoord3dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3dvARB)); 6503 } 6504 6505 static inline void SET_MultiTexCoord3dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) { 6506 SET_by_offset(disp, _gloffset_MultiTexCoord3dvARB, fn); 6507 } 6508 6509 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fARB)(GLenum, GLfloat, GLfloat, GLfloat); 6510 #define CALL_MultiTexCoord3fARB(disp, parameters) \ 6511 (* GET_MultiTexCoord3fARB(disp)) parameters 6512 static inline _glptr_MultiTexCoord3fARB GET_MultiTexCoord3fARB(struct _glapi_table *disp) { 6513 return (_glptr_MultiTexCoord3fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fARB)); 6514 } 6515 6516 static inline void SET_MultiTexCoord3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat)) { 6517 SET_by_offset(disp, _gloffset_MultiTexCoord3fARB, fn); 6518 } 6519 6520 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3fvARB)(GLenum, const GLfloat *); 6521 #define CALL_MultiTexCoord3fvARB(disp, parameters) \ 6522 (* GET_MultiTexCoord3fvARB(disp)) parameters 6523 static inline _glptr_MultiTexCoord3fvARB GET_MultiTexCoord3fvARB(struct _glapi_table *disp) { 6524 return (_glptr_MultiTexCoord3fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3fvARB)); 6525 } 6526 6527 static inline void SET_MultiTexCoord3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 6528 SET_by_offset(disp, _gloffset_MultiTexCoord3fvARB, fn); 6529 } 6530 6531 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3iARB)(GLenum, GLint, GLint, GLint); 6532 #define CALL_MultiTexCoord3iARB(disp, parameters) \ 6533 (* GET_MultiTexCoord3iARB(disp)) parameters 6534 static inline _glptr_MultiTexCoord3iARB GET_MultiTexCoord3iARB(struct _glapi_table *disp) { 6535 return (_glptr_MultiTexCoord3iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3iARB)); 6536 } 6537 6538 static inline void SET_MultiTexCoord3iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint)) { 6539 SET_by_offset(disp, _gloffset_MultiTexCoord3iARB, fn); 6540 } 6541 6542 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3ivARB)(GLenum, const GLint *); 6543 #define CALL_MultiTexCoord3ivARB(disp, parameters) \ 6544 (* GET_MultiTexCoord3ivARB(disp)) parameters 6545 static inline _glptr_MultiTexCoord3ivARB GET_MultiTexCoord3ivARB(struct _glapi_table *disp) { 6546 return (_glptr_MultiTexCoord3ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3ivARB)); 6547 } 6548 6549 static inline void SET_MultiTexCoord3ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 6550 SET_by_offset(disp, _gloffset_MultiTexCoord3ivARB, fn); 6551 } 6552 6553 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3sARB)(GLenum, GLshort, GLshort, GLshort); 6554 #define CALL_MultiTexCoord3sARB(disp, parameters) \ 6555 (* GET_MultiTexCoord3sARB(disp)) parameters 6556 static inline _glptr_MultiTexCoord3sARB GET_MultiTexCoord3sARB(struct _glapi_table *disp) { 6557 return (_glptr_MultiTexCoord3sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3sARB)); 6558 } 6559 6560 static inline void SET_MultiTexCoord3sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort)) { 6561 SET_by_offset(disp, _gloffset_MultiTexCoord3sARB, fn); 6562 } 6563 6564 typedef void (GLAPIENTRYP _glptr_MultiTexCoord3svARB)(GLenum, const GLshort *); 6565 #define CALL_MultiTexCoord3svARB(disp, parameters) \ 6566 (* GET_MultiTexCoord3svARB(disp)) parameters 6567 static inline _glptr_MultiTexCoord3svARB GET_MultiTexCoord3svARB(struct _glapi_table *disp) { 6568 return (_glptr_MultiTexCoord3svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord3svARB)); 6569 } 6570 6571 static inline void SET_MultiTexCoord3svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) { 6572 SET_by_offset(disp, _gloffset_MultiTexCoord3svARB, fn); 6573 } 6574 6575 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dARB)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble); 6576 #define CALL_MultiTexCoord4dARB(disp, parameters) \ 6577 (* GET_MultiTexCoord4dARB(disp)) parameters 6578 static inline _glptr_MultiTexCoord4dARB GET_MultiTexCoord4dARB(struct _glapi_table *disp) { 6579 return (_glptr_MultiTexCoord4dARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4dARB)); 6580 } 6581 6582 static inline void SET_MultiTexCoord4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble)) { 6583 SET_by_offset(disp, _gloffset_MultiTexCoord4dARB, fn); 6584 } 6585 6586 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4dvARB)(GLenum, const GLdouble *); 6587 #define CALL_MultiTexCoord4dvARB(disp, parameters) \ 6588 (* GET_MultiTexCoord4dvARB(disp)) parameters 6589 static inline _glptr_MultiTexCoord4dvARB GET_MultiTexCoord4dvARB(struct _glapi_table *disp) { 6590 return (_glptr_MultiTexCoord4dvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4dvARB)); 6591 } 6592 6593 static inline void SET_MultiTexCoord4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLdouble *)) { 6594 SET_by_offset(disp, _gloffset_MultiTexCoord4dvARB, fn); 6595 } 6596 6597 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fARB)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat); 6598 #define CALL_MultiTexCoord4fARB(disp, parameters) \ 6599 (* GET_MultiTexCoord4fARB(disp)) parameters 6600 static inline _glptr_MultiTexCoord4fARB GET_MultiTexCoord4fARB(struct _glapi_table *disp) { 6601 return (_glptr_MultiTexCoord4fARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fARB)); 6602 } 6603 6604 static inline void SET_MultiTexCoord4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat)) { 6605 SET_by_offset(disp, _gloffset_MultiTexCoord4fARB, fn); 6606 } 6607 6608 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4fvARB)(GLenum, const GLfloat *); 6609 #define CALL_MultiTexCoord4fvARB(disp, parameters) \ 6610 (* GET_MultiTexCoord4fvARB(disp)) parameters 6611 static inline _glptr_MultiTexCoord4fvARB GET_MultiTexCoord4fvARB(struct _glapi_table *disp) { 6612 return (_glptr_MultiTexCoord4fvARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4fvARB)); 6613 } 6614 6615 static inline void SET_MultiTexCoord4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 6616 SET_by_offset(disp, _gloffset_MultiTexCoord4fvARB, fn); 6617 } 6618 6619 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4iARB)(GLenum, GLint, GLint, GLint, GLint); 6620 #define CALL_MultiTexCoord4iARB(disp, parameters) \ 6621 (* GET_MultiTexCoord4iARB(disp)) parameters 6622 static inline _glptr_MultiTexCoord4iARB GET_MultiTexCoord4iARB(struct _glapi_table *disp) { 6623 return (_glptr_MultiTexCoord4iARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4iARB)); 6624 } 6625 6626 static inline void SET_MultiTexCoord4iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint)) { 6627 SET_by_offset(disp, _gloffset_MultiTexCoord4iARB, fn); 6628 } 6629 6630 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4ivARB)(GLenum, const GLint *); 6631 #define CALL_MultiTexCoord4ivARB(disp, parameters) \ 6632 (* GET_MultiTexCoord4ivARB(disp)) parameters 6633 static inline _glptr_MultiTexCoord4ivARB GET_MultiTexCoord4ivARB(struct _glapi_table *disp) { 6634 return (_glptr_MultiTexCoord4ivARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4ivARB)); 6635 } 6636 6637 static inline void SET_MultiTexCoord4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 6638 SET_by_offset(disp, _gloffset_MultiTexCoord4ivARB, fn); 6639 } 6640 6641 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4sARB)(GLenum, GLshort, GLshort, GLshort, GLshort); 6642 #define CALL_MultiTexCoord4sARB(disp, parameters) \ 6643 (* GET_MultiTexCoord4sARB(disp)) parameters 6644 static inline _glptr_MultiTexCoord4sARB GET_MultiTexCoord4sARB(struct _glapi_table *disp) { 6645 return (_glptr_MultiTexCoord4sARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4sARB)); 6646 } 6647 6648 static inline void SET_MultiTexCoord4sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLshort, GLshort, GLshort, GLshort)) { 6649 SET_by_offset(disp, _gloffset_MultiTexCoord4sARB, fn); 6650 } 6651 6652 typedef void (GLAPIENTRYP _glptr_MultiTexCoord4svARB)(GLenum, const GLshort *); 6653 #define CALL_MultiTexCoord4svARB(disp, parameters) \ 6654 (* GET_MultiTexCoord4svARB(disp)) parameters 6655 static inline _glptr_MultiTexCoord4svARB GET_MultiTexCoord4svARB(struct _glapi_table *disp) { 6656 return (_glptr_MultiTexCoord4svARB) (GET_by_offset(disp, _gloffset_MultiTexCoord4svARB)); 6657 } 6658 6659 static inline void SET_MultiTexCoord4svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLshort *)) { 6660 SET_by_offset(disp, _gloffset_MultiTexCoord4svARB, fn); 6661 } 6662 6663 typedef void (GLAPIENTRYP _glptr_AttachShader)(GLuint, GLuint); 6664 #define CALL_AttachShader(disp, parameters) \ 6665 (* GET_AttachShader(disp)) parameters 6666 static inline _glptr_AttachShader GET_AttachShader(struct _glapi_table *disp) { 6667 return (_glptr_AttachShader) (GET_by_offset(disp, _gloffset_AttachShader)); 6668 } 6669 6670 static inline void SET_AttachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) { 6671 SET_by_offset(disp, _gloffset_AttachShader, fn); 6672 } 6673 6674 typedef GLuint (GLAPIENTRYP _glptr_CreateProgram)(void); 6675 #define CALL_CreateProgram(disp, parameters) \ 6676 (* GET_CreateProgram(disp)) parameters 6677 static inline _glptr_CreateProgram GET_CreateProgram(struct _glapi_table *disp) { 6678 return (_glptr_CreateProgram) (GET_by_offset(disp, _gloffset_CreateProgram)); 6679 } 6680 6681 static inline void SET_CreateProgram(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(void)) { 6682 SET_by_offset(disp, _gloffset_CreateProgram, fn); 6683 } 6684 6685 typedef GLuint (GLAPIENTRYP _glptr_CreateShader)(GLenum); 6686 #define CALL_CreateShader(disp, parameters) \ 6687 (* GET_CreateShader(disp)) parameters 6688 static inline _glptr_CreateShader GET_CreateShader(struct _glapi_table *disp) { 6689 return (_glptr_CreateShader) (GET_by_offset(disp, _gloffset_CreateShader)); 6690 } 6691 6692 static inline void SET_CreateShader(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum)) { 6693 SET_by_offset(disp, _gloffset_CreateShader, fn); 6694 } 6695 6696 typedef void (GLAPIENTRYP _glptr_DeleteProgram)(GLuint); 6697 #define CALL_DeleteProgram(disp, parameters) \ 6698 (* GET_DeleteProgram(disp)) parameters 6699 static inline _glptr_DeleteProgram GET_DeleteProgram(struct _glapi_table *disp) { 6700 return (_glptr_DeleteProgram) (GET_by_offset(disp, _gloffset_DeleteProgram)); 6701 } 6702 6703 static inline void SET_DeleteProgram(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 6704 SET_by_offset(disp, _gloffset_DeleteProgram, fn); 6705 } 6706 6707 typedef void (GLAPIENTRYP _glptr_DeleteShader)(GLuint); 6708 #define CALL_DeleteShader(disp, parameters) \ 6709 (* GET_DeleteShader(disp)) parameters 6710 static inline _glptr_DeleteShader GET_DeleteShader(struct _glapi_table *disp) { 6711 return (_glptr_DeleteShader) (GET_by_offset(disp, _gloffset_DeleteShader)); 6712 } 6713 6714 static inline void SET_DeleteShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 6715 SET_by_offset(disp, _gloffset_DeleteShader, fn); 6716 } 6717 6718 typedef void (GLAPIENTRYP _glptr_DetachShader)(GLuint, GLuint); 6719 #define CALL_DetachShader(disp, parameters) \ 6720 (* GET_DetachShader(disp)) parameters 6721 static inline _glptr_DetachShader GET_DetachShader(struct _glapi_table *disp) { 6722 return (_glptr_DetachShader) (GET_by_offset(disp, _gloffset_DetachShader)); 6723 } 6724 6725 static inline void SET_DetachShader(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) { 6726 SET_by_offset(disp, _gloffset_DetachShader, fn); 6727 } 6728 6729 typedef void (GLAPIENTRYP _glptr_GetAttachedShaders)(GLuint, GLsizei, GLsizei *, GLuint *); 6730 #define CALL_GetAttachedShaders(disp, parameters) \ 6731 (* GET_GetAttachedShaders(disp)) parameters 6732 static inline _glptr_GetAttachedShaders GET_GetAttachedShaders(struct _glapi_table *disp) { 6733 return (_glptr_GetAttachedShaders) (GET_by_offset(disp, _gloffset_GetAttachedShaders)); 6734 } 6735 6736 static inline void SET_GetAttachedShaders(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLuint *)) { 6737 SET_by_offset(disp, _gloffset_GetAttachedShaders, fn); 6738 } 6739 6740 typedef void (GLAPIENTRYP _glptr_GetProgramInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *); 6741 #define CALL_GetProgramInfoLog(disp, parameters) \ 6742 (* GET_GetProgramInfoLog(disp)) parameters 6743 static inline _glptr_GetProgramInfoLog GET_GetProgramInfoLog(struct _glapi_table *disp) { 6744 return (_glptr_GetProgramInfoLog) (GET_by_offset(disp, _gloffset_GetProgramInfoLog)); 6745 } 6746 6747 static inline void SET_GetProgramInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) { 6748 SET_by_offset(disp, _gloffset_GetProgramInfoLog, fn); 6749 } 6750 6751 typedef void (GLAPIENTRYP _glptr_GetProgramiv)(GLuint, GLenum, GLint *); 6752 #define CALL_GetProgramiv(disp, parameters) \ 6753 (* GET_GetProgramiv(disp)) parameters 6754 static inline _glptr_GetProgramiv GET_GetProgramiv(struct _glapi_table *disp) { 6755 return (_glptr_GetProgramiv) (GET_by_offset(disp, _gloffset_GetProgramiv)); 6756 } 6757 6758 static inline void SET_GetProgramiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 6759 SET_by_offset(disp, _gloffset_GetProgramiv, fn); 6760 } 6761 6762 typedef void (GLAPIENTRYP _glptr_GetShaderInfoLog)(GLuint, GLsizei, GLsizei *, GLchar *); 6763 #define CALL_GetShaderInfoLog(disp, parameters) \ 6764 (* GET_GetShaderInfoLog(disp)) parameters 6765 static inline _glptr_GetShaderInfoLog GET_GetShaderInfoLog(struct _glapi_table *disp) { 6766 return (_glptr_GetShaderInfoLog) (GET_by_offset(disp, _gloffset_GetShaderInfoLog)); 6767 } 6768 6769 static inline void SET_GetShaderInfoLog(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLchar *)) { 6770 SET_by_offset(disp, _gloffset_GetShaderInfoLog, fn); 6771 } 6772 6773 typedef void (GLAPIENTRYP _glptr_GetShaderiv)(GLuint, GLenum, GLint *); 6774 #define CALL_GetShaderiv(disp, parameters) \ 6775 (* GET_GetShaderiv(disp)) parameters 6776 static inline _glptr_GetShaderiv GET_GetShaderiv(struct _glapi_table *disp) { 6777 return (_glptr_GetShaderiv) (GET_by_offset(disp, _gloffset_GetShaderiv)); 6778 } 6779 6780 static inline void SET_GetShaderiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 6781 SET_by_offset(disp, _gloffset_GetShaderiv, fn); 6782 } 6783 6784 typedef GLboolean (GLAPIENTRYP _glptr_IsProgram)(GLuint); 6785 #define CALL_IsProgram(disp, parameters) \ 6786 (* GET_IsProgram(disp)) parameters 6787 static inline _glptr_IsProgram GET_IsProgram(struct _glapi_table *disp) { 6788 return (_glptr_IsProgram) (GET_by_offset(disp, _gloffset_IsProgram)); 6789 } 6790 6791 static inline void SET_IsProgram(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 6792 SET_by_offset(disp, _gloffset_IsProgram, fn); 6793 } 6794 6795 typedef GLboolean (GLAPIENTRYP _glptr_IsShader)(GLuint); 6796 #define CALL_IsShader(disp, parameters) \ 6797 (* GET_IsShader(disp)) parameters 6798 static inline _glptr_IsShader GET_IsShader(struct _glapi_table *disp) { 6799 return (_glptr_IsShader) (GET_by_offset(disp, _gloffset_IsShader)); 6800 } 6801 6802 static inline void SET_IsShader(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 6803 SET_by_offset(disp, _gloffset_IsShader, fn); 6804 } 6805 6806 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparate)(GLenum, GLenum, GLint, GLuint); 6807 #define CALL_StencilFuncSeparate(disp, parameters) \ 6808 (* GET_StencilFuncSeparate(disp)) parameters 6809 static inline _glptr_StencilFuncSeparate GET_StencilFuncSeparate(struct _glapi_table *disp) { 6810 return (_glptr_StencilFuncSeparate) (GET_by_offset(disp, _gloffset_StencilFuncSeparate)); 6811 } 6812 6813 static inline void SET_StencilFuncSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) { 6814 SET_by_offset(disp, _gloffset_StencilFuncSeparate, fn); 6815 } 6816 6817 typedef void (GLAPIENTRYP _glptr_StencilMaskSeparate)(GLenum, GLuint); 6818 #define CALL_StencilMaskSeparate(disp, parameters) \ 6819 (* GET_StencilMaskSeparate(disp)) parameters 6820 static inline _glptr_StencilMaskSeparate GET_StencilMaskSeparate(struct _glapi_table *disp) { 6821 return (_glptr_StencilMaskSeparate) (GET_by_offset(disp, _gloffset_StencilMaskSeparate)); 6822 } 6823 6824 static inline void SET_StencilMaskSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 6825 SET_by_offset(disp, _gloffset_StencilMaskSeparate, fn); 6826 } 6827 6828 typedef void (GLAPIENTRYP _glptr_StencilOpSeparate)(GLenum, GLenum, GLenum, GLenum); 6829 #define CALL_StencilOpSeparate(disp, parameters) \ 6830 (* GET_StencilOpSeparate(disp)) parameters 6831 static inline _glptr_StencilOpSeparate GET_StencilOpSeparate(struct _glapi_table *disp) { 6832 return (_glptr_StencilOpSeparate) (GET_by_offset(disp, _gloffset_StencilOpSeparate)); 6833 } 6834 6835 static inline void SET_StencilOpSeparate(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) { 6836 SET_by_offset(disp, _gloffset_StencilOpSeparate, fn); 6837 } 6838 6839 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x3fv)(GLint, GLsizei, GLboolean, const GLfloat *); 6840 #define CALL_UniformMatrix2x3fv(disp, parameters) \ 6841 (* GET_UniformMatrix2x3fv(disp)) parameters 6842 static inline _glptr_UniformMatrix2x3fv GET_UniformMatrix2x3fv(struct _glapi_table *disp) { 6843 return (_glptr_UniformMatrix2x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x3fv)); 6844 } 6845 6846 static inline void SET_UniformMatrix2x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 6847 SET_by_offset(disp, _gloffset_UniformMatrix2x3fv, fn); 6848 } 6849 6850 typedef void (GLAPIENTRYP _glptr_UniformMatrix2x4fv)(GLint, GLsizei, GLboolean, const GLfloat *); 6851 #define CALL_UniformMatrix2x4fv(disp, parameters) \ 6852 (* GET_UniformMatrix2x4fv(disp)) parameters 6853 static inline _glptr_UniformMatrix2x4fv GET_UniformMatrix2x4fv(struct _glapi_table *disp) { 6854 return (_glptr_UniformMatrix2x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix2x4fv)); 6855 } 6856 6857 static inline void SET_UniformMatrix2x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 6858 SET_by_offset(disp, _gloffset_UniformMatrix2x4fv, fn); 6859 } 6860 6861 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x2fv)(GLint, GLsizei, GLboolean, const GLfloat *); 6862 #define CALL_UniformMatrix3x2fv(disp, parameters) \ 6863 (* GET_UniformMatrix3x2fv(disp)) parameters 6864 static inline _glptr_UniformMatrix3x2fv GET_UniformMatrix3x2fv(struct _glapi_table *disp) { 6865 return (_glptr_UniformMatrix3x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x2fv)); 6866 } 6867 6868 static inline void SET_UniformMatrix3x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 6869 SET_by_offset(disp, _gloffset_UniformMatrix3x2fv, fn); 6870 } 6871 6872 typedef void (GLAPIENTRYP _glptr_UniformMatrix3x4fv)(GLint, GLsizei, GLboolean, const GLfloat *); 6873 #define CALL_UniformMatrix3x4fv(disp, parameters) \ 6874 (* GET_UniformMatrix3x4fv(disp)) parameters 6875 static inline _glptr_UniformMatrix3x4fv GET_UniformMatrix3x4fv(struct _glapi_table *disp) { 6876 return (_glptr_UniformMatrix3x4fv) (GET_by_offset(disp, _gloffset_UniformMatrix3x4fv)); 6877 } 6878 6879 static inline void SET_UniformMatrix3x4fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 6880 SET_by_offset(disp, _gloffset_UniformMatrix3x4fv, fn); 6881 } 6882 6883 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x2fv)(GLint, GLsizei, GLboolean, const GLfloat *); 6884 #define CALL_UniformMatrix4x2fv(disp, parameters) \ 6885 (* GET_UniformMatrix4x2fv(disp)) parameters 6886 static inline _glptr_UniformMatrix4x2fv GET_UniformMatrix4x2fv(struct _glapi_table *disp) { 6887 return (_glptr_UniformMatrix4x2fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x2fv)); 6888 } 6889 6890 static inline void SET_UniformMatrix4x2fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 6891 SET_by_offset(disp, _gloffset_UniformMatrix4x2fv, fn); 6892 } 6893 6894 typedef void (GLAPIENTRYP _glptr_UniformMatrix4x3fv)(GLint, GLsizei, GLboolean, const GLfloat *); 6895 #define CALL_UniformMatrix4x3fv(disp, parameters) \ 6896 (* GET_UniformMatrix4x3fv(disp)) parameters 6897 static inline _glptr_UniformMatrix4x3fv GET_UniformMatrix4x3fv(struct _glapi_table *disp) { 6898 return (_glptr_UniformMatrix4x3fv) (GET_by_offset(disp, _gloffset_UniformMatrix4x3fv)); 6899 } 6900 6901 static inline void SET_UniformMatrix4x3fv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 6902 SET_by_offset(disp, _gloffset_UniformMatrix4x3fv, fn); 6903 } 6904 6905 typedef void (GLAPIENTRYP _glptr_ClampColor)(GLenum, GLenum); 6906 #define CALL_ClampColor(disp, parameters) \ 6907 (* GET_ClampColor(disp)) parameters 6908 static inline _glptr_ClampColor GET_ClampColor(struct _glapi_table *disp) { 6909 return (_glptr_ClampColor) (GET_by_offset(disp, _gloffset_ClampColor)); 6910 } 6911 6912 static inline void SET_ClampColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 6913 SET_by_offset(disp, _gloffset_ClampColor, fn); 6914 } 6915 6916 typedef void (GLAPIENTRYP _glptr_ClearBufferfi)(GLenum, GLint, GLfloat, GLint); 6917 #define CALL_ClearBufferfi(disp, parameters) \ 6918 (* GET_ClearBufferfi(disp)) parameters 6919 static inline _glptr_ClearBufferfi GET_ClearBufferfi(struct _glapi_table *disp) { 6920 return (_glptr_ClearBufferfi) (GET_by_offset(disp, _gloffset_ClearBufferfi)); 6921 } 6922 6923 static inline void SET_ClearBufferfi(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLfloat, GLint)) { 6924 SET_by_offset(disp, _gloffset_ClearBufferfi, fn); 6925 } 6926 6927 typedef void (GLAPIENTRYP _glptr_ClearBufferfv)(GLenum, GLint, const GLfloat *); 6928 #define CALL_ClearBufferfv(disp, parameters) \ 6929 (* GET_ClearBufferfv(disp)) parameters 6930 static inline _glptr_ClearBufferfv GET_ClearBufferfv(struct _glapi_table *disp) { 6931 return (_glptr_ClearBufferfv) (GET_by_offset(disp, _gloffset_ClearBufferfv)); 6932 } 6933 6934 static inline void SET_ClearBufferfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLfloat *)) { 6935 SET_by_offset(disp, _gloffset_ClearBufferfv, fn); 6936 } 6937 6938 typedef void (GLAPIENTRYP _glptr_ClearBufferiv)(GLenum, GLint, const GLint *); 6939 #define CALL_ClearBufferiv(disp, parameters) \ 6940 (* GET_ClearBufferiv(disp)) parameters 6941 static inline _glptr_ClearBufferiv GET_ClearBufferiv(struct _glapi_table *disp) { 6942 return (_glptr_ClearBufferiv) (GET_by_offset(disp, _gloffset_ClearBufferiv)); 6943 } 6944 6945 static inline void SET_ClearBufferiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLint *)) { 6946 SET_by_offset(disp, _gloffset_ClearBufferiv, fn); 6947 } 6948 6949 typedef void (GLAPIENTRYP _glptr_ClearBufferuiv)(GLenum, GLint, const GLuint *); 6950 #define CALL_ClearBufferuiv(disp, parameters) \ 6951 (* GET_ClearBufferuiv(disp)) parameters 6952 static inline _glptr_ClearBufferuiv GET_ClearBufferuiv(struct _glapi_table *disp) { 6953 return (_glptr_ClearBufferuiv) (GET_by_offset(disp, _gloffset_ClearBufferuiv)); 6954 } 6955 6956 static inline void SET_ClearBufferuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, const GLuint *)) { 6957 SET_by_offset(disp, _gloffset_ClearBufferuiv, fn); 6958 } 6959 6960 typedef const GLubyte * (GLAPIENTRYP _glptr_GetStringi)(GLenum, GLuint); 6961 #define CALL_GetStringi(disp, parameters) \ 6962 (* GET_GetStringi(disp)) parameters 6963 static inline _glptr_GetStringi GET_GetStringi(struct _glapi_table *disp) { 6964 return (_glptr_GetStringi) (GET_by_offset(disp, _gloffset_GetStringi)); 6965 } 6966 6967 static inline void SET_GetStringi(struct _glapi_table *disp, const GLubyte * (GLAPIENTRYP fn)(GLenum, GLuint)) { 6968 SET_by_offset(disp, _gloffset_GetStringi, fn); 6969 } 6970 6971 typedef void (GLAPIENTRYP _glptr_FramebufferTexture)(GLenum, GLenum, GLuint, GLint); 6972 #define CALL_FramebufferTexture(disp, parameters) \ 6973 (* GET_FramebufferTexture(disp)) parameters 6974 static inline _glptr_FramebufferTexture GET_FramebufferTexture(struct _glapi_table *disp) { 6975 return (_glptr_FramebufferTexture) (GET_by_offset(disp, _gloffset_FramebufferTexture)); 6976 } 6977 6978 static inline void SET_FramebufferTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint)) { 6979 SET_by_offset(disp, _gloffset_FramebufferTexture, fn); 6980 } 6981 6982 typedef void (GLAPIENTRYP _glptr_GetBufferParameteri64v)(GLenum, GLenum, GLint64 *); 6983 #define CALL_GetBufferParameteri64v(disp, parameters) \ 6984 (* GET_GetBufferParameteri64v(disp)) parameters 6985 static inline _glptr_GetBufferParameteri64v GET_GetBufferParameteri64v(struct _glapi_table *disp) { 6986 return (_glptr_GetBufferParameteri64v) (GET_by_offset(disp, _gloffset_GetBufferParameteri64v)); 6987 } 6988 6989 static inline void SET_GetBufferParameteri64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint64 *)) { 6990 SET_by_offset(disp, _gloffset_GetBufferParameteri64v, fn); 6991 } 6992 6993 typedef void (GLAPIENTRYP _glptr_GetInteger64i_v)(GLenum, GLuint, GLint64 *); 6994 #define CALL_GetInteger64i_v(disp, parameters) \ 6995 (* GET_GetInteger64i_v(disp)) parameters 6996 static inline _glptr_GetInteger64i_v GET_GetInteger64i_v(struct _glapi_table *disp) { 6997 return (_glptr_GetInteger64i_v) (GET_by_offset(disp, _gloffset_GetInteger64i_v)); 6998 } 6999 7000 static inline void SET_GetInteger64i_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint64 *)) { 7001 SET_by_offset(disp, _gloffset_GetInteger64i_v, fn); 7002 } 7003 7004 typedef void (GLAPIENTRYP _glptr_VertexAttribDivisor)(GLuint, GLuint); 7005 #define CALL_VertexAttribDivisor(disp, parameters) \ 7006 (* GET_VertexAttribDivisor(disp)) parameters 7007 static inline _glptr_VertexAttribDivisor GET_VertexAttribDivisor(struct _glapi_table *disp) { 7008 return (_glptr_VertexAttribDivisor) (GET_by_offset(disp, _gloffset_VertexAttribDivisor)); 7009 } 7010 7011 static inline void SET_VertexAttribDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) { 7012 SET_by_offset(disp, _gloffset_VertexAttribDivisor, fn); 7013 } 7014 7015 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixdARB)(const GLdouble *); 7016 #define CALL_LoadTransposeMatrixdARB(disp, parameters) \ 7017 (* GET_LoadTransposeMatrixdARB(disp)) parameters 7018 static inline _glptr_LoadTransposeMatrixdARB GET_LoadTransposeMatrixdARB(struct _glapi_table *disp) { 7019 return (_glptr_LoadTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB)); 7020 } 7021 7022 static inline void SET_LoadTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 7023 SET_by_offset(disp, _gloffset_LoadTransposeMatrixdARB, fn); 7024 } 7025 7026 typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixfARB)(const GLfloat *); 7027 #define CALL_LoadTransposeMatrixfARB(disp, parameters) \ 7028 (* GET_LoadTransposeMatrixfARB(disp)) parameters 7029 static inline _glptr_LoadTransposeMatrixfARB GET_LoadTransposeMatrixfARB(struct _glapi_table *disp) { 7030 return (_glptr_LoadTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB)); 7031 } 7032 7033 static inline void SET_LoadTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 7034 SET_by_offset(disp, _gloffset_LoadTransposeMatrixfARB, fn); 7035 } 7036 7037 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixdARB)(const GLdouble *); 7038 #define CALL_MultTransposeMatrixdARB(disp, parameters) \ 7039 (* GET_MultTransposeMatrixdARB(disp)) parameters 7040 static inline _glptr_MultTransposeMatrixdARB GET_MultTransposeMatrixdARB(struct _glapi_table *disp) { 7041 return (_glptr_MultTransposeMatrixdARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixdARB)); 7042 } 7043 7044 static inline void SET_MultTransposeMatrixdARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 7045 SET_by_offset(disp, _gloffset_MultTransposeMatrixdARB, fn); 7046 } 7047 7048 typedef void (GLAPIENTRYP _glptr_MultTransposeMatrixfARB)(const GLfloat *); 7049 #define CALL_MultTransposeMatrixfARB(disp, parameters) \ 7050 (* GET_MultTransposeMatrixfARB(disp)) parameters 7051 static inline _glptr_MultTransposeMatrixfARB GET_MultTransposeMatrixfARB(struct _glapi_table *disp) { 7052 return (_glptr_MultTransposeMatrixfARB) (GET_by_offset(disp, _gloffset_MultTransposeMatrixfARB)); 7053 } 7054 7055 static inline void SET_MultTransposeMatrixfARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 7056 SET_by_offset(disp, _gloffset_MultTransposeMatrixfARB, fn); 7057 } 7058 7059 typedef void (GLAPIENTRYP _glptr_SampleCoverageARB)(GLclampf, GLboolean); 7060 #define CALL_SampleCoverageARB(disp, parameters) \ 7061 (* GET_SampleCoverageARB(disp)) parameters 7062 static inline _glptr_SampleCoverageARB GET_SampleCoverageARB(struct _glapi_table *disp) { 7063 return (_glptr_SampleCoverageARB) (GET_by_offset(disp, _gloffset_SampleCoverageARB)); 7064 } 7065 7066 static inline void SET_SampleCoverageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) { 7067 SET_by_offset(disp, _gloffset_SampleCoverageARB, fn); 7068 } 7069 7070 typedef void (GLAPIENTRYP _glptr_CompressedTexImage1DARB)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *); 7071 #define CALL_CompressedTexImage1DARB(disp, parameters) \ 7072 (* GET_CompressedTexImage1DARB(disp)) parameters 7073 static inline _glptr_CompressedTexImage1DARB GET_CompressedTexImage1DARB(struct _glapi_table *disp) { 7074 return (_glptr_CompressedTexImage1DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage1DARB)); 7075 } 7076 7077 static inline void SET_CompressedTexImage1DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *)) { 7078 SET_by_offset(disp, _gloffset_CompressedTexImage1DARB, fn); 7079 } 7080 7081 typedef void (GLAPIENTRYP _glptr_CompressedTexImage2DARB)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *); 7082 #define CALL_CompressedTexImage2DARB(disp, parameters) \ 7083 (* GET_CompressedTexImage2DARB(disp)) parameters 7084 static inline _glptr_CompressedTexImage2DARB GET_CompressedTexImage2DARB(struct _glapi_table *disp) { 7085 return (_glptr_CompressedTexImage2DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage2DARB)); 7086 } 7087 7088 static inline void SET_CompressedTexImage2DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) { 7089 SET_by_offset(disp, _gloffset_CompressedTexImage2DARB, fn); 7090 } 7091 7092 typedef void (GLAPIENTRYP _glptr_CompressedTexImage3DARB)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *); 7093 #define CALL_CompressedTexImage3DARB(disp, parameters) \ 7094 (* GET_CompressedTexImage3DARB(disp)) parameters 7095 static inline _glptr_CompressedTexImage3DARB GET_CompressedTexImage3DARB(struct _glapi_table *disp) { 7096 return (_glptr_CompressedTexImage3DARB) (GET_by_offset(disp, _gloffset_CompressedTexImage3DARB)); 7097 } 7098 7099 static inline void SET_CompressedTexImage3DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *)) { 7100 SET_by_offset(disp, _gloffset_CompressedTexImage3DARB, fn); 7101 } 7102 7103 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage1DARB)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *); 7104 #define CALL_CompressedTexSubImage1DARB(disp, parameters) \ 7105 (* GET_CompressedTexSubImage1DARB(disp)) parameters 7106 static inline _glptr_CompressedTexSubImage1DARB GET_CompressedTexSubImage1DARB(struct _glapi_table *disp) { 7107 return (_glptr_CompressedTexSubImage1DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage1DARB)); 7108 } 7109 7110 static inline void SET_CompressedTexSubImage1DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *)) { 7111 SET_by_offset(disp, _gloffset_CompressedTexSubImage1DARB, fn); 7112 } 7113 7114 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage2DARB)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *); 7115 #define CALL_CompressedTexSubImage2DARB(disp, parameters) \ 7116 (* GET_CompressedTexSubImage2DARB(disp)) parameters 7117 static inline _glptr_CompressedTexSubImage2DARB GET_CompressedTexSubImage2DARB(struct _glapi_table *disp) { 7118 return (_glptr_CompressedTexSubImage2DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage2DARB)); 7119 } 7120 7121 static inline void SET_CompressedTexSubImage2DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) { 7122 SET_by_offset(disp, _gloffset_CompressedTexSubImage2DARB, fn); 7123 } 7124 7125 typedef void (GLAPIENTRYP _glptr_CompressedTexSubImage3DARB)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *); 7126 #define CALL_CompressedTexSubImage3DARB(disp, parameters) \ 7127 (* GET_CompressedTexSubImage3DARB(disp)) parameters 7128 static inline _glptr_CompressedTexSubImage3DARB GET_CompressedTexSubImage3DARB(struct _glapi_table *disp) { 7129 return (_glptr_CompressedTexSubImage3DARB) (GET_by_offset(disp, _gloffset_CompressedTexSubImage3DARB)); 7130 } 7131 7132 static inline void SET_CompressedTexSubImage3DARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *)) { 7133 SET_by_offset(disp, _gloffset_CompressedTexSubImage3DARB, fn); 7134 } 7135 7136 typedef void (GLAPIENTRYP _glptr_GetCompressedTexImageARB)(GLenum, GLint, GLvoid *); 7137 #define CALL_GetCompressedTexImageARB(disp, parameters) \ 7138 (* GET_GetCompressedTexImageARB(disp)) parameters 7139 static inline _glptr_GetCompressedTexImageARB GET_GetCompressedTexImageARB(struct _glapi_table *disp) { 7140 return (_glptr_GetCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetCompressedTexImageARB)); 7141 } 7142 7143 static inline void SET_GetCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLvoid *)) { 7144 SET_by_offset(disp, _gloffset_GetCompressedTexImageARB, fn); 7145 } 7146 7147 typedef void (GLAPIENTRYP _glptr_DisableVertexAttribArrayARB)(GLuint); 7148 #define CALL_DisableVertexAttribArrayARB(disp, parameters) \ 7149 (* GET_DisableVertexAttribArrayARB(disp)) parameters 7150 static inline _glptr_DisableVertexAttribArrayARB GET_DisableVertexAttribArrayARB(struct _glapi_table *disp) { 7151 return (_glptr_DisableVertexAttribArrayARB) (GET_by_offset(disp, _gloffset_DisableVertexAttribArrayARB)); 7152 } 7153 7154 static inline void SET_DisableVertexAttribArrayARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 7155 SET_by_offset(disp, _gloffset_DisableVertexAttribArrayARB, fn); 7156 } 7157 7158 typedef void (GLAPIENTRYP _glptr_EnableVertexAttribArrayARB)(GLuint); 7159 #define CALL_EnableVertexAttribArrayARB(disp, parameters) \ 7160 (* GET_EnableVertexAttribArrayARB(disp)) parameters 7161 static inline _glptr_EnableVertexAttribArrayARB GET_EnableVertexAttribArrayARB(struct _glapi_table *disp) { 7162 return (_glptr_EnableVertexAttribArrayARB) (GET_by_offset(disp, _gloffset_EnableVertexAttribArrayARB)); 7163 } 7164 7165 static inline void SET_EnableVertexAttribArrayARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 7166 SET_by_offset(disp, _gloffset_EnableVertexAttribArrayARB, fn); 7167 } 7168 7169 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterdvARB)(GLenum, GLuint, GLdouble *); 7170 #define CALL_GetProgramEnvParameterdvARB(disp, parameters) \ 7171 (* GET_GetProgramEnvParameterdvARB(disp)) parameters 7172 static inline _glptr_GetProgramEnvParameterdvARB GET_GetProgramEnvParameterdvARB(struct _glapi_table *disp) { 7173 return (_glptr_GetProgramEnvParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB)); 7174 } 7175 7176 static inline void SET_GetProgramEnvParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) { 7177 SET_by_offset(disp, _gloffset_GetProgramEnvParameterdvARB, fn); 7178 } 7179 7180 typedef void (GLAPIENTRYP _glptr_GetProgramEnvParameterfvARB)(GLenum, GLuint, GLfloat *); 7181 #define CALL_GetProgramEnvParameterfvARB(disp, parameters) \ 7182 (* GET_GetProgramEnvParameterfvARB(disp)) parameters 7183 static inline _glptr_GetProgramEnvParameterfvARB GET_GetProgramEnvParameterfvARB(struct _glapi_table *disp) { 7184 return (_glptr_GetProgramEnvParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB)); 7185 } 7186 7187 static inline void SET_GetProgramEnvParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) { 7188 SET_by_offset(disp, _gloffset_GetProgramEnvParameterfvARB, fn); 7189 } 7190 7191 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterdvARB)(GLenum, GLuint, GLdouble *); 7192 #define CALL_GetProgramLocalParameterdvARB(disp, parameters) \ 7193 (* GET_GetProgramLocalParameterdvARB(disp)) parameters 7194 static inline _glptr_GetProgramLocalParameterdvARB GET_GetProgramLocalParameterdvARB(struct _glapi_table *disp) { 7195 return (_glptr_GetProgramLocalParameterdvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB)); 7196 } 7197 7198 static inline void SET_GetProgramLocalParameterdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) { 7199 SET_by_offset(disp, _gloffset_GetProgramLocalParameterdvARB, fn); 7200 } 7201 7202 typedef void (GLAPIENTRYP _glptr_GetProgramLocalParameterfvARB)(GLenum, GLuint, GLfloat *); 7203 #define CALL_GetProgramLocalParameterfvARB(disp, parameters) \ 7204 (* GET_GetProgramLocalParameterfvARB(disp)) parameters 7205 static inline _glptr_GetProgramLocalParameterfvARB GET_GetProgramLocalParameterfvARB(struct _glapi_table *disp) { 7206 return (_glptr_GetProgramLocalParameterfvARB) (GET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB)); 7207 } 7208 7209 static inline void SET_GetProgramLocalParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) { 7210 SET_by_offset(disp, _gloffset_GetProgramLocalParameterfvARB, fn); 7211 } 7212 7213 typedef void (GLAPIENTRYP _glptr_GetProgramStringARB)(GLenum, GLenum, GLvoid *); 7214 #define CALL_GetProgramStringARB(disp, parameters) \ 7215 (* GET_GetProgramStringARB(disp)) parameters 7216 static inline _glptr_GetProgramStringARB GET_GetProgramStringARB(struct _glapi_table *disp) { 7217 return (_glptr_GetProgramStringARB) (GET_by_offset(disp, _gloffset_GetProgramStringARB)); 7218 } 7219 7220 static inline void SET_GetProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid *)) { 7221 SET_by_offset(disp, _gloffset_GetProgramStringARB, fn); 7222 } 7223 7224 typedef void (GLAPIENTRYP _glptr_GetProgramivARB)(GLenum, GLenum, GLint *); 7225 #define CALL_GetProgramivARB(disp, parameters) \ 7226 (* GET_GetProgramivARB(disp)) parameters 7227 static inline _glptr_GetProgramivARB GET_GetProgramivARB(struct _glapi_table *disp) { 7228 return (_glptr_GetProgramivARB) (GET_by_offset(disp, _gloffset_GetProgramivARB)); 7229 } 7230 7231 static inline void SET_GetProgramivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 7232 SET_by_offset(disp, _gloffset_GetProgramivARB, fn); 7233 } 7234 7235 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvARB)(GLuint, GLenum, GLdouble *); 7236 #define CALL_GetVertexAttribdvARB(disp, parameters) \ 7237 (* GET_GetVertexAttribdvARB(disp)) parameters 7238 static inline _glptr_GetVertexAttribdvARB GET_GetVertexAttribdvARB(struct _glapi_table *disp) { 7239 return (_glptr_GetVertexAttribdvARB) (GET_by_offset(disp, _gloffset_GetVertexAttribdvARB)); 7240 } 7241 7242 static inline void SET_GetVertexAttribdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) { 7243 SET_by_offset(disp, _gloffset_GetVertexAttribdvARB, fn); 7244 } 7245 7246 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvARB)(GLuint, GLenum, GLfloat *); 7247 #define CALL_GetVertexAttribfvARB(disp, parameters) \ 7248 (* GET_GetVertexAttribfvARB(disp)) parameters 7249 static inline _glptr_GetVertexAttribfvARB GET_GetVertexAttribfvARB(struct _glapi_table *disp) { 7250 return (_glptr_GetVertexAttribfvARB) (GET_by_offset(disp, _gloffset_GetVertexAttribfvARB)); 7251 } 7252 7253 static inline void SET_GetVertexAttribfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) { 7254 SET_by_offset(disp, _gloffset_GetVertexAttribfvARB, fn); 7255 } 7256 7257 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivARB)(GLuint, GLenum, GLint *); 7258 #define CALL_GetVertexAttribivARB(disp, parameters) \ 7259 (* GET_GetVertexAttribivARB(disp)) parameters 7260 static inline _glptr_GetVertexAttribivARB GET_GetVertexAttribivARB(struct _glapi_table *disp) { 7261 return (_glptr_GetVertexAttribivARB) (GET_by_offset(disp, _gloffset_GetVertexAttribivARB)); 7262 } 7263 7264 static inline void SET_GetVertexAttribivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 7265 SET_by_offset(disp, _gloffset_GetVertexAttribivARB, fn); 7266 } 7267 7268 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble); 7269 #define CALL_ProgramEnvParameter4dARB(disp, parameters) \ 7270 (* GET_ProgramEnvParameter4dARB(disp)) parameters 7271 static inline _glptr_ProgramEnvParameter4dARB GET_ProgramEnvParameter4dARB(struct _glapi_table *disp) { 7272 return (_glptr_ProgramEnvParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB)); 7273 } 7274 7275 static inline void SET_ProgramEnvParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) { 7276 SET_by_offset(disp, _gloffset_ProgramEnvParameter4dARB, fn); 7277 } 7278 7279 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4dvARB)(GLenum, GLuint, const GLdouble *); 7280 #define CALL_ProgramEnvParameter4dvARB(disp, parameters) \ 7281 (* GET_ProgramEnvParameter4dvARB(disp)) parameters 7282 static inline _glptr_ProgramEnvParameter4dvARB GET_ProgramEnvParameter4dvARB(struct _glapi_table *disp) { 7283 return (_glptr_ProgramEnvParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB)); 7284 } 7285 7286 static inline void SET_ProgramEnvParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) { 7287 SET_by_offset(disp, _gloffset_ProgramEnvParameter4dvARB, fn); 7288 } 7289 7290 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat); 7291 #define CALL_ProgramEnvParameter4fARB(disp, parameters) \ 7292 (* GET_ProgramEnvParameter4fARB(disp)) parameters 7293 static inline _glptr_ProgramEnvParameter4fARB GET_ProgramEnvParameter4fARB(struct _glapi_table *disp) { 7294 return (_glptr_ProgramEnvParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB)); 7295 } 7296 7297 static inline void SET_ProgramEnvParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) { 7298 SET_by_offset(disp, _gloffset_ProgramEnvParameter4fARB, fn); 7299 } 7300 7301 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameter4fvARB)(GLenum, GLuint, const GLfloat *); 7302 #define CALL_ProgramEnvParameter4fvARB(disp, parameters) \ 7303 (* GET_ProgramEnvParameter4fvARB(disp)) parameters 7304 static inline _glptr_ProgramEnvParameter4fvARB GET_ProgramEnvParameter4fvARB(struct _glapi_table *disp) { 7305 return (_glptr_ProgramEnvParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB)); 7306 } 7307 7308 static inline void SET_ProgramEnvParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) { 7309 SET_by_offset(disp, _gloffset_ProgramEnvParameter4fvARB, fn); 7310 } 7311 7312 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dARB)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble); 7313 #define CALL_ProgramLocalParameter4dARB(disp, parameters) \ 7314 (* GET_ProgramLocalParameter4dARB(disp)) parameters 7315 static inline _glptr_ProgramLocalParameter4dARB GET_ProgramLocalParameter4dARB(struct _glapi_table *disp) { 7316 return (_glptr_ProgramLocalParameter4dARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB)); 7317 } 7318 7319 static inline void SET_ProgramLocalParameter4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) { 7320 SET_by_offset(disp, _gloffset_ProgramLocalParameter4dARB, fn); 7321 } 7322 7323 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4dvARB)(GLenum, GLuint, const GLdouble *); 7324 #define CALL_ProgramLocalParameter4dvARB(disp, parameters) \ 7325 (* GET_ProgramLocalParameter4dvARB(disp)) parameters 7326 static inline _glptr_ProgramLocalParameter4dvARB GET_ProgramLocalParameter4dvARB(struct _glapi_table *disp) { 7327 return (_glptr_ProgramLocalParameter4dvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB)); 7328 } 7329 7330 static inline void SET_ProgramLocalParameter4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLdouble *)) { 7331 SET_by_offset(disp, _gloffset_ProgramLocalParameter4dvARB, fn); 7332 } 7333 7334 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fARB)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat); 7335 #define CALL_ProgramLocalParameter4fARB(disp, parameters) \ 7336 (* GET_ProgramLocalParameter4fARB(disp)) parameters 7337 static inline _glptr_ProgramLocalParameter4fARB GET_ProgramLocalParameter4fARB(struct _glapi_table *disp) { 7338 return (_glptr_ProgramLocalParameter4fARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB)); 7339 } 7340 7341 static inline void SET_ProgramLocalParameter4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) { 7342 SET_by_offset(disp, _gloffset_ProgramLocalParameter4fARB, fn); 7343 } 7344 7345 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameter4fvARB)(GLenum, GLuint, const GLfloat *); 7346 #define CALL_ProgramLocalParameter4fvARB(disp, parameters) \ 7347 (* GET_ProgramLocalParameter4fvARB(disp)) parameters 7348 static inline _glptr_ProgramLocalParameter4fvARB GET_ProgramLocalParameter4fvARB(struct _glapi_table *disp) { 7349 return (_glptr_ProgramLocalParameter4fvARB) (GET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB)); 7350 } 7351 7352 static inline void SET_ProgramLocalParameter4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) { 7353 SET_by_offset(disp, _gloffset_ProgramLocalParameter4fvARB, fn); 7354 } 7355 7356 typedef void (GLAPIENTRYP _glptr_ProgramStringARB)(GLenum, GLenum, GLsizei, const GLvoid *); 7357 #define CALL_ProgramStringARB(disp, parameters) \ 7358 (* GET_ProgramStringARB(disp)) parameters 7359 static inline _glptr_ProgramStringARB GET_ProgramStringARB(struct _glapi_table *disp) { 7360 return (_glptr_ProgramStringARB) (GET_by_offset(disp, _gloffset_ProgramStringARB)); 7361 } 7362 7363 static inline void SET_ProgramStringARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, const GLvoid *)) { 7364 SET_by_offset(disp, _gloffset_ProgramStringARB, fn); 7365 } 7366 7367 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dARB)(GLuint, GLdouble); 7368 #define CALL_VertexAttrib1dARB(disp, parameters) \ 7369 (* GET_VertexAttrib1dARB(disp)) parameters 7370 static inline _glptr_VertexAttrib1dARB GET_VertexAttrib1dARB(struct _glapi_table *disp) { 7371 return (_glptr_VertexAttrib1dARB) (GET_by_offset(disp, _gloffset_VertexAttrib1dARB)); 7372 } 7373 7374 static inline void SET_VertexAttrib1dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) { 7375 SET_by_offset(disp, _gloffset_VertexAttrib1dARB, fn); 7376 } 7377 7378 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvARB)(GLuint, const GLdouble *); 7379 #define CALL_VertexAttrib1dvARB(disp, parameters) \ 7380 (* GET_VertexAttrib1dvARB(disp)) parameters 7381 static inline _glptr_VertexAttrib1dvARB GET_VertexAttrib1dvARB(struct _glapi_table *disp) { 7382 return (_glptr_VertexAttrib1dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1dvARB)); 7383 } 7384 7385 static inline void SET_VertexAttrib1dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 7386 SET_by_offset(disp, _gloffset_VertexAttrib1dvARB, fn); 7387 } 7388 7389 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fARB)(GLuint, GLfloat); 7390 #define CALL_VertexAttrib1fARB(disp, parameters) \ 7391 (* GET_VertexAttrib1fARB(disp)) parameters 7392 static inline _glptr_VertexAttrib1fARB GET_VertexAttrib1fARB(struct _glapi_table *disp) { 7393 return (_glptr_VertexAttrib1fARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fARB)); 7394 } 7395 7396 static inline void SET_VertexAttrib1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) { 7397 SET_by_offset(disp, _gloffset_VertexAttrib1fARB, fn); 7398 } 7399 7400 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvARB)(GLuint, const GLfloat *); 7401 #define CALL_VertexAttrib1fvARB(disp, parameters) \ 7402 (* GET_VertexAttrib1fvARB(disp)) parameters 7403 static inline _glptr_VertexAttrib1fvARB GET_VertexAttrib1fvARB(struct _glapi_table *disp) { 7404 return (_glptr_VertexAttrib1fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib1fvARB)); 7405 } 7406 7407 static inline void SET_VertexAttrib1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 7408 SET_by_offset(disp, _gloffset_VertexAttrib1fvARB, fn); 7409 } 7410 7411 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sARB)(GLuint, GLshort); 7412 #define CALL_VertexAttrib1sARB(disp, parameters) \ 7413 (* GET_VertexAttrib1sARB(disp)) parameters 7414 static inline _glptr_VertexAttrib1sARB GET_VertexAttrib1sARB(struct _glapi_table *disp) { 7415 return (_glptr_VertexAttrib1sARB) (GET_by_offset(disp, _gloffset_VertexAttrib1sARB)); 7416 } 7417 7418 static inline void SET_VertexAttrib1sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) { 7419 SET_by_offset(disp, _gloffset_VertexAttrib1sARB, fn); 7420 } 7421 7422 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svARB)(GLuint, const GLshort *); 7423 #define CALL_VertexAttrib1svARB(disp, parameters) \ 7424 (* GET_VertexAttrib1svARB(disp)) parameters 7425 static inline _glptr_VertexAttrib1svARB GET_VertexAttrib1svARB(struct _glapi_table *disp) { 7426 return (_glptr_VertexAttrib1svARB) (GET_by_offset(disp, _gloffset_VertexAttrib1svARB)); 7427 } 7428 7429 static inline void SET_VertexAttrib1svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 7430 SET_by_offset(disp, _gloffset_VertexAttrib1svARB, fn); 7431 } 7432 7433 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dARB)(GLuint, GLdouble, GLdouble); 7434 #define CALL_VertexAttrib2dARB(disp, parameters) \ 7435 (* GET_VertexAttrib2dARB(disp)) parameters 7436 static inline _glptr_VertexAttrib2dARB GET_VertexAttrib2dARB(struct _glapi_table *disp) { 7437 return (_glptr_VertexAttrib2dARB) (GET_by_offset(disp, _gloffset_VertexAttrib2dARB)); 7438 } 7439 7440 static inline void SET_VertexAttrib2dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) { 7441 SET_by_offset(disp, _gloffset_VertexAttrib2dARB, fn); 7442 } 7443 7444 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvARB)(GLuint, const GLdouble *); 7445 #define CALL_VertexAttrib2dvARB(disp, parameters) \ 7446 (* GET_VertexAttrib2dvARB(disp)) parameters 7447 static inline _glptr_VertexAttrib2dvARB GET_VertexAttrib2dvARB(struct _glapi_table *disp) { 7448 return (_glptr_VertexAttrib2dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2dvARB)); 7449 } 7450 7451 static inline void SET_VertexAttrib2dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 7452 SET_by_offset(disp, _gloffset_VertexAttrib2dvARB, fn); 7453 } 7454 7455 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fARB)(GLuint, GLfloat, GLfloat); 7456 #define CALL_VertexAttrib2fARB(disp, parameters) \ 7457 (* GET_VertexAttrib2fARB(disp)) parameters 7458 static inline _glptr_VertexAttrib2fARB GET_VertexAttrib2fARB(struct _glapi_table *disp) { 7459 return (_glptr_VertexAttrib2fARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fARB)); 7460 } 7461 7462 static inline void SET_VertexAttrib2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) { 7463 SET_by_offset(disp, _gloffset_VertexAttrib2fARB, fn); 7464 } 7465 7466 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvARB)(GLuint, const GLfloat *); 7467 #define CALL_VertexAttrib2fvARB(disp, parameters) \ 7468 (* GET_VertexAttrib2fvARB(disp)) parameters 7469 static inline _glptr_VertexAttrib2fvARB GET_VertexAttrib2fvARB(struct _glapi_table *disp) { 7470 return (_glptr_VertexAttrib2fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib2fvARB)); 7471 } 7472 7473 static inline void SET_VertexAttrib2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 7474 SET_by_offset(disp, _gloffset_VertexAttrib2fvARB, fn); 7475 } 7476 7477 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sARB)(GLuint, GLshort, GLshort); 7478 #define CALL_VertexAttrib2sARB(disp, parameters) \ 7479 (* GET_VertexAttrib2sARB(disp)) parameters 7480 static inline _glptr_VertexAttrib2sARB GET_VertexAttrib2sARB(struct _glapi_table *disp) { 7481 return (_glptr_VertexAttrib2sARB) (GET_by_offset(disp, _gloffset_VertexAttrib2sARB)); 7482 } 7483 7484 static inline void SET_VertexAttrib2sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) { 7485 SET_by_offset(disp, _gloffset_VertexAttrib2sARB, fn); 7486 } 7487 7488 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svARB)(GLuint, const GLshort *); 7489 #define CALL_VertexAttrib2svARB(disp, parameters) \ 7490 (* GET_VertexAttrib2svARB(disp)) parameters 7491 static inline _glptr_VertexAttrib2svARB GET_VertexAttrib2svARB(struct _glapi_table *disp) { 7492 return (_glptr_VertexAttrib2svARB) (GET_by_offset(disp, _gloffset_VertexAttrib2svARB)); 7493 } 7494 7495 static inline void SET_VertexAttrib2svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 7496 SET_by_offset(disp, _gloffset_VertexAttrib2svARB, fn); 7497 } 7498 7499 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dARB)(GLuint, GLdouble, GLdouble, GLdouble); 7500 #define CALL_VertexAttrib3dARB(disp, parameters) \ 7501 (* GET_VertexAttrib3dARB(disp)) parameters 7502 static inline _glptr_VertexAttrib3dARB GET_VertexAttrib3dARB(struct _glapi_table *disp) { 7503 return (_glptr_VertexAttrib3dARB) (GET_by_offset(disp, _gloffset_VertexAttrib3dARB)); 7504 } 7505 7506 static inline void SET_VertexAttrib3dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) { 7507 SET_by_offset(disp, _gloffset_VertexAttrib3dARB, fn); 7508 } 7509 7510 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvARB)(GLuint, const GLdouble *); 7511 #define CALL_VertexAttrib3dvARB(disp, parameters) \ 7512 (* GET_VertexAttrib3dvARB(disp)) parameters 7513 static inline _glptr_VertexAttrib3dvARB GET_VertexAttrib3dvARB(struct _glapi_table *disp) { 7514 return (_glptr_VertexAttrib3dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3dvARB)); 7515 } 7516 7517 static inline void SET_VertexAttrib3dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 7518 SET_by_offset(disp, _gloffset_VertexAttrib3dvARB, fn); 7519 } 7520 7521 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fARB)(GLuint, GLfloat, GLfloat, GLfloat); 7522 #define CALL_VertexAttrib3fARB(disp, parameters) \ 7523 (* GET_VertexAttrib3fARB(disp)) parameters 7524 static inline _glptr_VertexAttrib3fARB GET_VertexAttrib3fARB(struct _glapi_table *disp) { 7525 return (_glptr_VertexAttrib3fARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fARB)); 7526 } 7527 7528 static inline void SET_VertexAttrib3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) { 7529 SET_by_offset(disp, _gloffset_VertexAttrib3fARB, fn); 7530 } 7531 7532 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvARB)(GLuint, const GLfloat *); 7533 #define CALL_VertexAttrib3fvARB(disp, parameters) \ 7534 (* GET_VertexAttrib3fvARB(disp)) parameters 7535 static inline _glptr_VertexAttrib3fvARB GET_VertexAttrib3fvARB(struct _glapi_table *disp) { 7536 return (_glptr_VertexAttrib3fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib3fvARB)); 7537 } 7538 7539 static inline void SET_VertexAttrib3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 7540 SET_by_offset(disp, _gloffset_VertexAttrib3fvARB, fn); 7541 } 7542 7543 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sARB)(GLuint, GLshort, GLshort, GLshort); 7544 #define CALL_VertexAttrib3sARB(disp, parameters) \ 7545 (* GET_VertexAttrib3sARB(disp)) parameters 7546 static inline _glptr_VertexAttrib3sARB GET_VertexAttrib3sARB(struct _glapi_table *disp) { 7547 return (_glptr_VertexAttrib3sARB) (GET_by_offset(disp, _gloffset_VertexAttrib3sARB)); 7548 } 7549 7550 static inline void SET_VertexAttrib3sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) { 7551 SET_by_offset(disp, _gloffset_VertexAttrib3sARB, fn); 7552 } 7553 7554 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svARB)(GLuint, const GLshort *); 7555 #define CALL_VertexAttrib3svARB(disp, parameters) \ 7556 (* GET_VertexAttrib3svARB(disp)) parameters 7557 static inline _glptr_VertexAttrib3svARB GET_VertexAttrib3svARB(struct _glapi_table *disp) { 7558 return (_glptr_VertexAttrib3svARB) (GET_by_offset(disp, _gloffset_VertexAttrib3svARB)); 7559 } 7560 7561 static inline void SET_VertexAttrib3svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 7562 SET_by_offset(disp, _gloffset_VertexAttrib3svARB, fn); 7563 } 7564 7565 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NbvARB)(GLuint, const GLbyte *); 7566 #define CALL_VertexAttrib4NbvARB(disp, parameters) \ 7567 (* GET_VertexAttrib4NbvARB(disp)) parameters 7568 static inline _glptr_VertexAttrib4NbvARB GET_VertexAttrib4NbvARB(struct _glapi_table *disp) { 7569 return (_glptr_VertexAttrib4NbvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NbvARB)); 7570 } 7571 7572 static inline void SET_VertexAttrib4NbvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) { 7573 SET_by_offset(disp, _gloffset_VertexAttrib4NbvARB, fn); 7574 } 7575 7576 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NivARB)(GLuint, const GLint *); 7577 #define CALL_VertexAttrib4NivARB(disp, parameters) \ 7578 (* GET_VertexAttrib4NivARB(disp)) parameters 7579 static inline _glptr_VertexAttrib4NivARB GET_VertexAttrib4NivARB(struct _glapi_table *disp) { 7580 return (_glptr_VertexAttrib4NivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NivARB)); 7581 } 7582 7583 static inline void SET_VertexAttrib4NivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) { 7584 SET_by_offset(disp, _gloffset_VertexAttrib4NivARB, fn); 7585 } 7586 7587 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NsvARB)(GLuint, const GLshort *); 7588 #define CALL_VertexAttrib4NsvARB(disp, parameters) \ 7589 (* GET_VertexAttrib4NsvARB(disp)) parameters 7590 static inline _glptr_VertexAttrib4NsvARB GET_VertexAttrib4NsvARB(struct _glapi_table *disp) { 7591 return (_glptr_VertexAttrib4NsvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NsvARB)); 7592 } 7593 7594 static inline void SET_VertexAttrib4NsvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 7595 SET_by_offset(disp, _gloffset_VertexAttrib4NsvARB, fn); 7596 } 7597 7598 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NubARB)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte); 7599 #define CALL_VertexAttrib4NubARB(disp, parameters) \ 7600 (* GET_VertexAttrib4NubARB(disp)) parameters 7601 static inline _glptr_VertexAttrib4NubARB GET_VertexAttrib4NubARB(struct _glapi_table *disp) { 7602 return (_glptr_VertexAttrib4NubARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NubARB)); 7603 } 7604 7605 static inline void SET_VertexAttrib4NubARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) { 7606 SET_by_offset(disp, _gloffset_VertexAttrib4NubARB, fn); 7607 } 7608 7609 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NubvARB)(GLuint, const GLubyte *); 7610 #define CALL_VertexAttrib4NubvARB(disp, parameters) \ 7611 (* GET_VertexAttrib4NubvARB(disp)) parameters 7612 static inline _glptr_VertexAttrib4NubvARB GET_VertexAttrib4NubvARB(struct _glapi_table *disp) { 7613 return (_glptr_VertexAttrib4NubvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NubvARB)); 7614 } 7615 7616 static inline void SET_VertexAttrib4NubvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) { 7617 SET_by_offset(disp, _gloffset_VertexAttrib4NubvARB, fn); 7618 } 7619 7620 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NuivARB)(GLuint, const GLuint *); 7621 #define CALL_VertexAttrib4NuivARB(disp, parameters) \ 7622 (* GET_VertexAttrib4NuivARB(disp)) parameters 7623 static inline _glptr_VertexAttrib4NuivARB GET_VertexAttrib4NuivARB(struct _glapi_table *disp) { 7624 return (_glptr_VertexAttrib4NuivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NuivARB)); 7625 } 7626 7627 static inline void SET_VertexAttrib4NuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) { 7628 SET_by_offset(disp, _gloffset_VertexAttrib4NuivARB, fn); 7629 } 7630 7631 typedef void (GLAPIENTRYP _glptr_VertexAttrib4NusvARB)(GLuint, const GLushort *); 7632 #define CALL_VertexAttrib4NusvARB(disp, parameters) \ 7633 (* GET_VertexAttrib4NusvARB(disp)) parameters 7634 static inline _glptr_VertexAttrib4NusvARB GET_VertexAttrib4NusvARB(struct _glapi_table *disp) { 7635 return (_glptr_VertexAttrib4NusvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4NusvARB)); 7636 } 7637 7638 static inline void SET_VertexAttrib4NusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) { 7639 SET_by_offset(disp, _gloffset_VertexAttrib4NusvARB, fn); 7640 } 7641 7642 typedef void (GLAPIENTRYP _glptr_VertexAttrib4bvARB)(GLuint, const GLbyte *); 7643 #define CALL_VertexAttrib4bvARB(disp, parameters) \ 7644 (* GET_VertexAttrib4bvARB(disp)) parameters 7645 static inline _glptr_VertexAttrib4bvARB GET_VertexAttrib4bvARB(struct _glapi_table *disp) { 7646 return (_glptr_VertexAttrib4bvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4bvARB)); 7647 } 7648 7649 static inline void SET_VertexAttrib4bvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) { 7650 SET_by_offset(disp, _gloffset_VertexAttrib4bvARB, fn); 7651 } 7652 7653 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dARB)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble); 7654 #define CALL_VertexAttrib4dARB(disp, parameters) \ 7655 (* GET_VertexAttrib4dARB(disp)) parameters 7656 static inline _glptr_VertexAttrib4dARB GET_VertexAttrib4dARB(struct _glapi_table *disp) { 7657 return (_glptr_VertexAttrib4dARB) (GET_by_offset(disp, _gloffset_VertexAttrib4dARB)); 7658 } 7659 7660 static inline void SET_VertexAttrib4dARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) { 7661 SET_by_offset(disp, _gloffset_VertexAttrib4dARB, fn); 7662 } 7663 7664 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvARB)(GLuint, const GLdouble *); 7665 #define CALL_VertexAttrib4dvARB(disp, parameters) \ 7666 (* GET_VertexAttrib4dvARB(disp)) parameters 7667 static inline _glptr_VertexAttrib4dvARB GET_VertexAttrib4dvARB(struct _glapi_table *disp) { 7668 return (_glptr_VertexAttrib4dvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4dvARB)); 7669 } 7670 7671 static inline void SET_VertexAttrib4dvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 7672 SET_by_offset(disp, _gloffset_VertexAttrib4dvARB, fn); 7673 } 7674 7675 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fARB)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat); 7676 #define CALL_VertexAttrib4fARB(disp, parameters) \ 7677 (* GET_VertexAttrib4fARB(disp)) parameters 7678 static inline _glptr_VertexAttrib4fARB GET_VertexAttrib4fARB(struct _glapi_table *disp) { 7679 return (_glptr_VertexAttrib4fARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fARB)); 7680 } 7681 7682 static inline void SET_VertexAttrib4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) { 7683 SET_by_offset(disp, _gloffset_VertexAttrib4fARB, fn); 7684 } 7685 7686 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvARB)(GLuint, const GLfloat *); 7687 #define CALL_VertexAttrib4fvARB(disp, parameters) \ 7688 (* GET_VertexAttrib4fvARB(disp)) parameters 7689 static inline _glptr_VertexAttrib4fvARB GET_VertexAttrib4fvARB(struct _glapi_table *disp) { 7690 return (_glptr_VertexAttrib4fvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4fvARB)); 7691 } 7692 7693 static inline void SET_VertexAttrib4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 7694 SET_by_offset(disp, _gloffset_VertexAttrib4fvARB, fn); 7695 } 7696 7697 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ivARB)(GLuint, const GLint *); 7698 #define CALL_VertexAttrib4ivARB(disp, parameters) \ 7699 (* GET_VertexAttrib4ivARB(disp)) parameters 7700 static inline _glptr_VertexAttrib4ivARB GET_VertexAttrib4ivARB(struct _glapi_table *disp) { 7701 return (_glptr_VertexAttrib4ivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4ivARB)); 7702 } 7703 7704 static inline void SET_VertexAttrib4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) { 7705 SET_by_offset(disp, _gloffset_VertexAttrib4ivARB, fn); 7706 } 7707 7708 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sARB)(GLuint, GLshort, GLshort, GLshort, GLshort); 7709 #define CALL_VertexAttrib4sARB(disp, parameters) \ 7710 (* GET_VertexAttrib4sARB(disp)) parameters 7711 static inline _glptr_VertexAttrib4sARB GET_VertexAttrib4sARB(struct _glapi_table *disp) { 7712 return (_glptr_VertexAttrib4sARB) (GET_by_offset(disp, _gloffset_VertexAttrib4sARB)); 7713 } 7714 7715 static inline void SET_VertexAttrib4sARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) { 7716 SET_by_offset(disp, _gloffset_VertexAttrib4sARB, fn); 7717 } 7718 7719 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svARB)(GLuint, const GLshort *); 7720 #define CALL_VertexAttrib4svARB(disp, parameters) \ 7721 (* GET_VertexAttrib4svARB(disp)) parameters 7722 static inline _glptr_VertexAttrib4svARB GET_VertexAttrib4svARB(struct _glapi_table *disp) { 7723 return (_glptr_VertexAttrib4svARB) (GET_by_offset(disp, _gloffset_VertexAttrib4svARB)); 7724 } 7725 7726 static inline void SET_VertexAttrib4svARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 7727 SET_by_offset(disp, _gloffset_VertexAttrib4svARB, fn); 7728 } 7729 7730 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvARB)(GLuint, const GLubyte *); 7731 #define CALL_VertexAttrib4ubvARB(disp, parameters) \ 7732 (* GET_VertexAttrib4ubvARB(disp)) parameters 7733 static inline _glptr_VertexAttrib4ubvARB GET_VertexAttrib4ubvARB(struct _glapi_table *disp) { 7734 return (_glptr_VertexAttrib4ubvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvARB)); 7735 } 7736 7737 static inline void SET_VertexAttrib4ubvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) { 7738 SET_by_offset(disp, _gloffset_VertexAttrib4ubvARB, fn); 7739 } 7740 7741 typedef void (GLAPIENTRYP _glptr_VertexAttrib4uivARB)(GLuint, const GLuint *); 7742 #define CALL_VertexAttrib4uivARB(disp, parameters) \ 7743 (* GET_VertexAttrib4uivARB(disp)) parameters 7744 static inline _glptr_VertexAttrib4uivARB GET_VertexAttrib4uivARB(struct _glapi_table *disp) { 7745 return (_glptr_VertexAttrib4uivARB) (GET_by_offset(disp, _gloffset_VertexAttrib4uivARB)); 7746 } 7747 7748 static inline void SET_VertexAttrib4uivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) { 7749 SET_by_offset(disp, _gloffset_VertexAttrib4uivARB, fn); 7750 } 7751 7752 typedef void (GLAPIENTRYP _glptr_VertexAttrib4usvARB)(GLuint, const GLushort *); 7753 #define CALL_VertexAttrib4usvARB(disp, parameters) \ 7754 (* GET_VertexAttrib4usvARB(disp)) parameters 7755 static inline _glptr_VertexAttrib4usvARB GET_VertexAttrib4usvARB(struct _glapi_table *disp) { 7756 return (_glptr_VertexAttrib4usvARB) (GET_by_offset(disp, _gloffset_VertexAttrib4usvARB)); 7757 } 7758 7759 static inline void SET_VertexAttrib4usvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) { 7760 SET_by_offset(disp, _gloffset_VertexAttrib4usvARB, fn); 7761 } 7762 7763 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerARB)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *); 7764 #define CALL_VertexAttribPointerARB(disp, parameters) \ 7765 (* GET_VertexAttribPointerARB(disp)) parameters 7766 static inline _glptr_VertexAttribPointerARB GET_VertexAttribPointerARB(struct _glapi_table *disp) { 7767 return (_glptr_VertexAttribPointerARB) (GET_by_offset(disp, _gloffset_VertexAttribPointerARB)); 7768 } 7769 7770 static inline void SET_VertexAttribPointerARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *)) { 7771 SET_by_offset(disp, _gloffset_VertexAttribPointerARB, fn); 7772 } 7773 7774 typedef void (GLAPIENTRYP _glptr_BindBufferARB)(GLenum, GLuint); 7775 #define CALL_BindBufferARB(disp, parameters) \ 7776 (* GET_BindBufferARB(disp)) parameters 7777 static inline _glptr_BindBufferARB GET_BindBufferARB(struct _glapi_table *disp) { 7778 return (_glptr_BindBufferARB) (GET_by_offset(disp, _gloffset_BindBufferARB)); 7779 } 7780 7781 static inline void SET_BindBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 7782 SET_by_offset(disp, _gloffset_BindBufferARB, fn); 7783 } 7784 7785 typedef void (GLAPIENTRYP _glptr_BufferDataARB)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum); 7786 #define CALL_BufferDataARB(disp, parameters) \ 7787 (* GET_BufferDataARB(disp)) parameters 7788 static inline _glptr_BufferDataARB GET_BufferDataARB(struct _glapi_table *disp) { 7789 return (_glptr_BufferDataARB) (GET_by_offset(disp, _gloffset_BufferDataARB)); 7790 } 7791 7792 static inline void SET_BufferDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizeiptrARB, const GLvoid *, GLenum)) { 7793 SET_by_offset(disp, _gloffset_BufferDataARB, fn); 7794 } 7795 7796 typedef void (GLAPIENTRYP _glptr_BufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *); 7797 #define CALL_BufferSubDataARB(disp, parameters) \ 7798 (* GET_BufferSubDataARB(disp)) parameters 7799 static inline _glptr_BufferSubDataARB GET_BufferSubDataARB(struct _glapi_table *disp) { 7800 return (_glptr_BufferSubDataARB) (GET_by_offset(disp, _gloffset_BufferSubDataARB)); 7801 } 7802 7803 static inline void SET_BufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, const GLvoid *)) { 7804 SET_by_offset(disp, _gloffset_BufferSubDataARB, fn); 7805 } 7806 7807 typedef void (GLAPIENTRYP _glptr_DeleteBuffersARB)(GLsizei, const GLuint *); 7808 #define CALL_DeleteBuffersARB(disp, parameters) \ 7809 (* GET_DeleteBuffersARB(disp)) parameters 7810 static inline _glptr_DeleteBuffersARB GET_DeleteBuffersARB(struct _glapi_table *disp) { 7811 return (_glptr_DeleteBuffersARB) (GET_by_offset(disp, _gloffset_DeleteBuffersARB)); 7812 } 7813 7814 static inline void SET_DeleteBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 7815 SET_by_offset(disp, _gloffset_DeleteBuffersARB, fn); 7816 } 7817 7818 typedef void (GLAPIENTRYP _glptr_GenBuffersARB)(GLsizei, GLuint *); 7819 #define CALL_GenBuffersARB(disp, parameters) \ 7820 (* GET_GenBuffersARB(disp)) parameters 7821 static inline _glptr_GenBuffersARB GET_GenBuffersARB(struct _glapi_table *disp) { 7822 return (_glptr_GenBuffersARB) (GET_by_offset(disp, _gloffset_GenBuffersARB)); 7823 } 7824 7825 static inline void SET_GenBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 7826 SET_by_offset(disp, _gloffset_GenBuffersARB, fn); 7827 } 7828 7829 typedef void (GLAPIENTRYP _glptr_GetBufferParameterivARB)(GLenum, GLenum, GLint *); 7830 #define CALL_GetBufferParameterivARB(disp, parameters) \ 7831 (* GET_GetBufferParameterivARB(disp)) parameters 7832 static inline _glptr_GetBufferParameterivARB GET_GetBufferParameterivARB(struct _glapi_table *disp) { 7833 return (_glptr_GetBufferParameterivARB) (GET_by_offset(disp, _gloffset_GetBufferParameterivARB)); 7834 } 7835 7836 static inline void SET_GetBufferParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 7837 SET_by_offset(disp, _gloffset_GetBufferParameterivARB, fn); 7838 } 7839 7840 typedef void (GLAPIENTRYP _glptr_GetBufferPointervARB)(GLenum, GLenum, GLvoid **); 7841 #define CALL_GetBufferPointervARB(disp, parameters) \ 7842 (* GET_GetBufferPointervARB(disp)) parameters 7843 static inline _glptr_GetBufferPointervARB GET_GetBufferPointervARB(struct _glapi_table *disp) { 7844 return (_glptr_GetBufferPointervARB) (GET_by_offset(disp, _gloffset_GetBufferPointervARB)); 7845 } 7846 7847 static inline void SET_GetBufferPointervARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLvoid **)) { 7848 SET_by_offset(disp, _gloffset_GetBufferPointervARB, fn); 7849 } 7850 7851 typedef void (GLAPIENTRYP _glptr_GetBufferSubDataARB)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *); 7852 #define CALL_GetBufferSubDataARB(disp, parameters) \ 7853 (* GET_GetBufferSubDataARB(disp)) parameters 7854 static inline _glptr_GetBufferSubDataARB GET_GetBufferSubDataARB(struct _glapi_table *disp) { 7855 return (_glptr_GetBufferSubDataARB) (GET_by_offset(disp, _gloffset_GetBufferSubDataARB)); 7856 } 7857 7858 static inline void SET_GetBufferSubDataARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptrARB, GLsizeiptrARB, GLvoid *)) { 7859 SET_by_offset(disp, _gloffset_GetBufferSubDataARB, fn); 7860 } 7861 7862 typedef GLboolean (GLAPIENTRYP _glptr_IsBufferARB)(GLuint); 7863 #define CALL_IsBufferARB(disp, parameters) \ 7864 (* GET_IsBufferARB(disp)) parameters 7865 static inline _glptr_IsBufferARB GET_IsBufferARB(struct _glapi_table *disp) { 7866 return (_glptr_IsBufferARB) (GET_by_offset(disp, _gloffset_IsBufferARB)); 7867 } 7868 7869 static inline void SET_IsBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 7870 SET_by_offset(disp, _gloffset_IsBufferARB, fn); 7871 } 7872 7873 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferARB)(GLenum, GLenum); 7874 #define CALL_MapBufferARB(disp, parameters) \ 7875 (* GET_MapBufferARB(disp)) parameters 7876 static inline _glptr_MapBufferARB GET_MapBufferARB(struct _glapi_table *disp) { 7877 return (_glptr_MapBufferARB) (GET_by_offset(disp, _gloffset_MapBufferARB)); 7878 } 7879 7880 static inline void SET_MapBufferARB(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLenum)) { 7881 SET_by_offset(disp, _gloffset_MapBufferARB, fn); 7882 } 7883 7884 typedef GLboolean (GLAPIENTRYP _glptr_UnmapBufferARB)(GLenum); 7885 #define CALL_UnmapBufferARB(disp, parameters) \ 7886 (* GET_UnmapBufferARB(disp)) parameters 7887 static inline _glptr_UnmapBufferARB GET_UnmapBufferARB(struct _glapi_table *disp) { 7888 return (_glptr_UnmapBufferARB) (GET_by_offset(disp, _gloffset_UnmapBufferARB)); 7889 } 7890 7891 static inline void SET_UnmapBufferARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum)) { 7892 SET_by_offset(disp, _gloffset_UnmapBufferARB, fn); 7893 } 7894 7895 typedef void (GLAPIENTRYP _glptr_BeginQueryARB)(GLenum, GLuint); 7896 #define CALL_BeginQueryARB(disp, parameters) \ 7897 (* GET_BeginQueryARB(disp)) parameters 7898 static inline _glptr_BeginQueryARB GET_BeginQueryARB(struct _glapi_table *disp) { 7899 return (_glptr_BeginQueryARB) (GET_by_offset(disp, _gloffset_BeginQueryARB)); 7900 } 7901 7902 static inline void SET_BeginQueryARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 7903 SET_by_offset(disp, _gloffset_BeginQueryARB, fn); 7904 } 7905 7906 typedef void (GLAPIENTRYP _glptr_DeleteQueriesARB)(GLsizei, const GLuint *); 7907 #define CALL_DeleteQueriesARB(disp, parameters) \ 7908 (* GET_DeleteQueriesARB(disp)) parameters 7909 static inline _glptr_DeleteQueriesARB GET_DeleteQueriesARB(struct _glapi_table *disp) { 7910 return (_glptr_DeleteQueriesARB) (GET_by_offset(disp, _gloffset_DeleteQueriesARB)); 7911 } 7912 7913 static inline void SET_DeleteQueriesARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 7914 SET_by_offset(disp, _gloffset_DeleteQueriesARB, fn); 7915 } 7916 7917 typedef void (GLAPIENTRYP _glptr_EndQueryARB)(GLenum); 7918 #define CALL_EndQueryARB(disp, parameters) \ 7919 (* GET_EndQueryARB(disp)) parameters 7920 static inline _glptr_EndQueryARB GET_EndQueryARB(struct _glapi_table *disp) { 7921 return (_glptr_EndQueryARB) (GET_by_offset(disp, _gloffset_EndQueryARB)); 7922 } 7923 7924 static inline void SET_EndQueryARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 7925 SET_by_offset(disp, _gloffset_EndQueryARB, fn); 7926 } 7927 7928 typedef void (GLAPIENTRYP _glptr_GenQueriesARB)(GLsizei, GLuint *); 7929 #define CALL_GenQueriesARB(disp, parameters) \ 7930 (* GET_GenQueriesARB(disp)) parameters 7931 static inline _glptr_GenQueriesARB GET_GenQueriesARB(struct _glapi_table *disp) { 7932 return (_glptr_GenQueriesARB) (GET_by_offset(disp, _gloffset_GenQueriesARB)); 7933 } 7934 7935 static inline void SET_GenQueriesARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 7936 SET_by_offset(disp, _gloffset_GenQueriesARB, fn); 7937 } 7938 7939 typedef void (GLAPIENTRYP _glptr_GetQueryObjectivARB)(GLuint, GLenum, GLint *); 7940 #define CALL_GetQueryObjectivARB(disp, parameters) \ 7941 (* GET_GetQueryObjectivARB(disp)) parameters 7942 static inline _glptr_GetQueryObjectivARB GET_GetQueryObjectivARB(struct _glapi_table *disp) { 7943 return (_glptr_GetQueryObjectivARB) (GET_by_offset(disp, _gloffset_GetQueryObjectivARB)); 7944 } 7945 7946 static inline void SET_GetQueryObjectivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 7947 SET_by_offset(disp, _gloffset_GetQueryObjectivARB, fn); 7948 } 7949 7950 typedef void (GLAPIENTRYP _glptr_GetQueryObjectuivARB)(GLuint, GLenum, GLuint *); 7951 #define CALL_GetQueryObjectuivARB(disp, parameters) \ 7952 (* GET_GetQueryObjectuivARB(disp)) parameters 7953 static inline _glptr_GetQueryObjectuivARB GET_GetQueryObjectuivARB(struct _glapi_table *disp) { 7954 return (_glptr_GetQueryObjectuivARB) (GET_by_offset(disp, _gloffset_GetQueryObjectuivARB)); 7955 } 7956 7957 static inline void SET_GetQueryObjectuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) { 7958 SET_by_offset(disp, _gloffset_GetQueryObjectuivARB, fn); 7959 } 7960 7961 typedef void (GLAPIENTRYP _glptr_GetQueryivARB)(GLenum, GLenum, GLint *); 7962 #define CALL_GetQueryivARB(disp, parameters) \ 7963 (* GET_GetQueryivARB(disp)) parameters 7964 static inline _glptr_GetQueryivARB GET_GetQueryivARB(struct _glapi_table *disp) { 7965 return (_glptr_GetQueryivARB) (GET_by_offset(disp, _gloffset_GetQueryivARB)); 7966 } 7967 7968 static inline void SET_GetQueryivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 7969 SET_by_offset(disp, _gloffset_GetQueryivARB, fn); 7970 } 7971 7972 typedef GLboolean (GLAPIENTRYP _glptr_IsQueryARB)(GLuint); 7973 #define CALL_IsQueryARB(disp, parameters) \ 7974 (* GET_IsQueryARB(disp)) parameters 7975 static inline _glptr_IsQueryARB GET_IsQueryARB(struct _glapi_table *disp) { 7976 return (_glptr_IsQueryARB) (GET_by_offset(disp, _gloffset_IsQueryARB)); 7977 } 7978 7979 static inline void SET_IsQueryARB(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 7980 SET_by_offset(disp, _gloffset_IsQueryARB, fn); 7981 } 7982 7983 typedef void (GLAPIENTRYP _glptr_AttachObjectARB)(GLhandleARB, GLhandleARB); 7984 #define CALL_AttachObjectARB(disp, parameters) \ 7985 (* GET_AttachObjectARB(disp)) parameters 7986 static inline _glptr_AttachObjectARB GET_AttachObjectARB(struct _glapi_table *disp) { 7987 return (_glptr_AttachObjectARB) (GET_by_offset(disp, _gloffset_AttachObjectARB)); 7988 } 7989 7990 static inline void SET_AttachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) { 7991 SET_by_offset(disp, _gloffset_AttachObjectARB, fn); 7992 } 7993 7994 typedef void (GLAPIENTRYP _glptr_CompileShaderARB)(GLhandleARB); 7995 #define CALL_CompileShaderARB(disp, parameters) \ 7996 (* GET_CompileShaderARB(disp)) parameters 7997 static inline _glptr_CompileShaderARB GET_CompileShaderARB(struct _glapi_table *disp) { 7998 return (_glptr_CompileShaderARB) (GET_by_offset(disp, _gloffset_CompileShaderARB)); 7999 } 8000 8001 static inline void SET_CompileShaderARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) { 8002 SET_by_offset(disp, _gloffset_CompileShaderARB, fn); 8003 } 8004 8005 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateProgramObjectARB)(void); 8006 #define CALL_CreateProgramObjectARB(disp, parameters) \ 8007 (* GET_CreateProgramObjectARB(disp)) parameters 8008 static inline _glptr_CreateProgramObjectARB GET_CreateProgramObjectARB(struct _glapi_table *disp) { 8009 return (_glptr_CreateProgramObjectARB) (GET_by_offset(disp, _gloffset_CreateProgramObjectARB)); 8010 } 8011 8012 static inline void SET_CreateProgramObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(void)) { 8013 SET_by_offset(disp, _gloffset_CreateProgramObjectARB, fn); 8014 } 8015 8016 typedef GLhandleARB (GLAPIENTRYP _glptr_CreateShaderObjectARB)(GLenum); 8017 #define CALL_CreateShaderObjectARB(disp, parameters) \ 8018 (* GET_CreateShaderObjectARB(disp)) parameters 8019 static inline _glptr_CreateShaderObjectARB GET_CreateShaderObjectARB(struct _glapi_table *disp) { 8020 return (_glptr_CreateShaderObjectARB) (GET_by_offset(disp, _gloffset_CreateShaderObjectARB)); 8021 } 8022 8023 static inline void SET_CreateShaderObjectARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) { 8024 SET_by_offset(disp, _gloffset_CreateShaderObjectARB, fn); 8025 } 8026 8027 typedef void (GLAPIENTRYP _glptr_DeleteObjectARB)(GLhandleARB); 8028 #define CALL_DeleteObjectARB(disp, parameters) \ 8029 (* GET_DeleteObjectARB(disp)) parameters 8030 static inline _glptr_DeleteObjectARB GET_DeleteObjectARB(struct _glapi_table *disp) { 8031 return (_glptr_DeleteObjectARB) (GET_by_offset(disp, _gloffset_DeleteObjectARB)); 8032 } 8033 8034 static inline void SET_DeleteObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) { 8035 SET_by_offset(disp, _gloffset_DeleteObjectARB, fn); 8036 } 8037 8038 typedef void (GLAPIENTRYP _glptr_DetachObjectARB)(GLhandleARB, GLhandleARB); 8039 #define CALL_DetachObjectARB(disp, parameters) \ 8040 (* GET_DetachObjectARB(disp)) parameters 8041 static inline _glptr_DetachObjectARB GET_DetachObjectARB(struct _glapi_table *disp) { 8042 return (_glptr_DetachObjectARB) (GET_by_offset(disp, _gloffset_DetachObjectARB)); 8043 } 8044 8045 static inline void SET_DetachObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLhandleARB)) { 8046 SET_by_offset(disp, _gloffset_DetachObjectARB, fn); 8047 } 8048 8049 typedef void (GLAPIENTRYP _glptr_GetActiveUniformARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *); 8050 #define CALL_GetActiveUniformARB(disp, parameters) \ 8051 (* GET_GetActiveUniformARB(disp)) parameters 8052 static inline _glptr_GetActiveUniformARB GET_GetActiveUniformARB(struct _glapi_table *disp) { 8053 return (_glptr_GetActiveUniformARB) (GET_by_offset(disp, _gloffset_GetActiveUniformARB)); 8054 } 8055 8056 static inline void SET_GetActiveUniformARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) { 8057 SET_by_offset(disp, _gloffset_GetActiveUniformARB, fn); 8058 } 8059 8060 typedef void (GLAPIENTRYP _glptr_GetAttachedObjectsARB)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *); 8061 #define CALL_GetAttachedObjectsARB(disp, parameters) \ 8062 (* GET_GetAttachedObjectsARB(disp)) parameters 8063 static inline _glptr_GetAttachedObjectsARB GET_GetAttachedObjectsARB(struct _glapi_table *disp) { 8064 return (_glptr_GetAttachedObjectsARB) (GET_by_offset(disp, _gloffset_GetAttachedObjectsARB)); 8065 } 8066 8067 static inline void SET_GetAttachedObjectsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLhandleARB *)) { 8068 SET_by_offset(disp, _gloffset_GetAttachedObjectsARB, fn); 8069 } 8070 8071 typedef GLhandleARB (GLAPIENTRYP _glptr_GetHandleARB)(GLenum); 8072 #define CALL_GetHandleARB(disp, parameters) \ 8073 (* GET_GetHandleARB(disp)) parameters 8074 static inline _glptr_GetHandleARB GET_GetHandleARB(struct _glapi_table *disp) { 8075 return (_glptr_GetHandleARB) (GET_by_offset(disp, _gloffset_GetHandleARB)); 8076 } 8077 8078 static inline void SET_GetHandleARB(struct _glapi_table *disp, GLhandleARB (GLAPIENTRYP fn)(GLenum)) { 8079 SET_by_offset(disp, _gloffset_GetHandleARB, fn); 8080 } 8081 8082 typedef void (GLAPIENTRYP _glptr_GetInfoLogARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *); 8083 #define CALL_GetInfoLogARB(disp, parameters) \ 8084 (* GET_GetInfoLogARB(disp)) parameters 8085 static inline _glptr_GetInfoLogARB GET_GetInfoLogARB(struct _glapi_table *disp) { 8086 return (_glptr_GetInfoLogARB) (GET_by_offset(disp, _gloffset_GetInfoLogARB)); 8087 } 8088 8089 static inline void SET_GetInfoLogARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) { 8090 SET_by_offset(disp, _gloffset_GetInfoLogARB, fn); 8091 } 8092 8093 typedef void (GLAPIENTRYP _glptr_GetObjectParameterfvARB)(GLhandleARB, GLenum, GLfloat *); 8094 #define CALL_GetObjectParameterfvARB(disp, parameters) \ 8095 (* GET_GetObjectParameterfvARB(disp)) parameters 8096 static inline _glptr_GetObjectParameterfvARB GET_GetObjectParameterfvARB(struct _glapi_table *disp) { 8097 return (_glptr_GetObjectParameterfvARB) (GET_by_offset(disp, _gloffset_GetObjectParameterfvARB)); 8098 } 8099 8100 static inline void SET_GetObjectParameterfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLfloat *)) { 8101 SET_by_offset(disp, _gloffset_GetObjectParameterfvARB, fn); 8102 } 8103 8104 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivARB)(GLhandleARB, GLenum, GLint *); 8105 #define CALL_GetObjectParameterivARB(disp, parameters) \ 8106 (* GET_GetObjectParameterivARB(disp)) parameters 8107 static inline _glptr_GetObjectParameterivARB GET_GetObjectParameterivARB(struct _glapi_table *disp) { 8108 return (_glptr_GetObjectParameterivARB) (GET_by_offset(disp, _gloffset_GetObjectParameterivARB)); 8109 } 8110 8111 static inline void SET_GetObjectParameterivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLenum, GLint *)) { 8112 SET_by_offset(disp, _gloffset_GetObjectParameterivARB, fn); 8113 } 8114 8115 typedef void (GLAPIENTRYP _glptr_GetShaderSourceARB)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *); 8116 #define CALL_GetShaderSourceARB(disp, parameters) \ 8117 (* GET_GetShaderSourceARB(disp)) parameters 8118 static inline _glptr_GetShaderSourceARB GET_GetShaderSourceARB(struct _glapi_table *disp) { 8119 return (_glptr_GetShaderSourceARB) (GET_by_offset(disp, _gloffset_GetShaderSourceARB)); 8120 } 8121 8122 static inline void SET_GetShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, GLsizei *, GLcharARB *)) { 8123 SET_by_offset(disp, _gloffset_GetShaderSourceARB, fn); 8124 } 8125 8126 typedef GLint (GLAPIENTRYP _glptr_GetUniformLocationARB)(GLhandleARB, const GLcharARB *); 8127 #define CALL_GetUniformLocationARB(disp, parameters) \ 8128 (* GET_GetUniformLocationARB(disp)) parameters 8129 static inline _glptr_GetUniformLocationARB GET_GetUniformLocationARB(struct _glapi_table *disp) { 8130 return (_glptr_GetUniformLocationARB) (GET_by_offset(disp, _gloffset_GetUniformLocationARB)); 8131 } 8132 8133 static inline void SET_GetUniformLocationARB(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLhandleARB, const GLcharARB *)) { 8134 SET_by_offset(disp, _gloffset_GetUniformLocationARB, fn); 8135 } 8136 8137 typedef void (GLAPIENTRYP _glptr_GetUniformfvARB)(GLhandleARB, GLint, GLfloat *); 8138 #define CALL_GetUniformfvARB(disp, parameters) \ 8139 (* GET_GetUniformfvARB(disp)) parameters 8140 static inline _glptr_GetUniformfvARB GET_GetUniformfvARB(struct _glapi_table *disp) { 8141 return (_glptr_GetUniformfvARB) (GET_by_offset(disp, _gloffset_GetUniformfvARB)); 8142 } 8143 8144 static inline void SET_GetUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLfloat *)) { 8145 SET_by_offset(disp, _gloffset_GetUniformfvARB, fn); 8146 } 8147 8148 typedef void (GLAPIENTRYP _glptr_GetUniformivARB)(GLhandleARB, GLint, GLint *); 8149 #define CALL_GetUniformivARB(disp, parameters) \ 8150 (* GET_GetUniformivARB(disp)) parameters 8151 static inline _glptr_GetUniformivARB GET_GetUniformivARB(struct _glapi_table *disp) { 8152 return (_glptr_GetUniformivARB) (GET_by_offset(disp, _gloffset_GetUniformivARB)); 8153 } 8154 8155 static inline void SET_GetUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLint *)) { 8156 SET_by_offset(disp, _gloffset_GetUniformivARB, fn); 8157 } 8158 8159 typedef void (GLAPIENTRYP _glptr_LinkProgramARB)(GLhandleARB); 8160 #define CALL_LinkProgramARB(disp, parameters) \ 8161 (* GET_LinkProgramARB(disp)) parameters 8162 static inline _glptr_LinkProgramARB GET_LinkProgramARB(struct _glapi_table *disp) { 8163 return (_glptr_LinkProgramARB) (GET_by_offset(disp, _gloffset_LinkProgramARB)); 8164 } 8165 8166 static inline void SET_LinkProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) { 8167 SET_by_offset(disp, _gloffset_LinkProgramARB, fn); 8168 } 8169 8170 typedef void (GLAPIENTRYP _glptr_ShaderSourceARB)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *); 8171 #define CALL_ShaderSourceARB(disp, parameters) \ 8172 (* GET_ShaderSourceARB(disp)) parameters 8173 static inline _glptr_ShaderSourceARB GET_ShaderSourceARB(struct _glapi_table *disp) { 8174 return (_glptr_ShaderSourceARB) (GET_by_offset(disp, _gloffset_ShaderSourceARB)); 8175 } 8176 8177 static inline void SET_ShaderSourceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLsizei, const GLcharARB **, const GLint *)) { 8178 SET_by_offset(disp, _gloffset_ShaderSourceARB, fn); 8179 } 8180 8181 typedef void (GLAPIENTRYP _glptr_Uniform1fARB)(GLint, GLfloat); 8182 #define CALL_Uniform1fARB(disp, parameters) \ 8183 (* GET_Uniform1fARB(disp)) parameters 8184 static inline _glptr_Uniform1fARB GET_Uniform1fARB(struct _glapi_table *disp) { 8185 return (_glptr_Uniform1fARB) (GET_by_offset(disp, _gloffset_Uniform1fARB)); 8186 } 8187 8188 static inline void SET_Uniform1fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat)) { 8189 SET_by_offset(disp, _gloffset_Uniform1fARB, fn); 8190 } 8191 8192 typedef void (GLAPIENTRYP _glptr_Uniform1fvARB)(GLint, GLsizei, const GLfloat *); 8193 #define CALL_Uniform1fvARB(disp, parameters) \ 8194 (* GET_Uniform1fvARB(disp)) parameters 8195 static inline _glptr_Uniform1fvARB GET_Uniform1fvARB(struct _glapi_table *disp) { 8196 return (_glptr_Uniform1fvARB) (GET_by_offset(disp, _gloffset_Uniform1fvARB)); 8197 } 8198 8199 static inline void SET_Uniform1fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) { 8200 SET_by_offset(disp, _gloffset_Uniform1fvARB, fn); 8201 } 8202 8203 typedef void (GLAPIENTRYP _glptr_Uniform1iARB)(GLint, GLint); 8204 #define CALL_Uniform1iARB(disp, parameters) \ 8205 (* GET_Uniform1iARB(disp)) parameters 8206 static inline _glptr_Uniform1iARB GET_Uniform1iARB(struct _glapi_table *disp) { 8207 return (_glptr_Uniform1iARB) (GET_by_offset(disp, _gloffset_Uniform1iARB)); 8208 } 8209 8210 static inline void SET_Uniform1iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) { 8211 SET_by_offset(disp, _gloffset_Uniform1iARB, fn); 8212 } 8213 8214 typedef void (GLAPIENTRYP _glptr_Uniform1ivARB)(GLint, GLsizei, const GLint *); 8215 #define CALL_Uniform1ivARB(disp, parameters) \ 8216 (* GET_Uniform1ivARB(disp)) parameters 8217 static inline _glptr_Uniform1ivARB GET_Uniform1ivARB(struct _glapi_table *disp) { 8218 return (_glptr_Uniform1ivARB) (GET_by_offset(disp, _gloffset_Uniform1ivARB)); 8219 } 8220 8221 static inline void SET_Uniform1ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) { 8222 SET_by_offset(disp, _gloffset_Uniform1ivARB, fn); 8223 } 8224 8225 typedef void (GLAPIENTRYP _glptr_Uniform2fARB)(GLint, GLfloat, GLfloat); 8226 #define CALL_Uniform2fARB(disp, parameters) \ 8227 (* GET_Uniform2fARB(disp)) parameters 8228 static inline _glptr_Uniform2fARB GET_Uniform2fARB(struct _glapi_table *disp) { 8229 return (_glptr_Uniform2fARB) (GET_by_offset(disp, _gloffset_Uniform2fARB)); 8230 } 8231 8232 static inline void SET_Uniform2fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat)) { 8233 SET_by_offset(disp, _gloffset_Uniform2fARB, fn); 8234 } 8235 8236 typedef void (GLAPIENTRYP _glptr_Uniform2fvARB)(GLint, GLsizei, const GLfloat *); 8237 #define CALL_Uniform2fvARB(disp, parameters) \ 8238 (* GET_Uniform2fvARB(disp)) parameters 8239 static inline _glptr_Uniform2fvARB GET_Uniform2fvARB(struct _glapi_table *disp) { 8240 return (_glptr_Uniform2fvARB) (GET_by_offset(disp, _gloffset_Uniform2fvARB)); 8241 } 8242 8243 static inline void SET_Uniform2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) { 8244 SET_by_offset(disp, _gloffset_Uniform2fvARB, fn); 8245 } 8246 8247 typedef void (GLAPIENTRYP _glptr_Uniform2iARB)(GLint, GLint, GLint); 8248 #define CALL_Uniform2iARB(disp, parameters) \ 8249 (* GET_Uniform2iARB(disp)) parameters 8250 static inline _glptr_Uniform2iARB GET_Uniform2iARB(struct _glapi_table *disp) { 8251 return (_glptr_Uniform2iARB) (GET_by_offset(disp, _gloffset_Uniform2iARB)); 8252 } 8253 8254 static inline void SET_Uniform2iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 8255 SET_by_offset(disp, _gloffset_Uniform2iARB, fn); 8256 } 8257 8258 typedef void (GLAPIENTRYP _glptr_Uniform2ivARB)(GLint, GLsizei, const GLint *); 8259 #define CALL_Uniform2ivARB(disp, parameters) \ 8260 (* GET_Uniform2ivARB(disp)) parameters 8261 static inline _glptr_Uniform2ivARB GET_Uniform2ivARB(struct _glapi_table *disp) { 8262 return (_glptr_Uniform2ivARB) (GET_by_offset(disp, _gloffset_Uniform2ivARB)); 8263 } 8264 8265 static inline void SET_Uniform2ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) { 8266 SET_by_offset(disp, _gloffset_Uniform2ivARB, fn); 8267 } 8268 8269 typedef void (GLAPIENTRYP _glptr_Uniform3fARB)(GLint, GLfloat, GLfloat, GLfloat); 8270 #define CALL_Uniform3fARB(disp, parameters) \ 8271 (* GET_Uniform3fARB(disp)) parameters 8272 static inline _glptr_Uniform3fARB GET_Uniform3fARB(struct _glapi_table *disp) { 8273 return (_glptr_Uniform3fARB) (GET_by_offset(disp, _gloffset_Uniform3fARB)); 8274 } 8275 8276 static inline void SET_Uniform3fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat)) { 8277 SET_by_offset(disp, _gloffset_Uniform3fARB, fn); 8278 } 8279 8280 typedef void (GLAPIENTRYP _glptr_Uniform3fvARB)(GLint, GLsizei, const GLfloat *); 8281 #define CALL_Uniform3fvARB(disp, parameters) \ 8282 (* GET_Uniform3fvARB(disp)) parameters 8283 static inline _glptr_Uniform3fvARB GET_Uniform3fvARB(struct _glapi_table *disp) { 8284 return (_glptr_Uniform3fvARB) (GET_by_offset(disp, _gloffset_Uniform3fvARB)); 8285 } 8286 8287 static inline void SET_Uniform3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) { 8288 SET_by_offset(disp, _gloffset_Uniform3fvARB, fn); 8289 } 8290 8291 typedef void (GLAPIENTRYP _glptr_Uniform3iARB)(GLint, GLint, GLint, GLint); 8292 #define CALL_Uniform3iARB(disp, parameters) \ 8293 (* GET_Uniform3iARB(disp)) parameters 8294 static inline _glptr_Uniform3iARB GET_Uniform3iARB(struct _glapi_table *disp) { 8295 return (_glptr_Uniform3iARB) (GET_by_offset(disp, _gloffset_Uniform3iARB)); 8296 } 8297 8298 static inline void SET_Uniform3iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 8299 SET_by_offset(disp, _gloffset_Uniform3iARB, fn); 8300 } 8301 8302 typedef void (GLAPIENTRYP _glptr_Uniform3ivARB)(GLint, GLsizei, const GLint *); 8303 #define CALL_Uniform3ivARB(disp, parameters) \ 8304 (* GET_Uniform3ivARB(disp)) parameters 8305 static inline _glptr_Uniform3ivARB GET_Uniform3ivARB(struct _glapi_table *disp) { 8306 return (_glptr_Uniform3ivARB) (GET_by_offset(disp, _gloffset_Uniform3ivARB)); 8307 } 8308 8309 static inline void SET_Uniform3ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) { 8310 SET_by_offset(disp, _gloffset_Uniform3ivARB, fn); 8311 } 8312 8313 typedef void (GLAPIENTRYP _glptr_Uniform4fARB)(GLint, GLfloat, GLfloat, GLfloat, GLfloat); 8314 #define CALL_Uniform4fARB(disp, parameters) \ 8315 (* GET_Uniform4fARB(disp)) parameters 8316 static inline _glptr_Uniform4fARB GET_Uniform4fARB(struct _glapi_table *disp) { 8317 return (_glptr_Uniform4fARB) (GET_by_offset(disp, _gloffset_Uniform4fARB)); 8318 } 8319 8320 static inline void SET_Uniform4fARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLfloat, GLfloat, GLfloat, GLfloat)) { 8321 SET_by_offset(disp, _gloffset_Uniform4fARB, fn); 8322 } 8323 8324 typedef void (GLAPIENTRYP _glptr_Uniform4fvARB)(GLint, GLsizei, const GLfloat *); 8325 #define CALL_Uniform4fvARB(disp, parameters) \ 8326 (* GET_Uniform4fvARB(disp)) parameters 8327 static inline _glptr_Uniform4fvARB GET_Uniform4fvARB(struct _glapi_table *disp) { 8328 return (_glptr_Uniform4fvARB) (GET_by_offset(disp, _gloffset_Uniform4fvARB)); 8329 } 8330 8331 static inline void SET_Uniform4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLfloat *)) { 8332 SET_by_offset(disp, _gloffset_Uniform4fvARB, fn); 8333 } 8334 8335 typedef void (GLAPIENTRYP _glptr_Uniform4iARB)(GLint, GLint, GLint, GLint, GLint); 8336 #define CALL_Uniform4iARB(disp, parameters) \ 8337 (* GET_Uniform4iARB(disp)) parameters 8338 static inline _glptr_Uniform4iARB GET_Uniform4iARB(struct _glapi_table *disp) { 8339 return (_glptr_Uniform4iARB) (GET_by_offset(disp, _gloffset_Uniform4iARB)); 8340 } 8341 8342 static inline void SET_Uniform4iARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint)) { 8343 SET_by_offset(disp, _gloffset_Uniform4iARB, fn); 8344 } 8345 8346 typedef void (GLAPIENTRYP _glptr_Uniform4ivARB)(GLint, GLsizei, const GLint *); 8347 #define CALL_Uniform4ivARB(disp, parameters) \ 8348 (* GET_Uniform4ivARB(disp)) parameters 8349 static inline _glptr_Uniform4ivARB GET_Uniform4ivARB(struct _glapi_table *disp) { 8350 return (_glptr_Uniform4ivARB) (GET_by_offset(disp, _gloffset_Uniform4ivARB)); 8351 } 8352 8353 static inline void SET_Uniform4ivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLint *)) { 8354 SET_by_offset(disp, _gloffset_Uniform4ivARB, fn); 8355 } 8356 8357 typedef void (GLAPIENTRYP _glptr_UniformMatrix2fvARB)(GLint, GLsizei, GLboolean, const GLfloat *); 8358 #define CALL_UniformMatrix2fvARB(disp, parameters) \ 8359 (* GET_UniformMatrix2fvARB(disp)) parameters 8360 static inline _glptr_UniformMatrix2fvARB GET_UniformMatrix2fvARB(struct _glapi_table *disp) { 8361 return (_glptr_UniformMatrix2fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix2fvARB)); 8362 } 8363 8364 static inline void SET_UniformMatrix2fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 8365 SET_by_offset(disp, _gloffset_UniformMatrix2fvARB, fn); 8366 } 8367 8368 typedef void (GLAPIENTRYP _glptr_UniformMatrix3fvARB)(GLint, GLsizei, GLboolean, const GLfloat *); 8369 #define CALL_UniformMatrix3fvARB(disp, parameters) \ 8370 (* GET_UniformMatrix3fvARB(disp)) parameters 8371 static inline _glptr_UniformMatrix3fvARB GET_UniformMatrix3fvARB(struct _glapi_table *disp) { 8372 return (_glptr_UniformMatrix3fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix3fvARB)); 8373 } 8374 8375 static inline void SET_UniformMatrix3fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 8376 SET_by_offset(disp, _gloffset_UniformMatrix3fvARB, fn); 8377 } 8378 8379 typedef void (GLAPIENTRYP _glptr_UniformMatrix4fvARB)(GLint, GLsizei, GLboolean, const GLfloat *); 8380 #define CALL_UniformMatrix4fvARB(disp, parameters) \ 8381 (* GET_UniformMatrix4fvARB(disp)) parameters 8382 static inline _glptr_UniformMatrix4fvARB GET_UniformMatrix4fvARB(struct _glapi_table *disp) { 8383 return (_glptr_UniformMatrix4fvARB) (GET_by_offset(disp, _gloffset_UniformMatrix4fvARB)); 8384 } 8385 8386 static inline void SET_UniformMatrix4fvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, GLboolean, const GLfloat *)) { 8387 SET_by_offset(disp, _gloffset_UniformMatrix4fvARB, fn); 8388 } 8389 8390 typedef void (GLAPIENTRYP _glptr_UseProgramObjectARB)(GLhandleARB); 8391 #define CALL_UseProgramObjectARB(disp, parameters) \ 8392 (* GET_UseProgramObjectARB(disp)) parameters 8393 static inline _glptr_UseProgramObjectARB GET_UseProgramObjectARB(struct _glapi_table *disp) { 8394 return (_glptr_UseProgramObjectARB) (GET_by_offset(disp, _gloffset_UseProgramObjectARB)); 8395 } 8396 8397 static inline void SET_UseProgramObjectARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) { 8398 SET_by_offset(disp, _gloffset_UseProgramObjectARB, fn); 8399 } 8400 8401 typedef void (GLAPIENTRYP _glptr_ValidateProgramARB)(GLhandleARB); 8402 #define CALL_ValidateProgramARB(disp, parameters) \ 8403 (* GET_ValidateProgramARB(disp)) parameters 8404 static inline _glptr_ValidateProgramARB GET_ValidateProgramARB(struct _glapi_table *disp) { 8405 return (_glptr_ValidateProgramARB) (GET_by_offset(disp, _gloffset_ValidateProgramARB)); 8406 } 8407 8408 static inline void SET_ValidateProgramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB)) { 8409 SET_by_offset(disp, _gloffset_ValidateProgramARB, fn); 8410 } 8411 8412 typedef void (GLAPIENTRYP _glptr_BindAttribLocationARB)(GLhandleARB, GLuint, const GLcharARB *); 8413 #define CALL_BindAttribLocationARB(disp, parameters) \ 8414 (* GET_BindAttribLocationARB(disp)) parameters 8415 static inline _glptr_BindAttribLocationARB GET_BindAttribLocationARB(struct _glapi_table *disp) { 8416 return (_glptr_BindAttribLocationARB) (GET_by_offset(disp, _gloffset_BindAttribLocationARB)); 8417 } 8418 8419 static inline void SET_BindAttribLocationARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, const GLcharARB *)) { 8420 SET_by_offset(disp, _gloffset_BindAttribLocationARB, fn); 8421 } 8422 8423 typedef void (GLAPIENTRYP _glptr_GetActiveAttribARB)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *); 8424 #define CALL_GetActiveAttribARB(disp, parameters) \ 8425 (* GET_GetActiveAttribARB(disp)) parameters 8426 static inline _glptr_GetActiveAttribARB GET_GetActiveAttribARB(struct _glapi_table *disp) { 8427 return (_glptr_GetActiveAttribARB) (GET_by_offset(disp, _gloffset_GetActiveAttribARB)); 8428 } 8429 8430 static inline void SET_GetActiveAttribARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLuint, GLsizei, GLsizei *, GLint *, GLenum *, GLcharARB *)) { 8431 SET_by_offset(disp, _gloffset_GetActiveAttribARB, fn); 8432 } 8433 8434 typedef GLint (GLAPIENTRYP _glptr_GetAttribLocationARB)(GLhandleARB, const GLcharARB *); 8435 #define CALL_GetAttribLocationARB(disp, parameters) \ 8436 (* GET_GetAttribLocationARB(disp)) parameters 8437 static inline _glptr_GetAttribLocationARB GET_GetAttribLocationARB(struct _glapi_table *disp) { 8438 return (_glptr_GetAttribLocationARB) (GET_by_offset(disp, _gloffset_GetAttribLocationARB)); 8439 } 8440 8441 static inline void SET_GetAttribLocationARB(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLhandleARB, const GLcharARB *)) { 8442 SET_by_offset(disp, _gloffset_GetAttribLocationARB, fn); 8443 } 8444 8445 typedef void (GLAPIENTRYP _glptr_DrawBuffersARB)(GLsizei, const GLenum *); 8446 #define CALL_DrawBuffersARB(disp, parameters) \ 8447 (* GET_DrawBuffersARB(disp)) parameters 8448 static inline _glptr_DrawBuffersARB GET_DrawBuffersARB(struct _glapi_table *disp) { 8449 return (_glptr_DrawBuffersARB) (GET_by_offset(disp, _gloffset_DrawBuffersARB)); 8450 } 8451 8452 static inline void SET_DrawBuffersARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLenum *)) { 8453 SET_by_offset(disp, _gloffset_DrawBuffersARB, fn); 8454 } 8455 8456 typedef void (GLAPIENTRYP _glptr_ClampColorARB)(GLenum, GLenum); 8457 #define CALL_ClampColorARB(disp, parameters) \ 8458 (* GET_ClampColorARB(disp)) parameters 8459 static inline _glptr_ClampColorARB GET_ClampColorARB(struct _glapi_table *disp) { 8460 return (_glptr_ClampColorARB) (GET_by_offset(disp, _gloffset_ClampColorARB)); 8461 } 8462 8463 static inline void SET_ClampColorARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 8464 SET_by_offset(disp, _gloffset_ClampColorARB, fn); 8465 } 8466 8467 typedef void (GLAPIENTRYP _glptr_DrawArraysInstancedARB)(GLenum, GLint, GLsizei, GLsizei); 8468 #define CALL_DrawArraysInstancedARB(disp, parameters) \ 8469 (* GET_DrawArraysInstancedARB(disp)) parameters 8470 static inline _glptr_DrawArraysInstancedARB GET_DrawArraysInstancedARB(struct _glapi_table *disp) { 8471 return (_glptr_DrawArraysInstancedARB) (GET_by_offset(disp, _gloffset_DrawArraysInstancedARB)); 8472 } 8473 8474 static inline void SET_DrawArraysInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLsizei)) { 8475 SET_by_offset(disp, _gloffset_DrawArraysInstancedARB, fn); 8476 } 8477 8478 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedARB)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei); 8479 #define CALL_DrawElementsInstancedARB(disp, parameters) \ 8480 (* GET_DrawElementsInstancedARB(disp)) parameters 8481 static inline _glptr_DrawElementsInstancedARB GET_DrawElementsInstancedARB(struct _glapi_table *disp) { 8482 return (_glptr_DrawElementsInstancedARB) (GET_by_offset(disp, _gloffset_DrawElementsInstancedARB)); 8483 } 8484 8485 static inline void SET_DrawElementsInstancedARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei)) { 8486 SET_by_offset(disp, _gloffset_DrawElementsInstancedARB, fn); 8487 } 8488 8489 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageMultisample)(GLenum, GLsizei, GLenum, GLsizei, GLsizei); 8490 #define CALL_RenderbufferStorageMultisample(disp, parameters) \ 8491 (* GET_RenderbufferStorageMultisample(disp)) parameters 8492 static inline _glptr_RenderbufferStorageMultisample GET_RenderbufferStorageMultisample(struct _glapi_table *disp) { 8493 return (_glptr_RenderbufferStorageMultisample) (GET_by_offset(disp, _gloffset_RenderbufferStorageMultisample)); 8494 } 8495 8496 static inline void SET_RenderbufferStorageMultisample(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) { 8497 SET_by_offset(disp, _gloffset_RenderbufferStorageMultisample, fn); 8498 } 8499 8500 typedef void (GLAPIENTRYP _glptr_FramebufferTextureARB)(GLenum, GLenum, GLuint, GLint); 8501 #define CALL_FramebufferTextureARB(disp, parameters) \ 8502 (* GET_FramebufferTextureARB(disp)) parameters 8503 static inline _glptr_FramebufferTextureARB GET_FramebufferTextureARB(struct _glapi_table *disp) { 8504 return (_glptr_FramebufferTextureARB) (GET_by_offset(disp, _gloffset_FramebufferTextureARB)); 8505 } 8506 8507 static inline void SET_FramebufferTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint)) { 8508 SET_by_offset(disp, _gloffset_FramebufferTextureARB, fn); 8509 } 8510 8511 typedef void (GLAPIENTRYP _glptr_FramebufferTextureFaceARB)(GLenum, GLenum, GLuint, GLint, GLenum); 8512 #define CALL_FramebufferTextureFaceARB(disp, parameters) \ 8513 (* GET_FramebufferTextureFaceARB(disp)) parameters 8514 static inline _glptr_FramebufferTextureFaceARB GET_FramebufferTextureFaceARB(struct _glapi_table *disp) { 8515 return (_glptr_FramebufferTextureFaceARB) (GET_by_offset(disp, _gloffset_FramebufferTextureFaceARB)); 8516 } 8517 8518 static inline void SET_FramebufferTextureFaceARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint, GLenum)) { 8519 SET_by_offset(disp, _gloffset_FramebufferTextureFaceARB, fn); 8520 } 8521 8522 typedef void (GLAPIENTRYP _glptr_ProgramParameteriARB)(GLuint, GLenum, GLint); 8523 #define CALL_ProgramParameteriARB(disp, parameters) \ 8524 (* GET_ProgramParameteriARB(disp)) parameters 8525 static inline _glptr_ProgramParameteriARB GET_ProgramParameteriARB(struct _glapi_table *disp) { 8526 return (_glptr_ProgramParameteriARB) (GET_by_offset(disp, _gloffset_ProgramParameteriARB)); 8527 } 8528 8529 static inline void SET_ProgramParameteriARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) { 8530 SET_by_offset(disp, _gloffset_ProgramParameteriARB, fn); 8531 } 8532 8533 typedef void (GLAPIENTRYP _glptr_VertexAttribDivisorARB)(GLuint, GLuint); 8534 #define CALL_VertexAttribDivisorARB(disp, parameters) \ 8535 (* GET_VertexAttribDivisorARB(disp)) parameters 8536 static inline _glptr_VertexAttribDivisorARB GET_VertexAttribDivisorARB(struct _glapi_table *disp) { 8537 return (_glptr_VertexAttribDivisorARB) (GET_by_offset(disp, _gloffset_VertexAttribDivisorARB)); 8538 } 8539 8540 static inline void SET_VertexAttribDivisorARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) { 8541 SET_by_offset(disp, _gloffset_VertexAttribDivisorARB, fn); 8542 } 8543 8544 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRange)(GLenum, GLintptr, GLsizeiptr); 8545 #define CALL_FlushMappedBufferRange(disp, parameters) \ 8546 (* GET_FlushMappedBufferRange(disp)) parameters 8547 static inline _glptr_FlushMappedBufferRange GET_FlushMappedBufferRange(struct _glapi_table *disp) { 8548 return (_glptr_FlushMappedBufferRange) (GET_by_offset(disp, _gloffset_FlushMappedBufferRange)); 8549 } 8550 8551 static inline void SET_FlushMappedBufferRange(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) { 8552 SET_by_offset(disp, _gloffset_FlushMappedBufferRange, fn); 8553 } 8554 8555 typedef GLvoid * (GLAPIENTRYP _glptr_MapBufferRange)(GLenum, GLintptr, GLsizeiptr, GLbitfield); 8556 #define CALL_MapBufferRange(disp, parameters) \ 8557 (* GET_MapBufferRange(disp)) parameters 8558 static inline _glptr_MapBufferRange GET_MapBufferRange(struct _glapi_table *disp) { 8559 return (_glptr_MapBufferRange) (GET_by_offset(disp, _gloffset_MapBufferRange)); 8560 } 8561 8562 static inline void SET_MapBufferRange(struct _glapi_table *disp, GLvoid * (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr, GLbitfield)) { 8563 SET_by_offset(disp, _gloffset_MapBufferRange, fn); 8564 } 8565 8566 typedef void (GLAPIENTRYP _glptr_TexBufferARB)(GLenum, GLenum, GLuint); 8567 #define CALL_TexBufferARB(disp, parameters) \ 8568 (* GET_TexBufferARB(disp)) parameters 8569 static inline _glptr_TexBufferARB GET_TexBufferARB(struct _glapi_table *disp) { 8570 return (_glptr_TexBufferARB) (GET_by_offset(disp, _gloffset_TexBufferARB)); 8571 } 8572 8573 static inline void SET_TexBufferARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) { 8574 SET_by_offset(disp, _gloffset_TexBufferARB, fn); 8575 } 8576 8577 typedef void (GLAPIENTRYP _glptr_BindVertexArray)(GLuint); 8578 #define CALL_BindVertexArray(disp, parameters) \ 8579 (* GET_BindVertexArray(disp)) parameters 8580 static inline _glptr_BindVertexArray GET_BindVertexArray(struct _glapi_table *disp) { 8581 return (_glptr_BindVertexArray) (GET_by_offset(disp, _gloffset_BindVertexArray)); 8582 } 8583 8584 static inline void SET_BindVertexArray(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 8585 SET_by_offset(disp, _gloffset_BindVertexArray, fn); 8586 } 8587 8588 typedef void (GLAPIENTRYP _glptr_GenVertexArrays)(GLsizei, GLuint *); 8589 #define CALL_GenVertexArrays(disp, parameters) \ 8590 (* GET_GenVertexArrays(disp)) parameters 8591 static inline _glptr_GenVertexArrays GET_GenVertexArrays(struct _glapi_table *disp) { 8592 return (_glptr_GenVertexArrays) (GET_by_offset(disp, _gloffset_GenVertexArrays)); 8593 } 8594 8595 static inline void SET_GenVertexArrays(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 8596 SET_by_offset(disp, _gloffset_GenVertexArrays, fn); 8597 } 8598 8599 typedef void (GLAPIENTRYP _glptr_GetActiveUniformBlockName)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *); 8600 #define CALL_GetActiveUniformBlockName(disp, parameters) \ 8601 (* GET_GetActiveUniformBlockName(disp)) parameters 8602 static inline _glptr_GetActiveUniformBlockName GET_GetActiveUniformBlockName(struct _glapi_table *disp) { 8603 return (_glptr_GetActiveUniformBlockName) (GET_by_offset(disp, _gloffset_GetActiveUniformBlockName)); 8604 } 8605 8606 static inline void SET_GetActiveUniformBlockName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *)) { 8607 SET_by_offset(disp, _gloffset_GetActiveUniformBlockName, fn); 8608 } 8609 8610 typedef void (GLAPIENTRYP _glptr_GetActiveUniformBlockiv)(GLuint, GLuint, GLenum, GLint *); 8611 #define CALL_GetActiveUniformBlockiv(disp, parameters) \ 8612 (* GET_GetActiveUniformBlockiv(disp)) parameters 8613 static inline _glptr_GetActiveUniformBlockiv GET_GetActiveUniformBlockiv(struct _glapi_table *disp) { 8614 return (_glptr_GetActiveUniformBlockiv) (GET_by_offset(disp, _gloffset_GetActiveUniformBlockiv)); 8615 } 8616 8617 static inline void SET_GetActiveUniformBlockiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum, GLint *)) { 8618 SET_by_offset(disp, _gloffset_GetActiveUniformBlockiv, fn); 8619 } 8620 8621 typedef void (GLAPIENTRYP _glptr_GetActiveUniformName)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *); 8622 #define CALL_GetActiveUniformName(disp, parameters) \ 8623 (* GET_GetActiveUniformName(disp)) parameters 8624 static inline _glptr_GetActiveUniformName GET_GetActiveUniformName(struct _glapi_table *disp) { 8625 return (_glptr_GetActiveUniformName) (GET_by_offset(disp, _gloffset_GetActiveUniformName)); 8626 } 8627 8628 static inline void SET_GetActiveUniformName(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLchar *)) { 8629 SET_by_offset(disp, _gloffset_GetActiveUniformName, fn); 8630 } 8631 8632 typedef void (GLAPIENTRYP _glptr_GetActiveUniformsiv)(GLuint, GLsizei, const GLuint *, GLenum, GLint *); 8633 #define CALL_GetActiveUniformsiv(disp, parameters) \ 8634 (* GET_GetActiveUniformsiv(disp)) parameters 8635 static inline _glptr_GetActiveUniformsiv GET_GetActiveUniformsiv(struct _glapi_table *disp) { 8636 return (_glptr_GetActiveUniformsiv) (GET_by_offset(disp, _gloffset_GetActiveUniformsiv)); 8637 } 8638 8639 static inline void SET_GetActiveUniformsiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLuint *, GLenum, GLint *)) { 8640 SET_by_offset(disp, _gloffset_GetActiveUniformsiv, fn); 8641 } 8642 8643 typedef GLuint (GLAPIENTRYP _glptr_GetUniformBlockIndex)(GLuint, const GLchar *); 8644 #define CALL_GetUniformBlockIndex(disp, parameters) \ 8645 (* GET_GetUniformBlockIndex(disp)) parameters 8646 static inline _glptr_GetUniformBlockIndex GET_GetUniformBlockIndex(struct _glapi_table *disp) { 8647 return (_glptr_GetUniformBlockIndex) (GET_by_offset(disp, _gloffset_GetUniformBlockIndex)); 8648 } 8649 8650 static inline void SET_GetUniformBlockIndex(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint, const GLchar *)) { 8651 SET_by_offset(disp, _gloffset_GetUniformBlockIndex, fn); 8652 } 8653 8654 typedef void (GLAPIENTRYP _glptr_GetUniformIndices)(GLuint, GLsizei, const GLchar * const *, GLuint *); 8655 #define CALL_GetUniformIndices(disp, parameters) \ 8656 (* GET_GetUniformIndices(disp)) parameters 8657 static inline _glptr_GetUniformIndices GET_GetUniformIndices(struct _glapi_table *disp) { 8658 return (_glptr_GetUniformIndices) (GET_by_offset(disp, _gloffset_GetUniformIndices)); 8659 } 8660 8661 static inline void SET_GetUniformIndices(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLchar * const *, GLuint *)) { 8662 SET_by_offset(disp, _gloffset_GetUniformIndices, fn); 8663 } 8664 8665 typedef void (GLAPIENTRYP _glptr_UniformBlockBinding)(GLuint, GLuint, GLuint); 8666 #define CALL_UniformBlockBinding(disp, parameters) \ 8667 (* GET_UniformBlockBinding(disp)) parameters 8668 static inline _glptr_UniformBlockBinding GET_UniformBlockBinding(struct _glapi_table *disp) { 8669 return (_glptr_UniformBlockBinding) (GET_by_offset(disp, _gloffset_UniformBlockBinding)); 8670 } 8671 8672 static inline void SET_UniformBlockBinding(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) { 8673 SET_by_offset(disp, _gloffset_UniformBlockBinding, fn); 8674 } 8675 8676 typedef void (GLAPIENTRYP _glptr_CopyBufferSubData)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr); 8677 #define CALL_CopyBufferSubData(disp, parameters) \ 8678 (* GET_CopyBufferSubData(disp)) parameters 8679 static inline _glptr_CopyBufferSubData GET_CopyBufferSubData(struct _glapi_table *disp) { 8680 return (_glptr_CopyBufferSubData) (GET_by_offset(disp, _gloffset_CopyBufferSubData)); 8681 } 8682 8683 static inline void SET_CopyBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLintptr, GLintptr, GLsizeiptr)) { 8684 SET_by_offset(disp, _gloffset_CopyBufferSubData, fn); 8685 } 8686 8687 typedef GLenum (GLAPIENTRYP _glptr_ClientWaitSync)(GLsync, GLbitfield, GLuint64); 8688 #define CALL_ClientWaitSync(disp, parameters) \ 8689 (* GET_ClientWaitSync(disp)) parameters 8690 static inline _glptr_ClientWaitSync GET_ClientWaitSync(struct _glapi_table *disp) { 8691 return (_glptr_ClientWaitSync) (GET_by_offset(disp, _gloffset_ClientWaitSync)); 8692 } 8693 8694 static inline void SET_ClientWaitSync(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLsync, GLbitfield, GLuint64)) { 8695 SET_by_offset(disp, _gloffset_ClientWaitSync, fn); 8696 } 8697 8698 typedef void (GLAPIENTRYP _glptr_DeleteSync)(GLsync); 8699 #define CALL_DeleteSync(disp, parameters) \ 8700 (* GET_DeleteSync(disp)) parameters 8701 static inline _glptr_DeleteSync GET_DeleteSync(struct _glapi_table *disp) { 8702 return (_glptr_DeleteSync) (GET_by_offset(disp, _gloffset_DeleteSync)); 8703 } 8704 8705 static inline void SET_DeleteSync(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync)) { 8706 SET_by_offset(disp, _gloffset_DeleteSync, fn); 8707 } 8708 8709 typedef GLsync (GLAPIENTRYP _glptr_FenceSync)(GLenum, GLbitfield); 8710 #define CALL_FenceSync(disp, parameters) \ 8711 (* GET_FenceSync(disp)) parameters 8712 static inline _glptr_FenceSync GET_FenceSync(struct _glapi_table *disp) { 8713 return (_glptr_FenceSync) (GET_by_offset(disp, _gloffset_FenceSync)); 8714 } 8715 8716 static inline void SET_FenceSync(struct _glapi_table *disp, GLsync (GLAPIENTRYP fn)(GLenum, GLbitfield)) { 8717 SET_by_offset(disp, _gloffset_FenceSync, fn); 8718 } 8719 8720 typedef void (GLAPIENTRYP _glptr_GetInteger64v)(GLenum, GLint64 *); 8721 #define CALL_GetInteger64v(disp, parameters) \ 8722 (* GET_GetInteger64v(disp)) parameters 8723 static inline _glptr_GetInteger64v GET_GetInteger64v(struct _glapi_table *disp) { 8724 return (_glptr_GetInteger64v) (GET_by_offset(disp, _gloffset_GetInteger64v)); 8725 } 8726 8727 static inline void SET_GetInteger64v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint64 *)) { 8728 SET_by_offset(disp, _gloffset_GetInteger64v, fn); 8729 } 8730 8731 typedef void (GLAPIENTRYP _glptr_GetSynciv)(GLsync, GLenum, GLsizei, GLsizei *, GLint *); 8732 #define CALL_GetSynciv(disp, parameters) \ 8733 (* GET_GetSynciv(disp)) parameters 8734 static inline _glptr_GetSynciv GET_GetSynciv(struct _glapi_table *disp) { 8735 return (_glptr_GetSynciv) (GET_by_offset(disp, _gloffset_GetSynciv)); 8736 } 8737 8738 static inline void SET_GetSynciv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync, GLenum, GLsizei, GLsizei *, GLint *)) { 8739 SET_by_offset(disp, _gloffset_GetSynciv, fn); 8740 } 8741 8742 typedef GLboolean (GLAPIENTRYP _glptr_IsSync)(GLsync); 8743 #define CALL_IsSync(disp, parameters) \ 8744 (* GET_IsSync(disp)) parameters 8745 static inline _glptr_IsSync GET_IsSync(struct _glapi_table *disp) { 8746 return (_glptr_IsSync) (GET_by_offset(disp, _gloffset_IsSync)); 8747 } 8748 8749 static inline void SET_IsSync(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsync)) { 8750 SET_by_offset(disp, _gloffset_IsSync, fn); 8751 } 8752 8753 typedef void (GLAPIENTRYP _glptr_WaitSync)(GLsync, GLbitfield, GLuint64); 8754 #define CALL_WaitSync(disp, parameters) \ 8755 (* GET_WaitSync(disp)) parameters 8756 static inline _glptr_WaitSync GET_WaitSync(struct _glapi_table *disp) { 8757 return (_glptr_WaitSync) (GET_by_offset(disp, _gloffset_WaitSync)); 8758 } 8759 8760 static inline void SET_WaitSync(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsync, GLbitfield, GLuint64)) { 8761 SET_by_offset(disp, _gloffset_WaitSync, fn); 8762 } 8763 8764 typedef void (GLAPIENTRYP _glptr_DrawElementsBaseVertex)(GLenum, GLsizei, GLenum, const GLvoid *, GLint); 8765 #define CALL_DrawElementsBaseVertex(disp, parameters) \ 8766 (* GET_DrawElementsBaseVertex(disp)) parameters 8767 static inline _glptr_DrawElementsBaseVertex GET_DrawElementsBaseVertex(struct _glapi_table *disp) { 8768 return (_glptr_DrawElementsBaseVertex) (GET_by_offset(disp, _gloffset_DrawElementsBaseVertex)); 8769 } 8770 8771 static inline void SET_DrawElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLint)) { 8772 SET_by_offset(disp, _gloffset_DrawElementsBaseVertex, fn); 8773 } 8774 8775 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseVertex)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint); 8776 #define CALL_DrawElementsInstancedBaseVertex(disp, parameters) \ 8777 (* GET_DrawElementsInstancedBaseVertex(disp)) parameters 8778 static inline _glptr_DrawElementsInstancedBaseVertex GET_DrawElementsInstancedBaseVertex(struct _glapi_table *disp) { 8779 return (_glptr_DrawElementsInstancedBaseVertex) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertex)); 8780 } 8781 8782 static inline void SET_DrawElementsInstancedBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint)) { 8783 SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertex, fn); 8784 } 8785 8786 typedef void (GLAPIENTRYP _glptr_DrawRangeElementsBaseVertex)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *, GLint); 8787 #define CALL_DrawRangeElementsBaseVertex(disp, parameters) \ 8788 (* GET_DrawRangeElementsBaseVertex(disp)) parameters 8789 static inline _glptr_DrawRangeElementsBaseVertex GET_DrawRangeElementsBaseVertex(struct _glapi_table *disp) { 8790 return (_glptr_DrawRangeElementsBaseVertex) (GET_by_offset(disp, _gloffset_DrawRangeElementsBaseVertex)); 8791 } 8792 8793 static inline void SET_DrawRangeElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *, GLint)) { 8794 SET_by_offset(disp, _gloffset_DrawRangeElementsBaseVertex, fn); 8795 } 8796 8797 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsBaseVertex)(GLenum, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, const GLint *); 8798 #define CALL_MultiDrawElementsBaseVertex(disp, parameters) \ 8799 (* GET_MultiDrawElementsBaseVertex(disp)) parameters 8800 static inline _glptr_MultiDrawElementsBaseVertex GET_MultiDrawElementsBaseVertex(struct _glapi_table *disp) { 8801 return (_glptr_MultiDrawElementsBaseVertex) (GET_by_offset(disp, _gloffset_MultiDrawElementsBaseVertex)); 8802 } 8803 8804 static inline void SET_MultiDrawElementsBaseVertex(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, const GLint *)) { 8805 SET_by_offset(disp, _gloffset_MultiDrawElementsBaseVertex, fn); 8806 } 8807 8808 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateiARB)(GLuint, GLenum, GLenum); 8809 #define CALL_BlendEquationSeparateiARB(disp, parameters) \ 8810 (* GET_BlendEquationSeparateiARB(disp)) parameters 8811 static inline _glptr_BlendEquationSeparateiARB GET_BlendEquationSeparateiARB(struct _glapi_table *disp) { 8812 return (_glptr_BlendEquationSeparateiARB) (GET_by_offset(disp, _gloffset_BlendEquationSeparateiARB)); 8813 } 8814 8815 static inline void SET_BlendEquationSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) { 8816 SET_by_offset(disp, _gloffset_BlendEquationSeparateiARB, fn); 8817 } 8818 8819 typedef void (GLAPIENTRYP _glptr_BlendEquationiARB)(GLuint, GLenum); 8820 #define CALL_BlendEquationiARB(disp, parameters) \ 8821 (* GET_BlendEquationiARB(disp)) parameters 8822 static inline _glptr_BlendEquationiARB GET_BlendEquationiARB(struct _glapi_table *disp) { 8823 return (_glptr_BlendEquationiARB) (GET_by_offset(disp, _gloffset_BlendEquationiARB)); 8824 } 8825 8826 static inline void SET_BlendEquationiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) { 8827 SET_by_offset(disp, _gloffset_BlendEquationiARB, fn); 8828 } 8829 8830 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateiARB)(GLuint, GLenum, GLenum, GLenum, GLenum); 8831 #define CALL_BlendFuncSeparateiARB(disp, parameters) \ 8832 (* GET_BlendFuncSeparateiARB(disp)) parameters 8833 static inline _glptr_BlendFuncSeparateiARB GET_BlendFuncSeparateiARB(struct _glapi_table *disp) { 8834 return (_glptr_BlendFuncSeparateiARB) (GET_by_offset(disp, _gloffset_BlendFuncSeparateiARB)); 8835 } 8836 8837 static inline void SET_BlendFuncSeparateiARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum, GLenum, GLenum)) { 8838 SET_by_offset(disp, _gloffset_BlendFuncSeparateiARB, fn); 8839 } 8840 8841 typedef void (GLAPIENTRYP _glptr_BlendFunciARB)(GLuint, GLenum, GLenum); 8842 #define CALL_BlendFunciARB(disp, parameters) \ 8843 (* GET_BlendFunciARB(disp)) parameters 8844 static inline _glptr_BlendFunciARB GET_BlendFunciARB(struct _glapi_table *disp) { 8845 return (_glptr_BlendFunciARB) (GET_by_offset(disp, _gloffset_BlendFunciARB)); 8846 } 8847 8848 static inline void SET_BlendFunciARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLenum)) { 8849 SET_by_offset(disp, _gloffset_BlendFunciARB, fn); 8850 } 8851 8852 typedef void (GLAPIENTRYP _glptr_BindFragDataLocationIndexed)(GLuint, GLuint, GLuint, const GLchar *); 8853 #define CALL_BindFragDataLocationIndexed(disp, parameters) \ 8854 (* GET_BindFragDataLocationIndexed(disp)) parameters 8855 static inline _glptr_BindFragDataLocationIndexed GET_BindFragDataLocationIndexed(struct _glapi_table *disp) { 8856 return (_glptr_BindFragDataLocationIndexed) (GET_by_offset(disp, _gloffset_BindFragDataLocationIndexed)); 8857 } 8858 8859 static inline void SET_BindFragDataLocationIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, const GLchar *)) { 8860 SET_by_offset(disp, _gloffset_BindFragDataLocationIndexed, fn); 8861 } 8862 8863 typedef GLint (GLAPIENTRYP _glptr_GetFragDataIndex)(GLuint, const GLchar *); 8864 #define CALL_GetFragDataIndex(disp, parameters) \ 8865 (* GET_GetFragDataIndex(disp)) parameters 8866 static inline _glptr_GetFragDataIndex GET_GetFragDataIndex(struct _glapi_table *disp) { 8867 return (_glptr_GetFragDataIndex) (GET_by_offset(disp, _gloffset_GetFragDataIndex)); 8868 } 8869 8870 static inline void SET_GetFragDataIndex(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) { 8871 SET_by_offset(disp, _gloffset_GetFragDataIndex, fn); 8872 } 8873 8874 typedef void (GLAPIENTRYP _glptr_BindSampler)(GLuint, GLuint); 8875 #define CALL_BindSampler(disp, parameters) \ 8876 (* GET_BindSampler(disp)) parameters 8877 static inline _glptr_BindSampler GET_BindSampler(struct _glapi_table *disp) { 8878 return (_glptr_BindSampler) (GET_by_offset(disp, _gloffset_BindSampler)); 8879 } 8880 8881 static inline void SET_BindSampler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) { 8882 SET_by_offset(disp, _gloffset_BindSampler, fn); 8883 } 8884 8885 typedef void (GLAPIENTRYP _glptr_DeleteSamplers)(GLsizei, const GLuint *); 8886 #define CALL_DeleteSamplers(disp, parameters) \ 8887 (* GET_DeleteSamplers(disp)) parameters 8888 static inline _glptr_DeleteSamplers GET_DeleteSamplers(struct _glapi_table *disp) { 8889 return (_glptr_DeleteSamplers) (GET_by_offset(disp, _gloffset_DeleteSamplers)); 8890 } 8891 8892 static inline void SET_DeleteSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 8893 SET_by_offset(disp, _gloffset_DeleteSamplers, fn); 8894 } 8895 8896 typedef void (GLAPIENTRYP _glptr_GenSamplers)(GLsizei, GLuint *); 8897 #define CALL_GenSamplers(disp, parameters) \ 8898 (* GET_GenSamplers(disp)) parameters 8899 static inline _glptr_GenSamplers GET_GenSamplers(struct _glapi_table *disp) { 8900 return (_glptr_GenSamplers) (GET_by_offset(disp, _gloffset_GenSamplers)); 8901 } 8902 8903 static inline void SET_GenSamplers(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 8904 SET_by_offset(disp, _gloffset_GenSamplers, fn); 8905 } 8906 8907 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterIiv)(GLuint, GLenum, GLint *); 8908 #define CALL_GetSamplerParameterIiv(disp, parameters) \ 8909 (* GET_GetSamplerParameterIiv(disp)) parameters 8910 static inline _glptr_GetSamplerParameterIiv GET_GetSamplerParameterIiv(struct _glapi_table *disp) { 8911 return (_glptr_GetSamplerParameterIiv) (GET_by_offset(disp, _gloffset_GetSamplerParameterIiv)); 8912 } 8913 8914 static inline void SET_GetSamplerParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 8915 SET_by_offset(disp, _gloffset_GetSamplerParameterIiv, fn); 8916 } 8917 8918 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterIuiv)(GLuint, GLenum, GLuint *); 8919 #define CALL_GetSamplerParameterIuiv(disp, parameters) \ 8920 (* GET_GetSamplerParameterIuiv(disp)) parameters 8921 static inline _glptr_GetSamplerParameterIuiv GET_GetSamplerParameterIuiv(struct _glapi_table *disp) { 8922 return (_glptr_GetSamplerParameterIuiv) (GET_by_offset(disp, _gloffset_GetSamplerParameterIuiv)); 8923 } 8924 8925 static inline void SET_GetSamplerParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) { 8926 SET_by_offset(disp, _gloffset_GetSamplerParameterIuiv, fn); 8927 } 8928 8929 typedef void (GLAPIENTRYP _glptr_GetSamplerParameterfv)(GLuint, GLenum, GLfloat *); 8930 #define CALL_GetSamplerParameterfv(disp, parameters) \ 8931 (* GET_GetSamplerParameterfv(disp)) parameters 8932 static inline _glptr_GetSamplerParameterfv GET_GetSamplerParameterfv(struct _glapi_table *disp) { 8933 return (_glptr_GetSamplerParameterfv) (GET_by_offset(disp, _gloffset_GetSamplerParameterfv)); 8934 } 8935 8936 static inline void SET_GetSamplerParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) { 8937 SET_by_offset(disp, _gloffset_GetSamplerParameterfv, fn); 8938 } 8939 8940 typedef void (GLAPIENTRYP _glptr_GetSamplerParameteriv)(GLuint, GLenum, GLint *); 8941 #define CALL_GetSamplerParameteriv(disp, parameters) \ 8942 (* GET_GetSamplerParameteriv(disp)) parameters 8943 static inline _glptr_GetSamplerParameteriv GET_GetSamplerParameteriv(struct _glapi_table *disp) { 8944 return (_glptr_GetSamplerParameteriv) (GET_by_offset(disp, _gloffset_GetSamplerParameteriv)); 8945 } 8946 8947 static inline void SET_GetSamplerParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 8948 SET_by_offset(disp, _gloffset_GetSamplerParameteriv, fn); 8949 } 8950 8951 typedef GLboolean (GLAPIENTRYP _glptr_IsSampler)(GLuint); 8952 #define CALL_IsSampler(disp, parameters) \ 8953 (* GET_IsSampler(disp)) parameters 8954 static inline _glptr_IsSampler GET_IsSampler(struct _glapi_table *disp) { 8955 return (_glptr_IsSampler) (GET_by_offset(disp, _gloffset_IsSampler)); 8956 } 8957 8958 static inline void SET_IsSampler(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 8959 SET_by_offset(disp, _gloffset_IsSampler, fn); 8960 } 8961 8962 typedef void (GLAPIENTRYP _glptr_SamplerParameterIiv)(GLuint, GLenum, const GLint *); 8963 #define CALL_SamplerParameterIiv(disp, parameters) \ 8964 (* GET_SamplerParameterIiv(disp)) parameters 8965 static inline _glptr_SamplerParameterIiv GET_SamplerParameterIiv(struct _glapi_table *disp) { 8966 return (_glptr_SamplerParameterIiv) (GET_by_offset(disp, _gloffset_SamplerParameterIiv)); 8967 } 8968 8969 static inline void SET_SamplerParameterIiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) { 8970 SET_by_offset(disp, _gloffset_SamplerParameterIiv, fn); 8971 } 8972 8973 typedef void (GLAPIENTRYP _glptr_SamplerParameterIuiv)(GLuint, GLenum, const GLuint *); 8974 #define CALL_SamplerParameterIuiv(disp, parameters) \ 8975 (* GET_SamplerParameterIuiv(disp)) parameters 8976 static inline _glptr_SamplerParameterIuiv GET_SamplerParameterIuiv(struct _glapi_table *disp) { 8977 return (_glptr_SamplerParameterIuiv) (GET_by_offset(disp, _gloffset_SamplerParameterIuiv)); 8978 } 8979 8980 static inline void SET_SamplerParameterIuiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLuint *)) { 8981 SET_by_offset(disp, _gloffset_SamplerParameterIuiv, fn); 8982 } 8983 8984 typedef void (GLAPIENTRYP _glptr_SamplerParameterf)(GLuint, GLenum, GLfloat); 8985 #define CALL_SamplerParameterf(disp, parameters) \ 8986 (* GET_SamplerParameterf(disp)) parameters 8987 static inline _glptr_SamplerParameterf GET_SamplerParameterf(struct _glapi_table *disp) { 8988 return (_glptr_SamplerParameterf) (GET_by_offset(disp, _gloffset_SamplerParameterf)); 8989 } 8990 8991 static inline void SET_SamplerParameterf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat)) { 8992 SET_by_offset(disp, _gloffset_SamplerParameterf, fn); 8993 } 8994 8995 typedef void (GLAPIENTRYP _glptr_SamplerParameterfv)(GLuint, GLenum, const GLfloat *); 8996 #define CALL_SamplerParameterfv(disp, parameters) \ 8997 (* GET_SamplerParameterfv(disp)) parameters 8998 static inline _glptr_SamplerParameterfv GET_SamplerParameterfv(struct _glapi_table *disp) { 8999 return (_glptr_SamplerParameterfv) (GET_by_offset(disp, _gloffset_SamplerParameterfv)); 9000 } 9001 9002 static inline void SET_SamplerParameterfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLfloat *)) { 9003 SET_by_offset(disp, _gloffset_SamplerParameterfv, fn); 9004 } 9005 9006 typedef void (GLAPIENTRYP _glptr_SamplerParameteri)(GLuint, GLenum, GLint); 9007 #define CALL_SamplerParameteri(disp, parameters) \ 9008 (* GET_SamplerParameteri(disp)) parameters 9009 static inline _glptr_SamplerParameteri GET_SamplerParameteri(struct _glapi_table *disp) { 9010 return (_glptr_SamplerParameteri) (GET_by_offset(disp, _gloffset_SamplerParameteri)); 9011 } 9012 9013 static inline void SET_SamplerParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) { 9014 SET_by_offset(disp, _gloffset_SamplerParameteri, fn); 9015 } 9016 9017 typedef void (GLAPIENTRYP _glptr_SamplerParameteriv)(GLuint, GLenum, const GLint *); 9018 #define CALL_SamplerParameteriv(disp, parameters) \ 9019 (* GET_SamplerParameteriv(disp)) parameters 9020 static inline _glptr_SamplerParameteriv GET_SamplerParameteriv(struct _glapi_table *disp) { 9021 return (_glptr_SamplerParameteriv) (GET_by_offset(disp, _gloffset_SamplerParameteriv)); 9022 } 9023 9024 static inline void SET_SamplerParameteriv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLint *)) { 9025 SET_by_offset(disp, _gloffset_SamplerParameteriv, fn); 9026 } 9027 9028 typedef void (GLAPIENTRYP _glptr_QueryCounter)(GLuint, GLenum); 9029 #define CALL_QueryCounter(disp, parameters) \ 9030 (* GET_QueryCounter(disp)) parameters 9031 static inline _glptr_QueryCounter GET_QueryCounter(struct _glapi_table *disp) { 9032 return (_glptr_QueryCounter) (GET_by_offset(disp, _gloffset_QueryCounter)); 9033 } 9034 9035 static inline void SET_QueryCounter(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) { 9036 SET_by_offset(disp, _gloffset_QueryCounter, fn); 9037 } 9038 9039 typedef void (GLAPIENTRYP _glptr_ColorP3ui)(GLenum, GLuint); 9040 #define CALL_ColorP3ui(disp, parameters) \ 9041 (* GET_ColorP3ui(disp)) parameters 9042 static inline _glptr_ColorP3ui GET_ColorP3ui(struct _glapi_table *disp) { 9043 return (_glptr_ColorP3ui) (GET_by_offset(disp, _gloffset_ColorP3ui)); 9044 } 9045 9046 static inline void SET_ColorP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9047 SET_by_offset(disp, _gloffset_ColorP3ui, fn); 9048 } 9049 9050 typedef void (GLAPIENTRYP _glptr_ColorP3uiv)(GLenum, const GLuint *); 9051 #define CALL_ColorP3uiv(disp, parameters) \ 9052 (* GET_ColorP3uiv(disp)) parameters 9053 static inline _glptr_ColorP3uiv GET_ColorP3uiv(struct _glapi_table *disp) { 9054 return (_glptr_ColorP3uiv) (GET_by_offset(disp, _gloffset_ColorP3uiv)); 9055 } 9056 9057 static inline void SET_ColorP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9058 SET_by_offset(disp, _gloffset_ColorP3uiv, fn); 9059 } 9060 9061 typedef void (GLAPIENTRYP _glptr_ColorP4ui)(GLenum, GLuint); 9062 #define CALL_ColorP4ui(disp, parameters) \ 9063 (* GET_ColorP4ui(disp)) parameters 9064 static inline _glptr_ColorP4ui GET_ColorP4ui(struct _glapi_table *disp) { 9065 return (_glptr_ColorP4ui) (GET_by_offset(disp, _gloffset_ColorP4ui)); 9066 } 9067 9068 static inline void SET_ColorP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9069 SET_by_offset(disp, _gloffset_ColorP4ui, fn); 9070 } 9071 9072 typedef void (GLAPIENTRYP _glptr_ColorP4uiv)(GLenum, const GLuint *); 9073 #define CALL_ColorP4uiv(disp, parameters) \ 9074 (* GET_ColorP4uiv(disp)) parameters 9075 static inline _glptr_ColorP4uiv GET_ColorP4uiv(struct _glapi_table *disp) { 9076 return (_glptr_ColorP4uiv) (GET_by_offset(disp, _gloffset_ColorP4uiv)); 9077 } 9078 9079 static inline void SET_ColorP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9080 SET_by_offset(disp, _gloffset_ColorP4uiv, fn); 9081 } 9082 9083 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP1ui)(GLenum, GLenum, GLuint); 9084 #define CALL_MultiTexCoordP1ui(disp, parameters) \ 9085 (* GET_MultiTexCoordP1ui(disp)) parameters 9086 static inline _glptr_MultiTexCoordP1ui GET_MultiTexCoordP1ui(struct _glapi_table *disp) { 9087 return (_glptr_MultiTexCoordP1ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP1ui)); 9088 } 9089 9090 static inline void SET_MultiTexCoordP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) { 9091 SET_by_offset(disp, _gloffset_MultiTexCoordP1ui, fn); 9092 } 9093 9094 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP1uiv)(GLenum, GLenum, const GLuint *); 9095 #define CALL_MultiTexCoordP1uiv(disp, parameters) \ 9096 (* GET_MultiTexCoordP1uiv(disp)) parameters 9097 static inline _glptr_MultiTexCoordP1uiv GET_MultiTexCoordP1uiv(struct _glapi_table *disp) { 9098 return (_glptr_MultiTexCoordP1uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP1uiv)); 9099 } 9100 9101 static inline void SET_MultiTexCoordP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) { 9102 SET_by_offset(disp, _gloffset_MultiTexCoordP1uiv, fn); 9103 } 9104 9105 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP2ui)(GLenum, GLenum, GLuint); 9106 #define CALL_MultiTexCoordP2ui(disp, parameters) \ 9107 (* GET_MultiTexCoordP2ui(disp)) parameters 9108 static inline _glptr_MultiTexCoordP2ui GET_MultiTexCoordP2ui(struct _glapi_table *disp) { 9109 return (_glptr_MultiTexCoordP2ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP2ui)); 9110 } 9111 9112 static inline void SET_MultiTexCoordP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) { 9113 SET_by_offset(disp, _gloffset_MultiTexCoordP2ui, fn); 9114 } 9115 9116 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP2uiv)(GLenum, GLenum, const GLuint *); 9117 #define CALL_MultiTexCoordP2uiv(disp, parameters) \ 9118 (* GET_MultiTexCoordP2uiv(disp)) parameters 9119 static inline _glptr_MultiTexCoordP2uiv GET_MultiTexCoordP2uiv(struct _glapi_table *disp) { 9120 return (_glptr_MultiTexCoordP2uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP2uiv)); 9121 } 9122 9123 static inline void SET_MultiTexCoordP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) { 9124 SET_by_offset(disp, _gloffset_MultiTexCoordP2uiv, fn); 9125 } 9126 9127 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP3ui)(GLenum, GLenum, GLuint); 9128 #define CALL_MultiTexCoordP3ui(disp, parameters) \ 9129 (* GET_MultiTexCoordP3ui(disp)) parameters 9130 static inline _glptr_MultiTexCoordP3ui GET_MultiTexCoordP3ui(struct _glapi_table *disp) { 9131 return (_glptr_MultiTexCoordP3ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP3ui)); 9132 } 9133 9134 static inline void SET_MultiTexCoordP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) { 9135 SET_by_offset(disp, _gloffset_MultiTexCoordP3ui, fn); 9136 } 9137 9138 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP3uiv)(GLenum, GLenum, const GLuint *); 9139 #define CALL_MultiTexCoordP3uiv(disp, parameters) \ 9140 (* GET_MultiTexCoordP3uiv(disp)) parameters 9141 static inline _glptr_MultiTexCoordP3uiv GET_MultiTexCoordP3uiv(struct _glapi_table *disp) { 9142 return (_glptr_MultiTexCoordP3uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP3uiv)); 9143 } 9144 9145 static inline void SET_MultiTexCoordP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) { 9146 SET_by_offset(disp, _gloffset_MultiTexCoordP3uiv, fn); 9147 } 9148 9149 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP4ui)(GLenum, GLenum, GLuint); 9150 #define CALL_MultiTexCoordP4ui(disp, parameters) \ 9151 (* GET_MultiTexCoordP4ui(disp)) parameters 9152 static inline _glptr_MultiTexCoordP4ui GET_MultiTexCoordP4ui(struct _glapi_table *disp) { 9153 return (_glptr_MultiTexCoordP4ui) (GET_by_offset(disp, _gloffset_MultiTexCoordP4ui)); 9154 } 9155 9156 static inline void SET_MultiTexCoordP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint)) { 9157 SET_by_offset(disp, _gloffset_MultiTexCoordP4ui, fn); 9158 } 9159 9160 typedef void (GLAPIENTRYP _glptr_MultiTexCoordP4uiv)(GLenum, GLenum, const GLuint *); 9161 #define CALL_MultiTexCoordP4uiv(disp, parameters) \ 9162 (* GET_MultiTexCoordP4uiv(disp)) parameters 9163 static inline _glptr_MultiTexCoordP4uiv GET_MultiTexCoordP4uiv(struct _glapi_table *disp) { 9164 return (_glptr_MultiTexCoordP4uiv) (GET_by_offset(disp, _gloffset_MultiTexCoordP4uiv)); 9165 } 9166 9167 static inline void SET_MultiTexCoordP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) { 9168 SET_by_offset(disp, _gloffset_MultiTexCoordP4uiv, fn); 9169 } 9170 9171 typedef void (GLAPIENTRYP _glptr_NormalP3ui)(GLenum, GLuint); 9172 #define CALL_NormalP3ui(disp, parameters) \ 9173 (* GET_NormalP3ui(disp)) parameters 9174 static inline _glptr_NormalP3ui GET_NormalP3ui(struct _glapi_table *disp) { 9175 return (_glptr_NormalP3ui) (GET_by_offset(disp, _gloffset_NormalP3ui)); 9176 } 9177 9178 static inline void SET_NormalP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9179 SET_by_offset(disp, _gloffset_NormalP3ui, fn); 9180 } 9181 9182 typedef void (GLAPIENTRYP _glptr_NormalP3uiv)(GLenum, const GLuint *); 9183 #define CALL_NormalP3uiv(disp, parameters) \ 9184 (* GET_NormalP3uiv(disp)) parameters 9185 static inline _glptr_NormalP3uiv GET_NormalP3uiv(struct _glapi_table *disp) { 9186 return (_glptr_NormalP3uiv) (GET_by_offset(disp, _gloffset_NormalP3uiv)); 9187 } 9188 9189 static inline void SET_NormalP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9190 SET_by_offset(disp, _gloffset_NormalP3uiv, fn); 9191 } 9192 9193 typedef void (GLAPIENTRYP _glptr_SecondaryColorP3ui)(GLenum, GLuint); 9194 #define CALL_SecondaryColorP3ui(disp, parameters) \ 9195 (* GET_SecondaryColorP3ui(disp)) parameters 9196 static inline _glptr_SecondaryColorP3ui GET_SecondaryColorP3ui(struct _glapi_table *disp) { 9197 return (_glptr_SecondaryColorP3ui) (GET_by_offset(disp, _gloffset_SecondaryColorP3ui)); 9198 } 9199 9200 static inline void SET_SecondaryColorP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9201 SET_by_offset(disp, _gloffset_SecondaryColorP3ui, fn); 9202 } 9203 9204 typedef void (GLAPIENTRYP _glptr_SecondaryColorP3uiv)(GLenum, const GLuint *); 9205 #define CALL_SecondaryColorP3uiv(disp, parameters) \ 9206 (* GET_SecondaryColorP3uiv(disp)) parameters 9207 static inline _glptr_SecondaryColorP3uiv GET_SecondaryColorP3uiv(struct _glapi_table *disp) { 9208 return (_glptr_SecondaryColorP3uiv) (GET_by_offset(disp, _gloffset_SecondaryColorP3uiv)); 9209 } 9210 9211 static inline void SET_SecondaryColorP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9212 SET_by_offset(disp, _gloffset_SecondaryColorP3uiv, fn); 9213 } 9214 9215 typedef void (GLAPIENTRYP _glptr_TexCoordP1ui)(GLenum, GLuint); 9216 #define CALL_TexCoordP1ui(disp, parameters) \ 9217 (* GET_TexCoordP1ui(disp)) parameters 9218 static inline _glptr_TexCoordP1ui GET_TexCoordP1ui(struct _glapi_table *disp) { 9219 return (_glptr_TexCoordP1ui) (GET_by_offset(disp, _gloffset_TexCoordP1ui)); 9220 } 9221 9222 static inline void SET_TexCoordP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9223 SET_by_offset(disp, _gloffset_TexCoordP1ui, fn); 9224 } 9225 9226 typedef void (GLAPIENTRYP _glptr_TexCoordP1uiv)(GLenum, const GLuint *); 9227 #define CALL_TexCoordP1uiv(disp, parameters) \ 9228 (* GET_TexCoordP1uiv(disp)) parameters 9229 static inline _glptr_TexCoordP1uiv GET_TexCoordP1uiv(struct _glapi_table *disp) { 9230 return (_glptr_TexCoordP1uiv) (GET_by_offset(disp, _gloffset_TexCoordP1uiv)); 9231 } 9232 9233 static inline void SET_TexCoordP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9234 SET_by_offset(disp, _gloffset_TexCoordP1uiv, fn); 9235 } 9236 9237 typedef void (GLAPIENTRYP _glptr_TexCoordP2ui)(GLenum, GLuint); 9238 #define CALL_TexCoordP2ui(disp, parameters) \ 9239 (* GET_TexCoordP2ui(disp)) parameters 9240 static inline _glptr_TexCoordP2ui GET_TexCoordP2ui(struct _glapi_table *disp) { 9241 return (_glptr_TexCoordP2ui) (GET_by_offset(disp, _gloffset_TexCoordP2ui)); 9242 } 9243 9244 static inline void SET_TexCoordP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9245 SET_by_offset(disp, _gloffset_TexCoordP2ui, fn); 9246 } 9247 9248 typedef void (GLAPIENTRYP _glptr_TexCoordP2uiv)(GLenum, const GLuint *); 9249 #define CALL_TexCoordP2uiv(disp, parameters) \ 9250 (* GET_TexCoordP2uiv(disp)) parameters 9251 static inline _glptr_TexCoordP2uiv GET_TexCoordP2uiv(struct _glapi_table *disp) { 9252 return (_glptr_TexCoordP2uiv) (GET_by_offset(disp, _gloffset_TexCoordP2uiv)); 9253 } 9254 9255 static inline void SET_TexCoordP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9256 SET_by_offset(disp, _gloffset_TexCoordP2uiv, fn); 9257 } 9258 9259 typedef void (GLAPIENTRYP _glptr_TexCoordP3ui)(GLenum, GLuint); 9260 #define CALL_TexCoordP3ui(disp, parameters) \ 9261 (* GET_TexCoordP3ui(disp)) parameters 9262 static inline _glptr_TexCoordP3ui GET_TexCoordP3ui(struct _glapi_table *disp) { 9263 return (_glptr_TexCoordP3ui) (GET_by_offset(disp, _gloffset_TexCoordP3ui)); 9264 } 9265 9266 static inline void SET_TexCoordP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9267 SET_by_offset(disp, _gloffset_TexCoordP3ui, fn); 9268 } 9269 9270 typedef void (GLAPIENTRYP _glptr_TexCoordP3uiv)(GLenum, const GLuint *); 9271 #define CALL_TexCoordP3uiv(disp, parameters) \ 9272 (* GET_TexCoordP3uiv(disp)) parameters 9273 static inline _glptr_TexCoordP3uiv GET_TexCoordP3uiv(struct _glapi_table *disp) { 9274 return (_glptr_TexCoordP3uiv) (GET_by_offset(disp, _gloffset_TexCoordP3uiv)); 9275 } 9276 9277 static inline void SET_TexCoordP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9278 SET_by_offset(disp, _gloffset_TexCoordP3uiv, fn); 9279 } 9280 9281 typedef void (GLAPIENTRYP _glptr_TexCoordP4ui)(GLenum, GLuint); 9282 #define CALL_TexCoordP4ui(disp, parameters) \ 9283 (* GET_TexCoordP4ui(disp)) parameters 9284 static inline _glptr_TexCoordP4ui GET_TexCoordP4ui(struct _glapi_table *disp) { 9285 return (_glptr_TexCoordP4ui) (GET_by_offset(disp, _gloffset_TexCoordP4ui)); 9286 } 9287 9288 static inline void SET_TexCoordP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9289 SET_by_offset(disp, _gloffset_TexCoordP4ui, fn); 9290 } 9291 9292 typedef void (GLAPIENTRYP _glptr_TexCoordP4uiv)(GLenum, const GLuint *); 9293 #define CALL_TexCoordP4uiv(disp, parameters) \ 9294 (* GET_TexCoordP4uiv(disp)) parameters 9295 static inline _glptr_TexCoordP4uiv GET_TexCoordP4uiv(struct _glapi_table *disp) { 9296 return (_glptr_TexCoordP4uiv) (GET_by_offset(disp, _gloffset_TexCoordP4uiv)); 9297 } 9298 9299 static inline void SET_TexCoordP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9300 SET_by_offset(disp, _gloffset_TexCoordP4uiv, fn); 9301 } 9302 9303 typedef void (GLAPIENTRYP _glptr_VertexAttribP1ui)(GLuint, GLenum, GLboolean, GLuint); 9304 #define CALL_VertexAttribP1ui(disp, parameters) \ 9305 (* GET_VertexAttribP1ui(disp)) parameters 9306 static inline _glptr_VertexAttribP1ui GET_VertexAttribP1ui(struct _glapi_table *disp) { 9307 return (_glptr_VertexAttribP1ui) (GET_by_offset(disp, _gloffset_VertexAttribP1ui)); 9308 } 9309 9310 static inline void SET_VertexAttribP1ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) { 9311 SET_by_offset(disp, _gloffset_VertexAttribP1ui, fn); 9312 } 9313 9314 typedef void (GLAPIENTRYP _glptr_VertexAttribP1uiv)(GLuint, GLenum, GLboolean, const GLuint *); 9315 #define CALL_VertexAttribP1uiv(disp, parameters) \ 9316 (* GET_VertexAttribP1uiv(disp)) parameters 9317 static inline _glptr_VertexAttribP1uiv GET_VertexAttribP1uiv(struct _glapi_table *disp) { 9318 return (_glptr_VertexAttribP1uiv) (GET_by_offset(disp, _gloffset_VertexAttribP1uiv)); 9319 } 9320 9321 static inline void SET_VertexAttribP1uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) { 9322 SET_by_offset(disp, _gloffset_VertexAttribP1uiv, fn); 9323 } 9324 9325 typedef void (GLAPIENTRYP _glptr_VertexAttribP2ui)(GLuint, GLenum, GLboolean, GLuint); 9326 #define CALL_VertexAttribP2ui(disp, parameters) \ 9327 (* GET_VertexAttribP2ui(disp)) parameters 9328 static inline _glptr_VertexAttribP2ui GET_VertexAttribP2ui(struct _glapi_table *disp) { 9329 return (_glptr_VertexAttribP2ui) (GET_by_offset(disp, _gloffset_VertexAttribP2ui)); 9330 } 9331 9332 static inline void SET_VertexAttribP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) { 9333 SET_by_offset(disp, _gloffset_VertexAttribP2ui, fn); 9334 } 9335 9336 typedef void (GLAPIENTRYP _glptr_VertexAttribP2uiv)(GLuint, GLenum, GLboolean, const GLuint *); 9337 #define CALL_VertexAttribP2uiv(disp, parameters) \ 9338 (* GET_VertexAttribP2uiv(disp)) parameters 9339 static inline _glptr_VertexAttribP2uiv GET_VertexAttribP2uiv(struct _glapi_table *disp) { 9340 return (_glptr_VertexAttribP2uiv) (GET_by_offset(disp, _gloffset_VertexAttribP2uiv)); 9341 } 9342 9343 static inline void SET_VertexAttribP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) { 9344 SET_by_offset(disp, _gloffset_VertexAttribP2uiv, fn); 9345 } 9346 9347 typedef void (GLAPIENTRYP _glptr_VertexAttribP3ui)(GLuint, GLenum, GLboolean, GLuint); 9348 #define CALL_VertexAttribP3ui(disp, parameters) \ 9349 (* GET_VertexAttribP3ui(disp)) parameters 9350 static inline _glptr_VertexAttribP3ui GET_VertexAttribP3ui(struct _glapi_table *disp) { 9351 return (_glptr_VertexAttribP3ui) (GET_by_offset(disp, _gloffset_VertexAttribP3ui)); 9352 } 9353 9354 static inline void SET_VertexAttribP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) { 9355 SET_by_offset(disp, _gloffset_VertexAttribP3ui, fn); 9356 } 9357 9358 typedef void (GLAPIENTRYP _glptr_VertexAttribP3uiv)(GLuint, GLenum, GLboolean, const GLuint *); 9359 #define CALL_VertexAttribP3uiv(disp, parameters) \ 9360 (* GET_VertexAttribP3uiv(disp)) parameters 9361 static inline _glptr_VertexAttribP3uiv GET_VertexAttribP3uiv(struct _glapi_table *disp) { 9362 return (_glptr_VertexAttribP3uiv) (GET_by_offset(disp, _gloffset_VertexAttribP3uiv)); 9363 } 9364 9365 static inline void SET_VertexAttribP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) { 9366 SET_by_offset(disp, _gloffset_VertexAttribP3uiv, fn); 9367 } 9368 9369 typedef void (GLAPIENTRYP _glptr_VertexAttribP4ui)(GLuint, GLenum, GLboolean, GLuint); 9370 #define CALL_VertexAttribP4ui(disp, parameters) \ 9371 (* GET_VertexAttribP4ui(disp)) parameters 9372 static inline _glptr_VertexAttribP4ui GET_VertexAttribP4ui(struct _glapi_table *disp) { 9373 return (_glptr_VertexAttribP4ui) (GET_by_offset(disp, _gloffset_VertexAttribP4ui)); 9374 } 9375 9376 static inline void SET_VertexAttribP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, GLuint)) { 9377 SET_by_offset(disp, _gloffset_VertexAttribP4ui, fn); 9378 } 9379 9380 typedef void (GLAPIENTRYP _glptr_VertexAttribP4uiv)(GLuint, GLenum, GLboolean, const GLuint *); 9381 #define CALL_VertexAttribP4uiv(disp, parameters) \ 9382 (* GET_VertexAttribP4uiv(disp)) parameters 9383 static inline _glptr_VertexAttribP4uiv GET_VertexAttribP4uiv(struct _glapi_table *disp) { 9384 return (_glptr_VertexAttribP4uiv) (GET_by_offset(disp, _gloffset_VertexAttribP4uiv)); 9385 } 9386 9387 static inline void SET_VertexAttribP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLboolean, const GLuint *)) { 9388 SET_by_offset(disp, _gloffset_VertexAttribP4uiv, fn); 9389 } 9390 9391 typedef void (GLAPIENTRYP _glptr_VertexP2ui)(GLenum, GLuint); 9392 #define CALL_VertexP2ui(disp, parameters) \ 9393 (* GET_VertexP2ui(disp)) parameters 9394 static inline _glptr_VertexP2ui GET_VertexP2ui(struct _glapi_table *disp) { 9395 return (_glptr_VertexP2ui) (GET_by_offset(disp, _gloffset_VertexP2ui)); 9396 } 9397 9398 static inline void SET_VertexP2ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9399 SET_by_offset(disp, _gloffset_VertexP2ui, fn); 9400 } 9401 9402 typedef void (GLAPIENTRYP _glptr_VertexP2uiv)(GLenum, const GLuint *); 9403 #define CALL_VertexP2uiv(disp, parameters) \ 9404 (* GET_VertexP2uiv(disp)) parameters 9405 static inline _glptr_VertexP2uiv GET_VertexP2uiv(struct _glapi_table *disp) { 9406 return (_glptr_VertexP2uiv) (GET_by_offset(disp, _gloffset_VertexP2uiv)); 9407 } 9408 9409 static inline void SET_VertexP2uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9410 SET_by_offset(disp, _gloffset_VertexP2uiv, fn); 9411 } 9412 9413 typedef void (GLAPIENTRYP _glptr_VertexP3ui)(GLenum, GLuint); 9414 #define CALL_VertexP3ui(disp, parameters) \ 9415 (* GET_VertexP3ui(disp)) parameters 9416 static inline _glptr_VertexP3ui GET_VertexP3ui(struct _glapi_table *disp) { 9417 return (_glptr_VertexP3ui) (GET_by_offset(disp, _gloffset_VertexP3ui)); 9418 } 9419 9420 static inline void SET_VertexP3ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9421 SET_by_offset(disp, _gloffset_VertexP3ui, fn); 9422 } 9423 9424 typedef void (GLAPIENTRYP _glptr_VertexP3uiv)(GLenum, const GLuint *); 9425 #define CALL_VertexP3uiv(disp, parameters) \ 9426 (* GET_VertexP3uiv(disp)) parameters 9427 static inline _glptr_VertexP3uiv GET_VertexP3uiv(struct _glapi_table *disp) { 9428 return (_glptr_VertexP3uiv) (GET_by_offset(disp, _gloffset_VertexP3uiv)); 9429 } 9430 9431 static inline void SET_VertexP3uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9432 SET_by_offset(disp, _gloffset_VertexP3uiv, fn); 9433 } 9434 9435 typedef void (GLAPIENTRYP _glptr_VertexP4ui)(GLenum, GLuint); 9436 #define CALL_VertexP4ui(disp, parameters) \ 9437 (* GET_VertexP4ui(disp)) parameters 9438 static inline _glptr_VertexP4ui GET_VertexP4ui(struct _glapi_table *disp) { 9439 return (_glptr_VertexP4ui) (GET_by_offset(disp, _gloffset_VertexP4ui)); 9440 } 9441 9442 static inline void SET_VertexP4ui(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9443 SET_by_offset(disp, _gloffset_VertexP4ui, fn); 9444 } 9445 9446 typedef void (GLAPIENTRYP _glptr_VertexP4uiv)(GLenum, const GLuint *); 9447 #define CALL_VertexP4uiv(disp, parameters) \ 9448 (* GET_VertexP4uiv(disp)) parameters 9449 static inline _glptr_VertexP4uiv GET_VertexP4uiv(struct _glapi_table *disp) { 9450 return (_glptr_VertexP4uiv) (GET_by_offset(disp, _gloffset_VertexP4uiv)); 9451 } 9452 9453 static inline void SET_VertexP4uiv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLuint *)) { 9454 SET_by_offset(disp, _gloffset_VertexP4uiv, fn); 9455 } 9456 9457 typedef void (GLAPIENTRYP _glptr_BindTransformFeedback)(GLenum, GLuint); 9458 #define CALL_BindTransformFeedback(disp, parameters) \ 9459 (* GET_BindTransformFeedback(disp)) parameters 9460 static inline _glptr_BindTransformFeedback GET_BindTransformFeedback(struct _glapi_table *disp) { 9461 return (_glptr_BindTransformFeedback) (GET_by_offset(disp, _gloffset_BindTransformFeedback)); 9462 } 9463 9464 static inline void SET_BindTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9465 SET_by_offset(disp, _gloffset_BindTransformFeedback, fn); 9466 } 9467 9468 typedef void (GLAPIENTRYP _glptr_DeleteTransformFeedbacks)(GLsizei, const GLuint *); 9469 #define CALL_DeleteTransformFeedbacks(disp, parameters) \ 9470 (* GET_DeleteTransformFeedbacks(disp)) parameters 9471 static inline _glptr_DeleteTransformFeedbacks GET_DeleteTransformFeedbacks(struct _glapi_table *disp) { 9472 return (_glptr_DeleteTransformFeedbacks) (GET_by_offset(disp, _gloffset_DeleteTransformFeedbacks)); 9473 } 9474 9475 static inline void SET_DeleteTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 9476 SET_by_offset(disp, _gloffset_DeleteTransformFeedbacks, fn); 9477 } 9478 9479 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedback)(GLenum, GLuint); 9480 #define CALL_DrawTransformFeedback(disp, parameters) \ 9481 (* GET_DrawTransformFeedback(disp)) parameters 9482 static inline _glptr_DrawTransformFeedback GET_DrawTransformFeedback(struct _glapi_table *disp) { 9483 return (_glptr_DrawTransformFeedback) (GET_by_offset(disp, _gloffset_DrawTransformFeedback)); 9484 } 9485 9486 static inline void SET_DrawTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9487 SET_by_offset(disp, _gloffset_DrawTransformFeedback, fn); 9488 } 9489 9490 typedef void (GLAPIENTRYP _glptr_GenTransformFeedbacks)(GLsizei, GLuint *); 9491 #define CALL_GenTransformFeedbacks(disp, parameters) \ 9492 (* GET_GenTransformFeedbacks(disp)) parameters 9493 static inline _glptr_GenTransformFeedbacks GET_GenTransformFeedbacks(struct _glapi_table *disp) { 9494 return (_glptr_GenTransformFeedbacks) (GET_by_offset(disp, _gloffset_GenTransformFeedbacks)); 9495 } 9496 9497 static inline void SET_GenTransformFeedbacks(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 9498 SET_by_offset(disp, _gloffset_GenTransformFeedbacks, fn); 9499 } 9500 9501 typedef GLboolean (GLAPIENTRYP _glptr_IsTransformFeedback)(GLuint); 9502 #define CALL_IsTransformFeedback(disp, parameters) \ 9503 (* GET_IsTransformFeedback(disp)) parameters 9504 static inline _glptr_IsTransformFeedback GET_IsTransformFeedback(struct _glapi_table *disp) { 9505 return (_glptr_IsTransformFeedback) (GET_by_offset(disp, _gloffset_IsTransformFeedback)); 9506 } 9507 9508 static inline void SET_IsTransformFeedback(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 9509 SET_by_offset(disp, _gloffset_IsTransformFeedback, fn); 9510 } 9511 9512 typedef void (GLAPIENTRYP _glptr_PauseTransformFeedback)(void); 9513 #define CALL_PauseTransformFeedback(disp, parameters) \ 9514 (* GET_PauseTransformFeedback(disp)) parameters 9515 static inline _glptr_PauseTransformFeedback GET_PauseTransformFeedback(struct _glapi_table *disp) { 9516 return (_glptr_PauseTransformFeedback) (GET_by_offset(disp, _gloffset_PauseTransformFeedback)); 9517 } 9518 9519 static inline void SET_PauseTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 9520 SET_by_offset(disp, _gloffset_PauseTransformFeedback, fn); 9521 } 9522 9523 typedef void (GLAPIENTRYP _glptr_ResumeTransformFeedback)(void); 9524 #define CALL_ResumeTransformFeedback(disp, parameters) \ 9525 (* GET_ResumeTransformFeedback(disp)) parameters 9526 static inline _glptr_ResumeTransformFeedback GET_ResumeTransformFeedback(struct _glapi_table *disp) { 9527 return (_glptr_ResumeTransformFeedback) (GET_by_offset(disp, _gloffset_ResumeTransformFeedback)); 9528 } 9529 9530 static inline void SET_ResumeTransformFeedback(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 9531 SET_by_offset(disp, _gloffset_ResumeTransformFeedback, fn); 9532 } 9533 9534 typedef void (GLAPIENTRYP _glptr_BeginQueryIndexed)(GLenum, GLuint, GLuint); 9535 #define CALL_BeginQueryIndexed(disp, parameters) \ 9536 (* GET_BeginQueryIndexed(disp)) parameters 9537 static inline _glptr_BeginQueryIndexed GET_BeginQueryIndexed(struct _glapi_table *disp) { 9538 return (_glptr_BeginQueryIndexed) (GET_by_offset(disp, _gloffset_BeginQueryIndexed)); 9539 } 9540 9541 static inline void SET_BeginQueryIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) { 9542 SET_by_offset(disp, _gloffset_BeginQueryIndexed, fn); 9543 } 9544 9545 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedbackStream)(GLenum, GLuint, GLuint); 9546 #define CALL_DrawTransformFeedbackStream(disp, parameters) \ 9547 (* GET_DrawTransformFeedbackStream(disp)) parameters 9548 static inline _glptr_DrawTransformFeedbackStream GET_DrawTransformFeedbackStream(struct _glapi_table *disp) { 9549 return (_glptr_DrawTransformFeedbackStream) (GET_by_offset(disp, _gloffset_DrawTransformFeedbackStream)); 9550 } 9551 9552 static inline void SET_DrawTransformFeedbackStream(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) { 9553 SET_by_offset(disp, _gloffset_DrawTransformFeedbackStream, fn); 9554 } 9555 9556 typedef void (GLAPIENTRYP _glptr_EndQueryIndexed)(GLenum, GLuint); 9557 #define CALL_EndQueryIndexed(disp, parameters) \ 9558 (* GET_EndQueryIndexed(disp)) parameters 9559 static inline _glptr_EndQueryIndexed GET_EndQueryIndexed(struct _glapi_table *disp) { 9560 return (_glptr_EndQueryIndexed) (GET_by_offset(disp, _gloffset_EndQueryIndexed)); 9561 } 9562 9563 static inline void SET_EndQueryIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 9564 SET_by_offset(disp, _gloffset_EndQueryIndexed, fn); 9565 } 9566 9567 typedef void (GLAPIENTRYP _glptr_GetQueryIndexediv)(GLenum, GLuint, GLenum, GLint *); 9568 #define CALL_GetQueryIndexediv(disp, parameters) \ 9569 (* GET_GetQueryIndexediv(disp)) parameters 9570 static inline _glptr_GetQueryIndexediv GET_GetQueryIndexediv(struct _glapi_table *disp) { 9571 return (_glptr_GetQueryIndexediv) (GET_by_offset(disp, _gloffset_GetQueryIndexediv)); 9572 } 9573 9574 static inline void SET_GetQueryIndexediv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) { 9575 SET_by_offset(disp, _gloffset_GetQueryIndexediv, fn); 9576 } 9577 9578 typedef void (GLAPIENTRYP _glptr_ClearDepthf)(GLclampf); 9579 #define CALL_ClearDepthf(disp, parameters) \ 9580 (* GET_ClearDepthf(disp)) parameters 9581 static inline _glptr_ClearDepthf GET_ClearDepthf(struct _glapi_table *disp) { 9582 return (_glptr_ClearDepthf) (GET_by_offset(disp, _gloffset_ClearDepthf)); 9583 } 9584 9585 static inline void SET_ClearDepthf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf)) { 9586 SET_by_offset(disp, _gloffset_ClearDepthf, fn); 9587 } 9588 9589 typedef void (GLAPIENTRYP _glptr_DepthRangef)(GLclampf, GLclampf); 9590 #define CALL_DepthRangef(disp, parameters) \ 9591 (* GET_DepthRangef(disp)) parameters 9592 static inline _glptr_DepthRangef GET_DepthRangef(struct _glapi_table *disp) { 9593 return (_glptr_DepthRangef) (GET_by_offset(disp, _gloffset_DepthRangef)); 9594 } 9595 9596 static inline void SET_DepthRangef(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLclampf)) { 9597 SET_by_offset(disp, _gloffset_DepthRangef, fn); 9598 } 9599 9600 typedef void (GLAPIENTRYP _glptr_GetShaderPrecisionFormat)(GLenum, GLenum, GLint *, GLint *); 9601 #define CALL_GetShaderPrecisionFormat(disp, parameters) \ 9602 (* GET_GetShaderPrecisionFormat(disp)) parameters 9603 static inline _glptr_GetShaderPrecisionFormat GET_GetShaderPrecisionFormat(struct _glapi_table *disp) { 9604 return (_glptr_GetShaderPrecisionFormat) (GET_by_offset(disp, _gloffset_GetShaderPrecisionFormat)); 9605 } 9606 9607 static inline void SET_GetShaderPrecisionFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *, GLint *)) { 9608 SET_by_offset(disp, _gloffset_GetShaderPrecisionFormat, fn); 9609 } 9610 9611 typedef void (GLAPIENTRYP _glptr_ReleaseShaderCompiler)(void); 9612 #define CALL_ReleaseShaderCompiler(disp, parameters) \ 9613 (* GET_ReleaseShaderCompiler(disp)) parameters 9614 static inline _glptr_ReleaseShaderCompiler GET_ReleaseShaderCompiler(struct _glapi_table *disp) { 9615 return (_glptr_ReleaseShaderCompiler) (GET_by_offset(disp, _gloffset_ReleaseShaderCompiler)); 9616 } 9617 9618 static inline void SET_ReleaseShaderCompiler(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 9619 SET_by_offset(disp, _gloffset_ReleaseShaderCompiler, fn); 9620 } 9621 9622 typedef void (GLAPIENTRYP _glptr_ShaderBinary)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei); 9623 #define CALL_ShaderBinary(disp, parameters) \ 9624 (* GET_ShaderBinary(disp)) parameters 9625 static inline _glptr_ShaderBinary GET_ShaderBinary(struct _glapi_table *disp) { 9626 return (_glptr_ShaderBinary) (GET_by_offset(disp, _gloffset_ShaderBinary)); 9627 } 9628 9629 static inline void SET_ShaderBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLenum, const GLvoid *, GLsizei)) { 9630 SET_by_offset(disp, _gloffset_ShaderBinary, fn); 9631 } 9632 9633 typedef void (GLAPIENTRYP _glptr_DebugMessageCallbackARB)(GLDEBUGPROCARB, const GLvoid *); 9634 #define CALL_DebugMessageCallbackARB(disp, parameters) \ 9635 (* GET_DebugMessageCallbackARB(disp)) parameters 9636 static inline _glptr_DebugMessageCallbackARB GET_DebugMessageCallbackARB(struct _glapi_table *disp) { 9637 return (_glptr_DebugMessageCallbackARB) (GET_by_offset(disp, _gloffset_DebugMessageCallbackARB)); 9638 } 9639 9640 static inline void SET_DebugMessageCallbackARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLDEBUGPROCARB, const GLvoid *)) { 9641 SET_by_offset(disp, _gloffset_DebugMessageCallbackARB, fn); 9642 } 9643 9644 typedef void (GLAPIENTRYP _glptr_DebugMessageControlARB)(GLenum, GLenum, GLenum, GLsizei, const GLuint *, GLboolean); 9645 #define CALL_DebugMessageControlARB(disp, parameters) \ 9646 (* GET_DebugMessageControlARB(disp)) parameters 9647 static inline _glptr_DebugMessageControlARB GET_DebugMessageControlARB(struct _glapi_table *disp) { 9648 return (_glptr_DebugMessageControlARB) (GET_by_offset(disp, _gloffset_DebugMessageControlARB)); 9649 } 9650 9651 static inline void SET_DebugMessageControlARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, const GLuint *, GLboolean)) { 9652 SET_by_offset(disp, _gloffset_DebugMessageControlARB, fn); 9653 } 9654 9655 typedef void (GLAPIENTRYP _glptr_DebugMessageInsertARB)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLcharARB *); 9656 #define CALL_DebugMessageInsertARB(disp, parameters) \ 9657 (* GET_DebugMessageInsertARB(disp)) parameters 9658 static inline _glptr_DebugMessageInsertARB GET_DebugMessageInsertARB(struct _glapi_table *disp) { 9659 return (_glptr_DebugMessageInsertARB) (GET_by_offset(disp, _gloffset_DebugMessageInsertARB)); 9660 } 9661 9662 static inline void SET_DebugMessageInsertARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLenum, GLsizei, const GLcharARB *)) { 9663 SET_by_offset(disp, _gloffset_DebugMessageInsertARB, fn); 9664 } 9665 9666 typedef GLuint (GLAPIENTRYP _glptr_GetDebugMessageLogARB)(GLuint, GLsizei, GLenum *, GLenum *, GLuint *, GLenum *, GLsizei *, GLcharARB *); 9667 #define CALL_GetDebugMessageLogARB(disp, parameters) \ 9668 (* GET_GetDebugMessageLogARB(disp)) parameters 9669 static inline _glptr_GetDebugMessageLogARB GET_GetDebugMessageLogARB(struct _glapi_table *disp) { 9670 return (_glptr_GetDebugMessageLogARB) (GET_by_offset(disp, _gloffset_GetDebugMessageLogARB)); 9671 } 9672 9673 static inline void SET_GetDebugMessageLogARB(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint, GLsizei, GLenum *, GLenum *, GLuint *, GLenum *, GLsizei *, GLcharARB *)) { 9674 SET_by_offset(disp, _gloffset_GetDebugMessageLogARB, fn); 9675 } 9676 9677 typedef GLenum (GLAPIENTRYP _glptr_GetGraphicsResetStatusARB)(void); 9678 #define CALL_GetGraphicsResetStatusARB(disp, parameters) \ 9679 (* GET_GetGraphicsResetStatusARB(disp)) parameters 9680 static inline _glptr_GetGraphicsResetStatusARB GET_GetGraphicsResetStatusARB(struct _glapi_table *disp) { 9681 return (_glptr_GetGraphicsResetStatusARB) (GET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB)); 9682 } 9683 9684 static inline void SET_GetGraphicsResetStatusARB(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(void)) { 9685 SET_by_offset(disp, _gloffset_GetGraphicsResetStatusARB, fn); 9686 } 9687 9688 typedef void (GLAPIENTRYP _glptr_GetnColorTableARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *); 9689 #define CALL_GetnColorTableARB(disp, parameters) \ 9690 (* GET_GetnColorTableARB(disp)) parameters 9691 static inline _glptr_GetnColorTableARB GET_GetnColorTableARB(struct _glapi_table *disp) { 9692 return (_glptr_GetnColorTableARB) (GET_by_offset(disp, _gloffset_GetnColorTableARB)); 9693 } 9694 9695 static inline void SET_GetnColorTableARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) { 9696 SET_by_offset(disp, _gloffset_GetnColorTableARB, fn); 9697 } 9698 9699 typedef void (GLAPIENTRYP _glptr_GetnCompressedTexImageARB)(GLenum, GLint, GLsizei, GLvoid *); 9700 #define CALL_GetnCompressedTexImageARB(disp, parameters) \ 9701 (* GET_GetnCompressedTexImageARB(disp)) parameters 9702 static inline _glptr_GetnCompressedTexImageARB GET_GetnCompressedTexImageARB(struct _glapi_table *disp) { 9703 return (_glptr_GetnCompressedTexImageARB) (GET_by_offset(disp, _gloffset_GetnCompressedTexImageARB)); 9704 } 9705 9706 static inline void SET_GetnCompressedTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLvoid *)) { 9707 SET_by_offset(disp, _gloffset_GetnCompressedTexImageARB, fn); 9708 } 9709 9710 typedef void (GLAPIENTRYP _glptr_GetnConvolutionFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *); 9711 #define CALL_GetnConvolutionFilterARB(disp, parameters) \ 9712 (* GET_GetnConvolutionFilterARB(disp)) parameters 9713 static inline _glptr_GetnConvolutionFilterARB GET_GetnConvolutionFilterARB(struct _glapi_table *disp) { 9714 return (_glptr_GetnConvolutionFilterARB) (GET_by_offset(disp, _gloffset_GetnConvolutionFilterARB)); 9715 } 9716 9717 static inline void SET_GetnConvolutionFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *)) { 9718 SET_by_offset(disp, _gloffset_GetnConvolutionFilterARB, fn); 9719 } 9720 9721 typedef void (GLAPIENTRYP _glptr_GetnHistogramARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *); 9722 #define CALL_GetnHistogramARB(disp, parameters) \ 9723 (* GET_GetnHistogramARB(disp)) parameters 9724 static inline _glptr_GetnHistogramARB GET_GetnHistogramARB(struct _glapi_table *disp) { 9725 return (_glptr_GetnHistogramARB) (GET_by_offset(disp, _gloffset_GetnHistogramARB)); 9726 } 9727 9728 static inline void SET_GetnHistogramARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) { 9729 SET_by_offset(disp, _gloffset_GetnHistogramARB, fn); 9730 } 9731 9732 typedef void (GLAPIENTRYP _glptr_GetnMapdvARB)(GLenum, GLenum, GLsizei, GLdouble *); 9733 #define CALL_GetnMapdvARB(disp, parameters) \ 9734 (* GET_GetnMapdvARB(disp)) parameters 9735 static inline _glptr_GetnMapdvARB GET_GetnMapdvARB(struct _glapi_table *disp) { 9736 return (_glptr_GetnMapdvARB) (GET_by_offset(disp, _gloffset_GetnMapdvARB)); 9737 } 9738 9739 static inline void SET_GetnMapdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLdouble *)) { 9740 SET_by_offset(disp, _gloffset_GetnMapdvARB, fn); 9741 } 9742 9743 typedef void (GLAPIENTRYP _glptr_GetnMapfvARB)(GLenum, GLenum, GLsizei, GLfloat *); 9744 #define CALL_GetnMapfvARB(disp, parameters) \ 9745 (* GET_GetnMapfvARB(disp)) parameters 9746 static inline _glptr_GetnMapfvARB GET_GetnMapfvARB(struct _glapi_table *disp) { 9747 return (_glptr_GetnMapfvARB) (GET_by_offset(disp, _gloffset_GetnMapfvARB)); 9748 } 9749 9750 static inline void SET_GetnMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLfloat *)) { 9751 SET_by_offset(disp, _gloffset_GetnMapfvARB, fn); 9752 } 9753 9754 typedef void (GLAPIENTRYP _glptr_GetnMapivARB)(GLenum, GLenum, GLsizei, GLint *); 9755 #define CALL_GetnMapivARB(disp, parameters) \ 9756 (* GET_GetnMapivARB(disp)) parameters 9757 static inline _glptr_GetnMapivARB GET_GetnMapivARB(struct _glapi_table *disp) { 9758 return (_glptr_GetnMapivARB) (GET_by_offset(disp, _gloffset_GetnMapivARB)); 9759 } 9760 9761 static inline void SET_GetnMapivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLint *)) { 9762 SET_by_offset(disp, _gloffset_GetnMapivARB, fn); 9763 } 9764 9765 typedef void (GLAPIENTRYP _glptr_GetnMinmaxARB)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *); 9766 #define CALL_GetnMinmaxARB(disp, parameters) \ 9767 (* GET_GetnMinmaxARB(disp)) parameters 9768 static inline _glptr_GetnMinmaxARB GET_GetnMinmaxARB(struct _glapi_table *disp) { 9769 return (_glptr_GetnMinmaxARB) (GET_by_offset(disp, _gloffset_GetnMinmaxARB)); 9770 } 9771 9772 static inline void SET_GetnMinmaxARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLboolean, GLenum, GLenum, GLsizei, GLvoid *)) { 9773 SET_by_offset(disp, _gloffset_GetnMinmaxARB, fn); 9774 } 9775 9776 typedef void (GLAPIENTRYP _glptr_GetnPixelMapfvARB)(GLenum, GLsizei, GLfloat *); 9777 #define CALL_GetnPixelMapfvARB(disp, parameters) \ 9778 (* GET_GetnPixelMapfvARB(disp)) parameters 9779 static inline _glptr_GetnPixelMapfvARB GET_GetnPixelMapfvARB(struct _glapi_table *disp) { 9780 return (_glptr_GetnPixelMapfvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapfvARB)); 9781 } 9782 9783 static inline void SET_GetnPixelMapfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLfloat *)) { 9784 SET_by_offset(disp, _gloffset_GetnPixelMapfvARB, fn); 9785 } 9786 9787 typedef void (GLAPIENTRYP _glptr_GetnPixelMapuivARB)(GLenum, GLsizei, GLuint *); 9788 #define CALL_GetnPixelMapuivARB(disp, parameters) \ 9789 (* GET_GetnPixelMapuivARB(disp)) parameters 9790 static inline _glptr_GetnPixelMapuivARB GET_GetnPixelMapuivARB(struct _glapi_table *disp) { 9791 return (_glptr_GetnPixelMapuivARB) (GET_by_offset(disp, _gloffset_GetnPixelMapuivARB)); 9792 } 9793 9794 static inline void SET_GetnPixelMapuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLuint *)) { 9795 SET_by_offset(disp, _gloffset_GetnPixelMapuivARB, fn); 9796 } 9797 9798 typedef void (GLAPIENTRYP _glptr_GetnPixelMapusvARB)(GLenum, GLsizei, GLushort *); 9799 #define CALL_GetnPixelMapusvARB(disp, parameters) \ 9800 (* GET_GetnPixelMapusvARB(disp)) parameters 9801 static inline _glptr_GetnPixelMapusvARB GET_GetnPixelMapusvARB(struct _glapi_table *disp) { 9802 return (_glptr_GetnPixelMapusvARB) (GET_by_offset(disp, _gloffset_GetnPixelMapusvARB)); 9803 } 9804 9805 static inline void SET_GetnPixelMapusvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLushort *)) { 9806 SET_by_offset(disp, _gloffset_GetnPixelMapusvARB, fn); 9807 } 9808 9809 typedef void (GLAPIENTRYP _glptr_GetnPolygonStippleARB)(GLsizei, GLubyte *); 9810 #define CALL_GetnPolygonStippleARB(disp, parameters) \ 9811 (* GET_GetnPolygonStippleARB(disp)) parameters 9812 static inline _glptr_GetnPolygonStippleARB GET_GetnPolygonStippleARB(struct _glapi_table *disp) { 9813 return (_glptr_GetnPolygonStippleARB) (GET_by_offset(disp, _gloffset_GetnPolygonStippleARB)); 9814 } 9815 9816 static inline void SET_GetnPolygonStippleARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLubyte *)) { 9817 SET_by_offset(disp, _gloffset_GetnPolygonStippleARB, fn); 9818 } 9819 9820 typedef void (GLAPIENTRYP _glptr_GetnSeparableFilterARB)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *); 9821 #define CALL_GetnSeparableFilterARB(disp, parameters) \ 9822 (* GET_GetnSeparableFilterARB(disp)) parameters 9823 static inline _glptr_GetnSeparableFilterARB GET_GetnSeparableFilterARB(struct _glapi_table *disp) { 9824 return (_glptr_GetnSeparableFilterARB) (GET_by_offset(disp, _gloffset_GetnSeparableFilterARB)); 9825 } 9826 9827 static inline void SET_GetnSeparableFilterARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLsizei, GLvoid *, GLsizei, GLvoid *, GLvoid *)) { 9828 SET_by_offset(disp, _gloffset_GetnSeparableFilterARB, fn); 9829 } 9830 9831 typedef void (GLAPIENTRYP _glptr_GetnTexImageARB)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *); 9832 #define CALL_GetnTexImageARB(disp, parameters) \ 9833 (* GET_GetnTexImageARB(disp)) parameters 9834 static inline _glptr_GetnTexImageARB GET_GetnTexImageARB(struct _glapi_table *disp) { 9835 return (_glptr_GetnTexImageARB) (GET_by_offset(disp, _gloffset_GetnTexImageARB)); 9836 } 9837 9838 static inline void SET_GetnTexImageARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLenum, GLenum, GLsizei, GLvoid *)) { 9839 SET_by_offset(disp, _gloffset_GetnTexImageARB, fn); 9840 } 9841 9842 typedef void (GLAPIENTRYP _glptr_GetnUniformdvARB)(GLhandleARB, GLint, GLsizei, GLdouble *); 9843 #define CALL_GetnUniformdvARB(disp, parameters) \ 9844 (* GET_GetnUniformdvARB(disp)) parameters 9845 static inline _glptr_GetnUniformdvARB GET_GetnUniformdvARB(struct _glapi_table *disp) { 9846 return (_glptr_GetnUniformdvARB) (GET_by_offset(disp, _gloffset_GetnUniformdvARB)); 9847 } 9848 9849 static inline void SET_GetnUniformdvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLdouble *)) { 9850 SET_by_offset(disp, _gloffset_GetnUniformdvARB, fn); 9851 } 9852 9853 typedef void (GLAPIENTRYP _glptr_GetnUniformfvARB)(GLhandleARB, GLint, GLsizei, GLfloat *); 9854 #define CALL_GetnUniformfvARB(disp, parameters) \ 9855 (* GET_GetnUniformfvARB(disp)) parameters 9856 static inline _glptr_GetnUniformfvARB GET_GetnUniformfvARB(struct _glapi_table *disp) { 9857 return (_glptr_GetnUniformfvARB) (GET_by_offset(disp, _gloffset_GetnUniformfvARB)); 9858 } 9859 9860 static inline void SET_GetnUniformfvARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLfloat *)) { 9861 SET_by_offset(disp, _gloffset_GetnUniformfvARB, fn); 9862 } 9863 9864 typedef void (GLAPIENTRYP _glptr_GetnUniformivARB)(GLhandleARB, GLint, GLsizei, GLint *); 9865 #define CALL_GetnUniformivARB(disp, parameters) \ 9866 (* GET_GetnUniformivARB(disp)) parameters 9867 static inline _glptr_GetnUniformivARB GET_GetnUniformivARB(struct _glapi_table *disp) { 9868 return (_glptr_GetnUniformivARB) (GET_by_offset(disp, _gloffset_GetnUniformivARB)); 9869 } 9870 9871 static inline void SET_GetnUniformivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLint *)) { 9872 SET_by_offset(disp, _gloffset_GetnUniformivARB, fn); 9873 } 9874 9875 typedef void (GLAPIENTRYP _glptr_GetnUniformuivARB)(GLhandleARB, GLint, GLsizei, GLuint *); 9876 #define CALL_GetnUniformuivARB(disp, parameters) \ 9877 (* GET_GetnUniformuivARB(disp)) parameters 9878 static inline _glptr_GetnUniformuivARB GET_GetnUniformuivARB(struct _glapi_table *disp) { 9879 return (_glptr_GetnUniformuivARB) (GET_by_offset(disp, _gloffset_GetnUniformuivARB)); 9880 } 9881 9882 static inline void SET_GetnUniformuivARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLhandleARB, GLint, GLsizei, GLuint *)) { 9883 SET_by_offset(disp, _gloffset_GetnUniformuivARB, fn); 9884 } 9885 9886 typedef void (GLAPIENTRYP _glptr_ReadnPixelsARB)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *); 9887 #define CALL_ReadnPixelsARB(disp, parameters) \ 9888 (* GET_ReadnPixelsARB(disp)) parameters 9889 static inline _glptr_ReadnPixelsARB GET_ReadnPixelsARB(struct _glapi_table *disp) { 9890 return (_glptr_ReadnPixelsARB) (GET_by_offset(disp, _gloffset_ReadnPixelsARB)); 9891 } 9892 9893 static inline void SET_ReadnPixelsARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLsizei, GLvoid *)) { 9894 SET_by_offset(disp, _gloffset_ReadnPixelsARB, fn); 9895 } 9896 9897 typedef void (GLAPIENTRYP _glptr_DrawArraysInstancedBaseInstance)(GLenum, GLint, GLsizei, GLsizei, GLuint); 9898 #define CALL_DrawArraysInstancedBaseInstance(disp, parameters) \ 9899 (* GET_DrawArraysInstancedBaseInstance(disp)) parameters 9900 static inline _glptr_DrawArraysInstancedBaseInstance GET_DrawArraysInstancedBaseInstance(struct _glapi_table *disp) { 9901 return (_glptr_DrawArraysInstancedBaseInstance) (GET_by_offset(disp, _gloffset_DrawArraysInstancedBaseInstance)); 9902 } 9903 9904 static inline void SET_DrawArraysInstancedBaseInstance(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint, GLsizei, GLsizei, GLuint)) { 9905 SET_by_offset(disp, _gloffset_DrawArraysInstancedBaseInstance, fn); 9906 } 9907 9908 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseInstance)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLuint); 9909 #define CALL_DrawElementsInstancedBaseInstance(disp, parameters) \ 9910 (* GET_DrawElementsInstancedBaseInstance(disp)) parameters 9911 static inline _glptr_DrawElementsInstancedBaseInstance GET_DrawElementsInstancedBaseInstance(struct _glapi_table *disp) { 9912 return (_glptr_DrawElementsInstancedBaseInstance) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseInstance)); 9913 } 9914 9915 static inline void SET_DrawElementsInstancedBaseInstance(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLuint)) { 9916 SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseInstance, fn); 9917 } 9918 9919 typedef void (GLAPIENTRYP _glptr_DrawElementsInstancedBaseVertexBaseInstance)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint, GLuint); 9920 #define CALL_DrawElementsInstancedBaseVertexBaseInstance(disp, parameters) \ 9921 (* GET_DrawElementsInstancedBaseVertexBaseInstance(disp)) parameters 9922 static inline _glptr_DrawElementsInstancedBaseVertexBaseInstance GET_DrawElementsInstancedBaseVertexBaseInstance(struct _glapi_table *disp) { 9923 return (_glptr_DrawElementsInstancedBaseVertexBaseInstance) (GET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertexBaseInstance)); 9924 } 9925 9926 static inline void SET_DrawElementsInstancedBaseVertexBaseInstance(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, const GLvoid *, GLsizei, GLint, GLuint)) { 9927 SET_by_offset(disp, _gloffset_DrawElementsInstancedBaseVertexBaseInstance, fn); 9928 } 9929 9930 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedbackInstanced)(GLenum, GLuint, GLsizei); 9931 #define CALL_DrawTransformFeedbackInstanced(disp, parameters) \ 9932 (* GET_DrawTransformFeedbackInstanced(disp)) parameters 9933 static inline _glptr_DrawTransformFeedbackInstanced GET_DrawTransformFeedbackInstanced(struct _glapi_table *disp) { 9934 return (_glptr_DrawTransformFeedbackInstanced) (GET_by_offset(disp, _gloffset_DrawTransformFeedbackInstanced)); 9935 } 9936 9937 static inline void SET_DrawTransformFeedbackInstanced(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei)) { 9938 SET_by_offset(disp, _gloffset_DrawTransformFeedbackInstanced, fn); 9939 } 9940 9941 typedef void (GLAPIENTRYP _glptr_DrawTransformFeedbackStreamInstanced)(GLenum, GLuint, GLuint, GLsizei); 9942 #define CALL_DrawTransformFeedbackStreamInstanced(disp, parameters) \ 9943 (* GET_DrawTransformFeedbackStreamInstanced(disp)) parameters 9944 static inline _glptr_DrawTransformFeedbackStreamInstanced GET_DrawTransformFeedbackStreamInstanced(struct _glapi_table *disp) { 9945 return (_glptr_DrawTransformFeedbackStreamInstanced) (GET_by_offset(disp, _gloffset_DrawTransformFeedbackStreamInstanced)); 9946 } 9947 9948 static inline void SET_DrawTransformFeedbackStreamInstanced(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLsizei)) { 9949 SET_by_offset(disp, _gloffset_DrawTransformFeedbackStreamInstanced, fn); 9950 } 9951 9952 typedef void (GLAPIENTRYP _glptr_TexStorage1D)(GLenum, GLsizei, GLenum, GLsizei); 9953 #define CALL_TexStorage1D(disp, parameters) \ 9954 (* GET_TexStorage1D(disp)) parameters 9955 static inline _glptr_TexStorage1D GET_TexStorage1D(struct _glapi_table *disp) { 9956 return (_glptr_TexStorage1D) (GET_by_offset(disp, _gloffset_TexStorage1D)); 9957 } 9958 9959 static inline void SET_TexStorage1D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei)) { 9960 SET_by_offset(disp, _gloffset_TexStorage1D, fn); 9961 } 9962 9963 typedef void (GLAPIENTRYP _glptr_TexStorage2D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei); 9964 #define CALL_TexStorage2D(disp, parameters) \ 9965 (* GET_TexStorage2D(disp)) parameters 9966 static inline _glptr_TexStorage2D GET_TexStorage2D(struct _glapi_table *disp) { 9967 return (_glptr_TexStorage2D) (GET_by_offset(disp, _gloffset_TexStorage2D)); 9968 } 9969 9970 static inline void SET_TexStorage2D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)) { 9971 SET_by_offset(disp, _gloffset_TexStorage2D, fn); 9972 } 9973 9974 typedef void (GLAPIENTRYP _glptr_TexStorage3D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei); 9975 #define CALL_TexStorage3D(disp, parameters) \ 9976 (* GET_TexStorage3D(disp)) parameters 9977 static inline _glptr_TexStorage3D GET_TexStorage3D(struct _glapi_table *disp) { 9978 return (_glptr_TexStorage3D) (GET_by_offset(disp, _gloffset_TexStorage3D)); 9979 } 9980 9981 static inline void SET_TexStorage3D(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) { 9982 SET_by_offset(disp, _gloffset_TexStorage3D, fn); 9983 } 9984 9985 typedef void (GLAPIENTRYP _glptr_TextureStorage1DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei); 9986 #define CALL_TextureStorage1DEXT(disp, parameters) \ 9987 (* GET_TextureStorage1DEXT(disp)) parameters 9988 static inline _glptr_TextureStorage1DEXT GET_TextureStorage1DEXT(struct _glapi_table *disp) { 9989 return (_glptr_TextureStorage1DEXT) (GET_by_offset(disp, _gloffset_TextureStorage1DEXT)); 9990 } 9991 9992 static inline void SET_TextureStorage1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei)) { 9993 SET_by_offset(disp, _gloffset_TextureStorage1DEXT, fn); 9994 } 9995 9996 typedef void (GLAPIENTRYP _glptr_TextureStorage2DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei); 9997 #define CALL_TextureStorage2DEXT(disp, parameters) \ 9998 (* GET_TextureStorage2DEXT(disp)) parameters 9999 static inline _glptr_TextureStorage2DEXT GET_TextureStorage2DEXT(struct _glapi_table *disp) { 10000 return (_glptr_TextureStorage2DEXT) (GET_by_offset(disp, _gloffset_TextureStorage2DEXT)); 10001 } 10002 10003 static inline void SET_TextureStorage2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei)) { 10004 SET_by_offset(disp, _gloffset_TextureStorage2DEXT, fn); 10005 } 10006 10007 typedef void (GLAPIENTRYP _glptr_TextureStorage3DEXT)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei); 10008 #define CALL_TextureStorage3DEXT(disp, parameters) \ 10009 (* GET_TextureStorage3DEXT(disp)) parameters 10010 static inline _glptr_TextureStorage3DEXT GET_TextureStorage3DEXT(struct _glapi_table *disp) { 10011 return (_glptr_TextureStorage3DEXT) (GET_by_offset(disp, _gloffset_TextureStorage3DEXT)); 10012 } 10013 10014 static inline void SET_TextureStorage3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)) { 10015 SET_by_offset(disp, _gloffset_TextureStorage3DEXT, fn); 10016 } 10017 10018 typedef void (GLAPIENTRYP _glptr_InvalidateBufferData)(GLuint); 10019 #define CALL_InvalidateBufferData(disp, parameters) \ 10020 (* GET_InvalidateBufferData(disp)) parameters 10021 static inline _glptr_InvalidateBufferData GET_InvalidateBufferData(struct _glapi_table *disp) { 10022 return (_glptr_InvalidateBufferData) (GET_by_offset(disp, _gloffset_InvalidateBufferData)); 10023 } 10024 10025 static inline void SET_InvalidateBufferData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 10026 SET_by_offset(disp, _gloffset_InvalidateBufferData, fn); 10027 } 10028 10029 typedef void (GLAPIENTRYP _glptr_InvalidateBufferSubData)(GLuint, GLintptr, GLsizeiptr); 10030 #define CALL_InvalidateBufferSubData(disp, parameters) \ 10031 (* GET_InvalidateBufferSubData(disp)) parameters 10032 static inline _glptr_InvalidateBufferSubData GET_InvalidateBufferSubData(struct _glapi_table *disp) { 10033 return (_glptr_InvalidateBufferSubData) (GET_by_offset(disp, _gloffset_InvalidateBufferSubData)); 10034 } 10035 10036 static inline void SET_InvalidateBufferSubData(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLintptr, GLsizeiptr)) { 10037 SET_by_offset(disp, _gloffset_InvalidateBufferSubData, fn); 10038 } 10039 10040 typedef void (GLAPIENTRYP _glptr_InvalidateFramebuffer)(GLenum, GLsizei, const GLenum *); 10041 #define CALL_InvalidateFramebuffer(disp, parameters) \ 10042 (* GET_InvalidateFramebuffer(disp)) parameters 10043 static inline _glptr_InvalidateFramebuffer GET_InvalidateFramebuffer(struct _glapi_table *disp) { 10044 return (_glptr_InvalidateFramebuffer) (GET_by_offset(disp, _gloffset_InvalidateFramebuffer)); 10045 } 10046 10047 static inline void SET_InvalidateFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLenum *)) { 10048 SET_by_offset(disp, _gloffset_InvalidateFramebuffer, fn); 10049 } 10050 10051 typedef void (GLAPIENTRYP _glptr_InvalidateSubFramebuffer)(GLenum, GLsizei, const GLenum *, GLint, GLint, GLsizei, GLsizei); 10052 #define CALL_InvalidateSubFramebuffer(disp, parameters) \ 10053 (* GET_InvalidateSubFramebuffer(disp)) parameters 10054 static inline _glptr_InvalidateSubFramebuffer GET_InvalidateSubFramebuffer(struct _glapi_table *disp) { 10055 return (_glptr_InvalidateSubFramebuffer) (GET_by_offset(disp, _gloffset_InvalidateSubFramebuffer)); 10056 } 10057 10058 static inline void SET_InvalidateSubFramebuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLenum *, GLint, GLint, GLsizei, GLsizei)) { 10059 SET_by_offset(disp, _gloffset_InvalidateSubFramebuffer, fn); 10060 } 10061 10062 typedef void (GLAPIENTRYP _glptr_InvalidateTexImage)(GLuint, GLint); 10063 #define CALL_InvalidateTexImage(disp, parameters) \ 10064 (* GET_InvalidateTexImage(disp)) parameters 10065 static inline _glptr_InvalidateTexImage GET_InvalidateTexImage(struct _glapi_table *disp) { 10066 return (_glptr_InvalidateTexImage) (GET_by_offset(disp, _gloffset_InvalidateTexImage)); 10067 } 10068 10069 static inline void SET_InvalidateTexImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint)) { 10070 SET_by_offset(disp, _gloffset_InvalidateTexImage, fn); 10071 } 10072 10073 typedef void (GLAPIENTRYP _glptr_InvalidateTexSubImage)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei); 10074 #define CALL_InvalidateTexSubImage(disp, parameters) \ 10075 (* GET_InvalidateTexSubImage(disp)) parameters 10076 static inline _glptr_InvalidateTexSubImage GET_InvalidateTexSubImage(struct _glapi_table *disp) { 10077 return (_glptr_InvalidateTexSubImage) (GET_by_offset(disp, _gloffset_InvalidateTexSubImage)); 10078 } 10079 10080 static inline void SET_InvalidateTexSubImage(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei)) { 10081 SET_by_offset(disp, _gloffset_InvalidateTexSubImage, fn); 10082 } 10083 10084 typedef void (GLAPIENTRYP _glptr_PolygonOffsetEXT)(GLfloat, GLfloat); 10085 #define CALL_PolygonOffsetEXT(disp, parameters) \ 10086 (* GET_PolygonOffsetEXT(disp)) parameters 10087 static inline _glptr_PolygonOffsetEXT GET_PolygonOffsetEXT(struct _glapi_table *disp) { 10088 return (_glptr_PolygonOffsetEXT) (GET_by_offset(disp, _gloffset_PolygonOffsetEXT)); 10089 } 10090 10091 static inline void SET_PolygonOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 10092 SET_by_offset(disp, _gloffset_PolygonOffsetEXT, fn); 10093 } 10094 10095 typedef void (GLAPIENTRYP _glptr_SampleMaskSGIS)(GLclampf, GLboolean); 10096 #define CALL_SampleMaskSGIS(disp, parameters) \ 10097 (* GET_SampleMaskSGIS(disp)) parameters 10098 static inline _glptr_SampleMaskSGIS GET_SampleMaskSGIS(struct _glapi_table *disp) { 10099 return (_glptr_SampleMaskSGIS) (GET_by_offset(disp, _gloffset_SampleMaskSGIS)); 10100 } 10101 10102 static inline void SET_SampleMaskSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampf, GLboolean)) { 10103 SET_by_offset(disp, _gloffset_SampleMaskSGIS, fn); 10104 } 10105 10106 typedef void (GLAPIENTRYP _glptr_SamplePatternSGIS)(GLenum); 10107 #define CALL_SamplePatternSGIS(disp, parameters) \ 10108 (* GET_SamplePatternSGIS(disp)) parameters 10109 static inline _glptr_SamplePatternSGIS GET_SamplePatternSGIS(struct _glapi_table *disp) { 10110 return (_glptr_SamplePatternSGIS) (GET_by_offset(disp, _gloffset_SamplePatternSGIS)); 10111 } 10112 10113 static inline void SET_SamplePatternSGIS(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 10114 SET_by_offset(disp, _gloffset_SamplePatternSGIS, fn); 10115 } 10116 10117 typedef void (GLAPIENTRYP _glptr_ColorPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *); 10118 #define CALL_ColorPointerEXT(disp, parameters) \ 10119 (* GET_ColorPointerEXT(disp)) parameters 10120 static inline _glptr_ColorPointerEXT GET_ColorPointerEXT(struct _glapi_table *disp) { 10121 return (_glptr_ColorPointerEXT) (GET_by_offset(disp, _gloffset_ColorPointerEXT)); 10122 } 10123 10124 static inline void SET_ColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) { 10125 SET_by_offset(disp, _gloffset_ColorPointerEXT, fn); 10126 } 10127 10128 typedef void (GLAPIENTRYP _glptr_EdgeFlagPointerEXT)(GLsizei, GLsizei, const GLboolean *); 10129 #define CALL_EdgeFlagPointerEXT(disp, parameters) \ 10130 (* GET_EdgeFlagPointerEXT(disp)) parameters 10131 static inline _glptr_EdgeFlagPointerEXT GET_EdgeFlagPointerEXT(struct _glapi_table *disp) { 10132 return (_glptr_EdgeFlagPointerEXT) (GET_by_offset(disp, _gloffset_EdgeFlagPointerEXT)); 10133 } 10134 10135 static inline void SET_EdgeFlagPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLsizei, const GLboolean *)) { 10136 SET_by_offset(disp, _gloffset_EdgeFlagPointerEXT, fn); 10137 } 10138 10139 typedef void (GLAPIENTRYP _glptr_IndexPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *); 10140 #define CALL_IndexPointerEXT(disp, parameters) \ 10141 (* GET_IndexPointerEXT(disp)) parameters 10142 static inline _glptr_IndexPointerEXT GET_IndexPointerEXT(struct _glapi_table *disp) { 10143 return (_glptr_IndexPointerEXT) (GET_by_offset(disp, _gloffset_IndexPointerEXT)); 10144 } 10145 10146 static inline void SET_IndexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) { 10147 SET_by_offset(disp, _gloffset_IndexPointerEXT, fn); 10148 } 10149 10150 typedef void (GLAPIENTRYP _glptr_NormalPointerEXT)(GLenum, GLsizei, GLsizei, const GLvoid *); 10151 #define CALL_NormalPointerEXT(disp, parameters) \ 10152 (* GET_NormalPointerEXT(disp)) parameters 10153 static inline _glptr_NormalPointerEXT GET_NormalPointerEXT(struct _glapi_table *disp) { 10154 return (_glptr_NormalPointerEXT) (GET_by_offset(disp, _gloffset_NormalPointerEXT)); 10155 } 10156 10157 static inline void SET_NormalPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, GLsizei, const GLvoid *)) { 10158 SET_by_offset(disp, _gloffset_NormalPointerEXT, fn); 10159 } 10160 10161 typedef void (GLAPIENTRYP _glptr_TexCoordPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *); 10162 #define CALL_TexCoordPointerEXT(disp, parameters) \ 10163 (* GET_TexCoordPointerEXT(disp)) parameters 10164 static inline _glptr_TexCoordPointerEXT GET_TexCoordPointerEXT(struct _glapi_table *disp) { 10165 return (_glptr_TexCoordPointerEXT) (GET_by_offset(disp, _gloffset_TexCoordPointerEXT)); 10166 } 10167 10168 static inline void SET_TexCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) { 10169 SET_by_offset(disp, _gloffset_TexCoordPointerEXT, fn); 10170 } 10171 10172 typedef void (GLAPIENTRYP _glptr_VertexPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *); 10173 #define CALL_VertexPointerEXT(disp, parameters) \ 10174 (* GET_VertexPointerEXT(disp)) parameters 10175 static inline _glptr_VertexPointerEXT GET_VertexPointerEXT(struct _glapi_table *disp) { 10176 return (_glptr_VertexPointerEXT) (GET_by_offset(disp, _gloffset_VertexPointerEXT)); 10177 } 10178 10179 static inline void SET_VertexPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *)) { 10180 SET_by_offset(disp, _gloffset_VertexPointerEXT, fn); 10181 } 10182 10183 typedef void (GLAPIENTRYP _glptr_PointParameterfEXT)(GLenum, GLfloat); 10184 #define CALL_PointParameterfEXT(disp, parameters) \ 10185 (* GET_PointParameterfEXT(disp)) parameters 10186 static inline _glptr_PointParameterfEXT GET_PointParameterfEXT(struct _glapi_table *disp) { 10187 return (_glptr_PointParameterfEXT) (GET_by_offset(disp, _gloffset_PointParameterfEXT)); 10188 } 10189 10190 static inline void SET_PointParameterfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat)) { 10191 SET_by_offset(disp, _gloffset_PointParameterfEXT, fn); 10192 } 10193 10194 typedef void (GLAPIENTRYP _glptr_PointParameterfvEXT)(GLenum, const GLfloat *); 10195 #define CALL_PointParameterfvEXT(disp, parameters) \ 10196 (* GET_PointParameterfvEXT(disp)) parameters 10197 static inline _glptr_PointParameterfvEXT GET_PointParameterfvEXT(struct _glapi_table *disp) { 10198 return (_glptr_PointParameterfvEXT) (GET_by_offset(disp, _gloffset_PointParameterfvEXT)); 10199 } 10200 10201 static inline void SET_PointParameterfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 10202 SET_by_offset(disp, _gloffset_PointParameterfvEXT, fn); 10203 } 10204 10205 typedef void (GLAPIENTRYP _glptr_LockArraysEXT)(GLint, GLsizei); 10206 #define CALL_LockArraysEXT(disp, parameters) \ 10207 (* GET_LockArraysEXT(disp)) parameters 10208 static inline _glptr_LockArraysEXT GET_LockArraysEXT(struct _glapi_table *disp) { 10209 return (_glptr_LockArraysEXT) (GET_by_offset(disp, _gloffset_LockArraysEXT)); 10210 } 10211 10212 static inline void SET_LockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei)) { 10213 SET_by_offset(disp, _gloffset_LockArraysEXT, fn); 10214 } 10215 10216 typedef void (GLAPIENTRYP _glptr_UnlockArraysEXT)(void); 10217 #define CALL_UnlockArraysEXT(disp, parameters) \ 10218 (* GET_UnlockArraysEXT(disp)) parameters 10219 static inline _glptr_UnlockArraysEXT GET_UnlockArraysEXT(struct _glapi_table *disp) { 10220 return (_glptr_UnlockArraysEXT) (GET_by_offset(disp, _gloffset_UnlockArraysEXT)); 10221 } 10222 10223 static inline void SET_UnlockArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 10224 SET_by_offset(disp, _gloffset_UnlockArraysEXT, fn); 10225 } 10226 10227 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bEXT)(GLbyte, GLbyte, GLbyte); 10228 #define CALL_SecondaryColor3bEXT(disp, parameters) \ 10229 (* GET_SecondaryColor3bEXT(disp)) parameters 10230 static inline _glptr_SecondaryColor3bEXT GET_SecondaryColor3bEXT(struct _glapi_table *disp) { 10231 return (_glptr_SecondaryColor3bEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bEXT)); 10232 } 10233 10234 static inline void SET_SecondaryColor3bEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbyte, GLbyte, GLbyte)) { 10235 SET_by_offset(disp, _gloffset_SecondaryColor3bEXT, fn); 10236 } 10237 10238 typedef void (GLAPIENTRYP _glptr_SecondaryColor3bvEXT)(const GLbyte *); 10239 #define CALL_SecondaryColor3bvEXT(disp, parameters) \ 10240 (* GET_SecondaryColor3bvEXT(disp)) parameters 10241 static inline _glptr_SecondaryColor3bvEXT GET_SecondaryColor3bvEXT(struct _glapi_table *disp) { 10242 return (_glptr_SecondaryColor3bvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3bvEXT)); 10243 } 10244 10245 static inline void SET_SecondaryColor3bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLbyte *)) { 10246 SET_by_offset(disp, _gloffset_SecondaryColor3bvEXT, fn); 10247 } 10248 10249 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dEXT)(GLdouble, GLdouble, GLdouble); 10250 #define CALL_SecondaryColor3dEXT(disp, parameters) \ 10251 (* GET_SecondaryColor3dEXT(disp)) parameters 10252 static inline _glptr_SecondaryColor3dEXT GET_SecondaryColor3dEXT(struct _glapi_table *disp) { 10253 return (_glptr_SecondaryColor3dEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dEXT)); 10254 } 10255 10256 static inline void SET_SecondaryColor3dEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 10257 SET_by_offset(disp, _gloffset_SecondaryColor3dEXT, fn); 10258 } 10259 10260 typedef void (GLAPIENTRYP _glptr_SecondaryColor3dvEXT)(const GLdouble *); 10261 #define CALL_SecondaryColor3dvEXT(disp, parameters) \ 10262 (* GET_SecondaryColor3dvEXT(disp)) parameters 10263 static inline _glptr_SecondaryColor3dvEXT GET_SecondaryColor3dvEXT(struct _glapi_table *disp) { 10264 return (_glptr_SecondaryColor3dvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3dvEXT)); 10265 } 10266 10267 static inline void SET_SecondaryColor3dvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 10268 SET_by_offset(disp, _gloffset_SecondaryColor3dvEXT, fn); 10269 } 10270 10271 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fEXT)(GLfloat, GLfloat, GLfloat); 10272 #define CALL_SecondaryColor3fEXT(disp, parameters) \ 10273 (* GET_SecondaryColor3fEXT(disp)) parameters 10274 static inline _glptr_SecondaryColor3fEXT GET_SecondaryColor3fEXT(struct _glapi_table *disp) { 10275 return (_glptr_SecondaryColor3fEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fEXT)); 10276 } 10277 10278 static inline void SET_SecondaryColor3fEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 10279 SET_by_offset(disp, _gloffset_SecondaryColor3fEXT, fn); 10280 } 10281 10282 typedef void (GLAPIENTRYP _glptr_SecondaryColor3fvEXT)(const GLfloat *); 10283 #define CALL_SecondaryColor3fvEXT(disp, parameters) \ 10284 (* GET_SecondaryColor3fvEXT(disp)) parameters 10285 static inline _glptr_SecondaryColor3fvEXT GET_SecondaryColor3fvEXT(struct _glapi_table *disp) { 10286 return (_glptr_SecondaryColor3fvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3fvEXT)); 10287 } 10288 10289 static inline void SET_SecondaryColor3fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 10290 SET_by_offset(disp, _gloffset_SecondaryColor3fvEXT, fn); 10291 } 10292 10293 typedef void (GLAPIENTRYP _glptr_SecondaryColor3iEXT)(GLint, GLint, GLint); 10294 #define CALL_SecondaryColor3iEXT(disp, parameters) \ 10295 (* GET_SecondaryColor3iEXT(disp)) parameters 10296 static inline _glptr_SecondaryColor3iEXT GET_SecondaryColor3iEXT(struct _glapi_table *disp) { 10297 return (_glptr_SecondaryColor3iEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3iEXT)); 10298 } 10299 10300 static inline void SET_SecondaryColor3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 10301 SET_by_offset(disp, _gloffset_SecondaryColor3iEXT, fn); 10302 } 10303 10304 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ivEXT)(const GLint *); 10305 #define CALL_SecondaryColor3ivEXT(disp, parameters) \ 10306 (* GET_SecondaryColor3ivEXT(disp)) parameters 10307 static inline _glptr_SecondaryColor3ivEXT GET_SecondaryColor3ivEXT(struct _glapi_table *disp) { 10308 return (_glptr_SecondaryColor3ivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ivEXT)); 10309 } 10310 10311 static inline void SET_SecondaryColor3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 10312 SET_by_offset(disp, _gloffset_SecondaryColor3ivEXT, fn); 10313 } 10314 10315 typedef void (GLAPIENTRYP _glptr_SecondaryColor3sEXT)(GLshort, GLshort, GLshort); 10316 #define CALL_SecondaryColor3sEXT(disp, parameters) \ 10317 (* GET_SecondaryColor3sEXT(disp)) parameters 10318 static inline _glptr_SecondaryColor3sEXT GET_SecondaryColor3sEXT(struct _glapi_table *disp) { 10319 return (_glptr_SecondaryColor3sEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3sEXT)); 10320 } 10321 10322 static inline void SET_SecondaryColor3sEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 10323 SET_by_offset(disp, _gloffset_SecondaryColor3sEXT, fn); 10324 } 10325 10326 typedef void (GLAPIENTRYP _glptr_SecondaryColor3svEXT)(const GLshort *); 10327 #define CALL_SecondaryColor3svEXT(disp, parameters) \ 10328 (* GET_SecondaryColor3svEXT(disp)) parameters 10329 static inline _glptr_SecondaryColor3svEXT GET_SecondaryColor3svEXT(struct _glapi_table *disp) { 10330 return (_glptr_SecondaryColor3svEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3svEXT)); 10331 } 10332 10333 static inline void SET_SecondaryColor3svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 10334 SET_by_offset(disp, _gloffset_SecondaryColor3svEXT, fn); 10335 } 10336 10337 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubEXT)(GLubyte, GLubyte, GLubyte); 10338 #define CALL_SecondaryColor3ubEXT(disp, parameters) \ 10339 (* GET_SecondaryColor3ubEXT(disp)) parameters 10340 static inline _glptr_SecondaryColor3ubEXT GET_SecondaryColor3ubEXT(struct _glapi_table *disp) { 10341 return (_glptr_SecondaryColor3ubEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubEXT)); 10342 } 10343 10344 static inline void SET_SecondaryColor3ubEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLubyte, GLubyte, GLubyte)) { 10345 SET_by_offset(disp, _gloffset_SecondaryColor3ubEXT, fn); 10346 } 10347 10348 typedef void (GLAPIENTRYP _glptr_SecondaryColor3ubvEXT)(const GLubyte *); 10349 #define CALL_SecondaryColor3ubvEXT(disp, parameters) \ 10350 (* GET_SecondaryColor3ubvEXT(disp)) parameters 10351 static inline _glptr_SecondaryColor3ubvEXT GET_SecondaryColor3ubvEXT(struct _glapi_table *disp) { 10352 return (_glptr_SecondaryColor3ubvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT)); 10353 } 10354 10355 static inline void SET_SecondaryColor3ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLubyte *)) { 10356 SET_by_offset(disp, _gloffset_SecondaryColor3ubvEXT, fn); 10357 } 10358 10359 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uiEXT)(GLuint, GLuint, GLuint); 10360 #define CALL_SecondaryColor3uiEXT(disp, parameters) \ 10361 (* GET_SecondaryColor3uiEXT(disp)) parameters 10362 static inline _glptr_SecondaryColor3uiEXT GET_SecondaryColor3uiEXT(struct _glapi_table *disp) { 10363 return (_glptr_SecondaryColor3uiEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uiEXT)); 10364 } 10365 10366 static inline void SET_SecondaryColor3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) { 10367 SET_by_offset(disp, _gloffset_SecondaryColor3uiEXT, fn); 10368 } 10369 10370 typedef void (GLAPIENTRYP _glptr_SecondaryColor3uivEXT)(const GLuint *); 10371 #define CALL_SecondaryColor3uivEXT(disp, parameters) \ 10372 (* GET_SecondaryColor3uivEXT(disp)) parameters 10373 static inline _glptr_SecondaryColor3uivEXT GET_SecondaryColor3uivEXT(struct _glapi_table *disp) { 10374 return (_glptr_SecondaryColor3uivEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3uivEXT)); 10375 } 10376 10377 static inline void SET_SecondaryColor3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLuint *)) { 10378 SET_by_offset(disp, _gloffset_SecondaryColor3uivEXT, fn); 10379 } 10380 10381 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usEXT)(GLushort, GLushort, GLushort); 10382 #define CALL_SecondaryColor3usEXT(disp, parameters) \ 10383 (* GET_SecondaryColor3usEXT(disp)) parameters 10384 static inline _glptr_SecondaryColor3usEXT GET_SecondaryColor3usEXT(struct _glapi_table *disp) { 10385 return (_glptr_SecondaryColor3usEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usEXT)); 10386 } 10387 10388 static inline void SET_SecondaryColor3usEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLushort, GLushort, GLushort)) { 10389 SET_by_offset(disp, _gloffset_SecondaryColor3usEXT, fn); 10390 } 10391 10392 typedef void (GLAPIENTRYP _glptr_SecondaryColor3usvEXT)(const GLushort *); 10393 #define CALL_SecondaryColor3usvEXT(disp, parameters) \ 10394 (* GET_SecondaryColor3usvEXT(disp)) parameters 10395 static inline _glptr_SecondaryColor3usvEXT GET_SecondaryColor3usvEXT(struct _glapi_table *disp) { 10396 return (_glptr_SecondaryColor3usvEXT) (GET_by_offset(disp, _gloffset_SecondaryColor3usvEXT)); 10397 } 10398 10399 static inline void SET_SecondaryColor3usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLushort *)) { 10400 SET_by_offset(disp, _gloffset_SecondaryColor3usvEXT, fn); 10401 } 10402 10403 typedef void (GLAPIENTRYP _glptr_SecondaryColorPointerEXT)(GLint, GLenum, GLsizei, const GLvoid *); 10404 #define CALL_SecondaryColorPointerEXT(disp, parameters) \ 10405 (* GET_SecondaryColorPointerEXT(disp)) parameters 10406 static inline _glptr_SecondaryColorPointerEXT GET_SecondaryColorPointerEXT(struct _glapi_table *disp) { 10407 return (_glptr_SecondaryColorPointerEXT) (GET_by_offset(disp, _gloffset_SecondaryColorPointerEXT)); 10408 } 10409 10410 static inline void SET_SecondaryColorPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLenum, GLsizei, const GLvoid *)) { 10411 SET_by_offset(disp, _gloffset_SecondaryColorPointerEXT, fn); 10412 } 10413 10414 typedef void (GLAPIENTRYP _glptr_MultiDrawArraysEXT)(GLenum, const GLint *, const GLsizei *, GLsizei); 10415 #define CALL_MultiDrawArraysEXT(disp, parameters) \ 10416 (* GET_MultiDrawArraysEXT(disp)) parameters 10417 static inline _glptr_MultiDrawArraysEXT GET_MultiDrawArraysEXT(struct _glapi_table *disp) { 10418 return (_glptr_MultiDrawArraysEXT) (GET_by_offset(disp, _gloffset_MultiDrawArraysEXT)); 10419 } 10420 10421 static inline void SET_MultiDrawArraysEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *, const GLsizei *, GLsizei)) { 10422 SET_by_offset(disp, _gloffset_MultiDrawArraysEXT, fn); 10423 } 10424 10425 typedef void (GLAPIENTRYP _glptr_MultiDrawElementsEXT)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei); 10426 #define CALL_MultiDrawElementsEXT(disp, parameters) \ 10427 (* GET_MultiDrawElementsEXT(disp)) parameters 10428 static inline _glptr_MultiDrawElementsEXT GET_MultiDrawElementsEXT(struct _glapi_table *disp) { 10429 return (_glptr_MultiDrawElementsEXT) (GET_by_offset(disp, _gloffset_MultiDrawElementsEXT)); 10430 } 10431 10432 static inline void SET_MultiDrawElementsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei)) { 10433 SET_by_offset(disp, _gloffset_MultiDrawElementsEXT, fn); 10434 } 10435 10436 typedef void (GLAPIENTRYP _glptr_FogCoordPointerEXT)(GLenum, GLsizei, const GLvoid *); 10437 #define CALL_FogCoordPointerEXT(disp, parameters) \ 10438 (* GET_FogCoordPointerEXT(disp)) parameters 10439 static inline _glptr_FogCoordPointerEXT GET_FogCoordPointerEXT(struct _glapi_table *disp) { 10440 return (_glptr_FogCoordPointerEXT) (GET_by_offset(disp, _gloffset_FogCoordPointerEXT)); 10441 } 10442 10443 static inline void SET_FogCoordPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLsizei, const GLvoid *)) { 10444 SET_by_offset(disp, _gloffset_FogCoordPointerEXT, fn); 10445 } 10446 10447 typedef void (GLAPIENTRYP _glptr_FogCoorddEXT)(GLdouble); 10448 #define CALL_FogCoorddEXT(disp, parameters) \ 10449 (* GET_FogCoorddEXT(disp)) parameters 10450 static inline _glptr_FogCoorddEXT GET_FogCoorddEXT(struct _glapi_table *disp) { 10451 return (_glptr_FogCoorddEXT) (GET_by_offset(disp, _gloffset_FogCoorddEXT)); 10452 } 10453 10454 static inline void SET_FogCoorddEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble)) { 10455 SET_by_offset(disp, _gloffset_FogCoorddEXT, fn); 10456 } 10457 10458 typedef void (GLAPIENTRYP _glptr_FogCoorddvEXT)(const GLdouble *); 10459 #define CALL_FogCoorddvEXT(disp, parameters) \ 10460 (* GET_FogCoorddvEXT(disp)) parameters 10461 static inline _glptr_FogCoorddvEXT GET_FogCoorddvEXT(struct _glapi_table *disp) { 10462 return (_glptr_FogCoorddvEXT) (GET_by_offset(disp, _gloffset_FogCoorddvEXT)); 10463 } 10464 10465 static inline void SET_FogCoorddvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 10466 SET_by_offset(disp, _gloffset_FogCoorddvEXT, fn); 10467 } 10468 10469 typedef void (GLAPIENTRYP _glptr_FogCoordfEXT)(GLfloat); 10470 #define CALL_FogCoordfEXT(disp, parameters) \ 10471 (* GET_FogCoordfEXT(disp)) parameters 10472 static inline _glptr_FogCoordfEXT GET_FogCoordfEXT(struct _glapi_table *disp) { 10473 return (_glptr_FogCoordfEXT) (GET_by_offset(disp, _gloffset_FogCoordfEXT)); 10474 } 10475 10476 static inline void SET_FogCoordfEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat)) { 10477 SET_by_offset(disp, _gloffset_FogCoordfEXT, fn); 10478 } 10479 10480 typedef void (GLAPIENTRYP _glptr_FogCoordfvEXT)(const GLfloat *); 10481 #define CALL_FogCoordfvEXT(disp, parameters) \ 10482 (* GET_FogCoordfvEXT(disp)) parameters 10483 static inline _glptr_FogCoordfvEXT GET_FogCoordfvEXT(struct _glapi_table *disp) { 10484 return (_glptr_FogCoordfvEXT) (GET_by_offset(disp, _gloffset_FogCoordfvEXT)); 10485 } 10486 10487 static inline void SET_FogCoordfvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 10488 SET_by_offset(disp, _gloffset_FogCoordfvEXT, fn); 10489 } 10490 10491 typedef void (GLAPIENTRYP _glptr_BlendFuncSeparateEXT)(GLenum, GLenum, GLenum, GLenum); 10492 #define CALL_BlendFuncSeparateEXT(disp, parameters) \ 10493 (* GET_BlendFuncSeparateEXT(disp)) parameters 10494 static inline _glptr_BlendFuncSeparateEXT GET_BlendFuncSeparateEXT(struct _glapi_table *disp) { 10495 return (_glptr_BlendFuncSeparateEXT) (GET_by_offset(disp, _gloffset_BlendFuncSeparateEXT)); 10496 } 10497 10498 static inline void SET_BlendFuncSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLenum)) { 10499 SET_by_offset(disp, _gloffset_BlendFuncSeparateEXT, fn); 10500 } 10501 10502 typedef void (GLAPIENTRYP _glptr_ResizeBuffersMESA)(void); 10503 #define CALL_ResizeBuffersMESA(disp, parameters) \ 10504 (* GET_ResizeBuffersMESA(disp)) parameters 10505 static inline _glptr_ResizeBuffersMESA GET_ResizeBuffersMESA(struct _glapi_table *disp) { 10506 return (_glptr_ResizeBuffersMESA) (GET_by_offset(disp, _gloffset_ResizeBuffersMESA)); 10507 } 10508 10509 static inline void SET_ResizeBuffersMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 10510 SET_by_offset(disp, _gloffset_ResizeBuffersMESA, fn); 10511 } 10512 10513 typedef void (GLAPIENTRYP _glptr_WindowPos2dMESA)(GLdouble, GLdouble); 10514 #define CALL_WindowPos2dMESA(disp, parameters) \ 10515 (* GET_WindowPos2dMESA(disp)) parameters 10516 static inline _glptr_WindowPos2dMESA GET_WindowPos2dMESA(struct _glapi_table *disp) { 10517 return (_glptr_WindowPos2dMESA) (GET_by_offset(disp, _gloffset_WindowPos2dMESA)); 10518 } 10519 10520 static inline void SET_WindowPos2dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble)) { 10521 SET_by_offset(disp, _gloffset_WindowPos2dMESA, fn); 10522 } 10523 10524 typedef void (GLAPIENTRYP _glptr_WindowPos2dvMESA)(const GLdouble *); 10525 #define CALL_WindowPos2dvMESA(disp, parameters) \ 10526 (* GET_WindowPos2dvMESA(disp)) parameters 10527 static inline _glptr_WindowPos2dvMESA GET_WindowPos2dvMESA(struct _glapi_table *disp) { 10528 return (_glptr_WindowPos2dvMESA) (GET_by_offset(disp, _gloffset_WindowPos2dvMESA)); 10529 } 10530 10531 static inline void SET_WindowPos2dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 10532 SET_by_offset(disp, _gloffset_WindowPos2dvMESA, fn); 10533 } 10534 10535 typedef void (GLAPIENTRYP _glptr_WindowPos2fMESA)(GLfloat, GLfloat); 10536 #define CALL_WindowPos2fMESA(disp, parameters) \ 10537 (* GET_WindowPos2fMESA(disp)) parameters 10538 static inline _glptr_WindowPos2fMESA GET_WindowPos2fMESA(struct _glapi_table *disp) { 10539 return (_glptr_WindowPos2fMESA) (GET_by_offset(disp, _gloffset_WindowPos2fMESA)); 10540 } 10541 10542 static inline void SET_WindowPos2fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat)) { 10543 SET_by_offset(disp, _gloffset_WindowPos2fMESA, fn); 10544 } 10545 10546 typedef void (GLAPIENTRYP _glptr_WindowPos2fvMESA)(const GLfloat *); 10547 #define CALL_WindowPos2fvMESA(disp, parameters) \ 10548 (* GET_WindowPos2fvMESA(disp)) parameters 10549 static inline _glptr_WindowPos2fvMESA GET_WindowPos2fvMESA(struct _glapi_table *disp) { 10550 return (_glptr_WindowPos2fvMESA) (GET_by_offset(disp, _gloffset_WindowPos2fvMESA)); 10551 } 10552 10553 static inline void SET_WindowPos2fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 10554 SET_by_offset(disp, _gloffset_WindowPos2fvMESA, fn); 10555 } 10556 10557 typedef void (GLAPIENTRYP _glptr_WindowPos2iMESA)(GLint, GLint); 10558 #define CALL_WindowPos2iMESA(disp, parameters) \ 10559 (* GET_WindowPos2iMESA(disp)) parameters 10560 static inline _glptr_WindowPos2iMESA GET_WindowPos2iMESA(struct _glapi_table *disp) { 10561 return (_glptr_WindowPos2iMESA) (GET_by_offset(disp, _gloffset_WindowPos2iMESA)); 10562 } 10563 10564 static inline void SET_WindowPos2iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint)) { 10565 SET_by_offset(disp, _gloffset_WindowPos2iMESA, fn); 10566 } 10567 10568 typedef void (GLAPIENTRYP _glptr_WindowPos2ivMESA)(const GLint *); 10569 #define CALL_WindowPos2ivMESA(disp, parameters) \ 10570 (* GET_WindowPos2ivMESA(disp)) parameters 10571 static inline _glptr_WindowPos2ivMESA GET_WindowPos2ivMESA(struct _glapi_table *disp) { 10572 return (_glptr_WindowPos2ivMESA) (GET_by_offset(disp, _gloffset_WindowPos2ivMESA)); 10573 } 10574 10575 static inline void SET_WindowPos2ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 10576 SET_by_offset(disp, _gloffset_WindowPos2ivMESA, fn); 10577 } 10578 10579 typedef void (GLAPIENTRYP _glptr_WindowPos2sMESA)(GLshort, GLshort); 10580 #define CALL_WindowPos2sMESA(disp, parameters) \ 10581 (* GET_WindowPos2sMESA(disp)) parameters 10582 static inline _glptr_WindowPos2sMESA GET_WindowPos2sMESA(struct _glapi_table *disp) { 10583 return (_glptr_WindowPos2sMESA) (GET_by_offset(disp, _gloffset_WindowPos2sMESA)); 10584 } 10585 10586 static inline void SET_WindowPos2sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort)) { 10587 SET_by_offset(disp, _gloffset_WindowPos2sMESA, fn); 10588 } 10589 10590 typedef void (GLAPIENTRYP _glptr_WindowPos2svMESA)(const GLshort *); 10591 #define CALL_WindowPos2svMESA(disp, parameters) \ 10592 (* GET_WindowPos2svMESA(disp)) parameters 10593 static inline _glptr_WindowPos2svMESA GET_WindowPos2svMESA(struct _glapi_table *disp) { 10594 return (_glptr_WindowPos2svMESA) (GET_by_offset(disp, _gloffset_WindowPos2svMESA)); 10595 } 10596 10597 static inline void SET_WindowPos2svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 10598 SET_by_offset(disp, _gloffset_WindowPos2svMESA, fn); 10599 } 10600 10601 typedef void (GLAPIENTRYP _glptr_WindowPos3dMESA)(GLdouble, GLdouble, GLdouble); 10602 #define CALL_WindowPos3dMESA(disp, parameters) \ 10603 (* GET_WindowPos3dMESA(disp)) parameters 10604 static inline _glptr_WindowPos3dMESA GET_WindowPos3dMESA(struct _glapi_table *disp) { 10605 return (_glptr_WindowPos3dMESA) (GET_by_offset(disp, _gloffset_WindowPos3dMESA)); 10606 } 10607 10608 static inline void SET_WindowPos3dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble)) { 10609 SET_by_offset(disp, _gloffset_WindowPos3dMESA, fn); 10610 } 10611 10612 typedef void (GLAPIENTRYP _glptr_WindowPos3dvMESA)(const GLdouble *); 10613 #define CALL_WindowPos3dvMESA(disp, parameters) \ 10614 (* GET_WindowPos3dvMESA(disp)) parameters 10615 static inline _glptr_WindowPos3dvMESA GET_WindowPos3dvMESA(struct _glapi_table *disp) { 10616 return (_glptr_WindowPos3dvMESA) (GET_by_offset(disp, _gloffset_WindowPos3dvMESA)); 10617 } 10618 10619 static inline void SET_WindowPos3dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 10620 SET_by_offset(disp, _gloffset_WindowPos3dvMESA, fn); 10621 } 10622 10623 typedef void (GLAPIENTRYP _glptr_WindowPos3fMESA)(GLfloat, GLfloat, GLfloat); 10624 #define CALL_WindowPos3fMESA(disp, parameters) \ 10625 (* GET_WindowPos3fMESA(disp)) parameters 10626 static inline _glptr_WindowPos3fMESA GET_WindowPos3fMESA(struct _glapi_table *disp) { 10627 return (_glptr_WindowPos3fMESA) (GET_by_offset(disp, _gloffset_WindowPos3fMESA)); 10628 } 10629 10630 static inline void SET_WindowPos3fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat)) { 10631 SET_by_offset(disp, _gloffset_WindowPos3fMESA, fn); 10632 } 10633 10634 typedef void (GLAPIENTRYP _glptr_WindowPos3fvMESA)(const GLfloat *); 10635 #define CALL_WindowPos3fvMESA(disp, parameters) \ 10636 (* GET_WindowPos3fvMESA(disp)) parameters 10637 static inline _glptr_WindowPos3fvMESA GET_WindowPos3fvMESA(struct _glapi_table *disp) { 10638 return (_glptr_WindowPos3fvMESA) (GET_by_offset(disp, _gloffset_WindowPos3fvMESA)); 10639 } 10640 10641 static inline void SET_WindowPos3fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 10642 SET_by_offset(disp, _gloffset_WindowPos3fvMESA, fn); 10643 } 10644 10645 typedef void (GLAPIENTRYP _glptr_WindowPos3iMESA)(GLint, GLint, GLint); 10646 #define CALL_WindowPos3iMESA(disp, parameters) \ 10647 (* GET_WindowPos3iMESA(disp)) parameters 10648 static inline _glptr_WindowPos3iMESA GET_WindowPos3iMESA(struct _glapi_table *disp) { 10649 return (_glptr_WindowPos3iMESA) (GET_by_offset(disp, _gloffset_WindowPos3iMESA)); 10650 } 10651 10652 static inline void SET_WindowPos3iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint)) { 10653 SET_by_offset(disp, _gloffset_WindowPos3iMESA, fn); 10654 } 10655 10656 typedef void (GLAPIENTRYP _glptr_WindowPos3ivMESA)(const GLint *); 10657 #define CALL_WindowPos3ivMESA(disp, parameters) \ 10658 (* GET_WindowPos3ivMESA(disp)) parameters 10659 static inline _glptr_WindowPos3ivMESA GET_WindowPos3ivMESA(struct _glapi_table *disp) { 10660 return (_glptr_WindowPos3ivMESA) (GET_by_offset(disp, _gloffset_WindowPos3ivMESA)); 10661 } 10662 10663 static inline void SET_WindowPos3ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 10664 SET_by_offset(disp, _gloffset_WindowPos3ivMESA, fn); 10665 } 10666 10667 typedef void (GLAPIENTRYP _glptr_WindowPos3sMESA)(GLshort, GLshort, GLshort); 10668 #define CALL_WindowPos3sMESA(disp, parameters) \ 10669 (* GET_WindowPos3sMESA(disp)) parameters 10670 static inline _glptr_WindowPos3sMESA GET_WindowPos3sMESA(struct _glapi_table *disp) { 10671 return (_glptr_WindowPos3sMESA) (GET_by_offset(disp, _gloffset_WindowPos3sMESA)); 10672 } 10673 10674 static inline void SET_WindowPos3sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort)) { 10675 SET_by_offset(disp, _gloffset_WindowPos3sMESA, fn); 10676 } 10677 10678 typedef void (GLAPIENTRYP _glptr_WindowPos3svMESA)(const GLshort *); 10679 #define CALL_WindowPos3svMESA(disp, parameters) \ 10680 (* GET_WindowPos3svMESA(disp)) parameters 10681 static inline _glptr_WindowPos3svMESA GET_WindowPos3svMESA(struct _glapi_table *disp) { 10682 return (_glptr_WindowPos3svMESA) (GET_by_offset(disp, _gloffset_WindowPos3svMESA)); 10683 } 10684 10685 static inline void SET_WindowPos3svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 10686 SET_by_offset(disp, _gloffset_WindowPos3svMESA, fn); 10687 } 10688 10689 typedef void (GLAPIENTRYP _glptr_WindowPos4dMESA)(GLdouble, GLdouble, GLdouble, GLdouble); 10690 #define CALL_WindowPos4dMESA(disp, parameters) \ 10691 (* GET_WindowPos4dMESA(disp)) parameters 10692 static inline _glptr_WindowPos4dMESA GET_WindowPos4dMESA(struct _glapi_table *disp) { 10693 return (_glptr_WindowPos4dMESA) (GET_by_offset(disp, _gloffset_WindowPos4dMESA)); 10694 } 10695 10696 static inline void SET_WindowPos4dMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLdouble, GLdouble, GLdouble, GLdouble)) { 10697 SET_by_offset(disp, _gloffset_WindowPos4dMESA, fn); 10698 } 10699 10700 typedef void (GLAPIENTRYP _glptr_WindowPos4dvMESA)(const GLdouble *); 10701 #define CALL_WindowPos4dvMESA(disp, parameters) \ 10702 (* GET_WindowPos4dvMESA(disp)) parameters 10703 static inline _glptr_WindowPos4dvMESA GET_WindowPos4dvMESA(struct _glapi_table *disp) { 10704 return (_glptr_WindowPos4dvMESA) (GET_by_offset(disp, _gloffset_WindowPos4dvMESA)); 10705 } 10706 10707 static inline void SET_WindowPos4dvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLdouble *)) { 10708 SET_by_offset(disp, _gloffset_WindowPos4dvMESA, fn); 10709 } 10710 10711 typedef void (GLAPIENTRYP _glptr_WindowPos4fMESA)(GLfloat, GLfloat, GLfloat, GLfloat); 10712 #define CALL_WindowPos4fMESA(disp, parameters) \ 10713 (* GET_WindowPos4fMESA(disp)) parameters 10714 static inline _glptr_WindowPos4fMESA GET_WindowPos4fMESA(struct _glapi_table *disp) { 10715 return (_glptr_WindowPos4fMESA) (GET_by_offset(disp, _gloffset_WindowPos4fMESA)); 10716 } 10717 10718 static inline void SET_WindowPos4fMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLfloat, GLfloat, GLfloat, GLfloat)) { 10719 SET_by_offset(disp, _gloffset_WindowPos4fMESA, fn); 10720 } 10721 10722 typedef void (GLAPIENTRYP _glptr_WindowPos4fvMESA)(const GLfloat *); 10723 #define CALL_WindowPos4fvMESA(disp, parameters) \ 10724 (* GET_WindowPos4fvMESA(disp)) parameters 10725 static inline _glptr_WindowPos4fvMESA GET_WindowPos4fvMESA(struct _glapi_table *disp) { 10726 return (_glptr_WindowPos4fvMESA) (GET_by_offset(disp, _gloffset_WindowPos4fvMESA)); 10727 } 10728 10729 static inline void SET_WindowPos4fvMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLfloat *)) { 10730 SET_by_offset(disp, _gloffset_WindowPos4fvMESA, fn); 10731 } 10732 10733 typedef void (GLAPIENTRYP _glptr_WindowPos4iMESA)(GLint, GLint, GLint, GLint); 10734 #define CALL_WindowPos4iMESA(disp, parameters) \ 10735 (* GET_WindowPos4iMESA(disp)) parameters 10736 static inline _glptr_WindowPos4iMESA GET_WindowPos4iMESA(struct _glapi_table *disp) { 10737 return (_glptr_WindowPos4iMESA) (GET_by_offset(disp, _gloffset_WindowPos4iMESA)); 10738 } 10739 10740 static inline void SET_WindowPos4iMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 10741 SET_by_offset(disp, _gloffset_WindowPos4iMESA, fn); 10742 } 10743 10744 typedef void (GLAPIENTRYP _glptr_WindowPos4ivMESA)(const GLint *); 10745 #define CALL_WindowPos4ivMESA(disp, parameters) \ 10746 (* GET_WindowPos4ivMESA(disp)) parameters 10747 static inline _glptr_WindowPos4ivMESA GET_WindowPos4ivMESA(struct _glapi_table *disp) { 10748 return (_glptr_WindowPos4ivMESA) (GET_by_offset(disp, _gloffset_WindowPos4ivMESA)); 10749 } 10750 10751 static inline void SET_WindowPos4ivMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLint *)) { 10752 SET_by_offset(disp, _gloffset_WindowPos4ivMESA, fn); 10753 } 10754 10755 typedef void (GLAPIENTRYP _glptr_WindowPos4sMESA)(GLshort, GLshort, GLshort, GLshort); 10756 #define CALL_WindowPos4sMESA(disp, parameters) \ 10757 (* GET_WindowPos4sMESA(disp)) parameters 10758 static inline _glptr_WindowPos4sMESA GET_WindowPos4sMESA(struct _glapi_table *disp) { 10759 return (_glptr_WindowPos4sMESA) (GET_by_offset(disp, _gloffset_WindowPos4sMESA)); 10760 } 10761 10762 static inline void SET_WindowPos4sMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLshort, GLshort, GLshort, GLshort)) { 10763 SET_by_offset(disp, _gloffset_WindowPos4sMESA, fn); 10764 } 10765 10766 typedef void (GLAPIENTRYP _glptr_WindowPos4svMESA)(const GLshort *); 10767 #define CALL_WindowPos4svMESA(disp, parameters) \ 10768 (* GET_WindowPos4svMESA(disp)) parameters 10769 static inline _glptr_WindowPos4svMESA GET_WindowPos4svMESA(struct _glapi_table *disp) { 10770 return (_glptr_WindowPos4svMESA) (GET_by_offset(disp, _gloffset_WindowPos4svMESA)); 10771 } 10772 10773 static inline void SET_WindowPos4svMESA(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLshort *)) { 10774 SET_by_offset(disp, _gloffset_WindowPos4svMESA, fn); 10775 } 10776 10777 typedef void (GLAPIENTRYP _glptr_MultiModeDrawArraysIBM)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint); 10778 #define CALL_MultiModeDrawArraysIBM(disp, parameters) \ 10779 (* GET_MultiModeDrawArraysIBM(disp)) parameters 10780 static inline _glptr_MultiModeDrawArraysIBM GET_MultiModeDrawArraysIBM(struct _glapi_table *disp) { 10781 return (_glptr_MultiModeDrawArraysIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM)); 10782 } 10783 10784 static inline void SET_MultiModeDrawArraysIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLint *, const GLsizei *, GLsizei, GLint)) { 10785 SET_by_offset(disp, _gloffset_MultiModeDrawArraysIBM, fn); 10786 } 10787 10788 typedef void (GLAPIENTRYP _glptr_MultiModeDrawElementsIBM)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint); 10789 #define CALL_MultiModeDrawElementsIBM(disp, parameters) \ 10790 (* GET_MultiModeDrawElementsIBM(disp)) parameters 10791 static inline _glptr_MultiModeDrawElementsIBM GET_MultiModeDrawElementsIBM(struct _glapi_table *disp) { 10792 return (_glptr_MultiModeDrawElementsIBM) (GET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM)); 10793 } 10794 10795 static inline void SET_MultiModeDrawElementsIBM(struct _glapi_table *disp, void (GLAPIENTRYP fn)(const GLenum *, const GLsizei *, GLenum, const GLvoid * const *, GLsizei, GLint)) { 10796 SET_by_offset(disp, _gloffset_MultiModeDrawElementsIBM, fn); 10797 } 10798 10799 typedef GLboolean (GLAPIENTRYP _glptr_AreProgramsResidentNV)(GLsizei, const GLuint *, GLboolean *); 10800 #define CALL_AreProgramsResidentNV(disp, parameters) \ 10801 (* GET_AreProgramsResidentNV(disp)) parameters 10802 static inline _glptr_AreProgramsResidentNV GET_AreProgramsResidentNV(struct _glapi_table *disp) { 10803 return (_glptr_AreProgramsResidentNV) (GET_by_offset(disp, _gloffset_AreProgramsResidentNV)); 10804 } 10805 10806 static inline void SET_AreProgramsResidentNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLsizei, const GLuint *, GLboolean *)) { 10807 SET_by_offset(disp, _gloffset_AreProgramsResidentNV, fn); 10808 } 10809 10810 typedef void (GLAPIENTRYP _glptr_BindProgramNV)(GLenum, GLuint); 10811 #define CALL_BindProgramNV(disp, parameters) \ 10812 (* GET_BindProgramNV(disp)) parameters 10813 static inline _glptr_BindProgramNV GET_BindProgramNV(struct _glapi_table *disp) { 10814 return (_glptr_BindProgramNV) (GET_by_offset(disp, _gloffset_BindProgramNV)); 10815 } 10816 10817 static inline void SET_BindProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 10818 SET_by_offset(disp, _gloffset_BindProgramNV, fn); 10819 } 10820 10821 typedef void (GLAPIENTRYP _glptr_DeleteProgramsNV)(GLsizei, const GLuint *); 10822 #define CALL_DeleteProgramsNV(disp, parameters) \ 10823 (* GET_DeleteProgramsNV(disp)) parameters 10824 static inline _glptr_DeleteProgramsNV GET_DeleteProgramsNV(struct _glapi_table *disp) { 10825 return (_glptr_DeleteProgramsNV) (GET_by_offset(disp, _gloffset_DeleteProgramsNV)); 10826 } 10827 10828 static inline void SET_DeleteProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 10829 SET_by_offset(disp, _gloffset_DeleteProgramsNV, fn); 10830 } 10831 10832 typedef void (GLAPIENTRYP _glptr_ExecuteProgramNV)(GLenum, GLuint, const GLfloat *); 10833 #define CALL_ExecuteProgramNV(disp, parameters) \ 10834 (* GET_ExecuteProgramNV(disp)) parameters 10835 static inline _glptr_ExecuteProgramNV GET_ExecuteProgramNV(struct _glapi_table *disp) { 10836 return (_glptr_ExecuteProgramNV) (GET_by_offset(disp, _gloffset_ExecuteProgramNV)); 10837 } 10838 10839 static inline void SET_ExecuteProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, const GLfloat *)) { 10840 SET_by_offset(disp, _gloffset_ExecuteProgramNV, fn); 10841 } 10842 10843 typedef void (GLAPIENTRYP _glptr_GenProgramsNV)(GLsizei, GLuint *); 10844 #define CALL_GenProgramsNV(disp, parameters) \ 10845 (* GET_GenProgramsNV(disp)) parameters 10846 static inline _glptr_GenProgramsNV GET_GenProgramsNV(struct _glapi_table *disp) { 10847 return (_glptr_GenProgramsNV) (GET_by_offset(disp, _gloffset_GenProgramsNV)); 10848 } 10849 10850 static inline void SET_GenProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 10851 SET_by_offset(disp, _gloffset_GenProgramsNV, fn); 10852 } 10853 10854 typedef void (GLAPIENTRYP _glptr_GetProgramParameterdvNV)(GLenum, GLuint, GLenum, GLdouble *); 10855 #define CALL_GetProgramParameterdvNV(disp, parameters) \ 10856 (* GET_GetProgramParameterdvNV(disp)) parameters 10857 static inline _glptr_GetProgramParameterdvNV GET_GetProgramParameterdvNV(struct _glapi_table *disp) { 10858 return (_glptr_GetProgramParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterdvNV)); 10859 } 10860 10861 static inline void SET_GetProgramParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLdouble *)) { 10862 SET_by_offset(disp, _gloffset_GetProgramParameterdvNV, fn); 10863 } 10864 10865 typedef void (GLAPIENTRYP _glptr_GetProgramParameterfvNV)(GLenum, GLuint, GLenum, GLfloat *); 10866 #define CALL_GetProgramParameterfvNV(disp, parameters) \ 10867 (* GET_GetProgramParameterfvNV(disp)) parameters 10868 static inline _glptr_GetProgramParameterfvNV GET_GetProgramParameterfvNV(struct _glapi_table *disp) { 10869 return (_glptr_GetProgramParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramParameterfvNV)); 10870 } 10871 10872 static inline void SET_GetProgramParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLfloat *)) { 10873 SET_by_offset(disp, _gloffset_GetProgramParameterfvNV, fn); 10874 } 10875 10876 typedef void (GLAPIENTRYP _glptr_GetProgramStringNV)(GLuint, GLenum, GLubyte *); 10877 #define CALL_GetProgramStringNV(disp, parameters) \ 10878 (* GET_GetProgramStringNV(disp)) parameters 10879 static inline _glptr_GetProgramStringNV GET_GetProgramStringNV(struct _glapi_table *disp) { 10880 return (_glptr_GetProgramStringNV) (GET_by_offset(disp, _gloffset_GetProgramStringNV)); 10881 } 10882 10883 static inline void SET_GetProgramStringNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLubyte *)) { 10884 SET_by_offset(disp, _gloffset_GetProgramStringNV, fn); 10885 } 10886 10887 typedef void (GLAPIENTRYP _glptr_GetProgramivNV)(GLuint, GLenum, GLint *); 10888 #define CALL_GetProgramivNV(disp, parameters) \ 10889 (* GET_GetProgramivNV(disp)) parameters 10890 static inline _glptr_GetProgramivNV GET_GetProgramivNV(struct _glapi_table *disp) { 10891 return (_glptr_GetProgramivNV) (GET_by_offset(disp, _gloffset_GetProgramivNV)); 10892 } 10893 10894 static inline void SET_GetProgramivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 10895 SET_by_offset(disp, _gloffset_GetProgramivNV, fn); 10896 } 10897 10898 typedef void (GLAPIENTRYP _glptr_GetTrackMatrixivNV)(GLenum, GLuint, GLenum, GLint *); 10899 #define CALL_GetTrackMatrixivNV(disp, parameters) \ 10900 (* GET_GetTrackMatrixivNV(disp)) parameters 10901 static inline _glptr_GetTrackMatrixivNV GET_GetTrackMatrixivNV(struct _glapi_table *disp) { 10902 return (_glptr_GetTrackMatrixivNV) (GET_by_offset(disp, _gloffset_GetTrackMatrixivNV)); 10903 } 10904 10905 static inline void SET_GetTrackMatrixivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) { 10906 SET_by_offset(disp, _gloffset_GetTrackMatrixivNV, fn); 10907 } 10908 10909 typedef void (GLAPIENTRYP _glptr_GetVertexAttribPointervNV)(GLuint, GLenum, GLvoid **); 10910 #define CALL_GetVertexAttribPointervNV(disp, parameters) \ 10911 (* GET_GetVertexAttribPointervNV(disp)) parameters 10912 static inline _glptr_GetVertexAttribPointervNV GET_GetVertexAttribPointervNV(struct _glapi_table *disp) { 10913 return (_glptr_GetVertexAttribPointervNV) (GET_by_offset(disp, _gloffset_GetVertexAttribPointervNV)); 10914 } 10915 10916 static inline void SET_GetVertexAttribPointervNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLvoid **)) { 10917 SET_by_offset(disp, _gloffset_GetVertexAttribPointervNV, fn); 10918 } 10919 10920 typedef void (GLAPIENTRYP _glptr_GetVertexAttribdvNV)(GLuint, GLenum, GLdouble *); 10921 #define CALL_GetVertexAttribdvNV(disp, parameters) \ 10922 (* GET_GetVertexAttribdvNV(disp)) parameters 10923 static inline _glptr_GetVertexAttribdvNV GET_GetVertexAttribdvNV(struct _glapi_table *disp) { 10924 return (_glptr_GetVertexAttribdvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribdvNV)); 10925 } 10926 10927 static inline void SET_GetVertexAttribdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLdouble *)) { 10928 SET_by_offset(disp, _gloffset_GetVertexAttribdvNV, fn); 10929 } 10930 10931 typedef void (GLAPIENTRYP _glptr_GetVertexAttribfvNV)(GLuint, GLenum, GLfloat *); 10932 #define CALL_GetVertexAttribfvNV(disp, parameters) \ 10933 (* GET_GetVertexAttribfvNV(disp)) parameters 10934 static inline _glptr_GetVertexAttribfvNV GET_GetVertexAttribfvNV(struct _glapi_table *disp) { 10935 return (_glptr_GetVertexAttribfvNV) (GET_by_offset(disp, _gloffset_GetVertexAttribfvNV)); 10936 } 10937 10938 static inline void SET_GetVertexAttribfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLfloat *)) { 10939 SET_by_offset(disp, _gloffset_GetVertexAttribfvNV, fn); 10940 } 10941 10942 typedef void (GLAPIENTRYP _glptr_GetVertexAttribivNV)(GLuint, GLenum, GLint *); 10943 #define CALL_GetVertexAttribivNV(disp, parameters) \ 10944 (* GET_GetVertexAttribivNV(disp)) parameters 10945 static inline _glptr_GetVertexAttribivNV GET_GetVertexAttribivNV(struct _glapi_table *disp) { 10946 return (_glptr_GetVertexAttribivNV) (GET_by_offset(disp, _gloffset_GetVertexAttribivNV)); 10947 } 10948 10949 static inline void SET_GetVertexAttribivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 10950 SET_by_offset(disp, _gloffset_GetVertexAttribivNV, fn); 10951 } 10952 10953 typedef GLboolean (GLAPIENTRYP _glptr_IsProgramNV)(GLuint); 10954 #define CALL_IsProgramNV(disp, parameters) \ 10955 (* GET_IsProgramNV(disp)) parameters 10956 static inline _glptr_IsProgramNV GET_IsProgramNV(struct _glapi_table *disp) { 10957 return (_glptr_IsProgramNV) (GET_by_offset(disp, _gloffset_IsProgramNV)); 10958 } 10959 10960 static inline void SET_IsProgramNV(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 10961 SET_by_offset(disp, _gloffset_IsProgramNV, fn); 10962 } 10963 10964 typedef void (GLAPIENTRYP _glptr_LoadProgramNV)(GLenum, GLuint, GLsizei, const GLubyte *); 10965 #define CALL_LoadProgramNV(disp, parameters) \ 10966 (* GET_LoadProgramNV(disp)) parameters 10967 static inline _glptr_LoadProgramNV GET_LoadProgramNV(struct _glapi_table *disp) { 10968 return (_glptr_LoadProgramNV) (GET_by_offset(disp, _gloffset_LoadProgramNV)); 10969 } 10970 10971 static inline void SET_LoadProgramNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLubyte *)) { 10972 SET_by_offset(disp, _gloffset_LoadProgramNV, fn); 10973 } 10974 10975 typedef void (GLAPIENTRYP _glptr_ProgramParameters4dvNV)(GLenum, GLuint, GLsizei, const GLdouble *); 10976 #define CALL_ProgramParameters4dvNV(disp, parameters) \ 10977 (* GET_ProgramParameters4dvNV(disp)) parameters 10978 static inline _glptr_ProgramParameters4dvNV GET_ProgramParameters4dvNV(struct _glapi_table *disp) { 10979 return (_glptr_ProgramParameters4dvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4dvNV)); 10980 } 10981 10982 static inline void SET_ProgramParameters4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLdouble *)) { 10983 SET_by_offset(disp, _gloffset_ProgramParameters4dvNV, fn); 10984 } 10985 10986 typedef void (GLAPIENTRYP _glptr_ProgramParameters4fvNV)(GLenum, GLuint, GLsizei, const GLfloat *); 10987 #define CALL_ProgramParameters4fvNV(disp, parameters) \ 10988 (* GET_ProgramParameters4fvNV(disp)) parameters 10989 static inline _glptr_ProgramParameters4fvNV GET_ProgramParameters4fvNV(struct _glapi_table *disp) { 10990 return (_glptr_ProgramParameters4fvNV) (GET_by_offset(disp, _gloffset_ProgramParameters4fvNV)); 10991 } 10992 10993 static inline void SET_ProgramParameters4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) { 10994 SET_by_offset(disp, _gloffset_ProgramParameters4fvNV, fn); 10995 } 10996 10997 typedef void (GLAPIENTRYP _glptr_RequestResidentProgramsNV)(GLsizei, const GLuint *); 10998 #define CALL_RequestResidentProgramsNV(disp, parameters) \ 10999 (* GET_RequestResidentProgramsNV(disp)) parameters 11000 static inline _glptr_RequestResidentProgramsNV GET_RequestResidentProgramsNV(struct _glapi_table *disp) { 11001 return (_glptr_RequestResidentProgramsNV) (GET_by_offset(disp, _gloffset_RequestResidentProgramsNV)); 11002 } 11003 11004 static inline void SET_RequestResidentProgramsNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 11005 SET_by_offset(disp, _gloffset_RequestResidentProgramsNV, fn); 11006 } 11007 11008 typedef void (GLAPIENTRYP _glptr_TrackMatrixNV)(GLenum, GLuint, GLenum, GLenum); 11009 #define CALL_TrackMatrixNV(disp, parameters) \ 11010 (* GET_TrackMatrixNV(disp)) parameters 11011 static inline _glptr_TrackMatrixNV GET_TrackMatrixNV(struct _glapi_table *disp) { 11012 return (_glptr_TrackMatrixNV) (GET_by_offset(disp, _gloffset_TrackMatrixNV)); 11013 } 11014 11015 static inline void SET_TrackMatrixNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLenum)) { 11016 SET_by_offset(disp, _gloffset_TrackMatrixNV, fn); 11017 } 11018 11019 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dNV)(GLuint, GLdouble); 11020 #define CALL_VertexAttrib1dNV(disp, parameters) \ 11021 (* GET_VertexAttrib1dNV(disp)) parameters 11022 static inline _glptr_VertexAttrib1dNV GET_VertexAttrib1dNV(struct _glapi_table *disp) { 11023 return (_glptr_VertexAttrib1dNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dNV)); 11024 } 11025 11026 static inline void SET_VertexAttrib1dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble)) { 11027 SET_by_offset(disp, _gloffset_VertexAttrib1dNV, fn); 11028 } 11029 11030 typedef void (GLAPIENTRYP _glptr_VertexAttrib1dvNV)(GLuint, const GLdouble *); 11031 #define CALL_VertexAttrib1dvNV(disp, parameters) \ 11032 (* GET_VertexAttrib1dvNV(disp)) parameters 11033 static inline _glptr_VertexAttrib1dvNV GET_VertexAttrib1dvNV(struct _glapi_table *disp) { 11034 return (_glptr_VertexAttrib1dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1dvNV)); 11035 } 11036 11037 static inline void SET_VertexAttrib1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 11038 SET_by_offset(disp, _gloffset_VertexAttrib1dvNV, fn); 11039 } 11040 11041 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fNV)(GLuint, GLfloat); 11042 #define CALL_VertexAttrib1fNV(disp, parameters) \ 11043 (* GET_VertexAttrib1fNV(disp)) parameters 11044 static inline _glptr_VertexAttrib1fNV GET_VertexAttrib1fNV(struct _glapi_table *disp) { 11045 return (_glptr_VertexAttrib1fNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fNV)); 11046 } 11047 11048 static inline void SET_VertexAttrib1fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat)) { 11049 SET_by_offset(disp, _gloffset_VertexAttrib1fNV, fn); 11050 } 11051 11052 typedef void (GLAPIENTRYP _glptr_VertexAttrib1fvNV)(GLuint, const GLfloat *); 11053 #define CALL_VertexAttrib1fvNV(disp, parameters) \ 11054 (* GET_VertexAttrib1fvNV(disp)) parameters 11055 static inline _glptr_VertexAttrib1fvNV GET_VertexAttrib1fvNV(struct _glapi_table *disp) { 11056 return (_glptr_VertexAttrib1fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib1fvNV)); 11057 } 11058 11059 static inline void SET_VertexAttrib1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 11060 SET_by_offset(disp, _gloffset_VertexAttrib1fvNV, fn); 11061 } 11062 11063 typedef void (GLAPIENTRYP _glptr_VertexAttrib1sNV)(GLuint, GLshort); 11064 #define CALL_VertexAttrib1sNV(disp, parameters) \ 11065 (* GET_VertexAttrib1sNV(disp)) parameters 11066 static inline _glptr_VertexAttrib1sNV GET_VertexAttrib1sNV(struct _glapi_table *disp) { 11067 return (_glptr_VertexAttrib1sNV) (GET_by_offset(disp, _gloffset_VertexAttrib1sNV)); 11068 } 11069 11070 static inline void SET_VertexAttrib1sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort)) { 11071 SET_by_offset(disp, _gloffset_VertexAttrib1sNV, fn); 11072 } 11073 11074 typedef void (GLAPIENTRYP _glptr_VertexAttrib1svNV)(GLuint, const GLshort *); 11075 #define CALL_VertexAttrib1svNV(disp, parameters) \ 11076 (* GET_VertexAttrib1svNV(disp)) parameters 11077 static inline _glptr_VertexAttrib1svNV GET_VertexAttrib1svNV(struct _glapi_table *disp) { 11078 return (_glptr_VertexAttrib1svNV) (GET_by_offset(disp, _gloffset_VertexAttrib1svNV)); 11079 } 11080 11081 static inline void SET_VertexAttrib1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 11082 SET_by_offset(disp, _gloffset_VertexAttrib1svNV, fn); 11083 } 11084 11085 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dNV)(GLuint, GLdouble, GLdouble); 11086 #define CALL_VertexAttrib2dNV(disp, parameters) \ 11087 (* GET_VertexAttrib2dNV(disp)) parameters 11088 static inline _glptr_VertexAttrib2dNV GET_VertexAttrib2dNV(struct _glapi_table *disp) { 11089 return (_glptr_VertexAttrib2dNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dNV)); 11090 } 11091 11092 static inline void SET_VertexAttrib2dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble)) { 11093 SET_by_offset(disp, _gloffset_VertexAttrib2dNV, fn); 11094 } 11095 11096 typedef void (GLAPIENTRYP _glptr_VertexAttrib2dvNV)(GLuint, const GLdouble *); 11097 #define CALL_VertexAttrib2dvNV(disp, parameters) \ 11098 (* GET_VertexAttrib2dvNV(disp)) parameters 11099 static inline _glptr_VertexAttrib2dvNV GET_VertexAttrib2dvNV(struct _glapi_table *disp) { 11100 return (_glptr_VertexAttrib2dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2dvNV)); 11101 } 11102 11103 static inline void SET_VertexAttrib2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 11104 SET_by_offset(disp, _gloffset_VertexAttrib2dvNV, fn); 11105 } 11106 11107 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fNV)(GLuint, GLfloat, GLfloat); 11108 #define CALL_VertexAttrib2fNV(disp, parameters) \ 11109 (* GET_VertexAttrib2fNV(disp)) parameters 11110 static inline _glptr_VertexAttrib2fNV GET_VertexAttrib2fNV(struct _glapi_table *disp) { 11111 return (_glptr_VertexAttrib2fNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fNV)); 11112 } 11113 11114 static inline void SET_VertexAttrib2fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat)) { 11115 SET_by_offset(disp, _gloffset_VertexAttrib2fNV, fn); 11116 } 11117 11118 typedef void (GLAPIENTRYP _glptr_VertexAttrib2fvNV)(GLuint, const GLfloat *); 11119 #define CALL_VertexAttrib2fvNV(disp, parameters) \ 11120 (* GET_VertexAttrib2fvNV(disp)) parameters 11121 static inline _glptr_VertexAttrib2fvNV GET_VertexAttrib2fvNV(struct _glapi_table *disp) { 11122 return (_glptr_VertexAttrib2fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib2fvNV)); 11123 } 11124 11125 static inline void SET_VertexAttrib2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 11126 SET_by_offset(disp, _gloffset_VertexAttrib2fvNV, fn); 11127 } 11128 11129 typedef void (GLAPIENTRYP _glptr_VertexAttrib2sNV)(GLuint, GLshort, GLshort); 11130 #define CALL_VertexAttrib2sNV(disp, parameters) \ 11131 (* GET_VertexAttrib2sNV(disp)) parameters 11132 static inline _glptr_VertexAttrib2sNV GET_VertexAttrib2sNV(struct _glapi_table *disp) { 11133 return (_glptr_VertexAttrib2sNV) (GET_by_offset(disp, _gloffset_VertexAttrib2sNV)); 11134 } 11135 11136 static inline void SET_VertexAttrib2sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort)) { 11137 SET_by_offset(disp, _gloffset_VertexAttrib2sNV, fn); 11138 } 11139 11140 typedef void (GLAPIENTRYP _glptr_VertexAttrib2svNV)(GLuint, const GLshort *); 11141 #define CALL_VertexAttrib2svNV(disp, parameters) \ 11142 (* GET_VertexAttrib2svNV(disp)) parameters 11143 static inline _glptr_VertexAttrib2svNV GET_VertexAttrib2svNV(struct _glapi_table *disp) { 11144 return (_glptr_VertexAttrib2svNV) (GET_by_offset(disp, _gloffset_VertexAttrib2svNV)); 11145 } 11146 11147 static inline void SET_VertexAttrib2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 11148 SET_by_offset(disp, _gloffset_VertexAttrib2svNV, fn); 11149 } 11150 11151 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dNV)(GLuint, GLdouble, GLdouble, GLdouble); 11152 #define CALL_VertexAttrib3dNV(disp, parameters) \ 11153 (* GET_VertexAttrib3dNV(disp)) parameters 11154 static inline _glptr_VertexAttrib3dNV GET_VertexAttrib3dNV(struct _glapi_table *disp) { 11155 return (_glptr_VertexAttrib3dNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dNV)); 11156 } 11157 11158 static inline void SET_VertexAttrib3dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble)) { 11159 SET_by_offset(disp, _gloffset_VertexAttrib3dNV, fn); 11160 } 11161 11162 typedef void (GLAPIENTRYP _glptr_VertexAttrib3dvNV)(GLuint, const GLdouble *); 11163 #define CALL_VertexAttrib3dvNV(disp, parameters) \ 11164 (* GET_VertexAttrib3dvNV(disp)) parameters 11165 static inline _glptr_VertexAttrib3dvNV GET_VertexAttrib3dvNV(struct _glapi_table *disp) { 11166 return (_glptr_VertexAttrib3dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3dvNV)); 11167 } 11168 11169 static inline void SET_VertexAttrib3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 11170 SET_by_offset(disp, _gloffset_VertexAttrib3dvNV, fn); 11171 } 11172 11173 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fNV)(GLuint, GLfloat, GLfloat, GLfloat); 11174 #define CALL_VertexAttrib3fNV(disp, parameters) \ 11175 (* GET_VertexAttrib3fNV(disp)) parameters 11176 static inline _glptr_VertexAttrib3fNV GET_VertexAttrib3fNV(struct _glapi_table *disp) { 11177 return (_glptr_VertexAttrib3fNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fNV)); 11178 } 11179 11180 static inline void SET_VertexAttrib3fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat)) { 11181 SET_by_offset(disp, _gloffset_VertexAttrib3fNV, fn); 11182 } 11183 11184 typedef void (GLAPIENTRYP _glptr_VertexAttrib3fvNV)(GLuint, const GLfloat *); 11185 #define CALL_VertexAttrib3fvNV(disp, parameters) \ 11186 (* GET_VertexAttrib3fvNV(disp)) parameters 11187 static inline _glptr_VertexAttrib3fvNV GET_VertexAttrib3fvNV(struct _glapi_table *disp) { 11188 return (_glptr_VertexAttrib3fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib3fvNV)); 11189 } 11190 11191 static inline void SET_VertexAttrib3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 11192 SET_by_offset(disp, _gloffset_VertexAttrib3fvNV, fn); 11193 } 11194 11195 typedef void (GLAPIENTRYP _glptr_VertexAttrib3sNV)(GLuint, GLshort, GLshort, GLshort); 11196 #define CALL_VertexAttrib3sNV(disp, parameters) \ 11197 (* GET_VertexAttrib3sNV(disp)) parameters 11198 static inline _glptr_VertexAttrib3sNV GET_VertexAttrib3sNV(struct _glapi_table *disp) { 11199 return (_glptr_VertexAttrib3sNV) (GET_by_offset(disp, _gloffset_VertexAttrib3sNV)); 11200 } 11201 11202 static inline void SET_VertexAttrib3sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort)) { 11203 SET_by_offset(disp, _gloffset_VertexAttrib3sNV, fn); 11204 } 11205 11206 typedef void (GLAPIENTRYP _glptr_VertexAttrib3svNV)(GLuint, const GLshort *); 11207 #define CALL_VertexAttrib3svNV(disp, parameters) \ 11208 (* GET_VertexAttrib3svNV(disp)) parameters 11209 static inline _glptr_VertexAttrib3svNV GET_VertexAttrib3svNV(struct _glapi_table *disp) { 11210 return (_glptr_VertexAttrib3svNV) (GET_by_offset(disp, _gloffset_VertexAttrib3svNV)); 11211 } 11212 11213 static inline void SET_VertexAttrib3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 11214 SET_by_offset(disp, _gloffset_VertexAttrib3svNV, fn); 11215 } 11216 11217 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dNV)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble); 11218 #define CALL_VertexAttrib4dNV(disp, parameters) \ 11219 (* GET_VertexAttrib4dNV(disp)) parameters 11220 static inline _glptr_VertexAttrib4dNV GET_VertexAttrib4dNV(struct _glapi_table *disp) { 11221 return (_glptr_VertexAttrib4dNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dNV)); 11222 } 11223 11224 static inline void SET_VertexAttrib4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble)) { 11225 SET_by_offset(disp, _gloffset_VertexAttrib4dNV, fn); 11226 } 11227 11228 typedef void (GLAPIENTRYP _glptr_VertexAttrib4dvNV)(GLuint, const GLdouble *); 11229 #define CALL_VertexAttrib4dvNV(disp, parameters) \ 11230 (* GET_VertexAttrib4dvNV(disp)) parameters 11231 static inline _glptr_VertexAttrib4dvNV GET_VertexAttrib4dvNV(struct _glapi_table *disp) { 11232 return (_glptr_VertexAttrib4dvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4dvNV)); 11233 } 11234 11235 static inline void SET_VertexAttrib4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLdouble *)) { 11236 SET_by_offset(disp, _gloffset_VertexAttrib4dvNV, fn); 11237 } 11238 11239 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fNV)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat); 11240 #define CALL_VertexAttrib4fNV(disp, parameters) \ 11241 (* GET_VertexAttrib4fNV(disp)) parameters 11242 static inline _glptr_VertexAttrib4fNV GET_VertexAttrib4fNV(struct _glapi_table *disp) { 11243 return (_glptr_VertexAttrib4fNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fNV)); 11244 } 11245 11246 static inline void SET_VertexAttrib4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) { 11247 SET_by_offset(disp, _gloffset_VertexAttrib4fNV, fn); 11248 } 11249 11250 typedef void (GLAPIENTRYP _glptr_VertexAttrib4fvNV)(GLuint, const GLfloat *); 11251 #define CALL_VertexAttrib4fvNV(disp, parameters) \ 11252 (* GET_VertexAttrib4fvNV(disp)) parameters 11253 static inline _glptr_VertexAttrib4fvNV GET_VertexAttrib4fvNV(struct _glapi_table *disp) { 11254 return (_glptr_VertexAttrib4fvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4fvNV)); 11255 } 11256 11257 static inline void SET_VertexAttrib4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 11258 SET_by_offset(disp, _gloffset_VertexAttrib4fvNV, fn); 11259 } 11260 11261 typedef void (GLAPIENTRYP _glptr_VertexAttrib4sNV)(GLuint, GLshort, GLshort, GLshort, GLshort); 11262 #define CALL_VertexAttrib4sNV(disp, parameters) \ 11263 (* GET_VertexAttrib4sNV(disp)) parameters 11264 static inline _glptr_VertexAttrib4sNV GET_VertexAttrib4sNV(struct _glapi_table *disp) { 11265 return (_glptr_VertexAttrib4sNV) (GET_by_offset(disp, _gloffset_VertexAttrib4sNV)); 11266 } 11267 11268 static inline void SET_VertexAttrib4sNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLshort, GLshort, GLshort, GLshort)) { 11269 SET_by_offset(disp, _gloffset_VertexAttrib4sNV, fn); 11270 } 11271 11272 typedef void (GLAPIENTRYP _glptr_VertexAttrib4svNV)(GLuint, const GLshort *); 11273 #define CALL_VertexAttrib4svNV(disp, parameters) \ 11274 (* GET_VertexAttrib4svNV(disp)) parameters 11275 static inline _glptr_VertexAttrib4svNV GET_VertexAttrib4svNV(struct _glapi_table *disp) { 11276 return (_glptr_VertexAttrib4svNV) (GET_by_offset(disp, _gloffset_VertexAttrib4svNV)); 11277 } 11278 11279 static inline void SET_VertexAttrib4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 11280 SET_by_offset(disp, _gloffset_VertexAttrib4svNV, fn); 11281 } 11282 11283 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubNV)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte); 11284 #define CALL_VertexAttrib4ubNV(disp, parameters) \ 11285 (* GET_VertexAttrib4ubNV(disp)) parameters 11286 static inline _glptr_VertexAttrib4ubNV GET_VertexAttrib4ubNV(struct _glapi_table *disp) { 11287 return (_glptr_VertexAttrib4ubNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubNV)); 11288 } 11289 11290 static inline void SET_VertexAttrib4ubNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte)) { 11291 SET_by_offset(disp, _gloffset_VertexAttrib4ubNV, fn); 11292 } 11293 11294 typedef void (GLAPIENTRYP _glptr_VertexAttrib4ubvNV)(GLuint, const GLubyte *); 11295 #define CALL_VertexAttrib4ubvNV(disp, parameters) \ 11296 (* GET_VertexAttrib4ubvNV(disp)) parameters 11297 static inline _glptr_VertexAttrib4ubvNV GET_VertexAttrib4ubvNV(struct _glapi_table *disp) { 11298 return (_glptr_VertexAttrib4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttrib4ubvNV)); 11299 } 11300 11301 static inline void SET_VertexAttrib4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) { 11302 SET_by_offset(disp, _gloffset_VertexAttrib4ubvNV, fn); 11303 } 11304 11305 typedef void (GLAPIENTRYP _glptr_VertexAttribPointerNV)(GLuint, GLint, GLenum, GLsizei, const GLvoid *); 11306 #define CALL_VertexAttribPointerNV(disp, parameters) \ 11307 (* GET_VertexAttribPointerNV(disp)) parameters 11308 static inline _glptr_VertexAttribPointerNV GET_VertexAttribPointerNV(struct _glapi_table *disp) { 11309 return (_glptr_VertexAttribPointerNV) (GET_by_offset(disp, _gloffset_VertexAttribPointerNV)); 11310 } 11311 11312 static inline void SET_VertexAttribPointerNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) { 11313 SET_by_offset(disp, _gloffset_VertexAttribPointerNV, fn); 11314 } 11315 11316 typedef void (GLAPIENTRYP _glptr_VertexAttribs1dvNV)(GLuint, GLsizei, const GLdouble *); 11317 #define CALL_VertexAttribs1dvNV(disp, parameters) \ 11318 (* GET_VertexAttribs1dvNV(disp)) parameters 11319 static inline _glptr_VertexAttribs1dvNV GET_VertexAttribs1dvNV(struct _glapi_table *disp) { 11320 return (_glptr_VertexAttribs1dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1dvNV)); 11321 } 11322 11323 static inline void SET_VertexAttribs1dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) { 11324 SET_by_offset(disp, _gloffset_VertexAttribs1dvNV, fn); 11325 } 11326 11327 typedef void (GLAPIENTRYP _glptr_VertexAttribs1fvNV)(GLuint, GLsizei, const GLfloat *); 11328 #define CALL_VertexAttribs1fvNV(disp, parameters) \ 11329 (* GET_VertexAttribs1fvNV(disp)) parameters 11330 static inline _glptr_VertexAttribs1fvNV GET_VertexAttribs1fvNV(struct _glapi_table *disp) { 11331 return (_glptr_VertexAttribs1fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs1fvNV)); 11332 } 11333 11334 static inline void SET_VertexAttribs1fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) { 11335 SET_by_offset(disp, _gloffset_VertexAttribs1fvNV, fn); 11336 } 11337 11338 typedef void (GLAPIENTRYP _glptr_VertexAttribs1svNV)(GLuint, GLsizei, const GLshort *); 11339 #define CALL_VertexAttribs1svNV(disp, parameters) \ 11340 (* GET_VertexAttribs1svNV(disp)) parameters 11341 static inline _glptr_VertexAttribs1svNV GET_VertexAttribs1svNV(struct _glapi_table *disp) { 11342 return (_glptr_VertexAttribs1svNV) (GET_by_offset(disp, _gloffset_VertexAttribs1svNV)); 11343 } 11344 11345 static inline void SET_VertexAttribs1svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) { 11346 SET_by_offset(disp, _gloffset_VertexAttribs1svNV, fn); 11347 } 11348 11349 typedef void (GLAPIENTRYP _glptr_VertexAttribs2dvNV)(GLuint, GLsizei, const GLdouble *); 11350 #define CALL_VertexAttribs2dvNV(disp, parameters) \ 11351 (* GET_VertexAttribs2dvNV(disp)) parameters 11352 static inline _glptr_VertexAttribs2dvNV GET_VertexAttribs2dvNV(struct _glapi_table *disp) { 11353 return (_glptr_VertexAttribs2dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2dvNV)); 11354 } 11355 11356 static inline void SET_VertexAttribs2dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) { 11357 SET_by_offset(disp, _gloffset_VertexAttribs2dvNV, fn); 11358 } 11359 11360 typedef void (GLAPIENTRYP _glptr_VertexAttribs2fvNV)(GLuint, GLsizei, const GLfloat *); 11361 #define CALL_VertexAttribs2fvNV(disp, parameters) \ 11362 (* GET_VertexAttribs2fvNV(disp)) parameters 11363 static inline _glptr_VertexAttribs2fvNV GET_VertexAttribs2fvNV(struct _glapi_table *disp) { 11364 return (_glptr_VertexAttribs2fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs2fvNV)); 11365 } 11366 11367 static inline void SET_VertexAttribs2fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) { 11368 SET_by_offset(disp, _gloffset_VertexAttribs2fvNV, fn); 11369 } 11370 11371 typedef void (GLAPIENTRYP _glptr_VertexAttribs2svNV)(GLuint, GLsizei, const GLshort *); 11372 #define CALL_VertexAttribs2svNV(disp, parameters) \ 11373 (* GET_VertexAttribs2svNV(disp)) parameters 11374 static inline _glptr_VertexAttribs2svNV GET_VertexAttribs2svNV(struct _glapi_table *disp) { 11375 return (_glptr_VertexAttribs2svNV) (GET_by_offset(disp, _gloffset_VertexAttribs2svNV)); 11376 } 11377 11378 static inline void SET_VertexAttribs2svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) { 11379 SET_by_offset(disp, _gloffset_VertexAttribs2svNV, fn); 11380 } 11381 11382 typedef void (GLAPIENTRYP _glptr_VertexAttribs3dvNV)(GLuint, GLsizei, const GLdouble *); 11383 #define CALL_VertexAttribs3dvNV(disp, parameters) \ 11384 (* GET_VertexAttribs3dvNV(disp)) parameters 11385 static inline _glptr_VertexAttribs3dvNV GET_VertexAttribs3dvNV(struct _glapi_table *disp) { 11386 return (_glptr_VertexAttribs3dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3dvNV)); 11387 } 11388 11389 static inline void SET_VertexAttribs3dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) { 11390 SET_by_offset(disp, _gloffset_VertexAttribs3dvNV, fn); 11391 } 11392 11393 typedef void (GLAPIENTRYP _glptr_VertexAttribs3fvNV)(GLuint, GLsizei, const GLfloat *); 11394 #define CALL_VertexAttribs3fvNV(disp, parameters) \ 11395 (* GET_VertexAttribs3fvNV(disp)) parameters 11396 static inline _glptr_VertexAttribs3fvNV GET_VertexAttribs3fvNV(struct _glapi_table *disp) { 11397 return (_glptr_VertexAttribs3fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs3fvNV)); 11398 } 11399 11400 static inline void SET_VertexAttribs3fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) { 11401 SET_by_offset(disp, _gloffset_VertexAttribs3fvNV, fn); 11402 } 11403 11404 typedef void (GLAPIENTRYP _glptr_VertexAttribs3svNV)(GLuint, GLsizei, const GLshort *); 11405 #define CALL_VertexAttribs3svNV(disp, parameters) \ 11406 (* GET_VertexAttribs3svNV(disp)) parameters 11407 static inline _glptr_VertexAttribs3svNV GET_VertexAttribs3svNV(struct _glapi_table *disp) { 11408 return (_glptr_VertexAttribs3svNV) (GET_by_offset(disp, _gloffset_VertexAttribs3svNV)); 11409 } 11410 11411 static inline void SET_VertexAttribs3svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) { 11412 SET_by_offset(disp, _gloffset_VertexAttribs3svNV, fn); 11413 } 11414 11415 typedef void (GLAPIENTRYP _glptr_VertexAttribs4dvNV)(GLuint, GLsizei, const GLdouble *); 11416 #define CALL_VertexAttribs4dvNV(disp, parameters) \ 11417 (* GET_VertexAttribs4dvNV(disp)) parameters 11418 static inline _glptr_VertexAttribs4dvNV GET_VertexAttribs4dvNV(struct _glapi_table *disp) { 11419 return (_glptr_VertexAttribs4dvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4dvNV)); 11420 } 11421 11422 static inline void SET_VertexAttribs4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLdouble *)) { 11423 SET_by_offset(disp, _gloffset_VertexAttribs4dvNV, fn); 11424 } 11425 11426 typedef void (GLAPIENTRYP _glptr_VertexAttribs4fvNV)(GLuint, GLsizei, const GLfloat *); 11427 #define CALL_VertexAttribs4fvNV(disp, parameters) \ 11428 (* GET_VertexAttribs4fvNV(disp)) parameters 11429 static inline _glptr_VertexAttribs4fvNV GET_VertexAttribs4fvNV(struct _glapi_table *disp) { 11430 return (_glptr_VertexAttribs4fvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4fvNV)); 11431 } 11432 11433 static inline void SET_VertexAttribs4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) { 11434 SET_by_offset(disp, _gloffset_VertexAttribs4fvNV, fn); 11435 } 11436 11437 typedef void (GLAPIENTRYP _glptr_VertexAttribs4svNV)(GLuint, GLsizei, const GLshort *); 11438 #define CALL_VertexAttribs4svNV(disp, parameters) \ 11439 (* GET_VertexAttribs4svNV(disp)) parameters 11440 static inline _glptr_VertexAttribs4svNV GET_VertexAttribs4svNV(struct _glapi_table *disp) { 11441 return (_glptr_VertexAttribs4svNV) (GET_by_offset(disp, _gloffset_VertexAttribs4svNV)); 11442 } 11443 11444 static inline void SET_VertexAttribs4svNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLshort *)) { 11445 SET_by_offset(disp, _gloffset_VertexAttribs4svNV, fn); 11446 } 11447 11448 typedef void (GLAPIENTRYP _glptr_VertexAttribs4ubvNV)(GLuint, GLsizei, const GLubyte *); 11449 #define CALL_VertexAttribs4ubvNV(disp, parameters) \ 11450 (* GET_VertexAttribs4ubvNV(disp)) parameters 11451 static inline _glptr_VertexAttribs4ubvNV GET_VertexAttribs4ubvNV(struct _glapi_table *disp) { 11452 return (_glptr_VertexAttribs4ubvNV) (GET_by_offset(disp, _gloffset_VertexAttribs4ubvNV)); 11453 } 11454 11455 static inline void SET_VertexAttribs4ubvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *)) { 11456 SET_by_offset(disp, _gloffset_VertexAttribs4ubvNV, fn); 11457 } 11458 11459 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterfvATI)(GLenum, GLfloat *); 11460 #define CALL_GetTexBumpParameterfvATI(disp, parameters) \ 11461 (* GET_GetTexBumpParameterfvATI(disp)) parameters 11462 static inline _glptr_GetTexBumpParameterfvATI GET_GetTexBumpParameterfvATI(struct _glapi_table *disp) { 11463 return (_glptr_GetTexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI)); 11464 } 11465 11466 static inline void SET_GetTexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLfloat *)) { 11467 SET_by_offset(disp, _gloffset_GetTexBumpParameterfvATI, fn); 11468 } 11469 11470 typedef void (GLAPIENTRYP _glptr_GetTexBumpParameterivATI)(GLenum, GLint *); 11471 #define CALL_GetTexBumpParameterivATI(disp, parameters) \ 11472 (* GET_GetTexBumpParameterivATI(disp)) parameters 11473 static inline _glptr_GetTexBumpParameterivATI GET_GetTexBumpParameterivATI(struct _glapi_table *disp) { 11474 return (_glptr_GetTexBumpParameterivATI) (GET_by_offset(disp, _gloffset_GetTexBumpParameterivATI)); 11475 } 11476 11477 static inline void SET_GetTexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint *)) { 11478 SET_by_offset(disp, _gloffset_GetTexBumpParameterivATI, fn); 11479 } 11480 11481 typedef void (GLAPIENTRYP _glptr_TexBumpParameterfvATI)(GLenum, const GLfloat *); 11482 #define CALL_TexBumpParameterfvATI(disp, parameters) \ 11483 (* GET_TexBumpParameterfvATI(disp)) parameters 11484 static inline _glptr_TexBumpParameterfvATI GET_TexBumpParameterfvATI(struct _glapi_table *disp) { 11485 return (_glptr_TexBumpParameterfvATI) (GET_by_offset(disp, _gloffset_TexBumpParameterfvATI)); 11486 } 11487 11488 static inline void SET_TexBumpParameterfvATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLfloat *)) { 11489 SET_by_offset(disp, _gloffset_TexBumpParameterfvATI, fn); 11490 } 11491 11492 typedef void (GLAPIENTRYP _glptr_TexBumpParameterivATI)(GLenum, const GLint *); 11493 #define CALL_TexBumpParameterivATI(disp, parameters) \ 11494 (* GET_TexBumpParameterivATI(disp)) parameters 11495 static inline _glptr_TexBumpParameterivATI GET_TexBumpParameterivATI(struct _glapi_table *disp) { 11496 return (_glptr_TexBumpParameterivATI) (GET_by_offset(disp, _gloffset_TexBumpParameterivATI)); 11497 } 11498 11499 static inline void SET_TexBumpParameterivATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 11500 SET_by_offset(disp, _gloffset_TexBumpParameterivATI, fn); 11501 } 11502 11503 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp1ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint); 11504 #define CALL_AlphaFragmentOp1ATI(disp, parameters) \ 11505 (* GET_AlphaFragmentOp1ATI(disp)) parameters 11506 static inline _glptr_AlphaFragmentOp1ATI GET_AlphaFragmentOp1ATI(struct _glapi_table *disp) { 11507 return (_glptr_AlphaFragmentOp1ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp1ATI)); 11508 } 11509 11510 static inline void SET_AlphaFragmentOp1ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint)) { 11511 SET_by_offset(disp, _gloffset_AlphaFragmentOp1ATI, fn); 11512 } 11513 11514 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp2ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); 11515 #define CALL_AlphaFragmentOp2ATI(disp, parameters) \ 11516 (* GET_AlphaFragmentOp2ATI(disp)) parameters 11517 static inline _glptr_AlphaFragmentOp2ATI GET_AlphaFragmentOp2ATI(struct _glapi_table *disp) { 11518 return (_glptr_AlphaFragmentOp2ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp2ATI)); 11519 } 11520 11521 static inline void SET_AlphaFragmentOp2ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) { 11522 SET_by_offset(disp, _gloffset_AlphaFragmentOp2ATI, fn); 11523 } 11524 11525 typedef void (GLAPIENTRYP _glptr_AlphaFragmentOp3ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); 11526 #define CALL_AlphaFragmentOp3ATI(disp, parameters) \ 11527 (* GET_AlphaFragmentOp3ATI(disp)) parameters 11528 static inline _glptr_AlphaFragmentOp3ATI GET_AlphaFragmentOp3ATI(struct _glapi_table *disp) { 11529 return (_glptr_AlphaFragmentOp3ATI) (GET_by_offset(disp, _gloffset_AlphaFragmentOp3ATI)); 11530 } 11531 11532 static inline void SET_AlphaFragmentOp3ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) { 11533 SET_by_offset(disp, _gloffset_AlphaFragmentOp3ATI, fn); 11534 } 11535 11536 typedef void (GLAPIENTRYP _glptr_BeginFragmentShaderATI)(void); 11537 #define CALL_BeginFragmentShaderATI(disp, parameters) \ 11538 (* GET_BeginFragmentShaderATI(disp)) parameters 11539 static inline _glptr_BeginFragmentShaderATI GET_BeginFragmentShaderATI(struct _glapi_table *disp) { 11540 return (_glptr_BeginFragmentShaderATI) (GET_by_offset(disp, _gloffset_BeginFragmentShaderATI)); 11541 } 11542 11543 static inline void SET_BeginFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 11544 SET_by_offset(disp, _gloffset_BeginFragmentShaderATI, fn); 11545 } 11546 11547 typedef void (GLAPIENTRYP _glptr_BindFragmentShaderATI)(GLuint); 11548 #define CALL_BindFragmentShaderATI(disp, parameters) \ 11549 (* GET_BindFragmentShaderATI(disp)) parameters 11550 static inline _glptr_BindFragmentShaderATI GET_BindFragmentShaderATI(struct _glapi_table *disp) { 11551 return (_glptr_BindFragmentShaderATI) (GET_by_offset(disp, _gloffset_BindFragmentShaderATI)); 11552 } 11553 11554 static inline void SET_BindFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 11555 SET_by_offset(disp, _gloffset_BindFragmentShaderATI, fn); 11556 } 11557 11558 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp1ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); 11559 #define CALL_ColorFragmentOp1ATI(disp, parameters) \ 11560 (* GET_ColorFragmentOp1ATI(disp)) parameters 11561 static inline _glptr_ColorFragmentOp1ATI GET_ColorFragmentOp1ATI(struct _glapi_table *disp) { 11562 return (_glptr_ColorFragmentOp1ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp1ATI)); 11563 } 11564 11565 static inline void SET_ColorFragmentOp1ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) { 11566 SET_by_offset(disp, _gloffset_ColorFragmentOp1ATI, fn); 11567 } 11568 11569 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp2ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); 11570 #define CALL_ColorFragmentOp2ATI(disp, parameters) \ 11571 (* GET_ColorFragmentOp2ATI(disp)) parameters 11572 static inline _glptr_ColorFragmentOp2ATI GET_ColorFragmentOp2ATI(struct _glapi_table *disp) { 11573 return (_glptr_ColorFragmentOp2ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp2ATI)); 11574 } 11575 11576 static inline void SET_ColorFragmentOp2ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) { 11577 SET_by_offset(disp, _gloffset_ColorFragmentOp2ATI, fn); 11578 } 11579 11580 typedef void (GLAPIENTRYP _glptr_ColorFragmentOp3ATI)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint); 11581 #define CALL_ColorFragmentOp3ATI(disp, parameters) \ 11582 (* GET_ColorFragmentOp3ATI(disp)) parameters 11583 static inline _glptr_ColorFragmentOp3ATI GET_ColorFragmentOp3ATI(struct _glapi_table *disp) { 11584 return (_glptr_ColorFragmentOp3ATI) (GET_by_offset(disp, _gloffset_ColorFragmentOp3ATI)); 11585 } 11586 11587 static inline void SET_ColorFragmentOp3ATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint)) { 11588 SET_by_offset(disp, _gloffset_ColorFragmentOp3ATI, fn); 11589 } 11590 11591 typedef void (GLAPIENTRYP _glptr_DeleteFragmentShaderATI)(GLuint); 11592 #define CALL_DeleteFragmentShaderATI(disp, parameters) \ 11593 (* GET_DeleteFragmentShaderATI(disp)) parameters 11594 static inline _glptr_DeleteFragmentShaderATI GET_DeleteFragmentShaderATI(struct _glapi_table *disp) { 11595 return (_glptr_DeleteFragmentShaderATI) (GET_by_offset(disp, _gloffset_DeleteFragmentShaderATI)); 11596 } 11597 11598 static inline void SET_DeleteFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 11599 SET_by_offset(disp, _gloffset_DeleteFragmentShaderATI, fn); 11600 } 11601 11602 typedef void (GLAPIENTRYP _glptr_EndFragmentShaderATI)(void); 11603 #define CALL_EndFragmentShaderATI(disp, parameters) \ 11604 (* GET_EndFragmentShaderATI(disp)) parameters 11605 static inline _glptr_EndFragmentShaderATI GET_EndFragmentShaderATI(struct _glapi_table *disp) { 11606 return (_glptr_EndFragmentShaderATI) (GET_by_offset(disp, _gloffset_EndFragmentShaderATI)); 11607 } 11608 11609 static inline void SET_EndFragmentShaderATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 11610 SET_by_offset(disp, _gloffset_EndFragmentShaderATI, fn); 11611 } 11612 11613 typedef GLuint (GLAPIENTRYP _glptr_GenFragmentShadersATI)(GLuint); 11614 #define CALL_GenFragmentShadersATI(disp, parameters) \ 11615 (* GET_GenFragmentShadersATI(disp)) parameters 11616 static inline _glptr_GenFragmentShadersATI GET_GenFragmentShadersATI(struct _glapi_table *disp) { 11617 return (_glptr_GenFragmentShadersATI) (GET_by_offset(disp, _gloffset_GenFragmentShadersATI)); 11618 } 11619 11620 static inline void SET_GenFragmentShadersATI(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLuint)) { 11621 SET_by_offset(disp, _gloffset_GenFragmentShadersATI, fn); 11622 } 11623 11624 typedef void (GLAPIENTRYP _glptr_PassTexCoordATI)(GLuint, GLuint, GLenum); 11625 #define CALL_PassTexCoordATI(disp, parameters) \ 11626 (* GET_PassTexCoordATI(disp)) parameters 11627 static inline _glptr_PassTexCoordATI GET_PassTexCoordATI(struct _glapi_table *disp) { 11628 return (_glptr_PassTexCoordATI) (GET_by_offset(disp, _gloffset_PassTexCoordATI)); 11629 } 11630 11631 static inline void SET_PassTexCoordATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum)) { 11632 SET_by_offset(disp, _gloffset_PassTexCoordATI, fn); 11633 } 11634 11635 typedef void (GLAPIENTRYP _glptr_SampleMapATI)(GLuint, GLuint, GLenum); 11636 #define CALL_SampleMapATI(disp, parameters) \ 11637 (* GET_SampleMapATI(disp)) parameters 11638 static inline _glptr_SampleMapATI GET_SampleMapATI(struct _glapi_table *disp) { 11639 return (_glptr_SampleMapATI) (GET_by_offset(disp, _gloffset_SampleMapATI)); 11640 } 11641 11642 static inline void SET_SampleMapATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLenum)) { 11643 SET_by_offset(disp, _gloffset_SampleMapATI, fn); 11644 } 11645 11646 typedef void (GLAPIENTRYP _glptr_SetFragmentShaderConstantATI)(GLuint, const GLfloat *); 11647 #define CALL_SetFragmentShaderConstantATI(disp, parameters) \ 11648 (* GET_SetFragmentShaderConstantATI(disp)) parameters 11649 static inline _glptr_SetFragmentShaderConstantATI GET_SetFragmentShaderConstantATI(struct _glapi_table *disp) { 11650 return (_glptr_SetFragmentShaderConstantATI) (GET_by_offset(disp, _gloffset_SetFragmentShaderConstantATI)); 11651 } 11652 11653 static inline void SET_SetFragmentShaderConstantATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) { 11654 SET_by_offset(disp, _gloffset_SetFragmentShaderConstantATI, fn); 11655 } 11656 11657 typedef void (GLAPIENTRYP _glptr_PointParameteriNV)(GLenum, GLint); 11658 #define CALL_PointParameteriNV(disp, parameters) \ 11659 (* GET_PointParameteriNV(disp)) parameters 11660 static inline _glptr_PointParameteriNV GET_PointParameteriNV(struct _glapi_table *disp) { 11661 return (_glptr_PointParameteriNV) (GET_by_offset(disp, _gloffset_PointParameteriNV)); 11662 } 11663 11664 static inline void SET_PointParameteriNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLint)) { 11665 SET_by_offset(disp, _gloffset_PointParameteriNV, fn); 11666 } 11667 11668 typedef void (GLAPIENTRYP _glptr_PointParameterivNV)(GLenum, const GLint *); 11669 #define CALL_PointParameterivNV(disp, parameters) \ 11670 (* GET_PointParameterivNV(disp)) parameters 11671 static inline _glptr_PointParameterivNV GET_PointParameterivNV(struct _glapi_table *disp) { 11672 return (_glptr_PointParameterivNV) (GET_by_offset(disp, _gloffset_PointParameterivNV)); 11673 } 11674 11675 static inline void SET_PointParameterivNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, const GLint *)) { 11676 SET_by_offset(disp, _gloffset_PointParameterivNV, fn); 11677 } 11678 11679 typedef void (GLAPIENTRYP _glptr_ActiveStencilFaceEXT)(GLenum); 11680 #define CALL_ActiveStencilFaceEXT(disp, parameters) \ 11681 (* GET_ActiveStencilFaceEXT(disp)) parameters 11682 static inline _glptr_ActiveStencilFaceEXT GET_ActiveStencilFaceEXT(struct _glapi_table *disp) { 11683 return (_glptr_ActiveStencilFaceEXT) (GET_by_offset(disp, _gloffset_ActiveStencilFaceEXT)); 11684 } 11685 11686 static inline void SET_ActiveStencilFaceEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 11687 SET_by_offset(disp, _gloffset_ActiveStencilFaceEXT, fn); 11688 } 11689 11690 typedef void (GLAPIENTRYP _glptr_BindVertexArrayAPPLE)(GLuint); 11691 #define CALL_BindVertexArrayAPPLE(disp, parameters) \ 11692 (* GET_BindVertexArrayAPPLE(disp)) parameters 11693 static inline _glptr_BindVertexArrayAPPLE GET_BindVertexArrayAPPLE(struct _glapi_table *disp) { 11694 return (_glptr_BindVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_BindVertexArrayAPPLE)); 11695 } 11696 11697 static inline void SET_BindVertexArrayAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 11698 SET_by_offset(disp, _gloffset_BindVertexArrayAPPLE, fn); 11699 } 11700 11701 typedef void (GLAPIENTRYP _glptr_DeleteVertexArraysAPPLE)(GLsizei, const GLuint *); 11702 #define CALL_DeleteVertexArraysAPPLE(disp, parameters) \ 11703 (* GET_DeleteVertexArraysAPPLE(disp)) parameters 11704 static inline _glptr_DeleteVertexArraysAPPLE GET_DeleteVertexArraysAPPLE(struct _glapi_table *disp) { 11705 return (_glptr_DeleteVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE)); 11706 } 11707 11708 static inline void SET_DeleteVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 11709 SET_by_offset(disp, _gloffset_DeleteVertexArraysAPPLE, fn); 11710 } 11711 11712 typedef void (GLAPIENTRYP _glptr_GenVertexArraysAPPLE)(GLsizei, GLuint *); 11713 #define CALL_GenVertexArraysAPPLE(disp, parameters) \ 11714 (* GET_GenVertexArraysAPPLE(disp)) parameters 11715 static inline _glptr_GenVertexArraysAPPLE GET_GenVertexArraysAPPLE(struct _glapi_table *disp) { 11716 return (_glptr_GenVertexArraysAPPLE) (GET_by_offset(disp, _gloffset_GenVertexArraysAPPLE)); 11717 } 11718 11719 static inline void SET_GenVertexArraysAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 11720 SET_by_offset(disp, _gloffset_GenVertexArraysAPPLE, fn); 11721 } 11722 11723 typedef GLboolean (GLAPIENTRYP _glptr_IsVertexArrayAPPLE)(GLuint); 11724 #define CALL_IsVertexArrayAPPLE(disp, parameters) \ 11725 (* GET_IsVertexArrayAPPLE(disp)) parameters 11726 static inline _glptr_IsVertexArrayAPPLE GET_IsVertexArrayAPPLE(struct _glapi_table *disp) { 11727 return (_glptr_IsVertexArrayAPPLE) (GET_by_offset(disp, _gloffset_IsVertexArrayAPPLE)); 11728 } 11729 11730 static inline void SET_IsVertexArrayAPPLE(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 11731 SET_by_offset(disp, _gloffset_IsVertexArrayAPPLE, fn); 11732 } 11733 11734 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterdvNV)(GLuint, GLsizei, const GLubyte *, GLdouble *); 11735 #define CALL_GetProgramNamedParameterdvNV(disp, parameters) \ 11736 (* GET_GetProgramNamedParameterdvNV(disp)) parameters 11737 static inline _glptr_GetProgramNamedParameterdvNV GET_GetProgramNamedParameterdvNV(struct _glapi_table *disp) { 11738 return (_glptr_GetProgramNamedParameterdvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV)); 11739 } 11740 11741 static inline void SET_GetProgramNamedParameterdvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble *)) { 11742 SET_by_offset(disp, _gloffset_GetProgramNamedParameterdvNV, fn); 11743 } 11744 11745 typedef void (GLAPIENTRYP _glptr_GetProgramNamedParameterfvNV)(GLuint, GLsizei, const GLubyte *, GLfloat *); 11746 #define CALL_GetProgramNamedParameterfvNV(disp, parameters) \ 11747 (* GET_GetProgramNamedParameterfvNV(disp)) parameters 11748 static inline _glptr_GetProgramNamedParameterfvNV GET_GetProgramNamedParameterfvNV(struct _glapi_table *disp) { 11749 return (_glptr_GetProgramNamedParameterfvNV) (GET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV)); 11750 } 11751 11752 static inline void SET_GetProgramNamedParameterfvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat *)) { 11753 SET_by_offset(disp, _gloffset_GetProgramNamedParameterfvNV, fn); 11754 } 11755 11756 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dNV)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble); 11757 #define CALL_ProgramNamedParameter4dNV(disp, parameters) \ 11758 (* GET_ProgramNamedParameter4dNV(disp)) parameters 11759 static inline _glptr_ProgramNamedParameter4dNV GET_ProgramNamedParameter4dNV(struct _glapi_table *disp) { 11760 return (_glptr_ProgramNamedParameter4dNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV)); 11761 } 11762 11763 static inline void SET_ProgramNamedParameter4dNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLdouble, GLdouble, GLdouble, GLdouble)) { 11764 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dNV, fn); 11765 } 11766 11767 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4dvNV)(GLuint, GLsizei, const GLubyte *, const GLdouble *); 11768 #define CALL_ProgramNamedParameter4dvNV(disp, parameters) \ 11769 (* GET_ProgramNamedParameter4dvNV(disp)) parameters 11770 static inline _glptr_ProgramNamedParameter4dvNV GET_ProgramNamedParameter4dvNV(struct _glapi_table *disp) { 11771 return (_glptr_ProgramNamedParameter4dvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV)); 11772 } 11773 11774 static inline void SET_ProgramNamedParameter4dvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLdouble *)) { 11775 SET_by_offset(disp, _gloffset_ProgramNamedParameter4dvNV, fn); 11776 } 11777 11778 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fNV)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat); 11779 #define CALL_ProgramNamedParameter4fNV(disp, parameters) \ 11780 (* GET_ProgramNamedParameter4fNV(disp)) parameters 11781 static inline _glptr_ProgramNamedParameter4fNV GET_ProgramNamedParameter4fNV(struct _glapi_table *disp) { 11782 return (_glptr_ProgramNamedParameter4fNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV)); 11783 } 11784 11785 static inline void SET_ProgramNamedParameter4fNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, GLfloat, GLfloat, GLfloat, GLfloat)) { 11786 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fNV, fn); 11787 } 11788 11789 typedef void (GLAPIENTRYP _glptr_ProgramNamedParameter4fvNV)(GLuint, GLsizei, const GLubyte *, const GLfloat *); 11790 #define CALL_ProgramNamedParameter4fvNV(disp, parameters) \ 11791 (* GET_ProgramNamedParameter4fvNV(disp)) parameters 11792 static inline _glptr_ProgramNamedParameter4fvNV GET_ProgramNamedParameter4fvNV(struct _glapi_table *disp) { 11793 return (_glptr_ProgramNamedParameter4fvNV) (GET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV)); 11794 } 11795 11796 static inline void SET_ProgramNamedParameter4fvNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLubyte *, const GLfloat *)) { 11797 SET_by_offset(disp, _gloffset_ProgramNamedParameter4fvNV, fn); 11798 } 11799 11800 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartIndexNV)(GLuint); 11801 #define CALL_PrimitiveRestartIndexNV(disp, parameters) \ 11802 (* GET_PrimitiveRestartIndexNV(disp)) parameters 11803 static inline _glptr_PrimitiveRestartIndexNV GET_PrimitiveRestartIndexNV(struct _glapi_table *disp) { 11804 return (_glptr_PrimitiveRestartIndexNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartIndexNV)); 11805 } 11806 11807 static inline void SET_PrimitiveRestartIndexNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 11808 SET_by_offset(disp, _gloffset_PrimitiveRestartIndexNV, fn); 11809 } 11810 11811 typedef void (GLAPIENTRYP _glptr_PrimitiveRestartNV)(void); 11812 #define CALL_PrimitiveRestartNV(disp, parameters) \ 11813 (* GET_PrimitiveRestartNV(disp)) parameters 11814 static inline _glptr_PrimitiveRestartNV GET_PrimitiveRestartNV(struct _glapi_table *disp) { 11815 return (_glptr_PrimitiveRestartNV) (GET_by_offset(disp, _gloffset_PrimitiveRestartNV)); 11816 } 11817 11818 static inline void SET_PrimitiveRestartNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 11819 SET_by_offset(disp, _gloffset_PrimitiveRestartNV, fn); 11820 } 11821 11822 typedef void (GLAPIENTRYP _glptr_DepthBoundsEXT)(GLclampd, GLclampd); 11823 #define CALL_DepthBoundsEXT(disp, parameters) \ 11824 (* GET_DepthBoundsEXT(disp)) parameters 11825 static inline _glptr_DepthBoundsEXT GET_DepthBoundsEXT(struct _glapi_table *disp) { 11826 return (_glptr_DepthBoundsEXT) (GET_by_offset(disp, _gloffset_DepthBoundsEXT)); 11827 } 11828 11829 static inline void SET_DepthBoundsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLclampd, GLclampd)) { 11830 SET_by_offset(disp, _gloffset_DepthBoundsEXT, fn); 11831 } 11832 11833 typedef void (GLAPIENTRYP _glptr_BlendEquationSeparateEXT)(GLenum, GLenum); 11834 #define CALL_BlendEquationSeparateEXT(disp, parameters) \ 11835 (* GET_BlendEquationSeparateEXT(disp)) parameters 11836 static inline _glptr_BlendEquationSeparateEXT GET_BlendEquationSeparateEXT(struct _glapi_table *disp) { 11837 return (_glptr_BlendEquationSeparateEXT) (GET_by_offset(disp, _gloffset_BlendEquationSeparateEXT)); 11838 } 11839 11840 static inline void SET_BlendEquationSeparateEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) { 11841 SET_by_offset(disp, _gloffset_BlendEquationSeparateEXT, fn); 11842 } 11843 11844 typedef void (GLAPIENTRYP _glptr_BindFramebufferEXT)(GLenum, GLuint); 11845 #define CALL_BindFramebufferEXT(disp, parameters) \ 11846 (* GET_BindFramebufferEXT(disp)) parameters 11847 static inline _glptr_BindFramebufferEXT GET_BindFramebufferEXT(struct _glapi_table *disp) { 11848 return (_glptr_BindFramebufferEXT) (GET_by_offset(disp, _gloffset_BindFramebufferEXT)); 11849 } 11850 11851 static inline void SET_BindFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 11852 SET_by_offset(disp, _gloffset_BindFramebufferEXT, fn); 11853 } 11854 11855 typedef void (GLAPIENTRYP _glptr_BindRenderbufferEXT)(GLenum, GLuint); 11856 #define CALL_BindRenderbufferEXT(disp, parameters) \ 11857 (* GET_BindRenderbufferEXT(disp)) parameters 11858 static inline _glptr_BindRenderbufferEXT GET_BindRenderbufferEXT(struct _glapi_table *disp) { 11859 return (_glptr_BindRenderbufferEXT) (GET_by_offset(disp, _gloffset_BindRenderbufferEXT)); 11860 } 11861 11862 static inline void SET_BindRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 11863 SET_by_offset(disp, _gloffset_BindRenderbufferEXT, fn); 11864 } 11865 11866 typedef GLenum (GLAPIENTRYP _glptr_CheckFramebufferStatusEXT)(GLenum); 11867 #define CALL_CheckFramebufferStatusEXT(disp, parameters) \ 11868 (* GET_CheckFramebufferStatusEXT(disp)) parameters 11869 static inline _glptr_CheckFramebufferStatusEXT GET_CheckFramebufferStatusEXT(struct _glapi_table *disp) { 11870 return (_glptr_CheckFramebufferStatusEXT) (GET_by_offset(disp, _gloffset_CheckFramebufferStatusEXT)); 11871 } 11872 11873 static inline void SET_CheckFramebufferStatusEXT(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum)) { 11874 SET_by_offset(disp, _gloffset_CheckFramebufferStatusEXT, fn); 11875 } 11876 11877 typedef void (GLAPIENTRYP _glptr_DeleteFramebuffersEXT)(GLsizei, const GLuint *); 11878 #define CALL_DeleteFramebuffersEXT(disp, parameters) \ 11879 (* GET_DeleteFramebuffersEXT(disp)) parameters 11880 static inline _glptr_DeleteFramebuffersEXT GET_DeleteFramebuffersEXT(struct _glapi_table *disp) { 11881 return (_glptr_DeleteFramebuffersEXT) (GET_by_offset(disp, _gloffset_DeleteFramebuffersEXT)); 11882 } 11883 11884 static inline void SET_DeleteFramebuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 11885 SET_by_offset(disp, _gloffset_DeleteFramebuffersEXT, fn); 11886 } 11887 11888 typedef void (GLAPIENTRYP _glptr_DeleteRenderbuffersEXT)(GLsizei, const GLuint *); 11889 #define CALL_DeleteRenderbuffersEXT(disp, parameters) \ 11890 (* GET_DeleteRenderbuffersEXT(disp)) parameters 11891 static inline _glptr_DeleteRenderbuffersEXT GET_DeleteRenderbuffersEXT(struct _glapi_table *disp) { 11892 return (_glptr_DeleteRenderbuffersEXT) (GET_by_offset(disp, _gloffset_DeleteRenderbuffersEXT)); 11893 } 11894 11895 static inline void SET_DeleteRenderbuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, const GLuint *)) { 11896 SET_by_offset(disp, _gloffset_DeleteRenderbuffersEXT, fn); 11897 } 11898 11899 typedef void (GLAPIENTRYP _glptr_FramebufferRenderbufferEXT)(GLenum, GLenum, GLenum, GLuint); 11900 #define CALL_FramebufferRenderbufferEXT(disp, parameters) \ 11901 (* GET_FramebufferRenderbufferEXT(disp)) parameters 11902 static inline _glptr_FramebufferRenderbufferEXT GET_FramebufferRenderbufferEXT(struct _glapi_table *disp) { 11903 return (_glptr_FramebufferRenderbufferEXT) (GET_by_offset(disp, _gloffset_FramebufferRenderbufferEXT)); 11904 } 11905 11906 static inline void SET_FramebufferRenderbufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint)) { 11907 SET_by_offset(disp, _gloffset_FramebufferRenderbufferEXT, fn); 11908 } 11909 11910 typedef void (GLAPIENTRYP _glptr_FramebufferTexture1DEXT)(GLenum, GLenum, GLenum, GLuint, GLint); 11911 #define CALL_FramebufferTexture1DEXT(disp, parameters) \ 11912 (* GET_FramebufferTexture1DEXT(disp)) parameters 11913 static inline _glptr_FramebufferTexture1DEXT GET_FramebufferTexture1DEXT(struct _glapi_table *disp) { 11914 return (_glptr_FramebufferTexture1DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture1DEXT)); 11915 } 11916 11917 static inline void SET_FramebufferTexture1DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) { 11918 SET_by_offset(disp, _gloffset_FramebufferTexture1DEXT, fn); 11919 } 11920 11921 typedef void (GLAPIENTRYP _glptr_FramebufferTexture2DEXT)(GLenum, GLenum, GLenum, GLuint, GLint); 11922 #define CALL_FramebufferTexture2DEXT(disp, parameters) \ 11923 (* GET_FramebufferTexture2DEXT(disp)) parameters 11924 static inline _glptr_FramebufferTexture2DEXT GET_FramebufferTexture2DEXT(struct _glapi_table *disp) { 11925 return (_glptr_FramebufferTexture2DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture2DEXT)); 11926 } 11927 11928 static inline void SET_FramebufferTexture2DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint)) { 11929 SET_by_offset(disp, _gloffset_FramebufferTexture2DEXT, fn); 11930 } 11931 11932 typedef void (GLAPIENTRYP _glptr_FramebufferTexture3DEXT)(GLenum, GLenum, GLenum, GLuint, GLint, GLint); 11933 #define CALL_FramebufferTexture3DEXT(disp, parameters) \ 11934 (* GET_FramebufferTexture3DEXT(disp)) parameters 11935 static inline _glptr_FramebufferTexture3DEXT GET_FramebufferTexture3DEXT(struct _glapi_table *disp) { 11936 return (_glptr_FramebufferTexture3DEXT) (GET_by_offset(disp, _gloffset_FramebufferTexture3DEXT)); 11937 } 11938 11939 static inline void SET_FramebufferTexture3DEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLuint, GLint, GLint)) { 11940 SET_by_offset(disp, _gloffset_FramebufferTexture3DEXT, fn); 11941 } 11942 11943 typedef void (GLAPIENTRYP _glptr_GenFramebuffersEXT)(GLsizei, GLuint *); 11944 #define CALL_GenFramebuffersEXT(disp, parameters) \ 11945 (* GET_GenFramebuffersEXT(disp)) parameters 11946 static inline _glptr_GenFramebuffersEXT GET_GenFramebuffersEXT(struct _glapi_table *disp) { 11947 return (_glptr_GenFramebuffersEXT) (GET_by_offset(disp, _gloffset_GenFramebuffersEXT)); 11948 } 11949 11950 static inline void SET_GenFramebuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 11951 SET_by_offset(disp, _gloffset_GenFramebuffersEXT, fn); 11952 } 11953 11954 typedef void (GLAPIENTRYP _glptr_GenRenderbuffersEXT)(GLsizei, GLuint *); 11955 #define CALL_GenRenderbuffersEXT(disp, parameters) \ 11956 (* GET_GenRenderbuffersEXT(disp)) parameters 11957 static inline _glptr_GenRenderbuffersEXT GET_GenRenderbuffersEXT(struct _glapi_table *disp) { 11958 return (_glptr_GenRenderbuffersEXT) (GET_by_offset(disp, _gloffset_GenRenderbuffersEXT)); 11959 } 11960 11961 static inline void SET_GenRenderbuffersEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLuint *)) { 11962 SET_by_offset(disp, _gloffset_GenRenderbuffersEXT, fn); 11963 } 11964 11965 typedef void (GLAPIENTRYP _glptr_GenerateMipmapEXT)(GLenum); 11966 #define CALL_GenerateMipmapEXT(disp, parameters) \ 11967 (* GET_GenerateMipmapEXT(disp)) parameters 11968 static inline _glptr_GenerateMipmapEXT GET_GenerateMipmapEXT(struct _glapi_table *disp) { 11969 return (_glptr_GenerateMipmapEXT) (GET_by_offset(disp, _gloffset_GenerateMipmapEXT)); 11970 } 11971 11972 static inline void SET_GenerateMipmapEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 11973 SET_by_offset(disp, _gloffset_GenerateMipmapEXT, fn); 11974 } 11975 11976 typedef void (GLAPIENTRYP _glptr_GetFramebufferAttachmentParameterivEXT)(GLenum, GLenum, GLenum, GLint *); 11977 #define CALL_GetFramebufferAttachmentParameterivEXT(disp, parameters) \ 11978 (* GET_GetFramebufferAttachmentParameterivEXT(disp)) parameters 11979 static inline _glptr_GetFramebufferAttachmentParameterivEXT GET_GetFramebufferAttachmentParameterivEXT(struct _glapi_table *disp) { 11980 return (_glptr_GetFramebufferAttachmentParameterivEXT) (GET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameterivEXT)); 11981 } 11982 11983 static inline void SET_GetFramebufferAttachmentParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLenum, GLint *)) { 11984 SET_by_offset(disp, _gloffset_GetFramebufferAttachmentParameterivEXT, fn); 11985 } 11986 11987 typedef void (GLAPIENTRYP _glptr_GetRenderbufferParameterivEXT)(GLenum, GLenum, GLint *); 11988 #define CALL_GetRenderbufferParameterivEXT(disp, parameters) \ 11989 (* GET_GetRenderbufferParameterivEXT(disp)) parameters 11990 static inline _glptr_GetRenderbufferParameterivEXT GET_GetRenderbufferParameterivEXT(struct _glapi_table *disp) { 11991 return (_glptr_GetRenderbufferParameterivEXT) (GET_by_offset(disp, _gloffset_GetRenderbufferParameterivEXT)); 11992 } 11993 11994 static inline void SET_GetRenderbufferParameterivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 11995 SET_by_offset(disp, _gloffset_GetRenderbufferParameterivEXT, fn); 11996 } 11997 11998 typedef GLboolean (GLAPIENTRYP _glptr_IsFramebufferEXT)(GLuint); 11999 #define CALL_IsFramebufferEXT(disp, parameters) \ 12000 (* GET_IsFramebufferEXT(disp)) parameters 12001 static inline _glptr_IsFramebufferEXT GET_IsFramebufferEXT(struct _glapi_table *disp) { 12002 return (_glptr_IsFramebufferEXT) (GET_by_offset(disp, _gloffset_IsFramebufferEXT)); 12003 } 12004 12005 static inline void SET_IsFramebufferEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 12006 SET_by_offset(disp, _gloffset_IsFramebufferEXT, fn); 12007 } 12008 12009 typedef GLboolean (GLAPIENTRYP _glptr_IsRenderbufferEXT)(GLuint); 12010 #define CALL_IsRenderbufferEXT(disp, parameters) \ 12011 (* GET_IsRenderbufferEXT(disp)) parameters 12012 static inline _glptr_IsRenderbufferEXT GET_IsRenderbufferEXT(struct _glapi_table *disp) { 12013 return (_glptr_IsRenderbufferEXT) (GET_by_offset(disp, _gloffset_IsRenderbufferEXT)); 12014 } 12015 12016 static inline void SET_IsRenderbufferEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLuint)) { 12017 SET_by_offset(disp, _gloffset_IsRenderbufferEXT, fn); 12018 } 12019 12020 typedef void (GLAPIENTRYP _glptr_RenderbufferStorageEXT)(GLenum, GLenum, GLsizei, GLsizei); 12021 #define CALL_RenderbufferStorageEXT(disp, parameters) \ 12022 (* GET_RenderbufferStorageEXT(disp)) parameters 12023 static inline _glptr_RenderbufferStorageEXT GET_RenderbufferStorageEXT(struct _glapi_table *disp) { 12024 return (_glptr_RenderbufferStorageEXT) (GET_by_offset(disp, _gloffset_RenderbufferStorageEXT)); 12025 } 12026 12027 static inline void SET_RenderbufferStorageEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLsizei, GLsizei)) { 12028 SET_by_offset(disp, _gloffset_RenderbufferStorageEXT, fn); 12029 } 12030 12031 typedef void (GLAPIENTRYP _glptr_BlitFramebufferEXT)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum); 12032 #define CALL_BlitFramebufferEXT(disp, parameters) \ 12033 (* GET_BlitFramebufferEXT(disp)) parameters 12034 static inline _glptr_BlitFramebufferEXT GET_BlitFramebufferEXT(struct _glapi_table *disp) { 12035 return (_glptr_BlitFramebufferEXT) (GET_by_offset(disp, _gloffset_BlitFramebufferEXT)); 12036 } 12037 12038 static inline void SET_BlitFramebufferEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLint, GLbitfield, GLenum)) { 12039 SET_by_offset(disp, _gloffset_BlitFramebufferEXT, fn); 12040 } 12041 12042 typedef void (GLAPIENTRYP _glptr_BufferParameteriAPPLE)(GLenum, GLenum, GLint); 12043 #define CALL_BufferParameteriAPPLE(disp, parameters) \ 12044 (* GET_BufferParameteriAPPLE(disp)) parameters 12045 static inline _glptr_BufferParameteriAPPLE GET_BufferParameteriAPPLE(struct _glapi_table *disp) { 12046 return (_glptr_BufferParameteriAPPLE) (GET_by_offset(disp, _gloffset_BufferParameteriAPPLE)); 12047 } 12048 12049 static inline void SET_BufferParameteriAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint)) { 12050 SET_by_offset(disp, _gloffset_BufferParameteriAPPLE, fn); 12051 } 12052 12053 typedef void (GLAPIENTRYP _glptr_FlushMappedBufferRangeAPPLE)(GLenum, GLintptr, GLsizeiptr); 12054 #define CALL_FlushMappedBufferRangeAPPLE(disp, parameters) \ 12055 (* GET_FlushMappedBufferRangeAPPLE(disp)) parameters 12056 static inline _glptr_FlushMappedBufferRangeAPPLE GET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp) { 12057 return (_glptr_FlushMappedBufferRangeAPPLE) (GET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE)); 12058 } 12059 12060 static inline void SET_FlushMappedBufferRangeAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLintptr, GLsizeiptr)) { 12061 SET_by_offset(disp, _gloffset_FlushMappedBufferRangeAPPLE, fn); 12062 } 12063 12064 typedef void (GLAPIENTRYP _glptr_BindFragDataLocationEXT)(GLuint, GLuint, const GLchar *); 12065 #define CALL_BindFragDataLocationEXT(disp, parameters) \ 12066 (* GET_BindFragDataLocationEXT(disp)) parameters 12067 static inline _glptr_BindFragDataLocationEXT GET_BindFragDataLocationEXT(struct _glapi_table *disp) { 12068 return (_glptr_BindFragDataLocationEXT) (GET_by_offset(disp, _gloffset_BindFragDataLocationEXT)); 12069 } 12070 12071 static inline void SET_BindFragDataLocationEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, const GLchar *)) { 12072 SET_by_offset(disp, _gloffset_BindFragDataLocationEXT, fn); 12073 } 12074 12075 typedef GLint (GLAPIENTRYP _glptr_GetFragDataLocationEXT)(GLuint, const GLchar *); 12076 #define CALL_GetFragDataLocationEXT(disp, parameters) \ 12077 (* GET_GetFragDataLocationEXT(disp)) parameters 12078 static inline _glptr_GetFragDataLocationEXT GET_GetFragDataLocationEXT(struct _glapi_table *disp) { 12079 return (_glptr_GetFragDataLocationEXT) (GET_by_offset(disp, _gloffset_GetFragDataLocationEXT)); 12080 } 12081 12082 static inline void SET_GetFragDataLocationEXT(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) { 12083 SET_by_offset(disp, _gloffset_GetFragDataLocationEXT, fn); 12084 } 12085 12086 typedef void (GLAPIENTRYP _glptr_GetUniformuivEXT)(GLuint, GLint, GLuint *); 12087 #define CALL_GetUniformuivEXT(disp, parameters) \ 12088 (* GET_GetUniformuivEXT(disp)) parameters 12089 static inline _glptr_GetUniformuivEXT GET_GetUniformuivEXT(struct _glapi_table *disp) { 12090 return (_glptr_GetUniformuivEXT) (GET_by_offset(disp, _gloffset_GetUniformuivEXT)); 12091 } 12092 12093 static inline void SET_GetUniformuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLuint *)) { 12094 SET_by_offset(disp, _gloffset_GetUniformuivEXT, fn); 12095 } 12096 12097 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIivEXT)(GLuint, GLenum, GLint *); 12098 #define CALL_GetVertexAttribIivEXT(disp, parameters) \ 12099 (* GET_GetVertexAttribIivEXT(disp)) parameters 12100 static inline _glptr_GetVertexAttribIivEXT GET_GetVertexAttribIivEXT(struct _glapi_table *disp) { 12101 return (_glptr_GetVertexAttribIivEXT) (GET_by_offset(disp, _gloffset_GetVertexAttribIivEXT)); 12102 } 12103 12104 static inline void SET_GetVertexAttribIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint *)) { 12105 SET_by_offset(disp, _gloffset_GetVertexAttribIivEXT, fn); 12106 } 12107 12108 typedef void (GLAPIENTRYP _glptr_GetVertexAttribIuivEXT)(GLuint, GLenum, GLuint *); 12109 #define CALL_GetVertexAttribIuivEXT(disp, parameters) \ 12110 (* GET_GetVertexAttribIuivEXT(disp)) parameters 12111 static inline _glptr_GetVertexAttribIuivEXT GET_GetVertexAttribIuivEXT(struct _glapi_table *disp) { 12112 return (_glptr_GetVertexAttribIuivEXT) (GET_by_offset(disp, _gloffset_GetVertexAttribIuivEXT)); 12113 } 12114 12115 static inline void SET_GetVertexAttribIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint *)) { 12116 SET_by_offset(disp, _gloffset_GetVertexAttribIuivEXT, fn); 12117 } 12118 12119 typedef void (GLAPIENTRYP _glptr_Uniform1uiEXT)(GLint, GLuint); 12120 #define CALL_Uniform1uiEXT(disp, parameters) \ 12121 (* GET_Uniform1uiEXT(disp)) parameters 12122 static inline _glptr_Uniform1uiEXT GET_Uniform1uiEXT(struct _glapi_table *disp) { 12123 return (_glptr_Uniform1uiEXT) (GET_by_offset(disp, _gloffset_Uniform1uiEXT)); 12124 } 12125 12126 static inline void SET_Uniform1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint)) { 12127 SET_by_offset(disp, _gloffset_Uniform1uiEXT, fn); 12128 } 12129 12130 typedef void (GLAPIENTRYP _glptr_Uniform1uivEXT)(GLint, GLsizei, const GLuint *); 12131 #define CALL_Uniform1uivEXT(disp, parameters) \ 12132 (* GET_Uniform1uivEXT(disp)) parameters 12133 static inline _glptr_Uniform1uivEXT GET_Uniform1uivEXT(struct _glapi_table *disp) { 12134 return (_glptr_Uniform1uivEXT) (GET_by_offset(disp, _gloffset_Uniform1uivEXT)); 12135 } 12136 12137 static inline void SET_Uniform1uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) { 12138 SET_by_offset(disp, _gloffset_Uniform1uivEXT, fn); 12139 } 12140 12141 typedef void (GLAPIENTRYP _glptr_Uniform2uiEXT)(GLint, GLuint, GLuint); 12142 #define CALL_Uniform2uiEXT(disp, parameters) \ 12143 (* GET_Uniform2uiEXT(disp)) parameters 12144 static inline _glptr_Uniform2uiEXT GET_Uniform2uiEXT(struct _glapi_table *disp) { 12145 return (_glptr_Uniform2uiEXT) (GET_by_offset(disp, _gloffset_Uniform2uiEXT)); 12146 } 12147 12148 static inline void SET_Uniform2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint)) { 12149 SET_by_offset(disp, _gloffset_Uniform2uiEXT, fn); 12150 } 12151 12152 typedef void (GLAPIENTRYP _glptr_Uniform2uivEXT)(GLint, GLsizei, const GLuint *); 12153 #define CALL_Uniform2uivEXT(disp, parameters) \ 12154 (* GET_Uniform2uivEXT(disp)) parameters 12155 static inline _glptr_Uniform2uivEXT GET_Uniform2uivEXT(struct _glapi_table *disp) { 12156 return (_glptr_Uniform2uivEXT) (GET_by_offset(disp, _gloffset_Uniform2uivEXT)); 12157 } 12158 12159 static inline void SET_Uniform2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) { 12160 SET_by_offset(disp, _gloffset_Uniform2uivEXT, fn); 12161 } 12162 12163 typedef void (GLAPIENTRYP _glptr_Uniform3uiEXT)(GLint, GLuint, GLuint, GLuint); 12164 #define CALL_Uniform3uiEXT(disp, parameters) \ 12165 (* GET_Uniform3uiEXT(disp)) parameters 12166 static inline _glptr_Uniform3uiEXT GET_Uniform3uiEXT(struct _glapi_table *disp) { 12167 return (_glptr_Uniform3uiEXT) (GET_by_offset(disp, _gloffset_Uniform3uiEXT)); 12168 } 12169 12170 static inline void SET_Uniform3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint)) { 12171 SET_by_offset(disp, _gloffset_Uniform3uiEXT, fn); 12172 } 12173 12174 typedef void (GLAPIENTRYP _glptr_Uniform3uivEXT)(GLint, GLsizei, const GLuint *); 12175 #define CALL_Uniform3uivEXT(disp, parameters) \ 12176 (* GET_Uniform3uivEXT(disp)) parameters 12177 static inline _glptr_Uniform3uivEXT GET_Uniform3uivEXT(struct _glapi_table *disp) { 12178 return (_glptr_Uniform3uivEXT) (GET_by_offset(disp, _gloffset_Uniform3uivEXT)); 12179 } 12180 12181 static inline void SET_Uniform3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) { 12182 SET_by_offset(disp, _gloffset_Uniform3uivEXT, fn); 12183 } 12184 12185 typedef void (GLAPIENTRYP _glptr_Uniform4uiEXT)(GLint, GLuint, GLuint, GLuint, GLuint); 12186 #define CALL_Uniform4uiEXT(disp, parameters) \ 12187 (* GET_Uniform4uiEXT(disp)) parameters 12188 static inline _glptr_Uniform4uiEXT GET_Uniform4uiEXT(struct _glapi_table *disp) { 12189 return (_glptr_Uniform4uiEXT) (GET_by_offset(disp, _gloffset_Uniform4uiEXT)); 12190 } 12191 12192 static inline void SET_Uniform4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLuint, GLuint, GLuint, GLuint)) { 12193 SET_by_offset(disp, _gloffset_Uniform4uiEXT, fn); 12194 } 12195 12196 typedef void (GLAPIENTRYP _glptr_Uniform4uivEXT)(GLint, GLsizei, const GLuint *); 12197 #define CALL_Uniform4uivEXT(disp, parameters) \ 12198 (* GET_Uniform4uivEXT(disp)) parameters 12199 static inline _glptr_Uniform4uivEXT GET_Uniform4uivEXT(struct _glapi_table *disp) { 12200 return (_glptr_Uniform4uivEXT) (GET_by_offset(disp, _gloffset_Uniform4uivEXT)); 12201 } 12202 12203 static inline void SET_Uniform4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLsizei, const GLuint *)) { 12204 SET_by_offset(disp, _gloffset_Uniform4uivEXT, fn); 12205 } 12206 12207 typedef void (GLAPIENTRYP _glptr_VertexAttribI1iEXT)(GLuint, GLint); 12208 #define CALL_VertexAttribI1iEXT(disp, parameters) \ 12209 (* GET_VertexAttribI1iEXT(disp)) parameters 12210 static inline _glptr_VertexAttribI1iEXT GET_VertexAttribI1iEXT(struct _glapi_table *disp) { 12211 return (_glptr_VertexAttribI1iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1iEXT)); 12212 } 12213 12214 static inline void SET_VertexAttribI1iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint)) { 12215 SET_by_offset(disp, _gloffset_VertexAttribI1iEXT, fn); 12216 } 12217 12218 typedef void (GLAPIENTRYP _glptr_VertexAttribI1ivEXT)(GLuint, const GLint *); 12219 #define CALL_VertexAttribI1ivEXT(disp, parameters) \ 12220 (* GET_VertexAttribI1ivEXT(disp)) parameters 12221 static inline _glptr_VertexAttribI1ivEXT GET_VertexAttribI1ivEXT(struct _glapi_table *disp) { 12222 return (_glptr_VertexAttribI1ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1ivEXT)); 12223 } 12224 12225 static inline void SET_VertexAttribI1ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) { 12226 SET_by_offset(disp, _gloffset_VertexAttribI1ivEXT, fn); 12227 } 12228 12229 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uiEXT)(GLuint, GLuint); 12230 #define CALL_VertexAttribI1uiEXT(disp, parameters) \ 12231 (* GET_VertexAttribI1uiEXT(disp)) parameters 12232 static inline _glptr_VertexAttribI1uiEXT GET_VertexAttribI1uiEXT(struct _glapi_table *disp) { 12233 return (_glptr_VertexAttribI1uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uiEXT)); 12234 } 12235 12236 static inline void SET_VertexAttribI1uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) { 12237 SET_by_offset(disp, _gloffset_VertexAttribI1uiEXT, fn); 12238 } 12239 12240 typedef void (GLAPIENTRYP _glptr_VertexAttribI1uivEXT)(GLuint, const GLuint *); 12241 #define CALL_VertexAttribI1uivEXT(disp, parameters) \ 12242 (* GET_VertexAttribI1uivEXT(disp)) parameters 12243 static inline _glptr_VertexAttribI1uivEXT GET_VertexAttribI1uivEXT(struct _glapi_table *disp) { 12244 return (_glptr_VertexAttribI1uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI1uivEXT)); 12245 } 12246 12247 static inline void SET_VertexAttribI1uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) { 12248 SET_by_offset(disp, _gloffset_VertexAttribI1uivEXT, fn); 12249 } 12250 12251 typedef void (GLAPIENTRYP _glptr_VertexAttribI2iEXT)(GLuint, GLint, GLint); 12252 #define CALL_VertexAttribI2iEXT(disp, parameters) \ 12253 (* GET_VertexAttribI2iEXT(disp)) parameters 12254 static inline _glptr_VertexAttribI2iEXT GET_VertexAttribI2iEXT(struct _glapi_table *disp) { 12255 return (_glptr_VertexAttribI2iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2iEXT)); 12256 } 12257 12258 static inline void SET_VertexAttribI2iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint)) { 12259 SET_by_offset(disp, _gloffset_VertexAttribI2iEXT, fn); 12260 } 12261 12262 typedef void (GLAPIENTRYP _glptr_VertexAttribI2ivEXT)(GLuint, const GLint *); 12263 #define CALL_VertexAttribI2ivEXT(disp, parameters) \ 12264 (* GET_VertexAttribI2ivEXT(disp)) parameters 12265 static inline _glptr_VertexAttribI2ivEXT GET_VertexAttribI2ivEXT(struct _glapi_table *disp) { 12266 return (_glptr_VertexAttribI2ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2ivEXT)); 12267 } 12268 12269 static inline void SET_VertexAttribI2ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) { 12270 SET_by_offset(disp, _gloffset_VertexAttribI2ivEXT, fn); 12271 } 12272 12273 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uiEXT)(GLuint, GLuint, GLuint); 12274 #define CALL_VertexAttribI2uiEXT(disp, parameters) \ 12275 (* GET_VertexAttribI2uiEXT(disp)) parameters 12276 static inline _glptr_VertexAttribI2uiEXT GET_VertexAttribI2uiEXT(struct _glapi_table *disp) { 12277 return (_glptr_VertexAttribI2uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uiEXT)); 12278 } 12279 12280 static inline void SET_VertexAttribI2uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) { 12281 SET_by_offset(disp, _gloffset_VertexAttribI2uiEXT, fn); 12282 } 12283 12284 typedef void (GLAPIENTRYP _glptr_VertexAttribI2uivEXT)(GLuint, const GLuint *); 12285 #define CALL_VertexAttribI2uivEXT(disp, parameters) \ 12286 (* GET_VertexAttribI2uivEXT(disp)) parameters 12287 static inline _glptr_VertexAttribI2uivEXT GET_VertexAttribI2uivEXT(struct _glapi_table *disp) { 12288 return (_glptr_VertexAttribI2uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI2uivEXT)); 12289 } 12290 12291 static inline void SET_VertexAttribI2uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) { 12292 SET_by_offset(disp, _gloffset_VertexAttribI2uivEXT, fn); 12293 } 12294 12295 typedef void (GLAPIENTRYP _glptr_VertexAttribI3iEXT)(GLuint, GLint, GLint, GLint); 12296 #define CALL_VertexAttribI3iEXT(disp, parameters) \ 12297 (* GET_VertexAttribI3iEXT(disp)) parameters 12298 static inline _glptr_VertexAttribI3iEXT GET_VertexAttribI3iEXT(struct _glapi_table *disp) { 12299 return (_glptr_VertexAttribI3iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3iEXT)); 12300 } 12301 12302 static inline void SET_VertexAttribI3iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint)) { 12303 SET_by_offset(disp, _gloffset_VertexAttribI3iEXT, fn); 12304 } 12305 12306 typedef void (GLAPIENTRYP _glptr_VertexAttribI3ivEXT)(GLuint, const GLint *); 12307 #define CALL_VertexAttribI3ivEXT(disp, parameters) \ 12308 (* GET_VertexAttribI3ivEXT(disp)) parameters 12309 static inline _glptr_VertexAttribI3ivEXT GET_VertexAttribI3ivEXT(struct _glapi_table *disp) { 12310 return (_glptr_VertexAttribI3ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3ivEXT)); 12311 } 12312 12313 static inline void SET_VertexAttribI3ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) { 12314 SET_by_offset(disp, _gloffset_VertexAttribI3ivEXT, fn); 12315 } 12316 12317 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uiEXT)(GLuint, GLuint, GLuint, GLuint); 12318 #define CALL_VertexAttribI3uiEXT(disp, parameters) \ 12319 (* GET_VertexAttribI3uiEXT(disp)) parameters 12320 static inline _glptr_VertexAttribI3uiEXT GET_VertexAttribI3uiEXT(struct _glapi_table *disp) { 12321 return (_glptr_VertexAttribI3uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uiEXT)); 12322 } 12323 12324 static inline void SET_VertexAttribI3uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) { 12325 SET_by_offset(disp, _gloffset_VertexAttribI3uiEXT, fn); 12326 } 12327 12328 typedef void (GLAPIENTRYP _glptr_VertexAttribI3uivEXT)(GLuint, const GLuint *); 12329 #define CALL_VertexAttribI3uivEXT(disp, parameters) \ 12330 (* GET_VertexAttribI3uivEXT(disp)) parameters 12331 static inline _glptr_VertexAttribI3uivEXT GET_VertexAttribI3uivEXT(struct _glapi_table *disp) { 12332 return (_glptr_VertexAttribI3uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI3uivEXT)); 12333 } 12334 12335 static inline void SET_VertexAttribI3uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) { 12336 SET_by_offset(disp, _gloffset_VertexAttribI3uivEXT, fn); 12337 } 12338 12339 typedef void (GLAPIENTRYP _glptr_VertexAttribI4bvEXT)(GLuint, const GLbyte *); 12340 #define CALL_VertexAttribI4bvEXT(disp, parameters) \ 12341 (* GET_VertexAttribI4bvEXT(disp)) parameters 12342 static inline _glptr_VertexAttribI4bvEXT GET_VertexAttribI4bvEXT(struct _glapi_table *disp) { 12343 return (_glptr_VertexAttribI4bvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4bvEXT)); 12344 } 12345 12346 static inline void SET_VertexAttribI4bvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLbyte *)) { 12347 SET_by_offset(disp, _gloffset_VertexAttribI4bvEXT, fn); 12348 } 12349 12350 typedef void (GLAPIENTRYP _glptr_VertexAttribI4iEXT)(GLuint, GLint, GLint, GLint, GLint); 12351 #define CALL_VertexAttribI4iEXT(disp, parameters) \ 12352 (* GET_VertexAttribI4iEXT(disp)) parameters 12353 static inline _glptr_VertexAttribI4iEXT GET_VertexAttribI4iEXT(struct _glapi_table *disp) { 12354 return (_glptr_VertexAttribI4iEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4iEXT)); 12355 } 12356 12357 static inline void SET_VertexAttribI4iEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLint, GLint)) { 12358 SET_by_offset(disp, _gloffset_VertexAttribI4iEXT, fn); 12359 } 12360 12361 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ivEXT)(GLuint, const GLint *); 12362 #define CALL_VertexAttribI4ivEXT(disp, parameters) \ 12363 (* GET_VertexAttribI4ivEXT(disp)) parameters 12364 static inline _glptr_VertexAttribI4ivEXT GET_VertexAttribI4ivEXT(struct _glapi_table *disp) { 12365 return (_glptr_VertexAttribI4ivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ivEXT)); 12366 } 12367 12368 static inline void SET_VertexAttribI4ivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) { 12369 SET_by_offset(disp, _gloffset_VertexAttribI4ivEXT, fn); 12370 } 12371 12372 typedef void (GLAPIENTRYP _glptr_VertexAttribI4svEXT)(GLuint, const GLshort *); 12373 #define CALL_VertexAttribI4svEXT(disp, parameters) \ 12374 (* GET_VertexAttribI4svEXT(disp)) parameters 12375 static inline _glptr_VertexAttribI4svEXT GET_VertexAttribI4svEXT(struct _glapi_table *disp) { 12376 return (_glptr_VertexAttribI4svEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4svEXT)); 12377 } 12378 12379 static inline void SET_VertexAttribI4svEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLshort *)) { 12380 SET_by_offset(disp, _gloffset_VertexAttribI4svEXT, fn); 12381 } 12382 12383 typedef void (GLAPIENTRYP _glptr_VertexAttribI4ubvEXT)(GLuint, const GLubyte *); 12384 #define CALL_VertexAttribI4ubvEXT(disp, parameters) \ 12385 (* GET_VertexAttribI4ubvEXT(disp)) parameters 12386 static inline _glptr_VertexAttribI4ubvEXT GET_VertexAttribI4ubvEXT(struct _glapi_table *disp) { 12387 return (_glptr_VertexAttribI4ubvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4ubvEXT)); 12388 } 12389 12390 static inline void SET_VertexAttribI4ubvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLubyte *)) { 12391 SET_by_offset(disp, _gloffset_VertexAttribI4ubvEXT, fn); 12392 } 12393 12394 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uiEXT)(GLuint, GLuint, GLuint, GLuint, GLuint); 12395 #define CALL_VertexAttribI4uiEXT(disp, parameters) \ 12396 (* GET_VertexAttribI4uiEXT(disp)) parameters 12397 static inline _glptr_VertexAttribI4uiEXT GET_VertexAttribI4uiEXT(struct _glapi_table *disp) { 12398 return (_glptr_VertexAttribI4uiEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uiEXT)); 12399 } 12400 12401 static inline void SET_VertexAttribI4uiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint, GLuint)) { 12402 SET_by_offset(disp, _gloffset_VertexAttribI4uiEXT, fn); 12403 } 12404 12405 typedef void (GLAPIENTRYP _glptr_VertexAttribI4uivEXT)(GLuint, const GLuint *); 12406 #define CALL_VertexAttribI4uivEXT(disp, parameters) \ 12407 (* GET_VertexAttribI4uivEXT(disp)) parameters 12408 static inline _glptr_VertexAttribI4uivEXT GET_VertexAttribI4uivEXT(struct _glapi_table *disp) { 12409 return (_glptr_VertexAttribI4uivEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4uivEXT)); 12410 } 12411 12412 static inline void SET_VertexAttribI4uivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLuint *)) { 12413 SET_by_offset(disp, _gloffset_VertexAttribI4uivEXT, fn); 12414 } 12415 12416 typedef void (GLAPIENTRYP _glptr_VertexAttribI4usvEXT)(GLuint, const GLushort *); 12417 #define CALL_VertexAttribI4usvEXT(disp, parameters) \ 12418 (* GET_VertexAttribI4usvEXT(disp)) parameters 12419 static inline _glptr_VertexAttribI4usvEXT GET_VertexAttribI4usvEXT(struct _glapi_table *disp) { 12420 return (_glptr_VertexAttribI4usvEXT) (GET_by_offset(disp, _gloffset_VertexAttribI4usvEXT)); 12421 } 12422 12423 static inline void SET_VertexAttribI4usvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLushort *)) { 12424 SET_by_offset(disp, _gloffset_VertexAttribI4usvEXT, fn); 12425 } 12426 12427 typedef void (GLAPIENTRYP _glptr_VertexAttribIPointerEXT)(GLuint, GLint, GLenum, GLsizei, const GLvoid *); 12428 #define CALL_VertexAttribIPointerEXT(disp, parameters) \ 12429 (* GET_VertexAttribIPointerEXT(disp)) parameters 12430 static inline _glptr_VertexAttribIPointerEXT GET_VertexAttribIPointerEXT(struct _glapi_table *disp) { 12431 return (_glptr_VertexAttribIPointerEXT) (GET_by_offset(disp, _gloffset_VertexAttribIPointerEXT)); 12432 } 12433 12434 static inline void SET_VertexAttribIPointerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLsizei, const GLvoid *)) { 12435 SET_by_offset(disp, _gloffset_VertexAttribIPointerEXT, fn); 12436 } 12437 12438 typedef void (GLAPIENTRYP _glptr_FramebufferTextureLayerEXT)(GLenum, GLenum, GLuint, GLint, GLint); 12439 #define CALL_FramebufferTextureLayerEXT(disp, parameters) \ 12440 (* GET_FramebufferTextureLayerEXT(disp)) parameters 12441 static inline _glptr_FramebufferTextureLayerEXT GET_FramebufferTextureLayerEXT(struct _glapi_table *disp) { 12442 return (_glptr_FramebufferTextureLayerEXT) (GET_by_offset(disp, _gloffset_FramebufferTextureLayerEXT)); 12443 } 12444 12445 static inline void SET_FramebufferTextureLayerEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint, GLint)) { 12446 SET_by_offset(disp, _gloffset_FramebufferTextureLayerEXT, fn); 12447 } 12448 12449 typedef void (GLAPIENTRYP _glptr_ColorMaskIndexedEXT)(GLuint, GLboolean, GLboolean, GLboolean, GLboolean); 12450 #define CALL_ColorMaskIndexedEXT(disp, parameters) \ 12451 (* GET_ColorMaskIndexedEXT(disp)) parameters 12452 static inline _glptr_ColorMaskIndexedEXT GET_ColorMaskIndexedEXT(struct _glapi_table *disp) { 12453 return (_glptr_ColorMaskIndexedEXT) (GET_by_offset(disp, _gloffset_ColorMaskIndexedEXT)); 12454 } 12455 12456 static inline void SET_ColorMaskIndexedEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLboolean, GLboolean, GLboolean, GLboolean)) { 12457 SET_by_offset(disp, _gloffset_ColorMaskIndexedEXT, fn); 12458 } 12459 12460 typedef void (GLAPIENTRYP _glptr_DisableIndexedEXT)(GLenum, GLuint); 12461 #define CALL_DisableIndexedEXT(disp, parameters) \ 12462 (* GET_DisableIndexedEXT(disp)) parameters 12463 static inline _glptr_DisableIndexedEXT GET_DisableIndexedEXT(struct _glapi_table *disp) { 12464 return (_glptr_DisableIndexedEXT) (GET_by_offset(disp, _gloffset_DisableIndexedEXT)); 12465 } 12466 12467 static inline void SET_DisableIndexedEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 12468 SET_by_offset(disp, _gloffset_DisableIndexedEXT, fn); 12469 } 12470 12471 typedef void (GLAPIENTRYP _glptr_EnableIndexedEXT)(GLenum, GLuint); 12472 #define CALL_EnableIndexedEXT(disp, parameters) \ 12473 (* GET_EnableIndexedEXT(disp)) parameters 12474 static inline _glptr_EnableIndexedEXT GET_EnableIndexedEXT(struct _glapi_table *disp) { 12475 return (_glptr_EnableIndexedEXT) (GET_by_offset(disp, _gloffset_EnableIndexedEXT)); 12476 } 12477 12478 static inline void SET_EnableIndexedEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 12479 SET_by_offset(disp, _gloffset_EnableIndexedEXT, fn); 12480 } 12481 12482 typedef void (GLAPIENTRYP _glptr_GetBooleanIndexedvEXT)(GLenum, GLuint, GLboolean *); 12483 #define CALL_GetBooleanIndexedvEXT(disp, parameters) \ 12484 (* GET_GetBooleanIndexedvEXT(disp)) parameters 12485 static inline _glptr_GetBooleanIndexedvEXT GET_GetBooleanIndexedvEXT(struct _glapi_table *disp) { 12486 return (_glptr_GetBooleanIndexedvEXT) (GET_by_offset(disp, _gloffset_GetBooleanIndexedvEXT)); 12487 } 12488 12489 static inline void SET_GetBooleanIndexedvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLboolean *)) { 12490 SET_by_offset(disp, _gloffset_GetBooleanIndexedvEXT, fn); 12491 } 12492 12493 typedef void (GLAPIENTRYP _glptr_GetIntegerIndexedvEXT)(GLenum, GLuint, GLint *); 12494 #define CALL_GetIntegerIndexedvEXT(disp, parameters) \ 12495 (* GET_GetIntegerIndexedvEXT(disp)) parameters 12496 static inline _glptr_GetIntegerIndexedvEXT GET_GetIntegerIndexedvEXT(struct _glapi_table *disp) { 12497 return (_glptr_GetIntegerIndexedvEXT) (GET_by_offset(disp, _gloffset_GetIntegerIndexedvEXT)); 12498 } 12499 12500 static inline void SET_GetIntegerIndexedvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLint *)) { 12501 SET_by_offset(disp, _gloffset_GetIntegerIndexedvEXT, fn); 12502 } 12503 12504 typedef GLboolean (GLAPIENTRYP _glptr_IsEnabledIndexedEXT)(GLenum, GLuint); 12505 #define CALL_IsEnabledIndexedEXT(disp, parameters) \ 12506 (* GET_IsEnabledIndexedEXT(disp)) parameters 12507 static inline _glptr_IsEnabledIndexedEXT GET_IsEnabledIndexedEXT(struct _glapi_table *disp) { 12508 return (_glptr_IsEnabledIndexedEXT) (GET_by_offset(disp, _gloffset_IsEnabledIndexedEXT)); 12509 } 12510 12511 static inline void SET_IsEnabledIndexedEXT(struct _glapi_table *disp, GLboolean (GLAPIENTRYP fn)(GLenum, GLuint)) { 12512 SET_by_offset(disp, _gloffset_IsEnabledIndexedEXT, fn); 12513 } 12514 12515 typedef void (GLAPIENTRYP _glptr_ClearColorIiEXT)(GLint, GLint, GLint, GLint); 12516 #define CALL_ClearColorIiEXT(disp, parameters) \ 12517 (* GET_ClearColorIiEXT(disp)) parameters 12518 static inline _glptr_ClearColorIiEXT GET_ClearColorIiEXT(struct _glapi_table *disp) { 12519 return (_glptr_ClearColorIiEXT) (GET_by_offset(disp, _gloffset_ClearColorIiEXT)); 12520 } 12521 12522 static inline void SET_ClearColorIiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLint, GLint, GLint, GLint)) { 12523 SET_by_offset(disp, _gloffset_ClearColorIiEXT, fn); 12524 } 12525 12526 typedef void (GLAPIENTRYP _glptr_ClearColorIuiEXT)(GLuint, GLuint, GLuint, GLuint); 12527 #define CALL_ClearColorIuiEXT(disp, parameters) \ 12528 (* GET_ClearColorIuiEXT(disp)) parameters 12529 static inline _glptr_ClearColorIuiEXT GET_ClearColorIuiEXT(struct _glapi_table *disp) { 12530 return (_glptr_ClearColorIuiEXT) (GET_by_offset(disp, _gloffset_ClearColorIuiEXT)); 12531 } 12532 12533 static inline void SET_ClearColorIuiEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, GLuint)) { 12534 SET_by_offset(disp, _gloffset_ClearColorIuiEXT, fn); 12535 } 12536 12537 typedef void (GLAPIENTRYP _glptr_GetTexParameterIivEXT)(GLenum, GLenum, GLint *); 12538 #define CALL_GetTexParameterIivEXT(disp, parameters) \ 12539 (* GET_GetTexParameterIivEXT(disp)) parameters 12540 static inline _glptr_GetTexParameterIivEXT GET_GetTexParameterIivEXT(struct _glapi_table *disp) { 12541 return (_glptr_GetTexParameterIivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIivEXT)); 12542 } 12543 12544 static inline void SET_GetTexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint *)) { 12545 SET_by_offset(disp, _gloffset_GetTexParameterIivEXT, fn); 12546 } 12547 12548 typedef void (GLAPIENTRYP _glptr_GetTexParameterIuivEXT)(GLenum, GLenum, GLuint *); 12549 #define CALL_GetTexParameterIuivEXT(disp, parameters) \ 12550 (* GET_GetTexParameterIuivEXT(disp)) parameters 12551 static inline _glptr_GetTexParameterIuivEXT GET_GetTexParameterIuivEXT(struct _glapi_table *disp) { 12552 return (_glptr_GetTexParameterIuivEXT) (GET_by_offset(disp, _gloffset_GetTexParameterIuivEXT)); 12553 } 12554 12555 static inline void SET_GetTexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint *)) { 12556 SET_by_offset(disp, _gloffset_GetTexParameterIuivEXT, fn); 12557 } 12558 12559 typedef void (GLAPIENTRYP _glptr_TexParameterIivEXT)(GLenum, GLenum, const GLint *); 12560 #define CALL_TexParameterIivEXT(disp, parameters) \ 12561 (* GET_TexParameterIivEXT(disp)) parameters 12562 static inline _glptr_TexParameterIivEXT GET_TexParameterIivEXT(struct _glapi_table *disp) { 12563 return (_glptr_TexParameterIivEXT) (GET_by_offset(disp, _gloffset_TexParameterIivEXT)); 12564 } 12565 12566 static inline void SET_TexParameterIivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLint *)) { 12567 SET_by_offset(disp, _gloffset_TexParameterIivEXT, fn); 12568 } 12569 12570 typedef void (GLAPIENTRYP _glptr_TexParameterIuivEXT)(GLenum, GLenum, const GLuint *); 12571 #define CALL_TexParameterIuivEXT(disp, parameters) \ 12572 (* GET_TexParameterIuivEXT(disp)) parameters 12573 static inline _glptr_TexParameterIuivEXT GET_TexParameterIuivEXT(struct _glapi_table *disp) { 12574 return (_glptr_TexParameterIuivEXT) (GET_by_offset(disp, _gloffset_TexParameterIuivEXT)); 12575 } 12576 12577 static inline void SET_TexParameterIuivEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, const GLuint *)) { 12578 SET_by_offset(disp, _gloffset_TexParameterIuivEXT, fn); 12579 } 12580 12581 typedef void (GLAPIENTRYP _glptr_BeginConditionalRenderNV)(GLuint, GLenum); 12582 #define CALL_BeginConditionalRenderNV(disp, parameters) \ 12583 (* GET_BeginConditionalRenderNV(disp)) parameters 12584 static inline _glptr_BeginConditionalRenderNV GET_BeginConditionalRenderNV(struct _glapi_table *disp) { 12585 return (_glptr_BeginConditionalRenderNV) (GET_by_offset(disp, _gloffset_BeginConditionalRenderNV)); 12586 } 12587 12588 static inline void SET_BeginConditionalRenderNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) { 12589 SET_by_offset(disp, _gloffset_BeginConditionalRenderNV, fn); 12590 } 12591 12592 typedef void (GLAPIENTRYP _glptr_EndConditionalRenderNV)(void); 12593 #define CALL_EndConditionalRenderNV(disp, parameters) \ 12594 (* GET_EndConditionalRenderNV(disp)) parameters 12595 static inline _glptr_EndConditionalRenderNV GET_EndConditionalRenderNV(struct _glapi_table *disp) { 12596 return (_glptr_EndConditionalRenderNV) (GET_by_offset(disp, _gloffset_EndConditionalRenderNV)); 12597 } 12598 12599 static inline void SET_EndConditionalRenderNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 12600 SET_by_offset(disp, _gloffset_EndConditionalRenderNV, fn); 12601 } 12602 12603 typedef void (GLAPIENTRYP _glptr_BeginTransformFeedbackEXT)(GLenum); 12604 #define CALL_BeginTransformFeedbackEXT(disp, parameters) \ 12605 (* GET_BeginTransformFeedbackEXT(disp)) parameters 12606 static inline _glptr_BeginTransformFeedbackEXT GET_BeginTransformFeedbackEXT(struct _glapi_table *disp) { 12607 return (_glptr_BeginTransformFeedbackEXT) (GET_by_offset(disp, _gloffset_BeginTransformFeedbackEXT)); 12608 } 12609 12610 static inline void SET_BeginTransformFeedbackEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 12611 SET_by_offset(disp, _gloffset_BeginTransformFeedbackEXT, fn); 12612 } 12613 12614 typedef void (GLAPIENTRYP _glptr_BindBufferBaseEXT)(GLenum, GLuint, GLuint); 12615 #define CALL_BindBufferBaseEXT(disp, parameters) \ 12616 (* GET_BindBufferBaseEXT(disp)) parameters 12617 static inline _glptr_BindBufferBaseEXT GET_BindBufferBaseEXT(struct _glapi_table *disp) { 12618 return (_glptr_BindBufferBaseEXT) (GET_by_offset(disp, _gloffset_BindBufferBaseEXT)); 12619 } 12620 12621 static inline void SET_BindBufferBaseEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint)) { 12622 SET_by_offset(disp, _gloffset_BindBufferBaseEXT, fn); 12623 } 12624 12625 typedef void (GLAPIENTRYP _glptr_BindBufferOffsetEXT)(GLenum, GLuint, GLuint, GLintptr); 12626 #define CALL_BindBufferOffsetEXT(disp, parameters) \ 12627 (* GET_BindBufferOffsetEXT(disp)) parameters 12628 static inline _glptr_BindBufferOffsetEXT GET_BindBufferOffsetEXT(struct _glapi_table *disp) { 12629 return (_glptr_BindBufferOffsetEXT) (GET_by_offset(disp, _gloffset_BindBufferOffsetEXT)); 12630 } 12631 12632 static inline void SET_BindBufferOffsetEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLintptr)) { 12633 SET_by_offset(disp, _gloffset_BindBufferOffsetEXT, fn); 12634 } 12635 12636 typedef void (GLAPIENTRYP _glptr_BindBufferRangeEXT)(GLenum, GLuint, GLuint, GLintptr, GLsizeiptr); 12637 #define CALL_BindBufferRangeEXT(disp, parameters) \ 12638 (* GET_BindBufferRangeEXT(disp)) parameters 12639 static inline _glptr_BindBufferRangeEXT GET_BindBufferRangeEXT(struct _glapi_table *disp) { 12640 return (_glptr_BindBufferRangeEXT) (GET_by_offset(disp, _gloffset_BindBufferRangeEXT)); 12641 } 12642 12643 static inline void SET_BindBufferRangeEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLuint, GLintptr, GLsizeiptr)) { 12644 SET_by_offset(disp, _gloffset_BindBufferRangeEXT, fn); 12645 } 12646 12647 typedef void (GLAPIENTRYP _glptr_EndTransformFeedbackEXT)(void); 12648 #define CALL_EndTransformFeedbackEXT(disp, parameters) \ 12649 (* GET_EndTransformFeedbackEXT(disp)) parameters 12650 static inline _glptr_EndTransformFeedbackEXT GET_EndTransformFeedbackEXT(struct _glapi_table *disp) { 12651 return (_glptr_EndTransformFeedbackEXT) (GET_by_offset(disp, _gloffset_EndTransformFeedbackEXT)); 12652 } 12653 12654 static inline void SET_EndTransformFeedbackEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 12655 SET_by_offset(disp, _gloffset_EndTransformFeedbackEXT, fn); 12656 } 12657 12658 typedef void (GLAPIENTRYP _glptr_GetTransformFeedbackVaryingEXT)(GLuint, GLuint, GLsizei, GLsizei *, GLsizei *, GLenum *, GLchar *); 12659 #define CALL_GetTransformFeedbackVaryingEXT(disp, parameters) \ 12660 (* GET_GetTransformFeedbackVaryingEXT(disp)) parameters 12661 static inline _glptr_GetTransformFeedbackVaryingEXT GET_GetTransformFeedbackVaryingEXT(struct _glapi_table *disp) { 12662 return (_glptr_GetTransformFeedbackVaryingEXT) (GET_by_offset(disp, _gloffset_GetTransformFeedbackVaryingEXT)); 12663 } 12664 12665 static inline void SET_GetTransformFeedbackVaryingEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLsizei, GLsizei *, GLsizei *, GLenum *, GLchar *)) { 12666 SET_by_offset(disp, _gloffset_GetTransformFeedbackVaryingEXT, fn); 12667 } 12668 12669 typedef void (GLAPIENTRYP _glptr_TransformFeedbackVaryingsEXT)(GLuint, GLsizei, const char **, GLenum); 12670 #define CALL_TransformFeedbackVaryingsEXT(disp, parameters) \ 12671 (* GET_TransformFeedbackVaryingsEXT(disp)) parameters 12672 static inline _glptr_TransformFeedbackVaryingsEXT GET_TransformFeedbackVaryingsEXT(struct _glapi_table *disp) { 12673 return (_glptr_TransformFeedbackVaryingsEXT) (GET_by_offset(disp, _gloffset_TransformFeedbackVaryingsEXT)); 12674 } 12675 12676 static inline void SET_TransformFeedbackVaryingsEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const char **, GLenum)) { 12677 SET_by_offset(disp, _gloffset_TransformFeedbackVaryingsEXT, fn); 12678 } 12679 12680 typedef void (GLAPIENTRYP _glptr_ProvokingVertexEXT)(GLenum); 12681 #define CALL_ProvokingVertexEXT(disp, parameters) \ 12682 (* GET_ProvokingVertexEXT(disp)) parameters 12683 static inline _glptr_ProvokingVertexEXT GET_ProvokingVertexEXT(struct _glapi_table *disp) { 12684 return (_glptr_ProvokingVertexEXT) (GET_by_offset(disp, _gloffset_ProvokingVertexEXT)); 12685 } 12686 12687 static inline void SET_ProvokingVertexEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum)) { 12688 SET_by_offset(disp, _gloffset_ProvokingVertexEXT, fn); 12689 } 12690 12691 typedef void (GLAPIENTRYP _glptr_GetObjectParameterivAPPLE)(GLenum, GLuint, GLenum, GLint *); 12692 #define CALL_GetObjectParameterivAPPLE(disp, parameters) \ 12693 (* GET_GetObjectParameterivAPPLE(disp)) parameters 12694 static inline _glptr_GetObjectParameterivAPPLE GET_GetObjectParameterivAPPLE(struct _glapi_table *disp) { 12695 return (_glptr_GetObjectParameterivAPPLE) (GET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE)); 12696 } 12697 12698 static inline void SET_GetObjectParameterivAPPLE(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLenum, GLint *)) { 12699 SET_by_offset(disp, _gloffset_GetObjectParameterivAPPLE, fn); 12700 } 12701 12702 typedef GLenum (GLAPIENTRYP _glptr_ObjectPurgeableAPPLE)(GLenum, GLuint, GLenum); 12703 #define CALL_ObjectPurgeableAPPLE(disp, parameters) \ 12704 (* GET_ObjectPurgeableAPPLE(disp)) parameters 12705 static inline _glptr_ObjectPurgeableAPPLE GET_ObjectPurgeableAPPLE(struct _glapi_table *disp) { 12706 return (_glptr_ObjectPurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE)); 12707 } 12708 12709 static inline void SET_ObjectPurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) { 12710 SET_by_offset(disp, _gloffset_ObjectPurgeableAPPLE, fn); 12711 } 12712 12713 typedef GLenum (GLAPIENTRYP _glptr_ObjectUnpurgeableAPPLE)(GLenum, GLuint, GLenum); 12714 #define CALL_ObjectUnpurgeableAPPLE(disp, parameters) \ 12715 (* GET_ObjectUnpurgeableAPPLE(disp)) parameters 12716 static inline _glptr_ObjectUnpurgeableAPPLE GET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp) { 12717 return (_glptr_ObjectUnpurgeableAPPLE) (GET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE)); 12718 } 12719 12720 static inline void SET_ObjectUnpurgeableAPPLE(struct _glapi_table *disp, GLenum (GLAPIENTRYP fn)(GLenum, GLuint, GLenum)) { 12721 SET_by_offset(disp, _gloffset_ObjectUnpurgeableAPPLE, fn); 12722 } 12723 12724 typedef void (GLAPIENTRYP _glptr_ActiveProgramEXT)(GLuint); 12725 #define CALL_ActiveProgramEXT(disp, parameters) \ 12726 (* GET_ActiveProgramEXT(disp)) parameters 12727 static inline _glptr_ActiveProgramEXT GET_ActiveProgramEXT(struct _glapi_table *disp) { 12728 return (_glptr_ActiveProgramEXT) (GET_by_offset(disp, _gloffset_ActiveProgramEXT)); 12729 } 12730 12731 static inline void SET_ActiveProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) { 12732 SET_by_offset(disp, _gloffset_ActiveProgramEXT, fn); 12733 } 12734 12735 typedef GLuint (GLAPIENTRYP _glptr_CreateShaderProgramEXT)(GLenum, const GLchar *); 12736 #define CALL_CreateShaderProgramEXT(disp, parameters) \ 12737 (* GET_CreateShaderProgramEXT(disp)) parameters 12738 static inline _glptr_CreateShaderProgramEXT GET_CreateShaderProgramEXT(struct _glapi_table *disp) { 12739 return (_glptr_CreateShaderProgramEXT) (GET_by_offset(disp, _gloffset_CreateShaderProgramEXT)); 12740 } 12741 12742 static inline void SET_CreateShaderProgramEXT(struct _glapi_table *disp, GLuint (GLAPIENTRYP fn)(GLenum, const GLchar *)) { 12743 SET_by_offset(disp, _gloffset_CreateShaderProgramEXT, fn); 12744 } 12745 12746 typedef void (GLAPIENTRYP _glptr_UseShaderProgramEXT)(GLenum, GLuint); 12747 #define CALL_UseShaderProgramEXT(disp, parameters) \ 12748 (* GET_UseShaderProgramEXT(disp)) parameters 12749 static inline _glptr_UseShaderProgramEXT GET_UseShaderProgramEXT(struct _glapi_table *disp) { 12750 return (_glptr_UseShaderProgramEXT) (GET_by_offset(disp, _gloffset_UseShaderProgramEXT)); 12751 } 12752 12753 static inline void SET_UseShaderProgramEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint)) { 12754 SET_by_offset(disp, _gloffset_UseShaderProgramEXT, fn); 12755 } 12756 12757 typedef void (GLAPIENTRYP _glptr_TextureBarrierNV)(void); 12758 #define CALL_TextureBarrierNV(disp, parameters) \ 12759 (* GET_TextureBarrierNV(disp)) parameters 12760 static inline _glptr_TextureBarrierNV GET_TextureBarrierNV(struct _glapi_table *disp) { 12761 return (_glptr_TextureBarrierNV) (GET_by_offset(disp, _gloffset_TextureBarrierNV)); 12762 } 12763 12764 static inline void SET_TextureBarrierNV(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) { 12765 SET_by_offset(disp, _gloffset_TextureBarrierNV, fn); 12766 } 12767 12768 typedef void (GLAPIENTRYP _glptr_StencilFuncSeparateATI)(GLenum, GLenum, GLint, GLuint); 12769 #define CALL_StencilFuncSeparateATI(disp, parameters) \ 12770 (* GET_StencilFuncSeparateATI(disp)) parameters 12771 static inline _glptr_StencilFuncSeparateATI GET_StencilFuncSeparateATI(struct _glapi_table *disp) { 12772 return (_glptr_StencilFuncSeparateATI) (GET_by_offset(disp, _gloffset_StencilFuncSeparateATI)); 12773 } 12774 12775 static inline void SET_StencilFuncSeparateATI(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLint, GLuint)) { 12776 SET_by_offset(disp, _gloffset_StencilFuncSeparateATI, fn); 12777 } 12778 12779 typedef void (GLAPIENTRYP _glptr_ProgramEnvParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *); 12780 #define CALL_ProgramEnvParameters4fvEXT(disp, parameters) \ 12781 (* GET_ProgramEnvParameters4fvEXT(disp)) parameters 12782 static inline _glptr_ProgramEnvParameters4fvEXT GET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp) { 12783 return (_glptr_ProgramEnvParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT)); 12784 } 12785 12786 static inline void SET_ProgramEnvParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) { 12787 SET_by_offset(disp, _gloffset_ProgramEnvParameters4fvEXT, fn); 12788 } 12789 12790 typedef void (GLAPIENTRYP _glptr_ProgramLocalParameters4fvEXT)(GLenum, GLuint, GLsizei, const GLfloat *); 12791 #define CALL_ProgramLocalParameters4fvEXT(disp, parameters) \ 12792 (* GET_ProgramLocalParameters4fvEXT(disp)) parameters 12793 static inline _glptr_ProgramLocalParameters4fvEXT GET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp) { 12794 return (_glptr_ProgramLocalParameters4fvEXT) (GET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT)); 12795 } 12796 12797 static inline void SET_ProgramLocalParameters4fvEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLsizei, const GLfloat *)) { 12798 SET_by_offset(disp, _gloffset_ProgramLocalParameters4fvEXT, fn); 12799 } 12800 12801 typedef void (GLAPIENTRYP _glptr_GetQueryObjecti64vEXT)(GLuint, GLenum, GLint64EXT *); 12802 #define CALL_GetQueryObjecti64vEXT(disp, parameters) \ 12803 (* GET_GetQueryObjecti64vEXT(disp)) parameters 12804 static inline _glptr_GetQueryObjecti64vEXT GET_GetQueryObjecti64vEXT(struct _glapi_table *disp) { 12805 return (_glptr_GetQueryObjecti64vEXT) (GET_by_offset(disp, _gloffset_GetQueryObjecti64vEXT)); 12806 } 12807 12808 static inline void SET_GetQueryObjecti64vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint64EXT *)) { 12809 SET_by_offset(disp, _gloffset_GetQueryObjecti64vEXT, fn); 12810 } 12811 12812 typedef void (GLAPIENTRYP _glptr_GetQueryObjectui64vEXT)(GLuint, GLenum, GLuint64EXT *); 12813 #define CALL_GetQueryObjectui64vEXT(disp, parameters) \ 12814 (* GET_GetQueryObjectui64vEXT(disp)) parameters 12815 static inline _glptr_GetQueryObjectui64vEXT GET_GetQueryObjectui64vEXT(struct _glapi_table *disp) { 12816 return (_glptr_GetQueryObjectui64vEXT) (GET_by_offset(disp, _gloffset_GetQueryObjectui64vEXT)); 12817 } 12818 12819 static inline void SET_GetQueryObjectui64vEXT(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLuint64EXT *)) { 12820 SET_by_offset(disp, _gloffset_GetQueryObjectui64vEXT, fn); 12821 } 12822 12823 typedef void (GLAPIENTRYP _glptr_EGLImageTargetRenderbufferStorageOES)(GLenum, GLvoid *); 12824 #define CALL_EGLImageTargetRenderbufferStorageOES(disp, parameters) \ 12825 (* GET_EGLImageTargetRenderbufferStorageOES(disp)) parameters 12826 static inline _glptr_EGLImageTargetRenderbufferStorageOES GET_EGLImageTargetRenderbufferStorageOES(struct _glapi_table *disp) { 12827 return (_glptr_EGLImageTargetRenderbufferStorageOES) (GET_by_offset(disp, _gloffset_EGLImageTargetRenderbufferStorageOES)); 12828 } 12829 12830 static inline void SET_EGLImageTargetRenderbufferStorageOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid *)) { 12831 SET_by_offset(disp, _gloffset_EGLImageTargetRenderbufferStorageOES, fn); 12832 } 12833 12834 typedef void (GLAPIENTRYP _glptr_EGLImageTargetTexture2DOES)(GLenum, GLvoid *); 12835 #define CALL_EGLImageTargetTexture2DOES(disp, parameters) \ 12836 (* GET_EGLImageTargetTexture2DOES(disp)) parameters 12837 static inline _glptr_EGLImageTargetTexture2DOES GET_EGLImageTargetTexture2DOES(struct _glapi_table *disp) { 12838 return (_glptr_EGLImageTargetTexture2DOES) (GET_by_offset(disp, _gloffset_EGLImageTargetTexture2DOES)); 12839 } 12840 12841 static inline void SET_EGLImageTargetTexture2DOES(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLvoid *)) { 12842 SET_by_offset(disp, _gloffset_EGLImageTargetTexture2DOES, fn); 12843 } 12844 12845 12846 #endif /* !defined( _DISPATCH_H_ ) */ 12847