aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gl/glxext.h13
-rw-r--r--gl/internal/dri_interface.h1
-rwxr-xr-x[-rw-r--r--]libxcb/src/makefile.srcs10
-rw-r--r--libxcb/src/man/.gitignore1
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj3
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters9
-rw-r--r--xorg-server/glx/dispatch.h530
-rw-r--r--xorg-server/glx/glapitable.h502
-rw-r--r--xorg-server/glx/glfunctions.h2
-rw-r--r--xorg-server/glx/glprocs.h1584
-rw-r--r--xorg-server/glx/indirect_dispatch.h4
-rw-r--r--xorg-server/glx/remap_helper.h1220
-rw-r--r--xorg-server/hw/xwin/glx/genheaders.py24
13 files changed, 1991 insertions, 1912 deletions
diff --git a/gl/glxext.h b/gl/glxext.h
index 713238519..8c642f354 100644
--- a/gl/glxext.h
+++ b/gl/glxext.h
@@ -33,10 +33,10 @@ extern "C" {
** used to make the header, and the header can be found at
** http://www.opengl.org/registry/
**
-** Khronos $Revision: 23422 $ on $Date: 2013-10-08 15:40:45 -0700 (Tue, 08 Oct 2013) $
+** Khronos $Revision: 24777 $ on $Date: 2014-01-14 14:02:32 -0800 (Tue, 14 Jan 2014) $
*/
-#define GLX_GLXEXT_VERSION 20131008
+#define GLX_GLXEXT_VERSION 20140114
/* Generated C header for:
* API: glx
@@ -49,6 +49,7 @@ extern "C" {
#ifndef GLX_VERSION_1_3
#define GLX_VERSION_1_3 1
+typedef XID GLXContextID;
typedef struct __GLXFBConfigRec *GLXFBConfig;
typedef XID GLXWindow;
typedef XID GLXPbuffer;
@@ -432,6 +433,14 @@ void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLe
#endif
#endif /* GLX_NV_copy_image */
+#ifndef GLX_NV_delay_before_swap
+#define GLX_NV_delay_before_swap 1
+typedef Bool ( *PFNGLXDELAYBEFORESWAPNVPROC) (Display *dpy, GLXDrawable drawable, GLfloat seconds);
+#ifdef GLX_GLXEXT_PROTOTYPES
+Bool glXDelayBeforeSwapNV (Display *dpy, GLXDrawable drawable, GLfloat seconds);
+#endif
+#endif /* GLX_NV_delay_before_swap */
+
#ifndef GLX_NV_float_buffer
#define GLX_NV_float_buffer 1
#define GLX_FLOAT_COMPONENTS_NV 0x20B0
diff --git a/gl/internal/dri_interface.h b/gl/internal/dri_interface.h
index dc94cf255..6b9e5ecbc 100644
--- a/gl/internal/dri_interface.h
+++ b/gl/internal/dri_interface.h
@@ -1045,6 +1045,7 @@ struct __DRIdri2ExtensionRec {
#define __DRI_IMAGE_FOURCC_XRGB8888 0x34325258
#define __DRI_IMAGE_FOURCC_ABGR8888 0x34324241
#define __DRI_IMAGE_FOURCC_XBGR8888 0x34324258
+#define __DRI_IMAGE_FOURCC_SARGB8888 0x83324258
#define __DRI_IMAGE_FOURCC_YUV410 0x39565559
#define __DRI_IMAGE_FOURCC_YUV411 0x31315559
#define __DRI_IMAGE_FOURCC_YUV420 0x32315559
diff --git a/libxcb/src/makefile.srcs b/libxcb/src/makefile.srcs
index 0dc043ece..37dd181b8 100644..100755
--- a/libxcb/src/makefile.srcs
+++ b/libxcb/src/makefile.srcs
@@ -2,14 +2,20 @@ ifneq ($(NORELDBG),1)
$(error NORELDBG should have been set to 1)
endif
+PACKAGE_STRING=libxcb
+XORG_MAN_PAGE=libxcb
+LIB_MAN_SUFFIX=xcb
+
XCBPROTO_XCBPYTHONDIR = ../xcb-proto
XCBPROTO_XCBINCLUDEDIR = ../xcb-proto/src
%.h: $(XCBPROTO_XCBINCLUDEDIR)\%.xml
- python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<)
+ python c_client.py -c "$(PACKAGE_STRING)" -l "$(XORG_MAN_PAGE)" \
+ -s "$(LIB_MAN_SUFFIX)" -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<)
%.c: $(XCBPROTO_XCBINCLUDEDIR)\%.xml
- python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<)
+ python c_client.py -c "$(PACKAGE_STRING)" -l "$(XORG_MAN_PAGE)" \
+ -s "$(LIB_MAN_SUFFIX)" -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<)
CLEANRULEPOSTFIX=noobjs
diff --git a/libxcb/src/man/.gitignore b/libxcb/src/man/.gitignore
index f000a81f7..a73d43068 100644
--- a/libxcb/src/man/.gitignore
+++ b/libxcb/src/man/.gitignore
@@ -1,2 +1,3 @@
*.[0-9]
*.[0-9]x
+*.xcb
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
index 739e6cfce..d620d17ea 100644
--- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
+++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
@@ -302,11 +302,14 @@
<ClCompile Include="..\..\..\..\src\mesa\main\api_validate.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\arbprogram.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\atifragshader.c" />
+ <ClCompile Include="..\..\..\..\src\mesa\main\blit.c" />
+ <ClCompile Include="..\..\..\..\src\mesa\main\compute.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\drawtex.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\errors.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\es1_conversion.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\formatquery.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\format_pack.c" />
+ <ClCompile Include="..\..\..\..\src\mesa\main\genmipmap.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\glformats.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\hash_table.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\objectlabel.c" />
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
index 667cb1ad0..ac2a46d62 100644
--- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
+++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
@@ -779,6 +779,15 @@
<ClCompile Include="..\..\..\..\src\glsl\opt_vectorize.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\mesa\main\blit.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\..\..\src\mesa\main\compute.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\..\..\src\mesa\main\genmipmap.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
diff --git a/xorg-server/glx/dispatch.h b/xorg-server/glx/dispatch.h
index c13149ab2..3ed83f841 100644
--- a/xorg-server/glx/dispatch.h
+++ b/xorg-server/glx/dispatch.h
@@ -63,7 +63,7 @@
} while(0)
/* total number of offsets below */
-#define _gloffset_COUNT 1094
+#define _gloffset_COUNT 1096
#define _gloffset_NewList 0
#define _gloffset_EndList 1
@@ -473,7 +473,7 @@
#define _gloffset_MultiTexCoord4iv 405
#define _gloffset_MultiTexCoord4s 406
#define _gloffset_MultiTexCoord4sv 407
-#define driDispatchRemapTable_size 686
+#define driDispatchRemapTable_size 688
SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define CompressedTexImage1D_remap_index 0
@@ -912,256 +912,258 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define TextureStorage3DEXT_remap_index 433
#define ClearBufferData_remap_index 434
#define ClearBufferSubData_remap_index 435
-#define TextureView_remap_index 436
-#define BindVertexBuffer_remap_index 437
-#define VertexAttribBinding_remap_index 438
-#define VertexAttribFormat_remap_index 439
-#define VertexAttribIFormat_remap_index 440
-#define VertexAttribLFormat_remap_index 441
-#define VertexBindingDivisor_remap_index 442
-#define MultiDrawArraysIndirect_remap_index 443
-#define MultiDrawElementsIndirect_remap_index 444
-#define TexBufferRange_remap_index 445
-#define TexStorage2DMultisample_remap_index 446
-#define TexStorage3DMultisample_remap_index 447
-#define InvalidateBufferData_remap_index 448
-#define InvalidateBufferSubData_remap_index 449
-#define InvalidateFramebuffer_remap_index 450
-#define InvalidateSubFramebuffer_remap_index 451
-#define InvalidateTexImage_remap_index 452
-#define InvalidateTexSubImage_remap_index 453
-#define PolygonOffsetEXT_remap_index 454
-#define DrawTexfOES_remap_index 455
-#define DrawTexfvOES_remap_index 456
-#define DrawTexiOES_remap_index 457
-#define DrawTexivOES_remap_index 458
-#define DrawTexsOES_remap_index 459
-#define DrawTexsvOES_remap_index 460
-#define DrawTexxOES_remap_index 461
-#define DrawTexxvOES_remap_index 462
-#define PointSizePointerOES_remap_index 463
-#define QueryMatrixxOES_remap_index 464
-#define SampleMaskSGIS_remap_index 465
-#define SamplePatternSGIS_remap_index 466
-#define ColorPointerEXT_remap_index 467
-#define EdgeFlagPointerEXT_remap_index 468
-#define IndexPointerEXT_remap_index 469
-#define NormalPointerEXT_remap_index 470
-#define TexCoordPointerEXT_remap_index 471
-#define VertexPointerEXT_remap_index 472
-#define DiscardFramebufferEXT_remap_index 473
-#define LockArraysEXT_remap_index 474
-#define UnlockArraysEXT_remap_index 475
-#define DebugMessageCallback_remap_index 476
-#define DebugMessageControl_remap_index 477
-#define DebugMessageInsert_remap_index 478
-#define GetDebugMessageLog_remap_index 479
-#define GetObjectLabel_remap_index 480
-#define GetObjectPtrLabel_remap_index 481
-#define ObjectLabel_remap_index 482
-#define ObjectPtrLabel_remap_index 483
-#define PopDebugGroup_remap_index 484
-#define PushDebugGroup_remap_index 485
-#define SecondaryColor3fEXT_remap_index 486
-#define SecondaryColor3fvEXT_remap_index 487
-#define MultiDrawElementsEXT_remap_index 488
-#define FogCoordfEXT_remap_index 489
-#define FogCoordfvEXT_remap_index 490
-#define ResizeBuffersMESA_remap_index 491
-#define WindowPos4dMESA_remap_index 492
-#define WindowPos4dvMESA_remap_index 493
-#define WindowPos4fMESA_remap_index 494
-#define WindowPos4fvMESA_remap_index 495
-#define WindowPos4iMESA_remap_index 496
-#define WindowPos4ivMESA_remap_index 497
-#define WindowPos4sMESA_remap_index 498
-#define WindowPos4svMESA_remap_index 499
-#define MultiModeDrawArraysIBM_remap_index 500
-#define MultiModeDrawElementsIBM_remap_index 501
-#define AreProgramsResidentNV_remap_index 502
-#define ExecuteProgramNV_remap_index 503
-#define GetProgramParameterdvNV_remap_index 504
-#define GetProgramParameterfvNV_remap_index 505
-#define GetProgramStringNV_remap_index 506
-#define GetProgramivNV_remap_index 507
-#define GetTrackMatrixivNV_remap_index 508
-#define GetVertexAttribdvNV_remap_index 509
-#define GetVertexAttribfvNV_remap_index 510
-#define GetVertexAttribivNV_remap_index 511
-#define LoadProgramNV_remap_index 512
-#define ProgramParameters4dvNV_remap_index 513
-#define ProgramParameters4fvNV_remap_index 514
-#define RequestResidentProgramsNV_remap_index 515
-#define TrackMatrixNV_remap_index 516
-#define VertexAttrib1dNV_remap_index 517
-#define VertexAttrib1dvNV_remap_index 518
-#define VertexAttrib1fNV_remap_index 519
-#define VertexAttrib1fvNV_remap_index 520
-#define VertexAttrib1sNV_remap_index 521
-#define VertexAttrib1svNV_remap_index 522
-#define VertexAttrib2dNV_remap_index 523
-#define VertexAttrib2dvNV_remap_index 524
-#define VertexAttrib2fNV_remap_index 525
-#define VertexAttrib2fvNV_remap_index 526
-#define VertexAttrib2sNV_remap_index 527
-#define VertexAttrib2svNV_remap_index 528
-#define VertexAttrib3dNV_remap_index 529
-#define VertexAttrib3dvNV_remap_index 530
-#define VertexAttrib3fNV_remap_index 531
-#define VertexAttrib3fvNV_remap_index 532
-#define VertexAttrib3sNV_remap_index 533
-#define VertexAttrib3svNV_remap_index 534
-#define VertexAttrib4dNV_remap_index 535
-#define VertexAttrib4dvNV_remap_index 536
-#define VertexAttrib4fNV_remap_index 537
-#define VertexAttrib4fvNV_remap_index 538
-#define VertexAttrib4sNV_remap_index 539
-#define VertexAttrib4svNV_remap_index 540
-#define VertexAttrib4ubNV_remap_index 541
-#define VertexAttrib4ubvNV_remap_index 542
-#define VertexAttribPointerNV_remap_index 543
-#define VertexAttribs1dvNV_remap_index 544
-#define VertexAttribs1fvNV_remap_index 545
-#define VertexAttribs1svNV_remap_index 546
-#define VertexAttribs2dvNV_remap_index 547
-#define VertexAttribs2fvNV_remap_index 548
-#define VertexAttribs2svNV_remap_index 549
-#define VertexAttribs3dvNV_remap_index 550
-#define VertexAttribs3fvNV_remap_index 551
-#define VertexAttribs3svNV_remap_index 552
-#define VertexAttribs4dvNV_remap_index 553
-#define VertexAttribs4fvNV_remap_index 554
-#define VertexAttribs4svNV_remap_index 555
-#define VertexAttribs4ubvNV_remap_index 556
-#define GetTexBumpParameterfvATI_remap_index 557
-#define GetTexBumpParameterivATI_remap_index 558
-#define TexBumpParameterfvATI_remap_index 559
-#define TexBumpParameterivATI_remap_index 560
-#define AlphaFragmentOp1ATI_remap_index 561
-#define AlphaFragmentOp2ATI_remap_index 562
-#define AlphaFragmentOp3ATI_remap_index 563
-#define BeginFragmentShaderATI_remap_index 564
-#define BindFragmentShaderATI_remap_index 565
-#define ColorFragmentOp1ATI_remap_index 566
-#define ColorFragmentOp2ATI_remap_index 567
-#define ColorFragmentOp3ATI_remap_index 568
-#define DeleteFragmentShaderATI_remap_index 569
-#define EndFragmentShaderATI_remap_index 570
-#define GenFragmentShadersATI_remap_index 571
-#define PassTexCoordATI_remap_index 572
-#define SampleMapATI_remap_index 573
-#define SetFragmentShaderConstantATI_remap_index 574
-#define ActiveStencilFaceEXT_remap_index 575
-#define BindVertexArrayAPPLE_remap_index 576
-#define GenVertexArraysAPPLE_remap_index 577
-#define GetProgramNamedParameterdvNV_remap_index 578
-#define GetProgramNamedParameterfvNV_remap_index 579
-#define ProgramNamedParameter4dNV_remap_index 580
-#define ProgramNamedParameter4dvNV_remap_index 581
-#define ProgramNamedParameter4fNV_remap_index 582
-#define ProgramNamedParameter4fvNV_remap_index 583
-#define PrimitiveRestartNV_remap_index 584
-#define GetTexGenxvOES_remap_index 585
-#define TexGenxOES_remap_index 586
-#define TexGenxvOES_remap_index 587
-#define DepthBoundsEXT_remap_index 588
-#define BindFramebufferEXT_remap_index 589
-#define BindRenderbufferEXT_remap_index 590
-#define BufferParameteriAPPLE_remap_index 591
-#define FlushMappedBufferRangeAPPLE_remap_index 592
-#define VertexAttribI1iEXT_remap_index 593
-#define VertexAttribI1uiEXT_remap_index 594
-#define VertexAttribI2iEXT_remap_index 595
-#define VertexAttribI2ivEXT_remap_index 596
-#define VertexAttribI2uiEXT_remap_index 597
-#define VertexAttribI2uivEXT_remap_index 598
-#define VertexAttribI3iEXT_remap_index 599
-#define VertexAttribI3ivEXT_remap_index 600
-#define VertexAttribI3uiEXT_remap_index 601
-#define VertexAttribI3uivEXT_remap_index 602
-#define VertexAttribI4iEXT_remap_index 603
-#define VertexAttribI4ivEXT_remap_index 604
-#define VertexAttribI4uiEXT_remap_index 605
-#define VertexAttribI4uivEXT_remap_index 606
-#define ClearColorIiEXT_remap_index 607
-#define ClearColorIuiEXT_remap_index 608
-#define BindBufferOffsetEXT_remap_index 609
-#define BeginPerfMonitorAMD_remap_index 610
-#define DeletePerfMonitorsAMD_remap_index 611
-#define EndPerfMonitorAMD_remap_index 612
-#define GenPerfMonitorsAMD_remap_index 613
-#define GetPerfMonitorCounterDataAMD_remap_index 614
-#define GetPerfMonitorCounterInfoAMD_remap_index 615
-#define GetPerfMonitorCounterStringAMD_remap_index 616
-#define GetPerfMonitorCountersAMD_remap_index 617
-#define GetPerfMonitorGroupStringAMD_remap_index 618
-#define GetPerfMonitorGroupsAMD_remap_index 619
-#define SelectPerfMonitorCountersAMD_remap_index 620
-#define GetObjectParameterivAPPLE_remap_index 621
-#define ObjectPurgeableAPPLE_remap_index 622
-#define ObjectUnpurgeableAPPLE_remap_index 623
-#define ActiveProgramEXT_remap_index 624
-#define CreateShaderProgramEXT_remap_index 625
-#define UseShaderProgramEXT_remap_index 626
-#define TextureBarrierNV_remap_index 627
-#define VDPAUFiniNV_remap_index 628
-#define VDPAUGetSurfaceivNV_remap_index 629
-#define VDPAUInitNV_remap_index 630
-#define VDPAUIsSurfaceNV_remap_index 631
-#define VDPAUMapSurfacesNV_remap_index 632
-#define VDPAURegisterOutputSurfaceNV_remap_index 633
-#define VDPAURegisterVideoSurfaceNV_remap_index 634
-#define VDPAUSurfaceAccessNV_remap_index 635
-#define VDPAUUnmapSurfacesNV_remap_index 636
-#define VDPAUUnregisterSurfaceNV_remap_index 637
-#define StencilFuncSeparateATI_remap_index 638
-#define ProgramEnvParameters4fvEXT_remap_index 639
-#define ProgramLocalParameters4fvEXT_remap_index 640
-#define EGLImageTargetRenderbufferStorageOES_remap_index 641
-#define EGLImageTargetTexture2DOES_remap_index 642
-#define AlphaFuncx_remap_index 643
-#define ClearColorx_remap_index 644
-#define ClearDepthx_remap_index 645
-#define Color4x_remap_index 646
-#define DepthRangex_remap_index 647
-#define Fogx_remap_index 648
-#define Fogxv_remap_index 649
-#define Frustumf_remap_index 650
-#define Frustumx_remap_index 651
-#define LightModelx_remap_index 652
-#define LightModelxv_remap_index 653
-#define Lightx_remap_index 654
-#define Lightxv_remap_index 655
-#define LineWidthx_remap_index 656
-#define LoadMatrixx_remap_index 657
-#define Materialx_remap_index 658
-#define Materialxv_remap_index 659
-#define MultMatrixx_remap_index 660
-#define MultiTexCoord4x_remap_index 661
-#define Normal3x_remap_index 662
-#define Orthof_remap_index 663
-#define Orthox_remap_index 664
-#define PointSizex_remap_index 665
-#define PolygonOffsetx_remap_index 666
-#define Rotatex_remap_index 667
-#define SampleCoveragex_remap_index 668
-#define Scalex_remap_index 669
-#define TexEnvx_remap_index 670
-#define TexEnvxv_remap_index 671
-#define TexParameterx_remap_index 672
-#define Translatex_remap_index 673
-#define ClipPlanef_remap_index 674
-#define ClipPlanex_remap_index 675
-#define GetClipPlanef_remap_index 676
-#define GetClipPlanex_remap_index 677
-#define GetFixedv_remap_index 678
-#define GetLightxv_remap_index 679
-#define GetMaterialxv_remap_index 680
-#define GetTexEnvxv_remap_index 681
-#define GetTexParameterxv_remap_index 682
-#define PointParameterx_remap_index 683
-#define PointParameterxv_remap_index 684
-#define TexParameterxv_remap_index 685
+#define DispatchCompute_remap_index 436
+#define DispatchComputeIndirect_remap_index 437
+#define TextureView_remap_index 438
+#define BindVertexBuffer_remap_index 439
+#define VertexAttribBinding_remap_index 440
+#define VertexAttribFormat_remap_index 441
+#define VertexAttribIFormat_remap_index 442
+#define VertexAttribLFormat_remap_index 443
+#define VertexBindingDivisor_remap_index 444
+#define MultiDrawArraysIndirect_remap_index 445
+#define MultiDrawElementsIndirect_remap_index 446
+#define TexBufferRange_remap_index 447
+#define TexStorage2DMultisample_remap_index 448
+#define TexStorage3DMultisample_remap_index 449
+#define InvalidateBufferData_remap_index 450
+#define InvalidateBufferSubData_remap_index 451
+#define InvalidateFramebuffer_remap_index 452
+#define InvalidateSubFramebuffer_remap_index 453
+#define InvalidateTexImage_remap_index 454
+#define InvalidateTexSubImage_remap_index 455
+#define PolygonOffsetEXT_remap_index 456
+#define DrawTexfOES_remap_index 457
+#define DrawTexfvOES_remap_index 458
+#define DrawTexiOES_remap_index 459
+#define DrawTexivOES_remap_index 460
+#define DrawTexsOES_remap_index 461
+#define DrawTexsvOES_remap_index 462
+#define DrawTexxOES_remap_index 463
+#define DrawTexxvOES_remap_index 464
+#define PointSizePointerOES_remap_index 465
+#define QueryMatrixxOES_remap_index 466
+#define SampleMaskSGIS_remap_index 467
+#define SamplePatternSGIS_remap_index 468
+#define ColorPointerEXT_remap_index 469
+#define EdgeFlagPointerEXT_remap_index 470
+#define IndexPointerEXT_remap_index 471
+#define NormalPointerEXT_remap_index 472
+#define TexCoordPointerEXT_remap_index 473
+#define VertexPointerEXT_remap_index 474
+#define DiscardFramebufferEXT_remap_index 475
+#define LockArraysEXT_remap_index 476
+#define UnlockArraysEXT_remap_index 477
+#define DebugMessageCallback_remap_index 478
+#define DebugMessageControl_remap_index 479
+#define DebugMessageInsert_remap_index 480
+#define GetDebugMessageLog_remap_index 481
+#define GetObjectLabel_remap_index 482
+#define GetObjectPtrLabel_remap_index 483
+#define ObjectLabel_remap_index 484
+#define ObjectPtrLabel_remap_index 485
+#define PopDebugGroup_remap_index 486
+#define PushDebugGroup_remap_index 487
+#define SecondaryColor3fEXT_remap_index 488
+#define SecondaryColor3fvEXT_remap_index 489
+#define MultiDrawElementsEXT_remap_index 490
+#define FogCoordfEXT_remap_index 491
+#define FogCoordfvEXT_remap_index 492
+#define ResizeBuffersMESA_remap_index 493
+#define WindowPos4dMESA_remap_index 494
+#define WindowPos4dvMESA_remap_index 495
+#define WindowPos4fMESA_remap_index 496
+#define WindowPos4fvMESA_remap_index 497
+#define WindowPos4iMESA_remap_index 498
+#define WindowPos4ivMESA_remap_index 499
+#define WindowPos4sMESA_remap_index 500
+#define WindowPos4svMESA_remap_index 501
+#define MultiModeDrawArraysIBM_remap_index 502
+#define MultiModeDrawElementsIBM_remap_index 503
+#define AreProgramsResidentNV_remap_index 504
+#define ExecuteProgramNV_remap_index 505
+#define GetProgramParameterdvNV_remap_index 506
+#define GetProgramParameterfvNV_remap_index 507
+#define GetProgramStringNV_remap_index 508
+#define GetProgramivNV_remap_index 509
+#define GetTrackMatrixivNV_remap_index 510
+#define GetVertexAttribdvNV_remap_index 511
+#define GetVertexAttribfvNV_remap_index 512
+#define GetVertexAttribivNV_remap_index 513
+#define LoadProgramNV_remap_index 514
+#define ProgramParameters4dvNV_remap_index 515
+#define ProgramParameters4fvNV_remap_index 516
+#define RequestResidentProgramsNV_remap_index 517
+#define TrackMatrixNV_remap_index 518
+#define VertexAttrib1dNV_remap_index 519
+#define VertexAttrib1dvNV_remap_index 520
+#define VertexAttrib1fNV_remap_index 521
+#define VertexAttrib1fvNV_remap_index 522
+#define VertexAttrib1sNV_remap_index 523
+#define VertexAttrib1svNV_remap_index 524
+#define VertexAttrib2dNV_remap_index 525
+#define VertexAttrib2dvNV_remap_index 526
+#define VertexAttrib2fNV_remap_index 527
+#define VertexAttrib2fvNV_remap_index 528
+#define VertexAttrib2sNV_remap_index 529
+#define VertexAttrib2svNV_remap_index 530
+#define VertexAttrib3dNV_remap_index 531
+#define VertexAttrib3dvNV_remap_index 532
+#define VertexAttrib3fNV_remap_index 533
+#define VertexAttrib3fvNV_remap_index 534
+#define VertexAttrib3sNV_remap_index 535
+#define VertexAttrib3svNV_remap_index 536
+#define VertexAttrib4dNV_remap_index 537
+#define VertexAttrib4dvNV_remap_index 538
+#define VertexAttrib4fNV_remap_index 539
+#define VertexAttrib4fvNV_remap_index 540
+#define VertexAttrib4sNV_remap_index 541
+#define VertexAttrib4svNV_remap_index 542
+#define VertexAttrib4ubNV_remap_index 543
+#define VertexAttrib4ubvNV_remap_index 544
+#define VertexAttribPointerNV_remap_index 545
+#define VertexAttribs1dvNV_remap_index 546
+#define VertexAttribs1fvNV_remap_index 547
+#define VertexAttribs1svNV_remap_index 548
+#define VertexAttribs2dvNV_remap_index 549
+#define VertexAttribs2fvNV_remap_index 550
+#define VertexAttribs2svNV_remap_index 551
+#define VertexAttribs3dvNV_remap_index 552
+#define VertexAttribs3fvNV_remap_index 553
+#define VertexAttribs3svNV_remap_index 554
+#define VertexAttribs4dvNV_remap_index 555
+#define VertexAttribs4fvNV_remap_index 556
+#define VertexAttribs4svNV_remap_index 557
+#define VertexAttribs4ubvNV_remap_index 558
+#define GetTexBumpParameterfvATI_remap_index 559
+#define GetTexBumpParameterivATI_remap_index 560
+#define TexBumpParameterfvATI_remap_index 561
+#define TexBumpParameterivATI_remap_index 562
+#define AlphaFragmentOp1ATI_remap_index 563
+#define AlphaFragmentOp2ATI_remap_index 564
+#define AlphaFragmentOp3ATI_remap_index 565
+#define BeginFragmentShaderATI_remap_index 566
+#define BindFragmentShaderATI_remap_index 567
+#define ColorFragmentOp1ATI_remap_index 568
+#define ColorFragmentOp2ATI_remap_index 569
+#define ColorFragmentOp3ATI_remap_index 570
+#define DeleteFragmentShaderATI_remap_index 571
+#define EndFragmentShaderATI_remap_index 572
+#define GenFragmentShadersATI_remap_index 573
+#define PassTexCoordATI_remap_index 574
+#define SampleMapATI_remap_index 575
+#define SetFragmentShaderConstantATI_remap_index 576
+#define ActiveStencilFaceEXT_remap_index 577
+#define BindVertexArrayAPPLE_remap_index 578
+#define GenVertexArraysAPPLE_remap_index 579
+#define GetProgramNamedParameterdvNV_remap_index 580
+#define GetProgramNamedParameterfvNV_remap_index 581
+#define ProgramNamedParameter4dNV_remap_index 582
+#define ProgramNamedParameter4dvNV_remap_index 583
+#define ProgramNamedParameter4fNV_remap_index 584
+#define ProgramNamedParameter4fvNV_remap_index 585
+#define PrimitiveRestartNV_remap_index 586
+#define GetTexGenxvOES_remap_index 587
+#define TexGenxOES_remap_index 588
+#define TexGenxvOES_remap_index 589
+#define DepthBoundsEXT_remap_index 590
+#define BindFramebufferEXT_remap_index 591
+#define BindRenderbufferEXT_remap_index 592
+#define BufferParameteriAPPLE_remap_index 593
+#define FlushMappedBufferRangeAPPLE_remap_index 594
+#define VertexAttribI1iEXT_remap_index 595
+#define VertexAttribI1uiEXT_remap_index 596
+#define VertexAttribI2iEXT_remap_index 597
+#define VertexAttribI2ivEXT_remap_index 598
+#define VertexAttribI2uiEXT_remap_index 599
+#define VertexAttribI2uivEXT_remap_index 600
+#define VertexAttribI3iEXT_remap_index 601
+#define VertexAttribI3ivEXT_remap_index 602
+#define VertexAttribI3uiEXT_remap_index 603
+#define VertexAttribI3uivEXT_remap_index 604
+#define VertexAttribI4iEXT_remap_index 605
+#define VertexAttribI4ivEXT_remap_index 606
+#define VertexAttribI4uiEXT_remap_index 607
+#define VertexAttribI4uivEXT_remap_index 608
+#define ClearColorIiEXT_remap_index 609
+#define ClearColorIuiEXT_remap_index 610
+#define BindBufferOffsetEXT_remap_index 611
+#define BeginPerfMonitorAMD_remap_index 612
+#define DeletePerfMonitorsAMD_remap_index 613
+#define EndPerfMonitorAMD_remap_index 614
+#define GenPerfMonitorsAMD_remap_index 615
+#define GetPerfMonitorCounterDataAMD_remap_index 616
+#define GetPerfMonitorCounterInfoAMD_remap_index 617
+#define GetPerfMonitorCounterStringAMD_remap_index 618
+#define GetPerfMonitorCountersAMD_remap_index 619
+#define GetPerfMonitorGroupStringAMD_remap_index 620
+#define GetPerfMonitorGroupsAMD_remap_index 621
+#define SelectPerfMonitorCountersAMD_remap_index 622
+#define GetObjectParameterivAPPLE_remap_index 623
+#define ObjectPurgeableAPPLE_remap_index 624
+#define ObjectUnpurgeableAPPLE_remap_index 625
+#define ActiveProgramEXT_remap_index 626
+#define CreateShaderProgramEXT_remap_index 627
+#define UseShaderProgramEXT_remap_index 628
+#define TextureBarrierNV_remap_index 629
+#define VDPAUFiniNV_remap_index 630
+#define VDPAUGetSurfaceivNV_remap_index 631
+#define VDPAUInitNV_remap_index 632
+#define VDPAUIsSurfaceNV_remap_index 633
+#define VDPAUMapSurfacesNV_remap_index 634
+#define VDPAURegisterOutputSurfaceNV_remap_index 635
+#define VDPAURegisterVideoSurfaceNV_remap_index 636
+#define VDPAUSurfaceAccessNV_remap_index 637
+#define VDPAUUnmapSurfacesNV_remap_index 638
+#define VDPAUUnregisterSurfaceNV_remap_index 639
+#define StencilFuncSeparateATI_remap_index 640
+#define ProgramEnvParameters4fvEXT_remap_index 641
+#define ProgramLocalParameters4fvEXT_remap_index 642
+#define EGLImageTargetRenderbufferStorageOES_remap_index 643
+#define EGLImageTargetTexture2DOES_remap_index 644
+#define AlphaFuncx_remap_index 645
+#define ClearColorx_remap_index 646
+#define ClearDepthx_remap_index 647
+#define Color4x_remap_index 648
+#define DepthRangex_remap_index 649
+#define Fogx_remap_index 650
+#define Fogxv_remap_index 651
+#define Frustumf_remap_index 652
+#define Frustumx_remap_index 653
+#define LightModelx_remap_index 654
+#define LightModelxv_remap_index 655
+#define Lightx_remap_index 656
+#define Lightxv_remap_index 657
+#define LineWidthx_remap_index 658
+#define LoadMatrixx_remap_index 659
+#define Materialx_remap_index 660
+#define Materialxv_remap_index 661
+#define MultMatrixx_remap_index 662
+#define MultiTexCoord4x_remap_index 663
+#define Normal3x_remap_index 664
+#define Orthof_remap_index 665
+#define Orthox_remap_index 666
+#define PointSizex_remap_index 667
+#define PolygonOffsetx_remap_index 668
+#define Rotatex_remap_index 669
+#define SampleCoveragex_remap_index 670
+#define Scalex_remap_index 671
+#define TexEnvx_remap_index 672
+#define TexEnvxv_remap_index 673
+#define TexParameterx_remap_index 674
+#define Translatex_remap_index 675
+#define ClipPlanef_remap_index 676
+#define ClipPlanex_remap_index 677
+#define GetClipPlanef_remap_index 678
+#define GetClipPlanex_remap_index 679
+#define GetFixedv_remap_index 680
+#define GetLightxv_remap_index 681
+#define GetMaterialxv_remap_index 682
+#define GetTexEnvxv_remap_index 683
+#define GetTexParameterxv_remap_index 684
+#define PointParameterx_remap_index 685
+#define PointParameterxv_remap_index 686
+#define TexParameterxv_remap_index 687
#define _gloffset_CompressedTexImage1D driDispatchRemapTable[CompressedTexImage1D_remap_index]
#define _gloffset_CompressedTexImage2D driDispatchRemapTable[CompressedTexImage2D_remap_index]
@@ -1599,6 +1601,8 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index]
#define _gloffset_ClearBufferData driDispatchRemapTable[ClearBufferData_remap_index]
#define _gloffset_ClearBufferSubData driDispatchRemapTable[ClearBufferSubData_remap_index]
+#define _gloffset_DispatchCompute driDispatchRemapTable[DispatchCompute_remap_index]
+#define _gloffset_DispatchComputeIndirect driDispatchRemapTable[DispatchComputeIndirect_remap_index]
#define _gloffset_TextureView driDispatchRemapTable[TextureView_remap_index]
#define _gloffset_BindVertexBuffer driDispatchRemapTable[BindVertexBuffer_remap_index]
#define _gloffset_VertexAttribBinding driDispatchRemapTable[VertexAttribBinding_remap_index]
@@ -11134,6 +11138,28 @@ static INLINE void SET_ClearBufferSubData(struct _glapi_table *disp, void (GLAPI
SET_by_offset(disp, _gloffset_ClearBufferSubData, fn);
}
+typedef void (GLAPIENTRYP _glptr_DispatchCompute)(GLuint, GLuint, GLuint);
+#define CALL_DispatchCompute(disp, parameters) \
+ (* GET_DispatchCompute(disp)) parameters
+static INLINE _glptr_DispatchCompute GET_DispatchCompute(struct _glapi_table *disp) {
+ return (_glptr_DispatchCompute) (GET_by_offset(disp, _gloffset_DispatchCompute));
+}
+
+static INLINE void SET_DispatchCompute(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint)) {
+ SET_by_offset(disp, _gloffset_DispatchCompute, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_DispatchComputeIndirect)(GLintptr);
+#define CALL_DispatchComputeIndirect(disp, parameters) \
+ (* GET_DispatchComputeIndirect(disp)) parameters
+static INLINE _glptr_DispatchComputeIndirect GET_DispatchComputeIndirect(struct _glapi_table *disp) {
+ return (_glptr_DispatchComputeIndirect) (GET_by_offset(disp, _gloffset_DispatchComputeIndirect));
+}
+
+static INLINE void SET_DispatchComputeIndirect(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLintptr)) {
+ SET_by_offset(disp, _gloffset_DispatchComputeIndirect, fn);
+}
+
typedef void (GLAPIENTRYP _glptr_TextureView)(GLuint, GLenum, GLuint, GLenum, GLuint, GLuint, GLuint, GLuint);
#define CALL_TextureView(disp, parameters) \
(* GET_TextureView(disp)) parameters
diff --git a/xorg-server/glx/glapitable.h b/xorg-server/glx/glapitable.h
index c49bfff1a..3cb9b7b44 100644
--- a/xorg-server/glx/glapitable.h
+++ b/xorg-server/glx/glapitable.h
@@ -885,256 +885,258 @@ struct _glapi_table
void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 841 */
void (GLAPIENTRYP ClearBufferData)(GLenum target, GLenum internalformat, GLenum format, GLenum type, const GLvoid * data); /* 842 */
void (GLAPIENTRYP ClearBufferSubData)(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const GLvoid * data); /* 843 */
- void (GLAPIENTRYP TextureView)(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); /* 844 */
- void (GLAPIENTRYP BindVertexBuffer)(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); /* 845 */
- void (GLAPIENTRYP VertexAttribBinding)(GLuint attribindex, GLuint bindingindex); /* 846 */
- void (GLAPIENTRYP VertexAttribFormat)(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); /* 847 */
- void (GLAPIENTRYP VertexAttribIFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 848 */
- void (GLAPIENTRYP VertexAttribLFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 849 */
- void (GLAPIENTRYP VertexBindingDivisor)(GLuint attribindex, GLuint divisor); /* 850 */
- void (GLAPIENTRYP MultiDrawArraysIndirect)(GLenum mode, const GLvoid * indirect, GLsizei primcount, GLsizei stride); /* 851 */
- void (GLAPIENTRYP MultiDrawElementsIndirect)(GLenum mode, GLenum type, const GLvoid * indirect, GLsizei primcount, GLsizei stride); /* 852 */
- void (GLAPIENTRYP TexBufferRange)(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 853 */
- void (GLAPIENTRYP TexStorage2DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); /* 854 */
- void (GLAPIENTRYP TexStorage3DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); /* 855 */
- void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 856 */
- void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 857 */
- void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 858 */
- void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 859 */
- void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 860 */
- void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 861 */
- void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 862 */
- void (GLAPIENTRYP DrawTexfOES)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); /* 863 */
- void (GLAPIENTRYP DrawTexfvOES)(const GLfloat * coords); /* 864 */
- void (GLAPIENTRYP DrawTexiOES)(GLint x, GLint y, GLint z, GLint width, GLint height); /* 865 */
- void (GLAPIENTRYP DrawTexivOES)(const GLint * coords); /* 866 */
- void (GLAPIENTRYP DrawTexsOES)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); /* 867 */
- void (GLAPIENTRYP DrawTexsvOES)(const GLshort * coords); /* 868 */
- void (GLAPIENTRYP DrawTexxOES)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); /* 869 */
- void (GLAPIENTRYP DrawTexxvOES)(const GLfixed * coords); /* 870 */
- void (GLAPIENTRYP PointSizePointerOES)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 871 */
- GLbitfield (GLAPIENTRYP QueryMatrixxOES)(GLfixed * mantissa, GLint * exponent); /* 872 */
- void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 873 */
- void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 874 */
- void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 875 */
- void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 876 */
- void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 877 */
- void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 878 */
- void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 879 */
- void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 880 */
- void (GLAPIENTRYP DiscardFramebufferEXT)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 881 */
- void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 882 */
- void (GLAPIENTRYP UnlockArraysEXT)(void); /* 883 */
- void (GLAPIENTRYP DebugMessageCallback)(GLDEBUGPROC callback, const GLvoid * userParam); /* 884 */
- void (GLAPIENTRYP DebugMessageControl)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 885 */
- void (GLAPIENTRYP DebugMessageInsert)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * buf); /* 886 */
- GLuint (GLAPIENTRYP GetDebugMessageLog)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog); /* 887 */
- void (GLAPIENTRYP GetObjectLabel)(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei * length, GLchar * label); /* 888 */
- void (GLAPIENTRYP GetObjectPtrLabel)(const GLvoid * ptr, GLsizei bufSize, GLsizei * length, GLchar * label); /* 889 */
- void (GLAPIENTRYP ObjectLabel)(GLenum identifier, GLuint name, GLsizei length, const GLchar * label); /* 890 */
- void (GLAPIENTRYP ObjectPtrLabel)(const GLvoid * ptr, GLsizei length, const GLchar * label); /* 891 */
- void (GLAPIENTRYP PopDebugGroup)(void); /* 892 */
- void (GLAPIENTRYP PushDebugGroup)(GLenum source, GLuint id, GLsizei length, const GLchar * message); /* 893 */
- void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 894 */
- void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 895 */
- void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount); /* 896 */
- void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 897 */
- void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 898 */
- void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 899 */
- void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 900 */
- void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 901 */
- void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 902 */
- void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 903 */
- void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 904 */
- void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 905 */
- void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 906 */
- void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 907 */
- void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 908 */
- void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 909 */
- GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 910 */
- void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 911 */
- void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 912 */
- void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 913 */
- void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 914 */
- void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 915 */
- void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 916 */
- void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 917 */
- void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 918 */
- void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 919 */
- void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 920 */
- void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 921 */
- void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 922 */
- void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 923 */
- void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 924 */
- void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 925 */
- void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 926 */
- void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 927 */
- void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 928 */
- void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 929 */
- void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 930 */
- void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 931 */
- void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 932 */
- void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 933 */
- void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 934 */
- void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 935 */
- void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 936 */
- void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 937 */
- void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 938 */
- void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 939 */
- void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 940 */
- void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 941 */
- void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 942 */
- void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 943 */
- void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 944 */
- void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 945 */
- void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 946 */
- void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 947 */
- void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 948 */
- void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 949 */
- void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 950 */
- void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 951 */
- void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 952 */
- void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 953 */
- void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 954 */
- void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 955 */
- void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 956 */
- void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 957 */
- void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 958 */
- void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 959 */
- void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 960 */
- void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 961 */
- void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 962 */
- void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 963 */
- void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 964 */
- void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 965 */
- void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 966 */
- void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 967 */
- void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 968 */
- void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 969 */
- void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 970 */
- void (GLAPIENTRYP AlphaFragmentOp3ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); /* 971 */
- void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 972 */
- void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 973 */
- void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 974 */
- void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 975 */
- void (GLAPIENTRYP ColorFragmentOp3ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); /* 976 */
- void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 977 */
- void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 978 */
- GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 979 */
- void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 980 */
- void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 981 */
- void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 982 */
- void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 983 */
- void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 984 */
- void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 985 */
- void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 986 */
- void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 987 */
- void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 988 */
- void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 989 */
- void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 990 */
- void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 991 */
- void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 992 */
- void (GLAPIENTRYP GetTexGenxvOES)(GLenum coord, GLenum pname, GLfixed * params); /* 993 */
- void (GLAPIENTRYP TexGenxOES)(GLenum coord, GLenum pname, GLint param); /* 994 */
- void (GLAPIENTRYP TexGenxvOES)(GLenum coord, GLenum pname, const GLfixed * params); /* 995 */
- void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 996 */
- void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 997 */
- void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 998 */
- void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 999 */
- void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 1000 */
- void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 1001 */
- void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 1002 */
- void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 1003 */
- void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 1004 */
- void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 1005 */
- void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 1006 */
- void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 1007 */
- void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 1008 */
- void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 1009 */
- void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 1010 */
- void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 1011 */
- void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 1012 */
- void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 1013 */
- void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 1014 */
- void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 1015 */
- void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 1016 */
- void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 1017 */
- void (GLAPIENTRYP BeginPerfMonitorAMD)(GLuint monitor); /* 1018 */
- void (GLAPIENTRYP DeletePerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1019 */
- void (GLAPIENTRYP EndPerfMonitorAMD)(GLuint monitor); /* 1020 */
- void (GLAPIENTRYP GenPerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1021 */
- void (GLAPIENTRYP GetPerfMonitorCounterDataAMD)(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint * data, GLint * bytesWritten); /* 1022 */
- void (GLAPIENTRYP GetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, GLvoid * data); /* 1023 */
- void (GLAPIENTRYP GetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLsizei * length, GLchar * counterString); /* 1024 */
- void (GLAPIENTRYP GetPerfMonitorCountersAMD)(GLuint group, GLint * numCounters, GLint * maxActiveCounters, GLsizei countersSize, GLuint * counters); /* 1025 */
- void (GLAPIENTRYP GetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei * length, GLchar * groupString); /* 1026 */
- void (GLAPIENTRYP GetPerfMonitorGroupsAMD)(GLint * numGroups, GLsizei groupsSize, GLuint * groups); /* 1027 */
- void (GLAPIENTRYP SelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint * counterList); /* 1028 */
- void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 1029 */
- GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1030 */
- GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1031 */
- void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 1032 */
- GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 1033 */
- void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 1034 */
- void (GLAPIENTRYP TextureBarrierNV)(void); /* 1035 */
- void (GLAPIENTRYP VDPAUFiniNV)(void); /* 1036 */
- void (GLAPIENTRYP VDPAUGetSurfaceivNV)(GLintptr surface, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 1037 */
- void (GLAPIENTRYP VDPAUInitNV)(const GLvoid * vdpDevice, const GLvoid * getProcAddress); /* 1038 */
- void (GLAPIENTRYP VDPAUIsSurfaceNV)(GLintptr surface); /* 1039 */
- void (GLAPIENTRYP VDPAUMapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1040 */
- GLintptr (GLAPIENTRYP VDPAURegisterOutputSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1041 */
- GLintptr (GLAPIENTRYP VDPAURegisterVideoSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1042 */
- void (GLAPIENTRYP VDPAUSurfaceAccessNV)(GLintptr surface, GLenum access); /* 1043 */
- void (GLAPIENTRYP VDPAUUnmapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1044 */
- void (GLAPIENTRYP VDPAUUnregisterSurfaceNV)(GLintptr surface); /* 1045 */
- void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 1046 */
- void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1047 */
- void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1048 */
- void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 1049 */
- void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 1050 */
- void (GLAPIENTRYP AlphaFuncx)(GLenum func, GLclampx ref); /* 1051 */
- void (GLAPIENTRYP ClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); /* 1052 */
- void (GLAPIENTRYP ClearDepthx)(GLclampx depth); /* 1053 */
- void (GLAPIENTRYP Color4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); /* 1054 */
- void (GLAPIENTRYP DepthRangex)(GLclampx zNear, GLclampx zFar); /* 1055 */
- void (GLAPIENTRYP Fogx)(GLenum pname, GLfixed param); /* 1056 */
- void (GLAPIENTRYP Fogxv)(GLenum pname, const GLfixed * params); /* 1057 */
- void (GLAPIENTRYP Frustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1058 */
- void (GLAPIENTRYP Frustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1059 */
- void (GLAPIENTRYP LightModelx)(GLenum pname, GLfixed param); /* 1060 */
- void (GLAPIENTRYP LightModelxv)(GLenum pname, const GLfixed * params); /* 1061 */
- void (GLAPIENTRYP Lightx)(GLenum light, GLenum pname, GLfixed param); /* 1062 */
- void (GLAPIENTRYP Lightxv)(GLenum light, GLenum pname, const GLfixed * params); /* 1063 */
- void (GLAPIENTRYP LineWidthx)(GLfixed width); /* 1064 */
- void (GLAPIENTRYP LoadMatrixx)(const GLfixed * m); /* 1065 */
- void (GLAPIENTRYP Materialx)(GLenum face, GLenum pname, GLfixed param); /* 1066 */
- void (GLAPIENTRYP Materialxv)(GLenum face, GLenum pname, const GLfixed * params); /* 1067 */
- void (GLAPIENTRYP MultMatrixx)(const GLfixed * m); /* 1068 */
- void (GLAPIENTRYP MultiTexCoord4x)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); /* 1069 */
- void (GLAPIENTRYP Normal3x)(GLfixed nx, GLfixed ny, GLfixed nz); /* 1070 */
- void (GLAPIENTRYP Orthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1071 */
- void (GLAPIENTRYP Orthox)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1072 */
- void (GLAPIENTRYP PointSizex)(GLfixed size); /* 1073 */
- void (GLAPIENTRYP PolygonOffsetx)(GLfixed factor, GLfixed units); /* 1074 */
- void (GLAPIENTRYP Rotatex)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); /* 1075 */
- void (GLAPIENTRYP SampleCoveragex)(GLclampx value, GLboolean invert); /* 1076 */
- void (GLAPIENTRYP Scalex)(GLfixed x, GLfixed y, GLfixed z); /* 1077 */
- void (GLAPIENTRYP TexEnvx)(GLenum target, GLenum pname, GLfixed param); /* 1078 */
- void (GLAPIENTRYP TexEnvxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1079 */
- void (GLAPIENTRYP TexParameterx)(GLenum target, GLenum pname, GLfixed param); /* 1080 */
- void (GLAPIENTRYP Translatex)(GLfixed x, GLfixed y, GLfixed z); /* 1081 */
- void (GLAPIENTRYP ClipPlanef)(GLenum plane, const GLfloat * equation); /* 1082 */
- void (GLAPIENTRYP ClipPlanex)(GLenum plane, const GLfixed * equation); /* 1083 */
- void (GLAPIENTRYP GetClipPlanef)(GLenum plane, GLfloat * equation); /* 1084 */
- void (GLAPIENTRYP GetClipPlanex)(GLenum plane, GLfixed * equation); /* 1085 */
- void (GLAPIENTRYP GetFixedv)(GLenum pname, GLfixed * params); /* 1086 */
- void (GLAPIENTRYP GetLightxv)(GLenum light, GLenum pname, GLfixed * params); /* 1087 */
- void (GLAPIENTRYP GetMaterialxv)(GLenum face, GLenum pname, GLfixed * params); /* 1088 */
- void (GLAPIENTRYP GetTexEnvxv)(GLenum target, GLenum pname, GLfixed * params); /* 1089 */
- void (GLAPIENTRYP GetTexParameterxv)(GLenum target, GLenum pname, GLfixed * params); /* 1090 */
- void (GLAPIENTRYP PointParameterx)(GLenum pname, GLfixed param); /* 1091 */
- void (GLAPIENTRYP PointParameterxv)(GLenum pname, const GLfixed * params); /* 1092 */
- void (GLAPIENTRYP TexParameterxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1093 */
+ void (GLAPIENTRYP DispatchCompute)(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); /* 844 */
+ void (GLAPIENTRYP DispatchComputeIndirect)(GLintptr indirect); /* 845 */
+ void (GLAPIENTRYP TextureView)(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); /* 846 */
+ void (GLAPIENTRYP BindVertexBuffer)(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); /* 847 */
+ void (GLAPIENTRYP VertexAttribBinding)(GLuint attribindex, GLuint bindingindex); /* 848 */
+ void (GLAPIENTRYP VertexAttribFormat)(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); /* 849 */
+ void (GLAPIENTRYP VertexAttribIFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 850 */
+ void (GLAPIENTRYP VertexAttribLFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 851 */
+ void (GLAPIENTRYP VertexBindingDivisor)(GLuint attribindex, GLuint divisor); /* 852 */
+ void (GLAPIENTRYP MultiDrawArraysIndirect)(GLenum mode, const GLvoid * indirect, GLsizei primcount, GLsizei stride); /* 853 */
+ void (GLAPIENTRYP MultiDrawElementsIndirect)(GLenum mode, GLenum type, const GLvoid * indirect, GLsizei primcount, GLsizei stride); /* 854 */
+ void (GLAPIENTRYP TexBufferRange)(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 855 */
+ void (GLAPIENTRYP TexStorage2DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); /* 856 */
+ void (GLAPIENTRYP TexStorage3DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); /* 857 */
+ void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 858 */
+ void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 859 */
+ void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 860 */
+ void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 861 */
+ void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 862 */
+ void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 863 */
+ void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 864 */
+ void (GLAPIENTRYP DrawTexfOES)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); /* 865 */
+ void (GLAPIENTRYP DrawTexfvOES)(const GLfloat * coords); /* 866 */
+ void (GLAPIENTRYP DrawTexiOES)(GLint x, GLint y, GLint z, GLint width, GLint height); /* 867 */
+ void (GLAPIENTRYP DrawTexivOES)(const GLint * coords); /* 868 */
+ void (GLAPIENTRYP DrawTexsOES)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); /* 869 */
+ void (GLAPIENTRYP DrawTexsvOES)(const GLshort * coords); /* 870 */
+ void (GLAPIENTRYP DrawTexxOES)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); /* 871 */
+ void (GLAPIENTRYP DrawTexxvOES)(const GLfixed * coords); /* 872 */
+ void (GLAPIENTRYP PointSizePointerOES)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 873 */
+ GLbitfield (GLAPIENTRYP QueryMatrixxOES)(GLfixed * mantissa, GLint * exponent); /* 874 */
+ void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 875 */
+ void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 876 */
+ void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 877 */
+ void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 878 */
+ void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 879 */
+ void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 880 */
+ void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 881 */
+ void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 882 */
+ void (GLAPIENTRYP DiscardFramebufferEXT)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 883 */
+ void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 884 */
+ void (GLAPIENTRYP UnlockArraysEXT)(void); /* 885 */
+ void (GLAPIENTRYP DebugMessageCallback)(GLDEBUGPROC callback, const GLvoid * userParam); /* 886 */
+ void (GLAPIENTRYP DebugMessageControl)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 887 */
+ void (GLAPIENTRYP DebugMessageInsert)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * buf); /* 888 */
+ GLuint (GLAPIENTRYP GetDebugMessageLog)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog); /* 889 */
+ void (GLAPIENTRYP GetObjectLabel)(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei * length, GLchar * label); /* 890 */
+ void (GLAPIENTRYP GetObjectPtrLabel)(const GLvoid * ptr, GLsizei bufSize, GLsizei * length, GLchar * label); /* 891 */
+ void (GLAPIENTRYP ObjectLabel)(GLenum identifier, GLuint name, GLsizei length, const GLchar * label); /* 892 */
+ void (GLAPIENTRYP ObjectPtrLabel)(const GLvoid * ptr, GLsizei length, const GLchar * label); /* 893 */
+ void (GLAPIENTRYP PopDebugGroup)(void); /* 894 */
+ void (GLAPIENTRYP PushDebugGroup)(GLenum source, GLuint id, GLsizei length, const GLchar * message); /* 895 */
+ void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 896 */
+ void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 897 */
+ void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount); /* 898 */
+ void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 899 */
+ void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 900 */
+ void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 901 */
+ void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 902 */
+ void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 903 */
+ void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 904 */
+ void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 905 */
+ void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 906 */
+ void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 907 */
+ void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 908 */
+ void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 909 */
+ void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 910 */
+ void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 911 */
+ GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 912 */
+ void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 913 */
+ void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 914 */
+ void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 915 */
+ void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 916 */
+ void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 917 */
+ void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 918 */
+ void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 919 */
+ void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 920 */
+ void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 921 */
+ void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 922 */
+ void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 923 */
+ void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 924 */
+ void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 925 */
+ void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 926 */
+ void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 927 */
+ void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 928 */
+ void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 929 */
+ void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 930 */
+ void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 931 */
+ void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 932 */
+ void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 933 */
+ void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 934 */
+ void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 935 */
+ void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 936 */
+ void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 937 */
+ void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 938 */
+ void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 939 */
+ void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 940 */
+ void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 941 */
+ void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 942 */
+ void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 943 */
+ void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 944 */
+ void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 945 */
+ void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 946 */
+ void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 947 */
+ void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 948 */
+ void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 949 */
+ void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 950 */
+ void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 951 */
+ void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 952 */
+ void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 953 */
+ void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 954 */
+ void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 955 */
+ void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 956 */
+ void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 957 */
+ void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 958 */
+ void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 959 */
+ void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 960 */
+ void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 961 */
+ void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 962 */
+ void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 963 */
+ void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 964 */
+ void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 965 */
+ void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 966 */
+ void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 967 */
+ void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 968 */
+ void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 969 */
+ void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 970 */
+ void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 971 */
+ void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 972 */
+ void (GLAPIENTRYP AlphaFragmentOp3ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); /* 973 */
+ void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 974 */
+ void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 975 */
+ void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 976 */
+ void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 977 */
+ void (GLAPIENTRYP ColorFragmentOp3ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); /* 978 */
+ void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 979 */
+ void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 980 */
+ GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 981 */
+ void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 982 */
+ void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 983 */
+ void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 984 */
+ void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 985 */
+ void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 986 */
+ void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 987 */
+ void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 988 */
+ void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 989 */
+ void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 990 */
+ void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 991 */
+ void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 992 */
+ void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 993 */
+ void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 994 */
+ void (GLAPIENTRYP GetTexGenxvOES)(GLenum coord, GLenum pname, GLfixed * params); /* 995 */
+ void (GLAPIENTRYP TexGenxOES)(GLenum coord, GLenum pname, GLint param); /* 996 */
+ void (GLAPIENTRYP TexGenxvOES)(GLenum coord, GLenum pname, const GLfixed * params); /* 997 */
+ void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 998 */
+ void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 999 */
+ void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 1000 */
+ void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 1001 */
+ void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 1002 */
+ void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 1003 */
+ void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 1004 */
+ void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 1005 */
+ void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 1006 */
+ void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 1007 */
+ void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 1008 */
+ void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 1009 */
+ void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 1010 */
+ void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 1011 */
+ void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 1012 */
+ void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 1013 */
+ void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 1014 */
+ void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 1015 */
+ void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 1016 */
+ void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 1017 */
+ void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 1018 */
+ void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 1019 */
+ void (GLAPIENTRYP BeginPerfMonitorAMD)(GLuint monitor); /* 1020 */
+ void (GLAPIENTRYP DeletePerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1021 */
+ void (GLAPIENTRYP EndPerfMonitorAMD)(GLuint monitor); /* 1022 */
+ void (GLAPIENTRYP GenPerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1023 */
+ void (GLAPIENTRYP GetPerfMonitorCounterDataAMD)(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint * data, GLint * bytesWritten); /* 1024 */
+ void (GLAPIENTRYP GetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, GLvoid * data); /* 1025 */
+ void (GLAPIENTRYP GetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLsizei * length, GLchar * counterString); /* 1026 */
+ void (GLAPIENTRYP GetPerfMonitorCountersAMD)(GLuint group, GLint * numCounters, GLint * maxActiveCounters, GLsizei countersSize, GLuint * counters); /* 1027 */
+ void (GLAPIENTRYP GetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei * length, GLchar * groupString); /* 1028 */
+ void (GLAPIENTRYP GetPerfMonitorGroupsAMD)(GLint * numGroups, GLsizei groupsSize, GLuint * groups); /* 1029 */
+ void (GLAPIENTRYP SelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint * counterList); /* 1030 */
+ void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 1031 */
+ GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1032 */
+ GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1033 */
+ void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 1034 */
+ GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 1035 */
+ void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 1036 */
+ void (GLAPIENTRYP TextureBarrierNV)(void); /* 1037 */
+ void (GLAPIENTRYP VDPAUFiniNV)(void); /* 1038 */
+ void (GLAPIENTRYP VDPAUGetSurfaceivNV)(GLintptr surface, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 1039 */
+ void (GLAPIENTRYP VDPAUInitNV)(const GLvoid * vdpDevice, const GLvoid * getProcAddress); /* 1040 */
+ void (GLAPIENTRYP VDPAUIsSurfaceNV)(GLintptr surface); /* 1041 */
+ void (GLAPIENTRYP VDPAUMapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1042 */
+ GLintptr (GLAPIENTRYP VDPAURegisterOutputSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1043 */
+ GLintptr (GLAPIENTRYP VDPAURegisterVideoSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1044 */
+ void (GLAPIENTRYP VDPAUSurfaceAccessNV)(GLintptr surface, GLenum access); /* 1045 */
+ void (GLAPIENTRYP VDPAUUnmapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1046 */
+ void (GLAPIENTRYP VDPAUUnregisterSurfaceNV)(GLintptr surface); /* 1047 */
+ void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 1048 */
+ void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1049 */
+ void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1050 */
+ void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 1051 */
+ void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 1052 */
+ void (GLAPIENTRYP AlphaFuncx)(GLenum func, GLclampx ref); /* 1053 */
+ void (GLAPIENTRYP ClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); /* 1054 */
+ void (GLAPIENTRYP ClearDepthx)(GLclampx depth); /* 1055 */
+ void (GLAPIENTRYP Color4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); /* 1056 */
+ void (GLAPIENTRYP DepthRangex)(GLclampx zNear, GLclampx zFar); /* 1057 */
+ void (GLAPIENTRYP Fogx)(GLenum pname, GLfixed param); /* 1058 */
+ void (GLAPIENTRYP Fogxv)(GLenum pname, const GLfixed * params); /* 1059 */
+ void (GLAPIENTRYP Frustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1060 */
+ void (GLAPIENTRYP Frustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1061 */
+ void (GLAPIENTRYP LightModelx)(GLenum pname, GLfixed param); /* 1062 */
+ void (GLAPIENTRYP LightModelxv)(GLenum pname, const GLfixed * params); /* 1063 */
+ void (GLAPIENTRYP Lightx)(GLenum light, GLenum pname, GLfixed param); /* 1064 */
+ void (GLAPIENTRYP Lightxv)(GLenum light, GLenum pname, const GLfixed * params); /* 1065 */
+ void (GLAPIENTRYP LineWidthx)(GLfixed width); /* 1066 */
+ void (GLAPIENTRYP LoadMatrixx)(const GLfixed * m); /* 1067 */
+ void (GLAPIENTRYP Materialx)(GLenum face, GLenum pname, GLfixed param); /* 1068 */
+ void (GLAPIENTRYP Materialxv)(GLenum face, GLenum pname, const GLfixed * params); /* 1069 */
+ void (GLAPIENTRYP MultMatrixx)(const GLfixed * m); /* 1070 */
+ void (GLAPIENTRYP MultiTexCoord4x)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); /* 1071 */
+ void (GLAPIENTRYP Normal3x)(GLfixed nx, GLfixed ny, GLfixed nz); /* 1072 */
+ void (GLAPIENTRYP Orthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1073 */
+ void (GLAPIENTRYP Orthox)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1074 */
+ void (GLAPIENTRYP PointSizex)(GLfixed size); /* 1075 */
+ void (GLAPIENTRYP PolygonOffsetx)(GLfixed factor, GLfixed units); /* 1076 */
+ void (GLAPIENTRYP Rotatex)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); /* 1077 */
+ void (GLAPIENTRYP SampleCoveragex)(GLclampx value, GLboolean invert); /* 1078 */
+ void (GLAPIENTRYP Scalex)(GLfixed x, GLfixed y, GLfixed z); /* 1079 */
+ void (GLAPIENTRYP TexEnvx)(GLenum target, GLenum pname, GLfixed param); /* 1080 */
+ void (GLAPIENTRYP TexEnvxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1081 */
+ void (GLAPIENTRYP TexParameterx)(GLenum target, GLenum pname, GLfixed param); /* 1082 */
+ void (GLAPIENTRYP Translatex)(GLfixed x, GLfixed y, GLfixed z); /* 1083 */
+ void (GLAPIENTRYP ClipPlanef)(GLenum plane, const GLfloat * equation); /* 1084 */
+ void (GLAPIENTRYP ClipPlanex)(GLenum plane, const GLfixed * equation); /* 1085 */
+ void (GLAPIENTRYP GetClipPlanef)(GLenum plane, GLfloat * equation); /* 1086 */
+ void (GLAPIENTRYP GetClipPlanex)(GLenum plane, GLfixed * equation); /* 1087 */
+ void (GLAPIENTRYP GetFixedv)(GLenum pname, GLfixed * params); /* 1088 */
+ void (GLAPIENTRYP GetLightxv)(GLenum light, GLenum pname, GLfixed * params); /* 1089 */
+ void (GLAPIENTRYP GetMaterialxv)(GLenum face, GLenum pname, GLfixed * params); /* 1090 */
+ void (GLAPIENTRYP GetTexEnvxv)(GLenum target, GLenum pname, GLfixed * params); /* 1091 */
+ void (GLAPIENTRYP GetTexParameterxv)(GLenum target, GLenum pname, GLfixed * params); /* 1092 */
+ void (GLAPIENTRYP PointParameterx)(GLenum pname, GLfixed param); /* 1093 */
+ void (GLAPIENTRYP PointParameterxv)(GLenum pname, const GLfixed * params); /* 1094 */
+ void (GLAPIENTRYP TexParameterxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1095 */
#endif /* !defined HAVE_SHARED_GLAPI */
};
diff --git a/xorg-server/glx/glfunctions.h b/xorg-server/glx/glfunctions.h
index 6668eae5d..b15d05eb8 100644
--- a/xorg-server/glx/glfunctions.h
+++ b/xorg-server/glx/glfunctions.h
@@ -878,6 +878,8 @@
#define glTextureStorage3DEXT(a1, a2, a3, a4, a5, a6, a7) CALL_TextureStorage3DEXT(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6, a7))
#define glClearBufferData(a1, a2, a3, a4, a5) CALL_ClearBufferData(GET_DISPATCH(), (a1, a2, a3, a4, a5))
#define glClearBufferSubData(a1, a2, a3, a4, a5, a6, a7) CALL_ClearBufferSubData(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6, a7))
+#define glDispatchCompute(a1, a2, a3) CALL_DispatchCompute(GET_DISPATCH(), (a1, a2, a3))
+#define glDispatchComputeIndirect(a1) CALL_DispatchComputeIndirect(GET_DISPATCH(), (a1))
#define glTextureView(a1, a2, a3, a4, a5, a6, a7, a8) CALL_TextureView(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6, a7, a8))
#define glBindVertexBuffer(a1, a2, a3, a4) CALL_BindVertexBuffer(GET_DISPATCH(), (a1, a2, a3, a4))
#define glVertexAttribBinding(a1, a2) CALL_VertexAttribBinding(GET_DISPATCH(), (a1, a2))
diff --git a/xorg-server/glx/glprocs.h b/xorg-server/glx/glprocs.h
index 05290d0ad..8b3af8752 100644
--- a/xorg-server/glx/glprocs.h
+++ b/xorg-server/glx/glprocs.h
@@ -896,6 +896,8 @@ static const char gl_string_table[] =
"glTextureStorage3DEXT\0"
"glClearBufferData\0"
"glClearBufferSubData\0"
+ "glDispatchCompute\0"
+ "glDispatchComputeIndirect\0"
"glTextureView\0"
"glBindVertexBuffer\0"
"glVertexAttribBinding\0"
@@ -1625,8 +1627,6 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_732 mgl_dispatch_stub_732
#define gl_dispatch_stub_733 mgl_dispatch_stub_733
#define gl_dispatch_stub_832 mgl_dispatch_stub_832
-#define gl_dispatch_stub_863 mgl_dispatch_stub_863
-#define gl_dispatch_stub_864 mgl_dispatch_stub_864
#define gl_dispatch_stub_865 mgl_dispatch_stub_865
#define gl_dispatch_stub_866 mgl_dispatch_stub_866
#define gl_dispatch_stub_867 mgl_dispatch_stub_867
@@ -1637,23 +1637,23 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_872 mgl_dispatch_stub_872
#define gl_dispatch_stub_873 mgl_dispatch_stub_873
#define gl_dispatch_stub_874 mgl_dispatch_stub_874
-#define gl_dispatch_stub_881 mgl_dispatch_stub_881
-#define gl_dispatch_stub_908 mgl_dispatch_stub_908
-#define gl_dispatch_stub_909 mgl_dispatch_stub_909
-#define gl_dispatch_stub_983 mgl_dispatch_stub_983
-#define gl_dispatch_stub_984 mgl_dispatch_stub_984
+#define gl_dispatch_stub_875 mgl_dispatch_stub_875
+#define gl_dispatch_stub_876 mgl_dispatch_stub_876
+#define gl_dispatch_stub_883 mgl_dispatch_stub_883
+#define gl_dispatch_stub_910 mgl_dispatch_stub_910
+#define gl_dispatch_stub_911 mgl_dispatch_stub_911
#define gl_dispatch_stub_985 mgl_dispatch_stub_985
-#define gl_dispatch_stub_993 mgl_dispatch_stub_993
-#define gl_dispatch_stub_994 mgl_dispatch_stub_994
+#define gl_dispatch_stub_986 mgl_dispatch_stub_986
+#define gl_dispatch_stub_987 mgl_dispatch_stub_987
#define gl_dispatch_stub_995 mgl_dispatch_stub_995
#define gl_dispatch_stub_996 mgl_dispatch_stub_996
-#define gl_dispatch_stub_999 mgl_dispatch_stub_999
-#define gl_dispatch_stub_1000 mgl_dispatch_stub_1000
-#define gl_dispatch_stub_1046 mgl_dispatch_stub_1046
-#define gl_dispatch_stub_1047 mgl_dispatch_stub_1047
+#define gl_dispatch_stub_997 mgl_dispatch_stub_997
+#define gl_dispatch_stub_998 mgl_dispatch_stub_998
+#define gl_dispatch_stub_1001 mgl_dispatch_stub_1001
+#define gl_dispatch_stub_1002 mgl_dispatch_stub_1002
#define gl_dispatch_stub_1048 mgl_dispatch_stub_1048
-#define gl_dispatch_stub_1051 mgl_dispatch_stub_1051
-#define gl_dispatch_stub_1052 mgl_dispatch_stub_1052
+#define gl_dispatch_stub_1049 mgl_dispatch_stub_1049
+#define gl_dispatch_stub_1050 mgl_dispatch_stub_1050
#define gl_dispatch_stub_1053 mgl_dispatch_stub_1053
#define gl_dispatch_stub_1054 mgl_dispatch_stub_1054
#define gl_dispatch_stub_1055 mgl_dispatch_stub_1055
@@ -1695,6 +1695,8 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_1091 mgl_dispatch_stub_1091
#define gl_dispatch_stub_1092 mgl_dispatch_stub_1092
#define gl_dispatch_stub_1093 mgl_dispatch_stub_1093
+#define gl_dispatch_stub_1094 mgl_dispatch_stub_1094
+#define gl_dispatch_stub_1095 mgl_dispatch_stub_1095
#endif /* USE_MGL_NAMESPACE */
@@ -1716,76 +1718,76 @@ void GLAPIENTRY gl_dispatch_stub_731(GLuint id, GLenum pname, GLint64 * params);
void GLAPIENTRY gl_dispatch_stub_732(GLuint id, GLenum pname, GLuint64 * params);
void GLAPIENTRY gl_dispatch_stub_733(GLuint id, GLenum target);
void GLAPIENTRY gl_dispatch_stub_832(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint * params);
-void GLAPIENTRY gl_dispatch_stub_863(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
-void GLAPIENTRY gl_dispatch_stub_864(const GLfloat * coords);
-void GLAPIENTRY gl_dispatch_stub_865(GLint x, GLint y, GLint z, GLint width, GLint height);
-void GLAPIENTRY gl_dispatch_stub_866(const GLint * coords);
-void GLAPIENTRY gl_dispatch_stub_867(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
-void GLAPIENTRY gl_dispatch_stub_868(const GLshort * coords);
-void GLAPIENTRY gl_dispatch_stub_869(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
-void GLAPIENTRY gl_dispatch_stub_870(const GLfixed * coords);
-void GLAPIENTRY gl_dispatch_stub_871(GLenum type, GLsizei stride, const GLvoid * pointer);
-GLbitfield GLAPIENTRY gl_dispatch_stub_872(GLfixed * mantissa, GLint * exponent);
-void GLAPIENTRY gl_dispatch_stub_873(GLclampf value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_874(GLenum pattern);
-void GLAPIENTRY gl_dispatch_stub_881(GLenum target, GLsizei numAttachments, const GLenum * attachments);
-void GLAPIENTRY gl_dispatch_stub_908(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_909(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_983(GLenum face);
-void GLAPIENTRY gl_dispatch_stub_984(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_985(GLsizei n, GLuint * arrays);
-void GLAPIENTRY gl_dispatch_stub_993(GLenum coord, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_994(GLenum coord, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_995(GLenum coord, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_996(GLclampd zmin, GLclampd zmax);
-void GLAPIENTRY gl_dispatch_stub_999(GLenum target, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_1000(GLenum target, GLintptr offset, GLsizeiptr size);
-void GLAPIENTRY gl_dispatch_stub_1046(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
-void GLAPIENTRY gl_dispatch_stub_1047(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_1048(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_1051(GLenum func, GLclampx ref);
-void GLAPIENTRY gl_dispatch_stub_1052(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
-void GLAPIENTRY gl_dispatch_stub_1053(GLclampx depth);
-void GLAPIENTRY gl_dispatch_stub_1054(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
-void GLAPIENTRY gl_dispatch_stub_1055(GLclampx zNear, GLclampx zFar);
-void GLAPIENTRY gl_dispatch_stub_1056(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1057(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1058(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
-void GLAPIENTRY gl_dispatch_stub_1059(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
-void GLAPIENTRY gl_dispatch_stub_1060(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1061(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1062(GLenum light, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1063(GLenum light, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1064(GLfixed width);
-void GLAPIENTRY gl_dispatch_stub_1065(const GLfixed * m);
-void GLAPIENTRY gl_dispatch_stub_1066(GLenum face, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1067(GLenum face, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1068(const GLfixed * m);
-void GLAPIENTRY gl_dispatch_stub_1069(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
-void GLAPIENTRY gl_dispatch_stub_1070(GLfixed nx, GLfixed ny, GLfixed nz);
-void GLAPIENTRY gl_dispatch_stub_1071(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
-void GLAPIENTRY gl_dispatch_stub_1072(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
-void GLAPIENTRY gl_dispatch_stub_1073(GLfixed size);
-void GLAPIENTRY gl_dispatch_stub_1074(GLfixed factor, GLfixed units);
-void GLAPIENTRY gl_dispatch_stub_1075(GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1076(GLclampx value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_1077(GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1078(GLenum target, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1079(GLenum target, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_865(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
+void GLAPIENTRY gl_dispatch_stub_866(const GLfloat * coords);
+void GLAPIENTRY gl_dispatch_stub_867(GLint x, GLint y, GLint z, GLint width, GLint height);
+void GLAPIENTRY gl_dispatch_stub_868(const GLint * coords);
+void GLAPIENTRY gl_dispatch_stub_869(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
+void GLAPIENTRY gl_dispatch_stub_870(const GLshort * coords);
+void GLAPIENTRY gl_dispatch_stub_871(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
+void GLAPIENTRY gl_dispatch_stub_872(const GLfixed * coords);
+void GLAPIENTRY gl_dispatch_stub_873(GLenum type, GLsizei stride, const GLvoid * pointer);
+GLbitfield GLAPIENTRY gl_dispatch_stub_874(GLfixed * mantissa, GLint * exponent);
+void GLAPIENTRY gl_dispatch_stub_875(GLclampf value, GLboolean invert);
+void GLAPIENTRY gl_dispatch_stub_876(GLenum pattern);
+void GLAPIENTRY gl_dispatch_stub_883(GLenum target, GLsizei numAttachments, const GLenum * attachments);
+void GLAPIENTRY gl_dispatch_stub_910(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_911(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_985(GLenum face);
+void GLAPIENTRY gl_dispatch_stub_986(GLuint array);
+void GLAPIENTRY gl_dispatch_stub_987(GLsizei n, GLuint * arrays);
+void GLAPIENTRY gl_dispatch_stub_995(GLenum coord, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_996(GLenum coord, GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_997(GLenum coord, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_998(GLclampd zmin, GLclampd zmax);
+void GLAPIENTRY gl_dispatch_stub_1001(GLenum target, GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_1002(GLenum target, GLintptr offset, GLsizeiptr size);
+void GLAPIENTRY gl_dispatch_stub_1048(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
+void GLAPIENTRY gl_dispatch_stub_1049(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_1050(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_1053(GLenum func, GLclampx ref);
+void GLAPIENTRY gl_dispatch_stub_1054(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
+void GLAPIENTRY gl_dispatch_stub_1055(GLclampx depth);
+void GLAPIENTRY gl_dispatch_stub_1056(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
+void GLAPIENTRY gl_dispatch_stub_1057(GLclampx zNear, GLclampx zFar);
+void GLAPIENTRY gl_dispatch_stub_1058(GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1059(GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1060(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
+void GLAPIENTRY gl_dispatch_stub_1061(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
+void GLAPIENTRY gl_dispatch_stub_1062(GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1063(GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1064(GLenum light, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1065(GLenum light, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1066(GLfixed width);
+void GLAPIENTRY gl_dispatch_stub_1067(const GLfixed * m);
+void GLAPIENTRY gl_dispatch_stub_1068(GLenum face, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1069(GLenum face, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1070(const GLfixed * m);
+void GLAPIENTRY gl_dispatch_stub_1071(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
+void GLAPIENTRY gl_dispatch_stub_1072(GLfixed nx, GLfixed ny, GLfixed nz);
+void GLAPIENTRY gl_dispatch_stub_1073(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
+void GLAPIENTRY gl_dispatch_stub_1074(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
+void GLAPIENTRY gl_dispatch_stub_1075(GLfixed size);
+void GLAPIENTRY gl_dispatch_stub_1076(GLfixed factor, GLfixed units);
+void GLAPIENTRY gl_dispatch_stub_1077(GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
+void GLAPIENTRY gl_dispatch_stub_1078(GLclampx value, GLboolean invert);
+void GLAPIENTRY gl_dispatch_stub_1079(GLfixed x, GLfixed y, GLfixed z);
void GLAPIENTRY gl_dispatch_stub_1080(GLenum target, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1081(GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1082(GLenum plane, const GLfloat * equation);
-void GLAPIENTRY gl_dispatch_stub_1083(GLenum plane, const GLfixed * equation);
-void GLAPIENTRY gl_dispatch_stub_1084(GLenum plane, GLfloat * equation);
-void GLAPIENTRY gl_dispatch_stub_1085(GLenum plane, GLfixed * equation);
-void GLAPIENTRY gl_dispatch_stub_1086(GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1087(GLenum light, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1088(GLenum face, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1089(GLenum target, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1090(GLenum target, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1091(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1092(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1093(GLenum target, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1081(GLenum target, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1082(GLenum target, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1083(GLfixed x, GLfixed y, GLfixed z);
+void GLAPIENTRY gl_dispatch_stub_1084(GLenum plane, const GLfloat * equation);
+void GLAPIENTRY gl_dispatch_stub_1085(GLenum plane, const GLfixed * equation);
+void GLAPIENTRY gl_dispatch_stub_1086(GLenum plane, GLfloat * equation);
+void GLAPIENTRY gl_dispatch_stub_1087(GLenum plane, GLfixed * equation);
+void GLAPIENTRY gl_dispatch_stub_1088(GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1089(GLenum light, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1090(GLenum face, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1091(GLenum target, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1092(GLenum target, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1093(GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1094(GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1095(GLenum target, GLenum pname, const GLfixed * params);
#endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */
static const glprocs_table_t static_functions[] = {
@@ -2633,714 +2635,716 @@ static const glprocs_table_t static_functions[] = {
NAME_FUNC_OFFSET(14077, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 841),
NAME_FUNC_OFFSET(14099, glClearBufferData, glClearBufferData, NULL, 842),
NAME_FUNC_OFFSET(14117, glClearBufferSubData, glClearBufferSubData, NULL, 843),
- NAME_FUNC_OFFSET(14138, glTextureView, glTextureView, NULL, 844),
- NAME_FUNC_OFFSET(14152, glBindVertexBuffer, glBindVertexBuffer, NULL, 845),
- NAME_FUNC_OFFSET(14171, glVertexAttribBinding, glVertexAttribBinding, NULL, 846),
- NAME_FUNC_OFFSET(14193, glVertexAttribFormat, glVertexAttribFormat, NULL, 847),
- NAME_FUNC_OFFSET(14214, glVertexAttribIFormat, glVertexAttribIFormat, NULL, 848),
- NAME_FUNC_OFFSET(14236, glVertexAttribLFormat, glVertexAttribLFormat, NULL, 849),
- NAME_FUNC_OFFSET(14258, glVertexBindingDivisor, glVertexBindingDivisor, NULL, 850),
- NAME_FUNC_OFFSET(14281, glMultiDrawArraysIndirect, glMultiDrawArraysIndirect, NULL, 851),
- NAME_FUNC_OFFSET(14307, glMultiDrawElementsIndirect, glMultiDrawElementsIndirect, NULL, 852),
- NAME_FUNC_OFFSET(14335, glTexBufferRange, glTexBufferRange, NULL, 853),
- NAME_FUNC_OFFSET(14352, glTexStorage2DMultisample, glTexStorage2DMultisample, NULL, 854),
- NAME_FUNC_OFFSET(14378, glTexStorage3DMultisample, glTexStorage3DMultisample, NULL, 855),
- NAME_FUNC_OFFSET(14404, glInvalidateBufferData, glInvalidateBufferData, NULL, 856),
- NAME_FUNC_OFFSET(14427, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 857),
- NAME_FUNC_OFFSET(14453, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 858),
- NAME_FUNC_OFFSET(14477, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 859),
- NAME_FUNC_OFFSET(14504, glInvalidateTexImage, glInvalidateTexImage, NULL, 860),
- NAME_FUNC_OFFSET(14525, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 861),
- NAME_FUNC_OFFSET(14549, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 862),
- NAME_FUNC_OFFSET(14568, gl_dispatch_stub_863, gl_dispatch_stub_863, NULL, 863),
- NAME_FUNC_OFFSET(14582, gl_dispatch_stub_864, gl_dispatch_stub_864, NULL, 864),
- NAME_FUNC_OFFSET(14597, gl_dispatch_stub_865, gl_dispatch_stub_865, NULL, 865),
- NAME_FUNC_OFFSET(14611, gl_dispatch_stub_866, gl_dispatch_stub_866, NULL, 866),
- NAME_FUNC_OFFSET(14626, gl_dispatch_stub_867, gl_dispatch_stub_867, NULL, 867),
- NAME_FUNC_OFFSET(14640, gl_dispatch_stub_868, gl_dispatch_stub_868, NULL, 868),
- NAME_FUNC_OFFSET(14655, gl_dispatch_stub_869, gl_dispatch_stub_869, NULL, 869),
- NAME_FUNC_OFFSET(14669, gl_dispatch_stub_870, gl_dispatch_stub_870, NULL, 870),
- NAME_FUNC_OFFSET(14684, gl_dispatch_stub_871, gl_dispatch_stub_871, NULL, 871),
- NAME_FUNC_OFFSET(14706, gl_dispatch_stub_872, gl_dispatch_stub_872, NULL, 872),
- NAME_FUNC_OFFSET(14724, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873),
- NAME_FUNC_OFFSET(14741, gl_dispatch_stub_874, gl_dispatch_stub_874, NULL, 874),
- NAME_FUNC_OFFSET(14761, glColorPointerEXT, glColorPointerEXT, NULL, 875),
- NAME_FUNC_OFFSET(14779, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 876),
- NAME_FUNC_OFFSET(14800, glIndexPointerEXT, glIndexPointerEXT, NULL, 877),
- NAME_FUNC_OFFSET(14818, glNormalPointerEXT, glNormalPointerEXT, NULL, 878),
- NAME_FUNC_OFFSET(14837, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 879),
- NAME_FUNC_OFFSET(14858, glVertexPointerEXT, glVertexPointerEXT, NULL, 880),
- NAME_FUNC_OFFSET(14877, gl_dispatch_stub_881, gl_dispatch_stub_881, NULL, 881),
- NAME_FUNC_OFFSET(14901, glLockArraysEXT, glLockArraysEXT, NULL, 882),
- NAME_FUNC_OFFSET(14917, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 883),
- NAME_FUNC_OFFSET(14935, glDebugMessageCallback, glDebugMessageCallback, NULL, 884),
- NAME_FUNC_OFFSET(14958, glDebugMessageControl, glDebugMessageControl, NULL, 885),
- NAME_FUNC_OFFSET(14980, glDebugMessageInsert, glDebugMessageInsert, NULL, 886),
- NAME_FUNC_OFFSET(15001, glGetDebugMessageLog, glGetDebugMessageLog, NULL, 887),
- NAME_FUNC_OFFSET(15022, glGetObjectLabel, glGetObjectLabel, NULL, 888),
- NAME_FUNC_OFFSET(15039, glGetObjectPtrLabel, glGetObjectPtrLabel, NULL, 889),
- NAME_FUNC_OFFSET(15059, glObjectLabel, glObjectLabel, NULL, 890),
- NAME_FUNC_OFFSET(15073, glObjectPtrLabel, glObjectPtrLabel, NULL, 891),
- NAME_FUNC_OFFSET(15090, glPopDebugGroup, glPopDebugGroup, NULL, 892),
- NAME_FUNC_OFFSET(15106, glPushDebugGroup, glPushDebugGroup, NULL, 893),
- NAME_FUNC_OFFSET(15123, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 894),
- NAME_FUNC_OFFSET(15145, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 895),
- NAME_FUNC_OFFSET(15168, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 896),
- NAME_FUNC_OFFSET(15191, glFogCoordfEXT, glFogCoordfEXT, NULL, 897),
- NAME_FUNC_OFFSET(15206, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 898),
- NAME_FUNC_OFFSET(15222, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 899),
- NAME_FUNC_OFFSET(15242, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 900),
- NAME_FUNC_OFFSET(15260, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 901),
- NAME_FUNC_OFFSET(15279, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 902),
- NAME_FUNC_OFFSET(15297, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 903),
- NAME_FUNC_OFFSET(15316, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 904),
- NAME_FUNC_OFFSET(15334, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 905),
- NAME_FUNC_OFFSET(15353, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 906),
- NAME_FUNC_OFFSET(15371, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 907),
- NAME_FUNC_OFFSET(15390, gl_dispatch_stub_908, gl_dispatch_stub_908, NULL, 908),
- NAME_FUNC_OFFSET(15415, gl_dispatch_stub_909, gl_dispatch_stub_909, NULL, 909),
- NAME_FUNC_OFFSET(15442, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 910),
- NAME_FUNC_OFFSET(15466, glExecuteProgramNV, glExecuteProgramNV, NULL, 911),
- NAME_FUNC_OFFSET(15485, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 912),
- NAME_FUNC_OFFSET(15511, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 913),
- NAME_FUNC_OFFSET(15537, glGetProgramStringNV, glGetProgramStringNV, NULL, 914),
- NAME_FUNC_OFFSET(15558, glGetProgramivNV, glGetProgramivNV, NULL, 915),
- NAME_FUNC_OFFSET(15575, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 916),
- NAME_FUNC_OFFSET(15596, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 917),
- NAME_FUNC_OFFSET(15618, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 918),
- NAME_FUNC_OFFSET(15640, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 919),
- NAME_FUNC_OFFSET(15662, glLoadProgramNV, glLoadProgramNV, NULL, 920),
- NAME_FUNC_OFFSET(15678, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 921),
- NAME_FUNC_OFFSET(15703, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 922),
- NAME_FUNC_OFFSET(15728, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 923),
- NAME_FUNC_OFFSET(15756, glTrackMatrixNV, glTrackMatrixNV, NULL, 924),
- NAME_FUNC_OFFSET(15772, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 925),
- NAME_FUNC_OFFSET(15791, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 926),
- NAME_FUNC_OFFSET(15811, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 927),
- NAME_FUNC_OFFSET(15830, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 928),
- NAME_FUNC_OFFSET(15850, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 929),
- NAME_FUNC_OFFSET(15869, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 930),
- NAME_FUNC_OFFSET(15889, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 931),
- NAME_FUNC_OFFSET(15908, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 932),
- NAME_FUNC_OFFSET(15928, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 933),
- NAME_FUNC_OFFSET(15947, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 934),
- NAME_FUNC_OFFSET(15967, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 935),
- NAME_FUNC_OFFSET(15986, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 936),
- NAME_FUNC_OFFSET(16006, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 937),
- NAME_FUNC_OFFSET(16025, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 938),
- NAME_FUNC_OFFSET(16045, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 939),
- NAME_FUNC_OFFSET(16064, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 940),
- NAME_FUNC_OFFSET(16084, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 941),
- NAME_FUNC_OFFSET(16103, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 942),
- NAME_FUNC_OFFSET(16123, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 943),
- NAME_FUNC_OFFSET(16142, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 944),
- NAME_FUNC_OFFSET(16162, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 945),
- NAME_FUNC_OFFSET(16181, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 946),
- NAME_FUNC_OFFSET(16201, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 947),
- NAME_FUNC_OFFSET(16220, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 948),
- NAME_FUNC_OFFSET(16240, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 949),
- NAME_FUNC_OFFSET(16260, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 950),
- NAME_FUNC_OFFSET(16281, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 951),
- NAME_FUNC_OFFSET(16305, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 952),
- NAME_FUNC_OFFSET(16326, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 953),
- NAME_FUNC_OFFSET(16347, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 954),
- NAME_FUNC_OFFSET(16368, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 955),
- NAME_FUNC_OFFSET(16389, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 956),
- NAME_FUNC_OFFSET(16410, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 957),
- NAME_FUNC_OFFSET(16431, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 958),
- NAME_FUNC_OFFSET(16452, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 959),
- NAME_FUNC_OFFSET(16473, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 960),
- NAME_FUNC_OFFSET(16494, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 961),
- NAME_FUNC_OFFSET(16515, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 962),
- NAME_FUNC_OFFSET(16536, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 963),
- NAME_FUNC_OFFSET(16557, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 964),
- NAME_FUNC_OFFSET(16579, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 965),
- NAME_FUNC_OFFSET(16606, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 966),
- NAME_FUNC_OFFSET(16633, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 967),
- NAME_FUNC_OFFSET(16657, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 968),
- NAME_FUNC_OFFSET(16681, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 969),
- NAME_FUNC_OFFSET(16703, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 970),
- NAME_FUNC_OFFSET(16725, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 971),
- NAME_FUNC_OFFSET(16747, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 972),
- NAME_FUNC_OFFSET(16772, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 973),
- NAME_FUNC_OFFSET(16796, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 974),
- NAME_FUNC_OFFSET(16818, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 975),
- NAME_FUNC_OFFSET(16840, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 976),
- NAME_FUNC_OFFSET(16862, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 977),
- NAME_FUNC_OFFSET(16888, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 978),
- NAME_FUNC_OFFSET(16911, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 979),
- NAME_FUNC_OFFSET(16935, glPassTexCoordATI, glPassTexCoordATI, NULL, 980),
- NAME_FUNC_OFFSET(16953, glSampleMapATI, glSampleMapATI, NULL, 981),
- NAME_FUNC_OFFSET(16968, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 982),
- NAME_FUNC_OFFSET(16999, gl_dispatch_stub_983, gl_dispatch_stub_983, NULL, 983),
- NAME_FUNC_OFFSET(17022, gl_dispatch_stub_984, gl_dispatch_stub_984, NULL, 984),
- NAME_FUNC_OFFSET(17045, gl_dispatch_stub_985, gl_dispatch_stub_985, NULL, 985),
- NAME_FUNC_OFFSET(17068, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 986),
- NAME_FUNC_OFFSET(17099, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 987),
- NAME_FUNC_OFFSET(17130, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 988),
- NAME_FUNC_OFFSET(17158, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 989),
- NAME_FUNC_OFFSET(17187, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 990),
- NAME_FUNC_OFFSET(17215, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 991),
- NAME_FUNC_OFFSET(17244, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 992),
- NAME_FUNC_OFFSET(17265, gl_dispatch_stub_993, gl_dispatch_stub_993, NULL, 993),
- NAME_FUNC_OFFSET(17282, gl_dispatch_stub_994, gl_dispatch_stub_994, NULL, 994),
- NAME_FUNC_OFFSET(17295, gl_dispatch_stub_995, gl_dispatch_stub_995, NULL, 995),
- NAME_FUNC_OFFSET(17309, gl_dispatch_stub_996, gl_dispatch_stub_996, NULL, 996),
- NAME_FUNC_OFFSET(17326, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 997),
- NAME_FUNC_OFFSET(17347, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 998),
- NAME_FUNC_OFFSET(17369, gl_dispatch_stub_999, gl_dispatch_stub_999, NULL, 999),
- NAME_FUNC_OFFSET(17393, gl_dispatch_stub_1000, gl_dispatch_stub_1000, NULL, 1000),
- NAME_FUNC_OFFSET(17423, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 1001),
- NAME_FUNC_OFFSET(17444, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 1002),
- NAME_FUNC_OFFSET(17466, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 1003),
- NAME_FUNC_OFFSET(17487, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 1004),
- NAME_FUNC_OFFSET(17509, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 1005),
- NAME_FUNC_OFFSET(17531, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 1006),
- NAME_FUNC_OFFSET(17554, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 1007),
- NAME_FUNC_OFFSET(17575, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 1008),
- NAME_FUNC_OFFSET(17597, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 1009),
- NAME_FUNC_OFFSET(17619, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 1010),
- NAME_FUNC_OFFSET(17642, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 1011),
- NAME_FUNC_OFFSET(17663, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 1012),
- NAME_FUNC_OFFSET(17685, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 1013),
- NAME_FUNC_OFFSET(17707, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 1014),
- NAME_FUNC_OFFSET(17730, glClearColorIiEXT, glClearColorIiEXT, NULL, 1015),
- NAME_FUNC_OFFSET(17748, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 1016),
- NAME_FUNC_OFFSET(17767, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 1017),
- NAME_FUNC_OFFSET(17789, glBeginPerfMonitorAMD, glBeginPerfMonitorAMD, NULL, 1018),
- NAME_FUNC_OFFSET(17811, glDeletePerfMonitorsAMD, glDeletePerfMonitorsAMD, NULL, 1019),
- NAME_FUNC_OFFSET(17835, glEndPerfMonitorAMD, glEndPerfMonitorAMD, NULL, 1020),
- NAME_FUNC_OFFSET(17855, glGenPerfMonitorsAMD, glGenPerfMonitorsAMD, NULL, 1021),
- NAME_FUNC_OFFSET(17876, glGetPerfMonitorCounterDataAMD, glGetPerfMonitorCounterDataAMD, NULL, 1022),
- NAME_FUNC_OFFSET(17907, glGetPerfMonitorCounterInfoAMD, glGetPerfMonitorCounterInfoAMD, NULL, 1023),
- NAME_FUNC_OFFSET(17938, glGetPerfMonitorCounterStringAMD, glGetPerfMonitorCounterStringAMD, NULL, 1024),
- NAME_FUNC_OFFSET(17971, glGetPerfMonitorCountersAMD, glGetPerfMonitorCountersAMD, NULL, 1025),
- NAME_FUNC_OFFSET(17999, glGetPerfMonitorGroupStringAMD, glGetPerfMonitorGroupStringAMD, NULL, 1026),
- NAME_FUNC_OFFSET(18030, glGetPerfMonitorGroupsAMD, glGetPerfMonitorGroupsAMD, NULL, 1027),
- NAME_FUNC_OFFSET(18056, glSelectPerfMonitorCountersAMD, glSelectPerfMonitorCountersAMD, NULL, 1028),
- NAME_FUNC_OFFSET(18087, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 1029),
- NAME_FUNC_OFFSET(18115, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 1030),
- NAME_FUNC_OFFSET(18138, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 1031),
- NAME_FUNC_OFFSET(18163, glActiveProgramEXT, glActiveProgramEXT, NULL, 1032),
- NAME_FUNC_OFFSET(18182, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 1033),
- NAME_FUNC_OFFSET(18207, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 1034),
- NAME_FUNC_OFFSET(18229, glTextureBarrierNV, glTextureBarrierNV, NULL, 1035),
- NAME_FUNC_OFFSET(18248, glVDPAUFiniNV, glVDPAUFiniNV, NULL, 1036),
- NAME_FUNC_OFFSET(18262, glVDPAUGetSurfaceivNV, glVDPAUGetSurfaceivNV, NULL, 1037),
- NAME_FUNC_OFFSET(18284, glVDPAUInitNV, glVDPAUInitNV, NULL, 1038),
- NAME_FUNC_OFFSET(18298, glVDPAUIsSurfaceNV, glVDPAUIsSurfaceNV, NULL, 1039),
- NAME_FUNC_OFFSET(18317, glVDPAUMapSurfacesNV, glVDPAUMapSurfacesNV, NULL, 1040),
- NAME_FUNC_OFFSET(18338, glVDPAURegisterOutputSurfaceNV, glVDPAURegisterOutputSurfaceNV, NULL, 1041),
- NAME_FUNC_OFFSET(18369, glVDPAURegisterVideoSurfaceNV, glVDPAURegisterVideoSurfaceNV, NULL, 1042),
- NAME_FUNC_OFFSET(18399, glVDPAUSurfaceAccessNV, glVDPAUSurfaceAccessNV, NULL, 1043),
- NAME_FUNC_OFFSET(18422, glVDPAUUnmapSurfacesNV, glVDPAUUnmapSurfacesNV, NULL, 1044),
- NAME_FUNC_OFFSET(18445, glVDPAUUnregisterSurfaceNV, glVDPAUUnregisterSurfaceNV, NULL, 1045),
- NAME_FUNC_OFFSET(18472, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
- NAME_FUNC_OFFSET(18497, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
- NAME_FUNC_OFFSET(18526, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
- NAME_FUNC_OFFSET(18557, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 1049),
- NAME_FUNC_OFFSET(18596, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 1050),
- NAME_FUNC_OFFSET(18625, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
- NAME_FUNC_OFFSET(18638, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
- NAME_FUNC_OFFSET(18652, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
- NAME_FUNC_OFFSET(18666, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
- NAME_FUNC_OFFSET(18676, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
- NAME_FUNC_OFFSET(18690, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
- NAME_FUNC_OFFSET(18697, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
- NAME_FUNC_OFFSET(18705, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
- NAME_FUNC_OFFSET(18716, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
- NAME_FUNC_OFFSET(18727, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
- NAME_FUNC_OFFSET(18741, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
- NAME_FUNC_OFFSET(18756, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
- NAME_FUNC_OFFSET(18765, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
- NAME_FUNC_OFFSET(18775, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
- NAME_FUNC_OFFSET(18788, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
- NAME_FUNC_OFFSET(18802, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
- NAME_FUNC_OFFSET(18814, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
- NAME_FUNC_OFFSET(18827, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
- NAME_FUNC_OFFSET(18841, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
- NAME_FUNC_OFFSET(18859, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
- NAME_FUNC_OFFSET(18870, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
- NAME_FUNC_OFFSET(18879, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
- NAME_FUNC_OFFSET(18888, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
- NAME_FUNC_OFFSET(18901, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
- NAME_FUNC_OFFSET(18918, gl_dispatch_stub_1075, gl_dispatch_stub_1075, NULL, 1075),
- NAME_FUNC_OFFSET(18928, gl_dispatch_stub_1076, gl_dispatch_stub_1076, NULL, 1076),
- NAME_FUNC_OFFSET(18946, gl_dispatch_stub_1077, gl_dispatch_stub_1077, NULL, 1077),
- NAME_FUNC_OFFSET(18955, gl_dispatch_stub_1078, gl_dispatch_stub_1078, NULL, 1078),
- NAME_FUNC_OFFSET(18965, gl_dispatch_stub_1079, gl_dispatch_stub_1079, NULL, 1079),
- NAME_FUNC_OFFSET(18976, gl_dispatch_stub_1080, gl_dispatch_stub_1080, NULL, 1080),
- NAME_FUNC_OFFSET(18992, gl_dispatch_stub_1081, gl_dispatch_stub_1081, NULL, 1081),
- NAME_FUNC_OFFSET(19005, gl_dispatch_stub_1082, gl_dispatch_stub_1082, NULL, 1082),
- NAME_FUNC_OFFSET(19018, gl_dispatch_stub_1083, gl_dispatch_stub_1083, NULL, 1083),
- NAME_FUNC_OFFSET(19031, gl_dispatch_stub_1084, gl_dispatch_stub_1084, NULL, 1084),
- NAME_FUNC_OFFSET(19047, gl_dispatch_stub_1085, gl_dispatch_stub_1085, NULL, 1085),
- NAME_FUNC_OFFSET(19063, gl_dispatch_stub_1086, gl_dispatch_stub_1086, NULL, 1086),
- NAME_FUNC_OFFSET(19075, gl_dispatch_stub_1087, gl_dispatch_stub_1087, NULL, 1087),
- NAME_FUNC_OFFSET(19088, gl_dispatch_stub_1088, gl_dispatch_stub_1088, NULL, 1088),
- NAME_FUNC_OFFSET(19104, gl_dispatch_stub_1089, gl_dispatch_stub_1089, NULL, 1089),
- NAME_FUNC_OFFSET(19118, gl_dispatch_stub_1090, gl_dispatch_stub_1090, NULL, 1090),
- NAME_FUNC_OFFSET(19138, gl_dispatch_stub_1091, gl_dispatch_stub_1091, NULL, 1091),
- NAME_FUNC_OFFSET(19156, gl_dispatch_stub_1092, gl_dispatch_stub_1092, NULL, 1092),
- NAME_FUNC_OFFSET(19175, gl_dispatch_stub_1093, gl_dispatch_stub_1093, NULL, 1093),
- NAME_FUNC_OFFSET(19192, glTexGenf, glTexGenf, NULL, 190),
- NAME_FUNC_OFFSET(19205, glTexGenfv, glTexGenfv, NULL, 191),
- NAME_FUNC_OFFSET(19219, glTexGeni, glTexGeni, NULL, 192),
- NAME_FUNC_OFFSET(19232, glTexGeniv, glTexGeniv, NULL, 193),
- NAME_FUNC_OFFSET(19246, glReadBuffer, glReadBuffer, NULL, 254),
- NAME_FUNC_OFFSET(19261, glGetTexGenfv, glGetTexGenfv, NULL, 279),
- NAME_FUNC_OFFSET(19278, glGetTexGeniv, glGetTexGeniv, NULL, 280),
- NAME_FUNC_OFFSET(19295, glArrayElement, glArrayElement, NULL, 306),
- NAME_FUNC_OFFSET(19313, glBindTexture, glBindTexture, NULL, 307),
- NAME_FUNC_OFFSET(19330, glDrawArrays, glDrawArrays, NULL, 310),
- NAME_FUNC_OFFSET(19346, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
- NAME_FUNC_OFFSET(19371, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
- NAME_FUNC_OFFSET(19391, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
- NAME_FUNC_OFFSET(19411, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
- NAME_FUNC_OFFSET(19434, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
- NAME_FUNC_OFFSET(19457, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
- NAME_FUNC_OFFSET(19477, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
- NAME_FUNC_OFFSET(19494, glGetPointerv, glGetPointerv, NULL, 329),
- NAME_FUNC_OFFSET(19511, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
- NAME_FUNC_OFFSET(19526, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
- NAME_FUNC_OFFSET(19550, glTexSubImage1D, glTexSubImage1D, NULL, 332),
- NAME_FUNC_OFFSET(19569, glTexSubImage2D, glTexSubImage2D, NULL, 333),
- NAME_FUNC_OFFSET(19588, glBlendColor, glBlendColor, NULL, 336),
- NAME_FUNC_OFFSET(19604, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(19623, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(19642, glDrawRangeElements, glDrawRangeElements, NULL, 338),
- NAME_FUNC_OFFSET(19665, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(19681, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(19697, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
- NAME_FUNC_OFFSET(19724, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
- NAME_FUNC_OFFSET(19751, glCopyColorTable, glCopyColorTable, NULL, 342),
- NAME_FUNC_OFFSET(19771, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(19790, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(19809, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(19839, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(19869, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(19899, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(19929, glColorSubTable, glColorSubTable, NULL, 346),
- NAME_FUNC_OFFSET(19948, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
- NAME_FUNC_OFFSET(19971, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
- NAME_FUNC_OFFSET(19996, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
- NAME_FUNC_OFFSET(20021, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
- NAME_FUNC_OFFSET(20048, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
- NAME_FUNC_OFFSET(20076, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
- NAME_FUNC_OFFSET(20103, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
- NAME_FUNC_OFFSET(20131, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
- NAME_FUNC_OFFSET(20160, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
- NAME_FUNC_OFFSET(20189, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
- NAME_FUNC_OFFSET(20215, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
- NAME_FUNC_OFFSET(20246, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
- NAME_FUNC_OFFSET(20277, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
- NAME_FUNC_OFFSET(20301, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
- NAME_FUNC_OFFSET(20324, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
- NAME_FUNC_OFFSET(20342, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
- NAME_FUNC_OFFSET(20371, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
- NAME_FUNC_OFFSET(20400, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
- NAME_FUNC_OFFSET(20415, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
- NAME_FUNC_OFFSET(20441, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
- NAME_FUNC_OFFSET(20467, glHistogram, glHistogram, NULL, 367),
- NAME_FUNC_OFFSET(20482, glMinmax, glMinmax, NULL, 368),
- NAME_FUNC_OFFSET(20494, glResetHistogram, glResetHistogram, NULL, 369),
- NAME_FUNC_OFFSET(20514, glResetMinmax, glResetMinmax, NULL, 370),
- NAME_FUNC_OFFSET(20531, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(20547, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(20563, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(20582, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(20601, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(20624, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(20647, glActiveTexture, glActiveTexture, NULL, 374),
- NAME_FUNC_OFFSET(20666, glClientActiveTexture, glClientActiveTexture, NULL, 375),
- NAME_FUNC_OFFSET(20691, glMultiTexCoord1d, glMultiTexCoord1d, NULL, 376),
- NAME_FUNC_OFFSET(20712, glMultiTexCoord1dv, glMultiTexCoord1dv, NULL, 377),
- NAME_FUNC_OFFSET(20734, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
- NAME_FUNC_OFFSET(20752, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
- NAME_FUNC_OFFSET(20771, glMultiTexCoord1i, glMultiTexCoord1i, NULL, 380),
- NAME_FUNC_OFFSET(20792, glMultiTexCoord1iv, glMultiTexCoord1iv, NULL, 381),
- NAME_FUNC_OFFSET(20814, glMultiTexCoord1s, glMultiTexCoord1s, NULL, 382),
- NAME_FUNC_OFFSET(20835, glMultiTexCoord1sv, glMultiTexCoord1sv, NULL, 383),
- NAME_FUNC_OFFSET(20857, glMultiTexCoord2d, glMultiTexCoord2d, NULL, 384),
- NAME_FUNC_OFFSET(20878, glMultiTexCoord2dv, glMultiTexCoord2dv, NULL, 385),
- NAME_FUNC_OFFSET(20900, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
- NAME_FUNC_OFFSET(20918, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
- NAME_FUNC_OFFSET(20937, glMultiTexCoord2i, glMultiTexCoord2i, NULL, 388),
- NAME_FUNC_OFFSET(20958, glMultiTexCoord2iv, glMultiTexCoord2iv, NULL, 389),
- NAME_FUNC_OFFSET(20980, glMultiTexCoord2s, glMultiTexCoord2s, NULL, 390),
- NAME_FUNC_OFFSET(21001, glMultiTexCoord2sv, glMultiTexCoord2sv, NULL, 391),
- NAME_FUNC_OFFSET(21023, glMultiTexCoord3d, glMultiTexCoord3d, NULL, 392),
- NAME_FUNC_OFFSET(21044, glMultiTexCoord3dv, glMultiTexCoord3dv, NULL, 393),
- NAME_FUNC_OFFSET(21066, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
- NAME_FUNC_OFFSET(21084, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
- NAME_FUNC_OFFSET(21103, glMultiTexCoord3i, glMultiTexCoord3i, NULL, 396),
- NAME_FUNC_OFFSET(21124, glMultiTexCoord3iv, glMultiTexCoord3iv, NULL, 397),
- NAME_FUNC_OFFSET(21146, glMultiTexCoord3s, glMultiTexCoord3s, NULL, 398),
- NAME_FUNC_OFFSET(21167, glMultiTexCoord3sv, glMultiTexCoord3sv, NULL, 399),
- NAME_FUNC_OFFSET(21189, glMultiTexCoord4d, glMultiTexCoord4d, NULL, 400),
- NAME_FUNC_OFFSET(21210, glMultiTexCoord4dv, glMultiTexCoord4dv, NULL, 401),
- NAME_FUNC_OFFSET(21232, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
- NAME_FUNC_OFFSET(21250, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
- NAME_FUNC_OFFSET(21269, glMultiTexCoord4i, glMultiTexCoord4i, NULL, 404),
- NAME_FUNC_OFFSET(21290, glMultiTexCoord4iv, glMultiTexCoord4iv, NULL, 405),
- NAME_FUNC_OFFSET(21312, glMultiTexCoord4s, glMultiTexCoord4s, NULL, 406),
- NAME_FUNC_OFFSET(21333, glMultiTexCoord4sv, glMultiTexCoord4sv, NULL, 407),
- NAME_FUNC_OFFSET(21355, glCompressedTexImage1D, glCompressedTexImage1D, NULL, 408),
- NAME_FUNC_OFFSET(21381, glCompressedTexImage2D, glCompressedTexImage2D, NULL, 409),
- NAME_FUNC_OFFSET(21407, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
- NAME_FUNC_OFFSET(21433, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
- NAME_FUNC_OFFSET(21459, glCompressedTexSubImage1D, glCompressedTexSubImage1D, NULL, 411),
- NAME_FUNC_OFFSET(21488, glCompressedTexSubImage2D, glCompressedTexSubImage2D, NULL, 412),
- NAME_FUNC_OFFSET(21517, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
- NAME_FUNC_OFFSET(21546, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
- NAME_FUNC_OFFSET(21575, glGetCompressedTexImage, glGetCompressedTexImage, NULL, 414),
- NAME_FUNC_OFFSET(21602, glLoadTransposeMatrixd, glLoadTransposeMatrixd, NULL, 415),
- NAME_FUNC_OFFSET(21628, glLoadTransposeMatrixf, glLoadTransposeMatrixf, NULL, 416),
- NAME_FUNC_OFFSET(21654, glMultTransposeMatrixd, glMultTransposeMatrixd, NULL, 417),
- NAME_FUNC_OFFSET(21680, glMultTransposeMatrixf, glMultTransposeMatrixf, NULL, 418),
- NAME_FUNC_OFFSET(21706, glSampleCoverage, glSampleCoverage, NULL, 419),
- NAME_FUNC_OFFSET(21726, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21749, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21773, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21796, glFogCoordPointer, glFogCoordPointer, NULL, 421),
- NAME_FUNC_OFFSET(21817, glFogCoordd, glFogCoordd, NULL, 422),
- NAME_FUNC_OFFSET(21832, glFogCoorddv, glFogCoorddv, NULL, 423),
- NAME_FUNC_OFFSET(21848, glMultiDrawArrays, glMultiDrawArrays, NULL, 424),
- NAME_FUNC_OFFSET(21869, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21890, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21911, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21933, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21955, glPointParameterfv, glPointParameterfv, NULL, 426),
+ NAME_FUNC_OFFSET(14138, glDispatchCompute, glDispatchCompute, NULL, 844),
+ NAME_FUNC_OFFSET(14156, glDispatchComputeIndirect, glDispatchComputeIndirect, NULL, 845),
+ NAME_FUNC_OFFSET(14182, glTextureView, glTextureView, NULL, 846),
+ NAME_FUNC_OFFSET(14196, glBindVertexBuffer, glBindVertexBuffer, NULL, 847),
+ NAME_FUNC_OFFSET(14215, glVertexAttribBinding, glVertexAttribBinding, NULL, 848),
+ NAME_FUNC_OFFSET(14237, glVertexAttribFormat, glVertexAttribFormat, NULL, 849),
+ NAME_FUNC_OFFSET(14258, glVertexAttribIFormat, glVertexAttribIFormat, NULL, 850),
+ NAME_FUNC_OFFSET(14280, glVertexAttribLFormat, glVertexAttribLFormat, NULL, 851),
+ NAME_FUNC_OFFSET(14302, glVertexBindingDivisor, glVertexBindingDivisor, NULL, 852),
+ NAME_FUNC_OFFSET(14325, glMultiDrawArraysIndirect, glMultiDrawArraysIndirect, NULL, 853),
+ NAME_FUNC_OFFSET(14351, glMultiDrawElementsIndirect, glMultiDrawElementsIndirect, NULL, 854),
+ NAME_FUNC_OFFSET(14379, glTexBufferRange, glTexBufferRange, NULL, 855),
+ NAME_FUNC_OFFSET(14396, glTexStorage2DMultisample, glTexStorage2DMultisample, NULL, 856),
+ NAME_FUNC_OFFSET(14422, glTexStorage3DMultisample, glTexStorage3DMultisample, NULL, 857),
+ NAME_FUNC_OFFSET(14448, glInvalidateBufferData, glInvalidateBufferData, NULL, 858),
+ NAME_FUNC_OFFSET(14471, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 859),
+ NAME_FUNC_OFFSET(14497, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 860),
+ NAME_FUNC_OFFSET(14521, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 861),
+ NAME_FUNC_OFFSET(14548, glInvalidateTexImage, glInvalidateTexImage, NULL, 862),
+ NAME_FUNC_OFFSET(14569, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 863),
+ NAME_FUNC_OFFSET(14593, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 864),
+ NAME_FUNC_OFFSET(14612, gl_dispatch_stub_865, gl_dispatch_stub_865, NULL, 865),
+ NAME_FUNC_OFFSET(14626, gl_dispatch_stub_866, gl_dispatch_stub_866, NULL, 866),
+ NAME_FUNC_OFFSET(14641, gl_dispatch_stub_867, gl_dispatch_stub_867, NULL, 867),
+ NAME_FUNC_OFFSET(14655, gl_dispatch_stub_868, gl_dispatch_stub_868, NULL, 868),
+ NAME_FUNC_OFFSET(14670, gl_dispatch_stub_869, gl_dispatch_stub_869, NULL, 869),
+ NAME_FUNC_OFFSET(14684, gl_dispatch_stub_870, gl_dispatch_stub_870, NULL, 870),
+ NAME_FUNC_OFFSET(14699, gl_dispatch_stub_871, gl_dispatch_stub_871, NULL, 871),
+ NAME_FUNC_OFFSET(14713, gl_dispatch_stub_872, gl_dispatch_stub_872, NULL, 872),
+ NAME_FUNC_OFFSET(14728, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873),
+ NAME_FUNC_OFFSET(14750, gl_dispatch_stub_874, gl_dispatch_stub_874, NULL, 874),
+ NAME_FUNC_OFFSET(14768, gl_dispatch_stub_875, gl_dispatch_stub_875, NULL, 875),
+ NAME_FUNC_OFFSET(14785, gl_dispatch_stub_876, gl_dispatch_stub_876, NULL, 876),
+ NAME_FUNC_OFFSET(14805, glColorPointerEXT, glColorPointerEXT, NULL, 877),
+ NAME_FUNC_OFFSET(14823, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 878),
+ NAME_FUNC_OFFSET(14844, glIndexPointerEXT, glIndexPointerEXT, NULL, 879),
+ NAME_FUNC_OFFSET(14862, glNormalPointerEXT, glNormalPointerEXT, NULL, 880),
+ NAME_FUNC_OFFSET(14881, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 881),
+ NAME_FUNC_OFFSET(14902, glVertexPointerEXT, glVertexPointerEXT, NULL, 882),
+ NAME_FUNC_OFFSET(14921, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883),
+ NAME_FUNC_OFFSET(14945, glLockArraysEXT, glLockArraysEXT, NULL, 884),
+ NAME_FUNC_OFFSET(14961, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 885),
+ NAME_FUNC_OFFSET(14979, glDebugMessageCallback, glDebugMessageCallback, NULL, 886),
+ NAME_FUNC_OFFSET(15002, glDebugMessageControl, glDebugMessageControl, NULL, 887),
+ NAME_FUNC_OFFSET(15024, glDebugMessageInsert, glDebugMessageInsert, NULL, 888),
+ NAME_FUNC_OFFSET(15045, glGetDebugMessageLog, glGetDebugMessageLog, NULL, 889),
+ NAME_FUNC_OFFSET(15066, glGetObjectLabel, glGetObjectLabel, NULL, 890),
+ NAME_FUNC_OFFSET(15083, glGetObjectPtrLabel, glGetObjectPtrLabel, NULL, 891),
+ NAME_FUNC_OFFSET(15103, glObjectLabel, glObjectLabel, NULL, 892),
+ NAME_FUNC_OFFSET(15117, glObjectPtrLabel, glObjectPtrLabel, NULL, 893),
+ NAME_FUNC_OFFSET(15134, glPopDebugGroup, glPopDebugGroup, NULL, 894),
+ NAME_FUNC_OFFSET(15150, glPushDebugGroup, glPushDebugGroup, NULL, 895),
+ NAME_FUNC_OFFSET(15167, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 896),
+ NAME_FUNC_OFFSET(15189, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 897),
+ NAME_FUNC_OFFSET(15212, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 898),
+ NAME_FUNC_OFFSET(15235, glFogCoordfEXT, glFogCoordfEXT, NULL, 899),
+ NAME_FUNC_OFFSET(15250, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 900),
+ NAME_FUNC_OFFSET(15266, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 901),
+ NAME_FUNC_OFFSET(15286, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 902),
+ NAME_FUNC_OFFSET(15304, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 903),
+ NAME_FUNC_OFFSET(15323, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 904),
+ NAME_FUNC_OFFSET(15341, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 905),
+ NAME_FUNC_OFFSET(15360, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 906),
+ NAME_FUNC_OFFSET(15378, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 907),
+ NAME_FUNC_OFFSET(15397, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 908),
+ NAME_FUNC_OFFSET(15415, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 909),
+ NAME_FUNC_OFFSET(15434, gl_dispatch_stub_910, gl_dispatch_stub_910, NULL, 910),
+ NAME_FUNC_OFFSET(15459, gl_dispatch_stub_911, gl_dispatch_stub_911, NULL, 911),
+ NAME_FUNC_OFFSET(15486, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 912),
+ NAME_FUNC_OFFSET(15510, glExecuteProgramNV, glExecuteProgramNV, NULL, 913),
+ NAME_FUNC_OFFSET(15529, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 914),
+ NAME_FUNC_OFFSET(15555, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 915),
+ NAME_FUNC_OFFSET(15581, glGetProgramStringNV, glGetProgramStringNV, NULL, 916),
+ NAME_FUNC_OFFSET(15602, glGetProgramivNV, glGetProgramivNV, NULL, 917),
+ NAME_FUNC_OFFSET(15619, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 918),
+ NAME_FUNC_OFFSET(15640, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 919),
+ NAME_FUNC_OFFSET(15662, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 920),
+ NAME_FUNC_OFFSET(15684, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 921),
+ NAME_FUNC_OFFSET(15706, glLoadProgramNV, glLoadProgramNV, NULL, 922),
+ NAME_FUNC_OFFSET(15722, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 923),
+ NAME_FUNC_OFFSET(15747, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 924),
+ NAME_FUNC_OFFSET(15772, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 925),
+ NAME_FUNC_OFFSET(15800, glTrackMatrixNV, glTrackMatrixNV, NULL, 926),
+ NAME_FUNC_OFFSET(15816, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 927),
+ NAME_FUNC_OFFSET(15835, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 928),
+ NAME_FUNC_OFFSET(15855, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 929),
+ NAME_FUNC_OFFSET(15874, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 930),
+ NAME_FUNC_OFFSET(15894, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 931),
+ NAME_FUNC_OFFSET(15913, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 932),
+ NAME_FUNC_OFFSET(15933, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 933),
+ NAME_FUNC_OFFSET(15952, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 934),
+ NAME_FUNC_OFFSET(15972, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 935),
+ NAME_FUNC_OFFSET(15991, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 936),
+ NAME_FUNC_OFFSET(16011, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 937),
+ NAME_FUNC_OFFSET(16030, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 938),
+ NAME_FUNC_OFFSET(16050, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 939),
+ NAME_FUNC_OFFSET(16069, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 940),
+ NAME_FUNC_OFFSET(16089, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 941),
+ NAME_FUNC_OFFSET(16108, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 942),
+ NAME_FUNC_OFFSET(16128, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 943),
+ NAME_FUNC_OFFSET(16147, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 944),
+ NAME_FUNC_OFFSET(16167, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 945),
+ NAME_FUNC_OFFSET(16186, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 946),
+ NAME_FUNC_OFFSET(16206, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 947),
+ NAME_FUNC_OFFSET(16225, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 948),
+ NAME_FUNC_OFFSET(16245, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 949),
+ NAME_FUNC_OFFSET(16264, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 950),
+ NAME_FUNC_OFFSET(16284, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 951),
+ NAME_FUNC_OFFSET(16304, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 952),
+ NAME_FUNC_OFFSET(16325, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 953),
+ NAME_FUNC_OFFSET(16349, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 954),
+ NAME_FUNC_OFFSET(16370, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 955),
+ NAME_FUNC_OFFSET(16391, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 956),
+ NAME_FUNC_OFFSET(16412, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 957),
+ NAME_FUNC_OFFSET(16433, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 958),
+ NAME_FUNC_OFFSET(16454, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 959),
+ NAME_FUNC_OFFSET(16475, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 960),
+ NAME_FUNC_OFFSET(16496, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 961),
+ NAME_FUNC_OFFSET(16517, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 962),
+ NAME_FUNC_OFFSET(16538, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 963),
+ NAME_FUNC_OFFSET(16559, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 964),
+ NAME_FUNC_OFFSET(16580, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 965),
+ NAME_FUNC_OFFSET(16601, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 966),
+ NAME_FUNC_OFFSET(16623, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 967),
+ NAME_FUNC_OFFSET(16650, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 968),
+ NAME_FUNC_OFFSET(16677, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 969),
+ NAME_FUNC_OFFSET(16701, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 970),
+ NAME_FUNC_OFFSET(16725, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 971),
+ NAME_FUNC_OFFSET(16747, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 972),
+ NAME_FUNC_OFFSET(16769, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 973),
+ NAME_FUNC_OFFSET(16791, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 974),
+ NAME_FUNC_OFFSET(16816, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 975),
+ NAME_FUNC_OFFSET(16840, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 976),
+ NAME_FUNC_OFFSET(16862, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 977),
+ NAME_FUNC_OFFSET(16884, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 978),
+ NAME_FUNC_OFFSET(16906, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 979),
+ NAME_FUNC_OFFSET(16932, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 980),
+ NAME_FUNC_OFFSET(16955, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 981),
+ NAME_FUNC_OFFSET(16979, glPassTexCoordATI, glPassTexCoordATI, NULL, 982),
+ NAME_FUNC_OFFSET(16997, glSampleMapATI, glSampleMapATI, NULL, 983),
+ NAME_FUNC_OFFSET(17012, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 984),
+ NAME_FUNC_OFFSET(17043, gl_dispatch_stub_985, gl_dispatch_stub_985, NULL, 985),
+ NAME_FUNC_OFFSET(17066, gl_dispatch_stub_986, gl_dispatch_stub_986, NULL, 986),
+ NAME_FUNC_OFFSET(17089, gl_dispatch_stub_987, gl_dispatch_stub_987, NULL, 987),
+ NAME_FUNC_OFFSET(17112, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 988),
+ NAME_FUNC_OFFSET(17143, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 989),
+ NAME_FUNC_OFFSET(17174, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 990),
+ NAME_FUNC_OFFSET(17202, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 991),
+ NAME_FUNC_OFFSET(17231, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 992),
+ NAME_FUNC_OFFSET(17259, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 993),
+ NAME_FUNC_OFFSET(17288, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 994),
+ NAME_FUNC_OFFSET(17309, gl_dispatch_stub_995, gl_dispatch_stub_995, NULL, 995),
+ NAME_FUNC_OFFSET(17326, gl_dispatch_stub_996, gl_dispatch_stub_996, NULL, 996),
+ NAME_FUNC_OFFSET(17339, gl_dispatch_stub_997, gl_dispatch_stub_997, NULL, 997),
+ NAME_FUNC_OFFSET(17353, gl_dispatch_stub_998, gl_dispatch_stub_998, NULL, 998),
+ NAME_FUNC_OFFSET(17370, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 999),
+ NAME_FUNC_OFFSET(17391, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 1000),
+ NAME_FUNC_OFFSET(17413, gl_dispatch_stub_1001, gl_dispatch_stub_1001, NULL, 1001),
+ NAME_FUNC_OFFSET(17437, gl_dispatch_stub_1002, gl_dispatch_stub_1002, NULL, 1002),
+ NAME_FUNC_OFFSET(17467, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 1003),
+ NAME_FUNC_OFFSET(17488, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 1004),
+ NAME_FUNC_OFFSET(17510, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 1005),
+ NAME_FUNC_OFFSET(17531, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 1006),
+ NAME_FUNC_OFFSET(17553, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 1007),
+ NAME_FUNC_OFFSET(17575, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 1008),
+ NAME_FUNC_OFFSET(17598, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 1009),
+ NAME_FUNC_OFFSET(17619, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 1010),
+ NAME_FUNC_OFFSET(17641, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 1011),
+ NAME_FUNC_OFFSET(17663, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 1012),
+ NAME_FUNC_OFFSET(17686, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 1013),
+ NAME_FUNC_OFFSET(17707, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 1014),
+ NAME_FUNC_OFFSET(17729, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 1015),
+ NAME_FUNC_OFFSET(17751, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 1016),
+ NAME_FUNC_OFFSET(17774, glClearColorIiEXT, glClearColorIiEXT, NULL, 1017),
+ NAME_FUNC_OFFSET(17792, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 1018),
+ NAME_FUNC_OFFSET(17811, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 1019),
+ NAME_FUNC_OFFSET(17833, glBeginPerfMonitorAMD, glBeginPerfMonitorAMD, NULL, 1020),
+ NAME_FUNC_OFFSET(17855, glDeletePerfMonitorsAMD, glDeletePerfMonitorsAMD, NULL, 1021),
+ NAME_FUNC_OFFSET(17879, glEndPerfMonitorAMD, glEndPerfMonitorAMD, NULL, 1022),
+ NAME_FUNC_OFFSET(17899, glGenPerfMonitorsAMD, glGenPerfMonitorsAMD, NULL, 1023),
+ NAME_FUNC_OFFSET(17920, glGetPerfMonitorCounterDataAMD, glGetPerfMonitorCounterDataAMD, NULL, 1024),
+ NAME_FUNC_OFFSET(17951, glGetPerfMonitorCounterInfoAMD, glGetPerfMonitorCounterInfoAMD, NULL, 1025),
+ NAME_FUNC_OFFSET(17982, glGetPerfMonitorCounterStringAMD, glGetPerfMonitorCounterStringAMD, NULL, 1026),
+ NAME_FUNC_OFFSET(18015, glGetPerfMonitorCountersAMD, glGetPerfMonitorCountersAMD, NULL, 1027),
+ NAME_FUNC_OFFSET(18043, glGetPerfMonitorGroupStringAMD, glGetPerfMonitorGroupStringAMD, NULL, 1028),
+ NAME_FUNC_OFFSET(18074, glGetPerfMonitorGroupsAMD, glGetPerfMonitorGroupsAMD, NULL, 1029),
+ NAME_FUNC_OFFSET(18100, glSelectPerfMonitorCountersAMD, glSelectPerfMonitorCountersAMD, NULL, 1030),
+ NAME_FUNC_OFFSET(18131, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 1031),
+ NAME_FUNC_OFFSET(18159, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 1032),
+ NAME_FUNC_OFFSET(18182, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 1033),
+ NAME_FUNC_OFFSET(18207, glActiveProgramEXT, glActiveProgramEXT, NULL, 1034),
+ NAME_FUNC_OFFSET(18226, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 1035),
+ NAME_FUNC_OFFSET(18251, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 1036),
+ NAME_FUNC_OFFSET(18273, glTextureBarrierNV, glTextureBarrierNV, NULL, 1037),
+ NAME_FUNC_OFFSET(18292, glVDPAUFiniNV, glVDPAUFiniNV, NULL, 1038),
+ NAME_FUNC_OFFSET(18306, glVDPAUGetSurfaceivNV, glVDPAUGetSurfaceivNV, NULL, 1039),
+ NAME_FUNC_OFFSET(18328, glVDPAUInitNV, glVDPAUInitNV, NULL, 1040),
+ NAME_FUNC_OFFSET(18342, glVDPAUIsSurfaceNV, glVDPAUIsSurfaceNV, NULL, 1041),
+ NAME_FUNC_OFFSET(18361, glVDPAUMapSurfacesNV, glVDPAUMapSurfacesNV, NULL, 1042),
+ NAME_FUNC_OFFSET(18382, glVDPAURegisterOutputSurfaceNV, glVDPAURegisterOutputSurfaceNV, NULL, 1043),
+ NAME_FUNC_OFFSET(18413, glVDPAURegisterVideoSurfaceNV, glVDPAURegisterVideoSurfaceNV, NULL, 1044),
+ NAME_FUNC_OFFSET(18443, glVDPAUSurfaceAccessNV, glVDPAUSurfaceAccessNV, NULL, 1045),
+ NAME_FUNC_OFFSET(18466, glVDPAUUnmapSurfacesNV, glVDPAUUnmapSurfacesNV, NULL, 1046),
+ NAME_FUNC_OFFSET(18489, glVDPAUUnregisterSurfaceNV, glVDPAUUnregisterSurfaceNV, NULL, 1047),
+ NAME_FUNC_OFFSET(18516, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
+ NAME_FUNC_OFFSET(18541, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
+ NAME_FUNC_OFFSET(18570, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
+ NAME_FUNC_OFFSET(18601, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 1051),
+ NAME_FUNC_OFFSET(18640, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 1052),
+ NAME_FUNC_OFFSET(18669, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
+ NAME_FUNC_OFFSET(18682, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
+ NAME_FUNC_OFFSET(18696, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
+ NAME_FUNC_OFFSET(18710, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
+ NAME_FUNC_OFFSET(18720, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
+ NAME_FUNC_OFFSET(18734, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
+ NAME_FUNC_OFFSET(18741, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
+ NAME_FUNC_OFFSET(18749, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
+ NAME_FUNC_OFFSET(18760, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
+ NAME_FUNC_OFFSET(18771, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
+ NAME_FUNC_OFFSET(18785, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
+ NAME_FUNC_OFFSET(18800, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
+ NAME_FUNC_OFFSET(18809, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
+ NAME_FUNC_OFFSET(18819, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
+ NAME_FUNC_OFFSET(18832, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
+ NAME_FUNC_OFFSET(18846, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
+ NAME_FUNC_OFFSET(18858, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
+ NAME_FUNC_OFFSET(18871, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
+ NAME_FUNC_OFFSET(18885, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
+ NAME_FUNC_OFFSET(18903, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
+ NAME_FUNC_OFFSET(18914, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
+ NAME_FUNC_OFFSET(18923, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
+ NAME_FUNC_OFFSET(18932, gl_dispatch_stub_1075, gl_dispatch_stub_1075, NULL, 1075),
+ NAME_FUNC_OFFSET(18945, gl_dispatch_stub_1076, gl_dispatch_stub_1076, NULL, 1076),
+ NAME_FUNC_OFFSET(18962, gl_dispatch_stub_1077, gl_dispatch_stub_1077, NULL, 1077),
+ NAME_FUNC_OFFSET(18972, gl_dispatch_stub_1078, gl_dispatch_stub_1078, NULL, 1078),
+ NAME_FUNC_OFFSET(18990, gl_dispatch_stub_1079, gl_dispatch_stub_1079, NULL, 1079),
+ NAME_FUNC_OFFSET(18999, gl_dispatch_stub_1080, gl_dispatch_stub_1080, NULL, 1080),
+ NAME_FUNC_OFFSET(19009, gl_dispatch_stub_1081, gl_dispatch_stub_1081, NULL, 1081),
+ NAME_FUNC_OFFSET(19020, gl_dispatch_stub_1082, gl_dispatch_stub_1082, NULL, 1082),
+ NAME_FUNC_OFFSET(19036, gl_dispatch_stub_1083, gl_dispatch_stub_1083, NULL, 1083),
+ NAME_FUNC_OFFSET(19049, gl_dispatch_stub_1084, gl_dispatch_stub_1084, NULL, 1084),
+ NAME_FUNC_OFFSET(19062, gl_dispatch_stub_1085, gl_dispatch_stub_1085, NULL, 1085),
+ NAME_FUNC_OFFSET(19075, gl_dispatch_stub_1086, gl_dispatch_stub_1086, NULL, 1086),
+ NAME_FUNC_OFFSET(19091, gl_dispatch_stub_1087, gl_dispatch_stub_1087, NULL, 1087),
+ NAME_FUNC_OFFSET(19107, gl_dispatch_stub_1088, gl_dispatch_stub_1088, NULL, 1088),
+ NAME_FUNC_OFFSET(19119, gl_dispatch_stub_1089, gl_dispatch_stub_1089, NULL, 1089),
+ NAME_FUNC_OFFSET(19132, gl_dispatch_stub_1090, gl_dispatch_stub_1090, NULL, 1090),
+ NAME_FUNC_OFFSET(19148, gl_dispatch_stub_1091, gl_dispatch_stub_1091, NULL, 1091),
+ NAME_FUNC_OFFSET(19162, gl_dispatch_stub_1092, gl_dispatch_stub_1092, NULL, 1092),
+ NAME_FUNC_OFFSET(19182, gl_dispatch_stub_1093, gl_dispatch_stub_1093, NULL, 1093),
+ NAME_FUNC_OFFSET(19200, gl_dispatch_stub_1094, gl_dispatch_stub_1094, NULL, 1094),
+ NAME_FUNC_OFFSET(19219, gl_dispatch_stub_1095, gl_dispatch_stub_1095, NULL, 1095),
+ NAME_FUNC_OFFSET(19236, glTexGenf, glTexGenf, NULL, 190),
+ NAME_FUNC_OFFSET(19249, glTexGenfv, glTexGenfv, NULL, 191),
+ NAME_FUNC_OFFSET(19263, glTexGeni, glTexGeni, NULL, 192),
+ NAME_FUNC_OFFSET(19276, glTexGeniv, glTexGeniv, NULL, 193),
+ NAME_FUNC_OFFSET(19290, glReadBuffer, glReadBuffer, NULL, 254),
+ NAME_FUNC_OFFSET(19305, glGetTexGenfv, glGetTexGenfv, NULL, 279),
+ NAME_FUNC_OFFSET(19322, glGetTexGeniv, glGetTexGeniv, NULL, 280),
+ NAME_FUNC_OFFSET(19339, glArrayElement, glArrayElement, NULL, 306),
+ NAME_FUNC_OFFSET(19357, glBindTexture, glBindTexture, NULL, 307),
+ NAME_FUNC_OFFSET(19374, glDrawArrays, glDrawArrays, NULL, 310),
+ NAME_FUNC_OFFSET(19390, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
+ NAME_FUNC_OFFSET(19415, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
+ NAME_FUNC_OFFSET(19435, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
+ NAME_FUNC_OFFSET(19455, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
+ NAME_FUNC_OFFSET(19478, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
+ NAME_FUNC_OFFSET(19501, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
+ NAME_FUNC_OFFSET(19521, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
+ NAME_FUNC_OFFSET(19538, glGetPointerv, glGetPointerv, NULL, 329),
+ NAME_FUNC_OFFSET(19555, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
+ NAME_FUNC_OFFSET(19570, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
+ NAME_FUNC_OFFSET(19594, glTexSubImage1D, glTexSubImage1D, NULL, 332),
+ NAME_FUNC_OFFSET(19613, glTexSubImage2D, glTexSubImage2D, NULL, 333),
+ NAME_FUNC_OFFSET(19632, glBlendColor, glBlendColor, NULL, 336),
+ NAME_FUNC_OFFSET(19648, glBlendEquation, glBlendEquation, NULL, 337),
+ NAME_FUNC_OFFSET(19667, glBlendEquation, glBlendEquation, NULL, 337),
+ NAME_FUNC_OFFSET(19686, glDrawRangeElements, glDrawRangeElements, NULL, 338),
+ NAME_FUNC_OFFSET(19709, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(19725, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(19741, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
+ NAME_FUNC_OFFSET(19768, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
+ NAME_FUNC_OFFSET(19795, glCopyColorTable, glCopyColorTable, NULL, 342),
+ NAME_FUNC_OFFSET(19815, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(19834, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(19853, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(19883, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(19913, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(19943, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(19973, glColorSubTable, glColorSubTable, NULL, 346),
+ NAME_FUNC_OFFSET(19992, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
+ NAME_FUNC_OFFSET(20015, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
+ NAME_FUNC_OFFSET(20040, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
+ NAME_FUNC_OFFSET(20065, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
+ NAME_FUNC_OFFSET(20092, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
+ NAME_FUNC_OFFSET(20120, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
+ NAME_FUNC_OFFSET(20147, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
+ NAME_FUNC_OFFSET(20175, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
+ NAME_FUNC_OFFSET(20204, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
+ NAME_FUNC_OFFSET(20233, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
+ NAME_FUNC_OFFSET(20259, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
+ NAME_FUNC_OFFSET(20290, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
+ NAME_FUNC_OFFSET(20321, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
+ NAME_FUNC_OFFSET(20345, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
+ NAME_FUNC_OFFSET(20368, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
+ NAME_FUNC_OFFSET(20386, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
+ NAME_FUNC_OFFSET(20415, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
+ NAME_FUNC_OFFSET(20444, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
+ NAME_FUNC_OFFSET(20459, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
+ NAME_FUNC_OFFSET(20485, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
+ NAME_FUNC_OFFSET(20511, glHistogram, glHistogram, NULL, 367),
+ NAME_FUNC_OFFSET(20526, glMinmax, glMinmax, NULL, 368),
+ NAME_FUNC_OFFSET(20538, glResetHistogram, glResetHistogram, NULL, 369),
+ NAME_FUNC_OFFSET(20558, glResetMinmax, glResetMinmax, NULL, 370),
+ NAME_FUNC_OFFSET(20575, glTexImage3D, glTexImage3D, NULL, 371),
+ NAME_FUNC_OFFSET(20591, glTexImage3D, glTexImage3D, NULL, 371),
+ NAME_FUNC_OFFSET(20607, glTexSubImage3D, glTexSubImage3D, NULL, 372),
+ NAME_FUNC_OFFSET(20626, glTexSubImage3D, glTexSubImage3D, NULL, 372),
+ NAME_FUNC_OFFSET(20645, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
+ NAME_FUNC_OFFSET(20668, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
+ NAME_FUNC_OFFSET(20691, glActiveTexture, glActiveTexture, NULL, 374),
+ NAME_FUNC_OFFSET(20710, glClientActiveTexture, glClientActiveTexture, NULL, 375),
+ NAME_FUNC_OFFSET(20735, glMultiTexCoord1d, glMultiTexCoord1d, NULL, 376),
+ NAME_FUNC_OFFSET(20756, glMultiTexCoord1dv, glMultiTexCoord1dv, NULL, 377),
+ NAME_FUNC_OFFSET(20778, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
+ NAME_FUNC_OFFSET(20796, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
+ NAME_FUNC_OFFSET(20815, glMultiTexCoord1i, glMultiTexCoord1i, NULL, 380),
+ NAME_FUNC_OFFSET(20836, glMultiTexCoord1iv, glMultiTexCoord1iv, NULL, 381),
+ NAME_FUNC_OFFSET(20858, glMultiTexCoord1s, glMultiTexCoord1s, NULL, 382),
+ NAME_FUNC_OFFSET(20879, glMultiTexCoord1sv, glMultiTexCoord1sv, NULL, 383),
+ NAME_FUNC_OFFSET(20901, glMultiTexCoord2d, glMultiTexCoord2d, NULL, 384),
+ NAME_FUNC_OFFSET(20922, glMultiTexCoord2dv, glMultiTexCoord2dv, NULL, 385),
+ NAME_FUNC_OFFSET(20944, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
+ NAME_FUNC_OFFSET(20962, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
+ NAME_FUNC_OFFSET(20981, glMultiTexCoord2i, glMultiTexCoord2i, NULL, 388),
+ NAME_FUNC_OFFSET(21002, glMultiTexCoord2iv, glMultiTexCoord2iv, NULL, 389),
+ NAME_FUNC_OFFSET(21024, glMultiTexCoord2s, glMultiTexCoord2s, NULL, 390),
+ NAME_FUNC_OFFSET(21045, glMultiTexCoord2sv, glMultiTexCoord2sv, NULL, 391),
+ NAME_FUNC_OFFSET(21067, glMultiTexCoord3d, glMultiTexCoord3d, NULL, 392),
+ NAME_FUNC_OFFSET(21088, glMultiTexCoord3dv, glMultiTexCoord3dv, NULL, 393),
+ NAME_FUNC_OFFSET(21110, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
+ NAME_FUNC_OFFSET(21128, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
+ NAME_FUNC_OFFSET(21147, glMultiTexCoord3i, glMultiTexCoord3i, NULL, 396),
+ NAME_FUNC_OFFSET(21168, glMultiTexCoord3iv, glMultiTexCoord3iv, NULL, 397),
+ NAME_FUNC_OFFSET(21190, glMultiTexCoord3s, glMultiTexCoord3s, NULL, 398),
+ NAME_FUNC_OFFSET(21211, glMultiTexCoord3sv, glMultiTexCoord3sv, NULL, 399),
+ NAME_FUNC_OFFSET(21233, glMultiTexCoord4d, glMultiTexCoord4d, NULL, 400),
+ NAME_FUNC_OFFSET(21254, glMultiTexCoord4dv, glMultiTexCoord4dv, NULL, 401),
+ NAME_FUNC_OFFSET(21276, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
+ NAME_FUNC_OFFSET(21294, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
+ NAME_FUNC_OFFSET(21313, glMultiTexCoord4i, glMultiTexCoord4i, NULL, 404),
+ NAME_FUNC_OFFSET(21334, glMultiTexCoord4iv, glMultiTexCoord4iv, NULL, 405),
+ NAME_FUNC_OFFSET(21356, glMultiTexCoord4s, glMultiTexCoord4s, NULL, 406),
+ NAME_FUNC_OFFSET(21377, glMultiTexCoord4sv, glMultiTexCoord4sv, NULL, 407),
+ NAME_FUNC_OFFSET(21399, glCompressedTexImage1D, glCompressedTexImage1D, NULL, 408),
+ NAME_FUNC_OFFSET(21425, glCompressedTexImage2D, glCompressedTexImage2D, NULL, 409),
+ NAME_FUNC_OFFSET(21451, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
+ NAME_FUNC_OFFSET(21477, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
+ NAME_FUNC_OFFSET(21503, glCompressedTexSubImage1D, glCompressedTexSubImage1D, NULL, 411),
+ NAME_FUNC_OFFSET(21532, glCompressedTexSubImage2D, glCompressedTexSubImage2D, NULL, 412),
+ NAME_FUNC_OFFSET(21561, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
+ NAME_FUNC_OFFSET(21590, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
+ NAME_FUNC_OFFSET(21619, glGetCompressedTexImage, glGetCompressedTexImage, NULL, 414),
+ NAME_FUNC_OFFSET(21646, glLoadTransposeMatrixd, glLoadTransposeMatrixd, NULL, 415),
+ NAME_FUNC_OFFSET(21672, glLoadTransposeMatrixf, glLoadTransposeMatrixf, NULL, 416),
+ NAME_FUNC_OFFSET(21698, glMultTransposeMatrixd, glMultTransposeMatrixd, NULL, 417),
+ NAME_FUNC_OFFSET(21724, glMultTransposeMatrixf, glMultTransposeMatrixf, NULL, 418),
+ NAME_FUNC_OFFSET(21750, glSampleCoverage, glSampleCoverage, NULL, 419),
+ NAME_FUNC_OFFSET(21770, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
+ NAME_FUNC_OFFSET(21793, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
+ NAME_FUNC_OFFSET(21817, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
+ NAME_FUNC_OFFSET(21840, glFogCoordPointer, glFogCoordPointer, NULL, 421),
+ NAME_FUNC_OFFSET(21861, glFogCoordd, glFogCoordd, NULL, 422),
+ NAME_FUNC_OFFSET(21876, glFogCoorddv, glFogCoorddv, NULL, 423),
+ NAME_FUNC_OFFSET(21892, glMultiDrawArrays, glMultiDrawArrays, NULL, 424),
+ NAME_FUNC_OFFSET(21913, glPointParameterf, glPointParameterf, NULL, 425),
+ NAME_FUNC_OFFSET(21934, glPointParameterf, glPointParameterf, NULL, 425),
+ NAME_FUNC_OFFSET(21955, glPointParameterf, glPointParameterf, NULL, 425),
NAME_FUNC_OFFSET(21977, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(22000, glPointParameteri, glPointParameteri, NULL, 427),
- NAME_FUNC_OFFSET(22020, glPointParameteriv, glPointParameteriv, NULL, 428),
- NAME_FUNC_OFFSET(22041, glSecondaryColor3b, glSecondaryColor3b, NULL, 429),
- NAME_FUNC_OFFSET(22063, glSecondaryColor3bv, glSecondaryColor3bv, NULL, 430),
- NAME_FUNC_OFFSET(22086, glSecondaryColor3d, glSecondaryColor3d, NULL, 431),
- NAME_FUNC_OFFSET(22108, glSecondaryColor3dv, glSecondaryColor3dv, NULL, 432),
- NAME_FUNC_OFFSET(22131, glSecondaryColor3i, glSecondaryColor3i, NULL, 433),
- NAME_FUNC_OFFSET(22153, glSecondaryColor3iv, glSecondaryColor3iv, NULL, 434),
- NAME_FUNC_OFFSET(22176, glSecondaryColor3s, glSecondaryColor3s, NULL, 435),
- NAME_FUNC_OFFSET(22198, glSecondaryColor3sv, glSecondaryColor3sv, NULL, 436),
- NAME_FUNC_OFFSET(22221, glSecondaryColor3ub, glSecondaryColor3ub, NULL, 437),
- NAME_FUNC_OFFSET(22244, glSecondaryColor3ubv, glSecondaryColor3ubv, NULL, 438),
- NAME_FUNC_OFFSET(22268, glSecondaryColor3ui, glSecondaryColor3ui, NULL, 439),
- NAME_FUNC_OFFSET(22291, glSecondaryColor3uiv, glSecondaryColor3uiv, NULL, 440),
- NAME_FUNC_OFFSET(22315, glSecondaryColor3us, glSecondaryColor3us, NULL, 441),
- NAME_FUNC_OFFSET(22338, glSecondaryColor3usv, glSecondaryColor3usv, NULL, 442),
- NAME_FUNC_OFFSET(22362, glSecondaryColorPointer, glSecondaryColorPointer, NULL, 443),
- NAME_FUNC_OFFSET(22389, glWindowPos2d, glWindowPos2d, NULL, 444),
- NAME_FUNC_OFFSET(22406, glWindowPos2d, glWindowPos2d, NULL, 444),
- NAME_FUNC_OFFSET(22424, glWindowPos2dv, glWindowPos2dv, NULL, 445),
- NAME_FUNC_OFFSET(22442, glWindowPos2dv, glWindowPos2dv, NULL, 445),
- NAME_FUNC_OFFSET(22461, glWindowPos2f, glWindowPos2f, NULL, 446),
- NAME_FUNC_OFFSET(22478, glWindowPos2f, glWindowPos2f, NULL, 446),
- NAME_FUNC_OFFSET(22496, glWindowPos2fv, glWindowPos2fv, NULL, 447),
- NAME_FUNC_OFFSET(22514, glWindowPos2fv, glWindowPos2fv, NULL, 447),
- NAME_FUNC_OFFSET(22533, glWindowPos2i, glWindowPos2i, NULL, 448),
- NAME_FUNC_OFFSET(22550, glWindowPos2i, glWindowPos2i, NULL, 448),
- NAME_FUNC_OFFSET(22568, glWindowPos2iv, glWindowPos2iv, NULL, 449),
- NAME_FUNC_OFFSET(22586, glWindowPos2iv, glWindowPos2iv, NULL, 449),
- NAME_FUNC_OFFSET(22605, glWindowPos2s, glWindowPos2s, NULL, 450),
- NAME_FUNC_OFFSET(22622, glWindowPos2s, glWindowPos2s, NULL, 450),
- NAME_FUNC_OFFSET(22640, glWindowPos2sv, glWindowPos2sv, NULL, 451),
- NAME_FUNC_OFFSET(22658, glWindowPos2sv, glWindowPos2sv, NULL, 451),
- NAME_FUNC_OFFSET(22677, glWindowPos3d, glWindowPos3d, NULL, 452),
- NAME_FUNC_OFFSET(22694, glWindowPos3d, glWindowPos3d, NULL, 452),
- NAME_FUNC_OFFSET(22712, glWindowPos3dv, glWindowPos3dv, NULL, 453),
- NAME_FUNC_OFFSET(22730, glWindowPos3dv, glWindowPos3dv, NULL, 453),
- NAME_FUNC_OFFSET(22749, glWindowPos3f, glWindowPos3f, NULL, 454),
- NAME_FUNC_OFFSET(22766, glWindowPos3f, glWindowPos3f, NULL, 454),
- NAME_FUNC_OFFSET(22784, glWindowPos3fv, glWindowPos3fv, NULL, 455),
- NAME_FUNC_OFFSET(22802, glWindowPos3fv, glWindowPos3fv, NULL, 455),
- NAME_FUNC_OFFSET(22821, glWindowPos3i, glWindowPos3i, NULL, 456),
- NAME_FUNC_OFFSET(22838, glWindowPos3i, glWindowPos3i, NULL, 456),
- NAME_FUNC_OFFSET(22856, glWindowPos3iv, glWindowPos3iv, NULL, 457),
- NAME_FUNC_OFFSET(22874, glWindowPos3iv, glWindowPos3iv, NULL, 457),
- NAME_FUNC_OFFSET(22893, glWindowPos3s, glWindowPos3s, NULL, 458),
- NAME_FUNC_OFFSET(22910, glWindowPos3s, glWindowPos3s, NULL, 458),
- NAME_FUNC_OFFSET(22928, glWindowPos3sv, glWindowPos3sv, NULL, 459),
- NAME_FUNC_OFFSET(22946, glWindowPos3sv, glWindowPos3sv, NULL, 459),
- NAME_FUNC_OFFSET(22965, glBeginQuery, glBeginQuery, NULL, 460),
- NAME_FUNC_OFFSET(22981, glBindBuffer, glBindBuffer, NULL, 461),
- NAME_FUNC_OFFSET(22997, glBufferData, glBufferData, NULL, 462),
- NAME_FUNC_OFFSET(23013, glBufferSubData, glBufferSubData, NULL, 463),
- NAME_FUNC_OFFSET(23032, glDeleteBuffers, glDeleteBuffers, NULL, 464),
- NAME_FUNC_OFFSET(23051, glDeleteQueries, glDeleteQueries, NULL, 465),
- NAME_FUNC_OFFSET(23070, glEndQuery, glEndQuery, NULL, 466),
- NAME_FUNC_OFFSET(23084, glGenBuffers, glGenBuffers, NULL, 467),
- NAME_FUNC_OFFSET(23100, glGenQueries, glGenQueries, NULL, 468),
- NAME_FUNC_OFFSET(23116, glGetBufferParameteriv, glGetBufferParameteriv, NULL, 469),
- NAME_FUNC_OFFSET(23142, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
- NAME_FUNC_OFFSET(23165, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
- NAME_FUNC_OFFSET(23188, glGetBufferSubData, glGetBufferSubData, NULL, 471),
- NAME_FUNC_OFFSET(23210, glGetQueryObjectiv, glGetQueryObjectiv, NULL, 472),
- NAME_FUNC_OFFSET(23232, glGetQueryObjectuiv, glGetQueryObjectuiv, NULL, 473),
- NAME_FUNC_OFFSET(23255, glGetQueryiv, glGetQueryiv, NULL, 474),
- NAME_FUNC_OFFSET(23271, glIsBuffer, glIsBuffer, NULL, 475),
- NAME_FUNC_OFFSET(23285, glIsQuery, glIsQuery, NULL, 476),
- NAME_FUNC_OFFSET(23298, glMapBuffer, glMapBuffer, NULL, 477),
- NAME_FUNC_OFFSET(23313, glMapBuffer, glMapBuffer, NULL, 477),
- NAME_FUNC_OFFSET(23328, glUnmapBuffer, glUnmapBuffer, NULL, 478),
- NAME_FUNC_OFFSET(23345, glUnmapBuffer, glUnmapBuffer, NULL, 478),
- NAME_FUNC_OFFSET(23362, glBindAttribLocation, glBindAttribLocation, NULL, 480),
- NAME_FUNC_OFFSET(23386, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(23413, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(23440, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(23467, glCompileShader, glCompileShader, NULL, 482),
- NAME_FUNC_OFFSET(23486, glDisableVertexAttribArray, glDisableVertexAttribArray, NULL, 488),
- NAME_FUNC_OFFSET(23516, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23533, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23550, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23566, glEnableVertexAttribArray, glEnableVertexAttribArray, NULL, 490),
- NAME_FUNC_OFFSET(23595, glGetActiveAttrib, glGetActiveAttrib, NULL, 491),
- NAME_FUNC_OFFSET(23616, glGetActiveUniform, glGetActiveUniform, NULL, 492),
- NAME_FUNC_OFFSET(23638, glGetAttribLocation, glGetAttribLocation, NULL, 494),
- NAME_FUNC_OFFSET(23661, glGetShaderSource, glGetShaderSource, NULL, 498),
- NAME_FUNC_OFFSET(23682, glGetUniformLocation, glGetUniformLocation, NULL, 500),
- NAME_FUNC_OFFSET(23706, glGetUniformfv, glGetUniformfv, NULL, 501),
- NAME_FUNC_OFFSET(23724, glGetUniformiv, glGetUniformiv, NULL, 502),
- NAME_FUNC_OFFSET(23742, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
- NAME_FUNC_OFFSET(23771, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
- NAME_FUNC_OFFSET(23799, glGetVertexAttribdv, glGetVertexAttribdv, NULL, 504),
- NAME_FUNC_OFFSET(23822, glGetVertexAttribfv, glGetVertexAttribfv, NULL, 505),
- NAME_FUNC_OFFSET(23845, glGetVertexAttribiv, glGetVertexAttribiv, NULL, 506),
- NAME_FUNC_OFFSET(23868, glLinkProgram, glLinkProgram, NULL, 509),
- NAME_FUNC_OFFSET(23885, glShaderSource, glShaderSource, NULL, 510),
- NAME_FUNC_OFFSET(23903, glStencilOpSeparate, glStencilOpSeparate, NULL, 513),
- NAME_FUNC_OFFSET(23926, glUniform1f, glUniform1f, NULL, 514),
- NAME_FUNC_OFFSET(23941, glUniform1fv, glUniform1fv, NULL, 515),
- NAME_FUNC_OFFSET(23957, glUniform1i, glUniform1i, NULL, 516),
- NAME_FUNC_OFFSET(23972, glUniform1iv, glUniform1iv, NULL, 517),
- NAME_FUNC_OFFSET(23988, glUniform2f, glUniform2f, NULL, 518),
- NAME_FUNC_OFFSET(24003, glUniform2fv, glUniform2fv, NULL, 519),
- NAME_FUNC_OFFSET(24019, glUniform2i, glUniform2i, NULL, 520),
- NAME_FUNC_OFFSET(24034, glUniform2iv, glUniform2iv, NULL, 521),
- NAME_FUNC_OFFSET(24050, glUniform3f, glUniform3f, NULL, 522),
- NAME_FUNC_OFFSET(24065, glUniform3fv, glUniform3fv, NULL, 523),
- NAME_FUNC_OFFSET(24081, glUniform3i, glUniform3i, NULL, 524),
- NAME_FUNC_OFFSET(24096, glUniform3iv, glUniform3iv, NULL, 525),
- NAME_FUNC_OFFSET(24112, glUniform4f, glUniform4f, NULL, 526),
- NAME_FUNC_OFFSET(24127, glUniform4fv, glUniform4fv, NULL, 527),
- NAME_FUNC_OFFSET(24143, glUniform4i, glUniform4i, NULL, 528),
- NAME_FUNC_OFFSET(24158, glUniform4iv, glUniform4iv, NULL, 529),
- NAME_FUNC_OFFSET(24174, glUniformMatrix2fv, glUniformMatrix2fv, NULL, 530),
- NAME_FUNC_OFFSET(24196, glUniformMatrix3fv, glUniformMatrix3fv, NULL, 531),
- NAME_FUNC_OFFSET(24218, glUniformMatrix4fv, glUniformMatrix4fv, NULL, 532),
- NAME_FUNC_OFFSET(24240, glUseProgram, glUseProgram, NULL, 533),
- NAME_FUNC_OFFSET(24262, glValidateProgram, glValidateProgram, NULL, 534),
- NAME_FUNC_OFFSET(24283, glVertexAttrib1d, glVertexAttrib1d, NULL, 535),
- NAME_FUNC_OFFSET(24303, glVertexAttrib1dv, glVertexAttrib1dv, NULL, 536),
- NAME_FUNC_OFFSET(24324, glVertexAttrib1s, glVertexAttrib1s, NULL, 537),
- NAME_FUNC_OFFSET(24344, glVertexAttrib1sv, glVertexAttrib1sv, NULL, 538),
- NAME_FUNC_OFFSET(24365, glVertexAttrib2d, glVertexAttrib2d, NULL, 539),
- NAME_FUNC_OFFSET(24385, glVertexAttrib2dv, glVertexAttrib2dv, NULL, 540),
- NAME_FUNC_OFFSET(24406, glVertexAttrib2s, glVertexAttrib2s, NULL, 541),
- NAME_FUNC_OFFSET(24426, glVertexAttrib2sv, glVertexAttrib2sv, NULL, 542),
- NAME_FUNC_OFFSET(24447, glVertexAttrib3d, glVertexAttrib3d, NULL, 543),
- NAME_FUNC_OFFSET(24467, glVertexAttrib3dv, glVertexAttrib3dv, NULL, 544),
- NAME_FUNC_OFFSET(24488, glVertexAttrib3s, glVertexAttrib3s, NULL, 545),
- NAME_FUNC_OFFSET(24508, glVertexAttrib3sv, glVertexAttrib3sv, NULL, 546),
- NAME_FUNC_OFFSET(24529, glVertexAttrib4Nbv, glVertexAttrib4Nbv, NULL, 547),
- NAME_FUNC_OFFSET(24551, glVertexAttrib4Niv, glVertexAttrib4Niv, NULL, 548),
- NAME_FUNC_OFFSET(24573, glVertexAttrib4Nsv, glVertexAttrib4Nsv, NULL, 549),
- NAME_FUNC_OFFSET(24595, glVertexAttrib4Nub, glVertexAttrib4Nub, NULL, 550),
- NAME_FUNC_OFFSET(24617, glVertexAttrib4Nubv, glVertexAttrib4Nubv, NULL, 551),
- NAME_FUNC_OFFSET(24640, glVertexAttrib4Nuiv, glVertexAttrib4Nuiv, NULL, 552),
- NAME_FUNC_OFFSET(24663, glVertexAttrib4Nusv, glVertexAttrib4Nusv, NULL, 553),
- NAME_FUNC_OFFSET(24686, glVertexAttrib4bv, glVertexAttrib4bv, NULL, 554),
- NAME_FUNC_OFFSET(24707, glVertexAttrib4d, glVertexAttrib4d, NULL, 555),
- NAME_FUNC_OFFSET(24727, glVertexAttrib4dv, glVertexAttrib4dv, NULL, 556),
- NAME_FUNC_OFFSET(24748, glVertexAttrib4iv, glVertexAttrib4iv, NULL, 557),
- NAME_FUNC_OFFSET(24769, glVertexAttrib4s, glVertexAttrib4s, NULL, 558),
- NAME_FUNC_OFFSET(24789, glVertexAttrib4sv, glVertexAttrib4sv, NULL, 559),
- NAME_FUNC_OFFSET(24810, glVertexAttrib4ubv, glVertexAttrib4ubv, NULL, 560),
- NAME_FUNC_OFFSET(24832, glVertexAttrib4uiv, glVertexAttrib4uiv, NULL, 561),
- NAME_FUNC_OFFSET(24854, glVertexAttrib4usv, glVertexAttrib4usv, NULL, 562),
- NAME_FUNC_OFFSET(24876, glVertexAttribPointer, glVertexAttribPointer, NULL, 563),
- NAME_FUNC_OFFSET(24901, glBeginConditionalRender, glBeginConditionalRender, NULL, 570),
- NAME_FUNC_OFFSET(24928, glBeginTransformFeedback, glBeginTransformFeedback, NULL, 571),
- NAME_FUNC_OFFSET(24956, glBindBufferBase, glBindBufferBase, NULL, 572),
- NAME_FUNC_OFFSET(24976, glBindBufferRange, glBindBufferRange, NULL, 573),
- NAME_FUNC_OFFSET(24997, glBindFragDataLocation, glBindFragDataLocation, NULL, 574),
- NAME_FUNC_OFFSET(25023, glClampColor, glClampColor, NULL, 575),
- NAME_FUNC_OFFSET(25039, glColorMaski, glColorMaski, NULL, 580),
- NAME_FUNC_OFFSET(25061, glDisablei, glDisablei, NULL, 581),
- NAME_FUNC_OFFSET(25081, glEnablei, glEnablei, NULL, 582),
- NAME_FUNC_OFFSET(25100, glEndConditionalRender, glEndConditionalRender, NULL, 583),
- NAME_FUNC_OFFSET(25125, glEndTransformFeedback, glEndTransformFeedback, NULL, 584),
- NAME_FUNC_OFFSET(25151, glGetBooleani_v, glGetBooleani_v, NULL, 585),
- NAME_FUNC_OFFSET(25175, glGetFragDataLocation, glGetFragDataLocation, NULL, 586),
- NAME_FUNC_OFFSET(25200, glGetIntegeri_v, glGetIntegeri_v, NULL, 587),
- NAME_FUNC_OFFSET(25224, glGetTexParameterIiv, glGetTexParameterIiv, NULL, 589),
- NAME_FUNC_OFFSET(25248, glGetTexParameterIuiv, glGetTexParameterIuiv, NULL, 590),
- NAME_FUNC_OFFSET(25273, glGetTransformFeedbackVarying, glGetTransformFeedbackVarying, NULL, 591),
- NAME_FUNC_OFFSET(25306, glGetUniformuiv, glGetUniformuiv, NULL, 592),
- NAME_FUNC_OFFSET(25325, glGetVertexAttribIiv, glGetVertexAttribIiv, NULL, 593),
- NAME_FUNC_OFFSET(25349, glGetVertexAttribIuiv, glGetVertexAttribIuiv, NULL, 594),
- NAME_FUNC_OFFSET(25374, glIsEnabledi, glIsEnabledi, NULL, 595),
- NAME_FUNC_OFFSET(25396, glTexParameterIiv, glTexParameterIiv, NULL, 596),
- NAME_FUNC_OFFSET(25417, glTexParameterIuiv, glTexParameterIuiv, NULL, 597),
- NAME_FUNC_OFFSET(25439, glTransformFeedbackVaryings, glTransformFeedbackVaryings, NULL, 598),
- NAME_FUNC_OFFSET(25470, glUniform1ui, glUniform1ui, NULL, 599),
- NAME_FUNC_OFFSET(25486, glUniform1uiv, glUniform1uiv, NULL, 600),
- NAME_FUNC_OFFSET(25503, glUniform2ui, glUniform2ui, NULL, 601),
- NAME_FUNC_OFFSET(25519, glUniform2uiv, glUniform2uiv, NULL, 602),
- NAME_FUNC_OFFSET(25536, glUniform3ui, glUniform3ui, NULL, 603),
- NAME_FUNC_OFFSET(25552, glUniform3uiv, glUniform3uiv, NULL, 604),
- NAME_FUNC_OFFSET(25569, glUniform4ui, glUniform4ui, NULL, 605),
- NAME_FUNC_OFFSET(25585, glUniform4uiv, glUniform4uiv, NULL, 606),
- NAME_FUNC_OFFSET(25602, glVertexAttribI1iv, glVertexAttribI1iv, NULL, 607),
- NAME_FUNC_OFFSET(25624, glVertexAttribI1uiv, glVertexAttribI1uiv, NULL, 608),
- NAME_FUNC_OFFSET(25647, glVertexAttribI4bv, glVertexAttribI4bv, NULL, 609),
- NAME_FUNC_OFFSET(25669, glVertexAttribI4sv, glVertexAttribI4sv, NULL, 610),
- NAME_FUNC_OFFSET(25691, glVertexAttribI4ubv, glVertexAttribI4ubv, NULL, 611),
- NAME_FUNC_OFFSET(25714, glVertexAttribI4usv, glVertexAttribI4usv, NULL, 612),
- NAME_FUNC_OFFSET(25737, glVertexAttribIPointer, glVertexAttribIPointer, NULL, 613),
- NAME_FUNC_OFFSET(25763, glPrimitiveRestartIndex, glPrimitiveRestartIndex, NULL, 614),
- NAME_FUNC_OFFSET(25789, glTexBuffer, glTexBuffer, NULL, 615),
- NAME_FUNC_OFFSET(25804, glFramebufferTexture, glFramebufferTexture, NULL, 616),
- NAME_FUNC_OFFSET(25828, glVertexAttribDivisor, glVertexAttribDivisor, NULL, 619),
- NAME_FUNC_OFFSET(25853, glMinSampleShading, glMinSampleShading, NULL, 620),
- NAME_FUNC_OFFSET(25875, glBindProgramARB, glBindProgramARB, NULL, 621),
- NAME_FUNC_OFFSET(25891, glDeleteProgramsARB, glDeleteProgramsARB, NULL, 622),
- NAME_FUNC_OFFSET(25910, glGenProgramsARB, glGenProgramsARB, NULL, 623),
- NAME_FUNC_OFFSET(25926, glIsProgramARB, glIsProgramARB, NULL, 630),
- NAME_FUNC_OFFSET(25940, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 631),
- NAME_FUNC_OFFSET(25963, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 632),
- NAME_FUNC_OFFSET(25987, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 633),
- NAME_FUNC_OFFSET(26010, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 634),
- NAME_FUNC_OFFSET(26034, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 640),
- NAME_FUNC_OFFSET(26051, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 641),
- NAME_FUNC_OFFSET(26069, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 642),
- NAME_FUNC_OFFSET(26086, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 643),
- NAME_FUNC_OFFSET(26104, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 644),
- NAME_FUNC_OFFSET(26121, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 645),
- NAME_FUNC_OFFSET(26139, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 646),
- NAME_FUNC_OFFSET(26156, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 647),
- NAME_FUNC_OFFSET(26174, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
- NAME_FUNC_OFFSET(26199, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
- NAME_FUNC_OFFSET(26221, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
- NAME_FUNC_OFFSET(26248, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
- NAME_FUNC_OFFSET(26272, glBindFramebuffer, glBindFramebuffer, NULL, 660),
- NAME_FUNC_OFFSET(26293, glBindRenderbuffer, glBindRenderbuffer, NULL, 661),
- NAME_FUNC_OFFSET(26315, glBlitFramebuffer, glBlitFramebuffer, NULL, 662),
- NAME_FUNC_OFFSET(26336, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
- NAME_FUNC_OFFSET(26364, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
- NAME_FUNC_OFFSET(26392, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
- NAME_FUNC_OFFSET(26416, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
- NAME_FUNC_OFFSET(26440, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
- NAME_FUNC_OFFSET(26465, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
- NAME_FUNC_OFFSET(26490, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
- NAME_FUNC_OFFSET(26519, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
- NAME_FUNC_OFFSET(26548, glFramebufferTexture1D, glFramebufferTexture1D, NULL, 667),
- NAME_FUNC_OFFSET(26574, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
- NAME_FUNC_OFFSET(26600, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
- NAME_FUNC_OFFSET(26626, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
- NAME_FUNC_OFFSET(26652, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
- NAME_FUNC_OFFSET(26678, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
- NAME_FUNC_OFFSET(26707, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
- NAME_FUNC_OFFSET(26736, glGenFramebuffers, glGenFramebuffers, NULL, 671),
- NAME_FUNC_OFFSET(26757, glGenFramebuffers, glGenFramebuffers, NULL, 671),
- NAME_FUNC_OFFSET(26778, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
- NAME_FUNC_OFFSET(26800, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
- NAME_FUNC_OFFSET(26822, glGenerateMipmap, glGenerateMipmap, NULL, 673),
- NAME_FUNC_OFFSET(26842, glGenerateMipmap, glGenerateMipmap, NULL, 673),
- NAME_FUNC_OFFSET(26862, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
- NAME_FUNC_OFFSET(26903, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
- NAME_FUNC_OFFSET(26944, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
- NAME_FUNC_OFFSET(26976, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
- NAME_FUNC_OFFSET(27008, glIsFramebuffer, glIsFramebuffer, NULL, 676),
- NAME_FUNC_OFFSET(27027, glIsFramebuffer, glIsFramebuffer, NULL, 676),
- NAME_FUNC_OFFSET(27046, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
- NAME_FUNC_OFFSET(27066, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
- NAME_FUNC_OFFSET(27086, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
- NAME_FUNC_OFFSET(27111, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
- NAME_FUNC_OFFSET(27136, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 679),
- NAME_FUNC_OFFSET(27172, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 681),
- NAME_FUNC_OFFSET(27200, glMapBufferRange, glMapBufferRange, NULL, 682),
- NAME_FUNC_OFFSET(27220, glBindVertexArray, glBindVertexArray, NULL, 683),
- NAME_FUNC_OFFSET(27241, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
- NAME_FUNC_OFFSET(27267, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
- NAME_FUNC_OFFSET(27291, glGenVertexArrays, glGenVertexArrays, NULL, 685),
- NAME_FUNC_OFFSET(27312, glIsVertexArray, glIsVertexArray, NULL, 686),
- NAME_FUNC_OFFSET(27333, glIsVertexArray, glIsVertexArray, NULL, 686),
- NAME_FUNC_OFFSET(27352, glProvokingVertex, glProvokingVertex, NULL, 706),
- NAME_FUNC_OFFSET(27373, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 711),
- NAME_FUNC_OFFSET(27407, glBlendEquationiARB, glBlendEquationiARB, NULL, 712),
- NAME_FUNC_OFFSET(27433, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 713),
- NAME_FUNC_OFFSET(27463, glBlendFunciARB, glBlendFunciARB, NULL, 714),
- NAME_FUNC_OFFSET(27485, gl_dispatch_stub_731, gl_dispatch_stub_731, NULL, 731),
- NAME_FUNC_OFFSET(27509, gl_dispatch_stub_732, gl_dispatch_stub_732, NULL, 732),
- NAME_FUNC_OFFSET(27534, glClearDepthf, glClearDepthf, NULL, 785),
- NAME_FUNC_OFFSET(27551, glDepthRangef, glDepthRangef, NULL, 786),
- NAME_FUNC_OFFSET(27568, glGetProgramBinary, glGetProgramBinary, NULL, 790),
- NAME_FUNC_OFFSET(27590, glProgramBinary, glProgramBinary, NULL, 791),
- NAME_FUNC_OFFSET(27609, glProgramParameteri, glProgramParameteri, NULL, 792),
- NAME_FUNC_OFFSET(27632, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873),
- NAME_FUNC_OFFSET(27648, gl_dispatch_stub_874, gl_dispatch_stub_874, NULL, 874),
- NAME_FUNC_OFFSET(27667, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 894),
- NAME_FUNC_OFFSET(27686, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 895),
- NAME_FUNC_OFFSET(27706, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 896),
- NAME_FUNC_OFFSET(27726, glFogCoordfEXT, glFogCoordfEXT, NULL, 897),
- NAME_FUNC_OFFSET(27738, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 898),
- NAME_FUNC_OFFSET(27751, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 1001),
- NAME_FUNC_OFFSET(27769, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 1002),
- NAME_FUNC_OFFSET(27788, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 1003),
- NAME_FUNC_OFFSET(27806, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 1004),
- NAME_FUNC_OFFSET(27825, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 1005),
- NAME_FUNC_OFFSET(27844, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 1006),
- NAME_FUNC_OFFSET(27864, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 1007),
- NAME_FUNC_OFFSET(27882, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 1008),
- NAME_FUNC_OFFSET(27901, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 1009),
- NAME_FUNC_OFFSET(27920, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 1010),
- NAME_FUNC_OFFSET(27940, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 1011),
- NAME_FUNC_OFFSET(27958, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 1012),
- NAME_FUNC_OFFSET(27977, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 1013),
- NAME_FUNC_OFFSET(27996, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 1014),
- NAME_FUNC_OFFSET(28016, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
- NAME_FUNC_OFFSET(28032, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
- NAME_FUNC_OFFSET(28049, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
- NAME_FUNC_OFFSET(28066, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
- NAME_FUNC_OFFSET(28079, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
- NAME_FUNC_OFFSET(28096, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
- NAME_FUNC_OFFSET(28106, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
- NAME_FUNC_OFFSET(28117, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
- NAME_FUNC_OFFSET(28131, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
- NAME_FUNC_OFFSET(28145, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
- NAME_FUNC_OFFSET(28162, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
- NAME_FUNC_OFFSET(28180, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
- NAME_FUNC_OFFSET(28192, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
- NAME_FUNC_OFFSET(28205, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
- NAME_FUNC_OFFSET(28221, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
- NAME_FUNC_OFFSET(28238, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
- NAME_FUNC_OFFSET(28253, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
- NAME_FUNC_OFFSET(28269, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
- NAME_FUNC_OFFSET(28286, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
- NAME_FUNC_OFFSET(28307, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
- NAME_FUNC_OFFSET(28321, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
- NAME_FUNC_OFFSET(28333, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
- NAME_FUNC_OFFSET(28345, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
- NAME_FUNC_OFFSET(28361, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
- NAME_FUNC_OFFSET(28381, gl_dispatch_stub_1075, gl_dispatch_stub_1075, NULL, 1075),
- NAME_FUNC_OFFSET(28394, gl_dispatch_stub_1076, gl_dispatch_stub_1076, NULL, 1076),
- NAME_FUNC_OFFSET(28415, gl_dispatch_stub_1077, gl_dispatch_stub_1077, NULL, 1077),
- NAME_FUNC_OFFSET(28427, gl_dispatch_stub_1078, gl_dispatch_stub_1078, NULL, 1078),
- NAME_FUNC_OFFSET(28440, gl_dispatch_stub_1079, gl_dispatch_stub_1079, NULL, 1079),
- NAME_FUNC_OFFSET(28454, gl_dispatch_stub_1080, gl_dispatch_stub_1080, NULL, 1080),
- NAME_FUNC_OFFSET(28473, gl_dispatch_stub_1081, gl_dispatch_stub_1081, NULL, 1081),
- NAME_FUNC_OFFSET(28489, gl_dispatch_stub_1082, gl_dispatch_stub_1082, NULL, 1082),
- NAME_FUNC_OFFSET(28505, gl_dispatch_stub_1083, gl_dispatch_stub_1083, NULL, 1083),
- NAME_FUNC_OFFSET(28521, gl_dispatch_stub_1084, gl_dispatch_stub_1084, NULL, 1084),
- NAME_FUNC_OFFSET(28540, gl_dispatch_stub_1085, gl_dispatch_stub_1085, NULL, 1085),
- NAME_FUNC_OFFSET(28559, gl_dispatch_stub_1086, gl_dispatch_stub_1086, NULL, 1086),
- NAME_FUNC_OFFSET(28574, gl_dispatch_stub_1087, gl_dispatch_stub_1087, NULL, 1087),
- NAME_FUNC_OFFSET(28590, gl_dispatch_stub_1088, gl_dispatch_stub_1088, NULL, 1088),
- NAME_FUNC_OFFSET(28609, gl_dispatch_stub_1089, gl_dispatch_stub_1089, NULL, 1089),
- NAME_FUNC_OFFSET(28626, gl_dispatch_stub_1090, gl_dispatch_stub_1090, NULL, 1090),
- NAME_FUNC_OFFSET(28649, gl_dispatch_stub_1091, gl_dispatch_stub_1091, NULL, 1091),
+ NAME_FUNC_OFFSET(21999, glPointParameterfv, glPointParameterfv, NULL, 426),
+ NAME_FUNC_OFFSET(22021, glPointParameterfv, glPointParameterfv, NULL, 426),
+ NAME_FUNC_OFFSET(22044, glPointParameteri, glPointParameteri, NULL, 427),
+ NAME_FUNC_OFFSET(22064, glPointParameteriv, glPointParameteriv, NULL, 428),
+ NAME_FUNC_OFFSET(22085, glSecondaryColor3b, glSecondaryColor3b, NULL, 429),
+ NAME_FUNC_OFFSET(22107, glSecondaryColor3bv, glSecondaryColor3bv, NULL, 430),
+ NAME_FUNC_OFFSET(22130, glSecondaryColor3d, glSecondaryColor3d, NULL, 431),
+ NAME_FUNC_OFFSET(22152, glSecondaryColor3dv, glSecondaryColor3dv, NULL, 432),
+ NAME_FUNC_OFFSET(22175, glSecondaryColor3i, glSecondaryColor3i, NULL, 433),
+ NAME_FUNC_OFFSET(22197, glSecondaryColor3iv, glSecondaryColor3iv, NULL, 434),
+ NAME_FUNC_OFFSET(22220, glSecondaryColor3s, glSecondaryColor3s, NULL, 435),
+ NAME_FUNC_OFFSET(22242, glSecondaryColor3sv, glSecondaryColor3sv, NULL, 436),
+ NAME_FUNC_OFFSET(22265, glSecondaryColor3ub, glSecondaryColor3ub, NULL, 437),
+ NAME_FUNC_OFFSET(22288, glSecondaryColor3ubv, glSecondaryColor3ubv, NULL, 438),
+ NAME_FUNC_OFFSET(22312, glSecondaryColor3ui, glSecondaryColor3ui, NULL, 439),
+ NAME_FUNC_OFFSET(22335, glSecondaryColor3uiv, glSecondaryColor3uiv, NULL, 440),
+ NAME_FUNC_OFFSET(22359, glSecondaryColor3us, glSecondaryColor3us, NULL, 441),
+ NAME_FUNC_OFFSET(22382, glSecondaryColor3usv, glSecondaryColor3usv, NULL, 442),
+ NAME_FUNC_OFFSET(22406, glSecondaryColorPointer, glSecondaryColorPointer, NULL, 443),
+ NAME_FUNC_OFFSET(22433, glWindowPos2d, glWindowPos2d, NULL, 444),
+ NAME_FUNC_OFFSET(22450, glWindowPos2d, glWindowPos2d, NULL, 444),
+ NAME_FUNC_OFFSET(22468, glWindowPos2dv, glWindowPos2dv, NULL, 445),
+ NAME_FUNC_OFFSET(22486, glWindowPos2dv, glWindowPos2dv, NULL, 445),
+ NAME_FUNC_OFFSET(22505, glWindowPos2f, glWindowPos2f, NULL, 446),
+ NAME_FUNC_OFFSET(22522, glWindowPos2f, glWindowPos2f, NULL, 446),
+ NAME_FUNC_OFFSET(22540, glWindowPos2fv, glWindowPos2fv, NULL, 447),
+ NAME_FUNC_OFFSET(22558, glWindowPos2fv, glWindowPos2fv, NULL, 447),
+ NAME_FUNC_OFFSET(22577, glWindowPos2i, glWindowPos2i, NULL, 448),
+ NAME_FUNC_OFFSET(22594, glWindowPos2i, glWindowPos2i, NULL, 448),
+ NAME_FUNC_OFFSET(22612, glWindowPos2iv, glWindowPos2iv, NULL, 449),
+ NAME_FUNC_OFFSET(22630, glWindowPos2iv, glWindowPos2iv, NULL, 449),
+ NAME_FUNC_OFFSET(22649, glWindowPos2s, glWindowPos2s, NULL, 450),
+ NAME_FUNC_OFFSET(22666, glWindowPos2s, glWindowPos2s, NULL, 450),
+ NAME_FUNC_OFFSET(22684, glWindowPos2sv, glWindowPos2sv, NULL, 451),
+ NAME_FUNC_OFFSET(22702, glWindowPos2sv, glWindowPos2sv, NULL, 451),
+ NAME_FUNC_OFFSET(22721, glWindowPos3d, glWindowPos3d, NULL, 452),
+ NAME_FUNC_OFFSET(22738, glWindowPos3d, glWindowPos3d, NULL, 452),
+ NAME_FUNC_OFFSET(22756, glWindowPos3dv, glWindowPos3dv, NULL, 453),
+ NAME_FUNC_OFFSET(22774, glWindowPos3dv, glWindowPos3dv, NULL, 453),
+ NAME_FUNC_OFFSET(22793, glWindowPos3f, glWindowPos3f, NULL, 454),
+ NAME_FUNC_OFFSET(22810, glWindowPos3f, glWindowPos3f, NULL, 454),
+ NAME_FUNC_OFFSET(22828, glWindowPos3fv, glWindowPos3fv, NULL, 455),
+ NAME_FUNC_OFFSET(22846, glWindowPos3fv, glWindowPos3fv, NULL, 455),
+ NAME_FUNC_OFFSET(22865, glWindowPos3i, glWindowPos3i, NULL, 456),
+ NAME_FUNC_OFFSET(22882, glWindowPos3i, glWindowPos3i, NULL, 456),
+ NAME_FUNC_OFFSET(22900, glWindowPos3iv, glWindowPos3iv, NULL, 457),
+ NAME_FUNC_OFFSET(22918, glWindowPos3iv, glWindowPos3iv, NULL, 457),
+ NAME_FUNC_OFFSET(22937, glWindowPos3s, glWindowPos3s, NULL, 458),
+ NAME_FUNC_OFFSET(22954, glWindowPos3s, glWindowPos3s, NULL, 458),
+ NAME_FUNC_OFFSET(22972, glWindowPos3sv, glWindowPos3sv, NULL, 459),
+ NAME_FUNC_OFFSET(22990, glWindowPos3sv, glWindowPos3sv, NULL, 459),
+ NAME_FUNC_OFFSET(23009, glBeginQuery, glBeginQuery, NULL, 460),
+ NAME_FUNC_OFFSET(23025, glBindBuffer, glBindBuffer, NULL, 461),
+ NAME_FUNC_OFFSET(23041, glBufferData, glBufferData, NULL, 462),
+ NAME_FUNC_OFFSET(23057, glBufferSubData, glBufferSubData, NULL, 463),
+ NAME_FUNC_OFFSET(23076, glDeleteBuffers, glDeleteBuffers, NULL, 464),
+ NAME_FUNC_OFFSET(23095, glDeleteQueries, glDeleteQueries, NULL, 465),
+ NAME_FUNC_OFFSET(23114, glEndQuery, glEndQuery, NULL, 466),
+ NAME_FUNC_OFFSET(23128, glGenBuffers, glGenBuffers, NULL, 467),
+ NAME_FUNC_OFFSET(23144, glGenQueries, glGenQueries, NULL, 468),
+ NAME_FUNC_OFFSET(23160, glGetBufferParameteriv, glGetBufferParameteriv, NULL, 469),
+ NAME_FUNC_OFFSET(23186, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
+ NAME_FUNC_OFFSET(23209, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
+ NAME_FUNC_OFFSET(23232, glGetBufferSubData, glGetBufferSubData, NULL, 471),
+ NAME_FUNC_OFFSET(23254, glGetQueryObjectiv, glGetQueryObjectiv, NULL, 472),
+ NAME_FUNC_OFFSET(23276, glGetQueryObjectuiv, glGetQueryObjectuiv, NULL, 473),
+ NAME_FUNC_OFFSET(23299, glGetQueryiv, glGetQueryiv, NULL, 474),
+ NAME_FUNC_OFFSET(23315, glIsBuffer, glIsBuffer, NULL, 475),
+ NAME_FUNC_OFFSET(23329, glIsQuery, glIsQuery, NULL, 476),
+ NAME_FUNC_OFFSET(23342, glMapBuffer, glMapBuffer, NULL, 477),
+ NAME_FUNC_OFFSET(23357, glMapBuffer, glMapBuffer, NULL, 477),
+ NAME_FUNC_OFFSET(23372, glUnmapBuffer, glUnmapBuffer, NULL, 478),
+ NAME_FUNC_OFFSET(23389, glUnmapBuffer, glUnmapBuffer, NULL, 478),
+ NAME_FUNC_OFFSET(23406, glBindAttribLocation, glBindAttribLocation, NULL, 480),
+ NAME_FUNC_OFFSET(23430, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
+ NAME_FUNC_OFFSET(23457, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
+ NAME_FUNC_OFFSET(23484, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
+ NAME_FUNC_OFFSET(23511, glCompileShader, glCompileShader, NULL, 482),
+ NAME_FUNC_OFFSET(23530, glDisableVertexAttribArray, glDisableVertexAttribArray, NULL, 488),
+ NAME_FUNC_OFFSET(23560, glDrawBuffers, glDrawBuffers, NULL, 489),
+ NAME_FUNC_OFFSET(23577, glDrawBuffers, glDrawBuffers, NULL, 489),
+ NAME_FUNC_OFFSET(23594, glDrawBuffers, glDrawBuffers, NULL, 489),
+ NAME_FUNC_OFFSET(23610, glEnableVertexAttribArray, glEnableVertexAttribArray, NULL, 490),
+ NAME_FUNC_OFFSET(23639, glGetActiveAttrib, glGetActiveAttrib, NULL, 491),
+ NAME_FUNC_OFFSET(23660, glGetActiveUniform, glGetActiveUniform, NULL, 492),
+ NAME_FUNC_OFFSET(23682, glGetAttribLocation, glGetAttribLocation, NULL, 494),
+ NAME_FUNC_OFFSET(23705, glGetShaderSource, glGetShaderSource, NULL, 498),
+ NAME_FUNC_OFFSET(23726, glGetUniformLocation, glGetUniformLocation, NULL, 500),
+ NAME_FUNC_OFFSET(23750, glGetUniformfv, glGetUniformfv, NULL, 501),
+ NAME_FUNC_OFFSET(23768, glGetUniformiv, glGetUniformiv, NULL, 502),
+ NAME_FUNC_OFFSET(23786, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
+ NAME_FUNC_OFFSET(23815, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
+ NAME_FUNC_OFFSET(23843, glGetVertexAttribdv, glGetVertexAttribdv, NULL, 504),
+ NAME_FUNC_OFFSET(23866, glGetVertexAttribfv, glGetVertexAttribfv, NULL, 505),
+ NAME_FUNC_OFFSET(23889, glGetVertexAttribiv, glGetVertexAttribiv, NULL, 506),
+ NAME_FUNC_OFFSET(23912, glLinkProgram, glLinkProgram, NULL, 509),
+ NAME_FUNC_OFFSET(23929, glShaderSource, glShaderSource, NULL, 510),
+ NAME_FUNC_OFFSET(23947, glStencilOpSeparate, glStencilOpSeparate, NULL, 513),
+ NAME_FUNC_OFFSET(23970, glUniform1f, glUniform1f, NULL, 514),
+ NAME_FUNC_OFFSET(23985, glUniform1fv, glUniform1fv, NULL, 515),
+ NAME_FUNC_OFFSET(24001, glUniform1i, glUniform1i, NULL, 516),
+ NAME_FUNC_OFFSET(24016, glUniform1iv, glUniform1iv, NULL, 517),
+ NAME_FUNC_OFFSET(24032, glUniform2f, glUniform2f, NULL, 518),
+ NAME_FUNC_OFFSET(24047, glUniform2fv, glUniform2fv, NULL, 519),
+ NAME_FUNC_OFFSET(24063, glUniform2i, glUniform2i, NULL, 520),
+ NAME_FUNC_OFFSET(24078, glUniform2iv, glUniform2iv, NULL, 521),
+ NAME_FUNC_OFFSET(24094, glUniform3f, glUniform3f, NULL, 522),
+ NAME_FUNC_OFFSET(24109, glUniform3fv, glUniform3fv, NULL, 523),
+ NAME_FUNC_OFFSET(24125, glUniform3i, glUniform3i, NULL, 524),
+ NAME_FUNC_OFFSET(24140, glUniform3iv, glUniform3iv, NULL, 525),
+ NAME_FUNC_OFFSET(24156, glUniform4f, glUniform4f, NULL, 526),
+ NAME_FUNC_OFFSET(24171, glUniform4fv, glUniform4fv, NULL, 527),
+ NAME_FUNC_OFFSET(24187, glUniform4i, glUniform4i, NULL, 528),
+ NAME_FUNC_OFFSET(24202, glUniform4iv, glUniform4iv, NULL, 529),
+ NAME_FUNC_OFFSET(24218, glUniformMatrix2fv, glUniformMatrix2fv, NULL, 530),
+ NAME_FUNC_OFFSET(24240, glUniformMatrix3fv, glUniformMatrix3fv, NULL, 531),
+ NAME_FUNC_OFFSET(24262, glUniformMatrix4fv, glUniformMatrix4fv, NULL, 532),
+ NAME_FUNC_OFFSET(24284, glUseProgram, glUseProgram, NULL, 533),
+ NAME_FUNC_OFFSET(24306, glValidateProgram, glValidateProgram, NULL, 534),
+ NAME_FUNC_OFFSET(24327, glVertexAttrib1d, glVertexAttrib1d, NULL, 535),
+ NAME_FUNC_OFFSET(24347, glVertexAttrib1dv, glVertexAttrib1dv, NULL, 536),
+ NAME_FUNC_OFFSET(24368, glVertexAttrib1s, glVertexAttrib1s, NULL, 537),
+ NAME_FUNC_OFFSET(24388, glVertexAttrib1sv, glVertexAttrib1sv, NULL, 538),
+ NAME_FUNC_OFFSET(24409, glVertexAttrib2d, glVertexAttrib2d, NULL, 539),
+ NAME_FUNC_OFFSET(24429, glVertexAttrib2dv, glVertexAttrib2dv, NULL, 540),
+ NAME_FUNC_OFFSET(24450, glVertexAttrib2s, glVertexAttrib2s, NULL, 541),
+ NAME_FUNC_OFFSET(24470, glVertexAttrib2sv, glVertexAttrib2sv, NULL, 542),
+ NAME_FUNC_OFFSET(24491, glVertexAttrib3d, glVertexAttrib3d, NULL, 543),
+ NAME_FUNC_OFFSET(24511, glVertexAttrib3dv, glVertexAttrib3dv, NULL, 544),
+ NAME_FUNC_OFFSET(24532, glVertexAttrib3s, glVertexAttrib3s, NULL, 545),
+ NAME_FUNC_OFFSET(24552, glVertexAttrib3sv, glVertexAttrib3sv, NULL, 546),
+ NAME_FUNC_OFFSET(24573, glVertexAttrib4Nbv, glVertexAttrib4Nbv, NULL, 547),
+ NAME_FUNC_OFFSET(24595, glVertexAttrib4Niv, glVertexAttrib4Niv, NULL, 548),
+ NAME_FUNC_OFFSET(24617, glVertexAttrib4Nsv, glVertexAttrib4Nsv, NULL, 549),
+ NAME_FUNC_OFFSET(24639, glVertexAttrib4Nub, glVertexAttrib4Nub, NULL, 550),
+ NAME_FUNC_OFFSET(24661, glVertexAttrib4Nubv, glVertexAttrib4Nubv, NULL, 551),
+ NAME_FUNC_OFFSET(24684, glVertexAttrib4Nuiv, glVertexAttrib4Nuiv, NULL, 552),
+ NAME_FUNC_OFFSET(24707, glVertexAttrib4Nusv, glVertexAttrib4Nusv, NULL, 553),
+ NAME_FUNC_OFFSET(24730, glVertexAttrib4bv, glVertexAttrib4bv, NULL, 554),
+ NAME_FUNC_OFFSET(24751, glVertexAttrib4d, glVertexAttrib4d, NULL, 555),
+ NAME_FUNC_OFFSET(24771, glVertexAttrib4dv, glVertexAttrib4dv, NULL, 556),
+ NAME_FUNC_OFFSET(24792, glVertexAttrib4iv, glVertexAttrib4iv, NULL, 557),
+ NAME_FUNC_OFFSET(24813, glVertexAttrib4s, glVertexAttrib4s, NULL, 558),
+ NAME_FUNC_OFFSET(24833, glVertexAttrib4sv, glVertexAttrib4sv, NULL, 559),
+ NAME_FUNC_OFFSET(24854, glVertexAttrib4ubv, glVertexAttrib4ubv, NULL, 560),
+ NAME_FUNC_OFFSET(24876, glVertexAttrib4uiv, glVertexAttrib4uiv, NULL, 561),
+ NAME_FUNC_OFFSET(24898, glVertexAttrib4usv, glVertexAttrib4usv, NULL, 562),
+ NAME_FUNC_OFFSET(24920, glVertexAttribPointer, glVertexAttribPointer, NULL, 563),
+ NAME_FUNC_OFFSET(24945, glBeginConditionalRender, glBeginConditionalRender, NULL, 570),
+ NAME_FUNC_OFFSET(24972, glBeginTransformFeedback, glBeginTransformFeedback, NULL, 571),
+ NAME_FUNC_OFFSET(25000, glBindBufferBase, glBindBufferBase, NULL, 572),
+ NAME_FUNC_OFFSET(25020, glBindBufferRange, glBindBufferRange, NULL, 573),
+ NAME_FUNC_OFFSET(25041, glBindFragDataLocation, glBindFragDataLocation, NULL, 574),
+ NAME_FUNC_OFFSET(25067, glClampColor, glClampColor, NULL, 575),
+ NAME_FUNC_OFFSET(25083, glColorMaski, glColorMaski, NULL, 580),
+ NAME_FUNC_OFFSET(25105, glDisablei, glDisablei, NULL, 581),
+ NAME_FUNC_OFFSET(25125, glEnablei, glEnablei, NULL, 582),
+ NAME_FUNC_OFFSET(25144, glEndConditionalRender, glEndConditionalRender, NULL, 583),
+ NAME_FUNC_OFFSET(25169, glEndTransformFeedback, glEndTransformFeedback, NULL, 584),
+ NAME_FUNC_OFFSET(25195, glGetBooleani_v, glGetBooleani_v, NULL, 585),
+ NAME_FUNC_OFFSET(25219, glGetFragDataLocation, glGetFragDataLocation, NULL, 586),
+ NAME_FUNC_OFFSET(25244, glGetIntegeri_v, glGetIntegeri_v, NULL, 587),
+ NAME_FUNC_OFFSET(25268, glGetTexParameterIiv, glGetTexParameterIiv, NULL, 589),
+ NAME_FUNC_OFFSET(25292, glGetTexParameterIuiv, glGetTexParameterIuiv, NULL, 590),
+ NAME_FUNC_OFFSET(25317, glGetTransformFeedbackVarying, glGetTransformFeedbackVarying, NULL, 591),
+ NAME_FUNC_OFFSET(25350, glGetUniformuiv, glGetUniformuiv, NULL, 592),
+ NAME_FUNC_OFFSET(25369, glGetVertexAttribIiv, glGetVertexAttribIiv, NULL, 593),
+ NAME_FUNC_OFFSET(25393, glGetVertexAttribIuiv, glGetVertexAttribIuiv, NULL, 594),
+ NAME_FUNC_OFFSET(25418, glIsEnabledi, glIsEnabledi, NULL, 595),
+ NAME_FUNC_OFFSET(25440, glTexParameterIiv, glTexParameterIiv, NULL, 596),
+ NAME_FUNC_OFFSET(25461, glTexParameterIuiv, glTexParameterIuiv, NULL, 597),
+ NAME_FUNC_OFFSET(25483, glTransformFeedbackVaryings, glTransformFeedbackVaryings, NULL, 598),
+ NAME_FUNC_OFFSET(25514, glUniform1ui, glUniform1ui, NULL, 599),
+ NAME_FUNC_OFFSET(25530, glUniform1uiv, glUniform1uiv, NULL, 600),
+ NAME_FUNC_OFFSET(25547, glUniform2ui, glUniform2ui, NULL, 601),
+ NAME_FUNC_OFFSET(25563, glUniform2uiv, glUniform2uiv, NULL, 602),
+ NAME_FUNC_OFFSET(25580, glUniform3ui, glUniform3ui, NULL, 603),
+ NAME_FUNC_OFFSET(25596, glUniform3uiv, glUniform3uiv, NULL, 604),
+ NAME_FUNC_OFFSET(25613, glUniform4ui, glUniform4ui, NULL, 605),
+ NAME_FUNC_OFFSET(25629, glUniform4uiv, glUniform4uiv, NULL, 606),
+ NAME_FUNC_OFFSET(25646, glVertexAttribI1iv, glVertexAttribI1iv, NULL, 607),
+ NAME_FUNC_OFFSET(25668, glVertexAttribI1uiv, glVertexAttribI1uiv, NULL, 608),
+ NAME_FUNC_OFFSET(25691, glVertexAttribI4bv, glVertexAttribI4bv, NULL, 609),
+ NAME_FUNC_OFFSET(25713, glVertexAttribI4sv, glVertexAttribI4sv, NULL, 610),
+ NAME_FUNC_OFFSET(25735, glVertexAttribI4ubv, glVertexAttribI4ubv, NULL, 611),
+ NAME_FUNC_OFFSET(25758, glVertexAttribI4usv, glVertexAttribI4usv, NULL, 612),
+ NAME_FUNC_OFFSET(25781, glVertexAttribIPointer, glVertexAttribIPointer, NULL, 613),
+ NAME_FUNC_OFFSET(25807, glPrimitiveRestartIndex, glPrimitiveRestartIndex, NULL, 614),
+ NAME_FUNC_OFFSET(25833, glTexBuffer, glTexBuffer, NULL, 615),
+ NAME_FUNC_OFFSET(25848, glFramebufferTexture, glFramebufferTexture, NULL, 616),
+ NAME_FUNC_OFFSET(25872, glVertexAttribDivisor, glVertexAttribDivisor, NULL, 619),
+ NAME_FUNC_OFFSET(25897, glMinSampleShading, glMinSampleShading, NULL, 620),
+ NAME_FUNC_OFFSET(25919, glBindProgramARB, glBindProgramARB, NULL, 621),
+ NAME_FUNC_OFFSET(25935, glDeleteProgramsARB, glDeleteProgramsARB, NULL, 622),
+ NAME_FUNC_OFFSET(25954, glGenProgramsARB, glGenProgramsARB, NULL, 623),
+ NAME_FUNC_OFFSET(25970, glIsProgramARB, glIsProgramARB, NULL, 630),
+ NAME_FUNC_OFFSET(25984, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 631),
+ NAME_FUNC_OFFSET(26007, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 632),
+ NAME_FUNC_OFFSET(26031, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 633),
+ NAME_FUNC_OFFSET(26054, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 634),
+ NAME_FUNC_OFFSET(26078, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 640),
+ NAME_FUNC_OFFSET(26095, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 641),
+ NAME_FUNC_OFFSET(26113, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 642),
+ NAME_FUNC_OFFSET(26130, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 643),
+ NAME_FUNC_OFFSET(26148, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 644),
+ NAME_FUNC_OFFSET(26165, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 645),
+ NAME_FUNC_OFFSET(26183, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 646),
+ NAME_FUNC_OFFSET(26200, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 647),
+ NAME_FUNC_OFFSET(26218, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
+ NAME_FUNC_OFFSET(26243, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
+ NAME_FUNC_OFFSET(26265, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
+ NAME_FUNC_OFFSET(26292, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
+ NAME_FUNC_OFFSET(26316, glBindFramebuffer, glBindFramebuffer, NULL, 660),
+ NAME_FUNC_OFFSET(26337, glBindRenderbuffer, glBindRenderbuffer, NULL, 661),
+ NAME_FUNC_OFFSET(26359, glBlitFramebuffer, glBlitFramebuffer, NULL, 662),
+ NAME_FUNC_OFFSET(26380, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
+ NAME_FUNC_OFFSET(26408, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
+ NAME_FUNC_OFFSET(26436, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
+ NAME_FUNC_OFFSET(26460, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
+ NAME_FUNC_OFFSET(26484, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
+ NAME_FUNC_OFFSET(26509, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
+ NAME_FUNC_OFFSET(26534, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
+ NAME_FUNC_OFFSET(26563, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
+ NAME_FUNC_OFFSET(26592, glFramebufferTexture1D, glFramebufferTexture1D, NULL, 667),
+ NAME_FUNC_OFFSET(26618, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
+ NAME_FUNC_OFFSET(26644, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
+ NAME_FUNC_OFFSET(26670, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
+ NAME_FUNC_OFFSET(26696, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
+ NAME_FUNC_OFFSET(26722, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
+ NAME_FUNC_OFFSET(26751, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
+ NAME_FUNC_OFFSET(26780, glGenFramebuffers, glGenFramebuffers, NULL, 671),
+ NAME_FUNC_OFFSET(26801, glGenFramebuffers, glGenFramebuffers, NULL, 671),
+ NAME_FUNC_OFFSET(26822, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
+ NAME_FUNC_OFFSET(26844, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
+ NAME_FUNC_OFFSET(26866, glGenerateMipmap, glGenerateMipmap, NULL, 673),
+ NAME_FUNC_OFFSET(26886, glGenerateMipmap, glGenerateMipmap, NULL, 673),
+ NAME_FUNC_OFFSET(26906, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
+ NAME_FUNC_OFFSET(26947, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
+ NAME_FUNC_OFFSET(26988, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
+ NAME_FUNC_OFFSET(27020, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
+ NAME_FUNC_OFFSET(27052, glIsFramebuffer, glIsFramebuffer, NULL, 676),
+ NAME_FUNC_OFFSET(27071, glIsFramebuffer, glIsFramebuffer, NULL, 676),
+ NAME_FUNC_OFFSET(27090, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
+ NAME_FUNC_OFFSET(27110, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
+ NAME_FUNC_OFFSET(27130, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
+ NAME_FUNC_OFFSET(27155, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
+ NAME_FUNC_OFFSET(27180, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 679),
+ NAME_FUNC_OFFSET(27216, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 681),
+ NAME_FUNC_OFFSET(27244, glMapBufferRange, glMapBufferRange, NULL, 682),
+ NAME_FUNC_OFFSET(27264, glBindVertexArray, glBindVertexArray, NULL, 683),
+ NAME_FUNC_OFFSET(27285, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
+ NAME_FUNC_OFFSET(27311, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
+ NAME_FUNC_OFFSET(27335, glGenVertexArrays, glGenVertexArrays, NULL, 685),
+ NAME_FUNC_OFFSET(27356, glIsVertexArray, glIsVertexArray, NULL, 686),
+ NAME_FUNC_OFFSET(27377, glIsVertexArray, glIsVertexArray, NULL, 686),
+ NAME_FUNC_OFFSET(27396, glProvokingVertex, glProvokingVertex, NULL, 706),
+ NAME_FUNC_OFFSET(27417, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 711),
+ NAME_FUNC_OFFSET(27451, glBlendEquationiARB, glBlendEquationiARB, NULL, 712),
+ NAME_FUNC_OFFSET(27477, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 713),
+ NAME_FUNC_OFFSET(27507, glBlendFunciARB, glBlendFunciARB, NULL, 714),
+ NAME_FUNC_OFFSET(27529, gl_dispatch_stub_731, gl_dispatch_stub_731, NULL, 731),
+ NAME_FUNC_OFFSET(27553, gl_dispatch_stub_732, gl_dispatch_stub_732, NULL, 732),
+ NAME_FUNC_OFFSET(27578, glClearDepthf, glClearDepthf, NULL, 785),
+ NAME_FUNC_OFFSET(27595, glDepthRangef, glDepthRangef, NULL, 786),
+ NAME_FUNC_OFFSET(27612, glGetProgramBinary, glGetProgramBinary, NULL, 790),
+ NAME_FUNC_OFFSET(27634, glProgramBinary, glProgramBinary, NULL, 791),
+ NAME_FUNC_OFFSET(27653, glProgramParameteri, glProgramParameteri, NULL, 792),
+ NAME_FUNC_OFFSET(27676, gl_dispatch_stub_875, gl_dispatch_stub_875, NULL, 875),
+ NAME_FUNC_OFFSET(27692, gl_dispatch_stub_876, gl_dispatch_stub_876, NULL, 876),
+ NAME_FUNC_OFFSET(27711, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 896),
+ NAME_FUNC_OFFSET(27730, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 897),
+ NAME_FUNC_OFFSET(27750, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 898),
+ NAME_FUNC_OFFSET(27770, glFogCoordfEXT, glFogCoordfEXT, NULL, 899),
+ NAME_FUNC_OFFSET(27782, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 900),
+ NAME_FUNC_OFFSET(27795, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 1003),
+ NAME_FUNC_OFFSET(27813, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 1004),
+ NAME_FUNC_OFFSET(27832, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 1005),
+ NAME_FUNC_OFFSET(27850, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 1006),
+ NAME_FUNC_OFFSET(27869, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 1007),
+ NAME_FUNC_OFFSET(27888, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 1008),
+ NAME_FUNC_OFFSET(27908, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 1009),
+ NAME_FUNC_OFFSET(27926, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 1010),
+ NAME_FUNC_OFFSET(27945, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 1011),
+ NAME_FUNC_OFFSET(27964, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 1012),
+ NAME_FUNC_OFFSET(27984, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 1013),
+ NAME_FUNC_OFFSET(28002, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 1014),
+ NAME_FUNC_OFFSET(28021, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 1015),
+ NAME_FUNC_OFFSET(28040, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 1016),
+ NAME_FUNC_OFFSET(28060, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
+ NAME_FUNC_OFFSET(28076, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
+ NAME_FUNC_OFFSET(28093, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
+ NAME_FUNC_OFFSET(28110, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
+ NAME_FUNC_OFFSET(28123, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
+ NAME_FUNC_OFFSET(28140, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
+ NAME_FUNC_OFFSET(28150, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
+ NAME_FUNC_OFFSET(28161, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
+ NAME_FUNC_OFFSET(28175, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
+ NAME_FUNC_OFFSET(28189, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
+ NAME_FUNC_OFFSET(28206, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
+ NAME_FUNC_OFFSET(28224, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
+ NAME_FUNC_OFFSET(28236, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
+ NAME_FUNC_OFFSET(28249, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
+ NAME_FUNC_OFFSET(28265, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
+ NAME_FUNC_OFFSET(28282, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
+ NAME_FUNC_OFFSET(28297, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
+ NAME_FUNC_OFFSET(28313, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
+ NAME_FUNC_OFFSET(28330, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
+ NAME_FUNC_OFFSET(28351, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
+ NAME_FUNC_OFFSET(28365, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
+ NAME_FUNC_OFFSET(28377, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
+ NAME_FUNC_OFFSET(28389, gl_dispatch_stub_1075, gl_dispatch_stub_1075, NULL, 1075),
+ NAME_FUNC_OFFSET(28405, gl_dispatch_stub_1076, gl_dispatch_stub_1076, NULL, 1076),
+ NAME_FUNC_OFFSET(28425, gl_dispatch_stub_1077, gl_dispatch_stub_1077, NULL, 1077),
+ NAME_FUNC_OFFSET(28438, gl_dispatch_stub_1078, gl_dispatch_stub_1078, NULL, 1078),
+ NAME_FUNC_OFFSET(28459, gl_dispatch_stub_1079, gl_dispatch_stub_1079, NULL, 1079),
+ NAME_FUNC_OFFSET(28471, gl_dispatch_stub_1080, gl_dispatch_stub_1080, NULL, 1080),
+ NAME_FUNC_OFFSET(28484, gl_dispatch_stub_1081, gl_dispatch_stub_1081, NULL, 1081),
+ NAME_FUNC_OFFSET(28498, gl_dispatch_stub_1082, gl_dispatch_stub_1082, NULL, 1082),
+ NAME_FUNC_OFFSET(28517, gl_dispatch_stub_1083, gl_dispatch_stub_1083, NULL, 1083),
+ NAME_FUNC_OFFSET(28533, gl_dispatch_stub_1084, gl_dispatch_stub_1084, NULL, 1084),
+ NAME_FUNC_OFFSET(28549, gl_dispatch_stub_1085, gl_dispatch_stub_1085, NULL, 1085),
+ NAME_FUNC_OFFSET(28565, gl_dispatch_stub_1086, gl_dispatch_stub_1086, NULL, 1086),
+ NAME_FUNC_OFFSET(28584, gl_dispatch_stub_1087, gl_dispatch_stub_1087, NULL, 1087),
+ NAME_FUNC_OFFSET(28603, gl_dispatch_stub_1088, gl_dispatch_stub_1088, NULL, 1088),
+ NAME_FUNC_OFFSET(28618, gl_dispatch_stub_1089, gl_dispatch_stub_1089, NULL, 1089),
+ NAME_FUNC_OFFSET(28634, gl_dispatch_stub_1090, gl_dispatch_stub_1090, NULL, 1090),
+ NAME_FUNC_OFFSET(28653, gl_dispatch_stub_1091, gl_dispatch_stub_1091, NULL, 1091),
NAME_FUNC_OFFSET(28670, gl_dispatch_stub_1092, gl_dispatch_stub_1092, NULL, 1092),
- NAME_FUNC_OFFSET(28692, gl_dispatch_stub_1093, gl_dispatch_stub_1093, NULL, 1093),
+ NAME_FUNC_OFFSET(28693, gl_dispatch_stub_1093, gl_dispatch_stub_1093, NULL, 1093),
+ NAME_FUNC_OFFSET(28714, gl_dispatch_stub_1094, gl_dispatch_stub_1094, NULL, 1094),
+ NAME_FUNC_OFFSET(28736, gl_dispatch_stub_1095, gl_dispatch_stub_1095, NULL, 1095),
NAME_FUNC_OFFSET(-1, NULL, NULL, NULL, 0)
};
diff --git a/xorg-server/glx/indirect_dispatch.h b/xorg-server/glx/indirect_dispatch.h
index fde5c8d31..432fb9704 100644
--- a/xorg-server/glx/indirect_dispatch.h
+++ b/xorg-server/glx/indirect_dispatch.h
@@ -204,8 +204,6 @@ extern _X_HIDDEN void __glXDisp_VertexAttribs3dvNV(GLbyte * pc);
extern _X_HIDDEN void __glXDispSwap_VertexAttribs3dvNV(GLbyte * pc);
extern _X_HIDDEN void __glXDisp_LightModeli(GLbyte * pc);
extern _X_HIDDEN void __glXDispSwap_LightModeli(GLbyte * pc);
-extern _X_HIDDEN void __glXDisp_VertexAttribs4fvNV(GLbyte * pc);
-extern _X_HIDDEN void __glXDispSwap_VertexAttribs4fvNV(GLbyte * pc);
extern _X_HIDDEN void __glXDisp_Scaled(GLbyte * pc);
extern _X_HIDDEN void __glXDispSwap_Scaled(GLbyte * pc);
extern _X_HIDDEN void __glXDisp_CallLists(GLbyte * pc);
@@ -816,6 +814,8 @@ extern _X_HIDDEN int __glXDisp_GetProgramStringNV(struct __GLXclientStateRec *,
extern _X_HIDDEN int __glXDispSwap_GetProgramStringNV(struct __GLXclientStateRec *, GLbyte *);
extern _X_HIDDEN void __glXDisp_LineWidth(GLbyte * pc);
extern _X_HIDDEN void __glXDispSwap_LineWidth(GLbyte * pc);
+extern _X_HIDDEN void __glXDisp_VertexAttribs4fvNV(GLbyte * pc);
+extern _X_HIDDEN void __glXDispSwap_VertexAttribs4fvNV(GLbyte * pc);
extern _X_HIDDEN void __glXDisp_TexGendv(GLbyte * pc);
extern _X_HIDDEN void __glXDispSwap_TexGendv(GLbyte * pc);
extern _X_HIDDEN void __glXDisp_ResetMinmax(GLbyte * pc);
diff --git a/xorg-server/glx/remap_helper.h b/xorg-server/glx/remap_helper.h
index 2aed91d7d..9c2c68cc8 100644
--- a/xorg-server/glx/remap_helper.h
+++ b/xorg-server/glx/remap_helper.h
@@ -4117,1685 +4117,1693 @@ static const char _mesa_function_pool[] =
"glSeparableFilter2D\0"
"glSeparableFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[29087]: GetQueryObjectuiv (will be remapped) */
+ /* _mesa_function_pool[29087]: DispatchComputeIndirect (will be remapped) */
+ "i\0"
+ "glDispatchComputeIndirect\0"
+ "\0"
+ /* _mesa_function_pool[29116]: GetQueryObjectuiv (will be remapped) */
"iip\0"
"glGetQueryObjectuiv\0"
"glGetQueryObjectuivARB\0"
"\0"
- /* _mesa_function_pool[29135]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[29164]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[29180]: Map1d (offset 220) */
+ /* _mesa_function_pool[29209]: Map1d (offset 220) */
"iddiip\0"
"glMap1d\0"
"\0"
- /* _mesa_function_pool[29196]: Map1f (offset 221) */
+ /* _mesa_function_pool[29225]: Map1f (offset 221) */
"iffiip\0"
"glMap1f\0"
"\0"
- /* _mesa_function_pool[29212]: FlushRasterSGIX (dynamic) */
+ /* _mesa_function_pool[29241]: FlushRasterSGIX (dynamic) */
"\0"
"glFlushRasterSGIX\0"
"\0"
- /* _mesa_function_pool[29232]: ArrayElement (offset 306) */
+ /* _mesa_function_pool[29261]: ArrayElement (offset 306) */
"i\0"
"glArrayElement\0"
"glArrayElementEXT\0"
"\0"
- /* _mesa_function_pool[29268]: TexImage2D (offset 183) */
+ /* _mesa_function_pool[29297]: TexImage2D (offset 183) */
"iiiiiiiip\0"
"glTexImage2D\0"
"\0"
- /* _mesa_function_pool[29292]: DepthBoundsEXT (will be remapped) */
+ /* _mesa_function_pool[29321]: DepthBoundsEXT (will be remapped) */
"dd\0"
"glDepthBoundsEXT\0"
"\0"
- /* _mesa_function_pool[29313]: GetProgramivNV (will be remapped) */
+ /* _mesa_function_pool[29342]: GetProgramivNV (will be remapped) */
"iip\0"
"glGetProgramivNV\0"
"\0"
- /* _mesa_function_pool[29335]: GetMinmaxParameteriv (offset 366) */
+ /* _mesa_function_pool[29364]: GetMinmaxParameteriv (offset 366) */
"iip\0"
"glGetMinmaxParameteriv\0"
"glGetMinmaxParameterivEXT\0"
"\0"
- /* _mesa_function_pool[29389]: PixelTransferf (offset 247) */
+ /* _mesa_function_pool[29418]: PixelTransferf (offset 247) */
"if\0"
"glPixelTransferf\0"
"\0"
- /* _mesa_function_pool[29410]: CopyTexImage1D (offset 323) */
+ /* _mesa_function_pool[29439]: CopyTexImage1D (offset 323) */
"iiiiiii\0"
"glCopyTexImage1D\0"
"glCopyTexImage1DEXT\0"
"\0"
- /* _mesa_function_pool[29456]: PushMatrix (offset 298) */
+ /* _mesa_function_pool[29485]: PushMatrix (offset 298) */
"\0"
"glPushMatrix\0"
"\0"
- /* _mesa_function_pool[29471]: Fogiv (offset 156) */
+ /* _mesa_function_pool[29500]: Fogiv (offset 156) */
"ip\0"
"glFogiv\0"
"\0"
- /* _mesa_function_pool[29483]: EndQuery (will be remapped) */
+ /* _mesa_function_pool[29512]: EndQuery (will be remapped) */
"i\0"
"glEndQuery\0"
"glEndQueryARB\0"
"\0"
- /* _mesa_function_pool[29511]: TexCoord1dv (offset 95) */
+ /* _mesa_function_pool[29540]: TexCoord1dv (offset 95) */
"p\0"
"glTexCoord1dv\0"
"\0"
- /* _mesa_function_pool[29528]: AlphaFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[29557]: AlphaFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiii\0"
"glAlphaFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[29564]: PixelTransferi (offset 248) */
+ /* _mesa_function_pool[29593]: PixelTransferi (offset 248) */
"ii\0"
"glPixelTransferi\0"
"\0"
- /* _mesa_function_pool[29585]: GetnColorTableARB (will be remapped) */
+ /* _mesa_function_pool[29614]: GetnColorTableARB (will be remapped) */
"iiiip\0"
"glGetnColorTableARB\0"
"\0"
- /* _mesa_function_pool[29612]: VertexAttrib3fvNV (will be remapped) */
+ /* _mesa_function_pool[29641]: VertexAttrib3fvNV (will be remapped) */
"ip\0"
"glVertexAttrib3fvNV\0"
"\0"
- /* _mesa_function_pool[29636]: Rotatef (offset 300) */
+ /* _mesa_function_pool[29665]: Rotatef (offset 300) */
"ffff\0"
"glRotatef\0"
"\0"
- /* _mesa_function_pool[29652]: GetFinalCombinerInputParameterivNV (dynamic) */
+ /* _mesa_function_pool[29681]: GetFinalCombinerInputParameterivNV (dynamic) */
"iip\0"
"glGetFinalCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[29694]: Vertex3i (offset 138) */
+ /* _mesa_function_pool[29723]: Vertex3i (offset 138) */
"iii\0"
"glVertex3i\0"
"\0"
- /* _mesa_function_pool[29710]: GetTexEnvxv (will be remapped) */
+ /* _mesa_function_pool[29739]: GetTexEnvxv (will be remapped) */
"iip\0"
"glGetTexEnvxvOES\0"
"glGetTexEnvxv\0"
"\0"
- /* _mesa_function_pool[29746]: SecondaryColorP3ui (will be remapped) */
+ /* _mesa_function_pool[29775]: SecondaryColorP3ui (will be remapped) */
"ii\0"
"glSecondaryColorP3ui\0"
"\0"
- /* _mesa_function_pool[29771]: Vertex3f (offset 136) */
+ /* _mesa_function_pool[29800]: Vertex3f (offset 136) */
"fff\0"
"glVertex3f\0"
"\0"
- /* _mesa_function_pool[29787]: Clear (offset 203) */
+ /* _mesa_function_pool[29816]: Clear (offset 203) */
"i\0"
"glClear\0"
"\0"
- /* _mesa_function_pool[29798]: Vertex3d (offset 134) */
+ /* _mesa_function_pool[29827]: Vertex3d (offset 134) */
"ddd\0"
"glVertex3d\0"
"\0"
- /* _mesa_function_pool[29814]: GetMapParameterivNV (dynamic) */
+ /* _mesa_function_pool[29843]: GetMapParameterivNV (dynamic) */
"iip\0"
"glGetMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[29841]: IndexMaterialEXT (dynamic) */
+ /* _mesa_function_pool[29870]: IndexMaterialEXT (dynamic) */
"ii\0"
"glIndexMaterialEXT\0"
"\0"
- /* _mesa_function_pool[29864]: Disablei (will be remapped) */
+ /* _mesa_function_pool[29893]: Disablei (will be remapped) */
"ii\0"
"glDisableIndexedEXT\0"
"glDisablei\0"
"\0"
- /* _mesa_function_pool[29899]: ReadBuffer (offset 254) */
+ /* _mesa_function_pool[29928]: ReadBuffer (offset 254) */
"i\0"
"glReadBuffer\0"
"glReadBufferNV\0"
"\0"
- /* _mesa_function_pool[29930]: ConvolutionParameteri (offset 352) */
+ /* _mesa_function_pool[29959]: ConvolutionParameteri (offset 352) */
"iii\0"
"glConvolutionParameteri\0"
"glConvolutionParameteriEXT\0"
"\0"
- /* _mesa_function_pool[29986]: VertexAttrib4sv (will be remapped) */
+ /* _mesa_function_pool[30015]: VertexAttrib4sv (will be remapped) */
"ip\0"
"glVertexAttrib4sv\0"
"glVertexAttrib4svARB\0"
"\0"
- /* _mesa_function_pool[30029]: Ortho (offset 296) */
+ /* _mesa_function_pool[30058]: Ortho (offset 296) */
"dddddd\0"
"glOrtho\0"
"\0"
- /* _mesa_function_pool[30045]: Binormal3sEXT (dynamic) */
+ /* _mesa_function_pool[30074]: Binormal3sEXT (dynamic) */
"iii\0"
"glBinormal3sEXT\0"
"\0"
- /* _mesa_function_pool[30066]: VDPAUUnmapSurfacesNV (will be remapped) */
+ /* _mesa_function_pool[30095]: VDPAUUnmapSurfacesNV (will be remapped) */
"ip\0"
"glVDPAUUnmapSurfacesNV\0"
"\0"
- /* _mesa_function_pool[30093]: ListBase (offset 6) */
+ /* _mesa_function_pool[30122]: ListBase (offset 6) */
"i\0"
"glListBase\0"
"\0"
- /* _mesa_function_pool[30107]: GetTexParameterIiv (will be remapped) */
+ /* _mesa_function_pool[30136]: GetTexParameterIiv (will be remapped) */
"iip\0"
"glGetTexParameterIivEXT\0"
"glGetTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[30157]: Tangent3sEXT (dynamic) */
+ /* _mesa_function_pool[30186]: Tangent3sEXT (dynamic) */
"iii\0"
"glTangent3sEXT\0"
"\0"
- /* _mesa_function_pool[30177]: Vertex3s (offset 140) */
+ /* _mesa_function_pool[30206]: Vertex3s (offset 140) */
"iii\0"
"glVertex3s\0"
"\0"
- /* _mesa_function_pool[30193]: ConvolutionParameterf (offset 350) */
+ /* _mesa_function_pool[30222]: ConvolutionParameterf (offset 350) */
"iif\0"
"glConvolutionParameterf\0"
"glConvolutionParameterfEXT\0"
"\0"
- /* _mesa_function_pool[30249]: GetColorTableParameteriv (offset 345) */
+ /* _mesa_function_pool[30278]: GetColorTableParameteriv (offset 345) */
"iip\0"
"glGetColorTableParameteriv\0"
"glGetColorTableParameterivSGI\0"
"glGetColorTableParameterivEXT\0"
"\0"
- /* _mesa_function_pool[30341]: ProgramEnvParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[30370]: ProgramEnvParameter4dvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4dvARB\0"
"glProgramParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[30398]: ShadeModel (offset 177) */
+ /* _mesa_function_pool[30427]: ShadeModel (offset 177) */
"i\0"
"glShadeModel\0"
"\0"
- /* _mesa_function_pool[30414]: Uniform3uiv (will be remapped) */
+ /* _mesa_function_pool[30443]: Uniform3uiv (will be remapped) */
"iip\0"
"glUniform3uivEXT\0"
"glUniform3uiv\0"
"\0"
- /* _mesa_function_pool[30450]: GenerateMipmap (will be remapped) */
+ /* _mesa_function_pool[30479]: GenerateMipmap (will be remapped) */
"i\0"
"glGenerateMipmap\0"
"glGenerateMipmapEXT\0"
"glGenerateMipmapOES\0"
"\0"
- /* _mesa_function_pool[30510]: Rectiv (offset 91) */
+ /* _mesa_function_pool[30539]: Rectiv (offset 91) */
"pp\0"
"glRectiv\0"
"\0"
- /* _mesa_function_pool[30523]: TexImage3DMultisample (will be remapped) */
+ /* _mesa_function_pool[30552]: TexImage3DMultisample (will be remapped) */
"iiiiiii\0"
"glTexImage3DMultisample\0"
"\0"
- /* _mesa_function_pool[30556]: MatrixIndexPointerARB (dynamic) */
+ /* _mesa_function_pool[30585]: MatrixIndexPointerARB (dynamic) */
"iiip\0"
"glMatrixIndexPointerARB\0"
"glMatrixIndexPointerOES\0"
"\0"
- /* _mesa_function_pool[30610]: GetMapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[30639]: GetMapParameterfvNV (dynamic) */
"iip\0"
"glGetMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[30637]: MultiTexCoord1iv (offset 381) */
+ /* _mesa_function_pool[30666]: MultiTexCoord1iv (offset 381) */
"ip\0"
"glMultiTexCoord1iv\0"
"glMultiTexCoord1ivARB\0"
"\0"
- /* _mesa_function_pool[30682]: PassTexCoordATI (will be remapped) */
+ /* _mesa_function_pool[30711]: PassTexCoordATI (will be remapped) */
"iii\0"
"glPassTexCoordATI\0"
"\0"
- /* _mesa_function_pool[30705]: DeleteProgram (will be remapped) */
+ /* _mesa_function_pool[30734]: DeleteProgram (will be remapped) */
"i\0"
"glDeleteProgram\0"
"\0"
- /* _mesa_function_pool[30724]: GetSamplerParameteriv (will be remapped) */
+ /* _mesa_function_pool[30753]: GetSamplerParameteriv (will be remapped) */
"iip\0"
"glGetSamplerParameteriv\0"
"\0"
- /* _mesa_function_pool[30753]: BindBufferRange (will be remapped) */
+ /* _mesa_function_pool[30782]: BindBufferRange (will be remapped) */
"iiiii\0"
"glBindBufferRange\0"
"glBindBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[30799]: Tangent3dEXT (dynamic) */
+ /* _mesa_function_pool[30828]: Tangent3dEXT (dynamic) */
"ddd\0"
"glTangent3dEXT\0"
"\0"
- /* _mesa_function_pool[30819]: TexParameterxv (will be remapped) */
+ /* _mesa_function_pool[30848]: TexParameterxv (will be remapped) */
"iip\0"
"glTexParameterxvOES\0"
"glTexParameterxv\0"
"\0"
- /* _mesa_function_pool[30861]: BlendEquationSeparateiARB (will be remapped) */
+ /* _mesa_function_pool[30890]: BlendEquationSeparateiARB (will be remapped) */
"iii\0"
"glBlendEquationSeparateiARB\0"
"glBlendEquationSeparateIndexedAMD\0"
"\0"
- /* _mesa_function_pool[30928]: AlphaFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[30957]: AlphaFragmentOp2ATI (will be remapped) */
"iiiiiiiii\0"
"glAlphaFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[30961]: Vertex2fv (offset 129) */
+ /* _mesa_function_pool[30990]: Vertex2fv (offset 129) */
"p\0"
"glVertex2fv\0"
"\0"
- /* _mesa_function_pool[30976]: SampleMaskSGIS (will be remapped) */
+ /* _mesa_function_pool[31005]: SampleMaskSGIS (will be remapped) */
"fi\0"
"glSampleMaskSGIS\0"
"glSampleMaskEXT\0"
"\0"
- /* _mesa_function_pool[31013]: BindRenderbufferEXT (will be remapped) */
+ /* _mesa_function_pool[31042]: BindRenderbufferEXT (will be remapped) */
"ii\0"
"glBindRenderbufferEXT\0"
"\0"
- /* _mesa_function_pool[31039]: VertexAttrib1fNV (will be remapped) */
+ /* _mesa_function_pool[31068]: VertexAttrib1fNV (will be remapped) */
"if\0"
"glVertexAttrib1fNV\0"
"\0"
- /* _mesa_function_pool[31062]: Rotatex (will be remapped) */
+ /* _mesa_function_pool[31091]: Rotatex (will be remapped) */
"iiii\0"
"glRotatexOES\0"
"glRotatex\0"
"\0"
- /* _mesa_function_pool[31091]: FramebufferTextureFaceARB (will be remapped) */
+ /* _mesa_function_pool[31120]: FramebufferTextureFaceARB (will be remapped) */
"iiiii\0"
"glFramebufferTextureFaceARB\0"
"\0"
- /* _mesa_function_pool[31126]: Vertex3sv (offset 141) */
+ /* _mesa_function_pool[31155]: Vertex3sv (offset 141) */
"p\0"
"glVertex3sv\0"
"\0"
- /* _mesa_function_pool[31141]: GetQueryObjectiv (will be remapped) */
+ /* _mesa_function_pool[31170]: GetQueryObjectiv (will be remapped) */
"iip\0"
"glGetQueryObjectiv\0"
"glGetQueryObjectivARB\0"
"\0"
- /* _mesa_function_pool[31187]: VertexAttrib2s (will be remapped) */
+ /* _mesa_function_pool[31216]: VertexAttrib2s (will be remapped) */
"iii\0"
"glVertexAttrib2s\0"
"glVertexAttrib2sARB\0"
"\0"
- /* _mesa_function_pool[31229]: VertexWeightfEXT (dynamic) */
+ /* _mesa_function_pool[31258]: VertexWeightfEXT (dynamic) */
"f\0"
"glVertexWeightfEXT\0"
"\0"
- /* _mesa_function_pool[31251]: ProgramLocalParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[31280]: ProgramLocalParameter4fvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4fvARB\0"
"\0"
- /* _mesa_function_pool[31286]: EvalMesh1 (offset 236) */
+ /* _mesa_function_pool[31315]: EvalMesh1 (offset 236) */
"iii\0"
"glEvalMesh1\0"
"\0"
- /* _mesa_function_pool[31303]: ObjectLabel (will be remapped) */
+ /* _mesa_function_pool[31332]: ObjectLabel (will be remapped) */
"iiip\0"
"glObjectLabel\0"
"\0"
- /* _mesa_function_pool[31323]: PauseTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[31352]: PauseTransformFeedback (will be remapped) */
"\0"
"glPauseTransformFeedback\0"
"\0"
- /* _mesa_function_pool[31350]: DeleteShader (will be remapped) */
+ /* _mesa_function_pool[31379]: DeleteShader (will be remapped) */
"i\0"
"glDeleteShader\0"
"\0"
- /* _mesa_function_pool[31368]: BindImageTexture (will be remapped) */
+ /* _mesa_function_pool[31397]: BindImageTexture (will be remapped) */
"iiiiiii\0"
"glBindImageTexture\0"
"\0"
- /* _mesa_function_pool[31396]: Uniform2f (will be remapped) */
+ /* _mesa_function_pool[31425]: Uniform2f (will be remapped) */
"iff\0"
"glUniform2f\0"
"glUniform2fARB\0"
"\0"
- /* _mesa_function_pool[31428]: VertexAttrib2d (will be remapped) */
+ /* _mesa_function_pool[31457]: VertexAttrib2d (will be remapped) */
"idd\0"
"glVertexAttrib2d\0"
"glVertexAttrib2dARB\0"
"\0"
- /* _mesa_function_pool[31470]: CompressedTexSubImage3D (will be remapped) */
+ /* _mesa_function_pool[31499]: CompressedTexSubImage3D (will be remapped) */
"iiiiiiiiiip\0"
"glCompressedTexSubImage3D\0"
"glCompressedTexSubImage3DARB\0"
"glCompressedTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[31567]: Vertex2iv (offset 131) */
+ /* _mesa_function_pool[31596]: Vertex2iv (offset 131) */
"p\0"
"glVertex2iv\0"
"\0"
- /* _mesa_function_pool[31582]: GetProgramStringNV (will be remapped) */
+ /* _mesa_function_pool[31611]: GetProgramStringNV (will be remapped) */
"iip\0"
"glGetProgramStringNV\0"
"\0"
- /* _mesa_function_pool[31608]: VertexAttribP3uiv (will be remapped) */
+ /* _mesa_function_pool[31637]: VertexAttribP3uiv (will be remapped) */
"iiip\0"
"glVertexAttribP3uiv\0"
"\0"
- /* _mesa_function_pool[31634]: LineWidth (offset 168) */
+ /* _mesa_function_pool[31663]: LineWidth (offset 168) */
"f\0"
"glLineWidth\0"
"\0"
- /* _mesa_function_pool[31649]: GetActiveAtomicCounterBufferiv (will be remapped) */
+ /* _mesa_function_pool[31678]: GetActiveAtomicCounterBufferiv (will be remapped) */
"iiip\0"
"glGetActiveAtomicCounterBufferiv\0"
"\0"
- /* _mesa_function_pool[31688]: Uniform2i (will be remapped) */
+ /* _mesa_function_pool[31717]: Uniform2i (will be remapped) */
"iii\0"
"glUniform2i\0"
"glUniform2iARB\0"
"\0"
- /* _mesa_function_pool[31720]: MultiDrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[31749]: MultiDrawElementsBaseVertex (will be remapped) */
"ipipip\0"
"glMultiDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[31758]: FogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[31787]: FogFuncSGIS (dynamic) */
"ip\0"
"glFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[31776]: GenPerfMonitorsAMD (will be remapped) */
+ /* _mesa_function_pool[31805]: GenPerfMonitorsAMD (will be remapped) */
"ip\0"
"glGenPerfMonitorsAMD\0"
"\0"
- /* _mesa_function_pool[31801]: Binormal3svEXT (dynamic) */
+ /* _mesa_function_pool[31830]: Binormal3svEXT (dynamic) */
"p\0"
"glBinormal3svEXT\0"
"\0"
- /* _mesa_function_pool[31821]: GetBufferParameteri64v (will be remapped) */
+ /* _mesa_function_pool[31850]: GetBufferParameteri64v (will be remapped) */
"iip\0"
"glGetBufferParameteri64v\0"
"\0"
- /* _mesa_function_pool[31851]: TexGendv (offset 189) */
+ /* _mesa_function_pool[31880]: TexGendv (offset 189) */
"iip\0"
"glTexGendv\0"
"\0"
- /* _mesa_function_pool[31867]: Uniform1fv (will be remapped) */
+ /* _mesa_function_pool[31896]: Uniform1fv (will be remapped) */
"iip\0"
"glUniform1fv\0"
"glUniform1fvARB\0"
"\0"
- /* _mesa_function_pool[31901]: DepthRangeIndexed (will be remapped) */
+ /* _mesa_function_pool[31930]: DepthRangeIndexed (will be remapped) */
"idd\0"
"glDepthRangeIndexed\0"
"\0"
- /* _mesa_function_pool[31926]: LightModelx (will be remapped) */
+ /* _mesa_function_pool[31955]: LightModelx (will be remapped) */
"ii\0"
"glLightModelxOES\0"
"glLightModelx\0"
"\0"
- /* _mesa_function_pool[31961]: VertexAttribI3iEXT (will be remapped) */
+ /* _mesa_function_pool[31990]: VertexAttribI3iEXT (will be remapped) */
"iiii\0"
"glVertexAttribI3iEXT\0"
"glVertexAttribI3i\0"
"\0"
- /* _mesa_function_pool[32006]: EndConditionalRender (will be remapped) */
+ /* _mesa_function_pool[32035]: EndConditionalRender (will be remapped) */
"\0"
"glEndConditionalRender\0"
"glEndConditionalRenderNV\0"
"\0"
- /* _mesa_function_pool[32056]: GetBufferPointerv (will be remapped) */
+ /* _mesa_function_pool[32085]: GetBufferPointerv (will be remapped) */
"iip\0"
"glGetBufferPointerv\0"
"glGetBufferPointervARB\0"
"glGetBufferPointervOES\0"
"\0"
- /* _mesa_function_pool[32127]: TextureLightEXT (dynamic) */
+ /* _mesa_function_pool[32156]: TextureLightEXT (dynamic) */
"i\0"
"glTextureLightEXT\0"
"\0"
- /* _mesa_function_pool[32148]: ResetMinmax (offset 370) */
+ /* _mesa_function_pool[32177]: ResetMinmax (offset 370) */
"i\0"
"glResetMinmax\0"
"glResetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[32182]: SpriteParameterfSGIX (dynamic) */
+ /* _mesa_function_pool[32211]: SpriteParameterfSGIX (dynamic) */
"if\0"
"glSpriteParameterfSGIX\0"
"\0"
- /* _mesa_function_pool[32209]: EnableClientState (offset 313) */
+ /* _mesa_function_pool[32238]: EnableClientState (offset 313) */
"i\0"
"glEnableClientState\0"
"\0"
- /* _mesa_function_pool[32232]: VertexAttrib4sNV (will be remapped) */
+ /* _mesa_function_pool[32261]: VertexAttrib4sNV (will be remapped) */
"iiiii\0"
"glVertexAttrib4sNV\0"
"\0"
- /* _mesa_function_pool[32258]: GetConvolutionParameterfv (offset 357) */
+ /* _mesa_function_pool[32287]: GetConvolutionParameterfv (offset 357) */
"iip\0"
"glGetConvolutionParameterfv\0"
"glGetConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[32322]: GetActiveUniformName (will be remapped) */
+ /* _mesa_function_pool[32351]: GetActiveUniformName (will be remapped) */
"iiipp\0"
"glGetActiveUniformName\0"
"\0"
- /* _mesa_function_pool[32352]: Uniform1iv (will be remapped) */
+ /* _mesa_function_pool[32381]: Uniform1iv (will be remapped) */
"iip\0"
"glUniform1iv\0"
"glUniform1ivARB\0"
"\0"
- /* _mesa_function_pool[32386]: MultiTexCoord4i (offset 404) */
+ /* _mesa_function_pool[32415]: MultiTexCoord4i (offset 404) */
"iiiii\0"
"glMultiTexCoord4i\0"
"glMultiTexCoord4iARB\0"
"\0"
- /* _mesa_function_pool[32432]: CombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[32461]: CombinerStageParameterfvNV (dynamic) */
"iip\0"
"glCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[32466]: ProgramNamedParameter4dNV (will be remapped) */
+ /* _mesa_function_pool[32495]: ProgramNamedParameter4dNV (will be remapped) */
"iipdddd\0"
"glProgramNamedParameter4dNV\0"
"\0"
- /* _mesa_function_pool[32503]: GetMaterialfv (offset 269) */
+ /* _mesa_function_pool[32532]: GetMaterialfv (offset 269) */
"iip\0"
"glGetMaterialfv\0"
"\0"
- /* _mesa_function_pool[32524]: ViewportIndexedfv (will be remapped) */
+ /* _mesa_function_pool[32553]: ViewportIndexedfv (will be remapped) */
"ip\0"
"glViewportIndexedfv\0"
"\0"
- /* _mesa_function_pool[32548]: WindowPos3fv (will be remapped) */
+ /* _mesa_function_pool[32577]: WindowPos3fv (will be remapped) */
"p\0"
"glWindowPos3fv\0"
"glWindowPos3fvARB\0"
"glWindowPos3fvMESA\0"
"\0"
- /* _mesa_function_pool[32603]: SecondaryColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[32632]: SecondaryColorPointerListIBM (dynamic) */
"iiipi\0"
"glSecondaryColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[32641]: DeleteProgramsARB (will be remapped) */
+ /* _mesa_function_pool[32670]: DeleteProgramsARB (will be remapped) */
"ip\0"
"glDeleteProgramsARB\0"
"glDeleteProgramsNV\0"
"\0"
- /* _mesa_function_pool[32684]: VDPAUSurfaceAccessNV (will be remapped) */
+ /* _mesa_function_pool[32713]: VDPAUSurfaceAccessNV (will be remapped) */
"ii\0"
"glVDPAUSurfaceAccessNV\0"
"\0"
- /* _mesa_function_pool[32711]: SetFragmentShaderConstantATI (will be remapped) */
+ /* _mesa_function_pool[32740]: SetFragmentShaderConstantATI (will be remapped) */
"ip\0"
"glSetFragmentShaderConstantATI\0"
"\0"
- /* _mesa_function_pool[32746]: Binormal3fEXT (dynamic) */
+ /* _mesa_function_pool[32775]: Binormal3fEXT (dynamic) */
"fff\0"
"glBinormal3fEXT\0"
"\0"
- /* _mesa_function_pool[32767]: CallList (offset 2) */
+ /* _mesa_function_pool[32796]: CallList (offset 2) */
"i\0"
"glCallList\0"
"\0"
- /* _mesa_function_pool[32781]: Materialfv (offset 170) */
+ /* _mesa_function_pool[32810]: Materialfv (offset 170) */
"iip\0"
"glMaterialfv\0"
"\0"
- /* _mesa_function_pool[32799]: TexCoord3fv (offset 113) */
+ /* _mesa_function_pool[32828]: TexCoord3fv (offset 113) */
"p\0"
"glTexCoord3fv\0"
"\0"
- /* _mesa_function_pool[32816]: WeightfvARB (dynamic) */
+ /* _mesa_function_pool[32845]: WeightfvARB (dynamic) */
"ip\0"
"glWeightfvARB\0"
"\0"
- /* _mesa_function_pool[32834]: GetUniformBlockIndex (will be remapped) */
+ /* _mesa_function_pool[32863]: GetUniformBlockIndex (will be remapped) */
"ip\0"
"glGetUniformBlockIndex\0"
"\0"
- /* _mesa_function_pool[32861]: FogCoordfvEXT (will be remapped) */
+ /* _mesa_function_pool[32890]: FogCoordfvEXT (will be remapped) */
"p\0"
"glFogCoordfv\0"
"glFogCoordfvEXT\0"
"\0"
- /* _mesa_function_pool[32893]: DetachShader (will be remapped) */
+ /* _mesa_function_pool[32922]: DetachShader (will be remapped) */
"ii\0"
"glDetachShader\0"
"\0"
- /* _mesa_function_pool[32912]: ClearDepthf (will be remapped) */
+ /* _mesa_function_pool[32941]: ClearDepthf (will be remapped) */
"f\0"
"glClearDepthf\0"
"glClearDepthfOES\0"
"\0"
- /* _mesa_function_pool[32946]: CopyTexSubImage2D (offset 326) */
+ /* _mesa_function_pool[32975]: CopyTexSubImage2D (offset 326) */
"iiiiiiii\0"
"glCopyTexSubImage2D\0"
"glCopyTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[32999]: SampleCoverage (will be remapped) */
+ /* _mesa_function_pool[33028]: SampleCoverage (will be remapped) */
"fi\0"
"glSampleCoverage\0"
"glSampleCoverageARB\0"
"\0"
- /* _mesa_function_pool[33040]: GetObjectParameterivARB (will be remapped) */
+ /* _mesa_function_pool[33069]: GetObjectParameterivARB (will be remapped) */
"iip\0"
"glGetObjectParameterivARB\0"
"\0"
- /* _mesa_function_pool[33071]: Color3iv (offset 16) */
+ /* _mesa_function_pool[33100]: Color3iv (offset 16) */
"p\0"
"glColor3iv\0"
"\0"
- /* _mesa_function_pool[33085]: GlobalAlphaFactorubSUN (dynamic) */
+ /* _mesa_function_pool[33114]: GlobalAlphaFactorubSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorubSUN\0"
"\0"
- /* _mesa_function_pool[33113]: VertexAttrib4ubv (will be remapped) */
+ /* _mesa_function_pool[33142]: VertexAttrib4ubv (will be remapped) */
"ip\0"
"glVertexAttrib4ubv\0"
"glVertexAttrib4ubvARB\0"
"\0"
- /* _mesa_function_pool[33158]: MultiDrawArrays (will be remapped) */
+ /* _mesa_function_pool[33187]: MultiDrawArrays (will be remapped) */
"ippi\0"
"glMultiDrawArrays\0"
"glMultiDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[33203]: DrawElements (offset 311) */
+ /* _mesa_function_pool[33232]: DrawElements (offset 311) */
"iiip\0"
"glDrawElements\0"
"\0"
- /* _mesa_function_pool[33224]: BindVertexArrayAPPLE (will be remapped) */
+ /* _mesa_function_pool[33253]: BindVertexArrayAPPLE (will be remapped) */
"i\0"
"glBindVertexArrayAPPLE\0"
"\0"
- /* _mesa_function_pool[33250]: GetProgramLocalParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[33279]: GetProgramLocalParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterdvARB\0"
"\0"
- /* _mesa_function_pool[33287]: GetHistogramParameteriv (offset 363) */
+ /* _mesa_function_pool[33316]: GetHistogramParameteriv (offset 363) */
"iip\0"
"glGetHistogramParameteriv\0"
"glGetHistogramParameterivEXT\0"
"\0"
- /* _mesa_function_pool[33347]: TexGenxvOES (will be remapped) */
+ /* _mesa_function_pool[33376]: TexGenxvOES (will be remapped) */
"iip\0"
"glTexGenxvOES\0"
"\0"
- /* _mesa_function_pool[33366]: PointParameteriv (will be remapped) */
+ /* _mesa_function_pool[33395]: PointParameteriv (will be remapped) */
"ip\0"
"glPointParameteriv\0"
"glPointParameterivNV\0"
"\0"
- /* _mesa_function_pool[33410]: UniformMatrix2x4fv (will be remapped) */
+ /* _mesa_function_pool[33439]: UniformMatrix2x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x4fv\0"
"\0"
- /* _mesa_function_pool[33437]: SecondaryColor3d (will be remapped) */
+ /* _mesa_function_pool[33466]: SecondaryColor3d (will be remapped) */
"ddd\0"
"glSecondaryColor3d\0"
"glSecondaryColor3dEXT\0"
"\0"
- /* _mesa_function_pool[33483]: GetConvolutionFilter (offset 356) */
+ /* _mesa_function_pool[33512]: GetConvolutionFilter (offset 356) */
"iiip\0"
"glGetConvolutionFilter\0"
"glGetConvolutionFilterEXT\0"
"\0"
- /* _mesa_function_pool[33538]: GetProgramivARB (will be remapped) */
+ /* _mesa_function_pool[33567]: GetProgramivARB (will be remapped) */
"iip\0"
"glGetProgramivARB\0"
"\0"
- /* _mesa_function_pool[33561]: FlushVertexArrayRangeNV (dynamic) */
+ /* _mesa_function_pool[33590]: FlushVertexArrayRangeNV (dynamic) */
"\0"
"glFlushVertexArrayRangeNV\0"
"\0"
- /* _mesa_function_pool[33589]: ScissorArrayv (will be remapped) */
+ /* _mesa_function_pool[33618]: ScissorArrayv (will be remapped) */
"iip\0"
"glScissorArrayv\0"
"\0"
- /* _mesa_function_pool[33610]: Uniform2iv (will be remapped) */
+ /* _mesa_function_pool[33639]: Uniform2iv (will be remapped) */
"iip\0"
"glUniform2iv\0"
"glUniform2ivARB\0"
"\0"
- /* _mesa_function_pool[33644]: GetFixedv (will be remapped) */
+ /* _mesa_function_pool[33673]: GetFixedv (will be remapped) */
"ip\0"
"glGetFixedvOES\0"
"glGetFixedv\0"
"\0"
- /* _mesa_function_pool[33675]: BindRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[33704]: BindRenderbuffer (will be remapped) */
"ii\0"
"glBindRenderbuffer\0"
"glBindRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[33720]: ProgramParameters4dvNV (will be remapped) */
+ /* _mesa_function_pool[33749]: ProgramParameters4dvNV (will be remapped) */
"iiip\0"
"glProgramParameters4dvNV\0"
"\0"
- /* _mesa_function_pool[33751]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[33780]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[33788]: EvalPoint2 (offset 239) */
+ /* _mesa_function_pool[33817]: EvalPoint2 (offset 239) */
"ii\0"
"glEvalPoint2\0"
"\0"
- /* _mesa_function_pool[33805]: EvalPoint1 (offset 237) */
+ /* _mesa_function_pool[33834]: EvalPoint1 (offset 237) */
"i\0"
"glEvalPoint1\0"
"\0"
- /* _mesa_function_pool[33821]: Binormal3dvEXT (dynamic) */
+ /* _mesa_function_pool[33850]: Binormal3dvEXT (dynamic) */
"p\0"
"glBinormal3dvEXT\0"
"\0"
- /* _mesa_function_pool[33841]: PopMatrix (offset 297) */
+ /* _mesa_function_pool[33870]: PopMatrix (offset 297) */
"\0"
"glPopMatrix\0"
"\0"
- /* _mesa_function_pool[33855]: FinishFenceNV (dynamic) */
+ /* _mesa_function_pool[33884]: FinishFenceNV (dynamic) */
"i\0"
"glFinishFenceNV\0"
"\0"
- /* _mesa_function_pool[33874]: GetFogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[33903]: GetFogFuncSGIS (dynamic) */
"p\0"
"glGetFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[33894]: DeleteFramebuffers (will be remapped) */
+ /* _mesa_function_pool[33923]: DeleteFramebuffers (will be remapped) */
"ip\0"
"glDeleteFramebuffers\0"
"glDeleteFramebuffersEXT\0"
"glDeleteFramebuffersOES\0"
"\0"
- /* _mesa_function_pool[33967]: SecondaryColor3fEXT (will be remapped) */
+ /* _mesa_function_pool[33996]: DispatchCompute (will be remapped) */
+ "iii\0"
+ "glDispatchCompute\0"
+ "\0"
+ /* _mesa_function_pool[34019]: SecondaryColor3fEXT (will be remapped) */
"fff\0"
"glSecondaryColor3f\0"
"glSecondaryColor3fEXT\0"
"\0"
- /* _mesa_function_pool[34013]: GetTexGeniv (offset 280) */
+ /* _mesa_function_pool[34065]: GetTexGeniv (offset 280) */
"iip\0"
"glGetTexGeniv\0"
"glGetTexGenivOES\0"
"\0"
- /* _mesa_function_pool[34049]: CombinerInputNV (dynamic) */
+ /* _mesa_function_pool[34101]: CombinerInputNV (dynamic) */
"iiiiii\0"
"glCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[34075]: VertexBindingDivisor (will be remapped) */
+ /* _mesa_function_pool[34127]: VertexBindingDivisor (will be remapped) */
"ii\0"
"glVertexBindingDivisor\0"
"\0"
- /* _mesa_function_pool[34102]: FramebufferRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[34154]: FramebufferRenderbuffer (will be remapped) */
"iiii\0"
"glFramebufferRenderbuffer\0"
"glFramebufferRenderbufferEXT\0"
"glFramebufferRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[34192]: IsProgramARB (will be remapped) */
+ /* _mesa_function_pool[34244]: IsProgramARB (will be remapped) */
"i\0"
"glIsProgramARB\0"
"glIsProgramNV\0"
"\0"
- /* _mesa_function_pool[34224]: VertexAttrib4uiv (will be remapped) */
+ /* _mesa_function_pool[34276]: VertexAttrib4uiv (will be remapped) */
"ip\0"
"glVertexAttrib4uiv\0"
"glVertexAttrib4uivARB\0"
"\0"
- /* _mesa_function_pool[34269]: VertexAttrib4Nsv (will be remapped) */
+ /* _mesa_function_pool[34321]: VertexAttrib4Nsv (will be remapped) */
"ip\0"
"glVertexAttrib4Nsv\0"
"glVertexAttrib4NsvARB\0"
"\0"
- /* _mesa_function_pool[34314]: Map2d (offset 222) */
+ /* _mesa_function_pool[34366]: Map2d (offset 222) */
"iddiiddiip\0"
"glMap2d\0"
"\0"
- /* _mesa_function_pool[34334]: Map2f (offset 223) */
+ /* _mesa_function_pool[34386]: Map2f (offset 223) */
"iffiiffiip\0"
"glMap2f\0"
"\0"
- /* _mesa_function_pool[34354]: ProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[34406]: ProgramStringARB (will be remapped) */
"iiip\0"
"glProgramStringARB\0"
"\0"
- /* _mesa_function_pool[34379]: MultiTexCoord4x (will be remapped) */
+ /* _mesa_function_pool[34431]: MultiTexCoord4x (will be remapped) */
"iiiii\0"
"glMultiTexCoord4xOES\0"
"glMultiTexCoord4x\0"
"\0"
- /* _mesa_function_pool[34425]: Vertex4s (offset 148) */
+ /* _mesa_function_pool[34477]: Vertex4s (offset 148) */
"iiii\0"
"glVertex4s\0"
"\0"
- /* _mesa_function_pool[34442]: TexCoord4fVertex4fvSUN (dynamic) */
+ /* _mesa_function_pool[34494]: TexCoord4fVertex4fvSUN (dynamic) */
"pp\0"
"glTexCoord4fVertex4fvSUN\0"
"\0"
- /* _mesa_function_pool[34471]: UnmapBuffer (will be remapped) */
+ /* _mesa_function_pool[34523]: UnmapBuffer (will be remapped) */
"i\0"
"glUnmapBuffer\0"
"glUnmapBufferARB\0"
"glUnmapBufferOES\0"
"\0"
- /* _mesa_function_pool[34522]: MultiTexCoord4s (offset 406) */
+ /* _mesa_function_pool[34574]: MultiTexCoord4s (offset 406) */
"iiiii\0"
"glMultiTexCoord4s\0"
"glMultiTexCoord4sARB\0"
"\0"
- /* _mesa_function_pool[34568]: VertexAttribI2iEXT (will be remapped) */
+ /* _mesa_function_pool[34620]: VertexAttribI2iEXT (will be remapped) */
"iii\0"
"glVertexAttribI2iEXT\0"
"glVertexAttribI2i\0"
"\0"
- /* _mesa_function_pool[34612]: Vertex4f (offset 144) */
+ /* _mesa_function_pool[34664]: Vertex4f (offset 144) */
"ffff\0"
"glVertex4f\0"
"\0"
- /* _mesa_function_pool[34629]: EvalCoord1d (offset 228) */
+ /* _mesa_function_pool[34681]: EvalCoord1d (offset 228) */
"d\0"
"glEvalCoord1d\0"
"\0"
- /* _mesa_function_pool[34646]: Vertex4d (offset 142) */
+ /* _mesa_function_pool[34698]: Vertex4d (offset 142) */
"dddd\0"
"glVertex4d\0"
"\0"
- /* _mesa_function_pool[34663]: RasterPos4dv (offset 79) */
+ /* _mesa_function_pool[34715]: RasterPos4dv (offset 79) */
"p\0"
"glRasterPos4dv\0"
"\0"
- /* _mesa_function_pool[34681]: GetGraphicsResetStatusARB (will be remapped) */
+ /* _mesa_function_pool[34733]: GetGraphicsResetStatusARB (will be remapped) */
"\0"
"glGetGraphicsResetStatusARB\0"
"\0"
- /* _mesa_function_pool[34711]: UseShaderProgramEXT (will be remapped) */
+ /* _mesa_function_pool[34763]: UseShaderProgramEXT (will be remapped) */
"ii\0"
"glUseShaderProgramEXT\0"
"\0"
- /* _mesa_function_pool[34737]: VertexAttribP2uiv (will be remapped) */
+ /* _mesa_function_pool[34789]: VertexAttribP2uiv (will be remapped) */
"iiip\0"
"glVertexAttribP2uiv\0"
"\0"
- /* _mesa_function_pool[34763]: VertexAttrib4bv (will be remapped) */
+ /* _mesa_function_pool[34815]: VertexAttrib4bv (will be remapped) */
"ip\0"
"glVertexAttrib4bv\0"
"glVertexAttrib4bvARB\0"
"\0"
- /* _mesa_function_pool[34806]: DebugMessageControl (will be remapped) */
+ /* _mesa_function_pool[34858]: DebugMessageControl (will be remapped) */
"iiiipi\0"
"glDebugMessageControl\0"
"\0"
- /* _mesa_function_pool[34836]: GetTexGenfv (offset 279) */
+ /* _mesa_function_pool[34888]: GetTexGenfv (offset 279) */
"iip\0"
"glGetTexGenfv\0"
"glGetTexGenfvOES\0"
"\0"
- /* _mesa_function_pool[34872]: MultiTexCoord4d (offset 400) */
+ /* _mesa_function_pool[34924]: MultiTexCoord4d (offset 400) */
"idddd\0"
"glMultiTexCoord4d\0"
"glMultiTexCoord4dARB\0"
"\0"
- /* _mesa_function_pool[34918]: Vertex4i (offset 146) */
+ /* _mesa_function_pool[34970]: Vertex4i (offset 146) */
"iiii\0"
"glVertex4i\0"
"\0"
- /* _mesa_function_pool[34935]: VertexWeightPointerEXT (dynamic) */
+ /* _mesa_function_pool[34987]: VertexWeightPointerEXT (dynamic) */
"iiip\0"
"glVertexWeightPointerEXT\0"
"\0"
- /* _mesa_function_pool[34966]: GetHistogram (offset 361) */
+ /* _mesa_function_pool[35018]: GetHistogram (offset 361) */
"iiiip\0"
"glGetHistogram\0"
"glGetHistogramEXT\0"
"\0"
- /* _mesa_function_pool[35006]: ActiveStencilFaceEXT (will be remapped) */
+ /* _mesa_function_pool[35058]: ActiveStencilFaceEXT (will be remapped) */
"i\0"
"glActiveStencilFaceEXT\0"
"\0"
- /* _mesa_function_pool[35032]: Translatex (will be remapped) */
+ /* _mesa_function_pool[35084]: Translatex (will be remapped) */
"iii\0"
"glTranslatexOES\0"
"glTranslatex\0"
"\0"
- /* _mesa_function_pool[35066]: StencilFuncSeparateATI (will be remapped) */
+ /* _mesa_function_pool[35118]: StencilFuncSeparateATI (will be remapped) */
"iiii\0"
"glStencilFuncSeparateATI\0"
"\0"
- /* _mesa_function_pool[35097]: Materialf (offset 169) */
+ /* _mesa_function_pool[35149]: Materialf (offset 169) */
"iif\0"
"glMaterialf\0"
"\0"
- /* _mesa_function_pool[35114]: GetnMapfvARB (will be remapped) */
+ /* _mesa_function_pool[35166]: GetnMapfvARB (will be remapped) */
"iiip\0"
"glGetnMapfvARB\0"
"\0"
- /* _mesa_function_pool[35135]: IglooInterfaceSGIX (dynamic) */
+ /* _mesa_function_pool[35187]: IglooInterfaceSGIX (dynamic) */
"ip\0"
"glIglooInterfaceSGIX\0"
"\0"
- /* _mesa_function_pool[35160]: Materiali (offset 171) */
+ /* _mesa_function_pool[35212]: Materiali (offset 171) */
"iii\0"
"glMateriali\0"
"\0"
- /* _mesa_function_pool[35177]: VertexAttrib4dNV (will be remapped) */
+ /* _mesa_function_pool[35229]: VertexAttrib4dNV (will be remapped) */
"idddd\0"
"glVertexAttrib4dNV\0"
"\0"
- /* _mesa_function_pool[35203]: MultiModeDrawElementsIBM (will be remapped) */
+ /* _mesa_function_pool[35255]: MultiModeDrawElementsIBM (will be remapped) */
"ppipii\0"
"glMultiModeDrawElementsIBM\0"
"\0"
- /* _mesa_function_pool[35238]: Indexsv (offset 51) */
+ /* _mesa_function_pool[35290]: Indexsv (offset 51) */
"p\0"
"glIndexsv\0"
"\0"
- /* _mesa_function_pool[35251]: VertexAttrib1fvARB (will be remapped) */
+ /* _mesa_function_pool[35303]: VertexAttrib1fvARB (will be remapped) */
"ip\0"
"glVertexAttrib1fv\0"
"glVertexAttrib1fvARB\0"
"\0"
- /* _mesa_function_pool[35294]: LightModelfv (offset 164) */
+ /* _mesa_function_pool[35346]: LightModelfv (offset 164) */
"ip\0"
"glLightModelfv\0"
"\0"
- /* _mesa_function_pool[35313]: TexCoord2dv (offset 103) */
+ /* _mesa_function_pool[35365]: TexCoord2dv (offset 103) */
"p\0"
"glTexCoord2dv\0"
"\0"
- /* _mesa_function_pool[35330]: ProgramParameters4fvNV (will be remapped) */
+ /* _mesa_function_pool[35382]: ProgramParameters4fvNV (will be remapped) */
"iiip\0"
"glProgramParameters4fvNV\0"
"\0"
- /* _mesa_function_pool[35361]: EvalCoord1dv (offset 229) */
+ /* _mesa_function_pool[35413]: EvalCoord1dv (offset 229) */
"p\0"
"glEvalCoord1dv\0"
"\0"
- /* _mesa_function_pool[35379]: ReplacementCodeuiVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[35431]: ReplacementCodeuiVertex3fSUN (dynamic) */
"ifff\0"
"glReplacementCodeuiVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[35416]: MapBufferRange (will be remapped) */
+ /* _mesa_function_pool[35468]: MapBufferRange (will be remapped) */
"iiii\0"
"glMapBufferRange\0"
"glMapBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[35459]: Translated (offset 303) */
+ /* _mesa_function_pool[35511]: Translated (offset 303) */
"ddd\0"
"glTranslated\0"
"\0"
- /* _mesa_function_pool[35477]: Translatef (offset 304) */
+ /* _mesa_function_pool[35529]: Translatef (offset 304) */
"fff\0"
"glTranslatef\0"
"\0"
- /* _mesa_function_pool[35495]: StencilMask (offset 209) */
+ /* _mesa_function_pool[35547]: StencilMask (offset 209) */
"i\0"
"glStencilMask\0"
"\0"
- /* _mesa_function_pool[35512]: MinSampleShading (will be remapped) */
+ /* _mesa_function_pool[35564]: MinSampleShading (will be remapped) */
"f\0"
"glMinSampleShadingARB\0"
"glMinSampleShading\0"
"\0"
- /* _mesa_function_pool[35556]: MultTransposeMatrixd (will be remapped) */
+ /* _mesa_function_pool[35608]: MultTransposeMatrixd (will be remapped) */
"p\0"
"glMultTransposeMatrixd\0"
"glMultTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[35608]: MultTransposeMatrixf (will be remapped) */
+ /* _mesa_function_pool[35660]: MultTransposeMatrixf (will be remapped) */
"p\0"
"glMultTransposeMatrixf\0"
"glMultTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[35660]: GetLightiv (offset 265) */
+ /* _mesa_function_pool[35712]: GetLightiv (offset 265) */
"iip\0"
"glGetLightiv\0"
"\0"
- /* _mesa_function_pool[35678]: DrawElementsInstancedBaseInstance (will be remapped) */
+ /* _mesa_function_pool[35730]: DrawElementsInstancedBaseInstance (will be remapped) */
"iiipii\0"
"glDrawElementsInstancedBaseInstance\0"
"\0"
- /* _mesa_function_pool[35722]: IsList (offset 287) */
+ /* _mesa_function_pool[35774]: IsList (offset 287) */
"i\0"
"glIsList\0"
"\0"
- /* _mesa_function_pool[35734]: PointSizex (will be remapped) */
+ /* _mesa_function_pool[35786]: PointSizex (will be remapped) */
"i\0"
"glPointSizexOES\0"
"glPointSizex\0"
"\0"
- /* _mesa_function_pool[35766]: GetnPixelMapusvARB (will be remapped) */
+ /* _mesa_function_pool[35818]: GetnPixelMapusvARB (will be remapped) */
"iip\0"
"glGetnPixelMapusvARB\0"
"\0"
- /* _mesa_function_pool[35792]: IsSync (will be remapped) */
+ /* _mesa_function_pool[35844]: IsSync (will be remapped) */
"i\0"
"glIsSync\0"
"\0"
- /* _mesa_function_pool[35804]: RenderMode (offset 196) */
+ /* _mesa_function_pool[35856]: RenderMode (offset 196) */
"i\0"
"glRenderMode\0"
"\0"
- /* _mesa_function_pool[35820]: PrimitiveRestartIndex (will be remapped) */
+ /* _mesa_function_pool[35872]: PrimitiveRestartIndex (will be remapped) */
"i\0"
"glPrimitiveRestartIndex\0"
"glPrimitiveRestartIndexNV\0"
"\0"
- /* _mesa_function_pool[35873]: GetMapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[35925]: GetMapControlPointsNV (dynamic) */
"iiiiiip\0"
"glGetMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[35906]: ClearBufferiv (will be remapped) */
+ /* _mesa_function_pool[35958]: ClearBufferiv (will be remapped) */
"iip\0"
"glClearBufferiv\0"
"\0"
- /* _mesa_function_pool[35927]: ProgramLocalParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[35979]: ProgramLocalParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramLocalParameter4fARB\0"
"\0"
- /* _mesa_function_pool[35964]: SpriteParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[36016]: SpriteParameterivSGIX (dynamic) */
"ip\0"
"glSpriteParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[35992]: MultiTexCoord1fARB (offset 378) */
+ /* _mesa_function_pool[36044]: MultiTexCoord1fARB (offset 378) */
"if\0"
"glMultiTexCoord1f\0"
"glMultiTexCoord1fARB\0"
"\0"
- /* _mesa_function_pool[36035]: LoadName (offset 198) */
+ /* _mesa_function_pool[36087]: LoadName (offset 198) */
"i\0"
"glLoadName\0"
"\0"
- /* _mesa_function_pool[36049]: GetInternalformativ (will be remapped) */
+ /* _mesa_function_pool[36101]: GetInternalformativ (will be remapped) */
"iiiip\0"
"glGetInternalformativ\0"
"\0"
- /* _mesa_function_pool[36078]: VertexAttribs4ubvNV (will be remapped) */
+ /* _mesa_function_pool[36130]: VertexAttribs4ubvNV (will be remapped) */
"iip\0"
"glVertexAttribs4ubvNV\0"
"\0"
- /* _mesa_function_pool[36105]: Frustumf (will be remapped) */
+ /* _mesa_function_pool[36157]: Frustumf (will be remapped) */
"ffffff\0"
"glFrustumfOES\0"
"glFrustumf\0"
"\0"
- /* _mesa_function_pool[36138]: WeightsvARB (dynamic) */
+ /* _mesa_function_pool[36190]: WeightsvARB (dynamic) */
"ip\0"
"glWeightsvARB\0"
"\0"
- /* _mesa_function_pool[36156]: GetIntegeri_v (will be remapped) */
+ /* _mesa_function_pool[36208]: GetIntegeri_v (will be remapped) */
"iip\0"
"glGetIntegerIndexedvEXT\0"
"glGetIntegeri_v\0"
"\0"
- /* _mesa_function_pool[36201]: LightModelxv (will be remapped) */
+ /* _mesa_function_pool[36253]: LightModelxv (will be remapped) */
"ip\0"
"glLightModelxvOES\0"
"glLightModelxv\0"
"\0"
- /* _mesa_function_pool[36238]: IsTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[36290]: IsTransformFeedback (will be remapped) */
"i\0"
"glIsTransformFeedback\0"
"\0"
- /* _mesa_function_pool[36263]: CopyTexSubImage1D (offset 325) */
+ /* _mesa_function_pool[36315]: CopyTexSubImage1D (offset 325) */
"iiiiii\0"
"glCopyTexSubImage1D\0"
"glCopyTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[36314]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[36366]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[36358]: CullFace (offset 152) */
+ /* _mesa_function_pool[36410]: CullFace (offset 152) */
"i\0"
"glCullFace\0"
"\0"
- /* _mesa_function_pool[36372]: BindTexture (offset 307) */
+ /* _mesa_function_pool[36424]: BindTexture (offset 307) */
"ii\0"
"glBindTexture\0"
"glBindTextureEXT\0"
"\0"
- /* _mesa_function_pool[36407]: VertexAttribs2fvNV (will be remapped) */
+ /* _mesa_function_pool[36459]: VertexAttribs2fvNV (will be remapped) */
"iip\0"
"glVertexAttribs2fvNV\0"
"\0"
- /* _mesa_function_pool[36433]: MultiTexCoord4fARB (offset 402) */
+ /* _mesa_function_pool[36485]: MultiTexCoord4fARB (offset 402) */
"iffff\0"
"glMultiTexCoord4f\0"
"glMultiTexCoord4fARB\0"
"\0"
- /* _mesa_function_pool[36479]: ResumeTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[36531]: ResumeTransformFeedback (will be remapped) */
"\0"
"glResumeTransformFeedback\0"
"\0"
- /* _mesa_function_pool[36507]: PushDebugGroup (will be remapped) */
+ /* _mesa_function_pool[36559]: PushDebugGroup (will be remapped) */
"iiip\0"
"glPushDebugGroup\0"
"\0"
- /* _mesa_function_pool[36530]: DrawMeshArraysSUN (dynamic) */
+ /* _mesa_function_pool[36582]: DrawMeshArraysSUN (dynamic) */
"iiii\0"
"glDrawMeshArraysSUN\0"
"\0"
- /* _mesa_function_pool[36556]: SecondaryColor3i (will be remapped) */
+ /* _mesa_function_pool[36608]: SecondaryColor3i (will be remapped) */
"iii\0"
"glSecondaryColor3i\0"
"glSecondaryColor3iEXT\0"
"\0"
- /* _mesa_function_pool[36602]: StencilFunc (offset 243) */
+ /* _mesa_function_pool[36654]: StencilFunc (offset 243) */
"iii\0"
"glStencilFunc\0"
"\0"
- /* _mesa_function_pool[36621]: CopyPixels (offset 255) */
+ /* _mesa_function_pool[36673]: CopyPixels (offset 255) */
"iiiii\0"
"glCopyPixels\0"
"\0"
- /* _mesa_function_pool[36641]: Rectsv (offset 93) */
+ /* _mesa_function_pool[36693]: Rectsv (offset 93) */
"pp\0"
"glRectsv\0"
"\0"
- /* _mesa_function_pool[36654]: WindowPos3iv (will be remapped) */
+ /* _mesa_function_pool[36706]: WindowPos3iv (will be remapped) */
"p\0"
"glWindowPos3iv\0"
"glWindowPos3ivARB\0"
"glWindowPos3ivMESA\0"
"\0"
- /* _mesa_function_pool[36709]: ReplacementCodeuivSUN (dynamic) */
+ /* _mesa_function_pool[36761]: ReplacementCodeuivSUN (dynamic) */
"p\0"
"glReplacementCodeuivSUN\0"
"\0"
- /* _mesa_function_pool[36736]: DrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[36788]: DrawElementsBaseVertex (will be remapped) */
"iiipi\0"
"glDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[36768]: CopyConvolutionFilter2D (offset 355) */
+ /* _mesa_function_pool[36820]: CopyConvolutionFilter2D (offset 355) */
"iiiiii\0"
"glCopyConvolutionFilter2D\0"
"glCopyConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[36831]: ApplyTextureEXT (dynamic) */
+ /* _mesa_function_pool[36883]: ApplyTextureEXT (dynamic) */
"i\0"
"glApplyTextureEXT\0"
"\0"
- /* _mesa_function_pool[36852]: CopyBufferSubData (will be remapped) */
+ /* _mesa_function_pool[36904]: CopyBufferSubData (will be remapped) */
"iiiii\0"
"glCopyBufferSubData\0"
"\0"
- /* _mesa_function_pool[36879]: NormalPointer (offset 318) */
+ /* _mesa_function_pool[36931]: NormalPointer (offset 318) */
"iip\0"
"glNormalPointer\0"
"\0"
- /* _mesa_function_pool[36900]: TexParameterfv (offset 179) */
+ /* _mesa_function_pool[36952]: TexParameterfv (offset 179) */
"iip\0"
"glTexParameterfv\0"
"\0"
- /* _mesa_function_pool[36922]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[36974]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[36967]: GetCombinerOutputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[37019]: GetCombinerOutputParameterfvNV (dynamic) */
"iiip\0"
"glGetCombinerOutputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[37006]: WindowPos4iMESA (will be remapped) */
+ /* _mesa_function_pool[37058]: WindowPos4iMESA (will be remapped) */
"iiii\0"
"glWindowPos4iMESA\0"
"\0"
- /* _mesa_function_pool[37030]: VertexAttrib4Nubv (will be remapped) */
+ /* _mesa_function_pool[37082]: VertexAttrib4Nubv (will be remapped) */
"ip\0"
"glVertexAttrib4Nubv\0"
"glVertexAttrib4NubvARB\0"
"\0"
- /* _mesa_function_pool[37077]: SecondaryColor3ui (will be remapped) */
+ /* _mesa_function_pool[37129]: SecondaryColor3ui (will be remapped) */
"iii\0"
"glSecondaryColor3ui\0"
"glSecondaryColor3uiEXT\0"
"\0"
- /* _mesa_function_pool[37125]: VertexAttribI3uivEXT (will be remapped) */
+ /* _mesa_function_pool[37177]: VertexAttribI3uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3uivEXT\0"
"glVertexAttribI3uiv\0"
"\0"
- /* _mesa_function_pool[37172]: UniformMatrix3x4fv (will be remapped) */
+ /* _mesa_function_pool[37224]: UniformMatrix3x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x4fv\0"
"\0"
- /* _mesa_function_pool[37199]: ClipPlane (offset 150) */
+ /* _mesa_function_pool[37251]: ClipPlane (offset 150) */
"ip\0"
"glClipPlane\0"
"\0"
- /* _mesa_function_pool[37215]: Recti (offset 90) */
+ /* _mesa_function_pool[37267]: Recti (offset 90) */
"iiii\0"
"glRecti\0"
"\0"
- /* _mesa_function_pool[37229]: VertexAttribI3ivEXT (will be remapped) */
+ /* _mesa_function_pool[37281]: VertexAttribI3ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3ivEXT\0"
"glVertexAttribI3iv\0"
"\0"
- /* _mesa_function_pool[37274]: DrawRangeElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[37326]: DrawRangeElementsBaseVertex (will be remapped) */
"iiiiipi\0"
"glDrawRangeElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[37313]: VertexAttribIPointer (will be remapped) */
+ /* _mesa_function_pool[37365]: VertexAttribIPointer (will be remapped) */
"iiiip\0"
"glVertexAttribIPointerEXT\0"
"glVertexAttribIPointer\0"
"\0"
- /* _mesa_function_pool[37369]: SecondaryColor3usv (will be remapped) */
+ /* _mesa_function_pool[37421]: SecondaryColor3usv (will be remapped) */
"p\0"
"glSecondaryColor3usv\0"
"glSecondaryColor3usvEXT\0"
"\0"
- /* _mesa_function_pool[37417]: VertexP2uiv (will be remapped) */
+ /* _mesa_function_pool[37469]: VertexP2uiv (will be remapped) */
"ip\0"
"glVertexP2uiv\0"
"\0"
- /* _mesa_function_pool[37435]: Fogxv (will be remapped) */
+ /* _mesa_function_pool[37487]: Fogxv (will be remapped) */
"ip\0"
"glFogxvOES\0"
"glFogxv\0"
"\0"
- /* _mesa_function_pool[37458]: MultiTexCoord3dv (offset 393) */
+ /* _mesa_function_pool[37510]: MultiTexCoord3dv (offset 393) */
"ip\0"
"glMultiTexCoord3dv\0"
"glMultiTexCoord3dvARB\0"
"\0"
- /* _mesa_function_pool[37503]: WindowPos4fvMESA (will be remapped) */
+ /* _mesa_function_pool[37555]: WindowPos4fvMESA (will be remapped) */
"p\0"
"glWindowPos4fvMESA\0"
"\0"
- /* _mesa_function_pool[37525]: GetPixelMapuiv (offset 272) */
+ /* _mesa_function_pool[37577]: GetPixelMapuiv (offset 272) */
"ip\0"
"glGetPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[37546]: Rectf (offset 88) */
+ /* _mesa_function_pool[37598]: Rectf (offset 88) */
"ffff\0"
"glRectf\0"
"\0"
- /* _mesa_function_pool[37560]: VertexAttrib1sNV (will be remapped) */
+ /* _mesa_function_pool[37612]: VertexAttrib1sNV (will be remapped) */
"ii\0"
"glVertexAttrib1sNV\0"
"\0"
- /* _mesa_function_pool[37583]: Indexfv (offset 47) */
+ /* _mesa_function_pool[37635]: Indexfv (offset 47) */
"p\0"
"glIndexfv\0"
"\0"
- /* _mesa_function_pool[37596]: ColorP3uiv (will be remapped) */
+ /* _mesa_function_pool[37648]: ColorP3uiv (will be remapped) */
"ip\0"
"glColorP3uiv\0"
"\0"
- /* _mesa_function_pool[37613]: TexParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[37665]: TexParameterIuiv (will be remapped) */
"iip\0"
"glTexParameterIuivEXT\0"
"glTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[37659]: BlitFramebuffer (will be remapped) */
+ /* _mesa_function_pool[37711]: BlitFramebuffer (will be remapped) */
"iiiiiiiiii\0"
"glBlitFramebuffer\0"
"glBlitFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[37710]: GetPointerv (offset 329) */
+ /* _mesa_function_pool[37762]: GetPointerv (offset 329) */
"ip\0"
"glGetPointerv\0"
"glGetPointervEXT\0"
"\0"
- /* _mesa_function_pool[37745]: Tangent3bEXT (dynamic) */
+ /* _mesa_function_pool[37797]: Tangent3bEXT (dynamic) */
"iii\0"
"glTangent3bEXT\0"
"\0"
- /* _mesa_function_pool[37765]: CombinerParameterfNV (dynamic) */
+ /* _mesa_function_pool[37817]: CombinerParameterfNV (dynamic) */
"if\0"
"glCombinerParameterfNV\0"
"\0"
- /* _mesa_function_pool[37792]: IndexMask (offset 212) */
+ /* _mesa_function_pool[37844]: IndexMask (offset 212) */
"i\0"
"glIndexMask\0"
"\0"
- /* _mesa_function_pool[37807]: CreateShaderObjectARB (will be remapped) */
+ /* _mesa_function_pool[37859]: CreateShaderObjectARB (will be remapped) */
"i\0"
"glCreateShaderObjectARB\0"
"\0"
- /* _mesa_function_pool[37834]: ReplacementCodeuiSUN (dynamic) */
+ /* _mesa_function_pool[37886]: ReplacementCodeuiSUN (dynamic) */
"i\0"
"glReplacementCodeuiSUN\0"
"\0"
- /* _mesa_function_pool[37860]: GetFloatv (offset 262) */
+ /* _mesa_function_pool[37912]: GetFloatv (offset 262) */
"ip\0"
"glGetFloatv\0"
"\0"
- /* _mesa_function_pool[37876]: CombinerOutputNV (dynamic) */
+ /* _mesa_function_pool[37928]: CombinerOutputNV (dynamic) */
"iiiiiiiiii\0"
"glCombinerOutputNV\0"
"\0"
- /* _mesa_function_pool[37907]: MultiTexCoord3i (offset 396) */
+ /* _mesa_function_pool[37959]: MultiTexCoord3i (offset 396) */
"iiii\0"
"glMultiTexCoord3i\0"
"glMultiTexCoord3iARB\0"
"\0"
- /* _mesa_function_pool[37952]: GetVertexAttribIiv (will be remapped) */
+ /* _mesa_function_pool[38004]: GetVertexAttribIiv (will be remapped) */
"iip\0"
"glGetVertexAttribIivEXT\0"
"glGetVertexAttribIiv\0"
"\0"
- /* _mesa_function_pool[38002]: ClientWaitSync (will be remapped) */
+ /* _mesa_function_pool[38054]: ClientWaitSync (will be remapped) */
"iii\0"
"glClientWaitSync\0"
"\0"
- /* _mesa_function_pool[38024]: TexCoord4s (offset 124) */
+ /* _mesa_function_pool[38076]: TexCoord4s (offset 124) */
"iiii\0"
"glTexCoord4s\0"
"\0"
- /* _mesa_function_pool[38043]: GetPerfMonitorGroupsAMD (will be remapped) */
+ /* _mesa_function_pool[38095]: GetPerfMonitorGroupsAMD (will be remapped) */
"pip\0"
"glGetPerfMonitorGroupsAMD\0"
"\0"
- /* _mesa_function_pool[38074]: TexCoord3sv (offset 117) */
+ /* _mesa_function_pool[38126]: TexCoord3sv (offset 117) */
"p\0"
"glTexCoord3sv\0"
"\0"
- /* _mesa_function_pool[38091]: VertexAttrib2dNV (will be remapped) */
+ /* _mesa_function_pool[38143]: VertexAttrib2dNV (will be remapped) */
"idd\0"
"glVertexAttrib2dNV\0"
"\0"
- /* _mesa_function_pool[38115]: FogCoorddv (will be remapped) */
+ /* _mesa_function_pool[38167]: FogCoorddv (will be remapped) */
"p\0"
"glFogCoorddv\0"
"glFogCoorddvEXT\0"
"\0"
- /* _mesa_function_pool[38147]: PopAttrib (offset 218) */
+ /* _mesa_function_pool[38199]: PopAttrib (offset 218) */
"\0"
"glPopAttrib\0"
"\0"
- /* _mesa_function_pool[38161]: Fogfv (offset 154) */
+ /* _mesa_function_pool[38213]: Fogfv (offset 154) */
"ip\0"
"glFogfv\0"
"\0"
- /* _mesa_function_pool[38173]: ObjectPurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[38225]: ObjectPurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectPurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[38201]: InitNames (offset 197) */
+ /* _mesa_function_pool[38253]: InitNames (offset 197) */
"\0"
"glInitNames\0"
"\0"
- /* _mesa_function_pool[38215]: Normal3sv (offset 61) */
+ /* _mesa_function_pool[38267]: Normal3sv (offset 61) */
"p\0"
"glNormal3sv\0"
"\0"
- /* _mesa_function_pool[38230]: GetTransformFeedbackVarying (will be remapped) */
+ /* _mesa_function_pool[38282]: GetTransformFeedbackVarying (will be remapped) */
"iiipppp\0"
"glGetTransformFeedbackVarying\0"
"glGetTransformFeedbackVaryingEXT\0"
"\0"
- /* _mesa_function_pool[38302]: Minmax (offset 368) */
+ /* _mesa_function_pool[38354]: Minmax (offset 368) */
"iii\0"
"glMinmax\0"
"glMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[38328]: BufferData (will be remapped) */
+ /* _mesa_function_pool[38380]: BufferData (will be remapped) */
"iipi\0"
"glBufferData\0"
"glBufferDataARB\0"
"\0"
- /* _mesa_function_pool[38363]: DeleteQueries (will be remapped) */
+ /* _mesa_function_pool[38415]: DeleteQueries (will be remapped) */
"ip\0"
"glDeleteQueries\0"
"glDeleteQueriesARB\0"
"\0"
- /* _mesa_function_pool[38402]: TexCoord4d (offset 118) */
+ /* _mesa_function_pool[38454]: TexCoord4d (offset 118) */
"dddd\0"
"glTexCoord4d\0"
"\0"
- /* _mesa_function_pool[38421]: IsEnabledi (will be remapped) */
+ /* _mesa_function_pool[38473]: IsEnabledi (will be remapped) */
"ii\0"
"glIsEnabledIndexedEXT\0"
"glIsEnabledi\0"
"\0"
- /* _mesa_function_pool[38460]: TexCoord4f (offset 120) */
+ /* _mesa_function_pool[38512]: TexCoord4f (offset 120) */
"ffff\0"
"glTexCoord4f\0"
"\0"
- /* _mesa_function_pool[38479]: Uniform3ui (will be remapped) */
+ /* _mesa_function_pool[38531]: Uniform3ui (will be remapped) */
"iiii\0"
"glUniform3uiEXT\0"
"glUniform3ui\0"
"\0"
- /* _mesa_function_pool[38514]: InvalidateFramebuffer (will be remapped) */
+ /* _mesa_function_pool[38566]: InvalidateFramebuffer (will be remapped) */
"iip\0"
"glInvalidateFramebuffer\0"
"\0"
- /* _mesa_function_pool[38543]: GetFragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[38595]: GetFragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[38576]: Binormal3fvEXT (dynamic) */
+ /* _mesa_function_pool[38628]: Binormal3fvEXT (dynamic) */
"p\0"
"glBinormal3fvEXT\0"
"\0"
- /* _mesa_function_pool[38596]: GetBooleanv (offset 258) */
+ /* _mesa_function_pool[38648]: GetBooleanv (offset 258) */
"ip\0"
"glGetBooleanv\0"
"\0"
- /* _mesa_function_pool[38614]: ColorFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[38666]: ColorFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiiii\0"
"glColorFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[38651]: Hint (offset 158) */
+ /* _mesa_function_pool[38703]: Hint (offset 158) */
"ii\0"
"glHint\0"
"\0"
- /* _mesa_function_pool[38662]: DeletePerfMonitorsAMD (will be remapped) */
+ /* _mesa_function_pool[38714]: DeletePerfMonitorsAMD (will be remapped) */
"ip\0"
"glDeletePerfMonitorsAMD\0"
"\0"
- /* _mesa_function_pool[38690]: Color4dv (offset 28) */
+ /* _mesa_function_pool[38742]: Color4dv (offset 28) */
"p\0"
"glColor4dv\0"
"\0"
- /* _mesa_function_pool[38704]: IsAsyncMarkerSGIX (dynamic) */
+ /* _mesa_function_pool[38756]: IsAsyncMarkerSGIX (dynamic) */
"i\0"
"glIsAsyncMarkerSGIX\0"
"\0"
- /* _mesa_function_pool[38727]: MemoryBarrier (will be remapped) */
+ /* _mesa_function_pool[38779]: MemoryBarrier (will be remapped) */
"i\0"
"glMemoryBarrier\0"
"\0"
- /* _mesa_function_pool[38746]: AreProgramsResidentNV (will be remapped) */
+ /* _mesa_function_pool[38798]: AreProgramsResidentNV (will be remapped) */
"ipp\0"
"glAreProgramsResidentNV\0"
"\0"
- /* _mesa_function_pool[38775]: DisableVertexAttribArray (will be remapped) */
+ /* _mesa_function_pool[38827]: DisableVertexAttribArray (will be remapped) */
"i\0"
"glDisableVertexAttribArray\0"
"glDisableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[38835]: CopyColorSubTable (offset 347) */
+ /* _mesa_function_pool[38887]: CopyColorSubTable (offset 347) */
"iiiii\0"
"glCopyColorSubTable\0"
"glCopyColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[38885]: WeightdvARB (dynamic) */
+ /* _mesa_function_pool[38937]: WeightdvARB (dynamic) */
"ip\0"
"glWeightdvARB\0"
"\0"
- /* _mesa_function_pool[38903]: PollInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[38955]: PollInstrumentsSGIX (dynamic) */
"p\0"
"glPollInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[38928]: VertexAttrib3dvNV (will be remapped) */
+ /* _mesa_function_pool[38980]: VertexAttrib3dvNV (will be remapped) */
"ip\0"
"glVertexAttrib3dvNV\0"
"\0"
- /* _mesa_function_pool[38952]: GetObjectParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[39004]: GetObjectParameterfvARB (will be remapped) */
"iip\0"
"glGetObjectParameterfvARB\0"
"\0"
- /* _mesa_function_pool[38983]: Vertex4iv (offset 147) */
+ /* _mesa_function_pool[39035]: Vertex4iv (offset 147) */
"p\0"
"glVertex4iv\0"
"\0"
- /* _mesa_function_pool[38998]: GetDoublei_v (will be remapped) */
+ /* _mesa_function_pool[39050]: GetDoublei_v (will be remapped) */
"iip\0"
"glGetDoublei_v\0"
"\0"
- /* _mesa_function_pool[39018]: BufferSubData (will be remapped) */
+ /* _mesa_function_pool[39070]: BufferSubData (will be remapped) */
"iiip\0"
"glBufferSubData\0"
"glBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[39059]: TexCoord4dv (offset 119) */
+ /* _mesa_function_pool[39111]: TexCoord4dv (offset 119) */
"p\0"
"glTexCoord4dv\0"
"\0"
- /* _mesa_function_pool[39076]: LockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[39128]: LockArraysEXT (will be remapped) */
"ii\0"
"glLockArraysEXT\0"
"\0"
- /* _mesa_function_pool[39096]: Begin (offset 7) */
+ /* _mesa_function_pool[39148]: Begin (offset 7) */
"i\0"
"glBegin\0"
"\0"
- /* _mesa_function_pool[39107]: LightModeli (offset 165) */
+ /* _mesa_function_pool[39159]: LightModeli (offset 165) */
"ii\0"
"glLightModeli\0"
"\0"
- /* _mesa_function_pool[39125]: FogCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[39177]: FogCoordPointerListIBM (dynamic) */
"iipi\0"
"glFogCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[39156]: ObjectPtrLabel (will be remapped) */
+ /* _mesa_function_pool[39208]: ObjectPtrLabel (will be remapped) */
"pip\0"
"glObjectPtrLabel\0"
"\0"
- /* _mesa_function_pool[39178]: Rectfv (offset 89) */
+ /* _mesa_function_pool[39230]: Rectfv (offset 89) */
"pp\0"
"glRectfv\0"
"\0"
- /* _mesa_function_pool[39191]: ClipPlanex (will be remapped) */
+ /* _mesa_function_pool[39243]: ClipPlanex (will be remapped) */
"ip\0"
"glClipPlanexOES\0"
"glClipPlanex\0"
"\0"
- /* _mesa_function_pool[39224]: Uniform4f (will be remapped) */
+ /* _mesa_function_pool[39276]: Uniform4f (will be remapped) */
"iffff\0"
"glUniform4f\0"
"glUniform4fARB\0"
"\0"
- /* _mesa_function_pool[39258]: LightModelf (offset 163) */
+ /* _mesa_function_pool[39310]: LightModelf (offset 163) */
"if\0"
"glLightModelf\0"
"\0"
- /* _mesa_function_pool[39276]: GetTexParameterfv (offset 282) */
+ /* _mesa_function_pool[39328]: GetTexParameterfv (offset 282) */
"iip\0"
"glGetTexParameterfv\0"
"\0"
- /* _mesa_function_pool[39301]: GetLightfv (offset 264) */
+ /* _mesa_function_pool[39353]: GetLightfv (offset 264) */
"iip\0"
"glGetLightfv\0"
"\0"
- /* _mesa_function_pool[39319]: PixelTransformParameterivEXT (dynamic) */
+ /* _mesa_function_pool[39371]: PixelTransformParameterivEXT (dynamic) */
"iip\0"
"glPixelTransformParameterivEXT\0"
"\0"
- /* _mesa_function_pool[39355]: BinormalPointerEXT (dynamic) */
+ /* _mesa_function_pool[39407]: BinormalPointerEXT (dynamic) */
"iip\0"
"glBinormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[39381]: VertexP4uiv (will be remapped) */
+ /* _mesa_function_pool[39433]: VertexP4uiv (will be remapped) */
"ip\0"
"glVertexP4uiv\0"
"\0"
- /* _mesa_function_pool[39399]: GetCombinerInputParameterivNV (dynamic) */
+ /* _mesa_function_pool[39451]: GetCombinerInputParameterivNV (dynamic) */
"iiiip\0"
"glGetCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[39438]: Disable (offset 214) */
+ /* _mesa_function_pool[39490]: Disable (offset 214) */
"i\0"
"glDisable\0"
"\0"
- /* _mesa_function_pool[39451]: ClipPlanef (will be remapped) */
+ /* _mesa_function_pool[39503]: ClipPlanef (will be remapped) */
"ip\0"
"glClipPlanefOES\0"
"glClipPlanef\0"
"\0"
- /* _mesa_function_pool[39484]: MultiTexCoord2fvARB (offset 387) */
+ /* _mesa_function_pool[39536]: MultiTexCoord2fvARB (offset 387) */
"ip\0"
"glMultiTexCoord2fv\0"
"glMultiTexCoord2fvARB\0"
"\0"
- /* _mesa_function_pool[39529]: GetPerfMonitorCounterStringAMD (will be remapped) */
+ /* _mesa_function_pool[39581]: GetPerfMonitorCounterStringAMD (will be remapped) */
"iiipp\0"
"glGetPerfMonitorCounterStringAMD\0"
"\0"
- /* _mesa_function_pool[39569]: SecondaryColorPointer (will be remapped) */
+ /* _mesa_function_pool[39621]: SecondaryColorPointer (will be remapped) */
"iiip\0"
"glSecondaryColorPointer\0"
"glSecondaryColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[39626]: FinishAsyncSGIX (dynamic) */
+ /* _mesa_function_pool[39678]: FinishAsyncSGIX (dynamic) */
"p\0"
"glFinishAsyncSGIX\0"
"\0"
- /* _mesa_function_pool[39647]: DrawArrays (offset 310) */
+ /* _mesa_function_pool[39699]: DrawArrays (offset 310) */
"iii\0"
"glDrawArrays\0"
"glDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[39681]: WeightuivARB (dynamic) */
+ /* _mesa_function_pool[39733]: WeightuivARB (dynamic) */
"ip\0"
"glWeightuivARB\0"
"\0"
- /* _mesa_function_pool[39700]: GetnTexImageARB (will be remapped) */
+ /* _mesa_function_pool[39752]: GetnTexImageARB (will be remapped) */
"iiiiip\0"
"glGetnTexImageARB\0"
"\0"
- /* _mesa_function_pool[39726]: ColorMask (offset 210) */
+ /* _mesa_function_pool[39778]: ColorMask (offset 210) */
"iiii\0"
"glColorMask\0"
"\0"
- /* _mesa_function_pool[39744]: GenAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[39796]: GenAsyncMarkersSGIX (dynamic) */
"i\0"
"glGenAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[39769]: Materialxv (will be remapped) */
+ /* _mesa_function_pool[39821]: Materialxv (will be remapped) */
"iip\0"
"glMaterialxvOES\0"
"glMaterialxv\0"
"\0"
- /* _mesa_function_pool[39803]: DebugMessageInsertARB (will be remapped) */
+ /* _mesa_function_pool[39855]: DebugMessageInsertARB (will be remapped) */
"iiiiip\0"
"glDebugMessageInsertARB\0"
"\0"
- /* _mesa_function_pool[39835]: GetListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[39887]: GetListParameterivSGIX (dynamic) */
"iip\0"
"glGetListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[39865]: GetInfoLogARB (will be remapped) */
+ /* _mesa_function_pool[39917]: GetInfoLogARB (will be remapped) */
"iipp\0"
"glGetInfoLogARB\0"
"\0"
- /* _mesa_function_pool[39887]: RasterPos4iv (offset 83) */
+ /* _mesa_function_pool[39939]: RasterPos4iv (offset 83) */
"p\0"
"glRasterPos4iv\0"
"\0"
- /* _mesa_function_pool[39905]: Enable (offset 215) */
+ /* _mesa_function_pool[39957]: Enable (offset 215) */
"i\0"
"glEnable\0"
"\0"
- /* _mesa_function_pool[39917]: GetRenderbufferParameteriv (will be remapped) */
+ /* _mesa_function_pool[39969]: GetRenderbufferParameteriv (will be remapped) */
"iip\0"
"glGetRenderbufferParameteriv\0"
"glGetRenderbufferParameterivEXT\0"
"glGetRenderbufferParameterivOES\0"
"\0"
- /* _mesa_function_pool[40015]: LineStipple (offset 167) */
+ /* _mesa_function_pool[40067]: LineStipple (offset 167) */
"ii\0"
"glLineStipple\0"
"\0"
- /* _mesa_function_pool[40033]: FragmentLightfSGIX (dynamic) */
+ /* _mesa_function_pool[40085]: FragmentLightfSGIX (dynamic) */
"iif\0"
"glFragmentLightfSGIX\0"
"\0"
- /* _mesa_function_pool[40059]: SetFenceNV (dynamic) */
+ /* _mesa_function_pool[40111]: SetFenceNV (dynamic) */
"ii\0"
"glSetFenceNV\0"
"\0"
- /* _mesa_function_pool[40076]: DepthRangeArrayv (will be remapped) */
+ /* _mesa_function_pool[40128]: DepthRangeArrayv (will be remapped) */
"iip\0"
"glDepthRangeArrayv\0"
"\0"
- /* _mesa_function_pool[40100]: VertexAttribs4svNV (will be remapped) */
+ /* _mesa_function_pool[40152]: VertexAttribs4svNV (will be remapped) */
"iip\0"
"glVertexAttribs4svNV\0"
"\0"
- /* _mesa_function_pool[40126]: GenRenderbuffers (will be remapped) */
+ /* _mesa_function_pool[40178]: GenRenderbuffers (will be remapped) */
"ip\0"
"glGenRenderbuffers\0"
"glGenRenderbuffersEXT\0"
"glGenRenderbuffersOES\0"
"\0"
- /* _mesa_function_pool[40193]: EdgeFlagPointerListIBM (dynamic) */
+ /* _mesa_function_pool[40245]: EdgeFlagPointerListIBM (dynamic) */
"ipi\0"
"glEdgeFlagPointerListIBM\0"
"\0"
- /* _mesa_function_pool[40223]: UniformMatrix4fv (will be remapped) */
+ /* _mesa_function_pool[40275]: UniformMatrix4fv (will be remapped) */
"iiip\0"
"glUniformMatrix4fv\0"
"glUniformMatrix4fvARB\0"
"\0"
- /* _mesa_function_pool[40270]: UniformMatrix3x2fv (will be remapped) */
+ /* _mesa_function_pool[40322]: UniformMatrix3x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x2fv\0"
"\0"
- /* _mesa_function_pool[40297]: GetMinmaxParameterfv (offset 365) */
+ /* _mesa_function_pool[40349]: GetMinmaxParameterfv (offset 365) */
"iip\0"
"glGetMinmaxParameterfv\0"
"glGetMinmaxParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[40351]: VertexAttrib4Nuiv (will be remapped) */
+ /* _mesa_function_pool[40403]: VertexAttrib4Nuiv (will be remapped) */
"ip\0"
"glVertexAttrib4Nuiv\0"
"glVertexAttrib4NuivARB\0"
"\0"
- /* _mesa_function_pool[40398]: ClientActiveTexture (offset 375) */
+ /* _mesa_function_pool[40450]: ClientActiveTexture (offset 375) */
"i\0"
"glClientActiveTexture\0"
"glClientActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[40448]: WindowPos2sv (will be remapped) */
+ /* _mesa_function_pool[40500]: WindowPos2sv (will be remapped) */
"p\0"
"glWindowPos2sv\0"
"glWindowPos2svARB\0"
"glWindowPos2svMESA\0"
"\0"
- /* _mesa_function_pool[40503]: Vertex3fv (offset 137) */
+ /* _mesa_function_pool[40555]: Vertex3fv (offset 137) */
"p\0"
"glVertex3fv\0"
"\0"
- /* _mesa_function_pool[40518]: GetUniformIndices (will be remapped) */
+ /* _mesa_function_pool[40570]: GetUniformIndices (will be remapped) */
"iipp\0"
"glGetUniformIndices\0"
"\0"
- /* _mesa_function_pool[40544]: GetTexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[40596]: GetTexBumpParameterivATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[40575]: SecondaryColor3sv (will be remapped) */
+ /* _mesa_function_pool[40627]: SecondaryColor3sv (will be remapped) */
"p\0"
"glSecondaryColor3sv\0"
"glSecondaryColor3svEXT\0"
"\0"
- /* _mesa_function_pool[40621]: Fogx (will be remapped) */
+ /* _mesa_function_pool[40673]: Fogx (will be remapped) */
"ii\0"
"glFogxOES\0"
"glFogx\0"
"\0"
- /* _mesa_function_pool[40642]: Binormal3bEXT (dynamic) */
+ /* _mesa_function_pool[40694]: Binormal3bEXT (dynamic) */
"iii\0"
"glBinormal3bEXT\0"
"\0"
- /* _mesa_function_pool[40663]: FragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[40715]: FragmentMaterialivSGIX (dynamic) */
"iip\0"
"glFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[40693]: WaitSync (will be remapped) */
+ /* _mesa_function_pool[40745]: WaitSync (will be remapped) */
"iii\0"
"glWaitSync\0"
"\0"
- /* _mesa_function_pool[40709]: CombinerParameterivNV (dynamic) */
+ /* _mesa_function_pool[40761]: CombinerParameterivNV (dynamic) */
"ip\0"
"glCombinerParameterivNV\0"
"\0"
- /* _mesa_function_pool[40737]: BindVertexBuffer (will be remapped) */
+ /* _mesa_function_pool[40789]: BindVertexBuffer (will be remapped) */
"iiii\0"
"glBindVertexBuffer\0"
"\0"
- /* _mesa_function_pool[40762]: MultiTexCoord2sv (offset 391) */
+ /* _mesa_function_pool[40814]: MultiTexCoord2sv (offset 391) */
"ip\0"
"glMultiTexCoord2sv\0"
"glMultiTexCoord2svARB\0"
"\0"
- /* _mesa_function_pool[40807]: DeformationMap3dSGIX (dynamic) */
+ /* _mesa_function_pool[40859]: DeformationMap3dSGIX (dynamic) */
"iddiiddiiddiip\0"
"glDeformationMap3dSGIX\0"
"\0"
- /* _mesa_function_pool[40846]: EndFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[40898]: EndFragmentShaderATI (will be remapped) */
"\0"
"glEndFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[40871]: Binormal3iEXT (dynamic) */
+ /* _mesa_function_pool[40923]: Binormal3iEXT (dynamic) */
"iii\0"
"glBinormal3iEXT\0"
"\0"
- /* _mesa_function_pool[40892]: Uniform4iv (will be remapped) */
+ /* _mesa_function_pool[40944]: Uniform4iv (will be remapped) */
"iip\0"
"glUniform4iv\0"
"glUniform4ivARB\0"
@@ -5809,37 +5817,37 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 3014, CompressedTexImage3D_remap_index },
{ 7897, CompressedTexSubImage1D_remap_index },
{ 4192, CompressedTexSubImage2D_remap_index },
- { 31470, CompressedTexSubImage3D_remap_index },
+ { 31499, CompressedTexSubImage3D_remap_index },
{ 15512, GetCompressedTexImage_remap_index },
{ 23374, LoadTransposeMatrixd_remap_index },
{ 23322, LoadTransposeMatrixf_remap_index },
- { 35556, MultTransposeMatrixd_remap_index },
- { 35608, MultTransposeMatrixf_remap_index },
- { 32999, SampleCoverage_remap_index },
+ { 35608, MultTransposeMatrixd_remap_index },
+ { 35660, MultTransposeMatrixf_remap_index },
+ { 33028, SampleCoverage_remap_index },
{ 12181, BlendFuncSeparate_remap_index },
{ 14445, FogCoordPointer_remap_index },
{ 17372, FogCoordd_remap_index },
- { 38115, FogCoorddv_remap_index },
- { 33158, MultiDrawArrays_remap_index },
+ { 38167, FogCoorddv_remap_index },
+ { 33187, MultiDrawArrays_remap_index },
{ 27282, PointParameterf_remap_index },
{ 18225, PointParameterfv_remap_index },
{ 27240, PointParameteri_remap_index },
- { 33366, PointParameteriv_remap_index },
+ { 33395, PointParameteriv_remap_index },
{ 19189, SecondaryColor3b_remap_index },
{ 15896, SecondaryColor3bv_remap_index },
- { 33437, SecondaryColor3d_remap_index },
+ { 33466, SecondaryColor3d_remap_index },
{ 3354, SecondaryColor3dv_remap_index },
- { 36556, SecondaryColor3i_remap_index },
+ { 36608, SecondaryColor3i_remap_index },
{ 22053, SecondaryColor3iv_remap_index },
{ 18896, SecondaryColor3s_remap_index },
- { 40575, SecondaryColor3sv_remap_index },
+ { 40627, SecondaryColor3sv_remap_index },
{ 16423, SecondaryColor3ub_remap_index },
{ 27192, SecondaryColor3ubv_remap_index },
- { 37077, SecondaryColor3ui_remap_index },
+ { 37129, SecondaryColor3ui_remap_index },
{ 4374, SecondaryColor3uiv_remap_index },
{ 14676, SecondaryColor3us_remap_index },
- { 37369, SecondaryColor3usv_remap_index },
- { 39569, SecondaryColorPointer_remap_index },
+ { 37421, SecondaryColor3usv_remap_index },
+ { 39621, SecondaryColorPointer_remap_index },
{ 2193, WindowPos2d_remap_index },
{ 19713, WindowPos2dv_remap_index },
{ 2121, WindowPos2f_remap_index },
@@ -5847,44 +5855,44 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 16741, WindowPos2i_remap_index },
{ 24370, WindowPos2iv_remap_index },
{ 2523, WindowPos2s_remap_index },
- { 40448, WindowPos2sv_remap_index },
+ { 40500, WindowPos2sv_remap_index },
{ 16282, WindowPos3d_remap_index },
{ 14313, WindowPos3dv_remap_index },
{ 16369, WindowPos3f_remap_index },
- { 32548, WindowPos3fv_remap_index },
+ { 32577, WindowPos3fv_remap_index },
{ 19135, WindowPos3i_remap_index },
- { 36654, WindowPos3iv_remap_index },
+ { 36706, WindowPos3iv_remap_index },
{ 16794, WindowPos3s_remap_index },
{ 7306, WindowPos3sv_remap_index },
{ 23853, BeginQuery_remap_index },
{ 12858, BindBuffer_remap_index },
- { 38328, BufferData_remap_index },
- { 39018, BufferSubData_remap_index },
+ { 38380, BufferData_remap_index },
+ { 39070, BufferSubData_remap_index },
{ 28564, DeleteBuffers_remap_index },
- { 38363, DeleteQueries_remap_index },
- { 29483, EndQuery_remap_index },
+ { 38415, DeleteQueries_remap_index },
+ { 29512, EndQuery_remap_index },
{ 25946, GenBuffers_remap_index },
{ 2865, GenQueries_remap_index },
{ 19482, GetBufferParameteriv_remap_index },
- { 32056, GetBufferPointerv_remap_index },
+ { 32085, GetBufferPointerv_remap_index },
{ 28715, GetBufferSubData_remap_index },
- { 31141, GetQueryObjectiv_remap_index },
- { 29087, GetQueryObjectuiv_remap_index },
+ { 31170, GetQueryObjectiv_remap_index },
+ { 29116, GetQueryObjectuiv_remap_index },
{ 3946, GetQueryiv_remap_index },
{ 24513, IsBuffer_remap_index },
{ 21212, IsQuery_remap_index },
{ 4553, MapBuffer_remap_index },
- { 34471, UnmapBuffer_remap_index },
+ { 34523, UnmapBuffer_remap_index },
{ 1380, AttachShader_remap_index },
{ 6623, BindAttribLocation_remap_index },
{ 26184, BlendEquationSeparate_remap_index },
{ 23193, CompileShader_remap_index },
{ 12103, CreateProgram_remap_index },
{ 27690, CreateShader_remap_index },
- { 30705, DeleteProgram_remap_index },
- { 31350, DeleteShader_remap_index },
- { 32893, DetachShader_remap_index },
- { 38775, DisableVertexAttribArray_remap_index },
+ { 30734, DeleteProgram_remap_index },
+ { 31379, DeleteShader_remap_index },
+ { 32922, DetachShader_remap_index },
+ { 38827, DisableVertexAttribArray_remap_index },
{ 13421, DrawBuffers_remap_index },
{ 26879, EnableVertexAttribArray_remap_index },
{ 9357, GetActiveAttrib_remap_index },
@@ -5911,33 +5919,33 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 4527, StencilMaskSeparate_remap_index },
{ 9781, StencilOpSeparate_remap_index },
{ 22436, Uniform1f_remap_index },
- { 31867, Uniform1fv_remap_index },
+ { 31896, Uniform1fv_remap_index },
{ 22590, Uniform1i_remap_index },
- { 32352, Uniform1iv_remap_index },
- { 31396, Uniform2f_remap_index },
+ { 32381, Uniform1iv_remap_index },
+ { 31425, Uniform2f_remap_index },
{ 854, Uniform2fv_remap_index },
- { 31688, Uniform2i_remap_index },
- { 33610, Uniform2iv_remap_index },
+ { 31717, Uniform2i_remap_index },
+ { 33639, Uniform2iv_remap_index },
{ 3205, Uniform3f_remap_index },
{ 13517, Uniform3fv_remap_index },
{ 19008, Uniform3i_remap_index },
{ 17558, Uniform3iv_remap_index },
- { 39224, Uniform4f_remap_index },
+ { 39276, Uniform4f_remap_index },
{ 5737, Uniform4fv_remap_index },
{ 16968, Uniform4i_remap_index },
- { 40892, Uniform4iv_remap_index },
+ { 40944, Uniform4iv_remap_index },
{ 3238, UniformMatrix2fv_remap_index },
{ 3672, UniformMatrix3fv_remap_index },
- { 40223, UniformMatrix4fv_remap_index },
+ { 40275, UniformMatrix4fv_remap_index },
{ 23128, UseProgram_remap_index },
{ 8918, ValidateProgram_remap_index },
{ 26522, VertexAttrib1d_remap_index },
{ 14174, VertexAttrib1dv_remap_index },
{ 26838, VertexAttrib1s_remap_index },
{ 1808, VertexAttrib1sv_remap_index },
- { 31428, VertexAttrib2d_remap_index },
+ { 31457, VertexAttrib2d_remap_index },
{ 6095, VertexAttrib2dv_remap_index },
- { 31187, VertexAttrib2s_remap_index },
+ { 31216, VertexAttrib2s_remap_index },
{ 12914, VertexAttrib2sv_remap_index },
{ 4005, VertexAttrib3d_remap_index },
{ 578, VertexAttrib3dv_remap_index },
@@ -5945,62 +5953,62 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 21144, VertexAttrib3sv_remap_index },
{ 4640, VertexAttrib4Nbv_remap_index },
{ 22170, VertexAttrib4Niv_remap_index },
- { 34269, VertexAttrib4Nsv_remap_index },
+ { 34321, VertexAttrib4Nsv_remap_index },
{ 5621, VertexAttrib4Nub_remap_index },
- { 37030, VertexAttrib4Nubv_remap_index },
- { 40351, VertexAttrib4Nuiv_remap_index },
+ { 37082, VertexAttrib4Nubv_remap_index },
+ { 40403, VertexAttrib4Nuiv_remap_index },
{ 6138, VertexAttrib4Nusv_remap_index },
- { 34763, VertexAttrib4bv_remap_index },
+ { 34815, VertexAttrib4bv_remap_index },
{ 22673, VertexAttrib4d_remap_index },
{ 21557, VertexAttrib4dv_remap_index },
{ 17827, VertexAttrib4iv_remap_index },
{ 23002, VertexAttrib4s_remap_index },
- { 29986, VertexAttrib4sv_remap_index },
- { 33113, VertexAttrib4ubv_remap_index },
- { 34224, VertexAttrib4uiv_remap_index },
+ { 30015, VertexAttrib4sv_remap_index },
+ { 33142, VertexAttrib4ubv_remap_index },
+ { 34276, VertexAttrib4uiv_remap_index },
{ 5373, VertexAttrib4usv_remap_index },
{ 18756, VertexAttribPointer_remap_index },
{ 26734, UniformMatrix2x3fv_remap_index },
- { 33410, UniformMatrix2x4fv_remap_index },
- { 40270, UniformMatrix3x2fv_remap_index },
- { 37172, UniformMatrix3x4fv_remap_index },
+ { 33439, UniformMatrix2x4fv_remap_index },
+ { 40322, UniformMatrix3x2fv_remap_index },
+ { 37224, UniformMatrix3x4fv_remap_index },
{ 19081, UniformMatrix4x2fv_remap_index },
{ 3750, UniformMatrix4x3fv_remap_index },
{ 20694, BeginConditionalRender_remap_index },
{ 9157, BeginTransformFeedback_remap_index },
{ 6832, BindBufferBase_remap_index },
- { 30753, BindBufferRange_remap_index },
+ { 30782, BindBufferRange_remap_index },
{ 1851, BindFragDataLocation_remap_index },
{ 6533, ClampColor_remap_index },
{ 7110, ClearBufferfi_remap_index },
{ 21238, ClearBufferfv_remap_index },
- { 35906, ClearBufferiv_remap_index },
+ { 35958, ClearBufferiv_remap_index },
{ 16048, ClearBufferuiv_remap_index },
{ 9315, ColorMaski_remap_index },
- { 29864, Disablei_remap_index },
+ { 29893, Disablei_remap_index },
{ 16336, Enablei_remap_index },
- { 32006, EndConditionalRender_remap_index },
+ { 32035, EndConditionalRender_remap_index },
{ 28983, EndTransformFeedback_remap_index },
{ 17181, GetBooleani_v_remap_index },
{ 23624, GetFragDataLocation_remap_index },
- { 36156, GetIntegeri_v_remap_index },
+ { 36208, GetIntegeri_v_remap_index },
{ 24241, GetStringi_remap_index },
- { 30107, GetTexParameterIiv_remap_index },
+ { 30136, GetTexParameterIiv_remap_index },
{ 13968, GetTexParameterIuiv_remap_index },
- { 38230, GetTransformFeedbackVarying_remap_index },
+ { 38282, GetTransformFeedbackVarying_remap_index },
{ 10212, GetUniformuiv_remap_index },
- { 37952, GetVertexAttribIiv_remap_index },
+ { 38004, GetVertexAttribIiv_remap_index },
{ 2933, GetVertexAttribIuiv_remap_index },
- { 38421, IsEnabledi_remap_index },
+ { 38473, IsEnabledi_remap_index },
{ 10648, TexParameterIiv_remap_index },
- { 37613, TexParameterIuiv_remap_index },
+ { 37665, TexParameterIuiv_remap_index },
{ 3455, TransformFeedbackVaryings_remap_index },
{ 16094, Uniform1ui_remap_index },
{ 17464, Uniform1uiv_remap_index },
{ 24863, Uniform2ui_remap_index },
{ 15970, Uniform2uiv_remap_index },
- { 38479, Uniform3ui_remap_index },
- { 30414, Uniform3uiv_remap_index },
+ { 38531, Uniform3ui_remap_index },
+ { 30443, Uniform3uiv_remap_index },
{ 4788, Uniform4ui_remap_index },
{ 26038, Uniform4uiv_remap_index },
{ 7467, VertexAttribI1iv_remap_index },
@@ -6009,35 +6017,35 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 9014, VertexAttribI4sv_remap_index },
{ 24594, VertexAttribI4ubv_remap_index },
{ 1905, VertexAttribI4usv_remap_index },
- { 37313, VertexAttribIPointer_remap_index },
- { 35820, PrimitiveRestartIndex_remap_index },
+ { 37365, VertexAttribIPointer_remap_index },
+ { 35872, PrimitiveRestartIndex_remap_index },
{ 437, TexBuffer_remap_index },
{ 6329, FramebufferTexture_remap_index },
- { 31821, GetBufferParameteri64v_remap_index },
+ { 31850, GetBufferParameteri64v_remap_index },
{ 12344, GetInteger64i_v_remap_index },
{ 3874, VertexAttribDivisor_remap_index },
- { 35512, MinSampleShading_remap_index },
+ { 35564, MinSampleShading_remap_index },
{ 28298, BindProgramARB_remap_index },
- { 32641, DeleteProgramsARB_remap_index },
+ { 32670, DeleteProgramsARB_remap_index },
{ 16500, GenProgramsARB_remap_index },
{ 11976, GetProgramEnvParameterdvARB_remap_index },
{ 28428, GetProgramEnvParameterfvARB_remap_index },
- { 33250, GetProgramLocalParameterdvARB_remap_index },
+ { 33279, GetProgramLocalParameterdvARB_remap_index },
{ 10128, GetProgramLocalParameterfvARB_remap_index },
{ 22242, GetProgramStringARB_remap_index },
- { 33538, GetProgramivARB_remap_index },
- { 34192, IsProgramARB_remap_index },
+ { 33567, GetProgramivARB_remap_index },
+ { 34244, IsProgramARB_remap_index },
{ 23510, ProgramEnvParameter4dARB_remap_index },
- { 30341, ProgramEnvParameter4dvARB_remap_index },
+ { 30370, ProgramEnvParameter4dvARB_remap_index },
{ 20160, ProgramEnvParameter4fARB_remap_index },
{ 11073, ProgramEnvParameter4fvARB_remap_index },
{ 4685, ProgramLocalParameter4dARB_remap_index },
{ 15592, ProgramLocalParameter4dvARB_remap_index },
- { 35927, ProgramLocalParameter4fARB_remap_index },
- { 31251, ProgramLocalParameter4fvARB_remap_index },
- { 34354, ProgramStringARB_remap_index },
+ { 35979, ProgramLocalParameter4fARB_remap_index },
+ { 31280, ProgramLocalParameter4fvARB_remap_index },
+ { 34406, ProgramStringARB_remap_index },
{ 4983, VertexAttrib1fARB_remap_index },
- { 35251, VertexAttrib1fvARB_remap_index },
+ { 35303, VertexAttrib1fvARB_remap_index },
{ 1486, VertexAttrib2fARB_remap_index },
{ 10055, VertexAttrib2fvARB_remap_index },
{ 1565, VertexAttrib3fARB_remap_index },
@@ -6046,68 +6054,68 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 14131, VertexAttrib4fvARB_remap_index },
{ 10324, AttachObjectARB_remap_index },
{ 3645, CreateProgramObjectARB_remap_index },
- { 37807, CreateShaderObjectARB_remap_index },
+ { 37859, CreateShaderObjectARB_remap_index },
{ 17106, DeleteObjectARB_remap_index },
{ 28941, DetachObjectARB_remap_index },
{ 11534, GetAttachedObjectsARB_remap_index },
{ 11837, GetHandleARB_remap_index },
- { 39865, GetInfoLogARB_remap_index },
- { 38952, GetObjectParameterfvARB_remap_index },
- { 33040, GetObjectParameterivARB_remap_index },
+ { 39917, GetInfoLogARB_remap_index },
+ { 39004, GetObjectParameterfvARB_remap_index },
+ { 33069, GetObjectParameterivARB_remap_index },
{ 21654, DrawArraysInstancedARB_remap_index },
{ 8360, DrawElementsInstancedARB_remap_index },
{ 12060, BindFramebuffer_remap_index },
- { 33675, BindRenderbuffer_remap_index },
- { 37659, BlitFramebuffer_remap_index },
+ { 33704, BindRenderbuffer_remap_index },
+ { 37711, BlitFramebuffer_remap_index },
{ 28043, CheckFramebufferStatus_remap_index },
- { 33894, DeleteFramebuffers_remap_index },
+ { 33923, DeleteFramebuffers_remap_index },
{ 5056, DeleteRenderbuffers_remap_index },
- { 34102, FramebufferRenderbuffer_remap_index },
+ { 34154, FramebufferRenderbuffer_remap_index },
{ 1430, FramebufferTexture1D_remap_index },
{ 27831, FramebufferTexture2D_remap_index },
{ 19235, FramebufferTexture3D_remap_index },
{ 14846, FramebufferTextureLayer_remap_index },
{ 25882, GenFramebuffers_remap_index },
- { 40126, GenRenderbuffers_remap_index },
- { 30450, GenerateMipmap_remap_index },
+ { 40178, GenRenderbuffers_remap_index },
+ { 30479, GenerateMipmap_remap_index },
{ 20260, GetFramebufferAttachmentParameteriv_remap_index },
- { 39917, GetRenderbufferParameteriv_remap_index },
+ { 39969, GetRenderbufferParameteriv_remap_index },
{ 26074, IsFramebuffer_remap_index },
{ 14601, IsRenderbuffer_remap_index },
{ 2591, RenderbufferStorage_remap_index },
{ 15697, RenderbufferStorageMultisample_remap_index },
- { 31091, FramebufferTextureFaceARB_remap_index },
+ { 31120, FramebufferTextureFaceARB_remap_index },
{ 20019, FlushMappedBufferRange_remap_index },
- { 35416, MapBufferRange_remap_index },
+ { 35468, MapBufferRange_remap_index },
{ 19365, BindVertexArray_remap_index },
{ 25002, DeleteVertexArrays_remap_index },
{ 24659, GenVertexArrays_remap_index },
{ 21308, IsVertexArray_remap_index },
{ 14020, GetActiveUniformBlockName_remap_index },
{ 6430, GetActiveUniformBlockiv_remap_index },
- { 32322, GetActiveUniformName_remap_index },
+ { 32351, GetActiveUniformName_remap_index },
{ 12829, GetActiveUniformsiv_remap_index },
- { 32834, GetUniformBlockIndex_remap_index },
- { 40518, GetUniformIndices_remap_index },
+ { 32863, GetUniformBlockIndex_remap_index },
+ { 40570, GetUniformIndices_remap_index },
{ 6027, UniformBlockBinding_remap_index },
- { 36852, CopyBufferSubData_remap_index },
- { 38002, ClientWaitSync_remap_index },
+ { 36904, CopyBufferSubData_remap_index },
+ { 38054, ClientWaitSync_remap_index },
{ 2824, DeleteSync_remap_index },
{ 9213, FenceSync_remap_index },
{ 17982, GetInteger64v_remap_index },
{ 27149, GetSynciv_remap_index },
- { 35792, IsSync_remap_index },
- { 40693, WaitSync_remap_index },
- { 36736, DrawElementsBaseVertex_remap_index },
+ { 35844, IsSync_remap_index },
+ { 40745, WaitSync_remap_index },
+ { 36788, DrawElementsBaseVertex_remap_index },
{ 22313, DrawElementsInstancedBaseVertex_remap_index },
- { 37274, DrawRangeElementsBaseVertex_remap_index },
- { 31720, MultiDrawElementsBaseVertex_remap_index },
+ { 37326, DrawRangeElementsBaseVertex_remap_index },
+ { 31749, MultiDrawElementsBaseVertex_remap_index },
{ 19602, ProvokingVertex_remap_index },
{ 21367, GetMultisamplefv_remap_index },
{ 6185, SampleMaski_remap_index },
{ 7728, TexImage2DMultisample_remap_index },
- { 30523, TexImage3DMultisample_remap_index },
- { 30861, BlendEquationSeparateiARB_remap_index },
+ { 30552, TexImage3DMultisample_remap_index },
+ { 30890, BlendEquationSeparateiARB_remap_index },
{ 21448, BlendEquationiARB_remap_index },
{ 15078, BlendFuncSeparateiARB_remap_index },
{ 11933, BlendFunciARB_remap_index },
@@ -6119,7 +6127,7 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 16907, GetSamplerParameterIiv_remap_index },
{ 23046, GetSamplerParameterIuiv_remap_index },
{ 6066, GetSamplerParameterfv_remap_index },
- { 30724, GetSamplerParameteriv_remap_index },
+ { 30753, GetSamplerParameteriv_remap_index },
{ 16937, IsSampler_remap_index },
{ 19318, SamplerParameterIiv_remap_index },
{ 6246, SamplerParameterIuiv_remap_index },
@@ -6131,7 +6139,7 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 385, GetQueryObjectui64v_remap_index },
{ 7961, QueryCounter_remap_index },
{ 17002, ColorP3ui_remap_index },
- { 37596, ColorP3uiv_remap_index },
+ { 37648, ColorP3uiv_remap_index },
{ 24800, ColorP4ui_remap_index },
{ 16006, ColorP4uiv_remap_index },
{ 11509, MultiTexCoordP1ui_remap_index },
@@ -6144,7 +6152,7 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 16162, MultiTexCoordP4uiv_remap_index },
{ 12536, NormalP3ui_remap_index },
{ 22829, NormalP3uiv_remap_index },
- { 29746, SecondaryColorP3ui_remap_index },
+ { 29775, SecondaryColorP3ui_remap_index },
{ 22847, SecondaryColorP3uiv_remap_index },
{ 888, TexCoordP1ui_remap_index },
{ 2459, TexCoordP1uiv_remap_index },
@@ -6157,31 +6165,31 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 15430, VertexAttribP1ui_remap_index },
{ 15855, VertexAttribP1uiv_remap_index },
{ 9886, VertexAttribP2ui_remap_index },
- { 34737, VertexAttribP2uiv_remap_index },
+ { 34789, VertexAttribP2uiv_remap_index },
{ 5712, VertexAttribP3ui_remap_index },
- { 31608, VertexAttribP3uiv_remap_index },
+ { 31637, VertexAttribP3uiv_remap_index },
{ 16848, VertexAttribP4ui_remap_index },
{ 18845, VertexAttribP4uiv_remap_index },
{ 6229, VertexP2ui_remap_index },
- { 37417, VertexP2uiv_remap_index },
+ { 37469, VertexP2uiv_remap_index },
{ 3438, VertexP3ui_remap_index },
{ 23956, VertexP3uiv_remap_index },
{ 11492, VertexP4ui_remap_index },
- { 39381, VertexP4uiv_remap_index },
+ { 39433, VertexP4uiv_remap_index },
{ 2840, DrawArraysIndirect_remap_index },
{ 7188, DrawElementsIndirect_remap_index },
{ 6774, BindTransformFeedback_remap_index },
{ 12394, DeleteTransformFeedbacks_remap_index },
{ 8332, DrawTransformFeedback_remap_index },
{ 11727, GenTransformFeedbacks_remap_index },
- { 36238, IsTransformFeedback_remap_index },
- { 31323, PauseTransformFeedback_remap_index },
- { 36479, ResumeTransformFeedback_remap_index },
+ { 36290, IsTransformFeedback_remap_index },
+ { 31352, PauseTransformFeedback_remap_index },
+ { 36531, ResumeTransformFeedback_remap_index },
{ 2479, BeginQueryIndexed_remap_index },
{ 28127, DrawTransformFeedbackStream_remap_index },
{ 18109, EndQueryIndexed_remap_index },
{ 321, GetQueryIndexediv_remap_index },
- { 32912, ClearDepthf_remap_index },
+ { 32941, ClearDepthf_remap_index },
{ 8617, DepthRangef_remap_index },
{ 17127, GetShaderPrecisionFormat_remap_index },
{ 12121, ReleaseShaderCompiler_remap_index },
@@ -6189,49 +6197,49 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 19434, GetProgramBinary_remap_index },
{ 4722, ProgramBinary_remap_index },
{ 5325, ProgramParameteri_remap_index },
- { 40076, DepthRangeArrayv_remap_index },
- { 31901, DepthRangeIndexed_remap_index },
- { 38998, GetDoublei_v_remap_index },
+ { 40128, DepthRangeArrayv_remap_index },
+ { 31930, DepthRangeIndexed_remap_index },
+ { 39050, GetDoublei_v_remap_index },
{ 22269, GetFloati_v_remap_index },
- { 33589, ScissorArrayv_remap_index },
+ { 33618, ScissorArrayv_remap_index },
{ 12553, ScissorIndexed_remap_index },
{ 23911, ScissorIndexedv_remap_index },
{ 672, ViewportArrayv_remap_index },
{ 7539, ViewportIndexedf_remap_index },
- { 32524, ViewportIndexedfv_remap_index },
+ { 32553, ViewportIndexedfv_remap_index },
{ 1217, DebugMessageCallbackARB_remap_index },
{ 11855, DebugMessageControlARB_remap_index },
- { 39803, DebugMessageInsertARB_remap_index },
+ { 39855, DebugMessageInsertARB_remap_index },
{ 3100, GetDebugMessageLogARB_remap_index },
- { 34681, GetGraphicsResetStatusARB_remap_index },
- { 29585, GetnColorTableARB_remap_index },
+ { 34733, GetGraphicsResetStatusARB_remap_index },
+ { 29614, GetnColorTableARB_remap_index },
{ 9976, GetnCompressedTexImageARB_remap_index },
{ 4422, GetnConvolutionFilterARB_remap_index },
{ 18537, GetnHistogramARB_remap_index },
{ 28335, GetnMapdvARB_remap_index },
- { 35114, GetnMapfvARB_remap_index },
+ { 35166, GetnMapfvARB_remap_index },
{ 2080, GetnMapivARB_remap_index },
{ 20633, GetnMinmaxARB_remap_index },
{ 14238, GetnPixelMapfvARB_remap_index },
{ 22976, GetnPixelMapuivARB_remap_index },
- { 35766, GetnPixelMapusvARB_remap_index },
+ { 35818, GetnPixelMapusvARB_remap_index },
{ 1139, GetnPolygonStippleARB_remap_index },
{ 25455, GetnSeparableFilterARB_remap_index },
- { 39700, GetnTexImageARB_remap_index },
+ { 39752, GetnTexImageARB_remap_index },
{ 22288, GetnUniformdvARB_remap_index },
{ 9244, GetnUniformfvARB_remap_index },
{ 12011, GetnUniformivARB_remap_index },
{ 8306, GetnUniformuivARB_remap_index },
{ 3285, ReadnPixelsARB_remap_index },
{ 22764, DrawArraysInstancedBaseInstance_remap_index },
- { 35678, DrawElementsInstancedBaseInstance_remap_index },
+ { 35730, DrawElementsInstancedBaseInstance_remap_index },
{ 9709, DrawElementsInstancedBaseVertexBaseInstance_remap_index },
{ 7132, DrawTransformFeedbackInstanced_remap_index },
{ 10010, DrawTransformFeedbackStreamInstanced_remap_index },
- { 36049, GetInternalformativ_remap_index },
- { 31649, GetActiveAtomicCounterBufferiv_remap_index },
- { 31368, BindImageTexture_remap_index },
- { 38727, MemoryBarrier_remap_index },
+ { 36101, GetInternalformativ_remap_index },
+ { 31678, GetActiveAtomicCounterBufferiv_remap_index },
+ { 31397, BindImageTexture_remap_index },
+ { 38779, MemoryBarrier_remap_index },
{ 1072, TexStorage1D_remap_index },
{ 5265, TexStorage2D_remap_index },
{ 19058, TexStorage3D_remap_index },
@@ -6240,13 +6248,15 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 1399, TextureStorage3DEXT_remap_index },
{ 21187, ClearBufferData_remap_index },
{ 8276, ClearBufferSubData_remap_index },
+ { 33996, DispatchCompute_remap_index },
+ { 29087, DispatchComputeIndirect_remap_index },
{ 5771, TextureView_remap_index },
- { 40737, BindVertexBuffer_remap_index },
+ { 40789, BindVertexBuffer_remap_index },
{ 8490, VertexAttribBinding_remap_index },
{ 12611, VertexAttribFormat_remap_index },
{ 22099, VertexAttribIFormat_remap_index },
{ 11699, VertexAttribLFormat_remap_index },
- { 34075, VertexBindingDivisor_remap_index },
+ { 34127, VertexBindingDivisor_remap_index },
{ 15480, MultiDrawArraysIndirect_remap_index },
{ 27002, MultiDrawElementsIndirect_remap_index },
{ 26641, TexBufferRange_remap_index },
@@ -6254,7 +6264,7 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 23675, TexStorage3DMultisample_remap_index },
{ 25490, InvalidateBufferData_remap_index },
{ 18977, InvalidateBufferSubData_remap_index },
- { 38514, InvalidateFramebuffer_remap_index },
+ { 38566, InvalidateFramebuffer_remap_index },
{ 24722, InvalidateSubFramebuffer_remap_index },
{ 4763, InvalidateTexImage_remap_index },
{ 13870, InvalidateTexSubImage_remap_index },
@@ -6269,7 +6279,7 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 12990, DrawTexxvOES_remap_index },
{ 2373, PointSizePointerOES_remap_index },
{ 13270, QueryMatrixxOES_remap_index },
- { 30976, SampleMaskSGIS_remap_index },
+ { 31005, SampleMaskSGIS_remap_index },
{ 24758, SamplePatternSGIS_remap_index },
{ 23886, ColorPointerEXT_remap_index },
{ 21282, EdgeFlagPointerEXT_remap_index },
@@ -6278,72 +6288,72 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 18605, TexCoordPointerEXT_remap_index },
{ 8960, VertexPointerEXT_remap_index },
{ 6709, DiscardFramebufferEXT_remap_index },
- { 39076, LockArraysEXT_remap_index },
+ { 39128, LockArraysEXT_remap_index },
{ 26621, UnlockArraysEXT_remap_index },
{ 7994, DebugMessageCallback_remap_index },
- { 34806, DebugMessageControl_remap_index },
+ { 34858, DebugMessageControl_remap_index },
{ 21807, DebugMessageInsert_remap_index },
{ 27395, GetDebugMessageLog_remap_index },
{ 26396, GetObjectLabel_remap_index },
{ 5239, GetObjectPtrLabel_remap_index },
- { 31303, ObjectLabel_remap_index },
- { 39156, ObjectPtrLabel_remap_index },
+ { 31332, ObjectLabel_remap_index },
+ { 39208, ObjectPtrLabel_remap_index },
{ 26131, PopDebugGroup_remap_index },
- { 36507, PushDebugGroup_remap_index },
- { 33967, SecondaryColor3fEXT_remap_index },
+ { 36559, PushDebugGroup_remap_index },
+ { 34019, SecondaryColor3fEXT_remap_index },
{ 21989, SecondaryColor3fvEXT_remap_index },
{ 25302, MultiDrawElementsEXT_remap_index },
{ 5826, FogCoordfEXT_remap_index },
- { 32861, FogCoordfvEXT_remap_index },
+ { 32890, FogCoordfvEXT_remap_index },
{ 15030, ResizeBuffersMESA_remap_index },
{ 13397, WindowPos4dMESA_remap_index },
{ 7239, WindowPos4dvMESA_remap_index },
{ 16655, WindowPos4fMESA_remap_index },
- { 37503, WindowPos4fvMESA_remap_index },
- { 37006, WindowPos4iMESA_remap_index },
+ { 37555, WindowPos4fvMESA_remap_index },
+ { 37058, WindowPos4iMESA_remap_index },
{ 14824, WindowPos4ivMESA_remap_index },
{ 22952, WindowPos4sMESA_remap_index },
{ 3623, WindowPos4svMESA_remap_index },
{ 23245, MultiModeDrawArraysIBM_remap_index },
- { 35203, MultiModeDrawElementsIBM_remap_index },
- { 38746, AreProgramsResidentNV_remap_index },
+ { 35255, MultiModeDrawElementsIBM_remap_index },
+ { 38798, AreProgramsResidentNV_remap_index },
{ 25597, ExecuteProgramNV_remap_index },
{ 19768, GetProgramParameterdvNV_remap_index },
{ 12797, GetProgramParameterfvNV_remap_index },
- { 31582, GetProgramStringNV_remap_index },
- { 29313, GetProgramivNV_remap_index },
+ { 31611, GetProgramStringNV_remap_index },
+ { 29342, GetProgramivNV_remap_index },
{ 28463, GetTrackMatrixivNV_remap_index },
{ 12367, GetVertexAttribdvNV_remap_index },
{ 22717, GetVertexAttribfvNV_remap_index },
{ 22215, GetVertexAttribivNV_remap_index },
{ 11458, LoadProgramNV_remap_index },
- { 33720, ProgramParameters4dvNV_remap_index },
- { 35330, ProgramParameters4fvNV_remap_index },
+ { 33749, ProgramParameters4dvNV_remap_index },
+ { 35382, ProgramParameters4fvNV_remap_index },
{ 25104, RequestResidentProgramsNV_remap_index },
{ 556, TrackMatrixNV_remap_index },
{ 13175, VertexAttrib1dNV_remap_index },
{ 16070, VertexAttrib1dvNV_remap_index },
- { 31039, VertexAttrib1fNV_remap_index },
+ { 31068, VertexAttrib1fNV_remap_index },
{ 24897, VertexAttrib1fvNV_remap_index },
- { 37560, VertexAttrib1sNV_remap_index },
+ { 37612, VertexAttrib1sNV_remap_index },
{ 27168, VertexAttrib1svNV_remap_index },
- { 38091, VertexAttrib2dNV_remap_index },
+ { 38143, VertexAttrib2dNV_remap_index },
{ 23104, VertexAttrib2dvNV_remap_index },
{ 24541, VertexAttrib2fNV_remap_index },
{ 15568, VertexAttrib2fvNV_remap_index },
{ 7807, VertexAttrib2sNV_remap_index },
{ 22805, VertexAttrib2svNV_remap_index },
{ 13608, VertexAttrib3dNV_remap_index },
- { 38928, VertexAttrib3dvNV_remap_index },
+ { 38980, VertexAttrib3dvNV_remap_index },
{ 19800, VertexAttrib3fNV_remap_index },
- { 29612, VertexAttrib3fvNV_remap_index },
+ { 29641, VertexAttrib3fvNV_remap_index },
{ 28356, VertexAttrib3sNV_remap_index },
{ 28490, VertexAttrib3svNV_remap_index },
- { 35177, VertexAttrib4dNV_remap_index },
+ { 35229, VertexAttrib4dNV_remap_index },
{ 13198, VertexAttrib4dvNV_remap_index },
{ 5495, VertexAttrib4fNV_remap_index },
{ 23829, VertexAttrib4fvNV_remap_index },
- { 32232, VertexAttrib4sNV_remap_index },
+ { 32261, VertexAttrib4sNV_remap_index },
{ 1247, VertexAttrib4svNV_remap_index },
{ 6462, VertexAttrib4ubNV_remap_index },
{ 694, VertexAttrib4ubvNV_remap_index },
@@ -6352,61 +6362,61 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 22873, VertexAttribs1fvNV_remap_index },
{ 24816, VertexAttribs1svNV_remap_index },
{ 12665, VertexAttribs2dvNV_remap_index },
- { 36407, VertexAttribs2fvNV_remap_index },
+ { 36459, VertexAttribs2fvNV_remap_index },
{ 4824, VertexAttribs2svNV_remap_index },
{ 7007, VertexAttribs3dvNV_remap_index },
{ 11783, VertexAttribs3fvNV_remap_index },
{ 12585, VertexAttribs3svNV_remap_index },
{ 21118, VertexAttribs4dvNV_remap_index },
{ 7033, VertexAttribs4fvNV_remap_index },
- { 40100, VertexAttribs4svNV_remap_index },
- { 36078, VertexAttribs4ubvNV_remap_index },
+ { 40152, VertexAttribs4svNV_remap_index },
+ { 36130, VertexAttribs4ubvNV_remap_index },
{ 28267, GetTexBumpParameterfvATI_remap_index },
- { 40544, GetTexBumpParameterivATI_remap_index },
+ { 40596, GetTexBumpParameterivATI_remap_index },
{ 22389, TexBumpParameterfvATI_remap_index },
{ 24921, TexBumpParameterivATI_remap_index },
{ 18489, AlphaFragmentOp1ATI_remap_index },
- { 30928, AlphaFragmentOp2ATI_remap_index },
- { 29528, AlphaFragmentOp3ATI_remap_index },
+ { 30957, AlphaFragmentOp2ATI_remap_index },
+ { 29557, AlphaFragmentOp3ATI_remap_index },
{ 16628, BeginFragmentShaderATI_remap_index },
{ 11906, BindFragmentShaderATI_remap_index },
{ 7776, ColorFragmentOp1ATI_remap_index },
{ 7649, ColorFragmentOp2ATI_remap_index },
- { 38614, ColorFragmentOp3ATI_remap_index },
+ { 38666, ColorFragmentOp3ATI_remap_index },
{ 7361, DeleteFragmentShaderATI_remap_index },
- { 40846, EndFragmentShaderATI_remap_index },
+ { 40898, EndFragmentShaderATI_remap_index },
{ 28195, GenFragmentShadersATI_remap_index },
- { 30682, PassTexCoordATI_remap_index },
+ { 30711, PassTexCoordATI_remap_index },
{ 8898, SampleMapATI_remap_index },
- { 32711, SetFragmentShaderConstantATI_remap_index },
- { 35006, ActiveStencilFaceEXT_remap_index },
- { 33224, BindVertexArrayAPPLE_remap_index },
+ { 32740, SetFragmentShaderConstantATI_remap_index },
+ { 35058, ActiveStencilFaceEXT_remap_index },
+ { 33253, BindVertexArrayAPPLE_remap_index },
{ 20218, GenVertexArraysAPPLE_remap_index },
{ 735, GetProgramNamedParameterdvNV_remap_index },
{ 4121, GetProgramNamedParameterfvNV_remap_index },
- { 32466, ProgramNamedParameter4dNV_remap_index },
+ { 32495, ProgramNamedParameter4dNV_remap_index },
{ 17226, ProgramNamedParameter4dvNV_remap_index },
{ 10962, ProgramNamedParameter4fNV_remap_index },
{ 14096, ProgramNamedParameter4fvNV_remap_index },
{ 21259, PrimitiveRestartNV_remap_index },
{ 18449, GetTexGenxvOES_remap_index },
{ 12440, TexGenxOES_remap_index },
- { 33347, TexGenxvOES_remap_index },
- { 29292, DepthBoundsEXT_remap_index },
+ { 33376, TexGenxvOES_remap_index },
+ { 29321, DepthBoundsEXT_remap_index },
{ 17439, BindFramebufferEXT_remap_index },
- { 31013, BindRenderbufferEXT_remap_index },
+ { 31042, BindRenderbufferEXT_remap_index },
{ 17018, BufferParameteriAPPLE_remap_index },
{ 23426, FlushMappedBufferRangeAPPLE_remap_index },
{ 22127, VertexAttribI1iEXT_remap_index },
{ 2731, VertexAttribI1uiEXT_remap_index },
- { 34568, VertexAttribI2iEXT_remap_index },
+ { 34620, VertexAttribI2iEXT_remap_index },
{ 28805, VertexAttribI2ivEXT_remap_index },
{ 14534, VertexAttribI2uiEXT_remap_index },
{ 28381, VertexAttribI2uivEXT_remap_index },
- { 31961, VertexAttribI3iEXT_remap_index },
- { 37229, VertexAttribI3ivEXT_remap_index },
+ { 31990, VertexAttribI3iEXT_remap_index },
+ { 37281, VertexAttribI3ivEXT_remap_index },
{ 3827, VertexAttribI3uiEXT_remap_index },
- { 37125, VertexAttribI3uivEXT_remap_index },
+ { 37177, VertexAttribI3uivEXT_remap_index },
{ 220, VertexAttribI4iEXT_remap_index },
{ 12691, VertexAttribI4ivEXT_remap_index },
{ 101, VertexAttribI4uiEXT_remap_index },
@@ -6415,22 +6425,22 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 3980, ClearColorIuiEXT_remap_index },
{ 10252, BindBufferOffsetEXT_remap_index },
{ 27568, BeginPerfMonitorAMD_remap_index },
- { 38662, DeletePerfMonitorsAMD_remap_index },
+ { 38714, DeletePerfMonitorsAMD_remap_index },
{ 20610, EndPerfMonitorAMD_remap_index },
- { 31776, GenPerfMonitorsAMD_remap_index },
+ { 31805, GenPerfMonitorsAMD_remap_index },
{ 6887, GetPerfMonitorCounterDataAMD_remap_index },
{ 5946, GetPerfMonitorCounterInfoAMD_remap_index },
- { 39529, GetPerfMonitorCounterStringAMD_remap_index },
+ { 39581, GetPerfMonitorCounterStringAMD_remap_index },
{ 22899, GetPerfMonitorCountersAMD_remap_index },
{ 13771, GetPerfMonitorGroupStringAMD_remap_index },
- { 38043, GetPerfMonitorGroupsAMD_remap_index },
+ { 38095, GetPerfMonitorGroupsAMD_remap_index },
{ 20122, SelectPerfMonitorCountersAMD_remap_index },
{ 13920, GetObjectParameterivAPPLE_remap_index },
- { 38173, ObjectPurgeableAPPLE_remap_index },
+ { 38225, ObjectPurgeableAPPLE_remap_index },
{ 7603, ObjectUnpurgeableAPPLE_remap_index },
{ 20984, ActiveProgramEXT_remap_index },
{ 2051, CreateShaderProgramEXT_remap_index },
- { 34711, UseShaderProgramEXT_remap_index },
+ { 34763, UseShaderProgramEXT_remap_index },
{ 17160, TextureBarrierNV_remap_index },
{ 9946, VDPAUFiniNV_remap_index },
{ 3134, VDPAUGetSurfaceivNV_remap_index },
@@ -6439,10 +6449,10 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 25979, VDPAUMapSurfacesNV_remap_index },
{ 11372, VDPAURegisterOutputSurfaceNV_remap_index },
{ 6738, VDPAURegisterVideoSurfaceNV_remap_index },
- { 32684, VDPAUSurfaceAccessNV_remap_index },
- { 30066, VDPAUUnmapSurfacesNV_remap_index },
+ { 32713, VDPAUSurfaceAccessNV_remap_index },
+ { 30095, VDPAUUnmapSurfacesNV_remap_index },
{ 25719, VDPAUUnregisterSurfaceNV_remap_index },
- { 35066, StencilFuncSeparateATI_remap_index },
+ { 35118, StencilFuncSeparateATI_remap_index },
{ 21876, ProgramEnvParameters4fvEXT_remap_index },
{ 20657, ProgramLocalParameters4fvEXT_remap_index },
{ 28762, EGLImageTargetRenderbufferStorageOES_remap_index },
@@ -6452,44 +6462,44 @@ static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
{ 26004, ClearDepthx_remap_index },
{ 10745, Color4x_remap_index },
{ 8206, DepthRangex_remap_index },
- { 40621, Fogx_remap_index },
- { 37435, Fogxv_remap_index },
- { 36105, Frustumf_remap_index },
+ { 40673, Fogx_remap_index },
+ { 37487, Fogxv_remap_index },
+ { 36157, Frustumf_remap_index },
{ 4048, Frustumx_remap_index },
- { 31926, LightModelx_remap_index },
- { 36201, LightModelxv_remap_index },
+ { 31955, LightModelx_remap_index },
+ { 36253, LightModelxv_remap_index },
{ 26293, Lightx_remap_index },
{ 13489, Lightxv_remap_index },
{ 21957, LineWidthx_remap_index },
{ 4864, LoadMatrixx_remap_index },
{ 27117, Materialx_remap_index },
- { 39769, Materialxv_remap_index },
+ { 39821, Materialxv_remap_index },
{ 10614, MultMatrixx_remap_index },
- { 34379, MultiTexCoord4x_remap_index },
+ { 34431, MultiTexCoord4x_remap_index },
{ 13633, Normal3x_remap_index },
{ 10999, Orthof_remap_index },
{ 22644, Orthox_remap_index },
- { 35734, PointSizex_remap_index },
+ { 35786, PointSizex_remap_index },
{ 4599, PolygonOffsetx_remap_index },
- { 31062, Rotatex_remap_index },
+ { 31091, Rotatex_remap_index },
{ 8678, SampleCoveragex_remap_index },
{ 7261, Scalex_remap_index },
{ 22547, TexEnvx_remap_index },
{ 25245, TexEnvxv_remap_index },
{ 6274, TexParameterx_remap_index },
- { 35032, Translatex_remap_index },
- { 39451, ClipPlanef_remap_index },
- { 39191, ClipPlanex_remap_index },
+ { 35084, Translatex_remap_index },
+ { 39503, ClipPlanef_remap_index },
+ { 39243, ClipPlanex_remap_index },
{ 18717, GetClipPlanef_remap_index },
{ 4473, GetClipPlanex_remap_index },
- { 33644, GetFixedv_remap_index },
+ { 33673, GetFixedv_remap_index },
{ 4158, GetLightxv_remap_index },
{ 4276, GetMaterialxv_remap_index },
- { 29710, GetTexEnvxv_remap_index },
+ { 29739, GetTexEnvxv_remap_index },
{ 21732, GetTexParameterxv_remap_index },
{ 5669, PointParameterx_remap_index },
{ 14384, PointParameterxv_remap_index },
- { 30819, TexParameterxv_remap_index },
+ { 30848, TexParameterxv_remap_index },
{ -1, -1 }
};
@@ -6501,7 +6511,7 @@ static const struct gl_function_remap MESA_alt_functions[] = {
{ 13551, _gloffset_BlendEquation },
/* from GL_EXT_color_subtable */
{ 20553, _gloffset_ColorSubTable },
- { 38835, _gloffset_CopyColorSubTable },
+ { 38887, _gloffset_CopyColorSubTable },
/* from GL_EXT_convolution */
{ 266, _gloffset_ConvolutionFilter1D },
{ 2669, _gloffset_CopyConvolutionFilter1D },
@@ -6511,17 +6521,17 @@ static const struct gl_function_remap MESA_alt_functions[] = {
{ 11293, _gloffset_ConvolutionParameterfv },
{ 24949, _gloffset_GetSeparableFilter },
{ 29034, _gloffset_SeparableFilter2D },
- { 29930, _gloffset_ConvolutionParameteri },
- { 30193, _gloffset_ConvolutionParameterf },
- { 32258, _gloffset_GetConvolutionParameterfv },
- { 33483, _gloffset_GetConvolutionFilter },
- { 36768, _gloffset_CopyConvolutionFilter2D },
+ { 29959, _gloffset_ConvolutionParameteri },
+ { 30222, _gloffset_ConvolutionParameterf },
+ { 32287, _gloffset_GetConvolutionParameterfv },
+ { 33512, _gloffset_GetConvolutionFilter },
+ { 36820, _gloffset_CopyConvolutionFilter2D },
/* from GL_EXT_copy_texture */
{ 17888, _gloffset_CopyTexSubImage3D },
{ 19972, _gloffset_CopyTexImage2D },
- { 29410, _gloffset_CopyTexImage1D },
- { 32946, _gloffset_CopyTexSubImage2D },
- { 36263, _gloffset_CopyTexSubImage1D },
+ { 29439, _gloffset_CopyTexImage1D },
+ { 32975, _gloffset_CopyTexSubImage2D },
+ { 36315, _gloffset_CopyTexSubImage1D },
/* from GL_EXT_draw_range_elements */
{ 11582, _gloffset_DrawRangeElements },
/* from GL_EXT_histogram */
@@ -6529,17 +6539,17 @@ static const struct gl_function_remap MESA_alt_functions[] = {
{ 4081, _gloffset_ResetHistogram },
{ 12147, _gloffset_GetMinmax },
{ 18315, _gloffset_GetHistogramParameterfv },
- { 29335, _gloffset_GetMinmaxParameteriv },
- { 32148, _gloffset_ResetMinmax },
- { 33287, _gloffset_GetHistogramParameteriv },
- { 34966, _gloffset_GetHistogram },
- { 38302, _gloffset_Minmax },
- { 40297, _gloffset_GetMinmaxParameterfv },
+ { 29364, _gloffset_GetMinmaxParameteriv },
+ { 32177, _gloffset_ResetMinmax },
+ { 33316, _gloffset_GetHistogramParameteriv },
+ { 35018, _gloffset_GetHistogram },
+ { 38354, _gloffset_Minmax },
+ { 40349, _gloffset_GetMinmaxParameterfv },
/* from GL_EXT_paletted_texture */
{ 10420, _gloffset_ColorTable },
{ 18049, _gloffset_GetColorTable },
{ 27708, _gloffset_GetColorTableParameterfv },
- { 30249, _gloffset_GetColorTableParameteriv },
+ { 30278, _gloffset_GetColorTableParameteriv },
/* from GL_EXT_subtexture */
{ 9113, _gloffset_TexSubImage1D },
{ 13008, _gloffset_TexSubImage2D },
@@ -6552,13 +6562,13 @@ static const struct gl_function_remap MESA_alt_functions[] = {
{ 16127, _gloffset_GenTextures },
{ 18564, _gloffset_DeleteTextures },
{ 23799, _gloffset_IsTexture },
- { 36372, _gloffset_BindTexture },
+ { 36424, _gloffset_BindTexture },
/* from GL_EXT_vertex_array */
- { 29232, _gloffset_ArrayElement },
- { 37710, _gloffset_GetPointerv },
- { 39647, _gloffset_DrawArrays },
+ { 29261, _gloffset_ArrayElement },
+ { 37762, _gloffset_GetPointerv },
+ { 39699, _gloffset_DrawArrays },
/* from GL_NV_read_buffer */
- { 29899, _gloffset_ReadBuffer },
+ { 29928, _gloffset_ReadBuffer },
/* from GL_OES_blend_subtract */
{ 13551, _gloffset_BlendEquation },
/* from GL_OES_texture_3D */
@@ -6570,8 +6580,8 @@ static const struct gl_function_remap MESA_alt_functions[] = {
{ 13145, _gloffset_TexGenfv },
{ 22491, _gloffset_TexGeni },
{ 22519, _gloffset_TexGenf },
- { 34013, _gloffset_GetTexGeniv },
- { 34836, _gloffset_GetTexGenfv },
+ { 34065, _gloffset_GetTexGeniv },
+ { 34888, _gloffset_GetTexGenfv },
/* from GL_SGI_color_table */
{ 9830, _gloffset_ColorTableParameteriv },
{ 10420, _gloffset_ColorTable },
@@ -6579,7 +6589,7 @@ static const struct gl_function_remap MESA_alt_functions[] = {
{ 18181, _gloffset_CopyColorTable },
{ 23568, _gloffset_ColorTableParameterfv },
{ 27708, _gloffset_GetColorTableParameterfv },
- { 30249, _gloffset_GetColorTableParameteriv },
+ { 30278, _gloffset_GetColorTableParameteriv },
{ -1, -1 }
};
diff --git a/xorg-server/hw/xwin/glx/genheaders.py b/xorg-server/hw/xwin/glx/genheaders.py
index f1d130e4c..78171c982 100644
--- a/xorg-server/hw/xwin/glx/genheaders.py
+++ b/xorg-server/hw/xwin/glx/genheaders.py
@@ -232,6 +232,12 @@ gles1ExtPlatformStrings = gles2ExtPlatformStrings = [
''
]
+# Insert generation date in a comment for headers not having *GLEXT_VERSION macros
+genDateCommentString = [
+ format("/* Generated on date %s */" % time.strftime("%Y%m%d")),
+ ''
+]
+
# GL_GLEXT_VERSION is defined only in glext.h
glextVersionStrings = [
format("#define GL_GLEXT_VERSION %s" % time.strftime("%Y%m%d")),
@@ -307,7 +313,7 @@ buildList = [
defaultExtensions = None, # No default extensions
addExtensions = es1CorePat, # Add mandatory ES1 extensions in GLES1/gl.h
removeExtensions = None,
- prefixText = prefixStrings + gles1PlatformStrings,
+ prefixText = prefixStrings + gles1PlatformStrings + genDateCommentString,
genFuncPointers = False,
protectFile = protectFile,
protectFeature = protectFeature,
@@ -326,7 +332,7 @@ buildList = [
defaultExtensions = 'gles1', # Default extensions for GLES 1
addExtensions = None,
removeExtensions = es1CorePat, # Remove mandatory ES1 extensions in GLES1/glext.h
- prefixText = prefixStrings + gles1ExtPlatformStrings,
+ prefixText = prefixStrings + gles1ExtPlatformStrings + genDateCommentString,
genFuncPointers = True,
protectFile = protectFile,
protectFeature = protectFeature,
@@ -345,7 +351,7 @@ buildList = [
defaultExtensions = None, # No default extensions
addExtensions = None,
removeExtensions = None,
- prefixText = prefixStrings + gles2PlatformStrings,
+ prefixText = prefixStrings + gles2PlatformStrings + genDateCommentString,
genFuncPointers = False,
protectFile = protectFile,
protectFeature = protectFeature,
@@ -364,7 +370,7 @@ buildList = [
defaultExtensions = 'gles2', # Default extensions for GLES 2
addExtensions = None,
removeExtensions = None,
- prefixText = prefixStrings + gles2ExtPlatformStrings,
+ prefixText = prefixStrings + gles2ExtPlatformStrings + genDateCommentString,
genFuncPointers = True,
protectFile = protectFile,
protectFeature = protectFeature,
@@ -383,7 +389,7 @@ buildList = [
defaultExtensions = None, # No default extensions
addExtensions = None,
removeExtensions = None,
- prefixText = prefixStrings + gles3PlatformStrings,
+ prefixText = prefixStrings + gles3PlatformStrings + genDateCommentString,
genFuncPointers = False,
protectFile = protectFile,
protectFeature = protectFeature,
@@ -402,11 +408,11 @@ buildList = [
defaultExtensions = None, # No default extensions
addExtensions = None,
removeExtensions = None,
- prefixText = prefixStrings + eglPlatformStrings + eglextVersionStrings,
+ prefixText = prefixStrings + eglPlatformStrings + genDateCommentString,
genFuncPointers = False,
protectFile = protectFile,
protectFeature = protectFeature,
- protectProto = protectProto,
+ protectProto = False,
protectProtoStr = 'EGL_EGLEXT_PROTOTYPES',
apicall = 'EGLAPI ',
apientry = 'EGLAPIENTRY ',
@@ -441,7 +447,7 @@ buildList = [
addExtensions = None,
removeExtensions = None,
# add glXPlatformStrings?
- prefixText = prefixStrings, # No GLXEXT_VERSION
+ prefixText = prefixStrings + genDateCommentString,
genFuncPointers = True,
protectFile = protectFile,
protectFeature = protectFeature,
@@ -480,7 +486,7 @@ buildList = [
defaultExtensions = 'wgl', # Default extensions for WGL
addExtensions = None,
removeExtensions = None,
- prefixText = prefixStrings + wglPlatformStrings, # No WGLEXT_VERSION
+ prefixText = prefixStrings + wglPlatformStrings + genDateCommentString,
genFuncPointers = True,
protectFile = protectFile,
protectFeature = protectFeature,