aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2014-01-27 18:35:06 +0100
committermarha <marha@users.sourceforge.net>2014-01-27 18:35:06 +0100
commit5c64f94cf4cf8457a5616fe20b9a27174895f1a8 (patch)
treecb04273c0585b4922a988b6519b0a716f651df46
parent5f455179ae4b279a82d99a7a3dabe61f58c42ad6 (diff)
downloadvcxsrv-5c64f94cf4cf8457a5616fe20b9a27174895f1a8.tar.gz
vcxsrv-5c64f94cf4cf8457a5616fe20b9a27174895f1a8.tar.bz2
vcxsrv-5c64f94cf4cf8457a5616fe20b9a27174895f1a8.zip
Synchronised files and updated mesa project file
-rw-r--r--gl/glxext.h1
-rw-r--r--mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj1
-rw-r--r--mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters3
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj1
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters3
-rw-r--r--xorg-server/glx/dispatch.h738
-rw-r--r--xorg-server/glx/glapitable.h590
-rw-r--r--xorg-server/glx/glfunctions.h12
-rw-r--r--xorg-server/glx/glprocs.h1728
-rw-r--r--xorg-server/glx/indirect_size_get.c4
-rw-r--r--xorg-server/glx/remap_helper.h4182
11 files changed, 3765 insertions, 3498 deletions
diff --git a/gl/glxext.h b/gl/glxext.h
index cfabe8cc3..713238519 100644
--- a/gl/glxext.h
+++ b/gl/glxext.h
@@ -272,7 +272,6 @@ __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *procName);
#ifndef GLX_EXT_import_context
#define GLX_EXT_import_context 1
-typedef XID GLXContextID;
#define GLX_SHARE_CONTEXT_EXT 0x800A
#define GLX_VISUAL_ID_EXT 0x800B
#define GLX_SCREEN_EXT 0x800C
diff --git a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj
index a27071af0..59452a242 100644
--- a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj
+++ b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj
@@ -252,6 +252,7 @@
<ClCompile Include="..\..\..\..\src\glsl\opt_structure_splitting.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_swizzle_swizzle.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_tree_grafting.cpp" />
+ <ClCompile Include="..\..\..\..\src\glsl\opt_vectorize.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\standalone_scaffolding.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\ralloc.c" />
<ClCompile Include="..\..\..\..\src\glsl\strtod.c" />
diff --git a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters
index 56f3ed290..fb393a579 100644
--- a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters
+++ b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters
@@ -300,6 +300,9 @@
<ClCompile Include="..\..\..\..\src\glsl\ir_equals.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\glsl\opt_vectorize.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
index 640f07bbf..739e6cfce 100644
--- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
+++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
@@ -291,6 +291,7 @@
<ClCompile Include="..\..\..\..\src\glsl\opt_structure_splitting.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_swizzle_swizzle.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_tree_grafting.cpp" />
+ <ClCompile Include="..\..\..\..\src\glsl\opt_vectorize.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\ralloc.c" />
<ClCompile Include="..\..\..\..\src\glsl\strtod.c" />
<ClCompile Include="..\..\..\..\src\glsl\s_expression.cpp" />
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
index d2094db84..667cb1ad0 100644
--- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
+++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
@@ -776,6 +776,9 @@
<ClCompile Include="..\..\..\..\src\mesa\main\shaderimage.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\glsl\opt_vectorize.cpp">
+ <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 7d571010f..c13149ab2 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 1082
+#define _gloffset_COUNT 1094
#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 674
+#define driDispatchRemapTable_size 686
SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define CompressedTexImage1D_remap_index 0
@@ -861,295 +861,307 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define GetProgramBinary_remap_index 382
#define ProgramBinary_remap_index 383
#define ProgramParameteri_remap_index 384
-#define DebugMessageCallbackARB_remap_index 385
-#define DebugMessageControlARB_remap_index 386
-#define DebugMessageInsertARB_remap_index 387
-#define GetDebugMessageLogARB_remap_index 388
-#define GetGraphicsResetStatusARB_remap_index 389
-#define GetnColorTableARB_remap_index 390
-#define GetnCompressedTexImageARB_remap_index 391
-#define GetnConvolutionFilterARB_remap_index 392
-#define GetnHistogramARB_remap_index 393
-#define GetnMapdvARB_remap_index 394
-#define GetnMapfvARB_remap_index 395
-#define GetnMapivARB_remap_index 396
-#define GetnMinmaxARB_remap_index 397
-#define GetnPixelMapfvARB_remap_index 398
-#define GetnPixelMapuivARB_remap_index 399
-#define GetnPixelMapusvARB_remap_index 400
-#define GetnPolygonStippleARB_remap_index 401
-#define GetnSeparableFilterARB_remap_index 402
-#define GetnTexImageARB_remap_index 403
-#define GetnUniformdvARB_remap_index 404
-#define GetnUniformfvARB_remap_index 405
-#define GetnUniformivARB_remap_index 406
-#define GetnUniformuivARB_remap_index 407
-#define ReadnPixelsARB_remap_index 408
-#define DrawArraysInstancedBaseInstance_remap_index 409
-#define DrawElementsInstancedBaseInstance_remap_index 410
-#define DrawElementsInstancedBaseVertexBaseInstance_remap_index 411
-#define DrawTransformFeedbackInstanced_remap_index 412
-#define DrawTransformFeedbackStreamInstanced_remap_index 413
-#define GetInternalformativ_remap_index 414
-#define GetActiveAtomicCounterBufferiv_remap_index 415
-#define TexStorage1D_remap_index 416
-#define TexStorage2D_remap_index 417
-#define TexStorage3D_remap_index 418
-#define TextureStorage1DEXT_remap_index 419
-#define TextureStorage2DEXT_remap_index 420
-#define TextureStorage3DEXT_remap_index 421
-#define ClearBufferData_remap_index 422
-#define ClearBufferSubData_remap_index 423
-#define TextureView_remap_index 424
-#define BindVertexBuffer_remap_index 425
-#define VertexAttribBinding_remap_index 426
-#define VertexAttribFormat_remap_index 427
-#define VertexAttribIFormat_remap_index 428
-#define VertexAttribLFormat_remap_index 429
-#define VertexBindingDivisor_remap_index 430
-#define MultiDrawArraysIndirect_remap_index 431
-#define MultiDrawElementsIndirect_remap_index 432
-#define TexBufferRange_remap_index 433
-#define TexStorage2DMultisample_remap_index 434
-#define TexStorage3DMultisample_remap_index 435
-#define InvalidateBufferData_remap_index 436
-#define InvalidateBufferSubData_remap_index 437
-#define InvalidateFramebuffer_remap_index 438
-#define InvalidateSubFramebuffer_remap_index 439
-#define InvalidateTexImage_remap_index 440
-#define InvalidateTexSubImage_remap_index 441
-#define PolygonOffsetEXT_remap_index 442
-#define DrawTexfOES_remap_index 443
-#define DrawTexfvOES_remap_index 444
-#define DrawTexiOES_remap_index 445
-#define DrawTexivOES_remap_index 446
-#define DrawTexsOES_remap_index 447
-#define DrawTexsvOES_remap_index 448
-#define DrawTexxOES_remap_index 449
-#define DrawTexxvOES_remap_index 450
-#define PointSizePointerOES_remap_index 451
-#define QueryMatrixxOES_remap_index 452
-#define SampleMaskSGIS_remap_index 453
-#define SamplePatternSGIS_remap_index 454
-#define ColorPointerEXT_remap_index 455
-#define EdgeFlagPointerEXT_remap_index 456
-#define IndexPointerEXT_remap_index 457
-#define NormalPointerEXT_remap_index 458
-#define TexCoordPointerEXT_remap_index 459
-#define VertexPointerEXT_remap_index 460
-#define DiscardFramebufferEXT_remap_index 461
-#define LockArraysEXT_remap_index 462
-#define UnlockArraysEXT_remap_index 463
-#define DebugMessageCallback_remap_index 464
-#define DebugMessageControl_remap_index 465
-#define DebugMessageInsert_remap_index 466
-#define GetDebugMessageLog_remap_index 467
-#define GetObjectLabel_remap_index 468
-#define GetObjectPtrLabel_remap_index 469
-#define ObjectLabel_remap_index 470
-#define ObjectPtrLabel_remap_index 471
-#define PopDebugGroup_remap_index 472
-#define PushDebugGroup_remap_index 473
-#define SecondaryColor3fEXT_remap_index 474
-#define SecondaryColor3fvEXT_remap_index 475
-#define MultiDrawElementsEXT_remap_index 476
-#define FogCoordfEXT_remap_index 477
-#define FogCoordfvEXT_remap_index 478
-#define ResizeBuffersMESA_remap_index 479
-#define WindowPos4dMESA_remap_index 480
-#define WindowPos4dvMESA_remap_index 481
-#define WindowPos4fMESA_remap_index 482
-#define WindowPos4fvMESA_remap_index 483
-#define WindowPos4iMESA_remap_index 484
-#define WindowPos4ivMESA_remap_index 485
-#define WindowPos4sMESA_remap_index 486
-#define WindowPos4svMESA_remap_index 487
-#define MultiModeDrawArraysIBM_remap_index 488
-#define MultiModeDrawElementsIBM_remap_index 489
-#define AreProgramsResidentNV_remap_index 490
-#define ExecuteProgramNV_remap_index 491
-#define GetProgramParameterdvNV_remap_index 492
-#define GetProgramParameterfvNV_remap_index 493
-#define GetProgramStringNV_remap_index 494
-#define GetProgramivNV_remap_index 495
-#define GetTrackMatrixivNV_remap_index 496
-#define GetVertexAttribdvNV_remap_index 497
-#define GetVertexAttribfvNV_remap_index 498
-#define GetVertexAttribivNV_remap_index 499
-#define LoadProgramNV_remap_index 500
-#define ProgramParameters4dvNV_remap_index 501
-#define ProgramParameters4fvNV_remap_index 502
-#define RequestResidentProgramsNV_remap_index 503
-#define TrackMatrixNV_remap_index 504
-#define VertexAttrib1dNV_remap_index 505
-#define VertexAttrib1dvNV_remap_index 506
-#define VertexAttrib1fNV_remap_index 507
-#define VertexAttrib1fvNV_remap_index 508
-#define VertexAttrib1sNV_remap_index 509
-#define VertexAttrib1svNV_remap_index 510
-#define VertexAttrib2dNV_remap_index 511
-#define VertexAttrib2dvNV_remap_index 512
-#define VertexAttrib2fNV_remap_index 513
-#define VertexAttrib2fvNV_remap_index 514
-#define VertexAttrib2sNV_remap_index 515
-#define VertexAttrib2svNV_remap_index 516
-#define VertexAttrib3dNV_remap_index 517
-#define VertexAttrib3dvNV_remap_index 518
-#define VertexAttrib3fNV_remap_index 519
-#define VertexAttrib3fvNV_remap_index 520
-#define VertexAttrib3sNV_remap_index 521
-#define VertexAttrib3svNV_remap_index 522
-#define VertexAttrib4dNV_remap_index 523
-#define VertexAttrib4dvNV_remap_index 524
-#define VertexAttrib4fNV_remap_index 525
-#define VertexAttrib4fvNV_remap_index 526
-#define VertexAttrib4sNV_remap_index 527
-#define VertexAttrib4svNV_remap_index 528
-#define VertexAttrib4ubNV_remap_index 529
-#define VertexAttrib4ubvNV_remap_index 530
-#define VertexAttribPointerNV_remap_index 531
-#define VertexAttribs1dvNV_remap_index 532
-#define VertexAttribs1fvNV_remap_index 533
-#define VertexAttribs1svNV_remap_index 534
-#define VertexAttribs2dvNV_remap_index 535
-#define VertexAttribs2fvNV_remap_index 536
-#define VertexAttribs2svNV_remap_index 537
-#define VertexAttribs3dvNV_remap_index 538
-#define VertexAttribs3fvNV_remap_index 539
-#define VertexAttribs3svNV_remap_index 540
-#define VertexAttribs4dvNV_remap_index 541
-#define VertexAttribs4fvNV_remap_index 542
-#define VertexAttribs4svNV_remap_index 543
-#define VertexAttribs4ubvNV_remap_index 544
-#define GetTexBumpParameterfvATI_remap_index 545
-#define GetTexBumpParameterivATI_remap_index 546
-#define TexBumpParameterfvATI_remap_index 547
-#define TexBumpParameterivATI_remap_index 548
-#define AlphaFragmentOp1ATI_remap_index 549
-#define AlphaFragmentOp2ATI_remap_index 550
-#define AlphaFragmentOp3ATI_remap_index 551
-#define BeginFragmentShaderATI_remap_index 552
-#define BindFragmentShaderATI_remap_index 553
-#define ColorFragmentOp1ATI_remap_index 554
-#define ColorFragmentOp2ATI_remap_index 555
-#define ColorFragmentOp3ATI_remap_index 556
-#define DeleteFragmentShaderATI_remap_index 557
-#define EndFragmentShaderATI_remap_index 558
-#define GenFragmentShadersATI_remap_index 559
-#define PassTexCoordATI_remap_index 560
-#define SampleMapATI_remap_index 561
-#define SetFragmentShaderConstantATI_remap_index 562
-#define ActiveStencilFaceEXT_remap_index 563
-#define BindVertexArrayAPPLE_remap_index 564
-#define GenVertexArraysAPPLE_remap_index 565
-#define GetProgramNamedParameterdvNV_remap_index 566
-#define GetProgramNamedParameterfvNV_remap_index 567
-#define ProgramNamedParameter4dNV_remap_index 568
-#define ProgramNamedParameter4dvNV_remap_index 569
-#define ProgramNamedParameter4fNV_remap_index 570
-#define ProgramNamedParameter4fvNV_remap_index 571
-#define PrimitiveRestartNV_remap_index 572
-#define GetTexGenxvOES_remap_index 573
-#define TexGenxOES_remap_index 574
-#define TexGenxvOES_remap_index 575
-#define DepthBoundsEXT_remap_index 576
-#define BindFramebufferEXT_remap_index 577
-#define BindRenderbufferEXT_remap_index 578
-#define BufferParameteriAPPLE_remap_index 579
-#define FlushMappedBufferRangeAPPLE_remap_index 580
-#define VertexAttribI1iEXT_remap_index 581
-#define VertexAttribI1uiEXT_remap_index 582
-#define VertexAttribI2iEXT_remap_index 583
-#define VertexAttribI2ivEXT_remap_index 584
-#define VertexAttribI2uiEXT_remap_index 585
-#define VertexAttribI2uivEXT_remap_index 586
-#define VertexAttribI3iEXT_remap_index 587
-#define VertexAttribI3ivEXT_remap_index 588
-#define VertexAttribI3uiEXT_remap_index 589
-#define VertexAttribI3uivEXT_remap_index 590
-#define VertexAttribI4iEXT_remap_index 591
-#define VertexAttribI4ivEXT_remap_index 592
-#define VertexAttribI4uiEXT_remap_index 593
-#define VertexAttribI4uivEXT_remap_index 594
-#define ClearColorIiEXT_remap_index 595
-#define ClearColorIuiEXT_remap_index 596
-#define BindBufferOffsetEXT_remap_index 597
-#define BeginPerfMonitorAMD_remap_index 598
-#define DeletePerfMonitorsAMD_remap_index 599
-#define EndPerfMonitorAMD_remap_index 600
-#define GenPerfMonitorsAMD_remap_index 601
-#define GetPerfMonitorCounterDataAMD_remap_index 602
-#define GetPerfMonitorCounterInfoAMD_remap_index 603
-#define GetPerfMonitorCounterStringAMD_remap_index 604
-#define GetPerfMonitorCountersAMD_remap_index 605
-#define GetPerfMonitorGroupStringAMD_remap_index 606
-#define GetPerfMonitorGroupsAMD_remap_index 607
-#define SelectPerfMonitorCountersAMD_remap_index 608
-#define GetObjectParameterivAPPLE_remap_index 609
-#define ObjectPurgeableAPPLE_remap_index 610
-#define ObjectUnpurgeableAPPLE_remap_index 611
-#define ActiveProgramEXT_remap_index 612
-#define CreateShaderProgramEXT_remap_index 613
-#define UseShaderProgramEXT_remap_index 614
-#define TextureBarrierNV_remap_index 615
-#define VDPAUFiniNV_remap_index 616
-#define VDPAUGetSurfaceivNV_remap_index 617
-#define VDPAUInitNV_remap_index 618
-#define VDPAUIsSurfaceNV_remap_index 619
-#define VDPAUMapSurfacesNV_remap_index 620
-#define VDPAURegisterOutputSurfaceNV_remap_index 621
-#define VDPAURegisterVideoSurfaceNV_remap_index 622
-#define VDPAUSurfaceAccessNV_remap_index 623
-#define VDPAUUnmapSurfacesNV_remap_index 624
-#define VDPAUUnregisterSurfaceNV_remap_index 625
-#define StencilFuncSeparateATI_remap_index 626
-#define ProgramEnvParameters4fvEXT_remap_index 627
-#define ProgramLocalParameters4fvEXT_remap_index 628
-#define EGLImageTargetRenderbufferStorageOES_remap_index 629
-#define EGLImageTargetTexture2DOES_remap_index 630
-#define AlphaFuncx_remap_index 631
-#define ClearColorx_remap_index 632
-#define ClearDepthx_remap_index 633
-#define Color4x_remap_index 634
-#define DepthRangex_remap_index 635
-#define Fogx_remap_index 636
-#define Fogxv_remap_index 637
-#define Frustumf_remap_index 638
-#define Frustumx_remap_index 639
-#define LightModelx_remap_index 640
-#define LightModelxv_remap_index 641
-#define Lightx_remap_index 642
-#define Lightxv_remap_index 643
-#define LineWidthx_remap_index 644
-#define LoadMatrixx_remap_index 645
-#define Materialx_remap_index 646
-#define Materialxv_remap_index 647
-#define MultMatrixx_remap_index 648
-#define MultiTexCoord4x_remap_index 649
-#define Normal3x_remap_index 650
-#define Orthof_remap_index 651
-#define Orthox_remap_index 652
-#define PointSizex_remap_index 653
-#define PolygonOffsetx_remap_index 654
-#define Rotatex_remap_index 655
-#define SampleCoveragex_remap_index 656
-#define Scalex_remap_index 657
-#define TexEnvx_remap_index 658
-#define TexEnvxv_remap_index 659
-#define TexParameterx_remap_index 660
-#define Translatex_remap_index 661
-#define ClipPlanef_remap_index 662
-#define ClipPlanex_remap_index 663
-#define GetClipPlanef_remap_index 664
-#define GetClipPlanex_remap_index 665
-#define GetFixedv_remap_index 666
-#define GetLightxv_remap_index 667
-#define GetMaterialxv_remap_index 668
-#define GetTexEnvxv_remap_index 669
-#define GetTexParameterxv_remap_index 670
-#define PointParameterx_remap_index 671
-#define PointParameterxv_remap_index 672
-#define TexParameterxv_remap_index 673
+#define DepthRangeArrayv_remap_index 385
+#define DepthRangeIndexed_remap_index 386
+#define GetDoublei_v_remap_index 387
+#define GetFloati_v_remap_index 388
+#define ScissorArrayv_remap_index 389
+#define ScissorIndexed_remap_index 390
+#define ScissorIndexedv_remap_index 391
+#define ViewportArrayv_remap_index 392
+#define ViewportIndexedf_remap_index 393
+#define ViewportIndexedfv_remap_index 394
+#define DebugMessageCallbackARB_remap_index 395
+#define DebugMessageControlARB_remap_index 396
+#define DebugMessageInsertARB_remap_index 397
+#define GetDebugMessageLogARB_remap_index 398
+#define GetGraphicsResetStatusARB_remap_index 399
+#define GetnColorTableARB_remap_index 400
+#define GetnCompressedTexImageARB_remap_index 401
+#define GetnConvolutionFilterARB_remap_index 402
+#define GetnHistogramARB_remap_index 403
+#define GetnMapdvARB_remap_index 404
+#define GetnMapfvARB_remap_index 405
+#define GetnMapivARB_remap_index 406
+#define GetnMinmaxARB_remap_index 407
+#define GetnPixelMapfvARB_remap_index 408
+#define GetnPixelMapuivARB_remap_index 409
+#define GetnPixelMapusvARB_remap_index 410
+#define GetnPolygonStippleARB_remap_index 411
+#define GetnSeparableFilterARB_remap_index 412
+#define GetnTexImageARB_remap_index 413
+#define GetnUniformdvARB_remap_index 414
+#define GetnUniformfvARB_remap_index 415
+#define GetnUniformivARB_remap_index 416
+#define GetnUniformuivARB_remap_index 417
+#define ReadnPixelsARB_remap_index 418
+#define DrawArraysInstancedBaseInstance_remap_index 419
+#define DrawElementsInstancedBaseInstance_remap_index 420
+#define DrawElementsInstancedBaseVertexBaseInstance_remap_index 421
+#define DrawTransformFeedbackInstanced_remap_index 422
+#define DrawTransformFeedbackStreamInstanced_remap_index 423
+#define GetInternalformativ_remap_index 424
+#define GetActiveAtomicCounterBufferiv_remap_index 425
+#define BindImageTexture_remap_index 426
+#define MemoryBarrier_remap_index 427
+#define TexStorage1D_remap_index 428
+#define TexStorage2D_remap_index 429
+#define TexStorage3D_remap_index 430
+#define TextureStorage1DEXT_remap_index 431
+#define TextureStorage2DEXT_remap_index 432
+#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 _gloffset_CompressedTexImage1D driDispatchRemapTable[CompressedTexImage1D_remap_index]
#define _gloffset_CompressedTexImage2D driDispatchRemapTable[CompressedTexImage2D_remap_index]
@@ -1536,6 +1548,16 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_GetProgramBinary driDispatchRemapTable[GetProgramBinary_remap_index]
#define _gloffset_ProgramBinary driDispatchRemapTable[ProgramBinary_remap_index]
#define _gloffset_ProgramParameteri driDispatchRemapTable[ProgramParameteri_remap_index]
+#define _gloffset_DepthRangeArrayv driDispatchRemapTable[DepthRangeArrayv_remap_index]
+#define _gloffset_DepthRangeIndexed driDispatchRemapTable[DepthRangeIndexed_remap_index]
+#define _gloffset_GetDoublei_v driDispatchRemapTable[GetDoublei_v_remap_index]
+#define _gloffset_GetFloati_v driDispatchRemapTable[GetFloati_v_remap_index]
+#define _gloffset_ScissorArrayv driDispatchRemapTable[ScissorArrayv_remap_index]
+#define _gloffset_ScissorIndexed driDispatchRemapTable[ScissorIndexed_remap_index]
+#define _gloffset_ScissorIndexedv driDispatchRemapTable[ScissorIndexedv_remap_index]
+#define _gloffset_ViewportArrayv driDispatchRemapTable[ViewportArrayv_remap_index]
+#define _gloffset_ViewportIndexedf driDispatchRemapTable[ViewportIndexedf_remap_index]
+#define _gloffset_ViewportIndexedfv driDispatchRemapTable[ViewportIndexedfv_remap_index]
#define _gloffset_DebugMessageCallbackARB driDispatchRemapTable[DebugMessageCallbackARB_remap_index]
#define _gloffset_DebugMessageControlARB driDispatchRemapTable[DebugMessageControlARB_remap_index]
#define _gloffset_DebugMessageInsertARB driDispatchRemapTable[DebugMessageInsertARB_remap_index]
@@ -1567,6 +1589,8 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_DrawTransformFeedbackStreamInstanced driDispatchRemapTable[DrawTransformFeedbackStreamInstanced_remap_index]
#define _gloffset_GetInternalformativ driDispatchRemapTable[GetInternalformativ_remap_index]
#define _gloffset_GetActiveAtomicCounterBufferiv driDispatchRemapTable[GetActiveAtomicCounterBufferiv_remap_index]
+#define _gloffset_BindImageTexture driDispatchRemapTable[BindImageTexture_remap_index]
+#define _gloffset_MemoryBarrier driDispatchRemapTable[MemoryBarrier_remap_index]
#define _gloffset_TexStorage1D driDispatchRemapTable[TexStorage1D_remap_index]
#define _gloffset_TexStorage2D driDispatchRemapTable[TexStorage2D_remap_index]
#define _gloffset_TexStorage3D driDispatchRemapTable[TexStorage3D_remap_index]
@@ -10549,6 +10573,116 @@ static INLINE void SET_ProgramParameteri(struct _glapi_table *disp, void (GLAPIE
SET_by_offset(disp, _gloffset_ProgramParameteri, fn);
}
+typedef void (GLAPIENTRYP _glptr_DepthRangeArrayv)(GLuint, GLsizei, const GLclampd *);
+#define CALL_DepthRangeArrayv(disp, parameters) \
+ (* GET_DepthRangeArrayv(disp)) parameters
+static INLINE _glptr_DepthRangeArrayv GET_DepthRangeArrayv(struct _glapi_table *disp) {
+ return (_glptr_DepthRangeArrayv) (GET_by_offset(disp, _gloffset_DepthRangeArrayv));
+}
+
+static INLINE void SET_DepthRangeArrayv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLclampd *)) {
+ SET_by_offset(disp, _gloffset_DepthRangeArrayv, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_DepthRangeIndexed)(GLuint, GLclampd, GLclampd);
+#define CALL_DepthRangeIndexed(disp, parameters) \
+ (* GET_DepthRangeIndexed(disp)) parameters
+static INLINE _glptr_DepthRangeIndexed GET_DepthRangeIndexed(struct _glapi_table *disp) {
+ return (_glptr_DepthRangeIndexed) (GET_by_offset(disp, _gloffset_DepthRangeIndexed));
+}
+
+static INLINE void SET_DepthRangeIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLclampd, GLclampd)) {
+ SET_by_offset(disp, _gloffset_DepthRangeIndexed, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_GetDoublei_v)(GLenum, GLuint, GLdouble *);
+#define CALL_GetDoublei_v(disp, parameters) \
+ (* GET_GetDoublei_v(disp)) parameters
+static INLINE _glptr_GetDoublei_v GET_GetDoublei_v(struct _glapi_table *disp) {
+ return (_glptr_GetDoublei_v) (GET_by_offset(disp, _gloffset_GetDoublei_v));
+}
+
+static INLINE void SET_GetDoublei_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLdouble *)) {
+ SET_by_offset(disp, _gloffset_GetDoublei_v, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_GetFloati_v)(GLenum, GLuint, GLfloat *);
+#define CALL_GetFloati_v(disp, parameters) \
+ (* GET_GetFloati_v(disp)) parameters
+static INLINE _glptr_GetFloati_v GET_GetFloati_v(struct _glapi_table *disp) {
+ return (_glptr_GetFloati_v) (GET_by_offset(disp, _gloffset_GetFloati_v));
+}
+
+static INLINE void SET_GetFloati_v(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLuint, GLfloat *)) {
+ SET_by_offset(disp, _gloffset_GetFloati_v, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ScissorArrayv)(GLuint, GLsizei, const int *);
+#define CALL_ScissorArrayv(disp, parameters) \
+ (* GET_ScissorArrayv(disp)) parameters
+static INLINE _glptr_ScissorArrayv GET_ScissorArrayv(struct _glapi_table *disp) {
+ return (_glptr_ScissorArrayv) (GET_by_offset(disp, _gloffset_ScissorArrayv));
+}
+
+static INLINE void SET_ScissorArrayv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const int *)) {
+ SET_by_offset(disp, _gloffset_ScissorArrayv, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ScissorIndexed)(GLuint, GLint, GLint, GLsizei, GLsizei);
+#define CALL_ScissorIndexed(disp, parameters) \
+ (* GET_ScissorIndexed(disp)) parameters
+static INLINE _glptr_ScissorIndexed GET_ScissorIndexed(struct _glapi_table *disp) {
+ return (_glptr_ScissorIndexed) (GET_by_offset(disp, _gloffset_ScissorIndexed));
+}
+
+static INLINE void SET_ScissorIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLint, GLsizei, GLsizei)) {
+ SET_by_offset(disp, _gloffset_ScissorIndexed, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ScissorIndexedv)(GLuint, const GLint *);
+#define CALL_ScissorIndexedv(disp, parameters) \
+ (* GET_ScissorIndexedv(disp)) parameters
+static INLINE _glptr_ScissorIndexedv GET_ScissorIndexedv(struct _glapi_table *disp) {
+ return (_glptr_ScissorIndexedv) (GET_by_offset(disp, _gloffset_ScissorIndexedv));
+}
+
+static INLINE void SET_ScissorIndexedv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLint *)) {
+ SET_by_offset(disp, _gloffset_ScissorIndexedv, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ViewportArrayv)(GLuint, GLsizei, const GLfloat *);
+#define CALL_ViewportArrayv(disp, parameters) \
+ (* GET_ViewportArrayv(disp)) parameters
+static INLINE _glptr_ViewportArrayv GET_ViewportArrayv(struct _glapi_table *disp) {
+ return (_glptr_ViewportArrayv) (GET_by_offset(disp, _gloffset_ViewportArrayv));
+}
+
+static INLINE void SET_ViewportArrayv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, const GLfloat *)) {
+ SET_by_offset(disp, _gloffset_ViewportArrayv, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ViewportIndexedf)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
+#define CALL_ViewportIndexedf(disp, parameters) \
+ (* GET_ViewportIndexedf(disp)) parameters
+static INLINE _glptr_ViewportIndexedf GET_ViewportIndexedf(struct _glapi_table *disp) {
+ return (_glptr_ViewportIndexedf) (GET_by_offset(disp, _gloffset_ViewportIndexedf));
+}
+
+static INLINE void SET_ViewportIndexedf(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat)) {
+ SET_by_offset(disp, _gloffset_ViewportIndexedf, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ViewportIndexedfv)(GLuint, const GLfloat *);
+#define CALL_ViewportIndexedfv(disp, parameters) \
+ (* GET_ViewportIndexedfv(disp)) parameters
+static INLINE _glptr_ViewportIndexedfv GET_ViewportIndexedfv(struct _glapi_table *disp) {
+ return (_glptr_ViewportIndexedfv) (GET_by_offset(disp, _gloffset_ViewportIndexedfv));
+}
+
+static INLINE void SET_ViewportIndexedfv(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, const GLfloat *)) {
+ SET_by_offset(disp, _gloffset_ViewportIndexedfv, fn);
+}
+
typedef void (GLAPIENTRYP _glptr_DebugMessageCallbackARB)(GLDEBUGPROCARB, const GLvoid *);
#define CALL_DebugMessageCallbackARB(disp, parameters) \
(* GET_DebugMessageCallbackARB(disp)) parameters
@@ -10890,6 +11024,28 @@ static INLINE void SET_GetActiveAtomicCounterBufferiv(struct _glapi_table *disp,
SET_by_offset(disp, _gloffset_GetActiveAtomicCounterBufferiv, fn);
}
+typedef void (GLAPIENTRYP _glptr_BindImageTexture)(GLuint, GLuint, GLint, GLboolean, GLint, GLenum, GLenum);
+#define CALL_BindImageTexture(disp, parameters) \
+ (* GET_BindImageTexture(disp)) parameters
+static INLINE _glptr_BindImageTexture GET_BindImageTexture(struct _glapi_table *disp) {
+ return (_glptr_BindImageTexture) (GET_by_offset(disp, _gloffset_BindImageTexture));
+}
+
+static INLINE void SET_BindImageTexture(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLint, GLboolean, GLint, GLenum, GLenum)) {
+ SET_by_offset(disp, _gloffset_BindImageTexture, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_MemoryBarrier)(GLbitfield);
+#define CALL_MemoryBarrier(disp, parameters) \
+ (* GET_MemoryBarrier(disp)) parameters
+static INLINE _glptr_MemoryBarrier GET_MemoryBarrier(struct _glapi_table *disp) {
+ return (_glptr_MemoryBarrier) (GET_by_offset(disp, _gloffset_MemoryBarrier));
+}
+
+static INLINE void SET_MemoryBarrier(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLbitfield)) {
+ SET_by_offset(disp, _gloffset_MemoryBarrier, fn);
+}
+
typedef void (GLAPIENTRYP _glptr_TexStorage1D)(GLenum, GLsizei, GLenum, GLsizei);
#define CALL_TexStorage1D(disp, parameters) \
(* GET_TexStorage1D(disp)) parameters
diff --git a/xorg-server/glx/glapitable.h b/xorg-server/glx/glapitable.h
index 23cba9f93..c49bfff1a 100644
--- a/xorg-server/glx/glapitable.h
+++ b/xorg-server/glx/glapitable.h
@@ -834,295 +834,307 @@ struct _glapi_table
void (GLAPIENTRYP GetProgramBinary)(GLuint program, GLsizei bufSize, GLsizei * length, GLenum * binaryFormat, GLvoid * binary); /* 790 */
void (GLAPIENTRYP ProgramBinary)(GLuint program, GLenum binaryFormat, const GLvoid * binary, GLsizei length); /* 791 */
void (GLAPIENTRYP ProgramParameteri)(GLuint program, GLenum pname, GLint value); /* 792 */
- void (GLAPIENTRYP DebugMessageCallbackARB)(GLDEBUGPROCARB callback, const GLvoid * userParam); /* 793 */
- void (GLAPIENTRYP DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 794 */
- void (GLAPIENTRYP DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB * buf); /* 795 */
- GLuint (GLAPIENTRYP GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLcharARB * messageLog); /* 796 */
- GLenum (GLAPIENTRYP GetGraphicsResetStatusARB)(void); /* 797 */
- void (GLAPIENTRYP GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * table); /* 798 */
- void (GLAPIENTRYP GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid * img); /* 799 */
- void (GLAPIENTRYP GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * image); /* 800 */
- void (GLAPIENTRYP GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 801 */
- void (GLAPIENTRYP GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble * v); /* 802 */
- void (GLAPIENTRYP GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat * v); /* 803 */
- void (GLAPIENTRYP GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint * v); /* 804 */
- void (GLAPIENTRYP GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 805 */
- void (GLAPIENTRYP GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat * values); /* 806 */
- void (GLAPIENTRYP GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint * values); /* 807 */
- void (GLAPIENTRYP GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort * values); /* 808 */
- void (GLAPIENTRYP GetnPolygonStippleARB)(GLsizei bufSize, GLubyte * pattern); /* 809 */
- void (GLAPIENTRYP GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid * row, GLsizei columnBufSize, GLvoid * column, GLvoid * span); /* 810 */
- void (GLAPIENTRYP GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid * img); /* 811 */
- void (GLAPIENTRYP GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble * params); /* 812 */
- void (GLAPIENTRYP GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat * params); /* 813 */
- void (GLAPIENTRYP GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint * params); /* 814 */
- void (GLAPIENTRYP GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint * params); /* 815 */
- void (GLAPIENTRYP ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid * data); /* 816 */
- void (GLAPIENTRYP DrawArraysInstancedBaseInstance)(GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance); /* 817 */
- void (GLAPIENTRYP DrawElementsInstancedBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLuint baseinstance); /* 818 */
- void (GLAPIENTRYP DrawElementsInstancedBaseVertexBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLint basevertex, GLuint baseinstance); /* 819 */
- void (GLAPIENTRYP DrawTransformFeedbackInstanced)(GLenum mode, GLuint id, GLsizei primcount); /* 820 */
- void (GLAPIENTRYP DrawTransformFeedbackStreamInstanced)(GLenum mode, GLuint id, GLuint stream, GLsizei primcount); /* 821 */
- void (GLAPIENTRYP GetInternalformativ)(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint * params); /* 822 */
- void (GLAPIENTRYP GetActiveAtomicCounterBufferiv)(GLuint program, GLuint bufferIndex, GLenum pname, GLint * params); /* 823 */
- void (GLAPIENTRYP TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 824 */
- void (GLAPIENTRYP TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 825 */
- void (GLAPIENTRYP TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 826 */
- void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 827 */
- void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 828 */
- void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 829 */
- void (GLAPIENTRYP ClearBufferData)(GLenum target, GLenum internalformat, GLenum format, GLenum type, const GLvoid * data); /* 830 */
- void (GLAPIENTRYP ClearBufferSubData)(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const GLvoid * data); /* 831 */
- void (GLAPIENTRYP TextureView)(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); /* 832 */
- void (GLAPIENTRYP BindVertexBuffer)(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); /* 833 */
- void (GLAPIENTRYP VertexAttribBinding)(GLuint attribindex, GLuint bindingindex); /* 834 */
- void (GLAPIENTRYP VertexAttribFormat)(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); /* 835 */
- void (GLAPIENTRYP VertexAttribIFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 836 */
- void (GLAPIENTRYP VertexAttribLFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 837 */
- void (GLAPIENTRYP VertexBindingDivisor)(GLuint attribindex, GLuint divisor); /* 838 */
- void (GLAPIENTRYP MultiDrawArraysIndirect)(GLenum mode, const GLvoid * indirect, GLsizei primcount, GLsizei stride); /* 839 */
- void (GLAPIENTRYP MultiDrawElementsIndirect)(GLenum mode, GLenum type, const GLvoid * indirect, GLsizei primcount, GLsizei stride); /* 840 */
- void (GLAPIENTRYP TexBufferRange)(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 841 */
- void (GLAPIENTRYP TexStorage2DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); /* 842 */
- void (GLAPIENTRYP TexStorage3DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); /* 843 */
- void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 844 */
- void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 845 */
- void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 846 */
- void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 847 */
- void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 848 */
- void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 849 */
- void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 850 */
- void (GLAPIENTRYP DrawTexfOES)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); /* 851 */
- void (GLAPIENTRYP DrawTexfvOES)(const GLfloat * coords); /* 852 */
- void (GLAPIENTRYP DrawTexiOES)(GLint x, GLint y, GLint z, GLint width, GLint height); /* 853 */
- void (GLAPIENTRYP DrawTexivOES)(const GLint * coords); /* 854 */
- void (GLAPIENTRYP DrawTexsOES)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); /* 855 */
- void (GLAPIENTRYP DrawTexsvOES)(const GLshort * coords); /* 856 */
- void (GLAPIENTRYP DrawTexxOES)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); /* 857 */
- void (GLAPIENTRYP DrawTexxvOES)(const GLfixed * coords); /* 858 */
- void (GLAPIENTRYP PointSizePointerOES)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 859 */
- GLbitfield (GLAPIENTRYP QueryMatrixxOES)(GLfixed * mantissa, GLint * exponent); /* 860 */
- void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 861 */
- void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 862 */
- void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 863 */
- void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 864 */
- void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 865 */
- void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 866 */
- void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 867 */
- void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 868 */
- void (GLAPIENTRYP DiscardFramebufferEXT)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 869 */
- void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 870 */
- void (GLAPIENTRYP UnlockArraysEXT)(void); /* 871 */
- void (GLAPIENTRYP DebugMessageCallback)(GLDEBUGPROC callback, const GLvoid * userParam); /* 872 */
- void (GLAPIENTRYP DebugMessageControl)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 873 */
- void (GLAPIENTRYP DebugMessageInsert)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * buf); /* 874 */
- GLuint (GLAPIENTRYP GetDebugMessageLog)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog); /* 875 */
- void (GLAPIENTRYP GetObjectLabel)(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei * length, GLchar * label); /* 876 */
- void (GLAPIENTRYP GetObjectPtrLabel)(const GLvoid * ptr, GLsizei bufSize, GLsizei * length, GLchar * label); /* 877 */
- void (GLAPIENTRYP ObjectLabel)(GLenum identifier, GLuint name, GLsizei length, const GLchar * label); /* 878 */
- void (GLAPIENTRYP ObjectPtrLabel)(const GLvoid * ptr, GLsizei length, const GLchar * label); /* 879 */
- void (GLAPIENTRYP PopDebugGroup)(void); /* 880 */
- void (GLAPIENTRYP PushDebugGroup)(GLenum source, GLuint id, GLsizei length, const GLchar * message); /* 881 */
- void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 882 */
- void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 883 */
- void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount); /* 884 */
- void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 885 */
- void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 886 */
- void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 887 */
- void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 888 */
- void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 889 */
- void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 890 */
- void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 891 */
- void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 892 */
- void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 893 */
- void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 894 */
- void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 895 */
- void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 896 */
- void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 897 */
- GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 898 */
- void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 899 */
- void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 900 */
- void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 901 */
- void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 902 */
- void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 903 */
- void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 904 */
- void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 905 */
- void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 906 */
- void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 907 */
- void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 908 */
- void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 909 */
- void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 910 */
- void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 911 */
- void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 912 */
- void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 913 */
- void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 914 */
- void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 915 */
- void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 916 */
- void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 917 */
- void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 918 */
- void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 919 */
- void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 920 */
- void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 921 */
- void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 922 */
- void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 923 */
- void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 924 */
- void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 925 */
- void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 926 */
- void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 927 */
- void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 928 */
- void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 929 */
- void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 930 */
- void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 931 */
- void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 932 */
- void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 933 */
- void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 934 */
- void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 935 */
- void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 936 */
- void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 937 */
- void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 938 */
- void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 939 */
- void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 940 */
- void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 941 */
- void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 942 */
- void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 943 */
- void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 944 */
- void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 945 */
- void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 946 */
- void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 947 */
- void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 948 */
- void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 949 */
- void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 950 */
- void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 951 */
- void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 952 */
- void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 953 */
- void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 954 */
- void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 955 */
- void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 956 */
- void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 957 */
- void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 958 */
- 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); /* 959 */
- void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 960 */
- void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 961 */
- void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 962 */
- void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 963 */
- 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); /* 964 */
- void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 965 */
- void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 966 */
- GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 967 */
- void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 968 */
- void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 969 */
- void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 970 */
- void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 971 */
- void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 972 */
- void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 973 */
- void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 974 */
- void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 975 */
- void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 976 */
- void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 977 */
- void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 978 */
- void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 979 */
- void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 980 */
- void (GLAPIENTRYP GetTexGenxvOES)(GLenum coord, GLenum pname, GLfixed * params); /* 981 */
- void (GLAPIENTRYP TexGenxOES)(GLenum coord, GLenum pname, GLint param); /* 982 */
- void (GLAPIENTRYP TexGenxvOES)(GLenum coord, GLenum pname, const GLfixed * params); /* 983 */
- void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 984 */
- void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 985 */
- void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 986 */
- void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 987 */
- void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 988 */
- void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 989 */
- void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 990 */
- void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 991 */
- void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 992 */
- void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 993 */
- void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 994 */
- void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 995 */
- void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 996 */
- void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 997 */
- void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 998 */
- void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 999 */
- void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 1000 */
- void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 1001 */
- void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 1002 */
- void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 1003 */
- void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 1004 */
- void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 1005 */
- void (GLAPIENTRYP BeginPerfMonitorAMD)(GLuint monitor); /* 1006 */
- void (GLAPIENTRYP DeletePerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1007 */
- void (GLAPIENTRYP EndPerfMonitorAMD)(GLuint monitor); /* 1008 */
- void (GLAPIENTRYP GenPerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1009 */
- void (GLAPIENTRYP GetPerfMonitorCounterDataAMD)(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint * data, GLint * bytesWritten); /* 1010 */
- void (GLAPIENTRYP GetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, GLvoid * data); /* 1011 */
- void (GLAPIENTRYP GetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLsizei * length, GLchar * counterString); /* 1012 */
- void (GLAPIENTRYP GetPerfMonitorCountersAMD)(GLuint group, GLint * numCounters, GLint * maxActiveCounters, GLsizei countersSize, GLuint * counters); /* 1013 */
- void (GLAPIENTRYP GetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei * length, GLchar * groupString); /* 1014 */
- void (GLAPIENTRYP GetPerfMonitorGroupsAMD)(GLint * numGroups, GLsizei groupsSize, GLuint * groups); /* 1015 */
- void (GLAPIENTRYP SelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint * counterList); /* 1016 */
- void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 1017 */
- GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1018 */
- GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1019 */
- void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 1020 */
- GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 1021 */
- void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 1022 */
- void (GLAPIENTRYP TextureBarrierNV)(void); /* 1023 */
- void (GLAPIENTRYP VDPAUFiniNV)(void); /* 1024 */
- void (GLAPIENTRYP VDPAUGetSurfaceivNV)(GLintptr surface, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 1025 */
- void (GLAPIENTRYP VDPAUInitNV)(const GLvoid * vdpDevice, const GLvoid * getProcAddress); /* 1026 */
- void (GLAPIENTRYP VDPAUIsSurfaceNV)(GLintptr surface); /* 1027 */
- void (GLAPIENTRYP VDPAUMapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1028 */
- GLintptr (GLAPIENTRYP VDPAURegisterOutputSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1029 */
- GLintptr (GLAPIENTRYP VDPAURegisterVideoSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1030 */
- void (GLAPIENTRYP VDPAUSurfaceAccessNV)(GLintptr surface, GLenum access); /* 1031 */
- void (GLAPIENTRYP VDPAUUnmapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1032 */
- void (GLAPIENTRYP VDPAUUnregisterSurfaceNV)(GLintptr surface); /* 1033 */
- void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 1034 */
- void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1035 */
- void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1036 */
- void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 1037 */
- void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 1038 */
- void (GLAPIENTRYP AlphaFuncx)(GLenum func, GLclampx ref); /* 1039 */
- void (GLAPIENTRYP ClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); /* 1040 */
- void (GLAPIENTRYP ClearDepthx)(GLclampx depth); /* 1041 */
- void (GLAPIENTRYP Color4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); /* 1042 */
- void (GLAPIENTRYP DepthRangex)(GLclampx zNear, GLclampx zFar); /* 1043 */
- void (GLAPIENTRYP Fogx)(GLenum pname, GLfixed param); /* 1044 */
- void (GLAPIENTRYP Fogxv)(GLenum pname, const GLfixed * params); /* 1045 */
- void (GLAPIENTRYP Frustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1046 */
- void (GLAPIENTRYP Frustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1047 */
- void (GLAPIENTRYP LightModelx)(GLenum pname, GLfixed param); /* 1048 */
- void (GLAPIENTRYP LightModelxv)(GLenum pname, const GLfixed * params); /* 1049 */
- void (GLAPIENTRYP Lightx)(GLenum light, GLenum pname, GLfixed param); /* 1050 */
- void (GLAPIENTRYP Lightxv)(GLenum light, GLenum pname, const GLfixed * params); /* 1051 */
- void (GLAPIENTRYP LineWidthx)(GLfixed width); /* 1052 */
- void (GLAPIENTRYP LoadMatrixx)(const GLfixed * m); /* 1053 */
- void (GLAPIENTRYP Materialx)(GLenum face, GLenum pname, GLfixed param); /* 1054 */
- void (GLAPIENTRYP Materialxv)(GLenum face, GLenum pname, const GLfixed * params); /* 1055 */
- void (GLAPIENTRYP MultMatrixx)(const GLfixed * m); /* 1056 */
- void (GLAPIENTRYP MultiTexCoord4x)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); /* 1057 */
- void (GLAPIENTRYP Normal3x)(GLfixed nx, GLfixed ny, GLfixed nz); /* 1058 */
- void (GLAPIENTRYP Orthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1059 */
- void (GLAPIENTRYP Orthox)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1060 */
- void (GLAPIENTRYP PointSizex)(GLfixed size); /* 1061 */
- void (GLAPIENTRYP PolygonOffsetx)(GLfixed factor, GLfixed units); /* 1062 */
- void (GLAPIENTRYP Rotatex)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); /* 1063 */
- void (GLAPIENTRYP SampleCoveragex)(GLclampx value, GLboolean invert); /* 1064 */
- void (GLAPIENTRYP Scalex)(GLfixed x, GLfixed y, GLfixed z); /* 1065 */
- void (GLAPIENTRYP TexEnvx)(GLenum target, GLenum pname, GLfixed param); /* 1066 */
- void (GLAPIENTRYP TexEnvxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1067 */
- void (GLAPIENTRYP TexParameterx)(GLenum target, GLenum pname, GLfixed param); /* 1068 */
- void (GLAPIENTRYP Translatex)(GLfixed x, GLfixed y, GLfixed z); /* 1069 */
- void (GLAPIENTRYP ClipPlanef)(GLenum plane, const GLfloat * equation); /* 1070 */
- void (GLAPIENTRYP ClipPlanex)(GLenum plane, const GLfixed * equation); /* 1071 */
- void (GLAPIENTRYP GetClipPlanef)(GLenum plane, GLfloat * equation); /* 1072 */
- void (GLAPIENTRYP GetClipPlanex)(GLenum plane, GLfixed * equation); /* 1073 */
- void (GLAPIENTRYP GetFixedv)(GLenum pname, GLfixed * params); /* 1074 */
- void (GLAPIENTRYP GetLightxv)(GLenum light, GLenum pname, GLfixed * params); /* 1075 */
- void (GLAPIENTRYP GetMaterialxv)(GLenum face, GLenum pname, GLfixed * params); /* 1076 */
- void (GLAPIENTRYP GetTexEnvxv)(GLenum target, GLenum pname, GLfixed * params); /* 1077 */
- void (GLAPIENTRYP GetTexParameterxv)(GLenum target, GLenum pname, GLfixed * params); /* 1078 */
- void (GLAPIENTRYP PointParameterx)(GLenum pname, GLfixed param); /* 1079 */
- void (GLAPIENTRYP PointParameterxv)(GLenum pname, const GLfixed * params); /* 1080 */
- void (GLAPIENTRYP TexParameterxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1081 */
+ void (GLAPIENTRYP DepthRangeArrayv)(GLuint first, GLsizei count, const GLclampd * v); /* 793 */
+ void (GLAPIENTRYP DepthRangeIndexed)(GLuint index, GLclampd n, GLclampd f); /* 794 */
+ void (GLAPIENTRYP GetDoublei_v)(GLenum target, GLuint index, GLdouble * data); /* 795 */
+ void (GLAPIENTRYP GetFloati_v)(GLenum target, GLuint index, GLfloat * data); /* 796 */
+ void (GLAPIENTRYP ScissorArrayv)(GLuint first, GLsizei count, const int * v); /* 797 */
+ void (GLAPIENTRYP ScissorIndexed)(GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); /* 798 */
+ void (GLAPIENTRYP ScissorIndexedv)(GLuint index, const GLint * v); /* 799 */
+ void (GLAPIENTRYP ViewportArrayv)(GLuint first, GLsizei count, const GLfloat * v); /* 800 */
+ void (GLAPIENTRYP ViewportIndexedf)(GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); /* 801 */
+ void (GLAPIENTRYP ViewportIndexedfv)(GLuint index, const GLfloat * v); /* 802 */
+ void (GLAPIENTRYP DebugMessageCallbackARB)(GLDEBUGPROCARB callback, const GLvoid * userParam); /* 803 */
+ void (GLAPIENTRYP DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 804 */
+ void (GLAPIENTRYP DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB * buf); /* 805 */
+ GLuint (GLAPIENTRYP GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLcharARB * messageLog); /* 806 */
+ GLenum (GLAPIENTRYP GetGraphicsResetStatusARB)(void); /* 807 */
+ void (GLAPIENTRYP GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * table); /* 808 */
+ void (GLAPIENTRYP GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid * img); /* 809 */
+ void (GLAPIENTRYP GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * image); /* 810 */
+ void (GLAPIENTRYP GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 811 */
+ void (GLAPIENTRYP GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble * v); /* 812 */
+ void (GLAPIENTRYP GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat * v); /* 813 */
+ void (GLAPIENTRYP GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint * v); /* 814 */
+ void (GLAPIENTRYP GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 815 */
+ void (GLAPIENTRYP GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat * values); /* 816 */
+ void (GLAPIENTRYP GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint * values); /* 817 */
+ void (GLAPIENTRYP GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort * values); /* 818 */
+ void (GLAPIENTRYP GetnPolygonStippleARB)(GLsizei bufSize, GLubyte * pattern); /* 819 */
+ void (GLAPIENTRYP GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid * row, GLsizei columnBufSize, GLvoid * column, GLvoid * span); /* 820 */
+ void (GLAPIENTRYP GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid * img); /* 821 */
+ void (GLAPIENTRYP GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble * params); /* 822 */
+ void (GLAPIENTRYP GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat * params); /* 823 */
+ void (GLAPIENTRYP GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint * params); /* 824 */
+ void (GLAPIENTRYP GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint * params); /* 825 */
+ void (GLAPIENTRYP ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid * data); /* 826 */
+ void (GLAPIENTRYP DrawArraysInstancedBaseInstance)(GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance); /* 827 */
+ void (GLAPIENTRYP DrawElementsInstancedBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLuint baseinstance); /* 828 */
+ void (GLAPIENTRYP DrawElementsInstancedBaseVertexBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLint basevertex, GLuint baseinstance); /* 829 */
+ void (GLAPIENTRYP DrawTransformFeedbackInstanced)(GLenum mode, GLuint id, GLsizei primcount); /* 830 */
+ void (GLAPIENTRYP DrawTransformFeedbackStreamInstanced)(GLenum mode, GLuint id, GLuint stream, GLsizei primcount); /* 831 */
+ void (GLAPIENTRYP GetInternalformativ)(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint * params); /* 832 */
+ void (GLAPIENTRYP GetActiveAtomicCounterBufferiv)(GLuint program, GLuint bufferIndex, GLenum pname, GLint * params); /* 833 */
+ void (GLAPIENTRYP BindImageTexture)(GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); /* 834 */
+ void (GLAPIENTRYP MemoryBarrier)(GLbitfield barriers); /* 835 */
+ void (GLAPIENTRYP TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 836 */
+ void (GLAPIENTRYP TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 837 */
+ void (GLAPIENTRYP TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 838 */
+ void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 839 */
+ void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 840 */
+ 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 */
#endif /* !defined HAVE_SHARED_GLAPI */
};
diff --git a/xorg-server/glx/glfunctions.h b/xorg-server/glx/glfunctions.h
index 2663c4eaf..6668eae5d 100644
--- a/xorg-server/glx/glfunctions.h
+++ b/xorg-server/glx/glfunctions.h
@@ -827,6 +827,16 @@
#define glGetProgramBinary(a1, a2, a3, a4, a5) CALL_GetProgramBinary(GET_DISPATCH(), (a1, a2, a3, a4, a5))
#define glProgramBinary(a1, a2, a3, a4) CALL_ProgramBinary(GET_DISPATCH(), (a1, a2, a3, a4))
#define glProgramParameteri(a1, a2, a3) CALL_ProgramParameteri(GET_DISPATCH(), (a1, a2, a3))
+#define glDepthRangeArrayv(a1, a2, a3) CALL_DepthRangeArrayv(GET_DISPATCH(), (a1, a2, a3))
+#define glDepthRangeIndexed(a1, a2, a3) CALL_DepthRangeIndexed(GET_DISPATCH(), (a1, a2, a3))
+#define glGetDoublei_v(a1, a2, a3) CALL_GetDoublei_v(GET_DISPATCH(), (a1, a2, a3))
+#define glGetFloati_v(a1, a2, a3) CALL_GetFloati_v(GET_DISPATCH(), (a1, a2, a3))
+#define glScissorArrayv(a1, a2, a3) CALL_ScissorArrayv(GET_DISPATCH(), (a1, a2, a3))
+#define glScissorIndexed(a1, a2, a3, a4, a5) CALL_ScissorIndexed(GET_DISPATCH(), (a1, a2, a3, a4, a5))
+#define glScissorIndexedv(a1, a2) CALL_ScissorIndexedv(GET_DISPATCH(), (a1, a2))
+#define glViewportArrayv(a1, a2, a3) CALL_ViewportArrayv(GET_DISPATCH(), (a1, a2, a3))
+#define glViewportIndexedf(a1, a2, a3, a4, a5) CALL_ViewportIndexedf(GET_DISPATCH(), (a1, a2, a3, a4, a5))
+#define glViewportIndexedfv(a1, a2) CALL_ViewportIndexedfv(GET_DISPATCH(), (a1, a2))
#define glDebugMessageCallbackARB(a1, a2) CALL_DebugMessageCallbackARB(GET_DISPATCH(), (a1, a2))
#define glDebugMessageControlARB(a1, a2, a3, a4, a5, a6) CALL_DebugMessageControlARB(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6))
#define glDebugMessageInsertARB(a1, a2, a3, a4, a5, a6) CALL_DebugMessageInsertARB(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6))
@@ -858,6 +868,8 @@
#define glDrawTransformFeedbackStreamInstanced(a1, a2, a3, a4) CALL_DrawTransformFeedbackStreamInstanced(GET_DISPATCH(), (a1, a2, a3, a4))
#define glGetInternalformativ(a1, a2, a3, a4, a5) CALL_GetInternalformativ(GET_DISPATCH(), (a1, a2, a3, a4, a5))
#define glGetActiveAtomicCounterBufferiv(a1, a2, a3, a4) CALL_GetActiveAtomicCounterBufferiv(GET_DISPATCH(), (a1, a2, a3, a4))
+#define glBindImageTexture(a1, a2, a3, a4, a5, a6, a7) CALL_BindImageTexture(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6, a7))
+#define glMemoryBarrier(a1) CALL_MemoryBarrier(GET_DISPATCH(), (a1))
#define glTexStorage1D(a1, a2, a3, a4) CALL_TexStorage1D(GET_DISPATCH(), (a1, a2, a3, a4))
#define glTexStorage2D(a1, a2, a3, a4, a5) CALL_TexStorage2D(GET_DISPATCH(), (a1, a2, a3, a4, a5))
#define glTexStorage3D(a1, a2, a3, a4, a5, a6) CALL_TexStorage3D(GET_DISPATCH(), (a1, a2, a3, a4, a5, a6))
diff --git a/xorg-server/glx/glprocs.h b/xorg-server/glx/glprocs.h
index 325a58061..05290d0ad 100644
--- a/xorg-server/glx/glprocs.h
+++ b/xorg-server/glx/glprocs.h
@@ -845,6 +845,16 @@ static const char gl_string_table[] =
"glGetProgramBinary\0"
"glProgramBinary\0"
"glProgramParameteri\0"
+ "glDepthRangeArrayv\0"
+ "glDepthRangeIndexed\0"
+ "glGetDoublei_v\0"
+ "glGetFloati_v\0"
+ "glScissorArrayv\0"
+ "glScissorIndexed\0"
+ "glScissorIndexedv\0"
+ "glViewportArrayv\0"
+ "glViewportIndexedf\0"
+ "glViewportIndexedfv\0"
"glDebugMessageCallbackARB\0"
"glDebugMessageControlARB\0"
"glDebugMessageInsertARB\0"
@@ -876,6 +886,8 @@ static const char gl_string_table[] =
"glDrawTransformFeedbackStreamInstanced\0"
"glGetInternalformativ\0"
"glGetActiveAtomicCounterBufferiv\0"
+ "glBindImageTexture\0"
+ "glMemoryBarrier\0"
"glTexStorage1D\0"
"glTexStorage2D\0"
"glTexStorage3D\0"
@@ -1612,46 +1624,34 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_731 mgl_dispatch_stub_731
#define gl_dispatch_stub_732 mgl_dispatch_stub_732
#define gl_dispatch_stub_733 mgl_dispatch_stub_733
-#define gl_dispatch_stub_822 mgl_dispatch_stub_822
-#define gl_dispatch_stub_851 mgl_dispatch_stub_851
-#define gl_dispatch_stub_852 mgl_dispatch_stub_852
-#define gl_dispatch_stub_853 mgl_dispatch_stub_853
-#define gl_dispatch_stub_854 mgl_dispatch_stub_854
-#define gl_dispatch_stub_855 mgl_dispatch_stub_855
-#define gl_dispatch_stub_856 mgl_dispatch_stub_856
-#define gl_dispatch_stub_857 mgl_dispatch_stub_857
-#define gl_dispatch_stub_858 mgl_dispatch_stub_858
-#define gl_dispatch_stub_859 mgl_dispatch_stub_859
-#define gl_dispatch_stub_860 mgl_dispatch_stub_860
-#define gl_dispatch_stub_861 mgl_dispatch_stub_861
-#define gl_dispatch_stub_862 mgl_dispatch_stub_862
+#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
+#define gl_dispatch_stub_868 mgl_dispatch_stub_868
#define gl_dispatch_stub_869 mgl_dispatch_stub_869
-#define gl_dispatch_stub_896 mgl_dispatch_stub_896
-#define gl_dispatch_stub_897 mgl_dispatch_stub_897
-#define gl_dispatch_stub_971 mgl_dispatch_stub_971
-#define gl_dispatch_stub_972 mgl_dispatch_stub_972
-#define gl_dispatch_stub_973 mgl_dispatch_stub_973
-#define gl_dispatch_stub_981 mgl_dispatch_stub_981
-#define gl_dispatch_stub_982 mgl_dispatch_stub_982
+#define gl_dispatch_stub_870 mgl_dispatch_stub_870
+#define gl_dispatch_stub_871 mgl_dispatch_stub_871
+#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_987 mgl_dispatch_stub_987
-#define gl_dispatch_stub_988 mgl_dispatch_stub_988
-#define gl_dispatch_stub_1034 mgl_dispatch_stub_1034
-#define gl_dispatch_stub_1035 mgl_dispatch_stub_1035
-#define gl_dispatch_stub_1036 mgl_dispatch_stub_1036
-#define gl_dispatch_stub_1039 mgl_dispatch_stub_1039
-#define gl_dispatch_stub_1040 mgl_dispatch_stub_1040
-#define gl_dispatch_stub_1041 mgl_dispatch_stub_1041
-#define gl_dispatch_stub_1042 mgl_dispatch_stub_1042
-#define gl_dispatch_stub_1043 mgl_dispatch_stub_1043
-#define gl_dispatch_stub_1044 mgl_dispatch_stub_1044
-#define gl_dispatch_stub_1045 mgl_dispatch_stub_1045
+#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_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_1048 mgl_dispatch_stub_1048
-#define gl_dispatch_stub_1049 mgl_dispatch_stub_1049
-#define gl_dispatch_stub_1050 mgl_dispatch_stub_1050
#define gl_dispatch_stub_1051 mgl_dispatch_stub_1051
#define gl_dispatch_stub_1052 mgl_dispatch_stub_1052
#define gl_dispatch_stub_1053 mgl_dispatch_stub_1053
@@ -1683,6 +1683,18 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_1079 mgl_dispatch_stub_1079
#define gl_dispatch_stub_1080 mgl_dispatch_stub_1080
#define gl_dispatch_stub_1081 mgl_dispatch_stub_1081
+#define gl_dispatch_stub_1082 mgl_dispatch_stub_1082
+#define gl_dispatch_stub_1083 mgl_dispatch_stub_1083
+#define gl_dispatch_stub_1084 mgl_dispatch_stub_1084
+#define gl_dispatch_stub_1085 mgl_dispatch_stub_1085
+#define gl_dispatch_stub_1086 mgl_dispatch_stub_1086
+#define gl_dispatch_stub_1087 mgl_dispatch_stub_1087
+#define gl_dispatch_stub_1088 mgl_dispatch_stub_1088
+#define gl_dispatch_stub_1089 mgl_dispatch_stub_1089
+#define gl_dispatch_stub_1090 mgl_dispatch_stub_1090
+#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
#endif /* USE_MGL_NAMESPACE */
@@ -1703,77 +1715,77 @@ void GLAPIENTRY gl_dispatch_stub_366(GLenum target, GLenum pname, GLint * params
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_822(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint * params);
-void GLAPIENTRY gl_dispatch_stub_851(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
-void GLAPIENTRY gl_dispatch_stub_852(const GLfloat * coords);
-void GLAPIENTRY gl_dispatch_stub_853(GLint x, GLint y, GLint z, GLint width, GLint height);
-void GLAPIENTRY gl_dispatch_stub_854(const GLint * coords);
-void GLAPIENTRY gl_dispatch_stub_855(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
-void GLAPIENTRY gl_dispatch_stub_856(const GLshort * coords);
-void GLAPIENTRY gl_dispatch_stub_857(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
-void GLAPIENTRY gl_dispatch_stub_858(const GLfixed * coords);
-void GLAPIENTRY gl_dispatch_stub_859(GLenum type, GLsizei stride, const GLvoid * pointer);
-GLbitfield GLAPIENTRY gl_dispatch_stub_860(GLfixed * mantissa, GLint * exponent);
-void GLAPIENTRY gl_dispatch_stub_861(GLclampf value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_862(GLenum pattern);
-void GLAPIENTRY gl_dispatch_stub_869(GLenum target, GLsizei numAttachments, const GLenum * attachments);
-void GLAPIENTRY gl_dispatch_stub_896(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_897(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_971(GLenum face);
-void GLAPIENTRY gl_dispatch_stub_972(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_973(GLsizei n, GLuint * arrays);
-void GLAPIENTRY gl_dispatch_stub_981(GLenum coord, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_982(GLenum coord, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_983(GLenum coord, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_984(GLclampd zmin, GLclampd zmax);
-void GLAPIENTRY gl_dispatch_stub_987(GLenum target, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_988(GLenum target, GLintptr offset, GLsizeiptr size);
-void GLAPIENTRY gl_dispatch_stub_1034(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
-void GLAPIENTRY gl_dispatch_stub_1035(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_1036(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_1039(GLenum func, GLclampx ref);
-void GLAPIENTRY gl_dispatch_stub_1040(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
-void GLAPIENTRY gl_dispatch_stub_1041(GLclampx depth);
-void GLAPIENTRY gl_dispatch_stub_1042(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
-void GLAPIENTRY gl_dispatch_stub_1043(GLclampx zNear, GLclampx zFar);
-void GLAPIENTRY gl_dispatch_stub_1044(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1045(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1046(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
-void GLAPIENTRY gl_dispatch_stub_1047(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
-void GLAPIENTRY gl_dispatch_stub_1048(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1049(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1050(GLenum light, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1051(GLenum light, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1052(GLfixed width);
-void GLAPIENTRY gl_dispatch_stub_1053(const GLfixed * m);
-void GLAPIENTRY gl_dispatch_stub_1054(GLenum face, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1055(GLenum face, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1056(const GLfixed * m);
-void GLAPIENTRY gl_dispatch_stub_1057(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
-void GLAPIENTRY gl_dispatch_stub_1058(GLfixed nx, GLfixed ny, GLfixed nz);
-void GLAPIENTRY gl_dispatch_stub_1059(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
-void GLAPIENTRY gl_dispatch_stub_1060(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
-void GLAPIENTRY gl_dispatch_stub_1061(GLfixed size);
-void GLAPIENTRY gl_dispatch_stub_1062(GLfixed factor, GLfixed units);
-void GLAPIENTRY gl_dispatch_stub_1063(GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1064(GLclampx value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_1065(GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1066(GLenum target, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1067(GLenum target, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1068(GLenum target, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1069(GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1070(GLenum plane, const GLfloat * equation);
-void GLAPIENTRY gl_dispatch_stub_1071(GLenum plane, const GLfixed * equation);
-void GLAPIENTRY gl_dispatch_stub_1072(GLenum plane, GLfloat * equation);
-void GLAPIENTRY gl_dispatch_stub_1073(GLenum plane, GLfixed * equation);
-void GLAPIENTRY gl_dispatch_stub_1074(GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1075(GLenum light, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1076(GLenum face, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1077(GLenum target, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1078(GLenum target, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1079(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1080(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1081(GLenum target, GLenum pname, const GLfixed * params);
+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_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);
#endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */
static const glprocs_table_t static_functions[] = {
@@ -2570,753 +2582,765 @@ static const glprocs_table_t static_functions[] = {
NAME_FUNC_OFFSET(12975, glGetProgramBinary, glGetProgramBinary, NULL, 790),
NAME_FUNC_OFFSET(12994, glProgramBinary, glProgramBinary, NULL, 791),
NAME_FUNC_OFFSET(13010, glProgramParameteri, glProgramParameteri, NULL, 792),
- NAME_FUNC_OFFSET(13030, glDebugMessageCallbackARB, glDebugMessageCallbackARB, NULL, 793),
- NAME_FUNC_OFFSET(13056, glDebugMessageControlARB, glDebugMessageControlARB, NULL, 794),
- NAME_FUNC_OFFSET(13081, glDebugMessageInsertARB, glDebugMessageInsertARB, NULL, 795),
- NAME_FUNC_OFFSET(13105, glGetDebugMessageLogARB, glGetDebugMessageLogARB, NULL, 796),
- NAME_FUNC_OFFSET(13129, glGetGraphicsResetStatusARB, glGetGraphicsResetStatusARB, NULL, 797),
- NAME_FUNC_OFFSET(13157, glGetnColorTableARB, glGetnColorTableARB, NULL, 798),
- NAME_FUNC_OFFSET(13177, glGetnCompressedTexImageARB, glGetnCompressedTexImageARB, NULL, 799),
- NAME_FUNC_OFFSET(13205, glGetnConvolutionFilterARB, glGetnConvolutionFilterARB, NULL, 800),
- NAME_FUNC_OFFSET(13232, glGetnHistogramARB, glGetnHistogramARB, NULL, 801),
- NAME_FUNC_OFFSET(13251, glGetnMapdvARB, glGetnMapdvARB, NULL, 802),
- NAME_FUNC_OFFSET(13266, glGetnMapfvARB, glGetnMapfvARB, NULL, 803),
- NAME_FUNC_OFFSET(13281, glGetnMapivARB, glGetnMapivARB, NULL, 804),
- NAME_FUNC_OFFSET(13296, glGetnMinmaxARB, glGetnMinmaxARB, NULL, 805),
- NAME_FUNC_OFFSET(13312, glGetnPixelMapfvARB, glGetnPixelMapfvARB, NULL, 806),
- NAME_FUNC_OFFSET(13332, glGetnPixelMapuivARB, glGetnPixelMapuivARB, NULL, 807),
- NAME_FUNC_OFFSET(13353, glGetnPixelMapusvARB, glGetnPixelMapusvARB, NULL, 808),
- NAME_FUNC_OFFSET(13374, glGetnPolygonStippleARB, glGetnPolygonStippleARB, NULL, 809),
- NAME_FUNC_OFFSET(13398, glGetnSeparableFilterARB, glGetnSeparableFilterARB, NULL, 810),
- NAME_FUNC_OFFSET(13423, glGetnTexImageARB, glGetnTexImageARB, NULL, 811),
- NAME_FUNC_OFFSET(13441, glGetnUniformdvARB, glGetnUniformdvARB, NULL, 812),
- NAME_FUNC_OFFSET(13460, glGetnUniformfvARB, glGetnUniformfvARB, NULL, 813),
- NAME_FUNC_OFFSET(13479, glGetnUniformivARB, glGetnUniformivARB, NULL, 814),
- NAME_FUNC_OFFSET(13498, glGetnUniformuivARB, glGetnUniformuivARB, NULL, 815),
- NAME_FUNC_OFFSET(13518, glReadnPixelsARB, glReadnPixelsARB, NULL, 816),
- NAME_FUNC_OFFSET(13535, glDrawArraysInstancedBaseInstance, glDrawArraysInstancedBaseInstance, NULL, 817),
- NAME_FUNC_OFFSET(13569, glDrawElementsInstancedBaseInstance, glDrawElementsInstancedBaseInstance, NULL, 818),
- NAME_FUNC_OFFSET(13605, glDrawElementsInstancedBaseVertexBaseInstance, glDrawElementsInstancedBaseVertexBaseInstance, NULL, 819),
- NAME_FUNC_OFFSET(13651, glDrawTransformFeedbackInstanced, glDrawTransformFeedbackInstanced, NULL, 820),
- NAME_FUNC_OFFSET(13684, glDrawTransformFeedbackStreamInstanced, glDrawTransformFeedbackStreamInstanced, NULL, 821),
- NAME_FUNC_OFFSET(13723, gl_dispatch_stub_822, gl_dispatch_stub_822, NULL, 822),
- NAME_FUNC_OFFSET(13745, glGetActiveAtomicCounterBufferiv, glGetActiveAtomicCounterBufferiv, NULL, 823),
- NAME_FUNC_OFFSET(13778, glTexStorage1D, glTexStorage1D, NULL, 824),
- NAME_FUNC_OFFSET(13793, glTexStorage2D, glTexStorage2D, NULL, 825),
- NAME_FUNC_OFFSET(13808, glTexStorage3D, glTexStorage3D, NULL, 826),
- NAME_FUNC_OFFSET(13823, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 827),
- NAME_FUNC_OFFSET(13845, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 828),
- NAME_FUNC_OFFSET(13867, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 829),
- NAME_FUNC_OFFSET(13889, glClearBufferData, glClearBufferData, NULL, 830),
- NAME_FUNC_OFFSET(13907, glClearBufferSubData, glClearBufferSubData, NULL, 831),
- NAME_FUNC_OFFSET(13928, glTextureView, glTextureView, NULL, 832),
- NAME_FUNC_OFFSET(13942, glBindVertexBuffer, glBindVertexBuffer, NULL, 833),
- NAME_FUNC_OFFSET(13961, glVertexAttribBinding, glVertexAttribBinding, NULL, 834),
- NAME_FUNC_OFFSET(13983, glVertexAttribFormat, glVertexAttribFormat, NULL, 835),
- NAME_FUNC_OFFSET(14004, glVertexAttribIFormat, glVertexAttribIFormat, NULL, 836),
- NAME_FUNC_OFFSET(14026, glVertexAttribLFormat, glVertexAttribLFormat, NULL, 837),
- NAME_FUNC_OFFSET(14048, glVertexBindingDivisor, glVertexBindingDivisor, NULL, 838),
- NAME_FUNC_OFFSET(14071, glMultiDrawArraysIndirect, glMultiDrawArraysIndirect, NULL, 839),
- NAME_FUNC_OFFSET(14097, glMultiDrawElementsIndirect, glMultiDrawElementsIndirect, NULL, 840),
- NAME_FUNC_OFFSET(14125, glTexBufferRange, glTexBufferRange, NULL, 841),
- NAME_FUNC_OFFSET(14142, glTexStorage2DMultisample, glTexStorage2DMultisample, NULL, 842),
- NAME_FUNC_OFFSET(14168, glTexStorage3DMultisample, glTexStorage3DMultisample, NULL, 843),
- NAME_FUNC_OFFSET(14194, glInvalidateBufferData, glInvalidateBufferData, NULL, 844),
- NAME_FUNC_OFFSET(14217, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 845),
- NAME_FUNC_OFFSET(14243, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 846),
- NAME_FUNC_OFFSET(14267, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 847),
- NAME_FUNC_OFFSET(14294, glInvalidateTexImage, glInvalidateTexImage, NULL, 848),
- NAME_FUNC_OFFSET(14315, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 849),
- NAME_FUNC_OFFSET(14339, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 850),
- NAME_FUNC_OFFSET(14358, gl_dispatch_stub_851, gl_dispatch_stub_851, NULL, 851),
- NAME_FUNC_OFFSET(14372, gl_dispatch_stub_852, gl_dispatch_stub_852, NULL, 852),
- NAME_FUNC_OFFSET(14387, gl_dispatch_stub_853, gl_dispatch_stub_853, NULL, 853),
- NAME_FUNC_OFFSET(14401, gl_dispatch_stub_854, gl_dispatch_stub_854, NULL, 854),
- NAME_FUNC_OFFSET(14416, gl_dispatch_stub_855, gl_dispatch_stub_855, NULL, 855),
- NAME_FUNC_OFFSET(14430, gl_dispatch_stub_856, gl_dispatch_stub_856, NULL, 856),
- NAME_FUNC_OFFSET(14445, gl_dispatch_stub_857, gl_dispatch_stub_857, NULL, 857),
- NAME_FUNC_OFFSET(14459, gl_dispatch_stub_858, gl_dispatch_stub_858, NULL, 858),
- NAME_FUNC_OFFSET(14474, gl_dispatch_stub_859, gl_dispatch_stub_859, NULL, 859),
- NAME_FUNC_OFFSET(14496, gl_dispatch_stub_860, gl_dispatch_stub_860, NULL, 860),
- NAME_FUNC_OFFSET(14514, gl_dispatch_stub_861, gl_dispatch_stub_861, NULL, 861),
- NAME_FUNC_OFFSET(14531, gl_dispatch_stub_862, gl_dispatch_stub_862, NULL, 862),
- NAME_FUNC_OFFSET(14551, glColorPointerEXT, glColorPointerEXT, NULL, 863),
- NAME_FUNC_OFFSET(14569, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 864),
- NAME_FUNC_OFFSET(14590, glIndexPointerEXT, glIndexPointerEXT, NULL, 865),
- NAME_FUNC_OFFSET(14608, glNormalPointerEXT, glNormalPointerEXT, NULL, 866),
- NAME_FUNC_OFFSET(14627, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 867),
- NAME_FUNC_OFFSET(14648, glVertexPointerEXT, glVertexPointerEXT, NULL, 868),
- NAME_FUNC_OFFSET(14667, gl_dispatch_stub_869, gl_dispatch_stub_869, NULL, 869),
- NAME_FUNC_OFFSET(14691, glLockArraysEXT, glLockArraysEXT, NULL, 870),
- NAME_FUNC_OFFSET(14707, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 871),
- NAME_FUNC_OFFSET(14725, glDebugMessageCallback, glDebugMessageCallback, NULL, 872),
- NAME_FUNC_OFFSET(14748, glDebugMessageControl, glDebugMessageControl, NULL, 873),
- NAME_FUNC_OFFSET(14770, glDebugMessageInsert, glDebugMessageInsert, NULL, 874),
- NAME_FUNC_OFFSET(14791, glGetDebugMessageLog, glGetDebugMessageLog, NULL, 875),
- NAME_FUNC_OFFSET(14812, glGetObjectLabel, glGetObjectLabel, NULL, 876),
- NAME_FUNC_OFFSET(14829, glGetObjectPtrLabel, glGetObjectPtrLabel, NULL, 877),
- NAME_FUNC_OFFSET(14849, glObjectLabel, glObjectLabel, NULL, 878),
- NAME_FUNC_OFFSET(14863, glObjectPtrLabel, glObjectPtrLabel, NULL, 879),
- NAME_FUNC_OFFSET(14880, glPopDebugGroup, glPopDebugGroup, NULL, 880),
- NAME_FUNC_OFFSET(14896, glPushDebugGroup, glPushDebugGroup, NULL, 881),
- NAME_FUNC_OFFSET(14913, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 882),
- NAME_FUNC_OFFSET(14935, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 883),
- NAME_FUNC_OFFSET(14958, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 884),
- NAME_FUNC_OFFSET(14981, glFogCoordfEXT, glFogCoordfEXT, NULL, 885),
- NAME_FUNC_OFFSET(14996, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 886),
- NAME_FUNC_OFFSET(15012, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 887),
- NAME_FUNC_OFFSET(15032, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 888),
- NAME_FUNC_OFFSET(15050, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 889),
- NAME_FUNC_OFFSET(15069, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 890),
- NAME_FUNC_OFFSET(15087, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 891),
- NAME_FUNC_OFFSET(15106, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 892),
- NAME_FUNC_OFFSET(15124, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 893),
- NAME_FUNC_OFFSET(15143, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 894),
- NAME_FUNC_OFFSET(15161, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 895),
- NAME_FUNC_OFFSET(15180, gl_dispatch_stub_896, gl_dispatch_stub_896, NULL, 896),
- NAME_FUNC_OFFSET(15205, gl_dispatch_stub_897, gl_dispatch_stub_897, NULL, 897),
- NAME_FUNC_OFFSET(15232, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 898),
- NAME_FUNC_OFFSET(15256, glExecuteProgramNV, glExecuteProgramNV, NULL, 899),
- NAME_FUNC_OFFSET(15275, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 900),
- NAME_FUNC_OFFSET(15301, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 901),
- NAME_FUNC_OFFSET(15327, glGetProgramStringNV, glGetProgramStringNV, NULL, 902),
- NAME_FUNC_OFFSET(15348, glGetProgramivNV, glGetProgramivNV, NULL, 903),
- NAME_FUNC_OFFSET(15365, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 904),
- NAME_FUNC_OFFSET(15386, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 905),
- NAME_FUNC_OFFSET(15408, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 906),
- NAME_FUNC_OFFSET(15430, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 907),
- NAME_FUNC_OFFSET(15452, glLoadProgramNV, glLoadProgramNV, NULL, 908),
- NAME_FUNC_OFFSET(15468, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 909),
- NAME_FUNC_OFFSET(15493, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 910),
- NAME_FUNC_OFFSET(15518, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 911),
- NAME_FUNC_OFFSET(15546, glTrackMatrixNV, glTrackMatrixNV, NULL, 912),
- NAME_FUNC_OFFSET(15562, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 913),
- NAME_FUNC_OFFSET(15581, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 914),
- NAME_FUNC_OFFSET(15601, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 915),
- NAME_FUNC_OFFSET(15620, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 916),
- NAME_FUNC_OFFSET(15640, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 917),
- NAME_FUNC_OFFSET(15659, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 918),
- NAME_FUNC_OFFSET(15679, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 919),
- NAME_FUNC_OFFSET(15698, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 920),
- NAME_FUNC_OFFSET(15718, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 921),
- NAME_FUNC_OFFSET(15737, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 922),
- NAME_FUNC_OFFSET(15757, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 923),
- NAME_FUNC_OFFSET(15776, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 924),
- NAME_FUNC_OFFSET(15796, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 925),
- NAME_FUNC_OFFSET(15815, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 926),
- NAME_FUNC_OFFSET(15835, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 927),
- NAME_FUNC_OFFSET(15854, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 928),
- NAME_FUNC_OFFSET(15874, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 929),
- NAME_FUNC_OFFSET(15893, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 930),
- NAME_FUNC_OFFSET(15913, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 931),
- NAME_FUNC_OFFSET(15932, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 932),
- NAME_FUNC_OFFSET(15952, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 933),
- NAME_FUNC_OFFSET(15971, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 934),
- NAME_FUNC_OFFSET(15991, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 935),
- NAME_FUNC_OFFSET(16010, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 936),
- NAME_FUNC_OFFSET(16030, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 937),
- NAME_FUNC_OFFSET(16050, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 938),
- NAME_FUNC_OFFSET(16071, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 939),
- NAME_FUNC_OFFSET(16095, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 940),
- NAME_FUNC_OFFSET(16116, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 941),
- NAME_FUNC_OFFSET(16137, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 942),
- NAME_FUNC_OFFSET(16158, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 943),
- NAME_FUNC_OFFSET(16179, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 944),
- NAME_FUNC_OFFSET(16200, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 945),
- NAME_FUNC_OFFSET(16221, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 946),
- NAME_FUNC_OFFSET(16242, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 947),
- NAME_FUNC_OFFSET(16263, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 948),
- NAME_FUNC_OFFSET(16284, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 949),
- NAME_FUNC_OFFSET(16305, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 950),
- NAME_FUNC_OFFSET(16326, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 951),
- NAME_FUNC_OFFSET(16347, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 952),
- NAME_FUNC_OFFSET(16369, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 953),
- NAME_FUNC_OFFSET(16396, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 954),
- NAME_FUNC_OFFSET(16423, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 955),
- NAME_FUNC_OFFSET(16447, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 956),
- NAME_FUNC_OFFSET(16471, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 957),
- NAME_FUNC_OFFSET(16493, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 958),
- NAME_FUNC_OFFSET(16515, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 959),
- NAME_FUNC_OFFSET(16537, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 960),
- NAME_FUNC_OFFSET(16562, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 961),
- NAME_FUNC_OFFSET(16586, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 962),
- NAME_FUNC_OFFSET(16608, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 963),
- NAME_FUNC_OFFSET(16630, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 964),
- NAME_FUNC_OFFSET(16652, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 965),
- NAME_FUNC_OFFSET(16678, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 966),
- NAME_FUNC_OFFSET(16701, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 967),
- NAME_FUNC_OFFSET(16725, glPassTexCoordATI, glPassTexCoordATI, NULL, 968),
- NAME_FUNC_OFFSET(16743, glSampleMapATI, glSampleMapATI, NULL, 969),
- NAME_FUNC_OFFSET(16758, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 970),
- NAME_FUNC_OFFSET(16789, gl_dispatch_stub_971, gl_dispatch_stub_971, NULL, 971),
- NAME_FUNC_OFFSET(16812, gl_dispatch_stub_972, gl_dispatch_stub_972, NULL, 972),
- NAME_FUNC_OFFSET(16835, gl_dispatch_stub_973, gl_dispatch_stub_973, NULL, 973),
- NAME_FUNC_OFFSET(16858, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 974),
- NAME_FUNC_OFFSET(16889, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 975),
- NAME_FUNC_OFFSET(16920, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 976),
- NAME_FUNC_OFFSET(16948, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 977),
- NAME_FUNC_OFFSET(16977, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 978),
- NAME_FUNC_OFFSET(17005, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 979),
- NAME_FUNC_OFFSET(17034, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 980),
- NAME_FUNC_OFFSET(17055, gl_dispatch_stub_981, gl_dispatch_stub_981, NULL, 981),
- NAME_FUNC_OFFSET(17072, gl_dispatch_stub_982, gl_dispatch_stub_982, NULL, 982),
- NAME_FUNC_OFFSET(17085, gl_dispatch_stub_983, gl_dispatch_stub_983, NULL, 983),
- NAME_FUNC_OFFSET(17099, gl_dispatch_stub_984, gl_dispatch_stub_984, NULL, 984),
- NAME_FUNC_OFFSET(17116, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 985),
- NAME_FUNC_OFFSET(17137, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 986),
- NAME_FUNC_OFFSET(17159, gl_dispatch_stub_987, gl_dispatch_stub_987, NULL, 987),
- NAME_FUNC_OFFSET(17183, gl_dispatch_stub_988, gl_dispatch_stub_988, NULL, 988),
- NAME_FUNC_OFFSET(17213, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 989),
- NAME_FUNC_OFFSET(17234, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 990),
- NAME_FUNC_OFFSET(17256, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 991),
- NAME_FUNC_OFFSET(17277, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 992),
- NAME_FUNC_OFFSET(17299, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 993),
- NAME_FUNC_OFFSET(17321, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 994),
- NAME_FUNC_OFFSET(17344, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 995),
- NAME_FUNC_OFFSET(17365, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 996),
- NAME_FUNC_OFFSET(17387, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 997),
- NAME_FUNC_OFFSET(17409, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 998),
- NAME_FUNC_OFFSET(17432, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 999),
- NAME_FUNC_OFFSET(17453, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 1000),
- NAME_FUNC_OFFSET(17475, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 1001),
- NAME_FUNC_OFFSET(17497, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 1002),
- NAME_FUNC_OFFSET(17520, glClearColorIiEXT, glClearColorIiEXT, NULL, 1003),
- NAME_FUNC_OFFSET(17538, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 1004),
- NAME_FUNC_OFFSET(17557, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 1005),
- NAME_FUNC_OFFSET(17579, glBeginPerfMonitorAMD, glBeginPerfMonitorAMD, NULL, 1006),
- NAME_FUNC_OFFSET(17601, glDeletePerfMonitorsAMD, glDeletePerfMonitorsAMD, NULL, 1007),
- NAME_FUNC_OFFSET(17625, glEndPerfMonitorAMD, glEndPerfMonitorAMD, NULL, 1008),
- NAME_FUNC_OFFSET(17645, glGenPerfMonitorsAMD, glGenPerfMonitorsAMD, NULL, 1009),
- NAME_FUNC_OFFSET(17666, glGetPerfMonitorCounterDataAMD, glGetPerfMonitorCounterDataAMD, NULL, 1010),
- NAME_FUNC_OFFSET(17697, glGetPerfMonitorCounterInfoAMD, glGetPerfMonitorCounterInfoAMD, NULL, 1011),
- NAME_FUNC_OFFSET(17728, glGetPerfMonitorCounterStringAMD, glGetPerfMonitorCounterStringAMD, NULL, 1012),
- NAME_FUNC_OFFSET(17761, glGetPerfMonitorCountersAMD, glGetPerfMonitorCountersAMD, NULL, 1013),
- NAME_FUNC_OFFSET(17789, glGetPerfMonitorGroupStringAMD, glGetPerfMonitorGroupStringAMD, NULL, 1014),
- NAME_FUNC_OFFSET(17820, glGetPerfMonitorGroupsAMD, glGetPerfMonitorGroupsAMD, NULL, 1015),
- NAME_FUNC_OFFSET(17846, glSelectPerfMonitorCountersAMD, glSelectPerfMonitorCountersAMD, NULL, 1016),
- NAME_FUNC_OFFSET(17877, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 1017),
- NAME_FUNC_OFFSET(17905, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 1018),
- NAME_FUNC_OFFSET(17928, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 1019),
- NAME_FUNC_OFFSET(17953, glActiveProgramEXT, glActiveProgramEXT, NULL, 1020),
- NAME_FUNC_OFFSET(17972, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 1021),
- NAME_FUNC_OFFSET(17997, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 1022),
- NAME_FUNC_OFFSET(18019, glTextureBarrierNV, glTextureBarrierNV, NULL, 1023),
- NAME_FUNC_OFFSET(18038, glVDPAUFiniNV, glVDPAUFiniNV, NULL, 1024),
- NAME_FUNC_OFFSET(18052, glVDPAUGetSurfaceivNV, glVDPAUGetSurfaceivNV, NULL, 1025),
- NAME_FUNC_OFFSET(18074, glVDPAUInitNV, glVDPAUInitNV, NULL, 1026),
- NAME_FUNC_OFFSET(18088, glVDPAUIsSurfaceNV, glVDPAUIsSurfaceNV, NULL, 1027),
- NAME_FUNC_OFFSET(18107, glVDPAUMapSurfacesNV, glVDPAUMapSurfacesNV, NULL, 1028),
- NAME_FUNC_OFFSET(18128, glVDPAURegisterOutputSurfaceNV, glVDPAURegisterOutputSurfaceNV, NULL, 1029),
- NAME_FUNC_OFFSET(18159, glVDPAURegisterVideoSurfaceNV, glVDPAURegisterVideoSurfaceNV, NULL, 1030),
- NAME_FUNC_OFFSET(18189, glVDPAUSurfaceAccessNV, glVDPAUSurfaceAccessNV, NULL, 1031),
- NAME_FUNC_OFFSET(18212, glVDPAUUnmapSurfacesNV, glVDPAUUnmapSurfacesNV, NULL, 1032),
- NAME_FUNC_OFFSET(18235, glVDPAUUnregisterSurfaceNV, glVDPAUUnregisterSurfaceNV, NULL, 1033),
- NAME_FUNC_OFFSET(18262, gl_dispatch_stub_1034, gl_dispatch_stub_1034, NULL, 1034),
- NAME_FUNC_OFFSET(18287, gl_dispatch_stub_1035, gl_dispatch_stub_1035, NULL, 1035),
- NAME_FUNC_OFFSET(18316, gl_dispatch_stub_1036, gl_dispatch_stub_1036, NULL, 1036),
- NAME_FUNC_OFFSET(18347, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 1037),
- NAME_FUNC_OFFSET(18386, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 1038),
- NAME_FUNC_OFFSET(18415, gl_dispatch_stub_1039, gl_dispatch_stub_1039, NULL, 1039),
- NAME_FUNC_OFFSET(18428, gl_dispatch_stub_1040, gl_dispatch_stub_1040, NULL, 1040),
- NAME_FUNC_OFFSET(18442, gl_dispatch_stub_1041, gl_dispatch_stub_1041, NULL, 1041),
- NAME_FUNC_OFFSET(18456, gl_dispatch_stub_1042, gl_dispatch_stub_1042, NULL, 1042),
- NAME_FUNC_OFFSET(18466, gl_dispatch_stub_1043, gl_dispatch_stub_1043, NULL, 1043),
- NAME_FUNC_OFFSET(18480, gl_dispatch_stub_1044, gl_dispatch_stub_1044, NULL, 1044),
- NAME_FUNC_OFFSET(18487, gl_dispatch_stub_1045, gl_dispatch_stub_1045, NULL, 1045),
- NAME_FUNC_OFFSET(18495, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
- NAME_FUNC_OFFSET(18506, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
- NAME_FUNC_OFFSET(18517, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
- NAME_FUNC_OFFSET(18531, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
- NAME_FUNC_OFFSET(18546, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
- NAME_FUNC_OFFSET(18555, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
- NAME_FUNC_OFFSET(18565, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
- NAME_FUNC_OFFSET(18578, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
- NAME_FUNC_OFFSET(18592, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
- NAME_FUNC_OFFSET(18604, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
- NAME_FUNC_OFFSET(18617, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
- NAME_FUNC_OFFSET(18631, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
- NAME_FUNC_OFFSET(18649, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
- NAME_FUNC_OFFSET(18660, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
- NAME_FUNC_OFFSET(18669, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
- NAME_FUNC_OFFSET(18678, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
- NAME_FUNC_OFFSET(18691, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
- NAME_FUNC_OFFSET(18708, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
- NAME_FUNC_OFFSET(18718, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
- NAME_FUNC_OFFSET(18736, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
- NAME_FUNC_OFFSET(18745, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
- NAME_FUNC_OFFSET(18755, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
- NAME_FUNC_OFFSET(18766, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
- NAME_FUNC_OFFSET(18782, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
- NAME_FUNC_OFFSET(18795, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
- NAME_FUNC_OFFSET(18808, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
- NAME_FUNC_OFFSET(18821, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
- NAME_FUNC_OFFSET(18837, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
- NAME_FUNC_OFFSET(18853, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
- NAME_FUNC_OFFSET(18865, gl_dispatch_stub_1075, gl_dispatch_stub_1075, NULL, 1075),
- NAME_FUNC_OFFSET(18878, gl_dispatch_stub_1076, gl_dispatch_stub_1076, NULL, 1076),
- NAME_FUNC_OFFSET(18894, gl_dispatch_stub_1077, gl_dispatch_stub_1077, NULL, 1077),
- NAME_FUNC_OFFSET(18908, gl_dispatch_stub_1078, gl_dispatch_stub_1078, NULL, 1078),
- NAME_FUNC_OFFSET(18928, gl_dispatch_stub_1079, gl_dispatch_stub_1079, NULL, 1079),
- NAME_FUNC_OFFSET(18946, gl_dispatch_stub_1080, gl_dispatch_stub_1080, NULL, 1080),
- NAME_FUNC_OFFSET(18965, gl_dispatch_stub_1081, gl_dispatch_stub_1081, NULL, 1081),
- NAME_FUNC_OFFSET(18982, glTexGenf, glTexGenf, NULL, 190),
- NAME_FUNC_OFFSET(18995, glTexGenfv, glTexGenfv, NULL, 191),
- NAME_FUNC_OFFSET(19009, glTexGeni, glTexGeni, NULL, 192),
- NAME_FUNC_OFFSET(19022, glTexGeniv, glTexGeniv, NULL, 193),
- NAME_FUNC_OFFSET(19036, glReadBuffer, glReadBuffer, NULL, 254),
- NAME_FUNC_OFFSET(19051, glGetTexGenfv, glGetTexGenfv, NULL, 279),
- NAME_FUNC_OFFSET(19068, glGetTexGeniv, glGetTexGeniv, NULL, 280),
- NAME_FUNC_OFFSET(19085, glArrayElement, glArrayElement, NULL, 306),
- NAME_FUNC_OFFSET(19103, glBindTexture, glBindTexture, NULL, 307),
- NAME_FUNC_OFFSET(19120, glDrawArrays, glDrawArrays, NULL, 310),
- NAME_FUNC_OFFSET(19136, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
- NAME_FUNC_OFFSET(19161, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
- NAME_FUNC_OFFSET(19181, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
- NAME_FUNC_OFFSET(19201, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
- NAME_FUNC_OFFSET(19224, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
- NAME_FUNC_OFFSET(19247, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
- NAME_FUNC_OFFSET(19267, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
- NAME_FUNC_OFFSET(19284, glGetPointerv, glGetPointerv, NULL, 329),
- NAME_FUNC_OFFSET(19301, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
- NAME_FUNC_OFFSET(19316, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
- NAME_FUNC_OFFSET(19340, glTexSubImage1D, glTexSubImage1D, NULL, 332),
- NAME_FUNC_OFFSET(19359, glTexSubImage2D, glTexSubImage2D, NULL, 333),
- NAME_FUNC_OFFSET(19378, glBlendColor, glBlendColor, NULL, 336),
- NAME_FUNC_OFFSET(19394, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(19413, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(19432, glDrawRangeElements, glDrawRangeElements, NULL, 338),
- NAME_FUNC_OFFSET(19455, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(19471, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(19487, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
- NAME_FUNC_OFFSET(19514, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
- NAME_FUNC_OFFSET(19541, glCopyColorTable, glCopyColorTable, NULL, 342),
- NAME_FUNC_OFFSET(19561, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(19580, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(19599, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(19629, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(19659, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(19689, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(19719, glColorSubTable, glColorSubTable, NULL, 346),
- NAME_FUNC_OFFSET(19738, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
- NAME_FUNC_OFFSET(19761, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
- NAME_FUNC_OFFSET(19786, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
- NAME_FUNC_OFFSET(19811, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
- NAME_FUNC_OFFSET(19838, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
- NAME_FUNC_OFFSET(19866, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
- NAME_FUNC_OFFSET(19893, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
- NAME_FUNC_OFFSET(19921, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
- NAME_FUNC_OFFSET(19950, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
- NAME_FUNC_OFFSET(19979, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
- NAME_FUNC_OFFSET(20005, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
- NAME_FUNC_OFFSET(20036, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
- NAME_FUNC_OFFSET(20067, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
- NAME_FUNC_OFFSET(20091, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
- NAME_FUNC_OFFSET(20114, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
- NAME_FUNC_OFFSET(20132, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
- NAME_FUNC_OFFSET(20161, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
- NAME_FUNC_OFFSET(20190, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
- NAME_FUNC_OFFSET(20205, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
- NAME_FUNC_OFFSET(20231, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
- NAME_FUNC_OFFSET(20257, glHistogram, glHistogram, NULL, 367),
- NAME_FUNC_OFFSET(20272, glMinmax, glMinmax, NULL, 368),
- NAME_FUNC_OFFSET(20284, glResetHistogram, glResetHistogram, NULL, 369),
- NAME_FUNC_OFFSET(20304, glResetMinmax, glResetMinmax, NULL, 370),
- NAME_FUNC_OFFSET(20321, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(20337, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(20353, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(20372, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(20391, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(20414, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(20437, glActiveTexture, glActiveTexture, NULL, 374),
- NAME_FUNC_OFFSET(20456, glClientActiveTexture, glClientActiveTexture, NULL, 375),
- NAME_FUNC_OFFSET(20481, glMultiTexCoord1d, glMultiTexCoord1d, NULL, 376),
- NAME_FUNC_OFFSET(20502, glMultiTexCoord1dv, glMultiTexCoord1dv, NULL, 377),
- NAME_FUNC_OFFSET(20524, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
- NAME_FUNC_OFFSET(20542, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
- NAME_FUNC_OFFSET(20561, glMultiTexCoord1i, glMultiTexCoord1i, NULL, 380),
- NAME_FUNC_OFFSET(20582, glMultiTexCoord1iv, glMultiTexCoord1iv, NULL, 381),
- NAME_FUNC_OFFSET(20604, glMultiTexCoord1s, glMultiTexCoord1s, NULL, 382),
- NAME_FUNC_OFFSET(20625, glMultiTexCoord1sv, glMultiTexCoord1sv, NULL, 383),
- NAME_FUNC_OFFSET(20647, glMultiTexCoord2d, glMultiTexCoord2d, NULL, 384),
- NAME_FUNC_OFFSET(20668, glMultiTexCoord2dv, glMultiTexCoord2dv, NULL, 385),
- NAME_FUNC_OFFSET(20690, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
- NAME_FUNC_OFFSET(20708, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
- NAME_FUNC_OFFSET(20727, glMultiTexCoord2i, glMultiTexCoord2i, NULL, 388),
- NAME_FUNC_OFFSET(20748, glMultiTexCoord2iv, glMultiTexCoord2iv, NULL, 389),
- NAME_FUNC_OFFSET(20770, glMultiTexCoord2s, glMultiTexCoord2s, NULL, 390),
- NAME_FUNC_OFFSET(20791, glMultiTexCoord2sv, glMultiTexCoord2sv, NULL, 391),
- NAME_FUNC_OFFSET(20813, glMultiTexCoord3d, glMultiTexCoord3d, NULL, 392),
- NAME_FUNC_OFFSET(20834, glMultiTexCoord3dv, glMultiTexCoord3dv, NULL, 393),
- NAME_FUNC_OFFSET(20856, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
- NAME_FUNC_OFFSET(20874, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
- NAME_FUNC_OFFSET(20893, glMultiTexCoord3i, glMultiTexCoord3i, NULL, 396),
- NAME_FUNC_OFFSET(20914, glMultiTexCoord3iv, glMultiTexCoord3iv, NULL, 397),
- NAME_FUNC_OFFSET(20936, glMultiTexCoord3s, glMultiTexCoord3s, NULL, 398),
- NAME_FUNC_OFFSET(20957, glMultiTexCoord3sv, glMultiTexCoord3sv, NULL, 399),
- NAME_FUNC_OFFSET(20979, glMultiTexCoord4d, glMultiTexCoord4d, NULL, 400),
- NAME_FUNC_OFFSET(21000, glMultiTexCoord4dv, glMultiTexCoord4dv, NULL, 401),
- NAME_FUNC_OFFSET(21022, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
- NAME_FUNC_OFFSET(21040, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
- NAME_FUNC_OFFSET(21059, glMultiTexCoord4i, glMultiTexCoord4i, NULL, 404),
- NAME_FUNC_OFFSET(21080, glMultiTexCoord4iv, glMultiTexCoord4iv, NULL, 405),
- NAME_FUNC_OFFSET(21102, glMultiTexCoord4s, glMultiTexCoord4s, NULL, 406),
- NAME_FUNC_OFFSET(21123, glMultiTexCoord4sv, glMultiTexCoord4sv, NULL, 407),
- NAME_FUNC_OFFSET(21145, glCompressedTexImage1D, glCompressedTexImage1D, NULL, 408),
- NAME_FUNC_OFFSET(21171, glCompressedTexImage2D, glCompressedTexImage2D, NULL, 409),
- NAME_FUNC_OFFSET(21197, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
- NAME_FUNC_OFFSET(21223, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
- NAME_FUNC_OFFSET(21249, glCompressedTexSubImage1D, glCompressedTexSubImage1D, NULL, 411),
- NAME_FUNC_OFFSET(21278, glCompressedTexSubImage2D, glCompressedTexSubImage2D, NULL, 412),
- NAME_FUNC_OFFSET(21307, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
- NAME_FUNC_OFFSET(21336, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
- NAME_FUNC_OFFSET(21365, glGetCompressedTexImage, glGetCompressedTexImage, NULL, 414),
- NAME_FUNC_OFFSET(21392, glLoadTransposeMatrixd, glLoadTransposeMatrixd, NULL, 415),
- NAME_FUNC_OFFSET(21418, glLoadTransposeMatrixf, glLoadTransposeMatrixf, NULL, 416),
- NAME_FUNC_OFFSET(21444, glMultTransposeMatrixd, glMultTransposeMatrixd, NULL, 417),
- NAME_FUNC_OFFSET(21470, glMultTransposeMatrixf, glMultTransposeMatrixf, NULL, 418),
- NAME_FUNC_OFFSET(21496, glSampleCoverage, glSampleCoverage, NULL, 419),
- NAME_FUNC_OFFSET(21516, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21539, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21563, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21586, glFogCoordPointer, glFogCoordPointer, NULL, 421),
- NAME_FUNC_OFFSET(21607, glFogCoordd, glFogCoordd, NULL, 422),
- NAME_FUNC_OFFSET(21622, glFogCoorddv, glFogCoorddv, NULL, 423),
- NAME_FUNC_OFFSET(21638, glMultiDrawArrays, glMultiDrawArrays, NULL, 424),
- NAME_FUNC_OFFSET(21659, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21680, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21701, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21723, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21745, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21767, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21790, glPointParameteri, glPointParameteri, NULL, 427),
- NAME_FUNC_OFFSET(21810, glPointParameteriv, glPointParameteriv, NULL, 428),
- NAME_FUNC_OFFSET(21831, glSecondaryColor3b, glSecondaryColor3b, NULL, 429),
- NAME_FUNC_OFFSET(21853, glSecondaryColor3bv, glSecondaryColor3bv, NULL, 430),
- NAME_FUNC_OFFSET(21876, glSecondaryColor3d, glSecondaryColor3d, NULL, 431),
- NAME_FUNC_OFFSET(21898, glSecondaryColor3dv, glSecondaryColor3dv, NULL, 432),
- NAME_FUNC_OFFSET(21921, glSecondaryColor3i, glSecondaryColor3i, NULL, 433),
- NAME_FUNC_OFFSET(21943, glSecondaryColor3iv, glSecondaryColor3iv, NULL, 434),
- NAME_FUNC_OFFSET(21966, glSecondaryColor3s, glSecondaryColor3s, NULL, 435),
- NAME_FUNC_OFFSET(21988, glSecondaryColor3sv, glSecondaryColor3sv, NULL, 436),
- NAME_FUNC_OFFSET(22011, glSecondaryColor3ub, glSecondaryColor3ub, NULL, 437),
- NAME_FUNC_OFFSET(22034, glSecondaryColor3ubv, glSecondaryColor3ubv, NULL, 438),
- NAME_FUNC_OFFSET(22058, glSecondaryColor3ui, glSecondaryColor3ui, NULL, 439),
- NAME_FUNC_OFFSET(22081, glSecondaryColor3uiv, glSecondaryColor3uiv, NULL, 440),
- NAME_FUNC_OFFSET(22105, glSecondaryColor3us, glSecondaryColor3us, NULL, 441),
- NAME_FUNC_OFFSET(22128, glSecondaryColor3usv, glSecondaryColor3usv, NULL, 442),
- NAME_FUNC_OFFSET(22152, glSecondaryColorPointer, glSecondaryColorPointer, NULL, 443),
- NAME_FUNC_OFFSET(22179, glWindowPos2d, glWindowPos2d, NULL, 444),
- NAME_FUNC_OFFSET(22196, glWindowPos2d, glWindowPos2d, NULL, 444),
- NAME_FUNC_OFFSET(22214, glWindowPos2dv, glWindowPos2dv, NULL, 445),
- NAME_FUNC_OFFSET(22232, glWindowPos2dv, glWindowPos2dv, NULL, 445),
- NAME_FUNC_OFFSET(22251, glWindowPos2f, glWindowPos2f, NULL, 446),
- NAME_FUNC_OFFSET(22268, glWindowPos2f, glWindowPos2f, NULL, 446),
- NAME_FUNC_OFFSET(22286, glWindowPos2fv, glWindowPos2fv, NULL, 447),
- NAME_FUNC_OFFSET(22304, glWindowPos2fv, glWindowPos2fv, NULL, 447),
- NAME_FUNC_OFFSET(22323, glWindowPos2i, glWindowPos2i, NULL, 448),
- NAME_FUNC_OFFSET(22340, glWindowPos2i, glWindowPos2i, NULL, 448),
- NAME_FUNC_OFFSET(22358, glWindowPos2iv, glWindowPos2iv, NULL, 449),
- NAME_FUNC_OFFSET(22376, glWindowPos2iv, glWindowPos2iv, NULL, 449),
- NAME_FUNC_OFFSET(22395, glWindowPos2s, glWindowPos2s, NULL, 450),
- NAME_FUNC_OFFSET(22412, glWindowPos2s, glWindowPos2s, NULL, 450),
- NAME_FUNC_OFFSET(22430, glWindowPos2sv, glWindowPos2sv, NULL, 451),
- NAME_FUNC_OFFSET(22448, glWindowPos2sv, glWindowPos2sv, NULL, 451),
- NAME_FUNC_OFFSET(22467, glWindowPos3d, glWindowPos3d, NULL, 452),
- NAME_FUNC_OFFSET(22484, glWindowPos3d, glWindowPos3d, NULL, 452),
- NAME_FUNC_OFFSET(22502, glWindowPos3dv, glWindowPos3dv, NULL, 453),
- NAME_FUNC_OFFSET(22520, glWindowPos3dv, glWindowPos3dv, NULL, 453),
- NAME_FUNC_OFFSET(22539, glWindowPos3f, glWindowPos3f, NULL, 454),
- NAME_FUNC_OFFSET(22556, glWindowPos3f, glWindowPos3f, NULL, 454),
- NAME_FUNC_OFFSET(22574, glWindowPos3fv, glWindowPos3fv, NULL, 455),
- NAME_FUNC_OFFSET(22592, glWindowPos3fv, glWindowPos3fv, NULL, 455),
- NAME_FUNC_OFFSET(22611, glWindowPos3i, glWindowPos3i, NULL, 456),
- NAME_FUNC_OFFSET(22628, glWindowPos3i, glWindowPos3i, NULL, 456),
- NAME_FUNC_OFFSET(22646, glWindowPos3iv, glWindowPos3iv, NULL, 457),
- NAME_FUNC_OFFSET(22664, glWindowPos3iv, glWindowPos3iv, NULL, 457),
- NAME_FUNC_OFFSET(22683, glWindowPos3s, glWindowPos3s, NULL, 458),
- NAME_FUNC_OFFSET(22700, glWindowPos3s, glWindowPos3s, NULL, 458),
- NAME_FUNC_OFFSET(22718, glWindowPos3sv, glWindowPos3sv, NULL, 459),
- NAME_FUNC_OFFSET(22736, glWindowPos3sv, glWindowPos3sv, NULL, 459),
- NAME_FUNC_OFFSET(22755, glBeginQuery, glBeginQuery, NULL, 460),
- NAME_FUNC_OFFSET(22771, glBindBuffer, glBindBuffer, NULL, 461),
- NAME_FUNC_OFFSET(22787, glBufferData, glBufferData, NULL, 462),
- NAME_FUNC_OFFSET(22803, glBufferSubData, glBufferSubData, NULL, 463),
- NAME_FUNC_OFFSET(22822, glDeleteBuffers, glDeleteBuffers, NULL, 464),
- NAME_FUNC_OFFSET(22841, glDeleteQueries, glDeleteQueries, NULL, 465),
- NAME_FUNC_OFFSET(22860, glEndQuery, glEndQuery, NULL, 466),
- NAME_FUNC_OFFSET(22874, glGenBuffers, glGenBuffers, NULL, 467),
- NAME_FUNC_OFFSET(22890, glGenQueries, glGenQueries, NULL, 468),
- NAME_FUNC_OFFSET(22906, glGetBufferParameteriv, glGetBufferParameteriv, NULL, 469),
- NAME_FUNC_OFFSET(22932, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
- NAME_FUNC_OFFSET(22955, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
- NAME_FUNC_OFFSET(22978, glGetBufferSubData, glGetBufferSubData, NULL, 471),
- NAME_FUNC_OFFSET(23000, glGetQueryObjectiv, glGetQueryObjectiv, NULL, 472),
- NAME_FUNC_OFFSET(23022, glGetQueryObjectuiv, glGetQueryObjectuiv, NULL, 473),
- NAME_FUNC_OFFSET(23045, glGetQueryiv, glGetQueryiv, NULL, 474),
- NAME_FUNC_OFFSET(23061, glIsBuffer, glIsBuffer, NULL, 475),
- NAME_FUNC_OFFSET(23075, glIsQuery, glIsQuery, NULL, 476),
- NAME_FUNC_OFFSET(23088, glMapBuffer, glMapBuffer, NULL, 477),
- NAME_FUNC_OFFSET(23103, glMapBuffer, glMapBuffer, NULL, 477),
- NAME_FUNC_OFFSET(23118, glUnmapBuffer, glUnmapBuffer, NULL, 478),
- NAME_FUNC_OFFSET(23135, glUnmapBuffer, glUnmapBuffer, NULL, 478),
- NAME_FUNC_OFFSET(23152, glBindAttribLocation, glBindAttribLocation, NULL, 480),
- NAME_FUNC_OFFSET(23176, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(23203, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(23230, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(23257, glCompileShader, glCompileShader, NULL, 482),
- NAME_FUNC_OFFSET(23276, glDisableVertexAttribArray, glDisableVertexAttribArray, NULL, 488),
- NAME_FUNC_OFFSET(23306, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23323, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23340, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23356, glEnableVertexAttribArray, glEnableVertexAttribArray, NULL, 490),
- NAME_FUNC_OFFSET(23385, glGetActiveAttrib, glGetActiveAttrib, NULL, 491),
- NAME_FUNC_OFFSET(23406, glGetActiveUniform, glGetActiveUniform, NULL, 492),
- NAME_FUNC_OFFSET(23428, glGetAttribLocation, glGetAttribLocation, NULL, 494),
- NAME_FUNC_OFFSET(23451, glGetShaderSource, glGetShaderSource, NULL, 498),
- NAME_FUNC_OFFSET(23472, glGetUniformLocation, glGetUniformLocation, NULL, 500),
- NAME_FUNC_OFFSET(23496, glGetUniformfv, glGetUniformfv, NULL, 501),
- NAME_FUNC_OFFSET(23514, glGetUniformiv, glGetUniformiv, NULL, 502),
- NAME_FUNC_OFFSET(23532, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
- NAME_FUNC_OFFSET(23561, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
- NAME_FUNC_OFFSET(23589, glGetVertexAttribdv, glGetVertexAttribdv, NULL, 504),
- NAME_FUNC_OFFSET(23612, glGetVertexAttribfv, glGetVertexAttribfv, NULL, 505),
- NAME_FUNC_OFFSET(23635, glGetVertexAttribiv, glGetVertexAttribiv, NULL, 506),
- NAME_FUNC_OFFSET(23658, glLinkProgram, glLinkProgram, NULL, 509),
- NAME_FUNC_OFFSET(23675, glShaderSource, glShaderSource, NULL, 510),
- NAME_FUNC_OFFSET(23693, glStencilOpSeparate, glStencilOpSeparate, NULL, 513),
- NAME_FUNC_OFFSET(23716, glUniform1f, glUniform1f, NULL, 514),
- NAME_FUNC_OFFSET(23731, glUniform1fv, glUniform1fv, NULL, 515),
- NAME_FUNC_OFFSET(23747, glUniform1i, glUniform1i, NULL, 516),
- NAME_FUNC_OFFSET(23762, glUniform1iv, glUniform1iv, NULL, 517),
- NAME_FUNC_OFFSET(23778, glUniform2f, glUniform2f, NULL, 518),
- NAME_FUNC_OFFSET(23793, glUniform2fv, glUniform2fv, NULL, 519),
- NAME_FUNC_OFFSET(23809, glUniform2i, glUniform2i, NULL, 520),
- NAME_FUNC_OFFSET(23824, glUniform2iv, glUniform2iv, NULL, 521),
- NAME_FUNC_OFFSET(23840, glUniform3f, glUniform3f, NULL, 522),
- NAME_FUNC_OFFSET(23855, glUniform3fv, glUniform3fv, NULL, 523),
- NAME_FUNC_OFFSET(23871, glUniform3i, glUniform3i, NULL, 524),
- NAME_FUNC_OFFSET(23886, glUniform3iv, glUniform3iv, NULL, 525),
- NAME_FUNC_OFFSET(23902, glUniform4f, glUniform4f, NULL, 526),
- NAME_FUNC_OFFSET(23917, glUniform4fv, glUniform4fv, NULL, 527),
- NAME_FUNC_OFFSET(23933, glUniform4i, glUniform4i, NULL, 528),
- NAME_FUNC_OFFSET(23948, glUniform4iv, glUniform4iv, NULL, 529),
- NAME_FUNC_OFFSET(23964, glUniformMatrix2fv, glUniformMatrix2fv, NULL, 530),
- NAME_FUNC_OFFSET(23986, glUniformMatrix3fv, glUniformMatrix3fv, NULL, 531),
- NAME_FUNC_OFFSET(24008, glUniformMatrix4fv, glUniformMatrix4fv, NULL, 532),
- NAME_FUNC_OFFSET(24030, glUseProgram, glUseProgram, NULL, 533),
- NAME_FUNC_OFFSET(24052, glValidateProgram, glValidateProgram, NULL, 534),
- NAME_FUNC_OFFSET(24073, glVertexAttrib1d, glVertexAttrib1d, NULL, 535),
- NAME_FUNC_OFFSET(24093, glVertexAttrib1dv, glVertexAttrib1dv, NULL, 536),
- NAME_FUNC_OFFSET(24114, glVertexAttrib1s, glVertexAttrib1s, NULL, 537),
- NAME_FUNC_OFFSET(24134, glVertexAttrib1sv, glVertexAttrib1sv, NULL, 538),
- NAME_FUNC_OFFSET(24155, glVertexAttrib2d, glVertexAttrib2d, NULL, 539),
- NAME_FUNC_OFFSET(24175, glVertexAttrib2dv, glVertexAttrib2dv, NULL, 540),
- NAME_FUNC_OFFSET(24196, glVertexAttrib2s, glVertexAttrib2s, NULL, 541),
- NAME_FUNC_OFFSET(24216, glVertexAttrib2sv, glVertexAttrib2sv, NULL, 542),
- NAME_FUNC_OFFSET(24237, glVertexAttrib3d, glVertexAttrib3d, NULL, 543),
- NAME_FUNC_OFFSET(24257, glVertexAttrib3dv, glVertexAttrib3dv, NULL, 544),
- NAME_FUNC_OFFSET(24278, glVertexAttrib3s, glVertexAttrib3s, NULL, 545),
- NAME_FUNC_OFFSET(24298, glVertexAttrib3sv, glVertexAttrib3sv, NULL, 546),
- NAME_FUNC_OFFSET(24319, glVertexAttrib4Nbv, glVertexAttrib4Nbv, NULL, 547),
- NAME_FUNC_OFFSET(24341, glVertexAttrib4Niv, glVertexAttrib4Niv, NULL, 548),
- NAME_FUNC_OFFSET(24363, glVertexAttrib4Nsv, glVertexAttrib4Nsv, NULL, 549),
- NAME_FUNC_OFFSET(24385, glVertexAttrib4Nub, glVertexAttrib4Nub, NULL, 550),
- NAME_FUNC_OFFSET(24407, glVertexAttrib4Nubv, glVertexAttrib4Nubv, NULL, 551),
- NAME_FUNC_OFFSET(24430, glVertexAttrib4Nuiv, glVertexAttrib4Nuiv, NULL, 552),
- NAME_FUNC_OFFSET(24453, glVertexAttrib4Nusv, glVertexAttrib4Nusv, NULL, 553),
- NAME_FUNC_OFFSET(24476, glVertexAttrib4bv, glVertexAttrib4bv, NULL, 554),
- NAME_FUNC_OFFSET(24497, glVertexAttrib4d, glVertexAttrib4d, NULL, 555),
- NAME_FUNC_OFFSET(24517, glVertexAttrib4dv, glVertexAttrib4dv, NULL, 556),
- NAME_FUNC_OFFSET(24538, glVertexAttrib4iv, glVertexAttrib4iv, NULL, 557),
- NAME_FUNC_OFFSET(24559, glVertexAttrib4s, glVertexAttrib4s, NULL, 558),
- NAME_FUNC_OFFSET(24579, glVertexAttrib4sv, glVertexAttrib4sv, NULL, 559),
- NAME_FUNC_OFFSET(24600, glVertexAttrib4ubv, glVertexAttrib4ubv, NULL, 560),
- NAME_FUNC_OFFSET(24622, glVertexAttrib4uiv, glVertexAttrib4uiv, NULL, 561),
- NAME_FUNC_OFFSET(24644, glVertexAttrib4usv, glVertexAttrib4usv, NULL, 562),
- NAME_FUNC_OFFSET(24666, glVertexAttribPointer, glVertexAttribPointer, NULL, 563),
- NAME_FUNC_OFFSET(24691, glBeginConditionalRender, glBeginConditionalRender, NULL, 570),
- NAME_FUNC_OFFSET(24718, glBeginTransformFeedback, glBeginTransformFeedback, NULL, 571),
- NAME_FUNC_OFFSET(24746, glBindBufferBase, glBindBufferBase, NULL, 572),
- NAME_FUNC_OFFSET(24766, glBindBufferRange, glBindBufferRange, NULL, 573),
- NAME_FUNC_OFFSET(24787, glBindFragDataLocation, glBindFragDataLocation, NULL, 574),
- NAME_FUNC_OFFSET(24813, glClampColor, glClampColor, NULL, 575),
- NAME_FUNC_OFFSET(24829, glColorMaski, glColorMaski, NULL, 580),
- NAME_FUNC_OFFSET(24851, glDisablei, glDisablei, NULL, 581),
- NAME_FUNC_OFFSET(24871, glEnablei, glEnablei, NULL, 582),
- NAME_FUNC_OFFSET(24890, glEndConditionalRender, glEndConditionalRender, NULL, 583),
- NAME_FUNC_OFFSET(24915, glEndTransformFeedback, glEndTransformFeedback, NULL, 584),
- NAME_FUNC_OFFSET(24941, glGetBooleani_v, glGetBooleani_v, NULL, 585),
- NAME_FUNC_OFFSET(24965, glGetFragDataLocation, glGetFragDataLocation, NULL, 586),
- NAME_FUNC_OFFSET(24990, glGetIntegeri_v, glGetIntegeri_v, NULL, 587),
- NAME_FUNC_OFFSET(25014, glGetTexParameterIiv, glGetTexParameterIiv, NULL, 589),
- NAME_FUNC_OFFSET(25038, glGetTexParameterIuiv, glGetTexParameterIuiv, NULL, 590),
- NAME_FUNC_OFFSET(25063, glGetTransformFeedbackVarying, glGetTransformFeedbackVarying, NULL, 591),
- NAME_FUNC_OFFSET(25096, glGetUniformuiv, glGetUniformuiv, NULL, 592),
- NAME_FUNC_OFFSET(25115, glGetVertexAttribIiv, glGetVertexAttribIiv, NULL, 593),
- NAME_FUNC_OFFSET(25139, glGetVertexAttribIuiv, glGetVertexAttribIuiv, NULL, 594),
- NAME_FUNC_OFFSET(25164, glIsEnabledi, glIsEnabledi, NULL, 595),
- NAME_FUNC_OFFSET(25186, glTexParameterIiv, glTexParameterIiv, NULL, 596),
- NAME_FUNC_OFFSET(25207, glTexParameterIuiv, glTexParameterIuiv, NULL, 597),
- NAME_FUNC_OFFSET(25229, glTransformFeedbackVaryings, glTransformFeedbackVaryings, NULL, 598),
- NAME_FUNC_OFFSET(25260, glUniform1ui, glUniform1ui, NULL, 599),
- NAME_FUNC_OFFSET(25276, glUniform1uiv, glUniform1uiv, NULL, 600),
- NAME_FUNC_OFFSET(25293, glUniform2ui, glUniform2ui, NULL, 601),
- NAME_FUNC_OFFSET(25309, glUniform2uiv, glUniform2uiv, NULL, 602),
- NAME_FUNC_OFFSET(25326, glUniform3ui, glUniform3ui, NULL, 603),
- NAME_FUNC_OFFSET(25342, glUniform3uiv, glUniform3uiv, NULL, 604),
- NAME_FUNC_OFFSET(25359, glUniform4ui, glUniform4ui, NULL, 605),
- NAME_FUNC_OFFSET(25375, glUniform4uiv, glUniform4uiv, NULL, 606),
- NAME_FUNC_OFFSET(25392, glVertexAttribI1iv, glVertexAttribI1iv, NULL, 607),
- NAME_FUNC_OFFSET(25414, glVertexAttribI1uiv, glVertexAttribI1uiv, NULL, 608),
- NAME_FUNC_OFFSET(25437, glVertexAttribI4bv, glVertexAttribI4bv, NULL, 609),
- NAME_FUNC_OFFSET(25459, glVertexAttribI4sv, glVertexAttribI4sv, NULL, 610),
- NAME_FUNC_OFFSET(25481, glVertexAttribI4ubv, glVertexAttribI4ubv, NULL, 611),
- NAME_FUNC_OFFSET(25504, glVertexAttribI4usv, glVertexAttribI4usv, NULL, 612),
- NAME_FUNC_OFFSET(25527, glVertexAttribIPointer, glVertexAttribIPointer, NULL, 613),
- NAME_FUNC_OFFSET(25553, glPrimitiveRestartIndex, glPrimitiveRestartIndex, NULL, 614),
- NAME_FUNC_OFFSET(25579, glTexBuffer, glTexBuffer, NULL, 615),
- NAME_FUNC_OFFSET(25594, glFramebufferTexture, glFramebufferTexture, NULL, 616),
- NAME_FUNC_OFFSET(25618, glVertexAttribDivisor, glVertexAttribDivisor, NULL, 619),
- NAME_FUNC_OFFSET(25643, glMinSampleShading, glMinSampleShading, NULL, 620),
- NAME_FUNC_OFFSET(25665, glBindProgramARB, glBindProgramARB, NULL, 621),
- NAME_FUNC_OFFSET(25681, glDeleteProgramsARB, glDeleteProgramsARB, NULL, 622),
- NAME_FUNC_OFFSET(25700, glGenProgramsARB, glGenProgramsARB, NULL, 623),
- NAME_FUNC_OFFSET(25716, glIsProgramARB, glIsProgramARB, NULL, 630),
- NAME_FUNC_OFFSET(25730, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 631),
- NAME_FUNC_OFFSET(25753, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 632),
- NAME_FUNC_OFFSET(25777, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 633),
- NAME_FUNC_OFFSET(25800, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 634),
- NAME_FUNC_OFFSET(25824, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 640),
- NAME_FUNC_OFFSET(25841, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 641),
- NAME_FUNC_OFFSET(25859, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 642),
- NAME_FUNC_OFFSET(25876, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 643),
- NAME_FUNC_OFFSET(25894, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 644),
- NAME_FUNC_OFFSET(25911, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 645),
- NAME_FUNC_OFFSET(25929, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 646),
- NAME_FUNC_OFFSET(25946, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 647),
- NAME_FUNC_OFFSET(25964, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
- NAME_FUNC_OFFSET(25989, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
- NAME_FUNC_OFFSET(26011, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
- NAME_FUNC_OFFSET(26038, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
- NAME_FUNC_OFFSET(26062, glBindFramebuffer, glBindFramebuffer, NULL, 660),
- NAME_FUNC_OFFSET(26083, glBindRenderbuffer, glBindRenderbuffer, NULL, 661),
- NAME_FUNC_OFFSET(26105, glBlitFramebuffer, glBlitFramebuffer, NULL, 662),
- NAME_FUNC_OFFSET(26126, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
- NAME_FUNC_OFFSET(26154, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
- NAME_FUNC_OFFSET(26182, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
- NAME_FUNC_OFFSET(26206, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
- NAME_FUNC_OFFSET(26230, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
- NAME_FUNC_OFFSET(26255, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
- NAME_FUNC_OFFSET(26280, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
- NAME_FUNC_OFFSET(26309, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
- NAME_FUNC_OFFSET(26338, glFramebufferTexture1D, glFramebufferTexture1D, NULL, 667),
- NAME_FUNC_OFFSET(26364, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
- NAME_FUNC_OFFSET(26390, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
- NAME_FUNC_OFFSET(26416, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
- NAME_FUNC_OFFSET(26442, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
- NAME_FUNC_OFFSET(26468, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
- NAME_FUNC_OFFSET(26497, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
- NAME_FUNC_OFFSET(26526, glGenFramebuffers, glGenFramebuffers, NULL, 671),
- NAME_FUNC_OFFSET(26547, glGenFramebuffers, glGenFramebuffers, NULL, 671),
- NAME_FUNC_OFFSET(26568, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
- NAME_FUNC_OFFSET(26590, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
- NAME_FUNC_OFFSET(26612, glGenerateMipmap, glGenerateMipmap, NULL, 673),
- NAME_FUNC_OFFSET(26632, glGenerateMipmap, glGenerateMipmap, NULL, 673),
- NAME_FUNC_OFFSET(26652, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
- NAME_FUNC_OFFSET(26693, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
- NAME_FUNC_OFFSET(26734, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
- NAME_FUNC_OFFSET(26766, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
- NAME_FUNC_OFFSET(26798, glIsFramebuffer, glIsFramebuffer, NULL, 676),
- NAME_FUNC_OFFSET(26817, glIsFramebuffer, glIsFramebuffer, NULL, 676),
- NAME_FUNC_OFFSET(26836, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
- NAME_FUNC_OFFSET(26856, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
- NAME_FUNC_OFFSET(26876, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
- NAME_FUNC_OFFSET(26901, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
- NAME_FUNC_OFFSET(26926, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 679),
- NAME_FUNC_OFFSET(26962, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 681),
- NAME_FUNC_OFFSET(26990, glMapBufferRange, glMapBufferRange, NULL, 682),
- NAME_FUNC_OFFSET(27010, glBindVertexArray, glBindVertexArray, NULL, 683),
- NAME_FUNC_OFFSET(27031, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
- NAME_FUNC_OFFSET(27057, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
- NAME_FUNC_OFFSET(27081, glGenVertexArrays, glGenVertexArrays, NULL, 685),
- NAME_FUNC_OFFSET(27102, glIsVertexArray, glIsVertexArray, NULL, 686),
- NAME_FUNC_OFFSET(27123, glIsVertexArray, glIsVertexArray, NULL, 686),
- NAME_FUNC_OFFSET(27142, glProvokingVertex, glProvokingVertex, NULL, 706),
- NAME_FUNC_OFFSET(27163, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 711),
- NAME_FUNC_OFFSET(27197, glBlendEquationiARB, glBlendEquationiARB, NULL, 712),
- NAME_FUNC_OFFSET(27223, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 713),
- NAME_FUNC_OFFSET(27253, glBlendFunciARB, glBlendFunciARB, NULL, 714),
- NAME_FUNC_OFFSET(27275, gl_dispatch_stub_731, gl_dispatch_stub_731, NULL, 731),
- NAME_FUNC_OFFSET(27299, gl_dispatch_stub_732, gl_dispatch_stub_732, NULL, 732),
- NAME_FUNC_OFFSET(27324, glClearDepthf, glClearDepthf, NULL, 785),
- NAME_FUNC_OFFSET(27341, glDepthRangef, glDepthRangef, NULL, 786),
- NAME_FUNC_OFFSET(27358, glGetProgramBinary, glGetProgramBinary, NULL, 790),
- NAME_FUNC_OFFSET(27380, glProgramBinary, glProgramBinary, NULL, 791),
- NAME_FUNC_OFFSET(27399, glProgramParameteri, glProgramParameteri, NULL, 792),
- NAME_FUNC_OFFSET(27422, gl_dispatch_stub_861, gl_dispatch_stub_861, NULL, 861),
- NAME_FUNC_OFFSET(27438, gl_dispatch_stub_862, gl_dispatch_stub_862, NULL, 862),
- NAME_FUNC_OFFSET(27457, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 882),
- NAME_FUNC_OFFSET(27476, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 883),
- NAME_FUNC_OFFSET(27496, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 884),
- NAME_FUNC_OFFSET(27516, glFogCoordfEXT, glFogCoordfEXT, NULL, 885),
- NAME_FUNC_OFFSET(27528, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 886),
- NAME_FUNC_OFFSET(27541, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 989),
- NAME_FUNC_OFFSET(27559, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 990),
- NAME_FUNC_OFFSET(27578, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 991),
- NAME_FUNC_OFFSET(27596, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 992),
- NAME_FUNC_OFFSET(27615, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 993),
- NAME_FUNC_OFFSET(27634, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 994),
- NAME_FUNC_OFFSET(27654, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 995),
- NAME_FUNC_OFFSET(27672, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 996),
- NAME_FUNC_OFFSET(27691, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 997),
- NAME_FUNC_OFFSET(27710, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 998),
- NAME_FUNC_OFFSET(27730, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 999),
- NAME_FUNC_OFFSET(27748, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 1000),
- NAME_FUNC_OFFSET(27767, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 1001),
- NAME_FUNC_OFFSET(27786, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 1002),
- NAME_FUNC_OFFSET(27806, gl_dispatch_stub_1039, gl_dispatch_stub_1039, NULL, 1039),
- NAME_FUNC_OFFSET(27822, gl_dispatch_stub_1040, gl_dispatch_stub_1040, NULL, 1040),
- NAME_FUNC_OFFSET(27839, gl_dispatch_stub_1041, gl_dispatch_stub_1041, NULL, 1041),
- NAME_FUNC_OFFSET(27856, gl_dispatch_stub_1042, gl_dispatch_stub_1042, NULL, 1042),
- NAME_FUNC_OFFSET(27869, gl_dispatch_stub_1043, gl_dispatch_stub_1043, NULL, 1043),
- NAME_FUNC_OFFSET(27886, gl_dispatch_stub_1044, gl_dispatch_stub_1044, NULL, 1044),
- NAME_FUNC_OFFSET(27896, gl_dispatch_stub_1045, gl_dispatch_stub_1045, NULL, 1045),
- NAME_FUNC_OFFSET(27907, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
- NAME_FUNC_OFFSET(27921, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
- NAME_FUNC_OFFSET(27935, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
- NAME_FUNC_OFFSET(27952, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
- NAME_FUNC_OFFSET(27970, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
- NAME_FUNC_OFFSET(27982, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
- NAME_FUNC_OFFSET(27995, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
- NAME_FUNC_OFFSET(28011, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
- NAME_FUNC_OFFSET(28028, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
- NAME_FUNC_OFFSET(28043, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
- NAME_FUNC_OFFSET(28059, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
- NAME_FUNC_OFFSET(28076, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
- NAME_FUNC_OFFSET(28097, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
- NAME_FUNC_OFFSET(28111, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
- NAME_FUNC_OFFSET(28123, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
- NAME_FUNC_OFFSET(28135, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
- NAME_FUNC_OFFSET(28151, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
- NAME_FUNC_OFFSET(28171, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
- NAME_FUNC_OFFSET(28184, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
- NAME_FUNC_OFFSET(28205, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
- NAME_FUNC_OFFSET(28217, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
- NAME_FUNC_OFFSET(28230, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
- NAME_FUNC_OFFSET(28244, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
- NAME_FUNC_OFFSET(28263, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
- NAME_FUNC_OFFSET(28279, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
- NAME_FUNC_OFFSET(28295, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
- NAME_FUNC_OFFSET(28311, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
- NAME_FUNC_OFFSET(28330, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
- NAME_FUNC_OFFSET(28349, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
- NAME_FUNC_OFFSET(28364, gl_dispatch_stub_1075, gl_dispatch_stub_1075, NULL, 1075),
- NAME_FUNC_OFFSET(28380, gl_dispatch_stub_1076, gl_dispatch_stub_1076, NULL, 1076),
- NAME_FUNC_OFFSET(28399, gl_dispatch_stub_1077, gl_dispatch_stub_1077, NULL, 1077),
- NAME_FUNC_OFFSET(28416, gl_dispatch_stub_1078, gl_dispatch_stub_1078, NULL, 1078),
- NAME_FUNC_OFFSET(28439, gl_dispatch_stub_1079, gl_dispatch_stub_1079, NULL, 1079),
- NAME_FUNC_OFFSET(28460, gl_dispatch_stub_1080, gl_dispatch_stub_1080, NULL, 1080),
- NAME_FUNC_OFFSET(28482, gl_dispatch_stub_1081, gl_dispatch_stub_1081, NULL, 1081),
+ NAME_FUNC_OFFSET(13030, glDepthRangeArrayv, glDepthRangeArrayv, NULL, 793),
+ NAME_FUNC_OFFSET(13049, glDepthRangeIndexed, glDepthRangeIndexed, NULL, 794),
+ NAME_FUNC_OFFSET(13069, glGetDoublei_v, glGetDoublei_v, NULL, 795),
+ NAME_FUNC_OFFSET(13084, glGetFloati_v, glGetFloati_v, NULL, 796),
+ NAME_FUNC_OFFSET(13098, glScissorArrayv, glScissorArrayv, NULL, 797),
+ NAME_FUNC_OFFSET(13114, glScissorIndexed, glScissorIndexed, NULL, 798),
+ NAME_FUNC_OFFSET(13131, glScissorIndexedv, glScissorIndexedv, NULL, 799),
+ NAME_FUNC_OFFSET(13149, glViewportArrayv, glViewportArrayv, NULL, 800),
+ NAME_FUNC_OFFSET(13166, glViewportIndexedf, glViewportIndexedf, NULL, 801),
+ NAME_FUNC_OFFSET(13185, glViewportIndexedfv, glViewportIndexedfv, NULL, 802),
+ NAME_FUNC_OFFSET(13205, glDebugMessageCallbackARB, glDebugMessageCallbackARB, NULL, 803),
+ NAME_FUNC_OFFSET(13231, glDebugMessageControlARB, glDebugMessageControlARB, NULL, 804),
+ NAME_FUNC_OFFSET(13256, glDebugMessageInsertARB, glDebugMessageInsertARB, NULL, 805),
+ NAME_FUNC_OFFSET(13280, glGetDebugMessageLogARB, glGetDebugMessageLogARB, NULL, 806),
+ NAME_FUNC_OFFSET(13304, glGetGraphicsResetStatusARB, glGetGraphicsResetStatusARB, NULL, 807),
+ NAME_FUNC_OFFSET(13332, glGetnColorTableARB, glGetnColorTableARB, NULL, 808),
+ NAME_FUNC_OFFSET(13352, glGetnCompressedTexImageARB, glGetnCompressedTexImageARB, NULL, 809),
+ NAME_FUNC_OFFSET(13380, glGetnConvolutionFilterARB, glGetnConvolutionFilterARB, NULL, 810),
+ NAME_FUNC_OFFSET(13407, glGetnHistogramARB, glGetnHistogramARB, NULL, 811),
+ NAME_FUNC_OFFSET(13426, glGetnMapdvARB, glGetnMapdvARB, NULL, 812),
+ NAME_FUNC_OFFSET(13441, glGetnMapfvARB, glGetnMapfvARB, NULL, 813),
+ NAME_FUNC_OFFSET(13456, glGetnMapivARB, glGetnMapivARB, NULL, 814),
+ NAME_FUNC_OFFSET(13471, glGetnMinmaxARB, glGetnMinmaxARB, NULL, 815),
+ NAME_FUNC_OFFSET(13487, glGetnPixelMapfvARB, glGetnPixelMapfvARB, NULL, 816),
+ NAME_FUNC_OFFSET(13507, glGetnPixelMapuivARB, glGetnPixelMapuivARB, NULL, 817),
+ NAME_FUNC_OFFSET(13528, glGetnPixelMapusvARB, glGetnPixelMapusvARB, NULL, 818),
+ NAME_FUNC_OFFSET(13549, glGetnPolygonStippleARB, glGetnPolygonStippleARB, NULL, 819),
+ NAME_FUNC_OFFSET(13573, glGetnSeparableFilterARB, glGetnSeparableFilterARB, NULL, 820),
+ NAME_FUNC_OFFSET(13598, glGetnTexImageARB, glGetnTexImageARB, NULL, 821),
+ NAME_FUNC_OFFSET(13616, glGetnUniformdvARB, glGetnUniformdvARB, NULL, 822),
+ NAME_FUNC_OFFSET(13635, glGetnUniformfvARB, glGetnUniformfvARB, NULL, 823),
+ NAME_FUNC_OFFSET(13654, glGetnUniformivARB, glGetnUniformivARB, NULL, 824),
+ NAME_FUNC_OFFSET(13673, glGetnUniformuivARB, glGetnUniformuivARB, NULL, 825),
+ NAME_FUNC_OFFSET(13693, glReadnPixelsARB, glReadnPixelsARB, NULL, 826),
+ NAME_FUNC_OFFSET(13710, glDrawArraysInstancedBaseInstance, glDrawArraysInstancedBaseInstance, NULL, 827),
+ NAME_FUNC_OFFSET(13744, glDrawElementsInstancedBaseInstance, glDrawElementsInstancedBaseInstance, NULL, 828),
+ NAME_FUNC_OFFSET(13780, glDrawElementsInstancedBaseVertexBaseInstance, glDrawElementsInstancedBaseVertexBaseInstance, NULL, 829),
+ NAME_FUNC_OFFSET(13826, glDrawTransformFeedbackInstanced, glDrawTransformFeedbackInstanced, NULL, 830),
+ NAME_FUNC_OFFSET(13859, glDrawTransformFeedbackStreamInstanced, glDrawTransformFeedbackStreamInstanced, NULL, 831),
+ NAME_FUNC_OFFSET(13898, gl_dispatch_stub_832, gl_dispatch_stub_832, NULL, 832),
+ NAME_FUNC_OFFSET(13920, glGetActiveAtomicCounterBufferiv, glGetActiveAtomicCounterBufferiv, NULL, 833),
+ NAME_FUNC_OFFSET(13953, glBindImageTexture, glBindImageTexture, NULL, 834),
+ NAME_FUNC_OFFSET(13972, glMemoryBarrier, glMemoryBarrier, NULL, 835),
+ NAME_FUNC_OFFSET(13988, glTexStorage1D, glTexStorage1D, NULL, 836),
+ NAME_FUNC_OFFSET(14003, glTexStorage2D, glTexStorage2D, NULL, 837),
+ NAME_FUNC_OFFSET(14018, glTexStorage3D, glTexStorage3D, NULL, 838),
+ NAME_FUNC_OFFSET(14033, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 839),
+ NAME_FUNC_OFFSET(14055, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 840),
+ 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(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(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(-1, NULL, NULL, NULL, 0)
};
diff --git a/xorg-server/glx/indirect_size_get.c b/xorg-server/glx/indirect_size_get.c
index 600289434..277bcc4b1 100644
--- a/xorg-server/glx/indirect_size_get.c
+++ b/xorg-server/glx/indirect_size_get.c
@@ -381,7 +381,6 @@ __glGetBooleanv_size( GLenum e )
case GL_AUX_BUFFERS:
case GL_DRAW_BUFFER:
case GL_READ_BUFFER:
- case GL_SCISSOR_TEST:
case GL_INDEX_CLEAR_VALUE:
case GL_INDEX_WRITEMASK:
case GL_INDEX_MODE:
@@ -760,7 +759,6 @@ __glGetBooleanv_size( GLenum e )
case GL_SMOOTH_POINT_SIZE_RANGE:
case GL_LINE_WIDTH_RANGE:
case GL_POLYGON_MODE:
- case GL_DEPTH_RANGE:
case GL_MAX_VIEWPORT_DIMS:
case GL_MAP1_GRID_DOMAIN:
case GL_MAP2_GRID_SEGMENTS:
@@ -779,8 +777,6 @@ __glGetBooleanv_size( GLenum e )
case GL_LIGHT_MODEL_AMBIENT:
case GL_FOG_COLOR:
case GL_ACCUM_CLEAR_VALUE:
- case GL_VIEWPORT:
- case GL_SCISSOR_BOX:
case GL_COLOR_CLEAR_VALUE:
case GL_COLOR_WRITEMASK:
case GL_MAP2_GRID_DOMAIN:
diff --git a/xorg-server/glx/remap_helper.h b/xorg-server/glx/remap_helper.h
index a6be8084c..2aed91d7d 100644
--- a/xorg-server/glx/remap_helper.h
+++ b/xorg-server/glx/remap_helper.h
@@ -43,5711 +43,5759 @@ static const char _mesa_function_pool[] =
"iff\0"
"glMapGrid1f\0"
"\0"
- /* _mesa_function_pool[34]: RasterPos4i (offset 82) */
+ /* _mesa_function_pool[34]: VertexAttribI4uivEXT (will be remapped) */
+ "ip\0"
+ "glVertexAttribI4uivEXT\0"
+ "glVertexAttribI4uiv\0"
+ "\0"
+ /* _mesa_function_pool[81]: RasterPos4i (offset 82) */
"iiii\0"
"glRasterPos4i\0"
"\0"
- /* _mesa_function_pool[54]: VertexAttribI4uiEXT (will be remapped) */
+ /* _mesa_function_pool[101]: VertexAttribI4uiEXT (will be remapped) */
"iiiii\0"
"glVertexAttribI4uiEXT\0"
"glVertexAttribI4ui\0"
"\0"
- /* _mesa_function_pool[102]: RasterPos4d (offset 78) */
+ /* _mesa_function_pool[149]: RasterPos4d (offset 78) */
"dddd\0"
"glRasterPos4d\0"
"\0"
- /* _mesa_function_pool[122]: NewList (dynamic) */
+ /* _mesa_function_pool[169]: NewList (dynamic) */
"ii\0"
"glNewList\0"
"\0"
- /* _mesa_function_pool[136]: RasterPos4f (offset 80) */
+ /* _mesa_function_pool[183]: RasterPos4f (offset 80) */
"ffff\0"
"glRasterPos4f\0"
"\0"
- /* _mesa_function_pool[156]: LoadIdentity (offset 290) */
+ /* _mesa_function_pool[203]: LoadIdentity (offset 290) */
"\0"
"glLoadIdentity\0"
"\0"
- /* _mesa_function_pool[173]: VertexAttribI4iEXT (will be remapped) */
+ /* _mesa_function_pool[220]: VertexAttribI4iEXT (will be remapped) */
"iiiii\0"
"glVertexAttribI4iEXT\0"
"glVertexAttribI4i\0"
"\0"
- /* _mesa_function_pool[219]: ConvolutionFilter1D (offset 348) */
+ /* _mesa_function_pool[266]: ConvolutionFilter1D (offset 348) */
"iiiiip\0"
"glConvolutionFilter1D\0"
"glConvolutionFilter1DEXT\0"
"\0"
- /* _mesa_function_pool[274]: GetQueryIndexediv (will be remapped) */
+ /* _mesa_function_pool[321]: GetQueryIndexediv (will be remapped) */
"iiip\0"
"glGetQueryIndexediv\0"
"\0"
- /* _mesa_function_pool[300]: RasterPos3dv (offset 71) */
+ /* _mesa_function_pool[347]: RasterPos3dv (offset 71) */
"p\0"
"glRasterPos3dv\0"
"\0"
- /* _mesa_function_pool[318]: GetProgramiv (will be remapped) */
+ /* _mesa_function_pool[365]: GetProgramiv (will be remapped) */
"iip\0"
"glGetProgramiv\0"
"\0"
- /* _mesa_function_pool[338]: GetQueryObjectui64v (will be remapped) */
+ /* _mesa_function_pool[385]: GetQueryObjectui64v (will be remapped) */
"iip\0"
"glGetQueryObjectui64v\0"
"glGetQueryObjectui64vEXT\0"
"\0"
- /* _mesa_function_pool[390]: TexBuffer (will be remapped) */
+ /* _mesa_function_pool[437]: TexBuffer (will be remapped) */
"iii\0"
"glTexBufferARB\0"
"glTexBuffer\0"
"\0"
- /* _mesa_function_pool[422]: TexCoord1iv (offset 99) */
+ /* _mesa_function_pool[469]: TexCoord1iv (offset 99) */
"p\0"
"glTexCoord1iv\0"
"\0"
- /* _mesa_function_pool[439]: TexCoord4sv (offset 125) */
+ /* _mesa_function_pool[486]: TexCoord4sv (offset 125) */
"p\0"
"glTexCoord4sv\0"
"\0"
- /* _mesa_function_pool[456]: RasterPos4s (offset 84) */
+ /* _mesa_function_pool[503]: RasterPos4s (offset 84) */
"iiii\0"
"glRasterPos4s\0"
"\0"
- /* _mesa_function_pool[476]: PixelTexGenParameterfvSGIS (dynamic) */
+ /* _mesa_function_pool[523]: PixelTexGenParameterfvSGIS (dynamic) */
"ip\0"
"glPixelTexGenParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[509]: TrackMatrixNV (will be remapped) */
+ /* _mesa_function_pool[556]: TrackMatrixNV (will be remapped) */
"iiii\0"
"glTrackMatrixNV\0"
"\0"
- /* _mesa_function_pool[531]: VertexAttrib3dv (will be remapped) */
+ /* _mesa_function_pool[578]: VertexAttrib3dv (will be remapped) */
"ip\0"
"glVertexAttrib3dv\0"
"glVertexAttrib3dvARB\0"
"\0"
- /* _mesa_function_pool[574]: TexCoord1f (offset 96) */
+ /* _mesa_function_pool[621]: TexCoord1f (offset 96) */
"f\0"
"glTexCoord1f\0"
"\0"
- /* _mesa_function_pool[590]: Tangent3bvEXT (dynamic) */
+ /* _mesa_function_pool[637]: Tangent3bvEXT (dynamic) */
"p\0"
"glTangent3bvEXT\0"
"\0"
- /* _mesa_function_pool[609]: TexCoord1d (offset 94) */
+ /* _mesa_function_pool[656]: TexCoord1d (offset 94) */
"d\0"
"glTexCoord1d\0"
"\0"
- /* _mesa_function_pool[625]: VertexAttrib4ubvNV (will be remapped) */
+ /* _mesa_function_pool[672]: ViewportArrayv (will be remapped) */
+ "iip\0"
+ "glViewportArrayv\0"
+ "\0"
+ /* _mesa_function_pool[694]: VertexAttrib4ubvNV (will be remapped) */
"ip\0"
"glVertexAttrib4ubvNV\0"
"\0"
- /* _mesa_function_pool[650]: TexCoord1i (offset 98) */
+ /* _mesa_function_pool[719]: TexCoord1i (offset 98) */
"i\0"
"glTexCoord1i\0"
"\0"
- /* _mesa_function_pool[666]: GetProgramNamedParameterdvNV (will be remapped) */
+ /* _mesa_function_pool[735]: GetProgramNamedParameterdvNV (will be remapped) */
"iipp\0"
"glGetProgramNamedParameterdvNV\0"
"\0"
- /* _mesa_function_pool[703]: Histogram (offset 367) */
+ /* _mesa_function_pool[772]: Histogram (offset 367) */
"iiii\0"
"glHistogram\0"
"glHistogramEXT\0"
"\0"
- /* _mesa_function_pool[736]: TexCoord1s (offset 100) */
+ /* _mesa_function_pool[805]: TexCoord1s (offset 100) */
"i\0"
"glTexCoord1s\0"
"\0"
- /* _mesa_function_pool[752]: GetMapfv (offset 267) */
+ /* _mesa_function_pool[821]: GetMapfv (offset 267) */
"iip\0"
"glGetMapfv\0"
"\0"
- /* _mesa_function_pool[768]: EvalCoord1f (offset 230) */
+ /* _mesa_function_pool[837]: EvalCoord1f (offset 230) */
"f\0"
"glEvalCoord1f\0"
"\0"
- /* _mesa_function_pool[785]: Uniform2fv (will be remapped) */
+ /* _mesa_function_pool[854]: Uniform2fv (will be remapped) */
"iip\0"
"glUniform2fv\0"
"glUniform2fvARB\0"
"\0"
- /* _mesa_function_pool[819]: TexCoordP1ui (will be remapped) */
+ /* _mesa_function_pool[888]: TexCoordP1ui (will be remapped) */
"ii\0"
"glTexCoordP1ui\0"
"\0"
- /* _mesa_function_pool[838]: TexImage4DSGIS (dynamic) */
+ /* _mesa_function_pool[907]: TexImage4DSGIS (dynamic) */
"iiiiiiiiiip\0"
"glTexImage4DSGIS\0"
"\0"
- /* _mesa_function_pool[868]: PolygonStipple (offset 175) */
+ /* _mesa_function_pool[937]: PolygonStipple (offset 175) */
"p\0"
"glPolygonStipple\0"
"\0"
- /* _mesa_function_pool[888]: WeightPointerARB (dynamic) */
+ /* _mesa_function_pool[957]: WeightPointerARB (dynamic) */
"iiip\0"
"glWeightPointerARB\0"
"glWeightPointerOES\0"
"\0"
- /* _mesa_function_pool[932]: ListParameterfSGIX (dynamic) */
+ /* _mesa_function_pool[1001]: ListParameterfSGIX (dynamic) */
"iif\0"
"glListParameterfSGIX\0"
"\0"
- /* _mesa_function_pool[958]: MultiTexCoord1dv (offset 377) */
+ /* _mesa_function_pool[1027]: MultiTexCoord1dv (offset 377) */
"ip\0"
"glMultiTexCoord1dv\0"
"glMultiTexCoord1dvARB\0"
"\0"
- /* _mesa_function_pool[1003]: TexStorage1D (will be remapped) */
+ /* _mesa_function_pool[1072]: TexStorage1D (will be remapped) */
"iiii\0"
"glTexStorage1D\0"
"\0"
- /* _mesa_function_pool[1024]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */
+ /* _mesa_function_pool[1093]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */
"pppp\0"
"glTexCoord4fColor4fNormal3fVertex4fvSUN\0"
"\0"
- /* _mesa_function_pool[1070]: GetnPolygonStippleARB (will be remapped) */
+ /* _mesa_function_pool[1139]: GetnPolygonStippleARB (will be remapped) */
"ip\0"
"glGetnPolygonStippleARB\0"
"\0"
- /* _mesa_function_pool[1098]: GetPixelMapfv (offset 271) */
+ /* _mesa_function_pool[1167]: GetPixelMapfv (offset 271) */
"ip\0"
"glGetPixelMapfv\0"
"\0"
- /* _mesa_function_pool[1118]: Color3uiv (offset 22) */
+ /* _mesa_function_pool[1187]: Color3uiv (offset 22) */
"p\0"
"glColor3uiv\0"
"\0"
- /* _mesa_function_pool[1133]: IsEnabled (offset 286) */
+ /* _mesa_function_pool[1202]: IsEnabled (offset 286) */
"i\0"
"glIsEnabled\0"
"\0"
- /* _mesa_function_pool[1148]: DebugMessageCallbackARB (will be remapped) */
+ /* _mesa_function_pool[1217]: DebugMessageCallbackARB (will be remapped) */
"pp\0"
"glDebugMessageCallbackARB\0"
"\0"
- /* _mesa_function_pool[1178]: VertexAttrib4svNV (will be remapped) */
+ /* _mesa_function_pool[1247]: VertexAttrib4svNV (will be remapped) */
"ip\0"
"glVertexAttrib4svNV\0"
"\0"
- /* _mesa_function_pool[1202]: EvalCoord2fv (offset 235) */
+ /* _mesa_function_pool[1271]: EvalCoord2fv (offset 235) */
"p\0"
"glEvalCoord2fv\0"
"\0"
- /* _mesa_function_pool[1220]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[1289]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[1258]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[1327]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
"ffffffffffff\0"
"glTexCoord2fColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[1311]: AttachShader (will be remapped) */
+ /* _mesa_function_pool[1380]: AttachShader (will be remapped) */
"ii\0"
"glAttachShader\0"
"\0"
- /* _mesa_function_pool[1330]: TextureStorage3DEXT (will be remapped) */
+ /* _mesa_function_pool[1399]: TextureStorage3DEXT (will be remapped) */
"iiiiiii\0"
"glTextureStorage3DEXT\0"
"\0"
- /* _mesa_function_pool[1361]: FramebufferTexture1D (will be remapped) */
+ /* _mesa_function_pool[1430]: FramebufferTexture1D (will be remapped) */
"iiiii\0"
"glFramebufferTexture1D\0"
"glFramebufferTexture1DEXT\0"
"\0"
- /* _mesa_function_pool[1417]: VertexAttrib2fARB (will be remapped) */
+ /* _mesa_function_pool[1486]: VertexAttrib2fARB (will be remapped) */
"iff\0"
"glVertexAttrib2f\0"
"glVertexAttrib2fARB\0"
"\0"
- /* _mesa_function_pool[1459]: DrawTexxOES (will be remapped) */
+ /* _mesa_function_pool[1528]: DrawTexxOES (will be remapped) */
"iiiii\0"
"glDrawTexxOES\0"
"\0"
- /* _mesa_function_pool[1480]: GetMapiv (offset 268) */
+ /* _mesa_function_pool[1549]: GetMapiv (offset 268) */
"iip\0"
"glGetMapiv\0"
"\0"
- /* _mesa_function_pool[1496]: VertexAttrib3fARB (will be remapped) */
+ /* _mesa_function_pool[1565]: VertexAttrib3fARB (will be remapped) */
"ifff\0"
"glVertexAttrib3f\0"
"glVertexAttrib3fARB\0"
"\0"
- /* _mesa_function_pool[1539]: WindowPos2fv (will be remapped) */
+ /* _mesa_function_pool[1608]: WindowPos2fv (will be remapped) */
"p\0"
"glWindowPos2fv\0"
"glWindowPos2fvARB\0"
"glWindowPos2fvMESA\0"
"\0"
- /* _mesa_function_pool[1594]: Indexubv (offset 316) */
+ /* _mesa_function_pool[1663]: Indexubv (offset 316) */
"p\0"
"glIndexubv\0"
"\0"
- /* _mesa_function_pool[1608]: GetShaderiv (will be remapped) */
+ /* _mesa_function_pool[1677]: GetShaderiv (will be remapped) */
"iip\0"
"glGetShaderiv\0"
"\0"
- /* _mesa_function_pool[1627]: TexImage3D (offset 371) */
+ /* _mesa_function_pool[1696]: TexImage3D (offset 371) */
"iiiiiiiiip\0"
"glTexImage3D\0"
"glTexImage3DEXT\0"
"glTexImage3DOES\0"
"\0"
- /* _mesa_function_pool[1684]: TexCoordP4ui (will be remapped) */
+ /* _mesa_function_pool[1753]: TexCoordP4ui (will be remapped) */
"ii\0"
"glTexCoordP4ui\0"
"\0"
- /* _mesa_function_pool[1703]: ReplacementCodeuiVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[1772]: ReplacementCodeuiVertex3fvSUN (dynamic) */
"pp\0"
"glReplacementCodeuiVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[1739]: VertexAttrib1sv (will be remapped) */
+ /* _mesa_function_pool[1808]: VertexAttrib1sv (will be remapped) */
"ip\0"
"glVertexAttrib1sv\0"
"glVertexAttrib1svARB\0"
"\0"
- /* _mesa_function_pool[1782]: BindFragDataLocation (will be remapped) */
+ /* _mesa_function_pool[1851]: BindFragDataLocation (will be remapped) */
"iip\0"
"glBindFragDataLocationEXT\0"
"glBindFragDataLocation\0"
"\0"
- /* _mesa_function_pool[1836]: VertexAttribI4usv (will be remapped) */
+ /* _mesa_function_pool[1905]: VertexAttribI4usv (will be remapped) */
"ip\0"
"glVertexAttribI4usvEXT\0"
"glVertexAttribI4usv\0"
"\0"
- /* _mesa_function_pool[1883]: EdgeFlagPointer (offset 312) */
+ /* _mesa_function_pool[1952]: EdgeFlagPointer (offset 312) */
"ip\0"
"glEdgeFlagPointer\0"
"\0"
- /* _mesa_function_pool[1905]: Color3ubv (offset 20) */
+ /* _mesa_function_pool[1974]: Color3ubv (offset 20) */
"p\0"
"glColor3ubv\0"
"\0"
- /* _mesa_function_pool[1920]: Vertex3dv (offset 135) */
+ /* _mesa_function_pool[1989]: Vertex3dv (offset 135) */
"p\0"
"glVertex3dv\0"
"\0"
- /* _mesa_function_pool[1935]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[2004]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiTexCoord2fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[1982]: CreateShaderProgramEXT (will be remapped) */
+ /* _mesa_function_pool[2051]: CreateShaderProgramEXT (will be remapped) */
"ip\0"
"glCreateShaderProgramEXT\0"
"\0"
- /* _mesa_function_pool[2011]: GetnMapivARB (will be remapped) */
+ /* _mesa_function_pool[2080]: GetnMapivARB (will be remapped) */
"iiip\0"
"glGetnMapivARB\0"
"\0"
- /* _mesa_function_pool[2032]: Binormal3ivEXT (dynamic) */
+ /* _mesa_function_pool[2101]: Binormal3ivEXT (dynamic) */
"p\0"
"glBinormal3ivEXT\0"
"\0"
- /* _mesa_function_pool[2052]: WindowPos2f (will be remapped) */
+ /* _mesa_function_pool[2121]: WindowPos2f (will be remapped) */
"ff\0"
"glWindowPos2f\0"
"glWindowPos2fARB\0"
"glWindowPos2fMESA\0"
"\0"
- /* _mesa_function_pool[2105]: LightModeliv (offset 166) */
+ /* _mesa_function_pool[2174]: LightModeliv (offset 166) */
"ip\0"
"glLightModeliv\0"
"\0"
- /* _mesa_function_pool[2124]: WindowPos2d (will be remapped) */
+ /* _mesa_function_pool[2193]: WindowPos2d (will be remapped) */
"dd\0"
"glWindowPos2d\0"
"glWindowPos2dARB\0"
"glWindowPos2dMESA\0"
"\0"
- /* _mesa_function_pool[2177]: VertexAttribs1dvNV (will be remapped) */
+ /* _mesa_function_pool[2246]: VertexAttribs1dvNV (will be remapped) */
"iip\0"
"glVertexAttribs1dvNV\0"
"\0"
- /* _mesa_function_pool[2203]: GetVertexAttribfv (will be remapped) */
+ /* _mesa_function_pool[2272]: GetVertexAttribfv (will be remapped) */
"iip\0"
"glGetVertexAttribfv\0"
"glGetVertexAttribfvARB\0"
"\0"
- /* _mesa_function_pool[2251]: GetImageTransformParameterfvHP (dynamic) */
+ /* _mesa_function_pool[2320]: GetImageTransformParameterfvHP (dynamic) */
"iip\0"
"glGetImageTransformParameterfvHP\0"
"\0"
- /* _mesa_function_pool[2289]: Normal3bv (offset 53) */
+ /* _mesa_function_pool[2358]: Normal3bv (offset 53) */
"p\0"
"glNormal3bv\0"
"\0"
- /* _mesa_function_pool[2304]: PointSizePointerOES (will be remapped) */
+ /* _mesa_function_pool[2373]: PointSizePointerOES (will be remapped) */
"iip\0"
"glPointSizePointerOES\0"
"\0"
- /* _mesa_function_pool[2331]: Color3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[2400]: Color3fVertex3fSUN (dynamic) */
"ffffff\0"
"glColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[2360]: TexGeniv (offset 193) */
+ /* _mesa_function_pool[2429]: TexGeniv (offset 193) */
"iip\0"
"glTexGeniv\0"
"glTexGenivOES\0"
"\0"
- /* _mesa_function_pool[2390]: TexCoordP1uiv (will be remapped) */
+ /* _mesa_function_pool[2459]: TexCoordP1uiv (will be remapped) */
"ip\0"
"glTexCoordP1uiv\0"
"\0"
- /* _mesa_function_pool[2410]: BeginQueryIndexed (will be remapped) */
+ /* _mesa_function_pool[2479]: BeginQueryIndexed (will be remapped) */
"iii\0"
"glBeginQueryIndexed\0"
"\0"
- /* _mesa_function_pool[2435]: WeightubvARB (dynamic) */
+ /* _mesa_function_pool[2504]: WeightubvARB (dynamic) */
"ip\0"
"glWeightubvARB\0"
"\0"
- /* _mesa_function_pool[2454]: WindowPos2s (will be remapped) */
+ /* _mesa_function_pool[2523]: WindowPos2s (will be remapped) */
"ii\0"
"glWindowPos2s\0"
"glWindowPos2sARB\0"
"glWindowPos2sMESA\0"
"\0"
- /* _mesa_function_pool[2507]: Vertex3iv (offset 139) */
+ /* _mesa_function_pool[2576]: Vertex3iv (offset 139) */
"p\0"
"glVertex3iv\0"
"\0"
- /* _mesa_function_pool[2522]: RenderbufferStorage (will be remapped) */
+ /* _mesa_function_pool[2591]: RenderbufferStorage (will be remapped) */
"iiii\0"
"glRenderbufferStorage\0"
"glRenderbufferStorageEXT\0"
"glRenderbufferStorageOES\0"
"\0"
- /* _mesa_function_pool[2600]: CopyConvolutionFilter1D (offset 354) */
+ /* _mesa_function_pool[2669]: CopyConvolutionFilter1D (offset 354) */
"iiiii\0"
"glCopyConvolutionFilter1D\0"
"glCopyConvolutionFilter1DEXT\0"
"\0"
- /* _mesa_function_pool[2662]: VertexAttribI1uiEXT (will be remapped) */
+ /* _mesa_function_pool[2731]: VertexAttribI1uiEXT (will be remapped) */
"ii\0"
"glVertexAttribI1uiEXT\0"
"glVertexAttribI1ui\0"
"\0"
- /* _mesa_function_pool[2707]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[2776]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */
"iffffff\0"
"glReplacementCodeuiNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[2755]: DeleteSync (will be remapped) */
+ /* _mesa_function_pool[2824]: DeleteSync (will be remapped) */
"i\0"
"glDeleteSync\0"
"\0"
- /* _mesa_function_pool[2771]: DrawArraysIndirect (will be remapped) */
+ /* _mesa_function_pool[2840]: DrawArraysIndirect (will be remapped) */
"ip\0"
"glDrawArraysIndirect\0"
"\0"
- /* _mesa_function_pool[2796]: GenQueries (will be remapped) */
+ /* _mesa_function_pool[2865]: GenQueries (will be remapped) */
"ip\0"
"glGenQueries\0"
"glGenQueriesARB\0"
"\0"
- /* _mesa_function_pool[2829]: BlendColor (offset 336) */
+ /* _mesa_function_pool[2898]: BlendColor (offset 336) */
"ffff\0"
"glBlendColor\0"
"glBlendColorEXT\0"
"\0"
- /* _mesa_function_pool[2864]: GetVertexAttribIuiv (will be remapped) */
+ /* _mesa_function_pool[2933]: GetVertexAttribIuiv (will be remapped) */
"iip\0"
"glGetVertexAttribIuivEXT\0"
"glGetVertexAttribIuiv\0"
"\0"
- /* _mesa_function_pool[2916]: TexCoord2fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[2985]: TexCoord2fVertex3fvSUN (dynamic) */
"pp\0"
"glTexCoord2fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[2945]: CompressedTexImage3D (will be remapped) */
+ /* _mesa_function_pool[3014]: CompressedTexImage3D (will be remapped) */
"iiiiiiiip\0"
"glCompressedTexImage3D\0"
"glCompressedTexImage3DARB\0"
"glCompressedTexImage3DOES\0"
"\0"
- /* _mesa_function_pool[3031]: GetDebugMessageLogARB (will be remapped) */
+ /* _mesa_function_pool[3100]: GetDebugMessageLogARB (will be remapped) */
"iipppppp\0"
"glGetDebugMessageLogARB\0"
"\0"
- /* _mesa_function_pool[3065]: VDPAUGetSurfaceivNV (will be remapped) */
+ /* _mesa_function_pool[3134]: VDPAUGetSurfaceivNV (will be remapped) */
"iiipp\0"
"glVDPAUGetSurfaceivNV\0"
"\0"
- /* _mesa_function_pool[3094]: ReadInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[3163]: ReadInstrumentsSGIX (dynamic) */
"i\0"
"glReadInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[3119]: CallLists (offset 3) */
+ /* _mesa_function_pool[3188]: CallLists (offset 3) */
"iip\0"
"glCallLists\0"
"\0"
- /* _mesa_function_pool[3136]: Uniform3f (will be remapped) */
+ /* _mesa_function_pool[3205]: Uniform3f (will be remapped) */
"ifff\0"
"glUniform3f\0"
"glUniform3fARB\0"
"\0"
- /* _mesa_function_pool[3169]: UniformMatrix2fv (will be remapped) */
+ /* _mesa_function_pool[3238]: UniformMatrix2fv (will be remapped) */
"iiip\0"
"glUniformMatrix2fv\0"
"glUniformMatrix2fvARB\0"
"\0"
- /* _mesa_function_pool[3216]: ReadnPixelsARB (will be remapped) */
+ /* _mesa_function_pool[3285]: ReadnPixelsARB (will be remapped) */
"iiiiiiip\0"
"glReadnPixelsARB\0"
"\0"
- /* _mesa_function_pool[3243]: Color4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[3312]: Color4ubVertex3fvSUN (dynamic) */
"pp\0"
"glColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[3270]: Normal3iv (offset 59) */
+ /* _mesa_function_pool[3339]: Normal3iv (offset 59) */
"p\0"
"glNormal3iv\0"
"\0"
- /* _mesa_function_pool[3285]: SecondaryColor3dv (will be remapped) */
+ /* _mesa_function_pool[3354]: SecondaryColor3dv (will be remapped) */
"p\0"
"glSecondaryColor3dv\0"
"glSecondaryColor3dvEXT\0"
"\0"
- /* _mesa_function_pool[3331]: DrawTexiOES (will be remapped) */
+ /* _mesa_function_pool[3400]: DrawTexiOES (will be remapped) */
"iiiii\0"
"glDrawTexiOES\0"
"\0"
- /* _mesa_function_pool[3352]: PassThrough (offset 199) */
+ /* _mesa_function_pool[3421]: PassThrough (offset 199) */
"f\0"
"glPassThrough\0"
"\0"
- /* _mesa_function_pool[3369]: VertexP3ui (will be remapped) */
+ /* _mesa_function_pool[3438]: VertexP3ui (will be remapped) */
"ii\0"
"glVertexP3ui\0"
"\0"
- /* _mesa_function_pool[3386]: TransformFeedbackVaryings (will be remapped) */
+ /* _mesa_function_pool[3455]: TransformFeedbackVaryings (will be remapped) */
"iipi\0"
"glTransformFeedbackVaryings\0"
"glTransformFeedbackVaryingsEXT\0"
"\0"
- /* _mesa_function_pool[3451]: GetListParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[3520]: GetListParameterfvSGIX (dynamic) */
"iip\0"
"glGetListParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[3481]: Viewport (offset 305) */
+ /* _mesa_function_pool[3550]: Viewport (offset 305) */
"iiii\0"
"glViewport\0"
"\0"
- /* _mesa_function_pool[3498]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[3567]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[3554]: WindowPos4svMESA (will be remapped) */
+ /* _mesa_function_pool[3623]: WindowPos4svMESA (will be remapped) */
"p\0"
"glWindowPos4svMESA\0"
"\0"
- /* _mesa_function_pool[3576]: CreateProgramObjectARB (will be remapped) */
+ /* _mesa_function_pool[3645]: CreateProgramObjectARB (will be remapped) */
"\0"
"glCreateProgramObjectARB\0"
"\0"
- /* _mesa_function_pool[3603]: UniformMatrix3fv (will be remapped) */
+ /* _mesa_function_pool[3672]: UniformMatrix3fv (will be remapped) */
"iiip\0"
"glUniformMatrix3fv\0"
"glUniformMatrix3fvARB\0"
"\0"
- /* _mesa_function_pool[3650]: FragmentLightModelivSGIX (dynamic) */
+ /* _mesa_function_pool[3719]: FragmentLightModelivSGIX (dynamic) */
"ip\0"
"glFragmentLightModelivSGIX\0"
"\0"
- /* _mesa_function_pool[3681]: UniformMatrix4x3fv (will be remapped) */
+ /* _mesa_function_pool[3750]: UniformMatrix4x3fv (will be remapped) */
"iiip\0"
"glUniformMatrix4x3fv\0"
"\0"
- /* _mesa_function_pool[3708]: PrioritizeTextures (offset 331) */
+ /* _mesa_function_pool[3777]: PrioritizeTextures (offset 331) */
"ipp\0"
"glPrioritizeTextures\0"
"glPrioritizeTexturesEXT\0"
"\0"
- /* _mesa_function_pool[3758]: VertexAttribI3uiEXT (will be remapped) */
+ /* _mesa_function_pool[3827]: VertexAttribI3uiEXT (will be remapped) */
"iiii\0"
"glVertexAttribI3uiEXT\0"
"glVertexAttribI3ui\0"
"\0"
- /* _mesa_function_pool[3805]: VertexAttribDivisor (will be remapped) */
+ /* _mesa_function_pool[3874]: VertexAttribDivisor (will be remapped) */
"ii\0"
"glVertexAttribDivisorARB\0"
"glVertexAttribDivisor\0"
"\0"
- /* _mesa_function_pool[3856]: AsyncMarkerSGIX (dynamic) */
+ /* _mesa_function_pool[3925]: AsyncMarkerSGIX (dynamic) */
"i\0"
"glAsyncMarkerSGIX\0"
"\0"
- /* _mesa_function_pool[3877]: GetQueryiv (will be remapped) */
+ /* _mesa_function_pool[3946]: GetQueryiv (will be remapped) */
"iip\0"
"glGetQueryiv\0"
"glGetQueryivARB\0"
"\0"
- /* _mesa_function_pool[3911]: ClearColorIuiEXT (will be remapped) */
+ /* _mesa_function_pool[3980]: ClearColorIuiEXT (will be remapped) */
"iiii\0"
"glClearColorIuiEXT\0"
"\0"
- /* _mesa_function_pool[3936]: VertexAttrib3d (will be remapped) */
+ /* _mesa_function_pool[4005]: VertexAttrib3d (will be remapped) */
"iddd\0"
"glVertexAttrib3d\0"
"glVertexAttrib3dARB\0"
"\0"
- /* _mesa_function_pool[3979]: Frustumx (will be remapped) */
+ /* _mesa_function_pool[4048]: Frustumx (will be remapped) */
"iiiiii\0"
"glFrustumxOES\0"
"glFrustumx\0"
"\0"
- /* _mesa_function_pool[4012]: ResetHistogram (offset 369) */
+ /* _mesa_function_pool[4081]: ResetHistogram (offset 369) */
"i\0"
"glResetHistogram\0"
"glResetHistogramEXT\0"
"\0"
- /* _mesa_function_pool[4052]: GetProgramNamedParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[4121]: GetProgramNamedParameterfvNV (will be remapped) */
"iipp\0"
"glGetProgramNamedParameterfvNV\0"
"\0"
- /* _mesa_function_pool[4089]: GetLightxv (will be remapped) */
+ /* _mesa_function_pool[4158]: GetLightxv (will be remapped) */
"iip\0"
"glGetLightxvOES\0"
"glGetLightxv\0"
"\0"
- /* _mesa_function_pool[4123]: CompressedTexSubImage2D (will be remapped) */
+ /* _mesa_function_pool[4192]: CompressedTexSubImage2D (will be remapped) */
"iiiiiiiip\0"
"glCompressedTexSubImage2D\0"
"glCompressedTexSubImage2DARB\0"
"\0"
- /* _mesa_function_pool[4189]: GenFencesNV (dynamic) */
+ /* _mesa_function_pool[4258]: GenFencesNV (dynamic) */
"ip\0"
"glGenFencesNV\0"
"\0"
- /* _mesa_function_pool[4207]: GetMaterialxv (will be remapped) */
+ /* _mesa_function_pool[4276]: GetMaterialxv (will be remapped) */
"iip\0"
"glGetMaterialxvOES\0"
"glGetMaterialxv\0"
"\0"
- /* _mesa_function_pool[4247]: ImageTransformParameterfHP (dynamic) */
+ /* _mesa_function_pool[4316]: ImageTransformParameterfHP (dynamic) */
"iif\0"
"glImageTransformParameterfHP\0"
"\0"
- /* _mesa_function_pool[4281]: MatrixIndexusvARB (dynamic) */
+ /* _mesa_function_pool[4350]: MatrixIndexusvARB (dynamic) */
"ip\0"
"glMatrixIndexusvARB\0"
"\0"
- /* _mesa_function_pool[4305]: SecondaryColor3uiv (will be remapped) */
+ /* _mesa_function_pool[4374]: SecondaryColor3uiv (will be remapped) */
"p\0"
"glSecondaryColor3uiv\0"
"glSecondaryColor3uivEXT\0"
"\0"
- /* _mesa_function_pool[4353]: GetnConvolutionFilterARB (will be remapped) */
+ /* _mesa_function_pool[4422]: GetnConvolutionFilterARB (will be remapped) */
"iiiip\0"
"glGetnConvolutionFilterARB\0"
"\0"
- /* _mesa_function_pool[4387]: TexCoord2sv (offset 109) */
+ /* _mesa_function_pool[4456]: TexCoord2sv (offset 109) */
"p\0"
"glTexCoord2sv\0"
"\0"
- /* _mesa_function_pool[4404]: GetClipPlanex (will be remapped) */
+ /* _mesa_function_pool[4473]: GetClipPlanex (will be remapped) */
"ip\0"
"glGetClipPlanexOES\0"
"glGetClipPlanex\0"
"\0"
- /* _mesa_function_pool[4443]: Vertex4dv (offset 143) */
+ /* _mesa_function_pool[4512]: Vertex4dv (offset 143) */
"p\0"
"glVertex4dv\0"
"\0"
- /* _mesa_function_pool[4458]: StencilMaskSeparate (will be remapped) */
+ /* _mesa_function_pool[4527]: StencilMaskSeparate (will be remapped) */
"ii\0"
"glStencilMaskSeparate\0"
"\0"
- /* _mesa_function_pool[4484]: MapBuffer (will be remapped) */
+ /* _mesa_function_pool[4553]: MapBuffer (will be remapped) */
"ii\0"
"glMapBuffer\0"
"glMapBufferARB\0"
"glMapBufferOES\0"
"\0"
- /* _mesa_function_pool[4530]: PolygonOffsetx (will be remapped) */
+ /* _mesa_function_pool[4599]: PolygonOffsetx (will be remapped) */
"ii\0"
"glPolygonOffsetxOES\0"
"glPolygonOffsetx\0"
"\0"
- /* _mesa_function_pool[4571]: VertexAttrib4Nbv (will be remapped) */
+ /* _mesa_function_pool[4640]: VertexAttrib4Nbv (will be remapped) */
"ip\0"
"glVertexAttrib4Nbv\0"
"glVertexAttrib4NbvARB\0"
"\0"
- /* _mesa_function_pool[4616]: ProgramLocalParameter4dARB (will be remapped) */
+ /* _mesa_function_pool[4685]: ProgramLocalParameter4dARB (will be remapped) */
"iidddd\0"
"glProgramLocalParameter4dARB\0"
"\0"
- /* _mesa_function_pool[4653]: ProgramBinary (will be remapped) */
+ /* _mesa_function_pool[4722]: ProgramBinary (will be remapped) */
"iipi\0"
"glProgramBinary\0"
"glProgramBinaryOES\0"
"\0"
- /* _mesa_function_pool[4694]: InvalidateTexImage (will be remapped) */
+ /* _mesa_function_pool[4763]: InvalidateTexImage (will be remapped) */
"ii\0"
"glInvalidateTexImage\0"
"\0"
- /* _mesa_function_pool[4719]: Uniform4ui (will be remapped) */
+ /* _mesa_function_pool[4788]: Uniform4ui (will be remapped) */
"iiiii\0"
"glUniform4uiEXT\0"
"glUniform4ui\0"
"\0"
- /* _mesa_function_pool[4755]: VertexAttribs2svNV (will be remapped) */
+ /* _mesa_function_pool[4824]: VertexAttribs2svNV (will be remapped) */
"iip\0"
"glVertexAttribs2svNV\0"
"\0"
- /* _mesa_function_pool[4781]: Color3sv (offset 18) */
+ /* _mesa_function_pool[4850]: Color3sv (offset 18) */
"p\0"
"glColor3sv\0"
"\0"
- /* _mesa_function_pool[4795]: LoadMatrixx (will be remapped) */
+ /* _mesa_function_pool[4864]: LoadMatrixx (will be remapped) */
"p\0"
"glLoadMatrixxOES\0"
"glLoadMatrixx\0"
"\0"
- /* _mesa_function_pool[4829]: GetConvolutionParameteriv (offset 358) */
+ /* _mesa_function_pool[4898]: GetConvolutionParameteriv (offset 358) */
"iip\0"
"glGetConvolutionParameteriv\0"
"glGetConvolutionParameterivEXT\0"
"\0"
- /* _mesa_function_pool[4893]: DeleteSamplers (will be remapped) */
+ /* _mesa_function_pool[4962]: DeleteSamplers (will be remapped) */
"ip\0"
"glDeleteSamplers\0"
"\0"
- /* _mesa_function_pool[4914]: VertexAttrib1fARB (will be remapped) */
+ /* _mesa_function_pool[4983]: VertexAttrib1fARB (will be remapped) */
"if\0"
"glVertexAttrib1f\0"
"glVertexAttrib1fARB\0"
"\0"
- /* _mesa_function_pool[4955]: Vertex2dv (offset 127) */
+ /* _mesa_function_pool[5024]: Vertex2dv (offset 127) */
"p\0"
"glVertex2dv\0"
"\0"
- /* _mesa_function_pool[4970]: TestFenceNV (dynamic) */
+ /* _mesa_function_pool[5039]: TestFenceNV (dynamic) */
"i\0"
"glTestFenceNV\0"
"\0"
- /* _mesa_function_pool[4987]: DeleteRenderbuffers (will be remapped) */
+ /* _mesa_function_pool[5056]: DeleteRenderbuffers (will be remapped) */
"ip\0"
"glDeleteRenderbuffers\0"
"glDeleteRenderbuffersEXT\0"
"glDeleteRenderbuffersOES\0"
"\0"
- /* _mesa_function_pool[5063]: MultiTexCoord1fvARB (offset 379) */
+ /* _mesa_function_pool[5132]: MultiTexCoord1fvARB (offset 379) */
"ip\0"
"glMultiTexCoord1fv\0"
"glMultiTexCoord1fvARB\0"
"\0"
- /* _mesa_function_pool[5108]: VertexAttribI4bv (will be remapped) */
+ /* _mesa_function_pool[5177]: VertexAttribI4bv (will be remapped) */
"ip\0"
"glVertexAttribI4bvEXT\0"
"glVertexAttribI4bv\0"
"\0"
- /* _mesa_function_pool[5153]: TexCoord3iv (offset 115) */
+ /* _mesa_function_pool[5222]: TexCoord3iv (offset 115) */
"p\0"
"glTexCoord3iv\0"
"\0"
- /* _mesa_function_pool[5170]: GetObjectPtrLabel (will be remapped) */
+ /* _mesa_function_pool[5239]: GetObjectPtrLabel (will be remapped) */
"pipp\0"
"glGetObjectPtrLabel\0"
"\0"
- /* _mesa_function_pool[5196]: TexStorage2D (will be remapped) */
+ /* _mesa_function_pool[5265]: TexStorage2D (will be remapped) */
"iiiii\0"
"glTexStorage2D\0"
"\0"
- /* _mesa_function_pool[5218]: LoadPaletteFromModelViewMatrixOES (dynamic) */
+ /* _mesa_function_pool[5287]: LoadPaletteFromModelViewMatrixOES (dynamic) */
"\0"
"glLoadPaletteFromModelViewMatrixOES\0"
"\0"
- /* _mesa_function_pool[5256]: ProgramParameteri (will be remapped) */
+ /* _mesa_function_pool[5325]: ProgramParameteri (will be remapped) */
"iii\0"
"glProgramParameteriARB\0"
"glProgramParameteri\0"
"\0"
- /* _mesa_function_pool[5304]: VertexAttrib4usv (will be remapped) */
+ /* _mesa_function_pool[5373]: VertexAttrib4usv (will be remapped) */
"ip\0"
"glVertexAttrib4usv\0"
"glVertexAttrib4usvARB\0"
"\0"
- /* _mesa_function_pool[5349]: FragmentLightfvSGIX (dynamic) */
+ /* _mesa_function_pool[5418]: FragmentLightfvSGIX (dynamic) */
"iip\0"
"glFragmentLightfvSGIX\0"
"\0"
- /* _mesa_function_pool[5376]: GetPixelTexGenParameterivSGIS (dynamic) */
+ /* _mesa_function_pool[5445]: GetPixelTexGenParameterivSGIS (dynamic) */
"ip\0"
"glGetPixelTexGenParameterivSGIS\0"
"\0"
- /* _mesa_function_pool[5412]: Color3fv (offset 14) */
+ /* _mesa_function_pool[5481]: Color3fv (offset 14) */
"p\0"
"glColor3fv\0"
"\0"
- /* _mesa_function_pool[5426]: VertexAttrib4fNV (will be remapped) */
+ /* _mesa_function_pool[5495]: VertexAttrib4fNV (will be remapped) */
"iffff\0"
"glVertexAttrib4fNV\0"
"\0"
- /* _mesa_function_pool[5452]: MultiTexCoord4sv (offset 407) */
+ /* _mesa_function_pool[5521]: MultiTexCoord4sv (offset 407) */
"ip\0"
"glMultiTexCoord4sv\0"
"glMultiTexCoord4svARB\0"
"\0"
- /* _mesa_function_pool[5497]: TextureStorage1DEXT (will be remapped) */
+ /* _mesa_function_pool[5566]: TextureStorage1DEXT (will be remapped) */
"iiiii\0"
"glTextureStorage1DEXT\0"
"\0"
- /* _mesa_function_pool[5526]: ReplacementCodeubSUN (dynamic) */
+ /* _mesa_function_pool[5595]: ReplacementCodeubSUN (dynamic) */
"i\0"
"glReplacementCodeubSUN\0"
"\0"
- /* _mesa_function_pool[5552]: VertexAttrib4Nub (will be remapped) */
+ /* _mesa_function_pool[5621]: VertexAttrib4Nub (will be remapped) */
"iiiii\0"
"glVertexAttrib4Nub\0"
"glVertexAttrib4NubARB\0"
"\0"
- /* _mesa_function_pool[5600]: PointParameterx (will be remapped) */
+ /* _mesa_function_pool[5669]: PointParameterx (will be remapped) */
"ii\0"
"glPointParameterxOES\0"
"glPointParameterx\0"
"\0"
- /* _mesa_function_pool[5643]: VertexAttribP3ui (will be remapped) */
+ /* _mesa_function_pool[5712]: VertexAttribP3ui (will be remapped) */
"iiii\0"
"glVertexAttribP3ui\0"
"\0"
- /* _mesa_function_pool[5668]: Uniform4fv (will be remapped) */
+ /* _mesa_function_pool[5737]: Uniform4fv (will be remapped) */
"iip\0"
"glUniform4fv\0"
"glUniform4fvARB\0"
"\0"
- /* _mesa_function_pool[5702]: TextureView (will be remapped) */
+ /* _mesa_function_pool[5771]: TextureView (will be remapped) */
"iiiiiiii\0"
"glTextureView\0"
"\0"
- /* _mesa_function_pool[5726]: Color4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[5795]: Color4ubVertex3fSUN (dynamic) */
"iiiifff\0"
"glColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[5757]: FogCoordfEXT (will be remapped) */
+ /* _mesa_function_pool[5826]: FogCoordfEXT (will be remapped) */
"f\0"
"glFogCoordf\0"
"glFogCoordfEXT\0"
"\0"
- /* _mesa_function_pool[5787]: PointSize (offset 173) */
+ /* _mesa_function_pool[5856]: PointSize (offset 173) */
"f\0"
"glPointSize\0"
"\0"
- /* _mesa_function_pool[5802]: MultiTexCoord2i (offset 388) */
+ /* _mesa_function_pool[5871]: MultiTexCoord2i (offset 388) */
"iii\0"
"glMultiTexCoord2i\0"
"glMultiTexCoord2iARB\0"
"\0"
- /* _mesa_function_pool[5846]: TexCoord2fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[5915]: TexCoord2fVertex3fSUN (dynamic) */
"fffff\0"
"glTexCoord2fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[5877]: GetPerfMonitorCounterInfoAMD (will be remapped) */
+ /* _mesa_function_pool[5946]: GetPerfMonitorCounterInfoAMD (will be remapped) */
"iiip\0"
"glGetPerfMonitorCounterInfoAMD\0"
"\0"
- /* _mesa_function_pool[5914]: MultiTexCoord2d (offset 384) */
+ /* _mesa_function_pool[5983]: MultiTexCoord2d (offset 384) */
"idd\0"
"glMultiTexCoord2d\0"
"glMultiTexCoord2dARB\0"
"\0"
- /* _mesa_function_pool[5958]: UniformBlockBinding (will be remapped) */
+ /* _mesa_function_pool[6027]: UniformBlockBinding (will be remapped) */
"iii\0"
"glUniformBlockBinding\0"
"\0"
- /* _mesa_function_pool[5985]: PopName (offset 200) */
+ /* _mesa_function_pool[6054]: PopName (offset 200) */
"\0"
"glPopName\0"
"\0"
- /* _mesa_function_pool[5997]: GetSamplerParameterfv (will be remapped) */
+ /* _mesa_function_pool[6066]: GetSamplerParameterfv (will be remapped) */
"iip\0"
"glGetSamplerParameterfv\0"
"\0"
- /* _mesa_function_pool[6026]: VertexAttrib2dv (will be remapped) */
+ /* _mesa_function_pool[6095]: VertexAttrib2dv (will be remapped) */
"ip\0"
"glVertexAttrib2dv\0"
"glVertexAttrib2dvARB\0"
"\0"
- /* _mesa_function_pool[6069]: VertexAttrib4Nusv (will be remapped) */
+ /* _mesa_function_pool[6138]: VertexAttrib4Nusv (will be remapped) */
"ip\0"
"glVertexAttrib4Nusv\0"
"glVertexAttrib4NusvARB\0"
"\0"
- /* _mesa_function_pool[6116]: SampleMaski (will be remapped) */
+ /* _mesa_function_pool[6185]: SampleMaski (will be remapped) */
"ii\0"
"glSampleMaski\0"
"\0"
- /* _mesa_function_pool[6134]: GetProgramInfoLog (will be remapped) */
+ /* _mesa_function_pool[6203]: GetProgramInfoLog (will be remapped) */
"iipp\0"
"glGetProgramInfoLog\0"
"\0"
- /* _mesa_function_pool[6160]: VertexP2ui (will be remapped) */
+ /* _mesa_function_pool[6229]: VertexP2ui (will be remapped) */
"ii\0"
"glVertexP2ui\0"
"\0"
- /* _mesa_function_pool[6177]: SamplerParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[6246]: SamplerParameterIuiv (will be remapped) */
"iip\0"
"glSamplerParameterIuiv\0"
"\0"
- /* _mesa_function_pool[6205]: TexParameterx (will be remapped) */
+ /* _mesa_function_pool[6274]: TexParameterx (will be remapped) */
"iii\0"
"glTexParameterxOES\0"
"glTexParameterx\0"
"\0"
- /* _mesa_function_pool[6245]: Vertex4sv (offset 149) */
+ /* _mesa_function_pool[6314]: Vertex4sv (offset 149) */
"p\0"
"glVertex4sv\0"
"\0"
- /* _mesa_function_pool[6260]: FramebufferTexture (will be remapped) */
+ /* _mesa_function_pool[6329]: FramebufferTexture (will be remapped) */
"iiii\0"
"glFramebufferTextureARB\0"
"glFramebufferTexture\0"
"\0"
- /* _mesa_function_pool[6311]: GetQueryObjecti64v (will be remapped) */
+ /* _mesa_function_pool[6380]: GetQueryObjecti64v (will be remapped) */
"iip\0"
"glGetQueryObjecti64v\0"
"glGetQueryObjecti64vEXT\0"
"\0"
- /* _mesa_function_pool[6361]: GetActiveUniformBlockiv (will be remapped) */
+ /* _mesa_function_pool[6430]: GetActiveUniformBlockiv (will be remapped) */
"iiip\0"
"glGetActiveUniformBlockiv\0"
"\0"
- /* _mesa_function_pool[6393]: VertexAttrib4ubNV (will be remapped) */
+ /* _mesa_function_pool[6462]: VertexAttrib4ubNV (will be remapped) */
"iiiii\0"
"glVertexAttrib4ubNV\0"
"\0"
- /* _mesa_function_pool[6420]: MultiTexCoord2s (offset 390) */
+ /* _mesa_function_pool[6489]: MultiTexCoord2s (offset 390) */
"iii\0"
"glMultiTexCoord2s\0"
"glMultiTexCoord2sARB\0"
"\0"
- /* _mesa_function_pool[6464]: ClampColor (will be remapped) */
+ /* _mesa_function_pool[6533]: ClampColor (will be remapped) */
"ii\0"
"glClampColorARB\0"
"glClampColor\0"
"\0"
- /* _mesa_function_pool[6497]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[6566]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[6535]: GetTexEnvfv (offset 276) */
+ /* _mesa_function_pool[6604]: GetTexEnvfv (offset 276) */
"iip\0"
"glGetTexEnvfv\0"
"\0"
- /* _mesa_function_pool[6554]: BindAttribLocation (will be remapped) */
+ /* _mesa_function_pool[6623]: BindAttribLocation (will be remapped) */
"iip\0"
"glBindAttribLocation\0"
"glBindAttribLocationARB\0"
"\0"
- /* _mesa_function_pool[6604]: BindFragDataLocationIndexed (will be remapped) */
+ /* _mesa_function_pool[6673]: BindFragDataLocationIndexed (will be remapped) */
"iiip\0"
"glBindFragDataLocationIndexed\0"
"\0"
- /* _mesa_function_pool[6640]: DiscardFramebufferEXT (will be remapped) */
+ /* _mesa_function_pool[6709]: DiscardFramebufferEXT (will be remapped) */
"iip\0"
"glDiscardFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[6669]: VDPAURegisterVideoSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[6738]: VDPAURegisterVideoSurfaceNV (will be remapped) */
"piip\0"
"glVDPAURegisterVideoSurfaceNV\0"
"\0"
- /* _mesa_function_pool[6705]: BindTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[6774]: BindTransformFeedback (will be remapped) */
"ii\0"
"glBindTransformFeedback\0"
"\0"
- /* _mesa_function_pool[6733]: TextureStorage2DEXT (will be remapped) */
+ /* _mesa_function_pool[6802]: TextureStorage2DEXT (will be remapped) */
"iiiiii\0"
"glTextureStorage2DEXT\0"
"\0"
- /* _mesa_function_pool[6763]: BindBufferBase (will be remapped) */
+ /* _mesa_function_pool[6832]: BindBufferBase (will be remapped) */
"iii\0"
"glBindBufferBase\0"
"glBindBufferBaseEXT\0"
"\0"
- /* _mesa_function_pool[6805]: Indexub (offset 315) */
+ /* _mesa_function_pool[6874]: Indexub (offset 315) */
"i\0"
"glIndexub\0"
"\0"
- /* _mesa_function_pool[6818]: GetPerfMonitorCounterDataAMD (will be remapped) */
+ /* _mesa_function_pool[6887]: GetPerfMonitorCounterDataAMD (will be remapped) */
"iiipp\0"
"glGetPerfMonitorCounterDataAMD\0"
"\0"
- /* _mesa_function_pool[6856]: TexEnvi (offset 186) */
+ /* _mesa_function_pool[6925]: TexEnvi (offset 186) */
"iii\0"
"glTexEnvi\0"
"\0"
- /* _mesa_function_pool[6871]: GetClipPlane (offset 259) */
+ /* _mesa_function_pool[6940]: GetClipPlane (offset 259) */
"ip\0"
"glGetClipPlane\0"
"\0"
- /* _mesa_function_pool[6890]: CombinerParameterfvNV (dynamic) */
+ /* _mesa_function_pool[6959]: CombinerParameterfvNV (dynamic) */
"ip\0"
"glCombinerParameterfvNV\0"
"\0"
- /* _mesa_function_pool[6918]: TexCoordP4uiv (will be remapped) */
+ /* _mesa_function_pool[6987]: TexCoordP4uiv (will be remapped) */
"ip\0"
"glTexCoordP4uiv\0"
"\0"
- /* _mesa_function_pool[6938]: VertexAttribs3dvNV (will be remapped) */
+ /* _mesa_function_pool[7007]: VertexAttribs3dvNV (will be remapped) */
"iip\0"
"glVertexAttribs3dvNV\0"
"\0"
- /* _mesa_function_pool[6964]: VertexAttribs4fvNV (will be remapped) */
+ /* _mesa_function_pool[7033]: VertexAttribs4fvNV (will be remapped) */
"iip\0"
"glVertexAttribs4fvNV\0"
"\0"
- /* _mesa_function_pool[6990]: VertexArrayRangeNV (dynamic) */
+ /* _mesa_function_pool[7059]: VertexArrayRangeNV (dynamic) */
"ip\0"
"glVertexArrayRangeNV\0"
"\0"
- /* _mesa_function_pool[7015]: FragmentLightiSGIX (dynamic) */
+ /* _mesa_function_pool[7084]: FragmentLightiSGIX (dynamic) */
"iii\0"
"glFragmentLightiSGIX\0"
"\0"
- /* _mesa_function_pool[7041]: ClearBufferfi (will be remapped) */
+ /* _mesa_function_pool[7110]: ClearBufferfi (will be remapped) */
"iifi\0"
"glClearBufferfi\0"
"\0"
- /* _mesa_function_pool[7063]: DrawTransformFeedbackInstanced (will be remapped) */
+ /* _mesa_function_pool[7132]: DrawTransformFeedbackInstanced (will be remapped) */
"iii\0"
"glDrawTransformFeedbackInstanced\0"
"\0"
- /* _mesa_function_pool[7101]: VDPAUInitNV (will be remapped) */
+ /* _mesa_function_pool[7170]: VDPAUInitNV (will be remapped) */
"pp\0"
"glVDPAUInitNV\0"
"\0"
- /* _mesa_function_pool[7119]: DrawElementsIndirect (will be remapped) */
+ /* _mesa_function_pool[7188]: DrawElementsIndirect (will be remapped) */
"iip\0"
"glDrawElementsIndirect\0"
"\0"
- /* _mesa_function_pool[7147]: PolygonOffsetEXT (will be remapped) */
+ /* _mesa_function_pool[7216]: PolygonOffsetEXT (will be remapped) */
"ff\0"
"glPolygonOffsetEXT\0"
"\0"
- /* _mesa_function_pool[7170]: WindowPos4dvMESA (will be remapped) */
+ /* _mesa_function_pool[7239]: WindowPos4dvMESA (will be remapped) */
"p\0"
"glWindowPos4dvMESA\0"
"\0"
- /* _mesa_function_pool[7192]: Scalex (will be remapped) */
+ /* _mesa_function_pool[7261]: Scalex (will be remapped) */
"iii\0"
"glScalexOES\0"
"glScalex\0"
"\0"
- /* _mesa_function_pool[7218]: PollAsyncSGIX (dynamic) */
+ /* _mesa_function_pool[7287]: PollAsyncSGIX (dynamic) */
"p\0"
"glPollAsyncSGIX\0"
"\0"
- /* _mesa_function_pool[7237]: WindowPos3sv (will be remapped) */
+ /* _mesa_function_pool[7306]: WindowPos3sv (will be remapped) */
"p\0"
"glWindowPos3sv\0"
"glWindowPos3svARB\0"
"glWindowPos3svMESA\0"
"\0"
- /* _mesa_function_pool[7292]: DeleteFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[7361]: DeleteFragmentShaderATI (will be remapped) */
"i\0"
"glDeleteFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[7321]: Scaled (offset 301) */
+ /* _mesa_function_pool[7390]: Scaled (offset 301) */
"ddd\0"
"glScaled\0"
"\0"
- /* _mesa_function_pool[7335]: TangentPointerEXT (dynamic) */
+ /* _mesa_function_pool[7404]: TangentPointerEXT (dynamic) */
"iip\0"
"glTangentPointerEXT\0"
"\0"
- /* _mesa_function_pool[7360]: Scalef (offset 302) */
+ /* _mesa_function_pool[7429]: Scalef (offset 302) */
"fff\0"
"glScalef\0"
"\0"
- /* _mesa_function_pool[7374]: IndexPointerEXT (will be remapped) */
+ /* _mesa_function_pool[7443]: IndexPointerEXT (will be remapped) */
"iiip\0"
"glIndexPointerEXT\0"
"\0"
- /* _mesa_function_pool[7398]: VertexAttribI1iv (will be remapped) */
+ /* _mesa_function_pool[7467]: VertexAttribI1iv (will be remapped) */
"ip\0"
"glVertexAttribI1ivEXT\0"
"glVertexAttribI1iv\0"
"\0"
- /* _mesa_function_pool[7443]: ListParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[7512]: ListParameterfvSGIX (dynamic) */
"iip\0"
"glListParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[7470]: ColorFragmentOp1ATI (will be remapped) */
- "iiiiiii\0"
- "glColorFragmentOp1ATI\0"
+ /* _mesa_function_pool[7539]: ViewportIndexedf (will be remapped) */
+ "iffff\0"
+ "glViewportIndexedf\0"
"\0"
- /* _mesa_function_pool[7501]: GetUniformfv (will be remapped) */
+ /* _mesa_function_pool[7565]: GetUniformfv (will be remapped) */
"iip\0"
"glGetUniformfv\0"
"glGetUniformfvARB\0"
"\0"
- /* _mesa_function_pool[7539]: ObjectUnpurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[7603]: ObjectUnpurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectUnpurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[7569]: AlphaFunc (offset 240) */
+ /* _mesa_function_pool[7633]: AlphaFunc (offset 240) */
"if\0"
"glAlphaFunc\0"
"\0"
- /* _mesa_function_pool[7585]: ColorFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[7649]: ColorFragmentOp2ATI (will be remapped) */
"iiiiiiiiii\0"
"glColorFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[7619]: IsShader (will be remapped) */
+ /* _mesa_function_pool[7683]: IsShader (will be remapped) */
"i\0"
"glIsShader\0"
"\0"
- /* _mesa_function_pool[7633]: EdgeFlag (offset 41) */
+ /* _mesa_function_pool[7697]: EdgeFlag (offset 41) */
"i\0"
"glEdgeFlag\0"
"\0"
- /* _mesa_function_pool[7647]: TexCoord2iv (offset 107) */
+ /* _mesa_function_pool[7711]: TexCoord2iv (offset 107) */
"p\0"
"glTexCoord2iv\0"
"\0"
- /* _mesa_function_pool[7664]: TexImage2DMultisample (will be remapped) */
+ /* _mesa_function_pool[7728]: TexImage2DMultisample (will be remapped) */
"iiiiii\0"
"glTexImage2DMultisample\0"
"\0"
- /* _mesa_function_pool[7696]: Rotated (offset 299) */
+ /* _mesa_function_pool[7760]: Rotated (offset 299) */
"dddd\0"
"glRotated\0"
"\0"
- /* _mesa_function_pool[7712]: VertexAttrib2sNV (will be remapped) */
+ /* _mesa_function_pool[7776]: ColorFragmentOp1ATI (will be remapped) */
+ "iiiiiii\0"
+ "glColorFragmentOp1ATI\0"
+ "\0"
+ /* _mesa_function_pool[7807]: VertexAttrib2sNV (will be remapped) */
"iii\0"
"glVertexAttrib2sNV\0"
"\0"
- /* _mesa_function_pool[7736]: ReadPixels (offset 256) */
+ /* _mesa_function_pool[7831]: ReadPixels (offset 256) */
"iiiiiip\0"
"glReadPixels\0"
"\0"
- /* _mesa_function_pool[7758]: EdgeFlagv (offset 42) */
+ /* _mesa_function_pool[7853]: EdgeFlagv (offset 42) */
"p\0"
"glEdgeFlagv\0"
"\0"
- /* _mesa_function_pool[7773]: NormalPointerListIBM (dynamic) */
+ /* _mesa_function_pool[7868]: NormalPointerListIBM (dynamic) */
"iipi\0"
"glNormalPointerListIBM\0"
"\0"
- /* _mesa_function_pool[7802]: CompressedTexSubImage1D (will be remapped) */
+ /* _mesa_function_pool[7897]: CompressedTexSubImage1D (will be remapped) */
"iiiiiip\0"
"glCompressedTexSubImage1D\0"
"glCompressedTexSubImage1DARB\0"
"\0"
- /* _mesa_function_pool[7866]: QueryCounter (will be remapped) */
+ /* _mesa_function_pool[7961]: QueryCounter (will be remapped) */
"ii\0"
"glQueryCounter\0"
"\0"
- /* _mesa_function_pool[7885]: Color4iv (offset 32) */
+ /* _mesa_function_pool[7980]: Color4iv (offset 32) */
"p\0"
"glColor4iv\0"
"\0"
- /* _mesa_function_pool[7899]: DebugMessageCallback (will be remapped) */
+ /* _mesa_function_pool[7994]: DebugMessageCallback (will be remapped) */
"pp\0"
"glDebugMessageCallback\0"
"\0"
- /* _mesa_function_pool[7926]: TexParameterf (offset 178) */
+ /* _mesa_function_pool[8021]: TexParameterf (offset 178) */
"iif\0"
"glTexParameterf\0"
"\0"
- /* _mesa_function_pool[7947]: TexParameteri (offset 180) */
+ /* _mesa_function_pool[8042]: TexParameteri (offset 180) */
"iii\0"
"glTexParameteri\0"
"\0"
- /* _mesa_function_pool[7968]: NormalPointerEXT (will be remapped) */
+ /* _mesa_function_pool[8063]: NormalPointerEXT (will be remapped) */
"iiip\0"
"glNormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[7993]: GetUniformiv (will be remapped) */
+ /* _mesa_function_pool[8088]: GetUniformiv (will be remapped) */
"iip\0"
"glGetUniformiv\0"
"glGetUniformivARB\0"
"\0"
- /* _mesa_function_pool[8031]: DrawPixels (offset 257) */
+ /* _mesa_function_pool[8126]: DrawPixels (offset 257) */
"iiiip\0"
"glDrawPixels\0"
"\0"
- /* _mesa_function_pool[8051]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[8146]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */
"iffffffff\0"
"glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[8111]: DepthRangex (will be remapped) */
+ /* _mesa_function_pool[8206]: DepthRangex (will be remapped) */
"ii\0"
"glDepthRangexOES\0"
"glDepthRangex\0"
"\0"
- /* _mesa_function_pool[8146]: ImageTransformParameterivHP (dynamic) */
+ /* _mesa_function_pool[8241]: ImageTransformParameterivHP (dynamic) */
"iip\0"
"glImageTransformParameterivHP\0"
"\0"
- /* _mesa_function_pool[8181]: ClearBufferSubData (will be remapped) */
+ /* _mesa_function_pool[8276]: ClearBufferSubData (will be remapped) */
"iiiiiip\0"
"glClearBufferSubData\0"
"\0"
- /* _mesa_function_pool[8211]: GetnUniformuivARB (will be remapped) */
+ /* _mesa_function_pool[8306]: GetnUniformuivARB (will be remapped) */
"iiip\0"
"glGetnUniformuivARB\0"
"\0"
- /* _mesa_function_pool[8237]: DrawTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[8332]: DrawTransformFeedback (will be remapped) */
"ii\0"
"glDrawTransformFeedback\0"
"\0"
- /* _mesa_function_pool[8265]: DrawElementsInstancedARB (will be remapped) */
+ /* _mesa_function_pool[8360]: DrawElementsInstancedARB (will be remapped) */
"iiipi\0"
"glDrawElementsInstancedARB\0"
"glDrawElementsInstancedEXT\0"
"glDrawElementsInstanced\0"
"\0"
- /* _mesa_function_pool[8350]: MultiTexCoord3sv (offset 399) */
+ /* _mesa_function_pool[8445]: MultiTexCoord3sv (offset 399) */
"ip\0"
"glMultiTexCoord3sv\0"
"glMultiTexCoord3svARB\0"
"\0"
- /* _mesa_function_pool[8395]: VertexAttribBinding (will be remapped) */
+ /* _mesa_function_pool[8490]: VertexAttribBinding (will be remapped) */
"ii\0"
"glVertexAttribBinding\0"
"\0"
- /* _mesa_function_pool[8421]: WeightivARB (dynamic) */
+ /* _mesa_function_pool[8516]: WeightivARB (dynamic) */
"ip\0"
"glWeightivARB\0"
"\0"
- /* _mesa_function_pool[8439]: GlobalAlphaFactordSUN (dynamic) */
+ /* _mesa_function_pool[8534]: GlobalAlphaFactordSUN (dynamic) */
"d\0"
"glGlobalAlphaFactordSUN\0"
"\0"
- /* _mesa_function_pool[8466]: GetFinalCombinerInputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[8561]: GetFinalCombinerInputParameterfvNV (dynamic) */
"iip\0"
"glGetFinalCombinerInputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[8508]: GenLists (offset 5) */
+ /* _mesa_function_pool[8603]: GenLists (offset 5) */
"i\0"
"glGenLists\0"
"\0"
- /* _mesa_function_pool[8522]: DepthRangef (will be remapped) */
+ /* _mesa_function_pool[8617]: DepthRangef (will be remapped) */
"ff\0"
"glDepthRangef\0"
"glDepthRangefOES\0"
"\0"
- /* _mesa_function_pool[8557]: Color3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[8652]: Color3fVertex3fvSUN (dynamic) */
"pp\0"
"glColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[8583]: SampleCoveragex (will be remapped) */
+ /* _mesa_function_pool[8678]: SampleCoveragex (will be remapped) */
"ii\0"
"glSampleCoveragexOES\0"
"glSampleCoveragex\0"
"\0"
- /* _mesa_function_pool[8626]: GetMapAttribParameterivNV (dynamic) */
+ /* _mesa_function_pool[8721]: GetMapAttribParameterivNV (dynamic) */
"iiip\0"
"glGetMapAttribParameterivNV\0"
"\0"
- /* _mesa_function_pool[8660]: GetCombinerInputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[8755]: GetCombinerInputParameterfvNV (dynamic) */
"iiiip\0"
"glGetCombinerInputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[8699]: GetSharpenTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[8794]: GetSharpenTexFuncSGIS (dynamic) */
"ip\0"
"glGetSharpenTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[8727]: PixelTransformParameterfvEXT (dynamic) */
+ /* _mesa_function_pool[8822]: PixelTransformParameterfvEXT (dynamic) */
"iip\0"
"glPixelTransformParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[8763]: MapGrid2d (offset 226) */
+ /* _mesa_function_pool[8858]: MapGrid2d (offset 226) */
"iddidd\0"
"glMapGrid2d\0"
"\0"
- /* _mesa_function_pool[8783]: MapGrid2f (offset 227) */
+ /* _mesa_function_pool[8878]: MapGrid2f (offset 227) */
"iffiff\0"
"glMapGrid2f\0"
"\0"
- /* _mesa_function_pool[8803]: SampleMapATI (will be remapped) */
+ /* _mesa_function_pool[8898]: SampleMapATI (will be remapped) */
"iii\0"
"glSampleMapATI\0"
"\0"
- /* _mesa_function_pool[8823]: ValidateProgram (will be remapped) */
+ /* _mesa_function_pool[8918]: ValidateProgram (will be remapped) */
"i\0"
"glValidateProgram\0"
"glValidateProgramARB\0"
"\0"
- /* _mesa_function_pool[8865]: VertexPointerEXT (will be remapped) */
+ /* _mesa_function_pool[8960]: VertexPointerEXT (will be remapped) */
"iiiip\0"
"glVertexPointerEXT\0"
"\0"
- /* _mesa_function_pool[8891]: GetTexFilterFuncSGIS (dynamic) */
+ /* _mesa_function_pool[8986]: GetTexFilterFuncSGIS (dynamic) */
"iip\0"
"glGetTexFilterFuncSGIS\0"
"\0"
- /* _mesa_function_pool[8919]: VertexAttribI4sv (will be remapped) */
+ /* _mesa_function_pool[9014]: VertexAttribI4sv (will be remapped) */
"ip\0"
"glVertexAttribI4svEXT\0"
"glVertexAttribI4sv\0"
"\0"
- /* _mesa_function_pool[8964]: Scissor (offset 176) */
+ /* _mesa_function_pool[9059]: Scissor (offset 176) */
"iiii\0"
"glScissor\0"
"\0"
- /* _mesa_function_pool[8980]: Fogf (offset 153) */
+ /* _mesa_function_pool[9075]: Fogf (offset 153) */
"if\0"
"glFogf\0"
"\0"
- /* _mesa_function_pool[8991]: ReplacementCodeubvSUN (dynamic) */
+ /* _mesa_function_pool[9086]: ReplacementCodeubvSUN (dynamic) */
"p\0"
"glReplacementCodeubvSUN\0"
"\0"
- /* _mesa_function_pool[9018]: TexSubImage1D (offset 332) */
+ /* _mesa_function_pool[9113]: TexSubImage1D (offset 332) */
"iiiiiip\0"
"glTexSubImage1D\0"
"glTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[9062]: BeginTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[9157]: BeginTransformFeedback (will be remapped) */
"i\0"
"glBeginTransformFeedback\0"
"glBeginTransformFeedbackEXT\0"
"\0"
- /* _mesa_function_pool[9118]: FenceSync (will be remapped) */
+ /* _mesa_function_pool[9213]: FenceSync (will be remapped) */
"ii\0"
"glFenceSync\0"
"\0"
- /* _mesa_function_pool[9134]: Color4usv (offset 40) */
+ /* _mesa_function_pool[9229]: Color4usv (offset 40) */
"p\0"
"glColor4usv\0"
"\0"
- /* _mesa_function_pool[9149]: GetnUniformfvARB (will be remapped) */
+ /* _mesa_function_pool[9244]: GetnUniformfvARB (will be remapped) */
"iiip\0"
"glGetnUniformfvARB\0"
"\0"
- /* _mesa_function_pool[9174]: Fogi (offset 155) */
+ /* _mesa_function_pool[9269]: Fogi (offset 155) */
"ii\0"
"glFogi\0"
"\0"
- /* _mesa_function_pool[9185]: DepthRange (offset 288) */
+ /* _mesa_function_pool[9280]: DepthRange (offset 288) */
"dd\0"
"glDepthRange\0"
"\0"
- /* _mesa_function_pool[9202]: RasterPos3iv (offset 75) */
+ /* _mesa_function_pool[9297]: RasterPos3iv (offset 75) */
"p\0"
"glRasterPos3iv\0"
"\0"
- /* _mesa_function_pool[9220]: ColorMaski (will be remapped) */
+ /* _mesa_function_pool[9315]: ColorMaski (will be remapped) */
"iiiii\0"
"glColorMaskIndexedEXT\0"
"glColorMaski\0"
"\0"
- /* _mesa_function_pool[9262]: GetActiveAttrib (will be remapped) */
+ /* _mesa_function_pool[9357]: GetActiveAttrib (will be remapped) */
"iiipppp\0"
"glGetActiveAttrib\0"
"glGetActiveAttribARB\0"
"\0"
- /* _mesa_function_pool[9310]: TexCoord2i (offset 106) */
+ /* _mesa_function_pool[9405]: TexCoord2i (offset 106) */
"ii\0"
"glTexCoord2i\0"
"\0"
- /* _mesa_function_pool[9327]: PixelMapfv (offset 251) */
+ /* _mesa_function_pool[9422]: PixelMapfv (offset 251) */
"iip\0"
"glPixelMapfv\0"
"\0"
- /* _mesa_function_pool[9345]: Color4ui (offset 37) */
+ /* _mesa_function_pool[9440]: Color4ui (offset 37) */
"iiii\0"
"glColor4ui\0"
"\0"
- /* _mesa_function_pool[9362]: RasterPos3s (offset 76) */
+ /* _mesa_function_pool[9457]: RasterPos3s (offset 76) */
"iii\0"
"glRasterPos3s\0"
"\0"
- /* _mesa_function_pool[9381]: Color3usv (offset 24) */
+ /* _mesa_function_pool[9476]: Color3usv (offset 24) */
"p\0"
"glColor3usv\0"
"\0"
- /* _mesa_function_pool[9396]: MultiTexCoord2iv (offset 389) */
+ /* _mesa_function_pool[9491]: MultiTexCoord2iv (offset 389) */
"ip\0"
"glMultiTexCoord2iv\0"
"glMultiTexCoord2ivARB\0"
"\0"
- /* _mesa_function_pool[9441]: TexCoord2f (offset 104) */
+ /* _mesa_function_pool[9536]: TexCoord2f (offset 104) */
"ff\0"
"glTexCoord2f\0"
"\0"
- /* _mesa_function_pool[9458]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[9553]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */
"ifffff\0"
"glReplacementCodeuiTexCoord2fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[9507]: TexCoord2d (offset 102) */
+ /* _mesa_function_pool[9602]: TexCoord2d (offset 102) */
"dd\0"
"glTexCoord2d\0"
"\0"
- /* _mesa_function_pool[9524]: RasterPos3d (offset 70) */
+ /* _mesa_function_pool[9619]: RasterPos3d (offset 70) */
"ddd\0"
"glRasterPos3d\0"
"\0"
- /* _mesa_function_pool[9543]: RasterPos3f (offset 72) */
+ /* _mesa_function_pool[9638]: RasterPos3f (offset 72) */
"fff\0"
"glRasterPos3f\0"
"\0"
- /* _mesa_function_pool[9562]: AreTexturesResident (offset 322) */
+ /* _mesa_function_pool[9657]: AreTexturesResident (offset 322) */
"ipp\0"
"glAreTexturesResident\0"
"glAreTexturesResidentEXT\0"
"\0"
- /* _mesa_function_pool[9614]: DrawElementsInstancedBaseVertexBaseInstance (will be remapped) */
+ /* _mesa_function_pool[9709]: DrawElementsInstancedBaseVertexBaseInstance (will be remapped) */
"iiipiii\0"
"glDrawElementsInstancedBaseVertexBaseInstance\0"
"\0"
- /* _mesa_function_pool[9669]: TexCoord2s (offset 108) */
+ /* _mesa_function_pool[9764]: TexCoord2s (offset 108) */
"ii\0"
"glTexCoord2s\0"
"\0"
- /* _mesa_function_pool[9686]: StencilOpSeparate (will be remapped) */
+ /* _mesa_function_pool[9781]: StencilOpSeparate (will be remapped) */
"iiii\0"
"glStencilOpSeparate\0"
"glStencilOpSeparateATI\0"
"\0"
- /* _mesa_function_pool[9735]: ColorTableParameteriv (offset 341) */
+ /* _mesa_function_pool[9830]: ColorTableParameteriv (offset 341) */
"iip\0"
"glColorTableParameteriv\0"
"glColorTableParameterivSGI\0"
"\0"
- /* _mesa_function_pool[9791]: VertexAttribP2ui (will be remapped) */
+ /* _mesa_function_pool[9886]: VertexAttribP2ui (will be remapped) */
"iiii\0"
"glVertexAttribP2ui\0"
"\0"
- /* _mesa_function_pool[9816]: GenSamplers (will be remapped) */
+ /* _mesa_function_pool[9911]: GenSamplers (will be remapped) */
"ip\0"
"glGenSamplers\0"
"\0"
- /* _mesa_function_pool[9834]: Color4us (offset 39) */
+ /* _mesa_function_pool[9929]: Color4us (offset 39) */
"iiii\0"
"glColor4us\0"
"\0"
- /* _mesa_function_pool[9851]: VDPAUFiniNV (will be remapped) */
+ /* _mesa_function_pool[9946]: VDPAUFiniNV (will be remapped) */
"\0"
"glVDPAUFiniNV\0"
"\0"
- /* _mesa_function_pool[9867]: Color3bv (offset 10) */
+ /* _mesa_function_pool[9962]: Color3bv (offset 10) */
"p\0"
"glColor3bv\0"
"\0"
- /* _mesa_function_pool[9881]: GetnCompressedTexImageARB (will be remapped) */
+ /* _mesa_function_pool[9976]: GetnCompressedTexImageARB (will be remapped) */
"iiip\0"
"glGetnCompressedTexImageARB\0"
"\0"
- /* _mesa_function_pool[9915]: DrawTransformFeedbackStreamInstanced (will be remapped) */
+ /* _mesa_function_pool[10010]: DrawTransformFeedbackStreamInstanced (will be remapped) */
"iiii\0"
"glDrawTransformFeedbackStreamInstanced\0"
"\0"
- /* _mesa_function_pool[9960]: VertexAttrib2fvARB (will be remapped) */
+ /* _mesa_function_pool[10055]: VertexAttrib2fvARB (will be remapped) */
"ip\0"
"glVertexAttrib2fv\0"
"glVertexAttrib2fvARB\0"
"\0"
- /* _mesa_function_pool[10003]: VertexPointerListIBM (dynamic) */
+ /* _mesa_function_pool[10098]: VertexPointerListIBM (dynamic) */
"iiipi\0"
"glVertexPointerListIBM\0"
"\0"
- /* _mesa_function_pool[10033]: GetProgramLocalParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[10128]: GetProgramLocalParameterfvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterfvARB\0"
"\0"
- /* _mesa_function_pool[10070]: FragmentMaterialfSGIX (dynamic) */
+ /* _mesa_function_pool[10165]: FragmentMaterialfSGIX (dynamic) */
"iif\0"
"glFragmentMaterialfSGIX\0"
"\0"
- /* _mesa_function_pool[10099]: BindSampler (will be remapped) */
+ /* _mesa_function_pool[10194]: BindSampler (will be remapped) */
"ii\0"
"glBindSampler\0"
"\0"
- /* _mesa_function_pool[10117]: GetUniformuiv (will be remapped) */
+ /* _mesa_function_pool[10212]: GetUniformuiv (will be remapped) */
"iip\0"
"glGetUniformuivEXT\0"
"glGetUniformuiv\0"
"\0"
- /* _mesa_function_pool[10157]: BindBufferOffsetEXT (will be remapped) */
+ /* _mesa_function_pool[10252]: BindBufferOffsetEXT (will be remapped) */
"iiii\0"
"glBindBufferOffsetEXT\0"
"\0"
- /* _mesa_function_pool[10185]: IsFenceNV (dynamic) */
+ /* _mesa_function_pool[10280]: IsFenceNV (dynamic) */
"i\0"
"glIsFenceNV\0"
"\0"
- /* _mesa_function_pool[10200]: ColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[10295]: ColorPointerListIBM (dynamic) */
"iiipi\0"
"glColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[10229]: AttachObjectARB (will be remapped) */
+ /* _mesa_function_pool[10324]: AttachObjectARB (will be remapped) */
"ii\0"
"glAttachObjectARB\0"
"\0"
- /* _mesa_function_pool[10251]: GetFragmentLightivSGIX (dynamic) */
+ /* _mesa_function_pool[10346]: GetFragmentLightivSGIX (dynamic) */
"iip\0"
"glGetFragmentLightivSGIX\0"
"\0"
- /* _mesa_function_pool[10281]: MultiTexCoord2fARB (offset 386) */
+ /* _mesa_function_pool[10376]: MultiTexCoord2fARB (offset 386) */
"iff\0"
"glMultiTexCoord2f\0"
"glMultiTexCoord2fARB\0"
"\0"
- /* _mesa_function_pool[10325]: ColorTable (offset 339) */
+ /* _mesa_function_pool[10420]: ColorTable (offset 339) */
"iiiiip\0"
"glColorTable\0"
"glColorTableSGI\0"
"glColorTableEXT\0"
"\0"
- /* _mesa_function_pool[10378]: IndexPointer (offset 314) */
+ /* _mesa_function_pool[10473]: IndexPointer (offset 314) */
"iip\0"
"glIndexPointer\0"
"\0"
- /* _mesa_function_pool[10398]: Accum (offset 213) */
+ /* _mesa_function_pool[10493]: Accum (offset 213) */
"if\0"
"glAccum\0"
"\0"
- /* _mesa_function_pool[10410]: GetTexImage (offset 281) */
+ /* _mesa_function_pool[10505]: GetTexImage (offset 281) */
"iiiip\0"
"glGetTexImage\0"
"\0"
- /* _mesa_function_pool[10431]: MapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[10526]: MapControlPointsNV (dynamic) */
"iiiiiiiip\0"
"glMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[10463]: ConvolutionFilter2D (offset 349) */
+ /* _mesa_function_pool[10558]: ConvolutionFilter2D (offset 349) */
"iiiiiip\0"
"glConvolutionFilter2D\0"
"glConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[10519]: MultMatrixx (will be remapped) */
+ /* _mesa_function_pool[10614]: MultMatrixx (will be remapped) */
"p\0"
"glMultMatrixxOES\0"
"glMultMatrixx\0"
"\0"
- /* _mesa_function_pool[10553]: TexParameterIiv (will be remapped) */
+ /* _mesa_function_pool[10648]: TexParameterIiv (will be remapped) */
"iip\0"
"glTexParameterIivEXT\0"
"glTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[10597]: Finish (offset 216) */
+ /* _mesa_function_pool[10692]: Finish (offset 216) */
"\0"
"glFinish\0"
"\0"
- /* _mesa_function_pool[10608]: MapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[10703]: MapParameterfvNV (dynamic) */
"iip\0"
"glMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[10632]: ClearStencil (offset 207) */
+ /* _mesa_function_pool[10727]: ClearStencil (offset 207) */
"i\0"
"glClearStencil\0"
"\0"
- /* _mesa_function_pool[10650]: Color4x (will be remapped) */
+ /* _mesa_function_pool[10745]: Color4x (will be remapped) */
"iiii\0"
"glColor4xOES\0"
"glColor4x\0"
"\0"
- /* _mesa_function_pool[10679]: HintPGI (dynamic) */
+ /* _mesa_function_pool[10774]: HintPGI (dynamic) */
"ii\0"
"glHintPGI\0"
"\0"
- /* _mesa_function_pool[10693]: ConvolutionParameteriv (offset 353) */
+ /* _mesa_function_pool[10788]: ConvolutionParameteriv (offset 353) */
"iip\0"
"glConvolutionParameteriv\0"
"glConvolutionParameterivEXT\0"
"\0"
- /* _mesa_function_pool[10751]: Color4s (offset 33) */
+ /* _mesa_function_pool[10846]: Color4s (offset 33) */
"iiii\0"
"glColor4s\0"
"\0"
- /* _mesa_function_pool[10767]: InterleavedArrays (offset 317) */
+ /* _mesa_function_pool[10862]: InterleavedArrays (offset 317) */
"iip\0"
"glInterleavedArrays\0"
"\0"
- /* _mesa_function_pool[10792]: RasterPos2fv (offset 65) */
+ /* _mesa_function_pool[10887]: RasterPos2fv (offset 65) */
"p\0"
"glRasterPos2fv\0"
"\0"
- /* _mesa_function_pool[10810]: TexCoord1fv (offset 97) */
+ /* _mesa_function_pool[10905]: TexCoord1fv (offset 97) */
"p\0"
"glTexCoord1fv\0"
"\0"
- /* _mesa_function_pool[10827]: Vertex2d (offset 126) */
+ /* _mesa_function_pool[10922]: Vertex2d (offset 126) */
"dd\0"
"glVertex2d\0"
"\0"
- /* _mesa_function_pool[10842]: CullParameterdvEXT (dynamic) */
+ /* _mesa_function_pool[10937]: CullParameterdvEXT (dynamic) */
"ip\0"
"glCullParameterdvEXT\0"
"\0"
- /* _mesa_function_pool[10867]: ProgramNamedParameter4fNV (will be remapped) */
+ /* _mesa_function_pool[10962]: ProgramNamedParameter4fNV (will be remapped) */
"iipffff\0"
"glProgramNamedParameter4fNV\0"
"\0"
- /* _mesa_function_pool[10904]: Orthof (will be remapped) */
+ /* _mesa_function_pool[10999]: Orthof (will be remapped) */
"ffffff\0"
"glOrthofOES\0"
"glOrthof\0"
"\0"
- /* _mesa_function_pool[10933]: MultiTexCoord4dv (offset 401) */
+ /* _mesa_function_pool[11028]: MultiTexCoord4dv (offset 401) */
"ip\0"
"glMultiTexCoord4dv\0"
"glMultiTexCoord4dvARB\0"
"\0"
- /* _mesa_function_pool[10978]: ProgramEnvParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[11073]: ProgramEnvParameter4fvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4fvARB\0"
"glProgramParameter4fvNV\0"
"\0"
- /* _mesa_function_pool[11035]: Color4i (offset 31) */
+ /* _mesa_function_pool[11130]: Color4i (offset 31) */
"iiii\0"
"glColor4i\0"
"\0"
- /* _mesa_function_pool[11051]: Color4f (offset 29) */
+ /* _mesa_function_pool[11146]: Color4f (offset 29) */
"ffff\0"
"glColor4f\0"
"\0"
- /* _mesa_function_pool[11067]: RasterPos4fv (offset 81) */
+ /* _mesa_function_pool[11162]: RasterPos4fv (offset 81) */
"p\0"
"glRasterPos4fv\0"
"\0"
- /* _mesa_function_pool[11085]: Color4d (offset 27) */
+ /* _mesa_function_pool[11180]: Color4d (offset 27) */
"dddd\0"
"glColor4d\0"
"\0"
- /* _mesa_function_pool[11101]: ClearIndex (offset 205) */
+ /* _mesa_function_pool[11196]: ClearIndex (offset 205) */
"f\0"
"glClearIndex\0"
"\0"
- /* _mesa_function_pool[11117]: Color4b (offset 25) */
+ /* _mesa_function_pool[11212]: Color4b (offset 25) */
"iiii\0"
"glColor4b\0"
"\0"
- /* _mesa_function_pool[11133]: LoadMatrixd (offset 292) */
+ /* _mesa_function_pool[11228]: LoadMatrixd (offset 292) */
"p\0"
"glLoadMatrixd\0"
"\0"
- /* _mesa_function_pool[11150]: FragmentLightModeliSGIX (dynamic) */
+ /* _mesa_function_pool[11245]: FragmentLightModeliSGIX (dynamic) */
"ii\0"
"glFragmentLightModeliSGIX\0"
"\0"
- /* _mesa_function_pool[11180]: RasterPos2dv (offset 63) */
+ /* _mesa_function_pool[11275]: RasterPos2dv (offset 63) */
"p\0"
"glRasterPos2dv\0"
"\0"
- /* _mesa_function_pool[11198]: ConvolutionParameterfv (offset 351) */
+ /* _mesa_function_pool[11293]: ConvolutionParameterfv (offset 351) */
"iip\0"
"glConvolutionParameterfv\0"
"glConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[11256]: TbufferMask3DFX (dynamic) */
+ /* _mesa_function_pool[11351]: TbufferMask3DFX (dynamic) */
"i\0"
"glTbufferMask3DFX\0"
"\0"
- /* _mesa_function_pool[11277]: VDPAURegisterOutputSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[11372]: VDPAURegisterOutputSurfaceNV (will be remapped) */
"piip\0"
"glVDPAURegisterOutputSurfaceNV\0"
"\0"
- /* _mesa_function_pool[11314]: GetTexGendv (offset 278) */
+ /* _mesa_function_pool[11409]: GetTexGendv (offset 278) */
"iip\0"
"glGetTexGendv\0"
"\0"
- /* _mesa_function_pool[11333]: FragmentLightModelfSGIX (dynamic) */
+ /* _mesa_function_pool[11428]: FragmentLightModelfSGIX (dynamic) */
"if\0"
"glFragmentLightModelfSGIX\0"
"\0"
- /* _mesa_function_pool[11363]: LoadProgramNV (will be remapped) */
+ /* _mesa_function_pool[11458]: LoadProgramNV (will be remapped) */
"iiip\0"
"glLoadProgramNV\0"
"\0"
- /* _mesa_function_pool[11385]: EndList (offset 1) */
+ /* _mesa_function_pool[11480]: EndList (offset 1) */
"\0"
"glEndList\0"
"\0"
- /* _mesa_function_pool[11397]: VertexP4ui (will be remapped) */
+ /* _mesa_function_pool[11492]: VertexP4ui (will be remapped) */
"ii\0"
"glVertexP4ui\0"
"\0"
- /* _mesa_function_pool[11414]: MultiTexCoordP1ui (will be remapped) */
+ /* _mesa_function_pool[11509]: MultiTexCoordP1ui (will be remapped) */
"iii\0"
"glMultiTexCoordP1ui\0"
"\0"
- /* _mesa_function_pool[11439]: GetAttachedObjectsARB (will be remapped) */
+ /* _mesa_function_pool[11534]: GetAttachedObjectsARB (will be remapped) */
"iipp\0"
"glGetAttachedObjectsARB\0"
"\0"
- /* _mesa_function_pool[11469]: EvalCoord1fv (offset 231) */
+ /* _mesa_function_pool[11564]: EvalCoord1fv (offset 231) */
"p\0"
"glEvalCoord1fv\0"
"\0"
- /* _mesa_function_pool[11487]: DrawRangeElements (offset 338) */
+ /* _mesa_function_pool[11582]: DrawRangeElements (offset 338) */
"iiiiip\0"
"glDrawRangeElements\0"
"glDrawRangeElementsEXT\0"
"\0"
- /* _mesa_function_pool[11538]: EvalMesh2 (offset 238) */
+ /* _mesa_function_pool[11633]: EvalMesh2 (offset 238) */
"iiiii\0"
"glEvalMesh2\0"
"\0"
- /* _mesa_function_pool[11557]: TexCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[11652]: TexCoordPointerListIBM (dynamic) */
"iiipi\0"
"glTexCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[11589]: Vertex4fv (offset 145) */
+ /* _mesa_function_pool[11684]: Vertex4fv (offset 145) */
"p\0"
"glVertex4fv\0"
"\0"
- /* _mesa_function_pool[11604]: VertexAttribLFormat (will be remapped) */
+ /* _mesa_function_pool[11699]: VertexAttribLFormat (will be remapped) */
"iiii\0"
"glVertexAttribLFormat\0"
"\0"
- /* _mesa_function_pool[11632]: GenTransformFeedbacks (will be remapped) */
+ /* _mesa_function_pool[11727]: GenTransformFeedbacks (will be remapped) */
"ip\0"
"glGenTransformFeedbacks\0"
"\0"
- /* _mesa_function_pool[11660]: SpriteParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[11755]: SpriteParameterfvSGIX (dynamic) */
"ip\0"
"glSpriteParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[11688]: VertexAttribs3fvNV (will be remapped) */
+ /* _mesa_function_pool[11783]: VertexAttribs3fvNV (will be remapped) */
"iip\0"
"glVertexAttribs3fvNV\0"
"\0"
- /* _mesa_function_pool[11714]: GlobalAlphaFactoruiSUN (dynamic) */
+ /* _mesa_function_pool[11809]: GlobalAlphaFactoruiSUN (dynamic) */
"i\0"
"glGlobalAlphaFactoruiSUN\0"
"\0"
- /* _mesa_function_pool[11742]: GetHandleARB (will be remapped) */
+ /* _mesa_function_pool[11837]: GetHandleARB (will be remapped) */
"i\0"
"glGetHandleARB\0"
"\0"
- /* _mesa_function_pool[11760]: DebugMessageControlARB (will be remapped) */
+ /* _mesa_function_pool[11855]: DebugMessageControlARB (will be remapped) */
"iiiipi\0"
"glDebugMessageControlARB\0"
"\0"
- /* _mesa_function_pool[11793]: DrawTexfvOES (will be remapped) */
+ /* _mesa_function_pool[11888]: DrawTexfvOES (will be remapped) */
"p\0"
"glDrawTexfvOES\0"
"\0"
- /* _mesa_function_pool[11811]: BindFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[11906]: BindFragmentShaderATI (will be remapped) */
"i\0"
"glBindFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[11838]: BlendFunciARB (will be remapped) */
+ /* _mesa_function_pool[11933]: BlendFunciARB (will be remapped) */
"iii\0"
"glBlendFunciARB\0"
"glBlendFuncIndexedAMD\0"
"\0"
- /* _mesa_function_pool[11881]: GetProgramEnvParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[11976]: GetProgramEnvParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramEnvParameterdvARB\0"
"\0"
- /* _mesa_function_pool[11916]: GetnUniformivARB (will be remapped) */
+ /* _mesa_function_pool[12011]: GetnUniformivARB (will be remapped) */
"iiip\0"
"glGetnUniformivARB\0"
"\0"
- /* _mesa_function_pool[11941]: ClearColorIiEXT (will be remapped) */
+ /* _mesa_function_pool[12036]: ClearColorIiEXT (will be remapped) */
"iiii\0"
"glClearColorIiEXT\0"
"\0"
- /* _mesa_function_pool[11965]: BindFramebuffer (will be remapped) */
+ /* _mesa_function_pool[12060]: BindFramebuffer (will be remapped) */
"ii\0"
"glBindFramebuffer\0"
"glBindFramebufferOES\0"
"\0"
- /* _mesa_function_pool[12008]: CreateProgram (will be remapped) */
+ /* _mesa_function_pool[12103]: CreateProgram (will be remapped) */
"\0"
"glCreateProgram\0"
"\0"
- /* _mesa_function_pool[12026]: ReleaseShaderCompiler (will be remapped) */
+ /* _mesa_function_pool[12121]: ReleaseShaderCompiler (will be remapped) */
"\0"
"glReleaseShaderCompiler\0"
"\0"
- /* _mesa_function_pool[12052]: GetMinmax (offset 364) */
+ /* _mesa_function_pool[12147]: GetMinmax (offset 364) */
"iiiip\0"
"glGetMinmax\0"
"glGetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[12086]: BlendFuncSeparate (will be remapped) */
+ /* _mesa_function_pool[12181]: BlendFuncSeparate (will be remapped) */
"iiii\0"
"glBlendFuncSeparate\0"
"glBlendFuncSeparateEXT\0"
"glBlendFuncSeparateINGR\0"
"glBlendFuncSeparateOES\0"
"\0"
- /* _mesa_function_pool[12182]: StencilFuncSeparate (will be remapped) */
+ /* _mesa_function_pool[12277]: StencilFuncSeparate (will be remapped) */
"iiii\0"
"glStencilFuncSeparate\0"
"\0"
- /* _mesa_function_pool[12210]: ShaderSource (will be remapped) */
+ /* _mesa_function_pool[12305]: ShaderSource (will be remapped) */
"iipp\0"
"glShaderSource\0"
"glShaderSourceARB\0"
"\0"
- /* _mesa_function_pool[12249]: GetInteger64i_v (will be remapped) */
+ /* _mesa_function_pool[12344]: GetInteger64i_v (will be remapped) */
"iip\0"
"glGetInteger64i_v\0"
"\0"
- /* _mesa_function_pool[12272]: GetVertexAttribdvNV (will be remapped) */
+ /* _mesa_function_pool[12367]: GetVertexAttribdvNV (will be remapped) */
"iip\0"
"glGetVertexAttribdvNV\0"
"\0"
- /* _mesa_function_pool[12299]: DeleteTransformFeedbacks (will be remapped) */
+ /* _mesa_function_pool[12394]: DeleteTransformFeedbacks (will be remapped) */
"ip\0"
"glDeleteTransformFeedbacks\0"
"\0"
- /* _mesa_function_pool[12330]: Normal3fv (offset 57) */
+ /* _mesa_function_pool[12425]: Normal3fv (offset 57) */
"p\0"
"glNormal3fv\0"
"\0"
- /* _mesa_function_pool[12345]: TexGenxOES (will be remapped) */
+ /* _mesa_function_pool[12440]: TexGenxOES (will be remapped) */
"iii\0"
"glTexGenxOES\0"
"\0"
- /* _mesa_function_pool[12363]: GlobalAlphaFactorbSUN (dynamic) */
+ /* _mesa_function_pool[12458]: GlobalAlphaFactorbSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorbSUN\0"
"\0"
- /* _mesa_function_pool[12390]: Color3us (offset 23) */
+ /* _mesa_function_pool[12485]: Color3us (offset 23) */
"iii\0"
"glColor3us\0"
"\0"
- /* _mesa_function_pool[12406]: ImageTransformParameterfvHP (dynamic) */
+ /* _mesa_function_pool[12501]: ImageTransformParameterfvHP (dynamic) */
"iip\0"
"glImageTransformParameterfvHP\0"
"\0"
- /* _mesa_function_pool[12441]: NormalP3ui (will be remapped) */
+ /* _mesa_function_pool[12536]: NormalP3ui (will be remapped) */
"ii\0"
"glNormalP3ui\0"
"\0"
- /* _mesa_function_pool[12458]: End (offset 43) */
+ /* _mesa_function_pool[12553]: ScissorIndexed (will be remapped) */
+ "iiiii\0"
+ "glScissorIndexed\0"
+ "\0"
+ /* _mesa_function_pool[12577]: End (offset 43) */
"\0"
"glEnd\0"
"\0"
- /* _mesa_function_pool[12466]: VertexAttribs3svNV (will be remapped) */
+ /* _mesa_function_pool[12585]: VertexAttribs3svNV (will be remapped) */
"iip\0"
"glVertexAttribs3svNV\0"
"\0"
- /* _mesa_function_pool[12492]: VertexAttribFormat (will be remapped) */
+ /* _mesa_function_pool[12611]: VertexAttribFormat (will be remapped) */
"iiiii\0"
"glVertexAttribFormat\0"
"\0"
- /* _mesa_function_pool[12520]: MultiTexCoordP3uiv (will be remapped) */
+ /* _mesa_function_pool[12639]: MultiTexCoordP3uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP3uiv\0"
"\0"
- /* _mesa_function_pool[12546]: VertexAttribs2dvNV (will be remapped) */
+ /* _mesa_function_pool[12665]: VertexAttribs2dvNV (will be remapped) */
"iip\0"
"glVertexAttribs2dvNV\0"
"\0"
- /* _mesa_function_pool[12572]: VertexAttribI4ivEXT (will be remapped) */
+ /* _mesa_function_pool[12691]: VertexAttribI4ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI4ivEXT\0"
"glVertexAttribI4iv\0"
"\0"
- /* _mesa_function_pool[12617]: MultiTexCoord3fvARB (offset 395) */
+ /* _mesa_function_pool[12736]: MultiTexCoord3fvARB (offset 395) */
"ip\0"
"glMultiTexCoord3fv\0"
"glMultiTexCoord3fvARB\0"
"\0"
- /* _mesa_function_pool[12662]: Color3ub (offset 19) */
+ /* _mesa_function_pool[12781]: Color3ub (offset 19) */
"iii\0"
"glColor3ub\0"
"\0"
- /* _mesa_function_pool[12678]: GetProgramParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[12797]: GetProgramParameterfvNV (will be remapped) */
"iiip\0"
"glGetProgramParameterfvNV\0"
"\0"
- /* _mesa_function_pool[12710]: GetActiveUniformsiv (will be remapped) */
+ /* _mesa_function_pool[12829]: GetActiveUniformsiv (will be remapped) */
"iipip\0"
"glGetActiveUniformsiv\0"
"\0"
- /* _mesa_function_pool[12739]: BindBuffer (will be remapped) */
+ /* _mesa_function_pool[12858]: BindBuffer (will be remapped) */
"ii\0"
"glBindBuffer\0"
"glBindBufferARB\0"
"\0"
- /* _mesa_function_pool[12772]: GetInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[12891]: GetInstrumentsSGIX (dynamic) */
"\0"
"glGetInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[12795]: VertexAttrib2sv (will be remapped) */
+ /* _mesa_function_pool[12914]: VertexAttrib2sv (will be remapped) */
"ip\0"
"glVertexAttrib2sv\0"
"glVertexAttrib2svARB\0"
"\0"
- /* _mesa_function_pool[12838]: Color3ui (offset 21) */
+ /* _mesa_function_pool[12957]: Color3ui (offset 21) */
"iii\0"
"glColor3ui\0"
"\0"
- /* _mesa_function_pool[12854]: EvalMapsNV (dynamic) */
+ /* _mesa_function_pool[12973]: EvalMapsNV (dynamic) */
"ii\0"
"glEvalMapsNV\0"
"\0"
- /* _mesa_function_pool[12871]: DrawTexxvOES (will be remapped) */
+ /* _mesa_function_pool[12990]: DrawTexxvOES (will be remapped) */
"p\0"
"glDrawTexxvOES\0"
"\0"
- /* _mesa_function_pool[12889]: TexSubImage2D (offset 333) */
+ /* _mesa_function_pool[13008]: TexSubImage2D (offset 333) */
"iiiiiiiip\0"
"glTexSubImage2D\0"
"glTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[12935]: FragmentLightivSGIX (dynamic) */
+ /* _mesa_function_pool[13054]: FragmentLightivSGIX (dynamic) */
"iip\0"
"glFragmentLightivSGIX\0"
"\0"
- /* _mesa_function_pool[12962]: IndexPointerListIBM (dynamic) */
+ /* _mesa_function_pool[13081]: IndexPointerListIBM (dynamic) */
"iipi\0"
"glIndexPointerListIBM\0"
"\0"
- /* _mesa_function_pool[12990]: GetTexParameterPointervAPPLE (dynamic) */
+ /* _mesa_function_pool[13109]: GetTexParameterPointervAPPLE (dynamic) */
"iip\0"
"glGetTexParameterPointervAPPLE\0"
"\0"
- /* _mesa_function_pool[13026]: TexGenfv (offset 191) */
+ /* _mesa_function_pool[13145]: TexGenfv (offset 191) */
"iip\0"
"glTexGenfv\0"
"glTexGenfvOES\0"
"\0"
- /* _mesa_function_pool[13056]: VertexAttrib1dNV (will be remapped) */
+ /* _mesa_function_pool[13175]: VertexAttrib1dNV (will be remapped) */
"id\0"
"glVertexAttrib1dNV\0"
"\0"
- /* _mesa_function_pool[13079]: VertexAttrib4dvNV (will be remapped) */
+ /* _mesa_function_pool[13198]: VertexAttrib4dvNV (will be remapped) */
"ip\0"
"glVertexAttrib4dvNV\0"
"\0"
- /* _mesa_function_pool[13103]: GetVertexAttribiv (will be remapped) */
+ /* _mesa_function_pool[13222]: GetVertexAttribiv (will be remapped) */
"iip\0"
"glGetVertexAttribiv\0"
"glGetVertexAttribivARB\0"
"\0"
- /* _mesa_function_pool[13151]: QueryMatrixxOES (will be remapped) */
+ /* _mesa_function_pool[13270]: QueryMatrixxOES (will be remapped) */
"pp\0"
"glQueryMatrixxOES\0"
"\0"
- /* _mesa_function_pool[13173]: ShaderBinary (will be remapped) */
+ /* _mesa_function_pool[13292]: ShaderBinary (will be remapped) */
"ipipi\0"
"glShaderBinary\0"
"\0"
- /* _mesa_function_pool[13195]: TexCoordP2uiv (will be remapped) */
+ /* _mesa_function_pool[13314]: TexCoordP2uiv (will be remapped) */
"ip\0"
"glTexCoordP2uiv\0"
"\0"
- /* _mesa_function_pool[13215]: FragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[13334]: FragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[13245]: GetFragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[13364]: GetFragmentMaterialivSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[13278]: WindowPos4dMESA (will be remapped) */
+ /* _mesa_function_pool[13397]: WindowPos4dMESA (will be remapped) */
"dddd\0"
"glWindowPos4dMESA\0"
"\0"
- /* _mesa_function_pool[13302]: DrawBuffers (will be remapped) */
+ /* _mesa_function_pool[13421]: DrawBuffers (will be remapped) */
"ip\0"
"glDrawBuffers\0"
"glDrawBuffersARB\0"
"glDrawBuffersATI\0"
"glDrawBuffersNV\0"
"\0"
- /* _mesa_function_pool[13370]: Lightxv (will be remapped) */
+ /* _mesa_function_pool[13489]: Lightxv (will be remapped) */
"iip\0"
"glLightxvOES\0"
"glLightxv\0"
"\0"
- /* _mesa_function_pool[13398]: Uniform3fv (will be remapped) */
+ /* _mesa_function_pool[13517]: Uniform3fv (will be remapped) */
"iip\0"
"glUniform3fv\0"
"glUniform3fvARB\0"
"\0"
- /* _mesa_function_pool[13432]: BlendEquation (offset 337) */
+ /* _mesa_function_pool[13551]: BlendEquation (offset 337) */
"i\0"
"glBlendEquation\0"
"glBlendEquationEXT\0"
"glBlendEquationOES\0"
"\0"
- /* _mesa_function_pool[13489]: VertexAttrib3dNV (will be remapped) */
+ /* _mesa_function_pool[13608]: VertexAttrib3dNV (will be remapped) */
"iddd\0"
"glVertexAttrib3dNV\0"
"\0"
- /* _mesa_function_pool[13514]: Normal3x (will be remapped) */
+ /* _mesa_function_pool[13633]: Normal3x (will be remapped) */
"iii\0"
"glNormal3xOES\0"
"glNormal3x\0"
"\0"
- /* _mesa_function_pool[13544]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[13663]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
"ppppp\0"
"glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[13608]: VertexAttrib4fARB (will be remapped) */
+ /* _mesa_function_pool[13727]: VertexAttrib4fARB (will be remapped) */
"iffff\0"
"glVertexAttrib4f\0"
"glVertexAttrib4fARB\0"
"\0"
- /* _mesa_function_pool[13652]: GetPerfMonitorGroupStringAMD (will be remapped) */
+ /* _mesa_function_pool[13771]: GetPerfMonitorGroupStringAMD (will be remapped) */
"iipp\0"
"glGetPerfMonitorGroupStringAMD\0"
"\0"
- /* _mesa_function_pool[13689]: GetError (offset 261) */
+ /* _mesa_function_pool[13808]: GetError (offset 261) */
"\0"
"glGetError\0"
"\0"
- /* _mesa_function_pool[13702]: IndexFuncEXT (dynamic) */
+ /* _mesa_function_pool[13821]: IndexFuncEXT (dynamic) */
"if\0"
"glIndexFuncEXT\0"
"\0"
- /* _mesa_function_pool[13721]: TexCoord3dv (offset 111) */
+ /* _mesa_function_pool[13840]: TexCoord3dv (offset 111) */
"p\0"
"glTexCoord3dv\0"
"\0"
- /* _mesa_function_pool[13738]: Indexdv (offset 45) */
+ /* _mesa_function_pool[13857]: Indexdv (offset 45) */
"p\0"
"glIndexdv\0"
"\0"
- /* _mesa_function_pool[13751]: InvalidateTexSubImage (will be remapped) */
+ /* _mesa_function_pool[13870]: InvalidateTexSubImage (will be remapped) */
"iiiiiiii\0"
"glInvalidateTexSubImage\0"
"\0"
- /* _mesa_function_pool[13785]: Normal3s (offset 60) */
+ /* _mesa_function_pool[13904]: Normal3s (offset 60) */
"iii\0"
"glNormal3s\0"
"\0"
- /* _mesa_function_pool[13801]: GetObjectParameterivAPPLE (will be remapped) */
+ /* _mesa_function_pool[13920]: GetObjectParameterivAPPLE (will be remapped) */
"iiip\0"
"glGetObjectParameterivAPPLE\0"
"\0"
- /* _mesa_function_pool[13835]: PushName (offset 201) */
+ /* _mesa_function_pool[13954]: PushName (offset 201) */
"i\0"
"glPushName\0"
"\0"
- /* _mesa_function_pool[13849]: GetTexParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[13968]: GetTexParameterIuiv (will be remapped) */
"iip\0"
"glGetTexParameterIuivEXT\0"
"glGetTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[13901]: GetActiveUniformBlockName (will be remapped) */
+ /* _mesa_function_pool[14020]: GetActiveUniformBlockName (will be remapped) */
"iiipp\0"
"glGetActiveUniformBlockName\0"
"\0"
- /* _mesa_function_pool[13936]: CullParameterfvEXT (dynamic) */
+ /* _mesa_function_pool[14055]: CullParameterfvEXT (dynamic) */
"ip\0"
"glCullParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[13961]: Normal3i (offset 58) */
+ /* _mesa_function_pool[14080]: Normal3i (offset 58) */
"iii\0"
"glNormal3i\0"
"\0"
- /* _mesa_function_pool[13977]: ProgramNamedParameter4fvNV (will be remapped) */
+ /* _mesa_function_pool[14096]: ProgramNamedParameter4fvNV (will be remapped) */
"iipp\0"
"glProgramNamedParameter4fvNV\0"
"\0"
- /* _mesa_function_pool[14012]: VertexAttrib4fvARB (will be remapped) */
+ /* _mesa_function_pool[14131]: VertexAttrib4fvARB (will be remapped) */
"ip\0"
"glVertexAttrib4fv\0"
"glVertexAttrib4fvARB\0"
"\0"
- /* _mesa_function_pool[14055]: VertexAttrib1dv (will be remapped) */
+ /* _mesa_function_pool[14174]: VertexAttrib1dv (will be remapped) */
"ip\0"
"glVertexAttrib1dv\0"
"glVertexAttrib1dvARB\0"
"\0"
- /* _mesa_function_pool[14098]: PixelTexGenSGIX (dynamic) */
+ /* _mesa_function_pool[14217]: PixelTexGenSGIX (dynamic) */
"i\0"
"glPixelTexGenSGIX\0"
"\0"
- /* _mesa_function_pool[14119]: GetnPixelMapfvARB (will be remapped) */
+ /* _mesa_function_pool[14238]: GetnPixelMapfvARB (will be remapped) */
"iip\0"
"glGetnPixelMapfvARB\0"
"\0"
- /* _mesa_function_pool[14144]: ImageTransformParameteriHP (dynamic) */
+ /* _mesa_function_pool[14263]: ImageTransformParameteriHP (dynamic) */
"iii\0"
"glImageTransformParameteriHP\0"
"\0"
- /* _mesa_function_pool[14178]: Normal3b (offset 52) */
+ /* _mesa_function_pool[14297]: Normal3b (offset 52) */
"iii\0"
"glNormal3b\0"
"\0"
- /* _mesa_function_pool[14194]: WindowPos3dv (will be remapped) */
+ /* _mesa_function_pool[14313]: WindowPos3dv (will be remapped) */
"p\0"
"glWindowPos3dv\0"
"glWindowPos3dvARB\0"
"glWindowPos3dvMESA\0"
"\0"
- /* _mesa_function_pool[14249]: Normal3d (offset 54) */
+ /* _mesa_function_pool[14368]: Normal3d (offset 54) */
"ddd\0"
"glNormal3d\0"
"\0"
- /* _mesa_function_pool[14265]: PointParameterxv (will be remapped) */
+ /* _mesa_function_pool[14384]: PointParameterxv (will be remapped) */
"ip\0"
"glPointParameterxvOES\0"
"glPointParameterxv\0"
"\0"
- /* _mesa_function_pool[14310]: Normal3f (offset 56) */
+ /* _mesa_function_pool[14429]: Normal3f (offset 56) */
"fff\0"
"glNormal3f\0"
"\0"
- /* _mesa_function_pool[14326]: FogCoordPointer (will be remapped) */
+ /* _mesa_function_pool[14445]: FogCoordPointer (will be remapped) */
"iip\0"
"glFogCoordPointer\0"
"glFogCoordPointerEXT\0"
"\0"
- /* _mesa_function_pool[14370]: Indexi (offset 48) */
+ /* _mesa_function_pool[14489]: Indexi (offset 48) */
"i\0"
"glIndexi\0"
"\0"
- /* _mesa_function_pool[14382]: EGLImageTargetTexture2DOES (will be remapped) */
+ /* _mesa_function_pool[14501]: EGLImageTargetTexture2DOES (will be remapped) */
"ip\0"
"glEGLImageTargetTexture2DOES\0"
"\0"
- /* _mesa_function_pool[14415]: VertexAttribI2uiEXT (will be remapped) */
+ /* _mesa_function_pool[14534]: VertexAttribI2uiEXT (will be remapped) */
"iii\0"
"glVertexAttribI2uiEXT\0"
"glVertexAttribI2ui\0"
"\0"
- /* _mesa_function_pool[14461]: DeleteFencesNV (dynamic) */
+ /* _mesa_function_pool[14580]: DeleteFencesNV (dynamic) */
"ip\0"
"glDeleteFencesNV\0"
"\0"
- /* _mesa_function_pool[14482]: IsRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[14601]: IsRenderbuffer (will be remapped) */
"i\0"
"glIsRenderbuffer\0"
"glIsRenderbufferEXT\0"
"glIsRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[14542]: DepthMask (offset 211) */
+ /* _mesa_function_pool[14661]: DepthMask (offset 211) */
"i\0"
"glDepthMask\0"
"\0"
- /* _mesa_function_pool[14557]: SecondaryColor3us (will be remapped) */
+ /* _mesa_function_pool[14676]: SecondaryColor3us (will be remapped) */
"iii\0"
"glSecondaryColor3us\0"
"glSecondaryColor3usEXT\0"
"\0"
- /* _mesa_function_pool[14605]: Indexf (offset 46) */
+ /* _mesa_function_pool[14724]: Indexf (offset 46) */
"f\0"
"glIndexf\0"
"\0"
- /* _mesa_function_pool[14617]: GetImageTransformParameterivHP (dynamic) */
+ /* _mesa_function_pool[14736]: GetImageTransformParameterivHP (dynamic) */
"iip\0"
"glGetImageTransformParameterivHP\0"
"\0"
- /* _mesa_function_pool[14655]: Indexd (offset 44) */
+ /* _mesa_function_pool[14774]: Indexd (offset 44) */
"d\0"
"glIndexd\0"
"\0"
- /* _mesa_function_pool[14667]: GetMaterialiv (offset 270) */
+ /* _mesa_function_pool[14786]: GetMaterialiv (offset 270) */
"iip\0"
"glGetMaterialiv\0"
"\0"
- /* _mesa_function_pool[14688]: StencilOp (offset 244) */
+ /* _mesa_function_pool[14807]: StencilOp (offset 244) */
"iii\0"
"glStencilOp\0"
"\0"
- /* _mesa_function_pool[14705]: WindowPos4ivMESA (will be remapped) */
+ /* _mesa_function_pool[14824]: WindowPos4ivMESA (will be remapped) */
"p\0"
"glWindowPos4ivMESA\0"
"\0"
- /* _mesa_function_pool[14727]: FramebufferTextureLayer (will be remapped) */
+ /* _mesa_function_pool[14846]: FramebufferTextureLayer (will be remapped) */
"iiiii\0"
"glFramebufferTextureLayer\0"
"glFramebufferTextureLayerARB\0"
"glFramebufferTextureLayerEXT\0"
"\0"
- /* _mesa_function_pool[14818]: GetShaderInfoLog (will be remapped) */
+ /* _mesa_function_pool[14937]: GetShaderInfoLog (will be remapped) */
"iipp\0"
"glGetShaderInfoLog\0"
"\0"
- /* _mesa_function_pool[14843]: TexEnvfv (offset 185) */
+ /* _mesa_function_pool[14962]: TexEnvfv (offset 185) */
"iip\0"
"glTexEnvfv\0"
"\0"
- /* _mesa_function_pool[14859]: DrawTexfOES (will be remapped) */
+ /* _mesa_function_pool[14978]: DrawTexfOES (will be remapped) */
"fffff\0"
"glDrawTexfOES\0"
"\0"
- /* _mesa_function_pool[14880]: Indexs (offset 50) */
+ /* _mesa_function_pool[14999]: Indexs (offset 50) */
"i\0"
"glIndexs\0"
"\0"
- /* _mesa_function_pool[14892]: TexCoordP3ui (will be remapped) */
+ /* _mesa_function_pool[15011]: TexCoordP3ui (will be remapped) */
"ii\0"
"glTexCoordP3ui\0"
"\0"
- /* _mesa_function_pool[14911]: ResizeBuffersMESA (will be remapped) */
+ /* _mesa_function_pool[15030]: ResizeBuffersMESA (will be remapped) */
"\0"
"glResizeBuffersMESA\0"
"\0"
- /* _mesa_function_pool[14933]: MultiTexCoordP1uiv (will be remapped) */
+ /* _mesa_function_pool[15052]: MultiTexCoordP1uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP1uiv\0"
"\0"
- /* _mesa_function_pool[14959]: BlendFuncSeparateiARB (will be remapped) */
+ /* _mesa_function_pool[15078]: BlendFuncSeparateiARB (will be remapped) */
"iiiii\0"
"glBlendFuncSeparateiARB\0"
"glBlendFuncSeparateIndexedAMD\0"
"\0"
- /* _mesa_function_pool[15020]: PixelTexGenParameteriSGIS (dynamic) */
+ /* _mesa_function_pool[15139]: PixelTexGenParameteriSGIS (dynamic) */
"ii\0"
"glPixelTexGenParameteriSGIS\0"
"\0"
- /* _mesa_function_pool[15052]: MultiTexCoordP2uiv (will be remapped) */
+ /* _mesa_function_pool[15171]: MultiTexCoordP2uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP2uiv\0"
"\0"
- /* _mesa_function_pool[15078]: VertexPointervINTEL (dynamic) */
+ /* _mesa_function_pool[15197]: VertexPointervINTEL (dynamic) */
"iip\0"
"glVertexPointervINTEL\0"
"\0"
- /* _mesa_function_pool[15105]: Vertex2i (offset 130) */
+ /* _mesa_function_pool[15224]: Vertex2i (offset 130) */
"ii\0"
"glVertex2i\0"
"\0"
- /* _mesa_function_pool[15120]: GetFragDataIndex (will be remapped) */
+ /* _mesa_function_pool[15239]: GetFragDataIndex (will be remapped) */
"ip\0"
"glGetFragDataIndex\0"
"\0"
- /* _mesa_function_pool[15143]: LoadMatrixf (offset 291) */
+ /* _mesa_function_pool[15262]: LoadMatrixf (offset 291) */
"p\0"
"glLoadMatrixf\0"
"\0"
- /* _mesa_function_pool[15160]: Vertex2f (offset 128) */
+ /* _mesa_function_pool[15279]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */
+ "iffffff\0"
+ "glReplacementCodeuiColor3fVertex3fSUN\0"
+ "\0"
+ /* _mesa_function_pool[15326]: Vertex2f (offset 128) */
"ff\0"
"glVertex2f\0"
"\0"
- /* _mesa_function_pool[15175]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[15341]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glReplacementCodeuiColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[15228]: Color4bv (offset 26) */
+ /* _mesa_function_pool[15394]: Color4bv (offset 26) */
"p\0"
"glColor4bv\0"
"\0"
- /* _mesa_function_pool[15242]: VertexPointer (offset 321) */
+ /* _mesa_function_pool[15408]: VertexPointer (offset 321) */
"iiip\0"
"glVertexPointer\0"
"\0"
- /* _mesa_function_pool[15264]: VertexAttribP1ui (will be remapped) */
+ /* _mesa_function_pool[15430]: VertexAttribP1ui (will be remapped) */
"iiii\0"
"glVertexAttribP1ui\0"
"\0"
- /* _mesa_function_pool[15289]: StartInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[15455]: StartInstrumentsSGIX (dynamic) */
"\0"
"glStartInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[15314]: MultiDrawArraysIndirect (will be remapped) */
+ /* _mesa_function_pool[15480]: MultiDrawArraysIndirect (will be remapped) */
"ipii\0"
"glMultiDrawArraysIndirect\0"
"\0"
- /* _mesa_function_pool[15346]: GetCompressedTexImage (will be remapped) */
+ /* _mesa_function_pool[15512]: GetCompressedTexImage (will be remapped) */
"iip\0"
"glGetCompressedTexImage\0"
"glGetCompressedTexImageARB\0"
"\0"
- /* _mesa_function_pool[15402]: VertexAttrib2fvNV (will be remapped) */
+ /* _mesa_function_pool[15568]: VertexAttrib2fvNV (will be remapped) */
"ip\0"
"glVertexAttrib2fvNV\0"
"\0"
- /* _mesa_function_pool[15426]: ProgramLocalParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[15592]: ProgramLocalParameter4dvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4dvARB\0"
"\0"
- /* _mesa_function_pool[15461]: DeleteLists (offset 4) */
+ /* _mesa_function_pool[15627]: DeleteLists (offset 4) */
"ii\0"
"glDeleteLists\0"
"\0"
- /* _mesa_function_pool[15479]: LogicOp (offset 242) */
+ /* _mesa_function_pool[15645]: LogicOp (offset 242) */
"i\0"
"glLogicOp\0"
"\0"
- /* _mesa_function_pool[15492]: MatrixIndexuivARB (dynamic) */
+ /* _mesa_function_pool[15658]: MatrixIndexuivARB (dynamic) */
"ip\0"
"glMatrixIndexuivARB\0"
"\0"
- /* _mesa_function_pool[15516]: Vertex2s (offset 132) */
+ /* _mesa_function_pool[15682]: Vertex2s (offset 132) */
"ii\0"
"glVertex2s\0"
"\0"
- /* _mesa_function_pool[15531]: RenderbufferStorageMultisample (will be remapped) */
+ /* _mesa_function_pool[15697]: RenderbufferStorageMultisample (will be remapped) */
"iiiii\0"
"glRenderbufferStorageMultisample\0"
"glRenderbufferStorageMultisampleEXT\0"
"\0"
- /* _mesa_function_pool[15607]: TexCoord4fv (offset 121) */
+ /* _mesa_function_pool[15773]: TexCoord4fv (offset 121) */
"p\0"
"glTexCoord4fv\0"
"\0"
- /* _mesa_function_pool[15624]: ActiveTexture (offset 374) */
+ /* _mesa_function_pool[15790]: ActiveTexture (offset 374) */
"i\0"
"glActiveTexture\0"
"glActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[15662]: GlobalAlphaFactorfSUN (dynamic) */
+ /* _mesa_function_pool[15828]: GlobalAlphaFactorfSUN (dynamic) */
"f\0"
"glGlobalAlphaFactorfSUN\0"
"\0"
- /* _mesa_function_pool[15689]: VertexAttribP1uiv (will be remapped) */
+ /* _mesa_function_pool[15855]: VertexAttribP1uiv (will be remapped) */
"iiip\0"
"glVertexAttribP1uiv\0"
"\0"
- /* _mesa_function_pool[15715]: IsProgram (will be remapped) */
+ /* _mesa_function_pool[15881]: IsProgram (will be remapped) */
"i\0"
"glIsProgram\0"
"\0"
- /* _mesa_function_pool[15730]: SecondaryColor3bv (will be remapped) */
+ /* _mesa_function_pool[15896]: SecondaryColor3bv (will be remapped) */
"p\0"
"glSecondaryColor3bv\0"
"glSecondaryColor3bvEXT\0"
"\0"
- /* _mesa_function_pool[15776]: GlobalAlphaFactorusSUN (dynamic) */
+ /* _mesa_function_pool[15942]: GlobalAlphaFactorusSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorusSUN\0"
"\0"
- /* _mesa_function_pool[15804]: Uniform2uiv (will be remapped) */
+ /* _mesa_function_pool[15970]: Uniform2uiv (will be remapped) */
"iip\0"
"glUniform2uivEXT\0"
"glUniform2uiv\0"
"\0"
- /* _mesa_function_pool[15840]: ColorP4uiv (will be remapped) */
+ /* _mesa_function_pool[16006]: ColorP4uiv (will be remapped) */
"ip\0"
"glColorP4uiv\0"
"\0"
- /* _mesa_function_pool[15857]: TextureRangeAPPLE (dynamic) */
+ /* _mesa_function_pool[16023]: TextureRangeAPPLE (dynamic) */
"iip\0"
"glTextureRangeAPPLE\0"
"\0"
- /* _mesa_function_pool[15882]: ClearBufferuiv (will be remapped) */
+ /* _mesa_function_pool[16048]: ClearBufferuiv (will be remapped) */
"iip\0"
"glClearBufferuiv\0"
"\0"
- /* _mesa_function_pool[15904]: VertexAttrib1dvNV (will be remapped) */
+ /* _mesa_function_pool[16070]: VertexAttrib1dvNV (will be remapped) */
"ip\0"
"glVertexAttrib1dvNV\0"
"\0"
- /* _mesa_function_pool[15928]: Uniform1ui (will be remapped) */
+ /* _mesa_function_pool[16094]: Uniform1ui (will be remapped) */
"ii\0"
"glUniform1uiEXT\0"
"glUniform1ui\0"
"\0"
- /* _mesa_function_pool[15961]: GenTextures (offset 328) */
+ /* _mesa_function_pool[16127]: GenTextures (offset 328) */
"ip\0"
"glGenTextures\0"
"glGenTexturesEXT\0"
"\0"
- /* _mesa_function_pool[15996]: MultiTexCoordP4uiv (will be remapped) */
+ /* _mesa_function_pool[16162]: MultiTexCoordP4uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP4uiv\0"
"\0"
- /* _mesa_function_pool[16022]: GetCombinerOutputParameterivNV (dynamic) */
+ /* _mesa_function_pool[16188]: GetCombinerOutputParameterivNV (dynamic) */
"iiip\0"
"glGetCombinerOutputParameterivNV\0"
"\0"
- /* _mesa_function_pool[16061]: PixelTexGenParameterivSGIS (dynamic) */
+ /* _mesa_function_pool[16227]: PixelTexGenParameterivSGIS (dynamic) */
"ip\0"
"glPixelTexGenParameterivSGIS\0"
"\0"
- /* _mesa_function_pool[16094]: TextureNormalEXT (dynamic) */
+ /* _mesa_function_pool[16260]: TextureNormalEXT (dynamic) */
"i\0"
"glTextureNormalEXT\0"
"\0"
- /* _mesa_function_pool[16116]: WindowPos3d (will be remapped) */
+ /* _mesa_function_pool[16282]: WindowPos3d (will be remapped) */
"ddd\0"
"glWindowPos3d\0"
"glWindowPos3dARB\0"
"glWindowPos3dMESA\0"
"\0"
- /* _mesa_function_pool[16170]: Enablei (will be remapped) */
+ /* _mesa_function_pool[16336]: Enablei (will be remapped) */
"ii\0"
"glEnableIndexedEXT\0"
"glEnablei\0"
"\0"
- /* _mesa_function_pool[16203]: WindowPos3f (will be remapped) */
+ /* _mesa_function_pool[16369]: WindowPos3f (will be remapped) */
"fff\0"
"glWindowPos3f\0"
"glWindowPos3fARB\0"
"glWindowPos3fMESA\0"
"\0"
- /* _mesa_function_pool[16257]: SecondaryColor3ub (will be remapped) */
+ /* _mesa_function_pool[16423]: SecondaryColor3ub (will be remapped) */
"iii\0"
"glSecondaryColor3ub\0"
"glSecondaryColor3ubEXT\0"
"\0"
- /* _mesa_function_pool[16305]: FinalCombinerInputNV (dynamic) */
+ /* _mesa_function_pool[16471]: FinalCombinerInputNV (dynamic) */
"iiii\0"
"glFinalCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[16334]: GenProgramsARB (will be remapped) */
+ /* _mesa_function_pool[16500]: GenProgramsARB (will be remapped) */
"ip\0"
"glGenProgramsARB\0"
"glGenProgramsNV\0"
"\0"
- /* _mesa_function_pool[16371]: MultiTexCoordP3ui (will be remapped) */
+ /* _mesa_function_pool[16537]: MultiTexCoordP3ui (will be remapped) */
"iii\0"
"glMultiTexCoordP3ui\0"
"\0"
- /* _mesa_function_pool[16396]: RasterPos2sv (offset 69) */
+ /* _mesa_function_pool[16562]: RasterPos2sv (offset 69) */
"p\0"
"glRasterPos2sv\0"
"\0"
- /* _mesa_function_pool[16414]: Color4ubv (offset 36) */
+ /* _mesa_function_pool[16580]: Color4ubv (offset 36) */
"p\0"
"glColor4ubv\0"
"\0"
- /* _mesa_function_pool[16429]: DrawBuffer (offset 202) */
+ /* _mesa_function_pool[16595]: DrawBuffer (offset 202) */
"i\0"
"glDrawBuffer\0"
"\0"
- /* _mesa_function_pool[16445]: TexCoord2fv (offset 105) */
+ /* _mesa_function_pool[16611]: TexCoord2fv (offset 105) */
"p\0"
"glTexCoord2fv\0"
"\0"
- /* _mesa_function_pool[16462]: BeginFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[16628]: BeginFragmentShaderATI (will be remapped) */
"\0"
"glBeginFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[16489]: WindowPos4fMESA (will be remapped) */
+ /* _mesa_function_pool[16655]: WindowPos4fMESA (will be remapped) */
"ffff\0"
"glWindowPos4fMESA\0"
"\0"
- /* _mesa_function_pool[16513]: MultiTexCoord4iv (offset 405) */
+ /* _mesa_function_pool[16679]: MultiTexCoord4iv (offset 405) */
"ip\0"
"glMultiTexCoord4iv\0"
"glMultiTexCoord4ivARB\0"
"\0"
- /* _mesa_function_pool[16558]: TexCoord1sv (offset 101) */
+ /* _mesa_function_pool[16724]: TexCoord1sv (offset 101) */
"p\0"
"glTexCoord1sv\0"
"\0"
- /* _mesa_function_pool[16575]: WindowPos2i (will be remapped) */
+ /* _mesa_function_pool[16741]: WindowPos2i (will be remapped) */
"ii\0"
"glWindowPos2i\0"
"glWindowPos2iARB\0"
"glWindowPos2iMESA\0"
"\0"
- /* _mesa_function_pool[16628]: WindowPos3s (will be remapped) */
+ /* _mesa_function_pool[16794]: WindowPos3s (will be remapped) */
"iii\0"
"glWindowPos3s\0"
"glWindowPos3sARB\0"
"glWindowPos3sMESA\0"
"\0"
- /* _mesa_function_pool[16682]: VertexAttribP4ui (will be remapped) */
+ /* _mesa_function_pool[16848]: VertexAttribP4ui (will be remapped) */
"iiii\0"
"glVertexAttribP4ui\0"
"\0"
- /* _mesa_function_pool[16707]: DepthFunc (offset 245) */
+ /* _mesa_function_pool[16873]: DepthFunc (offset 245) */
"i\0"
"glDepthFunc\0"
"\0"
- /* _mesa_function_pool[16722]: PixelMapusv (offset 253) */
+ /* _mesa_function_pool[16888]: PixelMapusv (offset 253) */
"iip\0"
"glPixelMapusv\0"
"\0"
- /* _mesa_function_pool[16741]: GetSamplerParameterIiv (will be remapped) */
+ /* _mesa_function_pool[16907]: GetSamplerParameterIiv (will be remapped) */
"iip\0"
"glGetSamplerParameterIiv\0"
"\0"
- /* _mesa_function_pool[16771]: IsSampler (will be remapped) */
+ /* _mesa_function_pool[16937]: IsSampler (will be remapped) */
"i\0"
"glIsSampler\0"
"\0"
- /* _mesa_function_pool[16786]: BlendFunc (offset 241) */
+ /* _mesa_function_pool[16952]: BlendFunc (offset 241) */
"ii\0"
"glBlendFunc\0"
"\0"
- /* _mesa_function_pool[16802]: Uniform4i (will be remapped) */
+ /* _mesa_function_pool[16968]: Uniform4i (will be remapped) */
"iiiii\0"
"glUniform4i\0"
"glUniform4iARB\0"
"\0"
- /* _mesa_function_pool[16836]: ColorP3ui (will be remapped) */
+ /* _mesa_function_pool[17002]: ColorP3ui (will be remapped) */
"ii\0"
"glColorP3ui\0"
"\0"
- /* _mesa_function_pool[16852]: BufferParameteriAPPLE (will be remapped) */
+ /* _mesa_function_pool[17018]: BufferParameteriAPPLE (will be remapped) */
"iii\0"
"glBufferParameteriAPPLE\0"
"\0"
- /* _mesa_function_pool[16881]: CompressedTexImage2D (will be remapped) */
+ /* _mesa_function_pool[17047]: CompressedTexImage2D (will be remapped) */
"iiiiiiip\0"
"glCompressedTexImage2D\0"
"glCompressedTexImage2DARB\0"
"\0"
- /* _mesa_function_pool[16940]: DeleteObjectARB (will be remapped) */
+ /* _mesa_function_pool[17106]: DeleteObjectARB (will be remapped) */
"i\0"
"glDeleteObjectARB\0"
"\0"
- /* _mesa_function_pool[16961]: GetShaderPrecisionFormat (will be remapped) */
+ /* _mesa_function_pool[17127]: GetShaderPrecisionFormat (will be remapped) */
"iipp\0"
"glGetShaderPrecisionFormat\0"
"\0"
- /* _mesa_function_pool[16994]: TextureBarrierNV (will be remapped) */
+ /* _mesa_function_pool[17160]: TextureBarrierNV (will be remapped) */
"\0"
"glTextureBarrierNV\0"
"\0"
- /* _mesa_function_pool[17015]: GetBooleani_v (will be remapped) */
+ /* _mesa_function_pool[17181]: GetBooleani_v (will be remapped) */
"iip\0"
"glGetBooleanIndexedvEXT\0"
"glGetBooleani_v\0"
"\0"
- /* _mesa_function_pool[17060]: ProgramNamedParameter4dvNV (will be remapped) */
+ /* _mesa_function_pool[17226]: ProgramNamedParameter4dvNV (will be remapped) */
"iipp\0"
"glProgramNamedParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[17095]: Tangent3fvEXT (dynamic) */
+ /* _mesa_function_pool[17261]: Tangent3fvEXT (dynamic) */
"p\0"
"glTangent3fvEXT\0"
"\0"
- /* _mesa_function_pool[17114]: Flush (offset 217) */
+ /* _mesa_function_pool[17280]: Flush (offset 217) */
"\0"
"glFlush\0"
"\0"
- /* _mesa_function_pool[17124]: Color4uiv (offset 38) */
+ /* _mesa_function_pool[17290]: Color4uiv (offset 38) */
"p\0"
"glColor4uiv\0"
"\0"
- /* _mesa_function_pool[17139]: MultiTexCoord1sv (offset 383) */
+ /* _mesa_function_pool[17305]: MultiTexCoord1sv (offset 383) */
"ip\0"
"glMultiTexCoord1sv\0"
"glMultiTexCoord1svARB\0"
"\0"
- /* _mesa_function_pool[17184]: VDPAUIsSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[17350]: VDPAUIsSurfaceNV (will be remapped) */
"i\0"
"glVDPAUIsSurfaceNV\0"
"\0"
- /* _mesa_function_pool[17206]: FogCoordd (will be remapped) */
+ /* _mesa_function_pool[17372]: FogCoordd (will be remapped) */
"d\0"
"glFogCoordd\0"
"glFogCoorddEXT\0"
"\0"
- /* _mesa_function_pool[17236]: RasterPos3sv (offset 77) */
+ /* _mesa_function_pool[17402]: RasterPos3sv (offset 77) */
"p\0"
"glRasterPos3sv\0"
"\0"
- /* _mesa_function_pool[17254]: TexCoordP2ui (will be remapped) */
+ /* _mesa_function_pool[17420]: TexCoordP2ui (will be remapped) */
"ii\0"
"glTexCoordP2ui\0"
"\0"
- /* _mesa_function_pool[17273]: BindFramebufferEXT (will be remapped) */
+ /* _mesa_function_pool[17439]: BindFramebufferEXT (will be remapped) */
"ii\0"
"glBindFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[17298]: Uniform1uiv (will be remapped) */
+ /* _mesa_function_pool[17464]: Uniform1uiv (will be remapped) */
"iip\0"
"glUniform1uivEXT\0"
"glUniform1uiv\0"
"\0"
- /* _mesa_function_pool[17334]: ReferencePlaneSGIX (dynamic) */
+ /* _mesa_function_pool[17500]: ReferencePlaneSGIX (dynamic) */
"p\0"
"glReferencePlaneSGIX\0"
"\0"
- /* _mesa_function_pool[17358]: PushAttrib (offset 219) */
+ /* _mesa_function_pool[17524]: PushAttrib (offset 219) */
"i\0"
"glPushAttrib\0"
"\0"
- /* _mesa_function_pool[17374]: RasterPos2i (offset 66) */
+ /* _mesa_function_pool[17540]: RasterPos2i (offset 66) */
"ii\0"
"glRasterPos2i\0"
"\0"
- /* _mesa_function_pool[17392]: Uniform3iv (will be remapped) */
+ /* _mesa_function_pool[17558]: Uniform3iv (will be remapped) */
"iip\0"
"glUniform3iv\0"
"glUniform3ivARB\0"
"\0"
- /* _mesa_function_pool[17426]: SamplerParameteriv (will be remapped) */
+ /* _mesa_function_pool[17592]: SamplerParameteriv (will be remapped) */
"iip\0"
"glSamplerParameteriv\0"
"\0"
- /* _mesa_function_pool[17452]: TexParameteriv (offset 181) */
+ /* _mesa_function_pool[17618]: TexParameteriv (offset 181) */
"iip\0"
"glTexParameteriv\0"
"\0"
- /* _mesa_function_pool[17474]: GetAttribLocation (will be remapped) */
+ /* _mesa_function_pool[17640]: GetAttribLocation (will be remapped) */
"ip\0"
"glGetAttribLocation\0"
"glGetAttribLocationARB\0"
"\0"
- /* _mesa_function_pool[17521]: TexCoord2fColor3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[17687]: TexCoord2fColor3fVertex3fSUN (dynamic) */
"ffffffff\0"
"glTexCoord2fColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[17562]: DeleteAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[17728]: DeleteAsyncMarkersSGIX (dynamic) */
"ii\0"
"glDeleteAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[17591]: RasterPos2f (offset 64) */
+ /* _mesa_function_pool[17757]: RasterPos2f (offset 64) */
"ff\0"
"glRasterPos2f\0"
"\0"
- /* _mesa_function_pool[17609]: TexCoord4fVertex4fSUN (dynamic) */
+ /* _mesa_function_pool[17775]: TexCoord4fVertex4fSUN (dynamic) */
"ffffffff\0"
"glTexCoord4fVertex4fSUN\0"
"\0"
- /* _mesa_function_pool[17643]: RasterPos2d (offset 62) */
+ /* _mesa_function_pool[17809]: RasterPos2d (offset 62) */
"dd\0"
"glRasterPos2d\0"
"\0"
- /* _mesa_function_pool[17661]: VertexAttrib4iv (will be remapped) */
+ /* _mesa_function_pool[17827]: VertexAttrib4iv (will be remapped) */
"ip\0"
"glVertexAttrib4iv\0"
"glVertexAttrib4ivARB\0"
"\0"
- /* _mesa_function_pool[17704]: RasterPos3fv (offset 73) */
+ /* _mesa_function_pool[17870]: RasterPos3fv (offset 73) */
"p\0"
"glRasterPos3fv\0"
"\0"
- /* _mesa_function_pool[17722]: CopyTexSubImage3D (offset 373) */
+ /* _mesa_function_pool[17888]: CopyTexSubImage3D (offset 373) */
"iiiiiiiii\0"
"glCopyTexSubImage3D\0"
"glCopyTexSubImage3DEXT\0"
"glCopyTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[17799]: Color4ub (offset 35) */
+ /* _mesa_function_pool[17965]: Color4ub (offset 35) */
"iiii\0"
"glColor4ub\0"
"\0"
- /* _mesa_function_pool[17816]: GetInteger64v (will be remapped) */
+ /* _mesa_function_pool[17982]: GetInteger64v (will be remapped) */
"ip\0"
"glGetInteger64v\0"
"\0"
- /* _mesa_function_pool[17836]: TextureColorMaskSGIS (dynamic) */
+ /* _mesa_function_pool[18002]: TextureColorMaskSGIS (dynamic) */
"iiii\0"
"glTextureColorMaskSGIS\0"
"\0"
- /* _mesa_function_pool[17865]: RasterPos2s (offset 68) */
+ /* _mesa_function_pool[18031]: RasterPos2s (offset 68) */
"ii\0"
"glRasterPos2s\0"
"\0"
- /* _mesa_function_pool[17883]: GetColorTable (offset 343) */
+ /* _mesa_function_pool[18049]: GetColorTable (offset 343) */
"iiip\0"
"glGetColorTable\0"
"glGetColorTableSGI\0"
"glGetColorTableEXT\0"
"\0"
- /* _mesa_function_pool[17943]: EndQueryIndexed (will be remapped) */
+ /* _mesa_function_pool[18109]: EndQueryIndexed (will be remapped) */
"ii\0"
"glEndQueryIndexed\0"
"\0"
- /* _mesa_function_pool[17965]: SelectBuffer (offset 195) */
+ /* _mesa_function_pool[18131]: SelectBuffer (offset 195) */
"ip\0"
"glSelectBuffer\0"
"\0"
- /* _mesa_function_pool[17984]: Indexiv (offset 49) */
+ /* _mesa_function_pool[18150]: Indexiv (offset 49) */
"p\0"
"glIndexiv\0"
"\0"
- /* _mesa_function_pool[17997]: TexCoord3i (offset 114) */
+ /* _mesa_function_pool[18163]: TexCoord3i (offset 114) */
"iii\0"
"glTexCoord3i\0"
"\0"
- /* _mesa_function_pool[18015]: CopyColorTable (offset 342) */
+ /* _mesa_function_pool[18181]: CopyColorTable (offset 342) */
"iiiii\0"
"glCopyColorTable\0"
"glCopyColorTableSGI\0"
"\0"
- /* _mesa_function_pool[18059]: PointParameterfv (will be remapped) */
+ /* _mesa_function_pool[18225]: PointParameterfv (will be remapped) */
"ip\0"
"glPointParameterfv\0"
"glPointParameterfvARB\0"
"glPointParameterfvEXT\0"
"glPointParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[18149]: GetHistogramParameterfv (offset 362) */
+ /* _mesa_function_pool[18315]: GetHistogramParameterfv (offset 362) */
"iip\0"
"glGetHistogramParameterfv\0"
"glGetHistogramParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[18209]: Frustum (offset 289) */
+ /* _mesa_function_pool[18375]: Frustum (offset 289) */
"dddddd\0"
"glFrustum\0"
"\0"
- /* _mesa_function_pool[18227]: GetString (offset 275) */
+ /* _mesa_function_pool[18393]: GetString (offset 275) */
"i\0"
"glGetString\0"
"\0"
- /* _mesa_function_pool[18242]: ColorPointervINTEL (dynamic) */
+ /* _mesa_function_pool[18408]: ColorPointervINTEL (dynamic) */
"iip\0"
"glColorPointervINTEL\0"
"\0"
- /* _mesa_function_pool[18268]: TexEnvf (offset 184) */
+ /* _mesa_function_pool[18434]: TexEnvf (offset 184) */
"iif\0"
"glTexEnvf\0"
"\0"
- /* _mesa_function_pool[18283]: GetTexGenxvOES (will be remapped) */
+ /* _mesa_function_pool[18449]: GetTexGenxvOES (will be remapped) */
"iip\0"
"glGetTexGenxvOES\0"
"\0"
- /* _mesa_function_pool[18305]: TexCoord3d (offset 110) */
+ /* _mesa_function_pool[18471]: TexCoord3d (offset 110) */
"ddd\0"
"glTexCoord3d\0"
"\0"
- /* _mesa_function_pool[18323]: AlphaFragmentOp1ATI (will be remapped) */
+ /* _mesa_function_pool[18489]: AlphaFragmentOp1ATI (will be remapped) */
"iiiiii\0"
"glAlphaFragmentOp1ATI\0"
"\0"
- /* _mesa_function_pool[18353]: TexCoord3f (offset 112) */
+ /* _mesa_function_pool[18519]: TexCoord3f (offset 112) */
"fff\0"
"glTexCoord3f\0"
"\0"
- /* _mesa_function_pool[18371]: GetnHistogramARB (will be remapped) */
+ /* _mesa_function_pool[18537]: GetnHistogramARB (will be remapped) */
"iiiiip\0"
"glGetnHistogramARB\0"
"\0"
- /* _mesa_function_pool[18398]: DeleteTextures (offset 327) */
+ /* _mesa_function_pool[18564]: DeleteTextures (offset 327) */
"ip\0"
"glDeleteTextures\0"
"glDeleteTexturesEXT\0"
"\0"
- /* _mesa_function_pool[18439]: TexCoordPointerEXT (will be remapped) */
+ /* _mesa_function_pool[18605]: TexCoordPointerEXT (will be remapped) */
"iiiip\0"
"glTexCoordPointerEXT\0"
"\0"
- /* _mesa_function_pool[18467]: TexSubImage4DSGIS (dynamic) */
+ /* _mesa_function_pool[18633]: TexSubImage4DSGIS (dynamic) */
"iiiiiiiiiiiip\0"
"glTexSubImage4DSGIS\0"
"\0"
- /* _mesa_function_pool[18502]: TexCoord3s (offset 116) */
+ /* _mesa_function_pool[18668]: TexCoord3s (offset 116) */
"iii\0"
"glTexCoord3s\0"
"\0"
- /* _mesa_function_pool[18520]: GetTexLevelParameteriv (offset 285) */
+ /* _mesa_function_pool[18686]: GetTexLevelParameteriv (offset 285) */
"iiip\0"
"glGetTexLevelParameteriv\0"
"\0"
- /* _mesa_function_pool[18551]: GetClipPlanef (will be remapped) */
+ /* _mesa_function_pool[18717]: GetClipPlanef (will be remapped) */
"ip\0"
"glGetClipPlanefOES\0"
"glGetClipPlanef\0"
"\0"
- /* _mesa_function_pool[18590]: VertexAttribPointer (will be remapped) */
+ /* _mesa_function_pool[18756]: VertexAttribPointer (will be remapped) */
"iiiiip\0"
"glVertexAttribPointer\0"
"glVertexAttribPointerARB\0"
"\0"
- /* _mesa_function_pool[18645]: TexStorage2DMultisample (will be remapped) */
+ /* _mesa_function_pool[18811]: TexStorage2DMultisample (will be remapped) */
"iiiiii\0"
"glTexStorage2DMultisample\0"
"\0"
- /* _mesa_function_pool[18679]: VertexAttribP4uiv (will be remapped) */
+ /* _mesa_function_pool[18845]: VertexAttribP4uiv (will be remapped) */
"iiip\0"
"glVertexAttribP4uiv\0"
"\0"
- /* _mesa_function_pool[18705]: StopInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[18871]: StopInstrumentsSGIX (dynamic) */
"i\0"
"glStopInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[18730]: SecondaryColor3s (will be remapped) */
+ /* _mesa_function_pool[18896]: SecondaryColor3s (will be remapped) */
"iii\0"
"glSecondaryColor3s\0"
"glSecondaryColor3sEXT\0"
"\0"
- /* _mesa_function_pool[18776]: ClearAccum (offset 204) */
+ /* _mesa_function_pool[18942]: ClearAccum (offset 204) */
"ffff\0"
"glClearAccum\0"
"\0"
- /* _mesa_function_pool[18795]: DeformSGIX (dynamic) */
+ /* _mesa_function_pool[18961]: DeformSGIX (dynamic) */
"i\0"
"glDeformSGIX\0"
"\0"
- /* _mesa_function_pool[18811]: InvalidateBufferSubData (will be remapped) */
+ /* _mesa_function_pool[18977]: InvalidateBufferSubData (will be remapped) */
"iii\0"
"glInvalidateBufferSubData\0"
"\0"
- /* _mesa_function_pool[18842]: Uniform3i (will be remapped) */
+ /* _mesa_function_pool[19008]: Uniform3i (will be remapped) */
"iiii\0"
"glUniform3i\0"
"glUniform3iARB\0"
"\0"
- /* _mesa_function_pool[18875]: TexCoord4iv (offset 123) */
+ /* _mesa_function_pool[19041]: TexCoord4iv (offset 123) */
"p\0"
"glTexCoord4iv\0"
"\0"
- /* _mesa_function_pool[18892]: TexStorage3D (will be remapped) */
+ /* _mesa_function_pool[19058]: TexStorage3D (will be remapped) */
"iiiiii\0"
"glTexStorage3D\0"
"\0"
- /* _mesa_function_pool[18915]: UniformMatrix4x2fv (will be remapped) */
+ /* _mesa_function_pool[19081]: UniformMatrix4x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix4x2fv\0"
"\0"
- /* _mesa_function_pool[18942]: GetDetailTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[19108]: GetDetailTexFuncSGIS (dynamic) */
"ip\0"
"glGetDetailTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[18969]: WindowPos3i (will be remapped) */
+ /* _mesa_function_pool[19135]: WindowPos3i (will be remapped) */
"iii\0"
"glWindowPos3i\0"
"glWindowPos3iARB\0"
"glWindowPos3iMESA\0"
"\0"
- /* _mesa_function_pool[19023]: SecondaryColor3b (will be remapped) */
+ /* _mesa_function_pool[19189]: SecondaryColor3b (will be remapped) */
"iii\0"
"glSecondaryColor3b\0"
"glSecondaryColor3bEXT\0"
"\0"
- /* _mesa_function_pool[19069]: FramebufferTexture3D (will be remapped) */
+ /* _mesa_function_pool[19235]: FramebufferTexture3D (will be remapped) */
"iiiiii\0"
"glFramebufferTexture3D\0"
"glFramebufferTexture3DEXT\0"
"glFramebufferTexture3DOES\0"
"\0"
- /* _mesa_function_pool[19152]: SamplerParameterIiv (will be remapped) */
+ /* _mesa_function_pool[19318]: SamplerParameterIiv (will be remapped) */
"iip\0"
"glSamplerParameterIiv\0"
"\0"
- /* _mesa_function_pool[19179]: PolygonOffset (offset 319) */
+ /* _mesa_function_pool[19345]: PolygonOffset (offset 319) */
"ff\0"
"glPolygonOffset\0"
"\0"
- /* _mesa_function_pool[19199]: BindVertexArray (will be remapped) */
+ /* _mesa_function_pool[19365]: BindVertexArray (will be remapped) */
"i\0"
"glBindVertexArray\0"
"glBindVertexArrayOES\0"
"\0"
- /* _mesa_function_pool[19241]: Color4ubVertex2fvSUN (dynamic) */
+ /* _mesa_function_pool[19407]: Color4ubVertex2fvSUN (dynamic) */
"pp\0"
"glColor4ubVertex2fvSUN\0"
"\0"
- /* _mesa_function_pool[19268]: GetProgramBinary (will be remapped) */
+ /* _mesa_function_pool[19434]: GetProgramBinary (will be remapped) */
"iippp\0"
"glGetProgramBinary\0"
"glGetProgramBinaryOES\0"
"\0"
- /* _mesa_function_pool[19316]: GetBufferParameteriv (will be remapped) */
+ /* _mesa_function_pool[19482]: GetBufferParameteriv (will be remapped) */
"iip\0"
"glGetBufferParameteriv\0"
"glGetBufferParameterivARB\0"
"\0"
- /* _mesa_function_pool[19370]: Rectd (offset 86) */
+ /* _mesa_function_pool[19536]: Rectd (offset 86) */
"dddd\0"
"glRectd\0"
"\0"
- /* _mesa_function_pool[19384]: TexFilterFuncSGIS (dynamic) */
+ /* _mesa_function_pool[19550]: TexFilterFuncSGIS (dynamic) */
"iiip\0"
"glTexFilterFuncSGIS\0"
"\0"
- /* _mesa_function_pool[19410]: NormalPointervINTEL (dynamic) */
+ /* _mesa_function_pool[19576]: NormalPointervINTEL (dynamic) */
"ip\0"
"glNormalPointervINTEL\0"
"\0"
- /* _mesa_function_pool[19436]: ProvokingVertex (will be remapped) */
+ /* _mesa_function_pool[19602]: ProvokingVertex (will be remapped) */
"i\0"
"glProvokingVertexEXT\0"
"glProvokingVertex\0"
"\0"
- /* _mesa_function_pool[19478]: SamplerParameterfv (will be remapped) */
+ /* _mesa_function_pool[19644]: SamplerParameterfv (will be remapped) */
"iip\0"
"glSamplerParameterfv\0"
"\0"
- /* _mesa_function_pool[19504]: MultiTexCoord1i (offset 380) */
+ /* _mesa_function_pool[19670]: MultiTexCoord1i (offset 380) */
"ii\0"
"glMultiTexCoord1i\0"
"glMultiTexCoord1iARB\0"
"\0"
- /* _mesa_function_pool[19547]: WindowPos2dv (will be remapped) */
+ /* _mesa_function_pool[19713]: WindowPos2dv (will be remapped) */
"p\0"
"glWindowPos2dv\0"
"glWindowPos2dvARB\0"
"glWindowPos2dvMESA\0"
"\0"
- /* _mesa_function_pool[19602]: GetProgramParameterdvNV (will be remapped) */
+ /* _mesa_function_pool[19768]: GetProgramParameterdvNV (will be remapped) */
"iiip\0"
"glGetProgramParameterdvNV\0"
"\0"
- /* _mesa_function_pool[19634]: VertexAttrib3fNV (will be remapped) */
+ /* _mesa_function_pool[19800]: VertexAttrib3fNV (will be remapped) */
"ifff\0"
"glVertexAttrib3fNV\0"
"\0"
- /* _mesa_function_pool[19659]: RasterPos3i (offset 74) */
+ /* _mesa_function_pool[19825]: RasterPos3i (offset 74) */
"iii\0"
"glRasterPos3i\0"
"\0"
- /* _mesa_function_pool[19678]: GetFragmentLightfvSGIX (dynamic) */
+ /* _mesa_function_pool[19844]: GetFragmentLightfvSGIX (dynamic) */
"iip\0"
"glGetFragmentLightfvSGIX\0"
"\0"
- /* _mesa_function_pool[19708]: MultiTexCoord1d (offset 376) */
+ /* _mesa_function_pool[19874]: MultiTexCoord1d (offset 376) */
"id\0"
"glMultiTexCoord1d\0"
"glMultiTexCoord1dARB\0"
"\0"
- /* _mesa_function_pool[19751]: DetailTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[19917]: DetailTexFuncSGIS (dynamic) */
"iip\0"
"glDetailTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[19776]: Normal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[19942]: Normal3fVertex3fSUN (dynamic) */
"ffffff\0"
"glNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[19806]: CopyTexImage2D (offset 324) */
+ /* _mesa_function_pool[19972]: CopyTexImage2D (offset 324) */
"iiiiiiii\0"
"glCopyTexImage2D\0"
"glCopyTexImage2DEXT\0"
"\0"
- /* _mesa_function_pool[19853]: FlushMappedBufferRange (will be remapped) */
+ /* _mesa_function_pool[20019]: FlushMappedBufferRange (will be remapped) */
"iii\0"
"glFlushMappedBufferRange\0"
"glFlushMappedBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[19911]: MultiTexCoord2dv (offset 385) */
+ /* _mesa_function_pool[20077]: MultiTexCoord2dv (offset 385) */
"ip\0"
"glMultiTexCoord2dv\0"
"glMultiTexCoord2dvARB\0"
"\0"
- /* _mesa_function_pool[19956]: SelectPerfMonitorCountersAMD (will be remapped) */
+ /* _mesa_function_pool[20122]: SelectPerfMonitorCountersAMD (will be remapped) */
"iiiip\0"
"glSelectPerfMonitorCountersAMD\0"
"\0"
- /* _mesa_function_pool[19994]: ProgramEnvParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[20160]: ProgramEnvParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramEnvParameter4fARB\0"
"glProgramParameter4fNV\0"
"\0"
- /* _mesa_function_pool[20052]: GenVertexArraysAPPLE (will be remapped) */
+ /* _mesa_function_pool[20218]: GenVertexArraysAPPLE (will be remapped) */
"ip\0"
"glGenVertexArraysAPPLE\0"
"\0"
- /* _mesa_function_pool[20079]: Lightfv (offset 160) */
+ /* _mesa_function_pool[20245]: Lightfv (offset 160) */
"iip\0"
"glLightfv\0"
"\0"
- /* _mesa_function_pool[20094]: GetFramebufferAttachmentParameteriv (will be remapped) */
+ /* _mesa_function_pool[20260]: GetFramebufferAttachmentParameteriv (will be remapped) */
"iiip\0"
"glGetFramebufferAttachmentParameteriv\0"
"glGetFramebufferAttachmentParameterivEXT\0"
"glGetFramebufferAttachmentParameterivOES\0"
"\0"
- /* _mesa_function_pool[20220]: MultiTexCoord1s (offset 382) */
+ /* _mesa_function_pool[20386]: MultiTexCoord1s (offset 382) */
"ii\0"
"glMultiTexCoord1s\0"
"glMultiTexCoord1sARB\0"
"\0"
- /* _mesa_function_pool[20263]: ClearDepth (offset 208) */
+ /* _mesa_function_pool[20429]: ClearDepth (offset 208) */
"d\0"
"glClearDepth\0"
"\0"
- /* _mesa_function_pool[20279]: GetFenceivNV (dynamic) */
+ /* _mesa_function_pool[20445]: GetFenceivNV (dynamic) */
"iip\0"
"glGetFenceivNV\0"
"\0"
- /* _mesa_function_pool[20299]: GetVertexAttribPointerv (will be remapped) */
+ /* _mesa_function_pool[20465]: GetVertexAttribPointerv (will be remapped) */
"iip\0"
"glGetVertexAttribPointerv\0"
"glGetVertexAttribPointervARB\0"
"glGetVertexAttribPointervNV\0"
"\0"
- /* _mesa_function_pool[20387]: ColorSubTable (offset 346) */
+ /* _mesa_function_pool[20553]: ColorSubTable (offset 346) */
"iiiiip\0"
"glColorSubTable\0"
"glColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[20430]: Color4fv (offset 30) */
+ /* _mesa_function_pool[20596]: Color4fv (offset 30) */
"p\0"
"glColor4fv\0"
"\0"
- /* _mesa_function_pool[20444]: EndPerfMonitorAMD (will be remapped) */
+ /* _mesa_function_pool[20610]: EndPerfMonitorAMD (will be remapped) */
"i\0"
"glEndPerfMonitorAMD\0"
"\0"
- /* _mesa_function_pool[20467]: GetnMinmaxARB (will be remapped) */
+ /* _mesa_function_pool[20633]: GetnMinmaxARB (will be remapped) */
"iiiiip\0"
"glGetnMinmaxARB\0"
"\0"
- /* _mesa_function_pool[20491]: ProgramLocalParameters4fvEXT (will be remapped) */
+ /* _mesa_function_pool[20657]: ProgramLocalParameters4fvEXT (will be remapped) */
"iiip\0"
"glProgramLocalParameters4fvEXT\0"
"\0"
- /* _mesa_function_pool[20528]: BeginConditionalRender (will be remapped) */
+ /* _mesa_function_pool[20694]: BeginConditionalRender (will be remapped) */
"ii\0"
"glBeginConditionalRender\0"
"glBeginConditionalRenderNV\0"
"\0"
- /* _mesa_function_pool[20584]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */
+ /* _mesa_function_pool[20750]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */
"fffffffffffffff\0"
"glTexCoord4fColor4fNormal3fVertex4fSUN\0"
"\0"
- /* _mesa_function_pool[20640]: VertexAttribI1uiv (will be remapped) */
+ /* _mesa_function_pool[20806]: VertexAttribI1uiv (will be remapped) */
"ip\0"
"glVertexAttribI1uivEXT\0"
"glVertexAttribI1uiv\0"
"\0"
- /* _mesa_function_pool[20687]: ColorPointer (offset 308) */
+ /* _mesa_function_pool[20853]: ColorPointer (offset 308) */
"iiip\0"
"glColorPointer\0"
"\0"
- /* _mesa_function_pool[20708]: Rects (offset 92) */
+ /* _mesa_function_pool[20874]: Rects (offset 92) */
"iiii\0"
"glRects\0"
"\0"
- /* _mesa_function_pool[20722]: GetMapAttribParameterfvNV (dynamic) */
+ /* _mesa_function_pool[20888]: GetMapAttribParameterfvNV (dynamic) */
"iiip\0"
"glGetMapAttribParameterfvNV\0"
"\0"
- /* _mesa_function_pool[20756]: ClearColorx (will be remapped) */
+ /* _mesa_function_pool[20922]: ClearColorx (will be remapped) */
"iiii\0"
"glClearColorxOES\0"
"glClearColorx\0"
"\0"
- /* _mesa_function_pool[20793]: MultiTexCoordP2ui (will be remapped) */
+ /* _mesa_function_pool[20959]: MultiTexCoordP2ui (will be remapped) */
"iii\0"
"glMultiTexCoordP2ui\0"
"\0"
- /* _mesa_function_pool[20818]: ActiveProgramEXT (will be remapped) */
+ /* _mesa_function_pool[20984]: ActiveProgramEXT (will be remapped) */
"i\0"
"glActiveProgramEXT\0"
"\0"
- /* _mesa_function_pool[20840]: Lightiv (offset 162) */
+ /* _mesa_function_pool[21006]: Lightiv (offset 162) */
"iip\0"
"glLightiv\0"
"\0"
- /* _mesa_function_pool[20855]: Tangent3svEXT (dynamic) */
+ /* _mesa_function_pool[21021]: Tangent3svEXT (dynamic) */
"p\0"
"glTangent3svEXT\0"
"\0"
- /* _mesa_function_pool[20874]: TexCoordPointervINTEL (dynamic) */
+ /* _mesa_function_pool[21040]: TexCoordPointervINTEL (dynamic) */
"iip\0"
"glTexCoordPointervINTEL\0"
"\0"
- /* _mesa_function_pool[20903]: GetTexParameteriv (offset 283) */
+ /* _mesa_function_pool[21069]: GetTexParameteriv (offset 283) */
"iip\0"
"glGetTexParameteriv\0"
"\0"
- /* _mesa_function_pool[20928]: MapParameterivNV (dynamic) */
+ /* _mesa_function_pool[21094]: MapParameterivNV (dynamic) */
"iip\0"
"glMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[20952]: VertexAttribs4dvNV (will be remapped) */
+ /* _mesa_function_pool[21118]: VertexAttribs4dvNV (will be remapped) */
"iip\0"
"glVertexAttribs4dvNV\0"
"\0"
- /* _mesa_function_pool[20978]: VertexAttrib3sv (will be remapped) */
+ /* _mesa_function_pool[21144]: VertexAttrib3sv (will be remapped) */
"ip\0"
"glVertexAttrib3sv\0"
"glVertexAttrib3svARB\0"
"\0"
- /* _mesa_function_pool[21021]: ClearBufferData (will be remapped) */
+ /* _mesa_function_pool[21187]: ClearBufferData (will be remapped) */
"iiiip\0"
"glClearBufferData\0"
"\0"
- /* _mesa_function_pool[21046]: IsQuery (will be remapped) */
+ /* _mesa_function_pool[21212]: IsQuery (will be remapped) */
"i\0"
"glIsQuery\0"
"glIsQueryARB\0"
"\0"
- /* _mesa_function_pool[21072]: ClearBufferfv (will be remapped) */
+ /* _mesa_function_pool[21238]: ClearBufferfv (will be remapped) */
"iip\0"
"glClearBufferfv\0"
"\0"
- /* _mesa_function_pool[21093]: PrimitiveRestartNV (will be remapped) */
+ /* _mesa_function_pool[21259]: PrimitiveRestartNV (will be remapped) */
"\0"
"glPrimitiveRestartNV\0"
"\0"
- /* _mesa_function_pool[21116]: EdgeFlagPointerEXT (will be remapped) */
+ /* _mesa_function_pool[21282]: EdgeFlagPointerEXT (will be remapped) */
"iip\0"
"glEdgeFlagPointerEXT\0"
"\0"
- /* _mesa_function_pool[21142]: IsVertexArray (will be remapped) */
+ /* _mesa_function_pool[21308]: IsVertexArray (will be remapped) */
"i\0"
"glIsVertexArray\0"
"glIsVertexArrayAPPLE\0"
"glIsVertexArrayOES\0"
"\0"
- /* _mesa_function_pool[21201]: GetMultisamplefv (will be remapped) */
+ /* _mesa_function_pool[21367]: GetMultisamplefv (will be remapped) */
"iip\0"
"glGetMultisamplefv\0"
"\0"
- /* _mesa_function_pool[21225]: WeightbvARB (dynamic) */
+ /* _mesa_function_pool[21391]: WeightbvARB (dynamic) */
"ip\0"
"glWeightbvARB\0"
"\0"
- /* _mesa_function_pool[21243]: Rectdv (offset 87) */
+ /* _mesa_function_pool[21409]: Rectdv (offset 87) */
"pp\0"
"glRectdv\0"
"\0"
- /* _mesa_function_pool[21256]: ListParameteriSGIX (dynamic) */
+ /* _mesa_function_pool[21422]: ListParameteriSGIX (dynamic) */
"iii\0"
"glListParameteriSGIX\0"
"\0"
- /* _mesa_function_pool[21282]: BlendEquationiARB (will be remapped) */
+ /* _mesa_function_pool[21448]: BlendEquationiARB (will be remapped) */
"ii\0"
"glBlendEquationiARB\0"
"glBlendEquationIndexedAMD\0"
"\0"
- /* _mesa_function_pool[21332]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[21498]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */
"iffffffffff\0"
"glReplacementCodeuiColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[21391]: VertexAttrib4dv (will be remapped) */
+ /* _mesa_function_pool[21557]: VertexAttrib4dv (will be remapped) */
"ip\0"
"glVertexAttrib4dv\0"
"glVertexAttrib4dvARB\0"
"\0"
- /* _mesa_function_pool[21434]: InstrumentsBufferSGIX (dynamic) */
+ /* _mesa_function_pool[21600]: InstrumentsBufferSGIX (dynamic) */
"ip\0"
"glInstrumentsBufferSGIX\0"
"\0"
- /* _mesa_function_pool[21462]: SharpenTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[21628]: SharpenTexFuncSGIS (dynamic) */
"iip\0"
"glSharpenTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[21488]: DrawArraysInstancedARB (will be remapped) */
+ /* _mesa_function_pool[21654]: DrawArraysInstancedARB (will be remapped) */
"iiii\0"
"glDrawArraysInstancedARB\0"
"glDrawArraysInstancedEXT\0"
"glDrawArraysInstanced\0"
"\0"
- /* _mesa_function_pool[21566]: GetTexParameterxv (will be remapped) */
+ /* _mesa_function_pool[21732]: GetTexParameterxv (will be remapped) */
"iip\0"
"glGetTexParameterxvOES\0"
"glGetTexParameterxv\0"
"\0"
- /* _mesa_function_pool[21614]: GetAttachedShaders (will be remapped) */
+ /* _mesa_function_pool[21780]: GetAttachedShaders (will be remapped) */
"iipp\0"
"glGetAttachedShaders\0"
"\0"
- /* _mesa_function_pool[21641]: DebugMessageInsert (will be remapped) */
+ /* _mesa_function_pool[21807]: DebugMessageInsert (will be remapped) */
"iiiiip\0"
"glDebugMessageInsert\0"
"\0"
- /* _mesa_function_pool[21670]: Materialiv (offset 172) */
+ /* _mesa_function_pool[21836]: Materialiv (offset 172) */
"iip\0"
"glMaterialiv\0"
"\0"
- /* _mesa_function_pool[21688]: PushClientAttrib (offset 335) */
+ /* _mesa_function_pool[21854]: PushClientAttrib (offset 335) */
"i\0"
"glPushClientAttrib\0"
"\0"
- /* _mesa_function_pool[21710]: ProgramEnvParameters4fvEXT (will be remapped) */
+ /* _mesa_function_pool[21876]: ProgramEnvParameters4fvEXT (will be remapped) */
"iiip\0"
"glProgramEnvParameters4fvEXT\0"
"\0"
- /* _mesa_function_pool[21745]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[21911]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glTexCoord2fColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[21791]: LineWidthx (will be remapped) */
+ /* _mesa_function_pool[21957]: LineWidthx (will be remapped) */
"i\0"
"glLineWidthxOES\0"
"glLineWidthx\0"
"\0"
- /* _mesa_function_pool[21823]: SecondaryColor3fvEXT (will be remapped) */
+ /* _mesa_function_pool[21989]: SecondaryColor3fvEXT (will be remapped) */
"p\0"
"glSecondaryColor3fv\0"
"glSecondaryColor3fvEXT\0"
"\0"
- /* _mesa_function_pool[21869]: PolygonMode (offset 174) */
+ /* _mesa_function_pool[22035]: PolygonMode (offset 174) */
"ii\0"
"glPolygonMode\0"
"\0"
- /* _mesa_function_pool[21887]: SecondaryColor3iv (will be remapped) */
+ /* _mesa_function_pool[22053]: SecondaryColor3iv (will be remapped) */
"p\0"
"glSecondaryColor3iv\0"
"glSecondaryColor3ivEXT\0"
"\0"
- /* _mesa_function_pool[21933]: VertexAttribIFormat (will be remapped) */
+ /* _mesa_function_pool[22099]: VertexAttribIFormat (will be remapped) */
"iiii\0"
"glVertexAttribIFormat\0"
"\0"
- /* _mesa_function_pool[21961]: VertexAttribI1iEXT (will be remapped) */
+ /* _mesa_function_pool[22127]: VertexAttribI1iEXT (will be remapped) */
"ii\0"
"glVertexAttribI1iEXT\0"
"glVertexAttribI1i\0"
"\0"
- /* _mesa_function_pool[22004]: VertexAttrib4Niv (will be remapped) */
+ /* _mesa_function_pool[22170]: VertexAttrib4Niv (will be remapped) */
"ip\0"
"glVertexAttrib4Niv\0"
"glVertexAttrib4NivARB\0"
"\0"
- /* _mesa_function_pool[22049]: GetVertexAttribivNV (will be remapped) */
+ /* _mesa_function_pool[22215]: GetVertexAttribivNV (will be remapped) */
"iip\0"
"glGetVertexAttribivNV\0"
"\0"
- /* _mesa_function_pool[22076]: GetProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[22242]: GetProgramStringARB (will be remapped) */
"iip\0"
"glGetProgramStringARB\0"
"\0"
- /* _mesa_function_pool[22103]: GetnUniformdvARB (will be remapped) */
+ /* _mesa_function_pool[22269]: GetFloati_v (will be remapped) */
+ "iip\0"
+ "glGetFloati_v\0"
+ "\0"
+ /* _mesa_function_pool[22288]: GetnUniformdvARB (will be remapped) */
"iiip\0"
"glGetnUniformdvARB\0"
"\0"
- /* _mesa_function_pool[22128]: DrawElementsInstancedBaseVertex (will be remapped) */
+ /* _mesa_function_pool[22313]: DrawElementsInstancedBaseVertex (will be remapped) */
"iiipii\0"
"glDrawElementsInstancedBaseVertex\0"
"\0"
- /* _mesa_function_pool[22170]: LinkProgram (will be remapped) */
+ /* _mesa_function_pool[22355]: LinkProgram (will be remapped) */
"i\0"
"glLinkProgram\0"
"glLinkProgramARB\0"
"\0"
- /* _mesa_function_pool[22204]: TexBumpParameterfvATI (will be remapped) */
+ /* _mesa_function_pool[22389]: TexBumpParameterfvATI (will be remapped) */
"ip\0"
"glTexBumpParameterfvATI\0"
"\0"
- /* _mesa_function_pool[22232]: Tangent3ivEXT (dynamic) */
+ /* _mesa_function_pool[22417]: Tangent3ivEXT (dynamic) */
"p\0"
"glTangent3ivEXT\0"
"\0"
- /* _mesa_function_pool[22251]: Uniform1f (will be remapped) */
+ /* _mesa_function_pool[22436]: Uniform1f (will be remapped) */
"if\0"
"glUniform1f\0"
"glUniform1fARB\0"
"\0"
- /* _mesa_function_pool[22282]: DisableClientState (offset 309) */
+ /* _mesa_function_pool[22467]: DisableClientState (offset 309) */
"i\0"
"glDisableClientState\0"
"\0"
- /* _mesa_function_pool[22306]: TexGeni (offset 192) */
+ /* _mesa_function_pool[22491]: TexGeni (offset 192) */
"iii\0"
"glTexGeni\0"
"glTexGeniOES\0"
"\0"
- /* _mesa_function_pool[22334]: TexGenf (offset 190) */
+ /* _mesa_function_pool[22519]: TexGenf (offset 190) */
"iif\0"
"glTexGenf\0"
"glTexGenfOES\0"
"\0"
- /* _mesa_function_pool[22362]: TexEnvx (will be remapped) */
+ /* _mesa_function_pool[22547]: TexEnvx (will be remapped) */
"iii\0"
"glTexEnvxOES\0"
"glTexEnvx\0"
"\0"
- /* _mesa_function_pool[22390]: TexGend (offset 188) */
+ /* _mesa_function_pool[22575]: TexGend (offset 188) */
"iid\0"
"glTexGend\0"
"\0"
- /* _mesa_function_pool[22405]: Uniform1i (will be remapped) */
+ /* _mesa_function_pool[22590]: Uniform1i (will be remapped) */
"ii\0"
"glUniform1i\0"
"glUniform1iARB\0"
"\0"
- /* _mesa_function_pool[22436]: GetPolygonStipple (offset 274) */
+ /* _mesa_function_pool[22621]: GetPolygonStipple (offset 274) */
"p\0"
"glGetPolygonStipple\0"
"\0"
- /* _mesa_function_pool[22459]: Orthox (will be remapped) */
+ /* _mesa_function_pool[22644]: Orthox (will be remapped) */
"iiiiii\0"
"glOrthoxOES\0"
"glOrthox\0"
"\0"
- /* _mesa_function_pool[22488]: VertexAttrib4d (will be remapped) */
+ /* _mesa_function_pool[22673]: VertexAttrib4d (will be remapped) */
"idddd\0"
"glVertexAttrib4d\0"
"glVertexAttrib4dARB\0"
"\0"
- /* _mesa_function_pool[22532]: GetVertexAttribfvNV (will be remapped) */
+ /* _mesa_function_pool[22717]: GetVertexAttribfvNV (will be remapped) */
"iip\0"
"glGetVertexAttribfvNV\0"
"\0"
- /* _mesa_function_pool[22559]: Tangent3iEXT (dynamic) */
+ /* _mesa_function_pool[22744]: Tangent3iEXT (dynamic) */
"iii\0"
"glTangent3iEXT\0"
"\0"
- /* _mesa_function_pool[22579]: DrawArraysInstancedBaseInstance (will be remapped) */
+ /* _mesa_function_pool[22764]: DrawArraysInstancedBaseInstance (will be remapped) */
"iiiii\0"
"glDrawArraysInstancedBaseInstance\0"
"\0"
- /* _mesa_function_pool[22620]: VertexAttrib2svNV (will be remapped) */
+ /* _mesa_function_pool[22805]: VertexAttrib2svNV (will be remapped) */
"ip\0"
"glVertexAttrib2svNV\0"
"\0"
- /* _mesa_function_pool[22644]: NormalP3uiv (will be remapped) */
+ /* _mesa_function_pool[22829]: NormalP3uiv (will be remapped) */
"ip\0"
"glNormalP3uiv\0"
"\0"
- /* _mesa_function_pool[22662]: SecondaryColorP3uiv (will be remapped) */
+ /* _mesa_function_pool[22847]: SecondaryColorP3uiv (will be remapped) */
"ip\0"
"glSecondaryColorP3uiv\0"
"\0"
- /* _mesa_function_pool[22688]: VertexAttribs1fvNV (will be remapped) */
+ /* _mesa_function_pool[22873]: VertexAttribs1fvNV (will be remapped) */
"iip\0"
"glVertexAttribs1fvNV\0"
"\0"
- /* _mesa_function_pool[22714]: GetPerfMonitorCountersAMD (will be remapped) */
+ /* _mesa_function_pool[22899]: GetPerfMonitorCountersAMD (will be remapped) */
"ippip\0"
"glGetPerfMonitorCountersAMD\0"
"\0"
- /* _mesa_function_pool[22749]: DrawTexsvOES (will be remapped) */
+ /* _mesa_function_pool[22934]: DrawTexsvOES (will be remapped) */
"p\0"
"glDrawTexsvOES\0"
"\0"
- /* _mesa_function_pool[22767]: WindowPos4sMESA (will be remapped) */
+ /* _mesa_function_pool[22952]: WindowPos4sMESA (will be remapped) */
"iiii\0"
"glWindowPos4sMESA\0"
"\0"
- /* _mesa_function_pool[22791]: GetnPixelMapuivARB (will be remapped) */
+ /* _mesa_function_pool[22976]: GetnPixelMapuivARB (will be remapped) */
"iip\0"
"glGetnPixelMapuivARB\0"
"\0"
- /* _mesa_function_pool[22817]: VertexAttrib4s (will be remapped) */
+ /* _mesa_function_pool[23002]: VertexAttrib4s (will be remapped) */
"iiiii\0"
"glVertexAttrib4s\0"
"glVertexAttrib4sARB\0"
"\0"
- /* _mesa_function_pool[22861]: GetSamplerParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[23046]: GetSamplerParameterIuiv (will be remapped) */
"iip\0"
"glGetSamplerParameterIuiv\0"
"\0"
- /* _mesa_function_pool[22892]: ReplacementCodeusvSUN (dynamic) */
+ /* _mesa_function_pool[23077]: ReplacementCodeusvSUN (dynamic) */
"p\0"
"glReplacementCodeusvSUN\0"
"\0"
- /* _mesa_function_pool[22919]: VertexAttrib2dvNV (will be remapped) */
+ /* _mesa_function_pool[23104]: VertexAttrib2dvNV (will be remapped) */
"ip\0"
"glVertexAttrib2dvNV\0"
"\0"
- /* _mesa_function_pool[22943]: UseProgram (will be remapped) */
+ /* _mesa_function_pool[23128]: UseProgram (will be remapped) */
"i\0"
"glUseProgram\0"
"glUseProgramObjectARB\0"
"\0"
- /* _mesa_function_pool[22981]: GlobalAlphaFactoriSUN (dynamic) */
+ /* _mesa_function_pool[23166]: GlobalAlphaFactoriSUN (dynamic) */
"i\0"
"glGlobalAlphaFactoriSUN\0"
"\0"
- /* _mesa_function_pool[23008]: CompileShader (will be remapped) */
+ /* _mesa_function_pool[23193]: CompileShader (will be remapped) */
"i\0"
"glCompileShader\0"
"glCompileShaderARB\0"
"\0"
- /* _mesa_function_pool[23046]: Color4sv (offset 34) */
+ /* _mesa_function_pool[23231]: Color4sv (offset 34) */
"p\0"
"glColor4sv\0"
"\0"
- /* _mesa_function_pool[23060]: MultiModeDrawArraysIBM (will be remapped) */
+ /* _mesa_function_pool[23245]: MultiModeDrawArraysIBM (will be remapped) */
"pppii\0"
"glMultiModeDrawArraysIBM\0"
"\0"
- /* _mesa_function_pool[23092]: MultiTexCoord3d (offset 392) */
+ /* _mesa_function_pool[23277]: MultiTexCoord3d (offset 392) */
"iddd\0"
"glMultiTexCoord3d\0"
"glMultiTexCoord3dARB\0"
"\0"
- /* _mesa_function_pool[23137]: LoadTransposeMatrixf (will be remapped) */
+ /* _mesa_function_pool[23322]: LoadTransposeMatrixf (will be remapped) */
"p\0"
"glLoadTransposeMatrixf\0"
"glLoadTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[23189]: LoadTransposeMatrixd (will be remapped) */
+ /* _mesa_function_pool[23374]: LoadTransposeMatrixd (will be remapped) */
"p\0"
"glLoadTransposeMatrixd\0"
"glLoadTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[23241]: FlushMappedBufferRangeAPPLE (will be remapped) */
+ /* _mesa_function_pool[23426]: FlushMappedBufferRangeAPPLE (will be remapped) */
"iii\0"
"glFlushMappedBufferRangeAPPLE\0"
"\0"
- /* _mesa_function_pool[23276]: PixelZoom (offset 246) */
+ /* _mesa_function_pool[23461]: PixelZoom (offset 246) */
"ff\0"
"glPixelZoom\0"
"\0"
- /* _mesa_function_pool[23292]: ReplacementCodePointerSUN (dynamic) */
+ /* _mesa_function_pool[23477]: ReplacementCodePointerSUN (dynamic) */
"iip\0"
"glReplacementCodePointerSUN\0"
"\0"
- /* _mesa_function_pool[23325]: ProgramEnvParameter4dARB (will be remapped) */
+ /* _mesa_function_pool[23510]: ProgramEnvParameter4dARB (will be remapped) */
"iidddd\0"
"glProgramEnvParameter4dARB\0"
"glProgramParameter4dNV\0"
"\0"
- /* _mesa_function_pool[23383]: ColorTableParameterfv (offset 340) */
+ /* _mesa_function_pool[23568]: ColorTableParameterfv (offset 340) */
"iip\0"
"glColorTableParameterfv\0"
"glColorTableParameterfvSGI\0"
"\0"
- /* _mesa_function_pool[23439]: GetFragDataLocation (will be remapped) */
+ /* _mesa_function_pool[23624]: GetFragDataLocation (will be remapped) */
"ip\0"
"glGetFragDataLocationEXT\0"
"glGetFragDataLocation\0"
"\0"
- /* _mesa_function_pool[23490]: TexStorage3DMultisample (will be remapped) */
+ /* _mesa_function_pool[23675]: TexStorage3DMultisample (will be remapped) */
"iiiiiii\0"
"glTexStorage3DMultisample\0"
"\0"
- /* _mesa_function_pool[23525]: Binormal3bvEXT (dynamic) */
+ /* _mesa_function_pool[23710]: Binormal3bvEXT (dynamic) */
"p\0"
"glBinormal3bvEXT\0"
"\0"
- /* _mesa_function_pool[23545]: LoadIdentityDeformationMapSGIX (dynamic) */
+ /* _mesa_function_pool[23730]: LoadIdentityDeformationMapSGIX (dynamic) */
"i\0"
"glLoadIdentityDeformationMapSGIX\0"
"\0"
- /* _mesa_function_pool[23581]: PixelMapuiv (offset 252) */
+ /* _mesa_function_pool[23766]: PixelMapuiv (offset 252) */
"iip\0"
"glPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[23600]: Color3dv (offset 12) */
+ /* _mesa_function_pool[23785]: Color3dv (offset 12) */
"p\0"
"glColor3dv\0"
"\0"
- /* _mesa_function_pool[23614]: IsTexture (offset 330) */
+ /* _mesa_function_pool[23799]: IsTexture (offset 330) */
"i\0"
"glIsTexture\0"
"glIsTextureEXT\0"
"\0"
- /* _mesa_function_pool[23644]: VertexAttrib4fvNV (will be remapped) */
+ /* _mesa_function_pool[23829]: VertexAttrib4fvNV (will be remapped) */
"ip\0"
"glVertexAttrib4fvNV\0"
"\0"
- /* _mesa_function_pool[23668]: BeginQuery (will be remapped) */
+ /* _mesa_function_pool[23853]: BeginQuery (will be remapped) */
"ii\0"
"glBeginQuery\0"
"glBeginQueryARB\0"
"\0"
- /* _mesa_function_pool[23701]: ColorPointerEXT (will be remapped) */
+ /* _mesa_function_pool[23886]: ColorPointerEXT (will be remapped) */
"iiiip\0"
"glColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[23726]: VertexWeightfvEXT (dynamic) */
+ /* _mesa_function_pool[23911]: ScissorIndexedv (will be remapped) */
+ "ip\0"
+ "glScissorIndexedv\0"
+ "\0"
+ /* _mesa_function_pool[23933]: VertexWeightfvEXT (dynamic) */
"p\0"
"glVertexWeightfvEXT\0"
"\0"
- /* _mesa_function_pool[23749]: VertexP3uiv (will be remapped) */
+ /* _mesa_function_pool[23956]: VertexP3uiv (will be remapped) */
"ip\0"
"glVertexP3uiv\0"
"\0"
- /* _mesa_function_pool[23767]: VertexAttrib3s (will be remapped) */
+ /* _mesa_function_pool[23974]: VertexAttrib3s (will be remapped) */
"iiii\0"
"glVertexAttrib3s\0"
"glVertexAttrib3sARB\0"
"\0"
- /* _mesa_function_pool[23810]: GetCombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[24017]: GetCombinerStageParameterfvNV (dynamic) */
"iip\0"
"glGetCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[23847]: TexCoord4i (offset 122) */
+ /* _mesa_function_pool[24054]: TexCoord4i (offset 122) */
"iiii\0"
"glTexCoord4i\0"
"\0"
- /* _mesa_function_pool[23866]: Color4ubVertex2fSUN (dynamic) */
+ /* _mesa_function_pool[24073]: Color4ubVertex2fSUN (dynamic) */
"iiiiff\0"
"glColor4ubVertex2fSUN\0"
"\0"
- /* _mesa_function_pool[23896]: FragmentColorMaterialSGIX (dynamic) */
+ /* _mesa_function_pool[24103]: FragmentColorMaterialSGIX (dynamic) */
"ii\0"
"glFragmentColorMaterialSGIX\0"
"\0"
- /* _mesa_function_pool[23928]: CurrentPaletteMatrixARB (dynamic) */
+ /* _mesa_function_pool[24135]: CurrentPaletteMatrixARB (dynamic) */
"i\0"
"glCurrentPaletteMatrixARB\0"
"glCurrentPaletteMatrixOES\0"
"\0"
- /* _mesa_function_pool[23983]: GetMapdv (offset 266) */
+ /* _mesa_function_pool[24190]: GetMapdv (offset 266) */
"iip\0"
"glGetMapdv\0"
"\0"
- /* _mesa_function_pool[23999]: Color4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[24206]: Color4fNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[24034]: GetStringi (will be remapped) */
+ /* _mesa_function_pool[24241]: GetStringi (will be remapped) */
"ii\0"
"glGetStringi\0"
"\0"
- /* _mesa_function_pool[24051]: MultiTexCoord3iv (offset 397) */
+ /* _mesa_function_pool[24258]: MultiTexCoord3iv (offset 397) */
"ip\0"
"glMultiTexCoord3iv\0"
"glMultiTexCoord3ivARB\0"
"\0"
- /* _mesa_function_pool[24096]: GetUniformLocation (will be remapped) */
+ /* _mesa_function_pool[24303]: GetUniformLocation (will be remapped) */
"ip\0"
"glGetUniformLocation\0"
"glGetUniformLocationARB\0"
"\0"
- /* _mesa_function_pool[24145]: PixelStoref (offset 249) */
+ /* _mesa_function_pool[24352]: PixelStoref (offset 249) */
"if\0"
"glPixelStoref\0"
"\0"
- /* _mesa_function_pool[24163]: WindowPos2iv (will be remapped) */
+ /* _mesa_function_pool[24370]: WindowPos2iv (will be remapped) */
"p\0"
"glWindowPos2iv\0"
"glWindowPos2ivARB\0"
"glWindowPos2ivMESA\0"
"\0"
- /* _mesa_function_pool[24218]: Binormal3dEXT (dynamic) */
+ /* _mesa_function_pool[24425]: Binormal3dEXT (dynamic) */
"ddd\0"
"glBinormal3dEXT\0"
"\0"
- /* _mesa_function_pool[24239]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[24446]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */
"iiiiifff\0"
"glReplacementCodeuiColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[24288]: PixelStorei (offset 250) */
+ /* _mesa_function_pool[24495]: PixelStorei (offset 250) */
"ii\0"
"glPixelStorei\0"
"\0"
- /* _mesa_function_pool[24306]: IsBuffer (will be remapped) */
+ /* _mesa_function_pool[24513]: IsBuffer (will be remapped) */
"i\0"
"glIsBuffer\0"
"glIsBufferARB\0"
"\0"
- /* _mesa_function_pool[24334]: VertexAttrib2fNV (will be remapped) */
+ /* _mesa_function_pool[24541]: VertexAttrib2fNV (will be remapped) */
"iff\0"
"glVertexAttrib2fNV\0"
"\0"
- /* _mesa_function_pool[24358]: FragmentMaterialiSGIX (dynamic) */
+ /* _mesa_function_pool[24565]: FragmentMaterialiSGIX (dynamic) */
"iii\0"
"glFragmentMaterialiSGIX\0"
"\0"
- /* _mesa_function_pool[24387]: VertexAttribI4ubv (will be remapped) */
+ /* _mesa_function_pool[24594]: VertexAttribI4ubv (will be remapped) */
"ip\0"
"glVertexAttribI4ubvEXT\0"
"glVertexAttribI4ubv\0"
"\0"
- /* _mesa_function_pool[24434]: EvalCoord2dv (offset 233) */
+ /* _mesa_function_pool[24641]: EvalCoord2dv (offset 233) */
"p\0"
"glEvalCoord2dv\0"
"\0"
- /* _mesa_function_pool[24452]: GenVertexArrays (will be remapped) */
+ /* _mesa_function_pool[24659]: GenVertexArrays (will be remapped) */
"ip\0"
"glGenVertexArrays\0"
"glGenVertexArraysOES\0"
"\0"
- /* _mesa_function_pool[24495]: ColorMaterial (offset 151) */
+ /* _mesa_function_pool[24702]: ColorMaterial (offset 151) */
"ii\0"
"glColorMaterial\0"
"\0"
- /* _mesa_function_pool[24515]: InvalidateSubFramebuffer (will be remapped) */
+ /* _mesa_function_pool[24722]: InvalidateSubFramebuffer (will be remapped) */
"iipiiii\0"
"glInvalidateSubFramebuffer\0"
"\0"
- /* _mesa_function_pool[24551]: SamplePatternSGIS (will be remapped) */
+ /* _mesa_function_pool[24758]: SamplePatternSGIS (will be remapped) */
"i\0"
"glSamplePatternSGIS\0"
"glSamplePatternEXT\0"
"\0"
- /* _mesa_function_pool[24593]: ColorP4ui (will be remapped) */
+ /* _mesa_function_pool[24800]: ColorP4ui (will be remapped) */
"ii\0"
"glColorP4ui\0"
"\0"
- /* _mesa_function_pool[24609]: VertexAttribs1svNV (will be remapped) */
+ /* _mesa_function_pool[24816]: VertexAttribs1svNV (will be remapped) */
"iip\0"
"glVertexAttribs1svNV\0"
"\0"
- /* _mesa_function_pool[24635]: DrawTexsOES (will be remapped) */
+ /* _mesa_function_pool[24842]: DrawTexsOES (will be remapped) */
"iiiii\0"
"glDrawTexsOES\0"
"\0"
- /* _mesa_function_pool[24656]: Uniform2ui (will be remapped) */
+ /* _mesa_function_pool[24863]: Uniform2ui (will be remapped) */
"iii\0"
"glUniform2uiEXT\0"
"glUniform2ui\0"
"\0"
- /* _mesa_function_pool[24690]: VertexAttrib1fvNV (will be remapped) */
+ /* _mesa_function_pool[24897]: VertexAttrib1fvNV (will be remapped) */
"ip\0"
"glVertexAttrib1fvNV\0"
"\0"
- /* _mesa_function_pool[24714]: TexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[24921]: TexBumpParameterivATI (will be remapped) */
"ip\0"
"glTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[24742]: GetSeparableFilter (offset 359) */
+ /* _mesa_function_pool[24949]: GetSeparableFilter (offset 359) */
"iiippp\0"
"glGetSeparableFilter\0"
"glGetSeparableFilterEXT\0"
"\0"
- /* _mesa_function_pool[24795]: DeleteVertexArrays (will be remapped) */
+ /* _mesa_function_pool[25002]: DeleteVertexArrays (will be remapped) */
"ip\0"
"glDeleteVertexArrays\0"
"glDeleteVertexArraysAPPLE\0"
"glDeleteVertexArraysOES\0"
"\0"
- /* _mesa_function_pool[24870]: SpriteParameteriSGIX (dynamic) */
+ /* _mesa_function_pool[25077]: SpriteParameteriSGIX (dynamic) */
"ii\0"
"glSpriteParameteriSGIX\0"
"\0"
- /* _mesa_function_pool[24897]: RequestResidentProgramsNV (will be remapped) */
+ /* _mesa_function_pool[25104]: RequestResidentProgramsNV (will be remapped) */
"ip\0"
"glRequestResidentProgramsNV\0"
"\0"
- /* _mesa_function_pool[24929]: TexCoordP3uiv (will be remapped) */
+ /* _mesa_function_pool[25136]: TexCoordP3uiv (will be remapped) */
"ip\0"
"glTexCoordP3uiv\0"
"\0"
- /* _mesa_function_pool[24949]: ReplacementCodeusSUN (dynamic) */
+ /* _mesa_function_pool[25156]: ReplacementCodeusSUN (dynamic) */
"i\0"
"glReplacementCodeusSUN\0"
"\0"
- /* _mesa_function_pool[24975]: FeedbackBuffer (offset 194) */
+ /* _mesa_function_pool[25182]: FeedbackBuffer (offset 194) */
"iip\0"
"glFeedbackBuffer\0"
"\0"
- /* _mesa_function_pool[24997]: RasterPos2iv (offset 67) */
+ /* _mesa_function_pool[25204]: RasterPos2iv (offset 67) */
"p\0"
"glRasterPos2iv\0"
"\0"
- /* _mesa_function_pool[25015]: TexImage1D (offset 182) */
+ /* _mesa_function_pool[25222]: TexImage1D (offset 182) */
"iiiiiiip\0"
"glTexImage1D\0"
"\0"
- /* _mesa_function_pool[25038]: TexEnvxv (will be remapped) */
+ /* _mesa_function_pool[25245]: TexEnvxv (will be remapped) */
"iip\0"
"glTexEnvxvOES\0"
"glTexEnvxv\0"
"\0"
- /* _mesa_function_pool[25068]: ListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[25275]: ListParameterivSGIX (dynamic) */
"iip\0"
"glListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[25095]: MultiDrawElementsEXT (will be remapped) */
+ /* _mesa_function_pool[25302]: MultiDrawElementsEXT (will be remapped) */
"ipipi\0"
"glMultiDrawElements\0"
"glMultiDrawElementsEXT\0"
"\0"
- /* _mesa_function_pool[25145]: Color3s (offset 17) */
+ /* _mesa_function_pool[25352]: Color3s (offset 17) */
"iii\0"
"glColor3s\0"
"\0"
- /* _mesa_function_pool[25160]: MultiTexCoord3s (offset 398) */
+ /* _mesa_function_pool[25367]: MultiTexCoord3s (offset 398) */
"iiii\0"
"glMultiTexCoord3s\0"
"glMultiTexCoord3sARB\0"
"\0"
- /* _mesa_function_pool[25205]: WeightusvARB (dynamic) */
+ /* _mesa_function_pool[25412]: WeightusvARB (dynamic) */
"ip\0"
"glWeightusvARB\0"
"\0"
- /* _mesa_function_pool[25224]: TexCoordPointer (offset 320) */
+ /* _mesa_function_pool[25431]: TexCoordPointer (offset 320) */
"iiip\0"
"glTexCoordPointer\0"
"\0"
- /* _mesa_function_pool[25248]: GetnSeparableFilterARB (will be remapped) */
+ /* _mesa_function_pool[25455]: GetnSeparableFilterARB (will be remapped) */
"iiiipipp\0"
"glGetnSeparableFilterARB\0"
"\0"
- /* _mesa_function_pool[25283]: InvalidateBufferData (will be remapped) */
+ /* _mesa_function_pool[25490]: InvalidateBufferData (will be remapped) */
"i\0"
"glInvalidateBufferData\0"
"\0"
- /* _mesa_function_pool[25309]: Color3i (offset 15) */
+ /* _mesa_function_pool[25516]: Color3i (offset 15) */
"iii\0"
"glColor3i\0"
"\0"
- /* _mesa_function_pool[25324]: FrontFace (offset 157) */
+ /* _mesa_function_pool[25531]: FrontFace (offset 157) */
"i\0"
"glFrontFace\0"
"\0"
- /* _mesa_function_pool[25339]: EvalCoord2d (offset 232) */
+ /* _mesa_function_pool[25546]: EvalCoord2d (offset 232) */
"dd\0"
"glEvalCoord2d\0"
"\0"
- /* _mesa_function_pool[25357]: EvalCoord2f (offset 234) */
+ /* _mesa_function_pool[25564]: EvalCoord2f (offset 234) */
"ff\0"
"glEvalCoord2f\0"
"\0"
- /* _mesa_function_pool[25375]: Color3b (offset 9) */
+ /* _mesa_function_pool[25582]: Color3b (offset 9) */
"iii\0"
"glColor3b\0"
"\0"
- /* _mesa_function_pool[25390]: ExecuteProgramNV (will be remapped) */
+ /* _mesa_function_pool[25597]: ExecuteProgramNV (will be remapped) */
"iip\0"
"glExecuteProgramNV\0"
"\0"
- /* _mesa_function_pool[25414]: Color3f (offset 13) */
+ /* _mesa_function_pool[25621]: Color3f (offset 13) */
"fff\0"
"glColor3f\0"
"\0"
- /* _mesa_function_pool[25429]: LightEnviSGIX (dynamic) */
+ /* _mesa_function_pool[25636]: LightEnviSGIX (dynamic) */
"ii\0"
"glLightEnviSGIX\0"
"\0"
- /* _mesa_function_pool[25449]: Color3d (offset 11) */
+ /* _mesa_function_pool[25656]: Color3d (offset 11) */
"ddd\0"
"glColor3d\0"
"\0"
- /* _mesa_function_pool[25464]: GetVertexAttribdv (will be remapped) */
+ /* _mesa_function_pool[25671]: GetVertexAttribdv (will be remapped) */
"iip\0"
"glGetVertexAttribdv\0"
"glGetVertexAttribdvARB\0"
"\0"
- /* _mesa_function_pool[25512]: VDPAUUnregisterSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[25719]: VDPAUUnregisterSurfaceNV (will be remapped) */
"i\0"
"glVDPAUUnregisterSurfaceNV\0"
"\0"
- /* _mesa_function_pool[25542]: Normal3dv (offset 55) */
+ /* _mesa_function_pool[25749]: Normal3dv (offset 55) */
"p\0"
"glNormal3dv\0"
"\0"
- /* _mesa_function_pool[25557]: Lightf (offset 159) */
+ /* _mesa_function_pool[25764]: Lightf (offset 159) */
"iif\0"
"glLightf\0"
"\0"
- /* _mesa_function_pool[25571]: FinishTextureSUNX (dynamic) */
+ /* _mesa_function_pool[25778]: FinishTextureSUNX (dynamic) */
"\0"
"glFinishTextureSUNX\0"
"\0"
- /* _mesa_function_pool[25593]: MatrixMode (offset 293) */
+ /* _mesa_function_pool[25800]: MatrixMode (offset 293) */
"i\0"
"glMatrixMode\0"
"\0"
- /* _mesa_function_pool[25609]: GetPixelMapusv (offset 273) */
+ /* _mesa_function_pool[25816]: GetPixelMapusv (offset 273) */
"ip\0"
"glGetPixelMapusv\0"
"\0"
- /* _mesa_function_pool[25630]: Lighti (offset 161) */
+ /* _mesa_function_pool[25837]: Lighti (offset 161) */
"iii\0"
"glLighti\0"
"\0"
- /* _mesa_function_pool[25644]: VertexAttribPointerNV (will be remapped) */
+ /* _mesa_function_pool[25851]: VertexAttribPointerNV (will be remapped) */
"iiiip\0"
"glVertexAttribPointerNV\0"
"\0"
- /* _mesa_function_pool[25675]: GenFramebuffers (will be remapped) */
+ /* _mesa_function_pool[25882]: GenFramebuffers (will be remapped) */
"ip\0"
"glGenFramebuffers\0"
"glGenFramebuffersEXT\0"
"glGenFramebuffersOES\0"
"\0"
- /* _mesa_function_pool[25739]: GenBuffers (will be remapped) */
+ /* _mesa_function_pool[25946]: GenBuffers (will be remapped) */
"ip\0"
"glGenBuffers\0"
"glGenBuffersARB\0"
"\0"
- /* _mesa_function_pool[25772]: VDPAUMapSurfacesNV (will be remapped) */
+ /* _mesa_function_pool[25979]: VDPAUMapSurfacesNV (will be remapped) */
"ip\0"
"glVDPAUMapSurfacesNV\0"
"\0"
- /* _mesa_function_pool[25797]: ClearDepthx (will be remapped) */
+ /* _mesa_function_pool[26004]: ClearDepthx (will be remapped) */
"i\0"
"glClearDepthxOES\0"
"glClearDepthx\0"
"\0"
- /* _mesa_function_pool[25831]: Uniform4uiv (will be remapped) */
+ /* _mesa_function_pool[26038]: Uniform4uiv (will be remapped) */
"iip\0"
"glUniform4uivEXT\0"
"glUniform4uiv\0"
"\0"
- /* _mesa_function_pool[25867]: IsFramebuffer (will be remapped) */
+ /* _mesa_function_pool[26074]: IsFramebuffer (will be remapped) */
"i\0"
"glIsFramebuffer\0"
"glIsFramebufferEXT\0"
"glIsFramebufferOES\0"
"\0"
- /* _mesa_function_pool[25924]: PopDebugGroup (will be remapped) */
+ /* _mesa_function_pool[26131]: PopDebugGroup (will be remapped) */
"\0"
"glPopDebugGroup\0"
"\0"
- /* _mesa_function_pool[25942]: PixelTransformParameterfEXT (dynamic) */
+ /* _mesa_function_pool[26149]: PixelTransformParameterfEXT (dynamic) */
"iif\0"
"glPixelTransformParameterfEXT\0"
"\0"
- /* _mesa_function_pool[25977]: BlendEquationSeparate (will be remapped) */
+ /* _mesa_function_pool[26184]: BlendEquationSeparate (will be remapped) */
"ii\0"
"glBlendEquationSeparate\0"
"glBlendEquationSeparateEXT\0"
"glBlendEquationSeparateATI\0"
"glBlendEquationSeparateOES\0"
"\0"
- /* _mesa_function_pool[26086]: Lightx (will be remapped) */
+ /* _mesa_function_pool[26293]: Lightx (will be remapped) */
"iii\0"
"glLightxOES\0"
"glLightx\0"
"\0"
- /* _mesa_function_pool[26112]: PixelTransformParameteriEXT (dynamic) */
+ /* _mesa_function_pool[26319]: PixelTransformParameteriEXT (dynamic) */
"iii\0"
"glPixelTransformParameteriEXT\0"
"\0"
- /* _mesa_function_pool[26147]: GetDoublev (offset 260) */
+ /* _mesa_function_pool[26354]: GetDoublev (offset 260) */
"ip\0"
"glGetDoublev\0"
"\0"
- /* _mesa_function_pool[26164]: MultiTexCoordP4ui (will be remapped) */
+ /* _mesa_function_pool[26371]: MultiTexCoordP4ui (will be remapped) */
"iii\0"
"glMultiTexCoordP4ui\0"
"\0"
- /* _mesa_function_pool[26189]: GetObjectLabel (will be remapped) */
+ /* _mesa_function_pool[26396]: GetObjectLabel (will be remapped) */
"iiipp\0"
"glGetObjectLabel\0"
"\0"
- /* _mesa_function_pool[26213]: MultMatrixd (offset 295) */
+ /* _mesa_function_pool[26420]: MultMatrixd (offset 295) */
"p\0"
"glMultMatrixd\0"
"\0"
- /* _mesa_function_pool[26230]: MultMatrixf (offset 294) */
+ /* _mesa_function_pool[26437]: MultMatrixf (offset 294) */
"p\0"
"glMultMatrixf\0"
"\0"
- /* _mesa_function_pool[26247]: TextureMaterialEXT (dynamic) */
+ /* _mesa_function_pool[26454]: TextureMaterialEXT (dynamic) */
"ii\0"
"glTextureMaterialEXT\0"
"\0"
- /* _mesa_function_pool[26272]: TexCoord2fColor4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[26479]: TexCoord2fColor4ubVertex3fSUN (dynamic) */
"ffiiiifff\0"
"glTexCoord2fColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[26315]: VertexAttrib1d (will be remapped) */
+ /* _mesa_function_pool[26522]: VertexAttrib1d (will be remapped) */
"id\0"
"glVertexAttrib1d\0"
"glVertexAttrib1dARB\0"
"\0"
- /* _mesa_function_pool[26356]: CompressedTexImage1D (will be remapped) */
+ /* _mesa_function_pool[26563]: CompressedTexImage1D (will be remapped) */
"iiiiiip\0"
"glCompressedTexImage1D\0"
"glCompressedTexImage1DARB\0"
"\0"
- /* _mesa_function_pool[26414]: UnlockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[26621]: UnlockArraysEXT (will be remapped) */
"\0"
"glUnlockArraysEXT\0"
"\0"
- /* _mesa_function_pool[26434]: TexBufferRange (will be remapped) */
+ /* _mesa_function_pool[26641]: TexBufferRange (will be remapped) */
"iiiii\0"
"glTexBufferRange\0"
"\0"
- /* _mesa_function_pool[26458]: MultiTexCoord4fvARB (offset 403) */
+ /* _mesa_function_pool[26665]: MultiTexCoord4fvARB (offset 403) */
"ip\0"
"glMultiTexCoord4fv\0"
"glMultiTexCoord4fvARB\0"
"\0"
- /* _mesa_function_pool[26503]: TagSampleBufferSGIX (dynamic) */
+ /* _mesa_function_pool[26710]: TagSampleBufferSGIX (dynamic) */
"\0"
"glTagSampleBufferSGIX\0"
"\0"
- /* _mesa_function_pool[26527]: UniformMatrix2x3fv (will be remapped) */
+ /* _mesa_function_pool[26734]: UniformMatrix2x3fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x3fv\0"
"\0"
- /* _mesa_function_pool[26554]: SamplerParameteri (will be remapped) */
+ /* _mesa_function_pool[26761]: SamplerParameteri (will be remapped) */
"iii\0"
"glSamplerParameteri\0"
"\0"
- /* _mesa_function_pool[26579]: SamplerParameterf (will be remapped) */
+ /* _mesa_function_pool[26786]: SamplerParameterf (will be remapped) */
"iif\0"
"glSamplerParameterf\0"
"\0"
- /* _mesa_function_pool[26604]: CombinerParameteriNV (dynamic) */
+ /* _mesa_function_pool[26811]: CombinerParameteriNV (dynamic) */
"ii\0"
"glCombinerParameteriNV\0"
"\0"
- /* _mesa_function_pool[26631]: VertexAttrib1s (will be remapped) */
+ /* _mesa_function_pool[26838]: VertexAttrib1s (will be remapped) */
"ii\0"
"glVertexAttrib1s\0"
"glVertexAttrib1sARB\0"
"\0"
- /* _mesa_function_pool[26672]: EnableVertexAttribArray (will be remapped) */
+ /* _mesa_function_pool[26879]: EnableVertexAttribArray (will be remapped) */
"i\0"
"glEnableVertexAttribArray\0"
"glEnableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[26730]: FrameZoomSGIX (dynamic) */
+ /* _mesa_function_pool[26937]: FrameZoomSGIX (dynamic) */
"i\0"
"glFrameZoomSGIX\0"
"\0"
- /* _mesa_function_pool[26749]: Normal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[26956]: Normal3fVertex3fvSUN (dynamic) */
"pp\0"
"glNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[26776]: Tangent3dvEXT (dynamic) */
+ /* _mesa_function_pool[26983]: Tangent3dvEXT (dynamic) */
"p\0"
"glTangent3dvEXT\0"
"\0"
- /* _mesa_function_pool[26795]: MultiDrawElementsIndirect (will be remapped) */
+ /* _mesa_function_pool[27002]: MultiDrawElementsIndirect (will be remapped) */
"iipii\0"
"glMultiDrawElementsIndirect\0"
"\0"
- /* _mesa_function_pool[26830]: RasterPos4sv (offset 85) */
+ /* _mesa_function_pool[27037]: RasterPos4sv (offset 85) */
"p\0"
"glRasterPos4sv\0"
"\0"
- /* _mesa_function_pool[26848]: VertexAttrib3fvARB (will be remapped) */
+ /* _mesa_function_pool[27055]: VertexAttrib3fvARB (will be remapped) */
"ip\0"
"glVertexAttrib3fv\0"
"glVertexAttrib3fvARB\0"
"\0"
- /* _mesa_function_pool[26891]: ClearColor (offset 206) */
+ /* _mesa_function_pool[27098]: ClearColor (offset 206) */
"ffff\0"
"glClearColor\0"
"\0"
- /* _mesa_function_pool[26910]: Materialx (will be remapped) */
+ /* _mesa_function_pool[27117]: Materialx (will be remapped) */
"iii\0"
"glMaterialxOES\0"
"glMaterialx\0"
"\0"
- /* _mesa_function_pool[26942]: GetSynciv (will be remapped) */
+ /* _mesa_function_pool[27149]: GetSynciv (will be remapped) */
"iiipp\0"
"glGetSynciv\0"
"\0"
- /* _mesa_function_pool[26961]: VertexAttrib1svNV (will be remapped) */
+ /* _mesa_function_pool[27168]: VertexAttrib1svNV (will be remapped) */
"ip\0"
"glVertexAttrib1svNV\0"
"\0"
- /* _mesa_function_pool[26985]: SecondaryColor3ubv (will be remapped) */
+ /* _mesa_function_pool[27192]: SecondaryColor3ubv (will be remapped) */
"p\0"
"glSecondaryColor3ubv\0"
"glSecondaryColor3ubvEXT\0"
"\0"
- /* _mesa_function_pool[27033]: PointParameteri (will be remapped) */
+ /* _mesa_function_pool[27240]: PointParameteri (will be remapped) */
"ii\0"
"glPointParameteri\0"
"glPointParameteriNV\0"
"\0"
- /* _mesa_function_pool[27075]: PointParameterf (will be remapped) */
+ /* _mesa_function_pool[27282]: PointParameterf (will be remapped) */
"if\0"
"glPointParameterf\0"
"glPointParameterfARB\0"
"glPointParameterfEXT\0"
"glPointParameterfSGIS\0"
"\0"
- /* _mesa_function_pool[27161]: GlobalAlphaFactorsSUN (dynamic) */
+ /* _mesa_function_pool[27368]: GlobalAlphaFactorsSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorsSUN\0"
"\0"
- /* _mesa_function_pool[27188]: GetDebugMessageLog (will be remapped) */
+ /* _mesa_function_pool[27395]: GetDebugMessageLog (will be remapped) */
"iipppppp\0"
"glGetDebugMessageLog\0"
"\0"
- /* _mesa_function_pool[27219]: TexEnviv (offset 187) */
+ /* _mesa_function_pool[27426]: TexEnviv (offset 187) */
"iip\0"
"glTexEnviv\0"
"\0"
- /* _mesa_function_pool[27235]: TexSubImage3D (offset 372) */
+ /* _mesa_function_pool[27442]: TexSubImage3D (offset 372) */
"iiiiiiiiiip\0"
"glTexSubImage3D\0"
"glTexSubImage3DEXT\0"
"glTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[27302]: Tangent3fEXT (dynamic) */
+ /* _mesa_function_pool[27509]: Tangent3fEXT (dynamic) */
"fff\0"
"glTangent3fEXT\0"
"\0"
- /* _mesa_function_pool[27322]: DeformationMap3fSGIX (dynamic) */
+ /* _mesa_function_pool[27529]: DeformationMap3fSGIX (dynamic) */
"iffiiffiiffiip\0"
"glDeformationMap3fSGIX\0"
"\0"
- /* _mesa_function_pool[27361]: BeginPerfMonitorAMD (will be remapped) */
+ /* _mesa_function_pool[27568]: BeginPerfMonitorAMD (will be remapped) */
"i\0"
"glBeginPerfMonitorAMD\0"
"\0"
- /* _mesa_function_pool[27386]: MatrixIndexubvARB (dynamic) */
+ /* _mesa_function_pool[27593]: MatrixIndexubvARB (dynamic) */
"ip\0"
"glMatrixIndexubvARB\0"
"\0"
- /* _mesa_function_pool[27410]: Color4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[27617]: Color4fNormal3fVertex3fSUN (dynamic) */
"ffffffffff\0"
"glColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[27451]: PixelTexGenParameterfSGIS (dynamic) */
+ /* _mesa_function_pool[27658]: PixelTexGenParameterfSGIS (dynamic) */
"if\0"
"glPixelTexGenParameterfSGIS\0"
"\0"
- /* _mesa_function_pool[27483]: CreateShader (will be remapped) */
+ /* _mesa_function_pool[27690]: CreateShader (will be remapped) */
"i\0"
"glCreateShader\0"
"\0"
- /* _mesa_function_pool[27501]: GetColorTableParameterfv (offset 344) */
+ /* _mesa_function_pool[27708]: GetColorTableParameterfv (offset 344) */
"iip\0"
"glGetColorTableParameterfv\0"
"glGetColorTableParameterfvSGI\0"
"glGetColorTableParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[27593]: FragmentLightModelfvSGIX (dynamic) */
+ /* _mesa_function_pool[27800]: FragmentLightModelfvSGIX (dynamic) */
"ip\0"
"glFragmentLightModelfvSGIX\0"
"\0"
- /* _mesa_function_pool[27624]: FramebufferTexture2D (will be remapped) */
+ /* _mesa_function_pool[27831]: FramebufferTexture2D (will be remapped) */
"iiiii\0"
"glFramebufferTexture2D\0"
"glFramebufferTexture2DEXT\0"
"glFramebufferTexture2DOES\0"
"\0"
- /* _mesa_function_pool[27706]: Bitmap (offset 8) */
+ /* _mesa_function_pool[27913]: Bitmap (offset 8) */
"iiffffp\0"
"glBitmap\0"
"\0"
- /* _mesa_function_pool[27724]: MultiTexCoord3fARB (offset 394) */
+ /* _mesa_function_pool[27931]: MultiTexCoord3fARB (offset 394) */
"ifff\0"
"glMultiTexCoord3f\0"
"glMultiTexCoord3fARB\0"
"\0"
- /* _mesa_function_pool[27769]: GetTexLevelParameterfv (offset 284) */
+ /* _mesa_function_pool[27976]: GetTexLevelParameterfv (offset 284) */
"iiip\0"
"glGetTexLevelParameterfv\0"
"\0"
- /* _mesa_function_pool[27800]: GetPixelTexGenParameterfvSGIS (dynamic) */
+ /* _mesa_function_pool[28007]: GetPixelTexGenParameterfvSGIS (dynamic) */
"ip\0"
"glGetPixelTexGenParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[27836]: CheckFramebufferStatus (will be remapped) */
+ /* _mesa_function_pool[28043]: CheckFramebufferStatus (will be remapped) */
"i\0"
"glCheckFramebufferStatus\0"
"glCheckFramebufferStatusEXT\0"
"glCheckFramebufferStatusOES\0"
"\0"
- /* _mesa_function_pool[27920]: DrawTransformFeedbackStream (will be remapped) */
+ /* _mesa_function_pool[28127]: DrawTransformFeedbackStream (will be remapped) */
"iii\0"
"glDrawTransformFeedbackStream\0"
"\0"
- /* _mesa_function_pool[27955]: Vertex2sv (offset 133) */
+ /* _mesa_function_pool[28162]: Vertex2sv (offset 133) */
"p\0"
"glVertex2sv\0"
"\0"
- /* _mesa_function_pool[27970]: GetIntegerv (offset 263) */
+ /* _mesa_function_pool[28177]: GetIntegerv (offset 263) */
"ip\0"
"glGetIntegerv\0"
"\0"
- /* _mesa_function_pool[27988]: GenFragmentShadersATI (will be remapped) */
+ /* _mesa_function_pool[28195]: GenFragmentShadersATI (will be remapped) */
"i\0"
"glGenFragmentShadersATI\0"
"\0"
- /* _mesa_function_pool[28015]: GetShaderSource (will be remapped) */
+ /* _mesa_function_pool[28222]: GetShaderSource (will be remapped) */
"iipp\0"
"glGetShaderSource\0"
"glGetShaderSourceARB\0"
"\0"
- /* _mesa_function_pool[28060]: GetTexBumpParameterfvATI (will be remapped) */
+ /* _mesa_function_pool[28267]: GetTexBumpParameterfvATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterfvATI\0"
"\0"
- /* _mesa_function_pool[28091]: BindProgramARB (will be remapped) */
+ /* _mesa_function_pool[28298]: BindProgramARB (will be remapped) */
"ii\0"
"glBindProgramARB\0"
"glBindProgramNV\0"
"\0"
- /* _mesa_function_pool[28128]: GetnMapdvARB (will be remapped) */
+ /* _mesa_function_pool[28335]: GetnMapdvARB (will be remapped) */
"iiip\0"
"glGetnMapdvARB\0"
"\0"
- /* _mesa_function_pool[28149]: VertexAttrib3sNV (will be remapped) */
+ /* _mesa_function_pool[28356]: VertexAttrib3sNV (will be remapped) */
"iiii\0"
"glVertexAttrib3sNV\0"
"\0"
- /* _mesa_function_pool[28174]: VertexAttribI2uivEXT (will be remapped) */
+ /* _mesa_function_pool[28381]: VertexAttribI2uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI2uivEXT\0"
"glVertexAttribI2uiv\0"
"\0"
- /* _mesa_function_pool[28221]: GetProgramEnvParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[28428]: GetProgramEnvParameterfvARB (will be remapped) */
"iip\0"
"glGetProgramEnvParameterfvARB\0"
"\0"
- /* _mesa_function_pool[28256]: GetTrackMatrixivNV (will be remapped) */
+ /* _mesa_function_pool[28463]: GetTrackMatrixivNV (will be remapped) */
"iiip\0"
"glGetTrackMatrixivNV\0"
"\0"
- /* _mesa_function_pool[28283]: VertexAttrib3svNV (will be remapped) */
+ /* _mesa_function_pool[28490]: VertexAttrib3svNV (will be remapped) */
"ip\0"
"glVertexAttrib3svNV\0"
"\0"
- /* _mesa_function_pool[28307]: GetActiveUniform (will be remapped) */
+ /* _mesa_function_pool[28514]: GetActiveUniform (will be remapped) */
"iiipppp\0"
"glGetActiveUniform\0"
"glGetActiveUniformARB\0"
"\0"
- /* _mesa_function_pool[28357]: DeleteBuffers (will be remapped) */
+ /* _mesa_function_pool[28564]: DeleteBuffers (will be remapped) */
"ip\0"
"glDeleteBuffers\0"
"glDeleteBuffersARB\0"
"\0"
- /* _mesa_function_pool[28396]: AlphaFuncx (will be remapped) */
+ /* _mesa_function_pool[28603]: AlphaFuncx (will be remapped) */
"ii\0"
"glAlphaFuncxOES\0"
"glAlphaFuncx\0"
"\0"
- /* _mesa_function_pool[28429]: TexCoord2fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[28636]: TexCoord2fNormal3fVertex3fSUN (dynamic) */
"ffffffff\0"
"glTexCoord2fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[28471]: GetTexEnviv (offset 277) */
+ /* _mesa_function_pool[28678]: GetTexEnviv (offset 277) */
"iip\0"
"glGetTexEnviv\0"
"\0"
- /* _mesa_function_pool[28490]: DrawTexivOES (will be remapped) */
+ /* _mesa_function_pool[28697]: DrawTexivOES (will be remapped) */
"p\0"
"glDrawTexivOES\0"
"\0"
- /* _mesa_function_pool[28508]: GetBufferSubData (will be remapped) */
+ /* _mesa_function_pool[28715]: GetBufferSubData (will be remapped) */
"iiip\0"
"glGetBufferSubData\0"
"glGetBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[28555]: EGLImageTargetRenderbufferStorageOES (will be remapped) */
+ /* _mesa_function_pool[28762]: EGLImageTargetRenderbufferStorageOES (will be remapped) */
"ip\0"
"glEGLImageTargetRenderbufferStorageOES\0"
"\0"
- /* _mesa_function_pool[28598]: VertexAttribI2ivEXT (will be remapped) */
+ /* _mesa_function_pool[28805]: VertexAttribI2ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI2ivEXT\0"
"glVertexAttribI2iv\0"
"\0"
- /* _mesa_function_pool[28643]: PopClientAttrib (offset 334) */
+ /* _mesa_function_pool[28850]: PopClientAttrib (offset 334) */
"\0"
"glPopClientAttrib\0"
"\0"
- /* _mesa_function_pool[28663]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[28870]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
"iffffffffffff\0"
"glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[28734]: DetachObjectARB (will be remapped) */
+ /* _mesa_function_pool[28941]: DetachObjectARB (will be remapped) */
"ii\0"
"glDetachObjectARB\0"
"\0"
- /* _mesa_function_pool[28756]: VertexBlendARB (dynamic) */
+ /* _mesa_function_pool[28963]: VertexBlendARB (dynamic) */
"i\0"
"glVertexBlendARB\0"
"\0"
- /* _mesa_function_pool[28776]: EndTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[28983]: EndTransformFeedback (will be remapped) */
"\0"
"glEndTransformFeedback\0"
"glEndTransformFeedbackEXT\0"
"\0"
- /* _mesa_function_pool[28827]: SeparableFilter2D (offset 360) */
+ /* _mesa_function_pool[29034]: SeparableFilter2D (offset 360) */
"iiiiiipp\0"
"glSeparableFilter2D\0"
"glSeparableFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[28880]: GetQueryObjectuiv (will be remapped) */
+ /* _mesa_function_pool[29087]: GetQueryObjectuiv (will be remapped) */
"iip\0"
"glGetQueryObjectuiv\0"
"glGetQueryObjectuivARB\0"
"\0"
- /* _mesa_function_pool[28928]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[29135]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[28973]: Map1d (offset 220) */
+ /* _mesa_function_pool[29180]: Map1d (offset 220) */
"iddiip\0"
"glMap1d\0"
"\0"
- /* _mesa_function_pool[28989]: Map1f (offset 221) */
+ /* _mesa_function_pool[29196]: Map1f (offset 221) */
"iffiip\0"
"glMap1f\0"
"\0"
- /* _mesa_function_pool[29005]: FlushRasterSGIX (dynamic) */
+ /* _mesa_function_pool[29212]: FlushRasterSGIX (dynamic) */
"\0"
"glFlushRasterSGIX\0"
"\0"
- /* _mesa_function_pool[29025]: ArrayElement (offset 306) */
+ /* _mesa_function_pool[29232]: ArrayElement (offset 306) */
"i\0"
"glArrayElement\0"
"glArrayElementEXT\0"
"\0"
- /* _mesa_function_pool[29061]: TexImage2D (offset 183) */
+ /* _mesa_function_pool[29268]: TexImage2D (offset 183) */
"iiiiiiiip\0"
"glTexImage2D\0"
"\0"
- /* _mesa_function_pool[29085]: DepthBoundsEXT (will be remapped) */
+ /* _mesa_function_pool[29292]: DepthBoundsEXT (will be remapped) */
"dd\0"
"glDepthBoundsEXT\0"
"\0"
- /* _mesa_function_pool[29106]: GetProgramivNV (will be remapped) */
+ /* _mesa_function_pool[29313]: GetProgramivNV (will be remapped) */
"iip\0"
"glGetProgramivNV\0"
"\0"
- /* _mesa_function_pool[29128]: GetMinmaxParameteriv (offset 366) */
+ /* _mesa_function_pool[29335]: GetMinmaxParameteriv (offset 366) */
"iip\0"
"glGetMinmaxParameteriv\0"
"glGetMinmaxParameterivEXT\0"
"\0"
- /* _mesa_function_pool[29182]: PixelTransferf (offset 247) */
+ /* _mesa_function_pool[29389]: PixelTransferf (offset 247) */
"if\0"
"glPixelTransferf\0"
"\0"
- /* _mesa_function_pool[29203]: CopyTexImage1D (offset 323) */
+ /* _mesa_function_pool[29410]: CopyTexImage1D (offset 323) */
"iiiiiii\0"
"glCopyTexImage1D\0"
"glCopyTexImage1DEXT\0"
"\0"
- /* _mesa_function_pool[29249]: PushMatrix (offset 298) */
+ /* _mesa_function_pool[29456]: PushMatrix (offset 298) */
"\0"
"glPushMatrix\0"
"\0"
- /* _mesa_function_pool[29264]: Fogiv (offset 156) */
+ /* _mesa_function_pool[29471]: Fogiv (offset 156) */
"ip\0"
"glFogiv\0"
"\0"
- /* _mesa_function_pool[29276]: EndQuery (will be remapped) */
+ /* _mesa_function_pool[29483]: EndQuery (will be remapped) */
"i\0"
"glEndQuery\0"
"glEndQueryARB\0"
"\0"
- /* _mesa_function_pool[29304]: TexCoord1dv (offset 95) */
+ /* _mesa_function_pool[29511]: TexCoord1dv (offset 95) */
"p\0"
"glTexCoord1dv\0"
"\0"
- /* _mesa_function_pool[29321]: AlphaFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[29528]: AlphaFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiii\0"
"glAlphaFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[29357]: PixelTransferi (offset 248) */
+ /* _mesa_function_pool[29564]: PixelTransferi (offset 248) */
"ii\0"
"glPixelTransferi\0"
"\0"
- /* _mesa_function_pool[29378]: GetnColorTableARB (will be remapped) */
+ /* _mesa_function_pool[29585]: GetnColorTableARB (will be remapped) */
"iiiip\0"
"glGetnColorTableARB\0"
"\0"
- /* _mesa_function_pool[29405]: VertexAttrib3fvNV (will be remapped) */
+ /* _mesa_function_pool[29612]: VertexAttrib3fvNV (will be remapped) */
"ip\0"
"glVertexAttrib3fvNV\0"
"\0"
- /* _mesa_function_pool[29429]: Rotatef (offset 300) */
+ /* _mesa_function_pool[29636]: Rotatef (offset 300) */
"ffff\0"
"glRotatef\0"
"\0"
- /* _mesa_function_pool[29445]: GetFinalCombinerInputParameterivNV (dynamic) */
+ /* _mesa_function_pool[29652]: GetFinalCombinerInputParameterivNV (dynamic) */
"iip\0"
"glGetFinalCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[29487]: Vertex3i (offset 138) */
+ /* _mesa_function_pool[29694]: Vertex3i (offset 138) */
"iii\0"
"glVertex3i\0"
"\0"
- /* _mesa_function_pool[29503]: GetTexEnvxv (will be remapped) */
+ /* _mesa_function_pool[29710]: GetTexEnvxv (will be remapped) */
"iip\0"
"glGetTexEnvxvOES\0"
"glGetTexEnvxv\0"
"\0"
- /* _mesa_function_pool[29539]: SecondaryColorP3ui (will be remapped) */
+ /* _mesa_function_pool[29746]: SecondaryColorP3ui (will be remapped) */
"ii\0"
"glSecondaryColorP3ui\0"
"\0"
- /* _mesa_function_pool[29564]: Vertex3f (offset 136) */
+ /* _mesa_function_pool[29771]: Vertex3f (offset 136) */
"fff\0"
"glVertex3f\0"
"\0"
- /* _mesa_function_pool[29580]: Clear (offset 203) */
+ /* _mesa_function_pool[29787]: Clear (offset 203) */
"i\0"
"glClear\0"
"\0"
- /* _mesa_function_pool[29591]: Vertex3d (offset 134) */
+ /* _mesa_function_pool[29798]: Vertex3d (offset 134) */
"ddd\0"
"glVertex3d\0"
"\0"
- /* _mesa_function_pool[29607]: GetMapParameterivNV (dynamic) */
+ /* _mesa_function_pool[29814]: GetMapParameterivNV (dynamic) */
"iip\0"
"glGetMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[29634]: IndexMaterialEXT (dynamic) */
+ /* _mesa_function_pool[29841]: IndexMaterialEXT (dynamic) */
"ii\0"
"glIndexMaterialEXT\0"
"\0"
- /* _mesa_function_pool[29657]: Disablei (will be remapped) */
+ /* _mesa_function_pool[29864]: Disablei (will be remapped) */
"ii\0"
"glDisableIndexedEXT\0"
"glDisablei\0"
"\0"
- /* _mesa_function_pool[29692]: ReadBuffer (offset 254) */
+ /* _mesa_function_pool[29899]: ReadBuffer (offset 254) */
"i\0"
"glReadBuffer\0"
"glReadBufferNV\0"
"\0"
- /* _mesa_function_pool[29723]: ConvolutionParameteri (offset 352) */
+ /* _mesa_function_pool[29930]: ConvolutionParameteri (offset 352) */
"iii\0"
"glConvolutionParameteri\0"
"glConvolutionParameteriEXT\0"
"\0"
- /* _mesa_function_pool[29779]: VertexAttrib4sv (will be remapped) */
+ /* _mesa_function_pool[29986]: VertexAttrib4sv (will be remapped) */
"ip\0"
"glVertexAttrib4sv\0"
"glVertexAttrib4svARB\0"
"\0"
- /* _mesa_function_pool[29822]: Ortho (offset 296) */
+ /* _mesa_function_pool[30029]: Ortho (offset 296) */
"dddddd\0"
"glOrtho\0"
"\0"
- /* _mesa_function_pool[29838]: Binormal3sEXT (dynamic) */
+ /* _mesa_function_pool[30045]: Binormal3sEXT (dynamic) */
"iii\0"
"glBinormal3sEXT\0"
"\0"
- /* _mesa_function_pool[29859]: VDPAUUnmapSurfacesNV (will be remapped) */
+ /* _mesa_function_pool[30066]: VDPAUUnmapSurfacesNV (will be remapped) */
"ip\0"
"glVDPAUUnmapSurfacesNV\0"
"\0"
- /* _mesa_function_pool[29886]: ListBase (offset 6) */
+ /* _mesa_function_pool[30093]: ListBase (offset 6) */
"i\0"
"glListBase\0"
"\0"
- /* _mesa_function_pool[29900]: GetTexParameterIiv (will be remapped) */
+ /* _mesa_function_pool[30107]: GetTexParameterIiv (will be remapped) */
"iip\0"
"glGetTexParameterIivEXT\0"
"glGetTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[29950]: Tangent3sEXT (dynamic) */
+ /* _mesa_function_pool[30157]: Tangent3sEXT (dynamic) */
"iii\0"
"glTangent3sEXT\0"
"\0"
- /* _mesa_function_pool[29970]: Vertex3s (offset 140) */
+ /* _mesa_function_pool[30177]: Vertex3s (offset 140) */
"iii\0"
"glVertex3s\0"
"\0"
- /* _mesa_function_pool[29986]: ConvolutionParameterf (offset 350) */
+ /* _mesa_function_pool[30193]: ConvolutionParameterf (offset 350) */
"iif\0"
"glConvolutionParameterf\0"
"glConvolutionParameterfEXT\0"
"\0"
- /* _mesa_function_pool[30042]: GetColorTableParameteriv (offset 345) */
+ /* _mesa_function_pool[30249]: GetColorTableParameteriv (offset 345) */
"iip\0"
"glGetColorTableParameteriv\0"
"glGetColorTableParameterivSGI\0"
"glGetColorTableParameterivEXT\0"
"\0"
- /* _mesa_function_pool[30134]: ProgramEnvParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[30341]: ProgramEnvParameter4dvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4dvARB\0"
"glProgramParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[30191]: ShadeModel (offset 177) */
+ /* _mesa_function_pool[30398]: ShadeModel (offset 177) */
"i\0"
"glShadeModel\0"
"\0"
- /* _mesa_function_pool[30207]: Uniform3uiv (will be remapped) */
+ /* _mesa_function_pool[30414]: Uniform3uiv (will be remapped) */
"iip\0"
"glUniform3uivEXT\0"
"glUniform3uiv\0"
"\0"
- /* _mesa_function_pool[30243]: GenerateMipmap (will be remapped) */
+ /* _mesa_function_pool[30450]: GenerateMipmap (will be remapped) */
"i\0"
"glGenerateMipmap\0"
"glGenerateMipmapEXT\0"
"glGenerateMipmapOES\0"
"\0"
- /* _mesa_function_pool[30303]: Rectiv (offset 91) */
+ /* _mesa_function_pool[30510]: Rectiv (offset 91) */
"pp\0"
"glRectiv\0"
"\0"
- /* _mesa_function_pool[30316]: TexImage3DMultisample (will be remapped) */
+ /* _mesa_function_pool[30523]: TexImage3DMultisample (will be remapped) */
"iiiiiii\0"
"glTexImage3DMultisample\0"
"\0"
- /* _mesa_function_pool[30349]: MatrixIndexPointerARB (dynamic) */
+ /* _mesa_function_pool[30556]: MatrixIndexPointerARB (dynamic) */
"iiip\0"
"glMatrixIndexPointerARB\0"
"glMatrixIndexPointerOES\0"
"\0"
- /* _mesa_function_pool[30403]: GetMapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[30610]: GetMapParameterfvNV (dynamic) */
"iip\0"
"glGetMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[30430]: MultiTexCoord1iv (offset 381) */
+ /* _mesa_function_pool[30637]: MultiTexCoord1iv (offset 381) */
"ip\0"
"glMultiTexCoord1iv\0"
"glMultiTexCoord1ivARB\0"
"\0"
- /* _mesa_function_pool[30475]: PassTexCoordATI (will be remapped) */
+ /* _mesa_function_pool[30682]: PassTexCoordATI (will be remapped) */
"iii\0"
"glPassTexCoordATI\0"
"\0"
- /* _mesa_function_pool[30498]: DeleteProgram (will be remapped) */
+ /* _mesa_function_pool[30705]: DeleteProgram (will be remapped) */
"i\0"
"glDeleteProgram\0"
"\0"
- /* _mesa_function_pool[30517]: GetSamplerParameteriv (will be remapped) */
+ /* _mesa_function_pool[30724]: GetSamplerParameteriv (will be remapped) */
"iip\0"
"glGetSamplerParameteriv\0"
"\0"
- /* _mesa_function_pool[30546]: BindBufferRange (will be remapped) */
+ /* _mesa_function_pool[30753]: BindBufferRange (will be remapped) */
"iiiii\0"
"glBindBufferRange\0"
"glBindBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[30592]: Tangent3dEXT (dynamic) */
+ /* _mesa_function_pool[30799]: Tangent3dEXT (dynamic) */
"ddd\0"
"glTangent3dEXT\0"
"\0"
- /* _mesa_function_pool[30612]: TexParameterxv (will be remapped) */
+ /* _mesa_function_pool[30819]: TexParameterxv (will be remapped) */
"iip\0"
"glTexParameterxvOES\0"
"glTexParameterxv\0"
"\0"
- /* _mesa_function_pool[30654]: BlendEquationSeparateiARB (will be remapped) */
+ /* _mesa_function_pool[30861]: BlendEquationSeparateiARB (will be remapped) */
"iii\0"
"glBlendEquationSeparateiARB\0"
"glBlendEquationSeparateIndexedAMD\0"
"\0"
- /* _mesa_function_pool[30721]: AlphaFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[30928]: AlphaFragmentOp2ATI (will be remapped) */
"iiiiiiiii\0"
"glAlphaFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[30754]: Vertex2fv (offset 129) */
+ /* _mesa_function_pool[30961]: Vertex2fv (offset 129) */
"p\0"
"glVertex2fv\0"
"\0"
- /* _mesa_function_pool[30769]: SampleMaskSGIS (will be remapped) */
+ /* _mesa_function_pool[30976]: SampleMaskSGIS (will be remapped) */
"fi\0"
"glSampleMaskSGIS\0"
"glSampleMaskEXT\0"
"\0"
- /* _mesa_function_pool[30806]: BindRenderbufferEXT (will be remapped) */
+ /* _mesa_function_pool[31013]: BindRenderbufferEXT (will be remapped) */
"ii\0"
"glBindRenderbufferEXT\0"
"\0"
- /* _mesa_function_pool[30832]: VertexAttrib1fNV (will be remapped) */
+ /* _mesa_function_pool[31039]: VertexAttrib1fNV (will be remapped) */
"if\0"
"glVertexAttrib1fNV\0"
"\0"
- /* _mesa_function_pool[30855]: Rotatex (will be remapped) */
+ /* _mesa_function_pool[31062]: Rotatex (will be remapped) */
"iiii\0"
"glRotatexOES\0"
"glRotatex\0"
"\0"
- /* _mesa_function_pool[30884]: FramebufferTextureFaceARB (will be remapped) */
+ /* _mesa_function_pool[31091]: FramebufferTextureFaceARB (will be remapped) */
"iiiii\0"
"glFramebufferTextureFaceARB\0"
"\0"
- /* _mesa_function_pool[30919]: Vertex3sv (offset 141) */
+ /* _mesa_function_pool[31126]: Vertex3sv (offset 141) */
"p\0"
"glVertex3sv\0"
"\0"
- /* _mesa_function_pool[30934]: GetQueryObjectiv (will be remapped) */
+ /* _mesa_function_pool[31141]: GetQueryObjectiv (will be remapped) */
"iip\0"
"glGetQueryObjectiv\0"
"glGetQueryObjectivARB\0"
"\0"
- /* _mesa_function_pool[30980]: VertexAttrib2s (will be remapped) */
+ /* _mesa_function_pool[31187]: VertexAttrib2s (will be remapped) */
"iii\0"
"glVertexAttrib2s\0"
"glVertexAttrib2sARB\0"
"\0"
- /* _mesa_function_pool[31022]: VertexWeightfEXT (dynamic) */
+ /* _mesa_function_pool[31229]: VertexWeightfEXT (dynamic) */
"f\0"
"glVertexWeightfEXT\0"
"\0"
- /* _mesa_function_pool[31044]: ProgramLocalParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[31251]: ProgramLocalParameter4fvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4fvARB\0"
"\0"
- /* _mesa_function_pool[31079]: EvalMesh1 (offset 236) */
+ /* _mesa_function_pool[31286]: EvalMesh1 (offset 236) */
"iii\0"
"glEvalMesh1\0"
"\0"
- /* _mesa_function_pool[31096]: ObjectLabel (will be remapped) */
+ /* _mesa_function_pool[31303]: ObjectLabel (will be remapped) */
"iiip\0"
"glObjectLabel\0"
"\0"
- /* _mesa_function_pool[31116]: PauseTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[31323]: PauseTransformFeedback (will be remapped) */
"\0"
"glPauseTransformFeedback\0"
"\0"
- /* _mesa_function_pool[31143]: DeleteShader (will be remapped) */
+ /* _mesa_function_pool[31350]: DeleteShader (will be remapped) */
"i\0"
"glDeleteShader\0"
"\0"
- /* _mesa_function_pool[31161]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */
- "iffffff\0"
- "glReplacementCodeuiColor3fVertex3fSUN\0"
+ /* _mesa_function_pool[31368]: BindImageTexture (will be remapped) */
+ "iiiiiii\0"
+ "glBindImageTexture\0"
"\0"
- /* _mesa_function_pool[31208]: Uniform2f (will be remapped) */
+ /* _mesa_function_pool[31396]: Uniform2f (will be remapped) */
"iff\0"
"glUniform2f\0"
"glUniform2fARB\0"
"\0"
- /* _mesa_function_pool[31240]: VertexAttrib2d (will be remapped) */
+ /* _mesa_function_pool[31428]: VertexAttrib2d (will be remapped) */
"idd\0"
"glVertexAttrib2d\0"
"glVertexAttrib2dARB\0"
"\0"
- /* _mesa_function_pool[31282]: CompressedTexSubImage3D (will be remapped) */
+ /* _mesa_function_pool[31470]: CompressedTexSubImage3D (will be remapped) */
"iiiiiiiiiip\0"
"glCompressedTexSubImage3D\0"
"glCompressedTexSubImage3DARB\0"
"glCompressedTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[31379]: Vertex2iv (offset 131) */
+ /* _mesa_function_pool[31567]: Vertex2iv (offset 131) */
"p\0"
"glVertex2iv\0"
"\0"
- /* _mesa_function_pool[31394]: GetProgramStringNV (will be remapped) */
+ /* _mesa_function_pool[31582]: GetProgramStringNV (will be remapped) */
"iip\0"
"glGetProgramStringNV\0"
"\0"
- /* _mesa_function_pool[31420]: VertexAttribP3uiv (will be remapped) */
+ /* _mesa_function_pool[31608]: VertexAttribP3uiv (will be remapped) */
"iiip\0"
"glVertexAttribP3uiv\0"
"\0"
- /* _mesa_function_pool[31446]: LineWidth (offset 168) */
+ /* _mesa_function_pool[31634]: LineWidth (offset 168) */
"f\0"
"glLineWidth\0"
"\0"
- /* _mesa_function_pool[31461]: GetActiveAtomicCounterBufferiv (will be remapped) */
+ /* _mesa_function_pool[31649]: GetActiveAtomicCounterBufferiv (will be remapped) */
"iiip\0"
"glGetActiveAtomicCounterBufferiv\0"
"\0"
- /* _mesa_function_pool[31500]: Uniform2i (will be remapped) */
+ /* _mesa_function_pool[31688]: Uniform2i (will be remapped) */
"iii\0"
"glUniform2i\0"
"glUniform2iARB\0"
"\0"
- /* _mesa_function_pool[31532]: MultiDrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[31720]: MultiDrawElementsBaseVertex (will be remapped) */
"ipipip\0"
"glMultiDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[31570]: FogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[31758]: FogFuncSGIS (dynamic) */
"ip\0"
"glFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[31588]: GenPerfMonitorsAMD (will be remapped) */
+ /* _mesa_function_pool[31776]: GenPerfMonitorsAMD (will be remapped) */
"ip\0"
"glGenPerfMonitorsAMD\0"
"\0"
- /* _mesa_function_pool[31613]: Binormal3svEXT (dynamic) */
+ /* _mesa_function_pool[31801]: Binormal3svEXT (dynamic) */
"p\0"
"glBinormal3svEXT\0"
"\0"
- /* _mesa_function_pool[31633]: GetBufferParameteri64v (will be remapped) */
+ /* _mesa_function_pool[31821]: GetBufferParameteri64v (will be remapped) */
"iip\0"
"glGetBufferParameteri64v\0"
"\0"
- /* _mesa_function_pool[31663]: TexGendv (offset 189) */
+ /* _mesa_function_pool[31851]: TexGendv (offset 189) */
"iip\0"
"glTexGendv\0"
"\0"
- /* _mesa_function_pool[31679]: Uniform1fv (will be remapped) */
+ /* _mesa_function_pool[31867]: Uniform1fv (will be remapped) */
"iip\0"
"glUniform1fv\0"
"glUniform1fvARB\0"
"\0"
- /* _mesa_function_pool[31713]: LightModelx (will be remapped) */
+ /* _mesa_function_pool[31901]: DepthRangeIndexed (will be remapped) */
+ "idd\0"
+ "glDepthRangeIndexed\0"
+ "\0"
+ /* _mesa_function_pool[31926]: LightModelx (will be remapped) */
"ii\0"
"glLightModelxOES\0"
"glLightModelx\0"
"\0"
- /* _mesa_function_pool[31748]: VertexAttribI3iEXT (will be remapped) */
+ /* _mesa_function_pool[31961]: VertexAttribI3iEXT (will be remapped) */
"iiii\0"
"glVertexAttribI3iEXT\0"
"glVertexAttribI3i\0"
"\0"
- /* _mesa_function_pool[31793]: EndConditionalRender (will be remapped) */
+ /* _mesa_function_pool[32006]: EndConditionalRender (will be remapped) */
"\0"
"glEndConditionalRender\0"
"glEndConditionalRenderNV\0"
"\0"
- /* _mesa_function_pool[31843]: GetBufferPointerv (will be remapped) */
+ /* _mesa_function_pool[32056]: GetBufferPointerv (will be remapped) */
"iip\0"
"glGetBufferPointerv\0"
"glGetBufferPointervARB\0"
"glGetBufferPointervOES\0"
"\0"
- /* _mesa_function_pool[31914]: TextureLightEXT (dynamic) */
+ /* _mesa_function_pool[32127]: TextureLightEXT (dynamic) */
"i\0"
"glTextureLightEXT\0"
"\0"
- /* _mesa_function_pool[31935]: ResetMinmax (offset 370) */
+ /* _mesa_function_pool[32148]: ResetMinmax (offset 370) */
"i\0"
"glResetMinmax\0"
"glResetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[31969]: SpriteParameterfSGIX (dynamic) */
+ /* _mesa_function_pool[32182]: SpriteParameterfSGIX (dynamic) */
"if\0"
"glSpriteParameterfSGIX\0"
"\0"
- /* _mesa_function_pool[31996]: EnableClientState (offset 313) */
+ /* _mesa_function_pool[32209]: EnableClientState (offset 313) */
"i\0"
"glEnableClientState\0"
"\0"
- /* _mesa_function_pool[32019]: VertexAttrib4sNV (will be remapped) */
+ /* _mesa_function_pool[32232]: VertexAttrib4sNV (will be remapped) */
"iiiii\0"
"glVertexAttrib4sNV\0"
"\0"
- /* _mesa_function_pool[32045]: GetConvolutionParameterfv (offset 357) */
+ /* _mesa_function_pool[32258]: GetConvolutionParameterfv (offset 357) */
"iip\0"
"glGetConvolutionParameterfv\0"
"glGetConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[32109]: GetActiveUniformName (will be remapped) */
+ /* _mesa_function_pool[32322]: GetActiveUniformName (will be remapped) */
"iiipp\0"
"glGetActiveUniformName\0"
"\0"
- /* _mesa_function_pool[32139]: Uniform1iv (will be remapped) */
+ /* _mesa_function_pool[32352]: Uniform1iv (will be remapped) */
"iip\0"
"glUniform1iv\0"
"glUniform1ivARB\0"
"\0"
- /* _mesa_function_pool[32173]: MultiTexCoord4i (offset 404) */
+ /* _mesa_function_pool[32386]: MultiTexCoord4i (offset 404) */
"iiiii\0"
"glMultiTexCoord4i\0"
"glMultiTexCoord4iARB\0"
"\0"
- /* _mesa_function_pool[32219]: CombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[32432]: CombinerStageParameterfvNV (dynamic) */
"iip\0"
"glCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[32253]: ProgramNamedParameter4dNV (will be remapped) */
+ /* _mesa_function_pool[32466]: ProgramNamedParameter4dNV (will be remapped) */
"iipdddd\0"
"glProgramNamedParameter4dNV\0"
"\0"
- /* _mesa_function_pool[32290]: GetMaterialfv (offset 269) */
+ /* _mesa_function_pool[32503]: GetMaterialfv (offset 269) */
"iip\0"
"glGetMaterialfv\0"
"\0"
- /* _mesa_function_pool[32311]: WindowPos3fv (will be remapped) */
+ /* _mesa_function_pool[32524]: ViewportIndexedfv (will be remapped) */
+ "ip\0"
+ "glViewportIndexedfv\0"
+ "\0"
+ /* _mesa_function_pool[32548]: WindowPos3fv (will be remapped) */
"p\0"
"glWindowPos3fv\0"
"glWindowPos3fvARB\0"
"glWindowPos3fvMESA\0"
"\0"
- /* _mesa_function_pool[32366]: SecondaryColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[32603]: SecondaryColorPointerListIBM (dynamic) */
"iiipi\0"
"glSecondaryColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[32404]: DeleteProgramsARB (will be remapped) */
+ /* _mesa_function_pool[32641]: DeleteProgramsARB (will be remapped) */
"ip\0"
"glDeleteProgramsARB\0"
"glDeleteProgramsNV\0"
"\0"
- /* _mesa_function_pool[32447]: VDPAUSurfaceAccessNV (will be remapped) */
+ /* _mesa_function_pool[32684]: VDPAUSurfaceAccessNV (will be remapped) */
"ii\0"
"glVDPAUSurfaceAccessNV\0"
"\0"
- /* _mesa_function_pool[32474]: SetFragmentShaderConstantATI (will be remapped) */
+ /* _mesa_function_pool[32711]: SetFragmentShaderConstantATI (will be remapped) */
"ip\0"
"glSetFragmentShaderConstantATI\0"
"\0"
- /* _mesa_function_pool[32509]: Binormal3fEXT (dynamic) */
+ /* _mesa_function_pool[32746]: Binormal3fEXT (dynamic) */
"fff\0"
"glBinormal3fEXT\0"
"\0"
- /* _mesa_function_pool[32530]: CallList (offset 2) */
+ /* _mesa_function_pool[32767]: CallList (offset 2) */
"i\0"
"glCallList\0"
"\0"
- /* _mesa_function_pool[32544]: Materialfv (offset 170) */
+ /* _mesa_function_pool[32781]: Materialfv (offset 170) */
"iip\0"
"glMaterialfv\0"
"\0"
- /* _mesa_function_pool[32562]: TexCoord3fv (offset 113) */
+ /* _mesa_function_pool[32799]: TexCoord3fv (offset 113) */
"p\0"
"glTexCoord3fv\0"
"\0"
- /* _mesa_function_pool[32579]: WeightfvARB (dynamic) */
+ /* _mesa_function_pool[32816]: WeightfvARB (dynamic) */
"ip\0"
"glWeightfvARB\0"
"\0"
- /* _mesa_function_pool[32597]: GetUniformBlockIndex (will be remapped) */
+ /* _mesa_function_pool[32834]: GetUniformBlockIndex (will be remapped) */
"ip\0"
"glGetUniformBlockIndex\0"
"\0"
- /* _mesa_function_pool[32624]: FogCoordfvEXT (will be remapped) */
+ /* _mesa_function_pool[32861]: FogCoordfvEXT (will be remapped) */
"p\0"
"glFogCoordfv\0"
"glFogCoordfvEXT\0"
"\0"
- /* _mesa_function_pool[32656]: DetachShader (will be remapped) */
+ /* _mesa_function_pool[32893]: DetachShader (will be remapped) */
"ii\0"
"glDetachShader\0"
"\0"
- /* _mesa_function_pool[32675]: ClearDepthf (will be remapped) */
+ /* _mesa_function_pool[32912]: ClearDepthf (will be remapped) */
"f\0"
"glClearDepthf\0"
"glClearDepthfOES\0"
"\0"
- /* _mesa_function_pool[32709]: CopyTexSubImage2D (offset 326) */
+ /* _mesa_function_pool[32946]: CopyTexSubImage2D (offset 326) */
"iiiiiiii\0"
"glCopyTexSubImage2D\0"
"glCopyTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[32762]: SampleCoverage (will be remapped) */
+ /* _mesa_function_pool[32999]: SampleCoverage (will be remapped) */
"fi\0"
"glSampleCoverage\0"
"glSampleCoverageARB\0"
"\0"
- /* _mesa_function_pool[32803]: GetObjectParameterivARB (will be remapped) */
+ /* _mesa_function_pool[33040]: GetObjectParameterivARB (will be remapped) */
"iip\0"
"glGetObjectParameterivARB\0"
"\0"
- /* _mesa_function_pool[32834]: Color3iv (offset 16) */
+ /* _mesa_function_pool[33071]: Color3iv (offset 16) */
"p\0"
"glColor3iv\0"
"\0"
- /* _mesa_function_pool[32848]: GlobalAlphaFactorubSUN (dynamic) */
+ /* _mesa_function_pool[33085]: GlobalAlphaFactorubSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorubSUN\0"
"\0"
- /* _mesa_function_pool[32876]: VertexAttrib4ubv (will be remapped) */
+ /* _mesa_function_pool[33113]: VertexAttrib4ubv (will be remapped) */
"ip\0"
"glVertexAttrib4ubv\0"
"glVertexAttrib4ubvARB\0"
"\0"
- /* _mesa_function_pool[32921]: MultiDrawArrays (will be remapped) */
+ /* _mesa_function_pool[33158]: MultiDrawArrays (will be remapped) */
"ippi\0"
"glMultiDrawArrays\0"
"glMultiDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[32966]: DrawElements (offset 311) */
+ /* _mesa_function_pool[33203]: DrawElements (offset 311) */
"iiip\0"
"glDrawElements\0"
"\0"
- /* _mesa_function_pool[32987]: BindVertexArrayAPPLE (will be remapped) */
+ /* _mesa_function_pool[33224]: BindVertexArrayAPPLE (will be remapped) */
"i\0"
"glBindVertexArrayAPPLE\0"
"\0"
- /* _mesa_function_pool[33013]: GetProgramLocalParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[33250]: GetProgramLocalParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterdvARB\0"
"\0"
- /* _mesa_function_pool[33050]: GetHistogramParameteriv (offset 363) */
+ /* _mesa_function_pool[33287]: GetHistogramParameteriv (offset 363) */
"iip\0"
"glGetHistogramParameteriv\0"
"glGetHistogramParameterivEXT\0"
"\0"
- /* _mesa_function_pool[33110]: TexGenxvOES (will be remapped) */
+ /* _mesa_function_pool[33347]: TexGenxvOES (will be remapped) */
"iip\0"
"glTexGenxvOES\0"
"\0"
- /* _mesa_function_pool[33129]: PointParameteriv (will be remapped) */
+ /* _mesa_function_pool[33366]: PointParameteriv (will be remapped) */
"ip\0"
"glPointParameteriv\0"
"glPointParameterivNV\0"
"\0"
- /* _mesa_function_pool[33173]: UniformMatrix2x4fv (will be remapped) */
+ /* _mesa_function_pool[33410]: UniformMatrix2x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x4fv\0"
"\0"
- /* _mesa_function_pool[33200]: SecondaryColor3d (will be remapped) */
+ /* _mesa_function_pool[33437]: SecondaryColor3d (will be remapped) */
"ddd\0"
"glSecondaryColor3d\0"
"glSecondaryColor3dEXT\0"
"\0"
- /* _mesa_function_pool[33246]: GetConvolutionFilter (offset 356) */
+ /* _mesa_function_pool[33483]: GetConvolutionFilter (offset 356) */
"iiip\0"
"glGetConvolutionFilter\0"
"glGetConvolutionFilterEXT\0"
"\0"
- /* _mesa_function_pool[33301]: GetProgramivARB (will be remapped) */
+ /* _mesa_function_pool[33538]: GetProgramivARB (will be remapped) */
"iip\0"
"glGetProgramivARB\0"
"\0"
- /* _mesa_function_pool[33324]: FlushVertexArrayRangeNV (dynamic) */
+ /* _mesa_function_pool[33561]: FlushVertexArrayRangeNV (dynamic) */
"\0"
"glFlushVertexArrayRangeNV\0"
"\0"
- /* _mesa_function_pool[33352]: Uniform2iv (will be remapped) */
+ /* _mesa_function_pool[33589]: ScissorArrayv (will be remapped) */
+ "iip\0"
+ "glScissorArrayv\0"
+ "\0"
+ /* _mesa_function_pool[33610]: Uniform2iv (will be remapped) */
"iip\0"
"glUniform2iv\0"
"glUniform2ivARB\0"
"\0"
- /* _mesa_function_pool[33386]: GetFixedv (will be remapped) */
+ /* _mesa_function_pool[33644]: GetFixedv (will be remapped) */
"ip\0"
"glGetFixedvOES\0"
"glGetFixedv\0"
"\0"
- /* _mesa_function_pool[33417]: BindRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[33675]: BindRenderbuffer (will be remapped) */
"ii\0"
"glBindRenderbuffer\0"
"glBindRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[33462]: ProgramParameters4dvNV (will be remapped) */
+ /* _mesa_function_pool[33720]: ProgramParameters4dvNV (will be remapped) */
"iiip\0"
"glProgramParameters4dvNV\0"
"\0"
- /* _mesa_function_pool[33493]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[33751]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[33530]: EvalPoint2 (offset 239) */
+ /* _mesa_function_pool[33788]: EvalPoint2 (offset 239) */
"ii\0"
"glEvalPoint2\0"
"\0"
- /* _mesa_function_pool[33547]: EvalPoint1 (offset 237) */
+ /* _mesa_function_pool[33805]: EvalPoint1 (offset 237) */
"i\0"
"glEvalPoint1\0"
"\0"
- /* _mesa_function_pool[33563]: Binormal3dvEXT (dynamic) */
+ /* _mesa_function_pool[33821]: Binormal3dvEXT (dynamic) */
"p\0"
"glBinormal3dvEXT\0"
"\0"
- /* _mesa_function_pool[33583]: PopMatrix (offset 297) */
+ /* _mesa_function_pool[33841]: PopMatrix (offset 297) */
"\0"
"glPopMatrix\0"
"\0"
- /* _mesa_function_pool[33597]: FinishFenceNV (dynamic) */
+ /* _mesa_function_pool[33855]: FinishFenceNV (dynamic) */
"i\0"
"glFinishFenceNV\0"
"\0"
- /* _mesa_function_pool[33616]: GetFogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[33874]: GetFogFuncSGIS (dynamic) */
"p\0"
"glGetFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[33636]: DeleteFramebuffers (will be remapped) */
+ /* _mesa_function_pool[33894]: DeleteFramebuffers (will be remapped) */
"ip\0"
"glDeleteFramebuffers\0"
"glDeleteFramebuffersEXT\0"
"glDeleteFramebuffersOES\0"
"\0"
- /* _mesa_function_pool[33709]: SecondaryColor3fEXT (will be remapped) */
+ /* _mesa_function_pool[33967]: SecondaryColor3fEXT (will be remapped) */
"fff\0"
"glSecondaryColor3f\0"
"glSecondaryColor3fEXT\0"
"\0"
- /* _mesa_function_pool[33755]: GetTexGeniv (offset 280) */
+ /* _mesa_function_pool[34013]: GetTexGeniv (offset 280) */
"iip\0"
"glGetTexGeniv\0"
"glGetTexGenivOES\0"
"\0"
- /* _mesa_function_pool[33791]: CombinerInputNV (dynamic) */
+ /* _mesa_function_pool[34049]: CombinerInputNV (dynamic) */
"iiiiii\0"
"glCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[33817]: VertexBindingDivisor (will be remapped) */
+ /* _mesa_function_pool[34075]: VertexBindingDivisor (will be remapped) */
"ii\0"
"glVertexBindingDivisor\0"
"\0"
- /* _mesa_function_pool[33844]: FramebufferRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[34102]: FramebufferRenderbuffer (will be remapped) */
"iiii\0"
"glFramebufferRenderbuffer\0"
"glFramebufferRenderbufferEXT\0"
"glFramebufferRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[33934]: IsProgramARB (will be remapped) */
+ /* _mesa_function_pool[34192]: IsProgramARB (will be remapped) */
"i\0"
"glIsProgramARB\0"
"glIsProgramNV\0"
"\0"
- /* _mesa_function_pool[33966]: VertexAttrib4uiv (will be remapped) */
+ /* _mesa_function_pool[34224]: VertexAttrib4uiv (will be remapped) */
"ip\0"
"glVertexAttrib4uiv\0"
"glVertexAttrib4uivARB\0"
"\0"
- /* _mesa_function_pool[34011]: VertexAttrib4Nsv (will be remapped) */
+ /* _mesa_function_pool[34269]: VertexAttrib4Nsv (will be remapped) */
"ip\0"
"glVertexAttrib4Nsv\0"
"glVertexAttrib4NsvARB\0"
"\0"
- /* _mesa_function_pool[34056]: Map2d (offset 222) */
+ /* _mesa_function_pool[34314]: Map2d (offset 222) */
"iddiiddiip\0"
"glMap2d\0"
"\0"
- /* _mesa_function_pool[34076]: Map2f (offset 223) */
+ /* _mesa_function_pool[34334]: Map2f (offset 223) */
"iffiiffiip\0"
"glMap2f\0"
"\0"
- /* _mesa_function_pool[34096]: ProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[34354]: ProgramStringARB (will be remapped) */
"iiip\0"
"glProgramStringARB\0"
"\0"
- /* _mesa_function_pool[34121]: MultiTexCoord4x (will be remapped) */
+ /* _mesa_function_pool[34379]: MultiTexCoord4x (will be remapped) */
"iiiii\0"
"glMultiTexCoord4xOES\0"
"glMultiTexCoord4x\0"
"\0"
- /* _mesa_function_pool[34167]: Vertex4s (offset 148) */
+ /* _mesa_function_pool[34425]: Vertex4s (offset 148) */
"iiii\0"
"glVertex4s\0"
"\0"
- /* _mesa_function_pool[34184]: TexCoord4fVertex4fvSUN (dynamic) */
+ /* _mesa_function_pool[34442]: TexCoord4fVertex4fvSUN (dynamic) */
"pp\0"
"glTexCoord4fVertex4fvSUN\0"
"\0"
- /* _mesa_function_pool[34213]: UnmapBuffer (will be remapped) */
+ /* _mesa_function_pool[34471]: UnmapBuffer (will be remapped) */
"i\0"
"glUnmapBuffer\0"
"glUnmapBufferARB\0"
"glUnmapBufferOES\0"
"\0"
- /* _mesa_function_pool[34264]: MultiTexCoord4s (offset 406) */
+ /* _mesa_function_pool[34522]: MultiTexCoord4s (offset 406) */
"iiiii\0"
"glMultiTexCoord4s\0"
"glMultiTexCoord4sARB\0"
"\0"
- /* _mesa_function_pool[34310]: VertexAttribI2iEXT (will be remapped) */
+ /* _mesa_function_pool[34568]: VertexAttribI2iEXT (will be remapped) */
"iii\0"
"glVertexAttribI2iEXT\0"
"glVertexAttribI2i\0"
"\0"
- /* _mesa_function_pool[34354]: Vertex4f (offset 144) */
+ /* _mesa_function_pool[34612]: Vertex4f (offset 144) */
"ffff\0"
"glVertex4f\0"
"\0"
- /* _mesa_function_pool[34371]: EvalCoord1d (offset 228) */
+ /* _mesa_function_pool[34629]: EvalCoord1d (offset 228) */
"d\0"
"glEvalCoord1d\0"
"\0"
- /* _mesa_function_pool[34388]: Vertex4d (offset 142) */
+ /* _mesa_function_pool[34646]: Vertex4d (offset 142) */
"dddd\0"
"glVertex4d\0"
"\0"
- /* _mesa_function_pool[34405]: RasterPos4dv (offset 79) */
+ /* _mesa_function_pool[34663]: RasterPos4dv (offset 79) */
"p\0"
"glRasterPos4dv\0"
"\0"
- /* _mesa_function_pool[34423]: GetGraphicsResetStatusARB (will be remapped) */
+ /* _mesa_function_pool[34681]: GetGraphicsResetStatusARB (will be remapped) */
"\0"
"glGetGraphicsResetStatusARB\0"
"\0"
- /* _mesa_function_pool[34453]: UseShaderProgramEXT (will be remapped) */
+ /* _mesa_function_pool[34711]: UseShaderProgramEXT (will be remapped) */
"ii\0"
"glUseShaderProgramEXT\0"
"\0"
- /* _mesa_function_pool[34479]: VertexAttribP2uiv (will be remapped) */
+ /* _mesa_function_pool[34737]: VertexAttribP2uiv (will be remapped) */
"iiip\0"
"glVertexAttribP2uiv\0"
"\0"
- /* _mesa_function_pool[34505]: VertexAttrib4bv (will be remapped) */
+ /* _mesa_function_pool[34763]: VertexAttrib4bv (will be remapped) */
"ip\0"
"glVertexAttrib4bv\0"
"glVertexAttrib4bvARB\0"
"\0"
- /* _mesa_function_pool[34548]: DebugMessageControl (will be remapped) */
+ /* _mesa_function_pool[34806]: DebugMessageControl (will be remapped) */
"iiiipi\0"
"glDebugMessageControl\0"
"\0"
- /* _mesa_function_pool[34578]: GetTexGenfv (offset 279) */
+ /* _mesa_function_pool[34836]: GetTexGenfv (offset 279) */
"iip\0"
"glGetTexGenfv\0"
"glGetTexGenfvOES\0"
"\0"
- /* _mesa_function_pool[34614]: MultiTexCoord4d (offset 400) */
+ /* _mesa_function_pool[34872]: MultiTexCoord4d (offset 400) */
"idddd\0"
"glMultiTexCoord4d\0"
"glMultiTexCoord4dARB\0"
"\0"
- /* _mesa_function_pool[34660]: Vertex4i (offset 146) */
+ /* _mesa_function_pool[34918]: Vertex4i (offset 146) */
"iiii\0"
"glVertex4i\0"
"\0"
- /* _mesa_function_pool[34677]: VertexWeightPointerEXT (dynamic) */
+ /* _mesa_function_pool[34935]: VertexWeightPointerEXT (dynamic) */
"iiip\0"
"glVertexWeightPointerEXT\0"
"\0"
- /* _mesa_function_pool[34708]: GetHistogram (offset 361) */
+ /* _mesa_function_pool[34966]: GetHistogram (offset 361) */
"iiiip\0"
"glGetHistogram\0"
"glGetHistogramEXT\0"
"\0"
- /* _mesa_function_pool[34748]: ActiveStencilFaceEXT (will be remapped) */
+ /* _mesa_function_pool[35006]: ActiveStencilFaceEXT (will be remapped) */
"i\0"
"glActiveStencilFaceEXT\0"
"\0"
- /* _mesa_function_pool[34774]: Translatex (will be remapped) */
+ /* _mesa_function_pool[35032]: Translatex (will be remapped) */
"iii\0"
"glTranslatexOES\0"
"glTranslatex\0"
"\0"
- /* _mesa_function_pool[34808]: StencilFuncSeparateATI (will be remapped) */
+ /* _mesa_function_pool[35066]: StencilFuncSeparateATI (will be remapped) */
"iiii\0"
"glStencilFuncSeparateATI\0"
"\0"
- /* _mesa_function_pool[34839]: Materialf (offset 169) */
+ /* _mesa_function_pool[35097]: Materialf (offset 169) */
"iif\0"
"glMaterialf\0"
"\0"
- /* _mesa_function_pool[34856]: GetnMapfvARB (will be remapped) */
+ /* _mesa_function_pool[35114]: GetnMapfvARB (will be remapped) */
"iiip\0"
"glGetnMapfvARB\0"
"\0"
- /* _mesa_function_pool[34877]: IglooInterfaceSGIX (dynamic) */
+ /* _mesa_function_pool[35135]: IglooInterfaceSGIX (dynamic) */
"ip\0"
"glIglooInterfaceSGIX\0"
"\0"
- /* _mesa_function_pool[34902]: Materiali (offset 171) */
+ /* _mesa_function_pool[35160]: Materiali (offset 171) */
"iii\0"
"glMateriali\0"
"\0"
- /* _mesa_function_pool[34919]: VertexAttrib4dNV (will be remapped) */
+ /* _mesa_function_pool[35177]: VertexAttrib4dNV (will be remapped) */
"idddd\0"
"glVertexAttrib4dNV\0"
"\0"
- /* _mesa_function_pool[34945]: MultiModeDrawElementsIBM (will be remapped) */
+ /* _mesa_function_pool[35203]: MultiModeDrawElementsIBM (will be remapped) */
"ppipii\0"
"glMultiModeDrawElementsIBM\0"
"\0"
- /* _mesa_function_pool[34980]: Indexsv (offset 51) */
+ /* _mesa_function_pool[35238]: Indexsv (offset 51) */
"p\0"
"glIndexsv\0"
"\0"
- /* _mesa_function_pool[34993]: VertexAttrib1fvARB (will be remapped) */
+ /* _mesa_function_pool[35251]: VertexAttrib1fvARB (will be remapped) */
"ip\0"
"glVertexAttrib1fv\0"
"glVertexAttrib1fvARB\0"
"\0"
- /* _mesa_function_pool[35036]: LightModelfv (offset 164) */
+ /* _mesa_function_pool[35294]: LightModelfv (offset 164) */
"ip\0"
"glLightModelfv\0"
"\0"
- /* _mesa_function_pool[35055]: TexCoord2dv (offset 103) */
+ /* _mesa_function_pool[35313]: TexCoord2dv (offset 103) */
"p\0"
"glTexCoord2dv\0"
"\0"
- /* _mesa_function_pool[35072]: ProgramParameters4fvNV (will be remapped) */
+ /* _mesa_function_pool[35330]: ProgramParameters4fvNV (will be remapped) */
"iiip\0"
"glProgramParameters4fvNV\0"
"\0"
- /* _mesa_function_pool[35103]: EvalCoord1dv (offset 229) */
+ /* _mesa_function_pool[35361]: EvalCoord1dv (offset 229) */
"p\0"
"glEvalCoord1dv\0"
"\0"
- /* _mesa_function_pool[35121]: ReplacementCodeuiVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[35379]: ReplacementCodeuiVertex3fSUN (dynamic) */
"ifff\0"
"glReplacementCodeuiVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[35158]: MapBufferRange (will be remapped) */
+ /* _mesa_function_pool[35416]: MapBufferRange (will be remapped) */
"iiii\0"
"glMapBufferRange\0"
"glMapBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[35201]: Translated (offset 303) */
+ /* _mesa_function_pool[35459]: Translated (offset 303) */
"ddd\0"
"glTranslated\0"
"\0"
- /* _mesa_function_pool[35219]: Translatef (offset 304) */
+ /* _mesa_function_pool[35477]: Translatef (offset 304) */
"fff\0"
"glTranslatef\0"
"\0"
- /* _mesa_function_pool[35237]: StencilMask (offset 209) */
+ /* _mesa_function_pool[35495]: StencilMask (offset 209) */
"i\0"
"glStencilMask\0"
"\0"
- /* _mesa_function_pool[35254]: MinSampleShading (will be remapped) */
+ /* _mesa_function_pool[35512]: MinSampleShading (will be remapped) */
"f\0"
"glMinSampleShadingARB\0"
"glMinSampleShading\0"
"\0"
- /* _mesa_function_pool[35298]: MultTransposeMatrixd (will be remapped) */
+ /* _mesa_function_pool[35556]: MultTransposeMatrixd (will be remapped) */
"p\0"
"glMultTransposeMatrixd\0"
"glMultTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[35350]: MultTransposeMatrixf (will be remapped) */
+ /* _mesa_function_pool[35608]: MultTransposeMatrixf (will be remapped) */
"p\0"
"glMultTransposeMatrixf\0"
"glMultTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[35402]: GetLightiv (offset 265) */
+ /* _mesa_function_pool[35660]: GetLightiv (offset 265) */
"iip\0"
"glGetLightiv\0"
"\0"
- /* _mesa_function_pool[35420]: DrawElementsInstancedBaseInstance (will be remapped) */
+ /* _mesa_function_pool[35678]: DrawElementsInstancedBaseInstance (will be remapped) */
"iiipii\0"
"glDrawElementsInstancedBaseInstance\0"
"\0"
- /* _mesa_function_pool[35464]: IsList (offset 287) */
+ /* _mesa_function_pool[35722]: IsList (offset 287) */
"i\0"
"glIsList\0"
"\0"
- /* _mesa_function_pool[35476]: PointSizex (will be remapped) */
+ /* _mesa_function_pool[35734]: PointSizex (will be remapped) */
"i\0"
"glPointSizexOES\0"
"glPointSizex\0"
"\0"
- /* _mesa_function_pool[35508]: GetnPixelMapusvARB (will be remapped) */
+ /* _mesa_function_pool[35766]: GetnPixelMapusvARB (will be remapped) */
"iip\0"
"glGetnPixelMapusvARB\0"
"\0"
- /* _mesa_function_pool[35534]: IsSync (will be remapped) */
+ /* _mesa_function_pool[35792]: IsSync (will be remapped) */
"i\0"
"glIsSync\0"
"\0"
- /* _mesa_function_pool[35546]: RenderMode (offset 196) */
+ /* _mesa_function_pool[35804]: RenderMode (offset 196) */
"i\0"
"glRenderMode\0"
"\0"
- /* _mesa_function_pool[35562]: PrimitiveRestartIndex (will be remapped) */
+ /* _mesa_function_pool[35820]: PrimitiveRestartIndex (will be remapped) */
"i\0"
"glPrimitiveRestartIndex\0"
"glPrimitiveRestartIndexNV\0"
"\0"
- /* _mesa_function_pool[35615]: GetMapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[35873]: GetMapControlPointsNV (dynamic) */
"iiiiiip\0"
"glGetMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[35648]: ClearBufferiv (will be remapped) */
+ /* _mesa_function_pool[35906]: ClearBufferiv (will be remapped) */
"iip\0"
"glClearBufferiv\0"
"\0"
- /* _mesa_function_pool[35669]: ProgramLocalParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[35927]: ProgramLocalParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramLocalParameter4fARB\0"
"\0"
- /* _mesa_function_pool[35706]: SpriteParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[35964]: SpriteParameterivSGIX (dynamic) */
"ip\0"
"glSpriteParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[35734]: MultiTexCoord1fARB (offset 378) */
+ /* _mesa_function_pool[35992]: MultiTexCoord1fARB (offset 378) */
"if\0"
"glMultiTexCoord1f\0"
"glMultiTexCoord1fARB\0"
"\0"
- /* _mesa_function_pool[35777]: LoadName (offset 198) */
+ /* _mesa_function_pool[36035]: LoadName (offset 198) */
"i\0"
"glLoadName\0"
"\0"
- /* _mesa_function_pool[35791]: GetInternalformativ (will be remapped) */
+ /* _mesa_function_pool[36049]: GetInternalformativ (will be remapped) */
"iiiip\0"
"glGetInternalformativ\0"
"\0"
- /* _mesa_function_pool[35820]: VertexAttribs4ubvNV (will be remapped) */
+ /* _mesa_function_pool[36078]: VertexAttribs4ubvNV (will be remapped) */
"iip\0"
"glVertexAttribs4ubvNV\0"
"\0"
- /* _mesa_function_pool[35847]: Frustumf (will be remapped) */
+ /* _mesa_function_pool[36105]: Frustumf (will be remapped) */
"ffffff\0"
"glFrustumfOES\0"
"glFrustumf\0"
"\0"
- /* _mesa_function_pool[35880]: WeightsvARB (dynamic) */
+ /* _mesa_function_pool[36138]: WeightsvARB (dynamic) */
"ip\0"
"glWeightsvARB\0"
"\0"
- /* _mesa_function_pool[35898]: GetIntegeri_v (will be remapped) */
+ /* _mesa_function_pool[36156]: GetIntegeri_v (will be remapped) */
"iip\0"
"glGetIntegerIndexedvEXT\0"
"glGetIntegeri_v\0"
"\0"
- /* _mesa_function_pool[35943]: LightModelxv (will be remapped) */
+ /* _mesa_function_pool[36201]: LightModelxv (will be remapped) */
"ip\0"
"glLightModelxvOES\0"
"glLightModelxv\0"
"\0"
- /* _mesa_function_pool[35980]: IsTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[36238]: IsTransformFeedback (will be remapped) */
"i\0"
"glIsTransformFeedback\0"
"\0"
- /* _mesa_function_pool[36005]: CopyTexSubImage1D (offset 325) */
+ /* _mesa_function_pool[36263]: CopyTexSubImage1D (offset 325) */
"iiiiii\0"
"glCopyTexSubImage1D\0"
"glCopyTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[36056]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[36314]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[36100]: CullFace (offset 152) */
+ /* _mesa_function_pool[36358]: CullFace (offset 152) */
"i\0"
"glCullFace\0"
"\0"
- /* _mesa_function_pool[36114]: BindTexture (offset 307) */
+ /* _mesa_function_pool[36372]: BindTexture (offset 307) */
"ii\0"
"glBindTexture\0"
"glBindTextureEXT\0"
"\0"
- /* _mesa_function_pool[36149]: VertexAttribs2fvNV (will be remapped) */
+ /* _mesa_function_pool[36407]: VertexAttribs2fvNV (will be remapped) */
"iip\0"
"glVertexAttribs2fvNV\0"
"\0"
- /* _mesa_function_pool[36175]: MultiTexCoord4fARB (offset 402) */
+ /* _mesa_function_pool[36433]: MultiTexCoord4fARB (offset 402) */
"iffff\0"
"glMultiTexCoord4f\0"
"glMultiTexCoord4fARB\0"
"\0"
- /* _mesa_function_pool[36221]: ResumeTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[36479]: ResumeTransformFeedback (will be remapped) */
"\0"
"glResumeTransformFeedback\0"
"\0"
- /* _mesa_function_pool[36249]: PushDebugGroup (will be remapped) */
+ /* _mesa_function_pool[36507]: PushDebugGroup (will be remapped) */
"iiip\0"
"glPushDebugGroup\0"
"\0"
- /* _mesa_function_pool[36272]: DrawMeshArraysSUN (dynamic) */
+ /* _mesa_function_pool[36530]: DrawMeshArraysSUN (dynamic) */
"iiii\0"
"glDrawMeshArraysSUN\0"
"\0"
- /* _mesa_function_pool[36298]: SecondaryColor3i (will be remapped) */
+ /* _mesa_function_pool[36556]: SecondaryColor3i (will be remapped) */
"iii\0"
"glSecondaryColor3i\0"
"glSecondaryColor3iEXT\0"
"\0"
- /* _mesa_function_pool[36344]: StencilFunc (offset 243) */
+ /* _mesa_function_pool[36602]: StencilFunc (offset 243) */
"iii\0"
"glStencilFunc\0"
"\0"
- /* _mesa_function_pool[36363]: CopyPixels (offset 255) */
+ /* _mesa_function_pool[36621]: CopyPixels (offset 255) */
"iiiii\0"
"glCopyPixels\0"
"\0"
- /* _mesa_function_pool[36383]: Rectsv (offset 93) */
+ /* _mesa_function_pool[36641]: Rectsv (offset 93) */
"pp\0"
"glRectsv\0"
"\0"
- /* _mesa_function_pool[36396]: WindowPos3iv (will be remapped) */
+ /* _mesa_function_pool[36654]: WindowPos3iv (will be remapped) */
"p\0"
"glWindowPos3iv\0"
"glWindowPos3ivARB\0"
"glWindowPos3ivMESA\0"
"\0"
- /* _mesa_function_pool[36451]: ReplacementCodeuivSUN (dynamic) */
+ /* _mesa_function_pool[36709]: ReplacementCodeuivSUN (dynamic) */
"p\0"
"glReplacementCodeuivSUN\0"
"\0"
- /* _mesa_function_pool[36478]: DrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[36736]: DrawElementsBaseVertex (will be remapped) */
"iiipi\0"
"glDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[36510]: CopyConvolutionFilter2D (offset 355) */
+ /* _mesa_function_pool[36768]: CopyConvolutionFilter2D (offset 355) */
"iiiiii\0"
"glCopyConvolutionFilter2D\0"
"glCopyConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[36573]: ApplyTextureEXT (dynamic) */
+ /* _mesa_function_pool[36831]: ApplyTextureEXT (dynamic) */
"i\0"
"glApplyTextureEXT\0"
"\0"
- /* _mesa_function_pool[36594]: CopyBufferSubData (will be remapped) */
+ /* _mesa_function_pool[36852]: CopyBufferSubData (will be remapped) */
"iiiii\0"
"glCopyBufferSubData\0"
"\0"
- /* _mesa_function_pool[36621]: NormalPointer (offset 318) */
+ /* _mesa_function_pool[36879]: NormalPointer (offset 318) */
"iip\0"
"glNormalPointer\0"
"\0"
- /* _mesa_function_pool[36642]: TexParameterfv (offset 179) */
+ /* _mesa_function_pool[36900]: TexParameterfv (offset 179) */
"iip\0"
"glTexParameterfv\0"
"\0"
- /* _mesa_function_pool[36664]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[36922]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[36709]: GetCombinerOutputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[36967]: GetCombinerOutputParameterfvNV (dynamic) */
"iiip\0"
"glGetCombinerOutputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[36748]: WindowPos4iMESA (will be remapped) */
+ /* _mesa_function_pool[37006]: WindowPos4iMESA (will be remapped) */
"iiii\0"
"glWindowPos4iMESA\0"
"\0"
- /* _mesa_function_pool[36772]: VertexAttrib4Nubv (will be remapped) */
+ /* _mesa_function_pool[37030]: VertexAttrib4Nubv (will be remapped) */
"ip\0"
"glVertexAttrib4Nubv\0"
"glVertexAttrib4NubvARB\0"
"\0"
- /* _mesa_function_pool[36819]: SecondaryColor3ui (will be remapped) */
+ /* _mesa_function_pool[37077]: SecondaryColor3ui (will be remapped) */
"iii\0"
"glSecondaryColor3ui\0"
"glSecondaryColor3uiEXT\0"
"\0"
- /* _mesa_function_pool[36867]: VertexAttribI3uivEXT (will be remapped) */
+ /* _mesa_function_pool[37125]: VertexAttribI3uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3uivEXT\0"
"glVertexAttribI3uiv\0"
"\0"
- /* _mesa_function_pool[36914]: UniformMatrix3x4fv (will be remapped) */
+ /* _mesa_function_pool[37172]: UniformMatrix3x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x4fv\0"
"\0"
- /* _mesa_function_pool[36941]: ClipPlane (offset 150) */
+ /* _mesa_function_pool[37199]: ClipPlane (offset 150) */
"ip\0"
"glClipPlane\0"
"\0"
- /* _mesa_function_pool[36957]: Recti (offset 90) */
+ /* _mesa_function_pool[37215]: Recti (offset 90) */
"iiii\0"
"glRecti\0"
"\0"
- /* _mesa_function_pool[36971]: VertexAttribI3ivEXT (will be remapped) */
+ /* _mesa_function_pool[37229]: VertexAttribI3ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3ivEXT\0"
"glVertexAttribI3iv\0"
"\0"
- /* _mesa_function_pool[37016]: DrawRangeElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[37274]: DrawRangeElementsBaseVertex (will be remapped) */
"iiiiipi\0"
"glDrawRangeElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[37055]: VertexAttribIPointer (will be remapped) */
+ /* _mesa_function_pool[37313]: VertexAttribIPointer (will be remapped) */
"iiiip\0"
"glVertexAttribIPointerEXT\0"
"glVertexAttribIPointer\0"
"\0"
- /* _mesa_function_pool[37111]: SecondaryColor3usv (will be remapped) */
+ /* _mesa_function_pool[37369]: SecondaryColor3usv (will be remapped) */
"p\0"
"glSecondaryColor3usv\0"
"glSecondaryColor3usvEXT\0"
"\0"
- /* _mesa_function_pool[37159]: VertexP2uiv (will be remapped) */
+ /* _mesa_function_pool[37417]: VertexP2uiv (will be remapped) */
"ip\0"
"glVertexP2uiv\0"
"\0"
- /* _mesa_function_pool[37177]: Fogxv (will be remapped) */
+ /* _mesa_function_pool[37435]: Fogxv (will be remapped) */
"ip\0"
"glFogxvOES\0"
"glFogxv\0"
"\0"
- /* _mesa_function_pool[37200]: MultiTexCoord3dv (offset 393) */
+ /* _mesa_function_pool[37458]: MultiTexCoord3dv (offset 393) */
"ip\0"
"glMultiTexCoord3dv\0"
"glMultiTexCoord3dvARB\0"
"\0"
- /* _mesa_function_pool[37245]: WindowPos4fvMESA (will be remapped) */
+ /* _mesa_function_pool[37503]: WindowPos4fvMESA (will be remapped) */
"p\0"
"glWindowPos4fvMESA\0"
"\0"
- /* _mesa_function_pool[37267]: GetPixelMapuiv (offset 272) */
+ /* _mesa_function_pool[37525]: GetPixelMapuiv (offset 272) */
"ip\0"
"glGetPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[37288]: Rectf (offset 88) */
+ /* _mesa_function_pool[37546]: Rectf (offset 88) */
"ffff\0"
"glRectf\0"
"\0"
- /* _mesa_function_pool[37302]: VertexAttrib1sNV (will be remapped) */
+ /* _mesa_function_pool[37560]: VertexAttrib1sNV (will be remapped) */
"ii\0"
"glVertexAttrib1sNV\0"
"\0"
- /* _mesa_function_pool[37325]: Indexfv (offset 47) */
+ /* _mesa_function_pool[37583]: Indexfv (offset 47) */
"p\0"
"glIndexfv\0"
"\0"
- /* _mesa_function_pool[37338]: ColorP3uiv (will be remapped) */
+ /* _mesa_function_pool[37596]: ColorP3uiv (will be remapped) */
"ip\0"
"glColorP3uiv\0"
"\0"
- /* _mesa_function_pool[37355]: TexParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[37613]: TexParameterIuiv (will be remapped) */
"iip\0"
"glTexParameterIuivEXT\0"
"glTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[37401]: BlitFramebuffer (will be remapped) */
+ /* _mesa_function_pool[37659]: BlitFramebuffer (will be remapped) */
"iiiiiiiiii\0"
"glBlitFramebuffer\0"
"glBlitFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[37452]: GetPointerv (offset 329) */
+ /* _mesa_function_pool[37710]: GetPointerv (offset 329) */
"ip\0"
"glGetPointerv\0"
"glGetPointervEXT\0"
"\0"
- /* _mesa_function_pool[37487]: Tangent3bEXT (dynamic) */
+ /* _mesa_function_pool[37745]: Tangent3bEXT (dynamic) */
"iii\0"
"glTangent3bEXT\0"
"\0"
- /* _mesa_function_pool[37507]: CombinerParameterfNV (dynamic) */
+ /* _mesa_function_pool[37765]: CombinerParameterfNV (dynamic) */
"if\0"
"glCombinerParameterfNV\0"
"\0"
- /* _mesa_function_pool[37534]: IndexMask (offset 212) */
+ /* _mesa_function_pool[37792]: IndexMask (offset 212) */
"i\0"
"glIndexMask\0"
"\0"
- /* _mesa_function_pool[37549]: CreateShaderObjectARB (will be remapped) */
+ /* _mesa_function_pool[37807]: CreateShaderObjectARB (will be remapped) */
"i\0"
"glCreateShaderObjectARB\0"
"\0"
- /* _mesa_function_pool[37576]: ReplacementCodeuiSUN (dynamic) */
+ /* _mesa_function_pool[37834]: ReplacementCodeuiSUN (dynamic) */
"i\0"
"glReplacementCodeuiSUN\0"
"\0"
- /* _mesa_function_pool[37602]: GetFloatv (offset 262) */
+ /* _mesa_function_pool[37860]: GetFloatv (offset 262) */
"ip\0"
"glGetFloatv\0"
"\0"
- /* _mesa_function_pool[37618]: CombinerOutputNV (dynamic) */
+ /* _mesa_function_pool[37876]: CombinerOutputNV (dynamic) */
"iiiiiiiiii\0"
"glCombinerOutputNV\0"
"\0"
- /* _mesa_function_pool[37649]: MultiTexCoord3i (offset 396) */
+ /* _mesa_function_pool[37907]: MultiTexCoord3i (offset 396) */
"iiii\0"
"glMultiTexCoord3i\0"
"glMultiTexCoord3iARB\0"
"\0"
- /* _mesa_function_pool[37694]: GetVertexAttribIiv (will be remapped) */
+ /* _mesa_function_pool[37952]: GetVertexAttribIiv (will be remapped) */
"iip\0"
"glGetVertexAttribIivEXT\0"
"glGetVertexAttribIiv\0"
"\0"
- /* _mesa_function_pool[37744]: ClientWaitSync (will be remapped) */
+ /* _mesa_function_pool[38002]: ClientWaitSync (will be remapped) */
"iii\0"
"glClientWaitSync\0"
"\0"
- /* _mesa_function_pool[37766]: TexCoord4s (offset 124) */
+ /* _mesa_function_pool[38024]: TexCoord4s (offset 124) */
"iiii\0"
"glTexCoord4s\0"
"\0"
- /* _mesa_function_pool[37785]: GetPerfMonitorGroupsAMD (will be remapped) */
+ /* _mesa_function_pool[38043]: GetPerfMonitorGroupsAMD (will be remapped) */
"pip\0"
"glGetPerfMonitorGroupsAMD\0"
"\0"
- /* _mesa_function_pool[37816]: TexCoord3sv (offset 117) */
+ /* _mesa_function_pool[38074]: TexCoord3sv (offset 117) */
"p\0"
"glTexCoord3sv\0"
"\0"
- /* _mesa_function_pool[37833]: VertexAttrib2dNV (will be remapped) */
+ /* _mesa_function_pool[38091]: VertexAttrib2dNV (will be remapped) */
"idd\0"
"glVertexAttrib2dNV\0"
"\0"
- /* _mesa_function_pool[37857]: FogCoorddv (will be remapped) */
+ /* _mesa_function_pool[38115]: FogCoorddv (will be remapped) */
"p\0"
"glFogCoorddv\0"
"glFogCoorddvEXT\0"
"\0"
- /* _mesa_function_pool[37889]: PopAttrib (offset 218) */
+ /* _mesa_function_pool[38147]: PopAttrib (offset 218) */
"\0"
"glPopAttrib\0"
"\0"
- /* _mesa_function_pool[37903]: Fogfv (offset 154) */
+ /* _mesa_function_pool[38161]: Fogfv (offset 154) */
"ip\0"
"glFogfv\0"
"\0"
- /* _mesa_function_pool[37915]: ObjectPurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[38173]: ObjectPurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectPurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[37943]: InitNames (offset 197) */
+ /* _mesa_function_pool[38201]: InitNames (offset 197) */
"\0"
"glInitNames\0"
"\0"
- /* _mesa_function_pool[37957]: Normal3sv (offset 61) */
+ /* _mesa_function_pool[38215]: Normal3sv (offset 61) */
"p\0"
"glNormal3sv\0"
"\0"
- /* _mesa_function_pool[37972]: GetTransformFeedbackVarying (will be remapped) */
+ /* _mesa_function_pool[38230]: GetTransformFeedbackVarying (will be remapped) */
"iiipppp\0"
"glGetTransformFeedbackVarying\0"
"glGetTransformFeedbackVaryingEXT\0"
"\0"
- /* _mesa_function_pool[38044]: Minmax (offset 368) */
+ /* _mesa_function_pool[38302]: Minmax (offset 368) */
"iii\0"
"glMinmax\0"
"glMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[38070]: BufferData (will be remapped) */
+ /* _mesa_function_pool[38328]: BufferData (will be remapped) */
"iipi\0"
"glBufferData\0"
"glBufferDataARB\0"
"\0"
- /* _mesa_function_pool[38105]: DeleteQueries (will be remapped) */
+ /* _mesa_function_pool[38363]: DeleteQueries (will be remapped) */
"ip\0"
"glDeleteQueries\0"
"glDeleteQueriesARB\0"
"\0"
- /* _mesa_function_pool[38144]: TexCoord4d (offset 118) */
+ /* _mesa_function_pool[38402]: TexCoord4d (offset 118) */
"dddd\0"
"glTexCoord4d\0"
"\0"
- /* _mesa_function_pool[38163]: IsEnabledi (will be remapped) */
+ /* _mesa_function_pool[38421]: IsEnabledi (will be remapped) */
"ii\0"
"glIsEnabledIndexedEXT\0"
"glIsEnabledi\0"
"\0"
- /* _mesa_function_pool[38202]: TexCoord4f (offset 120) */
+ /* _mesa_function_pool[38460]: TexCoord4f (offset 120) */
"ffff\0"
"glTexCoord4f\0"
"\0"
- /* _mesa_function_pool[38221]: Uniform3ui (will be remapped) */
+ /* _mesa_function_pool[38479]: Uniform3ui (will be remapped) */
"iiii\0"
"glUniform3uiEXT\0"
"glUniform3ui\0"
"\0"
- /* _mesa_function_pool[38256]: InvalidateFramebuffer (will be remapped) */
+ /* _mesa_function_pool[38514]: InvalidateFramebuffer (will be remapped) */
"iip\0"
"glInvalidateFramebuffer\0"
"\0"
- /* _mesa_function_pool[38285]: GetFragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[38543]: GetFragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[38318]: Binormal3fvEXT (dynamic) */
+ /* _mesa_function_pool[38576]: Binormal3fvEXT (dynamic) */
"p\0"
"glBinormal3fvEXT\0"
"\0"
- /* _mesa_function_pool[38338]: GetBooleanv (offset 258) */
+ /* _mesa_function_pool[38596]: GetBooleanv (offset 258) */
"ip\0"
"glGetBooleanv\0"
"\0"
- /* _mesa_function_pool[38356]: ColorFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[38614]: ColorFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiiii\0"
"glColorFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[38393]: Hint (offset 158) */
+ /* _mesa_function_pool[38651]: Hint (offset 158) */
"ii\0"
"glHint\0"
"\0"
- /* _mesa_function_pool[38404]: DeletePerfMonitorsAMD (will be remapped) */
+ /* _mesa_function_pool[38662]: DeletePerfMonitorsAMD (will be remapped) */
"ip\0"
"glDeletePerfMonitorsAMD\0"
"\0"
- /* _mesa_function_pool[38432]: Color4dv (offset 28) */
+ /* _mesa_function_pool[38690]: Color4dv (offset 28) */
"p\0"
"glColor4dv\0"
"\0"
- /* _mesa_function_pool[38446]: IsAsyncMarkerSGIX (dynamic) */
+ /* _mesa_function_pool[38704]: IsAsyncMarkerSGIX (dynamic) */
"i\0"
"glIsAsyncMarkerSGIX\0"
"\0"
- /* _mesa_function_pool[38469]: AreProgramsResidentNV (will be remapped) */
+ /* _mesa_function_pool[38727]: MemoryBarrier (will be remapped) */
+ "i\0"
+ "glMemoryBarrier\0"
+ "\0"
+ /* _mesa_function_pool[38746]: AreProgramsResidentNV (will be remapped) */
"ipp\0"
"glAreProgramsResidentNV\0"
"\0"
- /* _mesa_function_pool[38498]: DisableVertexAttribArray (will be remapped) */
+ /* _mesa_function_pool[38775]: DisableVertexAttribArray (will be remapped) */
"i\0"
"glDisableVertexAttribArray\0"
"glDisableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[38558]: CopyColorSubTable (offset 347) */
+ /* _mesa_function_pool[38835]: CopyColorSubTable (offset 347) */
"iiiii\0"
"glCopyColorSubTable\0"
"glCopyColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[38608]: WeightdvARB (dynamic) */
+ /* _mesa_function_pool[38885]: WeightdvARB (dynamic) */
"ip\0"
"glWeightdvARB\0"
"\0"
- /* _mesa_function_pool[38626]: PollInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[38903]: PollInstrumentsSGIX (dynamic) */
"p\0"
"glPollInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[38651]: VertexAttrib3dvNV (will be remapped) */
+ /* _mesa_function_pool[38928]: VertexAttrib3dvNV (will be remapped) */
"ip\0"
"glVertexAttrib3dvNV\0"
"\0"
- /* _mesa_function_pool[38675]: GetObjectParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[38952]: GetObjectParameterfvARB (will be remapped) */
"iip\0"
"glGetObjectParameterfvARB\0"
"\0"
- /* _mesa_function_pool[38706]: Vertex4iv (offset 147) */
+ /* _mesa_function_pool[38983]: Vertex4iv (offset 147) */
"p\0"
"glVertex4iv\0"
"\0"
- /* _mesa_function_pool[38721]: BufferSubData (will be remapped) */
+ /* _mesa_function_pool[38998]: GetDoublei_v (will be remapped) */
+ "iip\0"
+ "glGetDoublei_v\0"
+ "\0"
+ /* _mesa_function_pool[39018]: BufferSubData (will be remapped) */
"iiip\0"
"glBufferSubData\0"
"glBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[38762]: TexCoord4dv (offset 119) */
+ /* _mesa_function_pool[39059]: TexCoord4dv (offset 119) */
"p\0"
"glTexCoord4dv\0"
"\0"
- /* _mesa_function_pool[38779]: LockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[39076]: LockArraysEXT (will be remapped) */
"ii\0"
"glLockArraysEXT\0"
"\0"
- /* _mesa_function_pool[38799]: Begin (offset 7) */
+ /* _mesa_function_pool[39096]: Begin (offset 7) */
"i\0"
"glBegin\0"
"\0"
- /* _mesa_function_pool[38810]: LightModeli (offset 165) */
+ /* _mesa_function_pool[39107]: LightModeli (offset 165) */
"ii\0"
"glLightModeli\0"
"\0"
- /* _mesa_function_pool[38828]: FogCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[39125]: FogCoordPointerListIBM (dynamic) */
"iipi\0"
"glFogCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[38859]: ObjectPtrLabel (will be remapped) */
+ /* _mesa_function_pool[39156]: ObjectPtrLabel (will be remapped) */
"pip\0"
"glObjectPtrLabel\0"
"\0"
- /* _mesa_function_pool[38881]: Rectfv (offset 89) */
+ /* _mesa_function_pool[39178]: Rectfv (offset 89) */
"pp\0"
"glRectfv\0"
"\0"
- /* _mesa_function_pool[38894]: ClipPlanex (will be remapped) */
+ /* _mesa_function_pool[39191]: ClipPlanex (will be remapped) */
"ip\0"
"glClipPlanexOES\0"
"glClipPlanex\0"
"\0"
- /* _mesa_function_pool[38927]: Uniform4f (will be remapped) */
+ /* _mesa_function_pool[39224]: Uniform4f (will be remapped) */
"iffff\0"
"glUniform4f\0"
"glUniform4fARB\0"
"\0"
- /* _mesa_function_pool[38961]: LightModelf (offset 163) */
+ /* _mesa_function_pool[39258]: LightModelf (offset 163) */
"if\0"
"glLightModelf\0"
"\0"
- /* _mesa_function_pool[38979]: GetTexParameterfv (offset 282) */
+ /* _mesa_function_pool[39276]: GetTexParameterfv (offset 282) */
"iip\0"
"glGetTexParameterfv\0"
"\0"
- /* _mesa_function_pool[39004]: GetLightfv (offset 264) */
+ /* _mesa_function_pool[39301]: GetLightfv (offset 264) */
"iip\0"
"glGetLightfv\0"
"\0"
- /* _mesa_function_pool[39022]: PixelTransformParameterivEXT (dynamic) */
+ /* _mesa_function_pool[39319]: PixelTransformParameterivEXT (dynamic) */
"iip\0"
"glPixelTransformParameterivEXT\0"
"\0"
- /* _mesa_function_pool[39058]: BinormalPointerEXT (dynamic) */
+ /* _mesa_function_pool[39355]: BinormalPointerEXT (dynamic) */
"iip\0"
"glBinormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[39084]: VertexP4uiv (will be remapped) */
+ /* _mesa_function_pool[39381]: VertexP4uiv (will be remapped) */
"ip\0"
"glVertexP4uiv\0"
"\0"
- /* _mesa_function_pool[39102]: GetCombinerInputParameterivNV (dynamic) */
+ /* _mesa_function_pool[39399]: GetCombinerInputParameterivNV (dynamic) */
"iiiip\0"
"glGetCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[39141]: Disable (offset 214) */
+ /* _mesa_function_pool[39438]: Disable (offset 214) */
"i\0"
"glDisable\0"
"\0"
- /* _mesa_function_pool[39154]: ClipPlanef (will be remapped) */
+ /* _mesa_function_pool[39451]: ClipPlanef (will be remapped) */
"ip\0"
"glClipPlanefOES\0"
"glClipPlanef\0"
"\0"
- /* _mesa_function_pool[39187]: MultiTexCoord2fvARB (offset 387) */
+ /* _mesa_function_pool[39484]: MultiTexCoord2fvARB (offset 387) */
"ip\0"
"glMultiTexCoord2fv\0"
"glMultiTexCoord2fvARB\0"
"\0"
- /* _mesa_function_pool[39232]: GetPerfMonitorCounterStringAMD (will be remapped) */
+ /* _mesa_function_pool[39529]: GetPerfMonitorCounterStringAMD (will be remapped) */
"iiipp\0"
"glGetPerfMonitorCounterStringAMD\0"
"\0"
- /* _mesa_function_pool[39272]: SecondaryColorPointer (will be remapped) */
+ /* _mesa_function_pool[39569]: SecondaryColorPointer (will be remapped) */
"iiip\0"
"glSecondaryColorPointer\0"
"glSecondaryColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[39329]: FinishAsyncSGIX (dynamic) */
+ /* _mesa_function_pool[39626]: FinishAsyncSGIX (dynamic) */
"p\0"
"glFinishAsyncSGIX\0"
"\0"
- /* _mesa_function_pool[39350]: DrawArrays (offset 310) */
+ /* _mesa_function_pool[39647]: DrawArrays (offset 310) */
"iii\0"
"glDrawArrays\0"
"glDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[39384]: WeightuivARB (dynamic) */
+ /* _mesa_function_pool[39681]: WeightuivARB (dynamic) */
"ip\0"
"glWeightuivARB\0"
"\0"
- /* _mesa_function_pool[39403]: GetnTexImageARB (will be remapped) */
+ /* _mesa_function_pool[39700]: GetnTexImageARB (will be remapped) */
"iiiiip\0"
"glGetnTexImageARB\0"
"\0"
- /* _mesa_function_pool[39429]: ColorMask (offset 210) */
+ /* _mesa_function_pool[39726]: ColorMask (offset 210) */
"iiii\0"
"glColorMask\0"
"\0"
- /* _mesa_function_pool[39447]: GenAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[39744]: GenAsyncMarkersSGIX (dynamic) */
"i\0"
"glGenAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[39472]: Materialxv (will be remapped) */
+ /* _mesa_function_pool[39769]: Materialxv (will be remapped) */
"iip\0"
"glMaterialxvOES\0"
"glMaterialxv\0"
"\0"
- /* _mesa_function_pool[39506]: DebugMessageInsertARB (will be remapped) */
+ /* _mesa_function_pool[39803]: DebugMessageInsertARB (will be remapped) */
"iiiiip\0"
"glDebugMessageInsertARB\0"
"\0"
- /* _mesa_function_pool[39538]: GetListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[39835]: GetListParameterivSGIX (dynamic) */
"iip\0"
"glGetListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[39568]: GetInfoLogARB (will be remapped) */
+ /* _mesa_function_pool[39865]: GetInfoLogARB (will be remapped) */
"iipp\0"
"glGetInfoLogARB\0"
"\0"
- /* _mesa_function_pool[39590]: RasterPos4iv (offset 83) */
+ /* _mesa_function_pool[39887]: RasterPos4iv (offset 83) */
"p\0"
"glRasterPos4iv\0"
"\0"
- /* _mesa_function_pool[39608]: Enable (offset 215) */
+ /* _mesa_function_pool[39905]: Enable (offset 215) */
"i\0"
"glEnable\0"
"\0"
- /* _mesa_function_pool[39620]: GetRenderbufferParameteriv (will be remapped) */
+ /* _mesa_function_pool[39917]: GetRenderbufferParameteriv (will be remapped) */
"iip\0"
"glGetRenderbufferParameteriv\0"
"glGetRenderbufferParameterivEXT\0"
"glGetRenderbufferParameterivOES\0"
"\0"
- /* _mesa_function_pool[39718]: LineStipple (offset 167) */
+ /* _mesa_function_pool[40015]: LineStipple (offset 167) */
"ii\0"
"glLineStipple\0"
"\0"
- /* _mesa_function_pool[39736]: FragmentLightfSGIX (dynamic) */
+ /* _mesa_function_pool[40033]: FragmentLightfSGIX (dynamic) */
"iif\0"
"glFragmentLightfSGIX\0"
"\0"
- /* _mesa_function_pool[39762]: SetFenceNV (dynamic) */
+ /* _mesa_function_pool[40059]: SetFenceNV (dynamic) */
"ii\0"
"glSetFenceNV\0"
"\0"
- /* _mesa_function_pool[39779]: VertexAttribI4uivEXT (will be remapped) */
- "ip\0"
- "glVertexAttribI4uivEXT\0"
- "glVertexAttribI4uiv\0"
+ /* _mesa_function_pool[40076]: DepthRangeArrayv (will be remapped) */
+ "iip\0"
+ "glDepthRangeArrayv\0"
"\0"
- /* _mesa_function_pool[39826]: VertexAttribs4svNV (will be remapped) */
+ /* _mesa_function_pool[40100]: VertexAttribs4svNV (will be remapped) */
"iip\0"
"glVertexAttribs4svNV\0"
"\0"
- /* _mesa_function_pool[39852]: GenRenderbuffers (will be remapped) */
+ /* _mesa_function_pool[40126]: GenRenderbuffers (will be remapped) */
"ip\0"
"glGenRenderbuffers\0"
"glGenRenderbuffersEXT\0"
"glGenRenderbuffersOES\0"
"\0"
- /* _mesa_function_pool[39919]: EdgeFlagPointerListIBM (dynamic) */
+ /* _mesa_function_pool[40193]: EdgeFlagPointerListIBM (dynamic) */
"ipi\0"
"glEdgeFlagPointerListIBM\0"
"\0"
- /* _mesa_function_pool[39949]: UniformMatrix4fv (will be remapped) */
+ /* _mesa_function_pool[40223]: UniformMatrix4fv (will be remapped) */
"iiip\0"
"glUniformMatrix4fv\0"
"glUniformMatrix4fvARB\0"
"\0"
- /* _mesa_function_pool[39996]: UniformMatrix3x2fv (will be remapped) */
+ /* _mesa_function_pool[40270]: UniformMatrix3x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x2fv\0"
"\0"
- /* _mesa_function_pool[40023]: GetMinmaxParameterfv (offset 365) */
+ /* _mesa_function_pool[40297]: GetMinmaxParameterfv (offset 365) */
"iip\0"
"glGetMinmaxParameterfv\0"
"glGetMinmaxParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[40077]: VertexAttrib4Nuiv (will be remapped) */
+ /* _mesa_function_pool[40351]: VertexAttrib4Nuiv (will be remapped) */
"ip\0"
"glVertexAttrib4Nuiv\0"
"glVertexAttrib4NuivARB\0"
"\0"
- /* _mesa_function_pool[40124]: ClientActiveTexture (offset 375) */
+ /* _mesa_function_pool[40398]: ClientActiveTexture (offset 375) */
"i\0"
"glClientActiveTexture\0"
"glClientActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[40174]: WindowPos2sv (will be remapped) */
+ /* _mesa_function_pool[40448]: WindowPos2sv (will be remapped) */
"p\0"
"glWindowPos2sv\0"
"glWindowPos2svARB\0"
"glWindowPos2svMESA\0"
"\0"
- /* _mesa_function_pool[40229]: Vertex3fv (offset 137) */
+ /* _mesa_function_pool[40503]: Vertex3fv (offset 137) */
"p\0"
"glVertex3fv\0"
"\0"
- /* _mesa_function_pool[40244]: GetUniformIndices (will be remapped) */
+ /* _mesa_function_pool[40518]: GetUniformIndices (will be remapped) */
"iipp\0"
"glGetUniformIndices\0"
"\0"
- /* _mesa_function_pool[40270]: GetTexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[40544]: GetTexBumpParameterivATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[40301]: SecondaryColor3sv (will be remapped) */
+ /* _mesa_function_pool[40575]: SecondaryColor3sv (will be remapped) */
"p\0"
"glSecondaryColor3sv\0"
"glSecondaryColor3svEXT\0"
"\0"
- /* _mesa_function_pool[40347]: Fogx (will be remapped) */
+ /* _mesa_function_pool[40621]: Fogx (will be remapped) */
"ii\0"
"glFogxOES\0"
"glFogx\0"
"\0"
- /* _mesa_function_pool[40368]: Binormal3bEXT (dynamic) */
+ /* _mesa_function_pool[40642]: Binormal3bEXT (dynamic) */
"iii\0"
"glBinormal3bEXT\0"
"\0"
- /* _mesa_function_pool[40389]: FragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[40663]: FragmentMaterialivSGIX (dynamic) */
"iip\0"
"glFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[40419]: WaitSync (will be remapped) */
+ /* _mesa_function_pool[40693]: WaitSync (will be remapped) */
"iii\0"
"glWaitSync\0"
"\0"
- /* _mesa_function_pool[40435]: CombinerParameterivNV (dynamic) */
+ /* _mesa_function_pool[40709]: CombinerParameterivNV (dynamic) */
"ip\0"
"glCombinerParameterivNV\0"
"\0"
- /* _mesa_function_pool[40463]: BindVertexBuffer (will be remapped) */
+ /* _mesa_function_pool[40737]: BindVertexBuffer (will be remapped) */
"iiii\0"
"glBindVertexBuffer\0"
"\0"
- /* _mesa_function_pool[40488]: MultiTexCoord2sv (offset 391) */
+ /* _mesa_function_pool[40762]: MultiTexCoord2sv (offset 391) */
"ip\0"
"glMultiTexCoord2sv\0"
"glMultiTexCoord2svARB\0"
"\0"
- /* _mesa_function_pool[40533]: DeformationMap3dSGIX (dynamic) */
+ /* _mesa_function_pool[40807]: DeformationMap3dSGIX (dynamic) */
"iddiiddiiddiip\0"
"glDeformationMap3dSGIX\0"
"\0"
- /* _mesa_function_pool[40572]: EndFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[40846]: EndFragmentShaderATI (will be remapped) */
"\0"
"glEndFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[40597]: Binormal3iEXT (dynamic) */
+ /* _mesa_function_pool[40871]: Binormal3iEXT (dynamic) */
"iii\0"
"glBinormal3iEXT\0"
"\0"
- /* _mesa_function_pool[40618]: Uniform4iv (will be remapped) */
+ /* _mesa_function_pool[40892]: Uniform4iv (will be remapped) */
"iip\0"
"glUniform4iv\0"
"glUniform4ivARB\0"
@@ -5756,770 +5804,782 @@ static const char _mesa_function_pool[] =
/* these functions need to be remapped */
static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
- { 26356, CompressedTexImage1D_remap_index },
- { 16881, CompressedTexImage2D_remap_index },
- { 2945, CompressedTexImage3D_remap_index },
- { 7802, CompressedTexSubImage1D_remap_index },
- { 4123, CompressedTexSubImage2D_remap_index },
- { 31282, CompressedTexSubImage3D_remap_index },
- { 15346, GetCompressedTexImage_remap_index },
- { 23189, LoadTransposeMatrixd_remap_index },
- { 23137, LoadTransposeMatrixf_remap_index },
- { 35298, MultTransposeMatrixd_remap_index },
- { 35350, MultTransposeMatrixf_remap_index },
- { 32762, SampleCoverage_remap_index },
- { 12086, BlendFuncSeparate_remap_index },
- { 14326, FogCoordPointer_remap_index },
- { 17206, FogCoordd_remap_index },
- { 37857, FogCoorddv_remap_index },
- { 32921, MultiDrawArrays_remap_index },
- { 27075, PointParameterf_remap_index },
- { 18059, PointParameterfv_remap_index },
- { 27033, PointParameteri_remap_index },
- { 33129, PointParameteriv_remap_index },
- { 19023, SecondaryColor3b_remap_index },
- { 15730, SecondaryColor3bv_remap_index },
- { 33200, SecondaryColor3d_remap_index },
- { 3285, SecondaryColor3dv_remap_index },
- { 36298, SecondaryColor3i_remap_index },
- { 21887, SecondaryColor3iv_remap_index },
- { 18730, SecondaryColor3s_remap_index },
- { 40301, SecondaryColor3sv_remap_index },
- { 16257, SecondaryColor3ub_remap_index },
- { 26985, SecondaryColor3ubv_remap_index },
- { 36819, SecondaryColor3ui_remap_index },
- { 4305, SecondaryColor3uiv_remap_index },
- { 14557, SecondaryColor3us_remap_index },
- { 37111, SecondaryColor3usv_remap_index },
- { 39272, SecondaryColorPointer_remap_index },
- { 2124, WindowPos2d_remap_index },
- { 19547, WindowPos2dv_remap_index },
- { 2052, WindowPos2f_remap_index },
- { 1539, WindowPos2fv_remap_index },
- { 16575, WindowPos2i_remap_index },
- { 24163, WindowPos2iv_remap_index },
- { 2454, WindowPos2s_remap_index },
- { 40174, WindowPos2sv_remap_index },
- { 16116, WindowPos3d_remap_index },
- { 14194, WindowPos3dv_remap_index },
- { 16203, WindowPos3f_remap_index },
- { 32311, WindowPos3fv_remap_index },
- { 18969, WindowPos3i_remap_index },
- { 36396, WindowPos3iv_remap_index },
- { 16628, WindowPos3s_remap_index },
- { 7237, WindowPos3sv_remap_index },
- { 23668, BeginQuery_remap_index },
- { 12739, BindBuffer_remap_index },
- { 38070, BufferData_remap_index },
- { 38721, BufferSubData_remap_index },
- { 28357, DeleteBuffers_remap_index },
- { 38105, DeleteQueries_remap_index },
- { 29276, EndQuery_remap_index },
- { 25739, GenBuffers_remap_index },
- { 2796, GenQueries_remap_index },
- { 19316, GetBufferParameteriv_remap_index },
- { 31843, GetBufferPointerv_remap_index },
- { 28508, GetBufferSubData_remap_index },
- { 30934, GetQueryObjectiv_remap_index },
- { 28880, GetQueryObjectuiv_remap_index },
- { 3877, GetQueryiv_remap_index },
- { 24306, IsBuffer_remap_index },
- { 21046, IsQuery_remap_index },
- { 4484, MapBuffer_remap_index },
- { 34213, UnmapBuffer_remap_index },
- { 1311, AttachShader_remap_index },
- { 6554, BindAttribLocation_remap_index },
- { 25977, BlendEquationSeparate_remap_index },
- { 23008, CompileShader_remap_index },
- { 12008, CreateProgram_remap_index },
- { 27483, CreateShader_remap_index },
- { 30498, DeleteProgram_remap_index },
- { 31143, DeleteShader_remap_index },
- { 32656, DetachShader_remap_index },
- { 38498, DisableVertexAttribArray_remap_index },
- { 13302, DrawBuffers_remap_index },
- { 26672, EnableVertexAttribArray_remap_index },
- { 9262, GetActiveAttrib_remap_index },
- { 28307, GetActiveUniform_remap_index },
- { 21614, GetAttachedShaders_remap_index },
- { 17474, GetAttribLocation_remap_index },
- { 6134, GetProgramInfoLog_remap_index },
- { 318, GetProgramiv_remap_index },
- { 14818, GetShaderInfoLog_remap_index },
- { 28015, GetShaderSource_remap_index },
- { 1608, GetShaderiv_remap_index },
- { 24096, GetUniformLocation_remap_index },
- { 7501, GetUniformfv_remap_index },
- { 7993, GetUniformiv_remap_index },
- { 20299, GetVertexAttribPointerv_remap_index },
- { 25464, GetVertexAttribdv_remap_index },
- { 2203, GetVertexAttribfv_remap_index },
- { 13103, GetVertexAttribiv_remap_index },
- { 15715, IsProgram_remap_index },
- { 7619, IsShader_remap_index },
- { 22170, LinkProgram_remap_index },
- { 12210, ShaderSource_remap_index },
- { 12182, StencilFuncSeparate_remap_index },
- { 4458, StencilMaskSeparate_remap_index },
- { 9686, StencilOpSeparate_remap_index },
- { 22251, Uniform1f_remap_index },
- { 31679, Uniform1fv_remap_index },
- { 22405, Uniform1i_remap_index },
- { 32139, Uniform1iv_remap_index },
- { 31208, Uniform2f_remap_index },
- { 785, Uniform2fv_remap_index },
- { 31500, Uniform2i_remap_index },
- { 33352, Uniform2iv_remap_index },
- { 3136, Uniform3f_remap_index },
- { 13398, Uniform3fv_remap_index },
- { 18842, Uniform3i_remap_index },
- { 17392, Uniform3iv_remap_index },
- { 38927, Uniform4f_remap_index },
- { 5668, Uniform4fv_remap_index },
- { 16802, Uniform4i_remap_index },
- { 40618, Uniform4iv_remap_index },
- { 3169, UniformMatrix2fv_remap_index },
- { 3603, UniformMatrix3fv_remap_index },
- { 39949, UniformMatrix4fv_remap_index },
- { 22943, UseProgram_remap_index },
- { 8823, ValidateProgram_remap_index },
- { 26315, VertexAttrib1d_remap_index },
- { 14055, VertexAttrib1dv_remap_index },
- { 26631, VertexAttrib1s_remap_index },
- { 1739, VertexAttrib1sv_remap_index },
- { 31240, VertexAttrib2d_remap_index },
- { 6026, VertexAttrib2dv_remap_index },
- { 30980, VertexAttrib2s_remap_index },
- { 12795, VertexAttrib2sv_remap_index },
- { 3936, VertexAttrib3d_remap_index },
- { 531, VertexAttrib3dv_remap_index },
- { 23767, VertexAttrib3s_remap_index },
- { 20978, VertexAttrib3sv_remap_index },
- { 4571, VertexAttrib4Nbv_remap_index },
- { 22004, VertexAttrib4Niv_remap_index },
- { 34011, VertexAttrib4Nsv_remap_index },
- { 5552, VertexAttrib4Nub_remap_index },
- { 36772, VertexAttrib4Nubv_remap_index },
- { 40077, VertexAttrib4Nuiv_remap_index },
- { 6069, VertexAttrib4Nusv_remap_index },
- { 34505, VertexAttrib4bv_remap_index },
- { 22488, VertexAttrib4d_remap_index },
- { 21391, VertexAttrib4dv_remap_index },
- { 17661, VertexAttrib4iv_remap_index },
- { 22817, VertexAttrib4s_remap_index },
- { 29779, VertexAttrib4sv_remap_index },
- { 32876, VertexAttrib4ubv_remap_index },
- { 33966, VertexAttrib4uiv_remap_index },
- { 5304, VertexAttrib4usv_remap_index },
- { 18590, VertexAttribPointer_remap_index },
- { 26527, UniformMatrix2x3fv_remap_index },
- { 33173, UniformMatrix2x4fv_remap_index },
- { 39996, UniformMatrix3x2fv_remap_index },
- { 36914, UniformMatrix3x4fv_remap_index },
- { 18915, UniformMatrix4x2fv_remap_index },
- { 3681, UniformMatrix4x3fv_remap_index },
- { 20528, BeginConditionalRender_remap_index },
- { 9062, BeginTransformFeedback_remap_index },
- { 6763, BindBufferBase_remap_index },
- { 30546, BindBufferRange_remap_index },
- { 1782, BindFragDataLocation_remap_index },
- { 6464, ClampColor_remap_index },
- { 7041, ClearBufferfi_remap_index },
- { 21072, ClearBufferfv_remap_index },
- { 35648, ClearBufferiv_remap_index },
- { 15882, ClearBufferuiv_remap_index },
- { 9220, ColorMaski_remap_index },
- { 29657, Disablei_remap_index },
- { 16170, Enablei_remap_index },
- { 31793, EndConditionalRender_remap_index },
- { 28776, EndTransformFeedback_remap_index },
- { 17015, GetBooleani_v_remap_index },
- { 23439, GetFragDataLocation_remap_index },
- { 35898, GetIntegeri_v_remap_index },
- { 24034, GetStringi_remap_index },
- { 29900, GetTexParameterIiv_remap_index },
- { 13849, GetTexParameterIuiv_remap_index },
- { 37972, GetTransformFeedbackVarying_remap_index },
- { 10117, GetUniformuiv_remap_index },
- { 37694, GetVertexAttribIiv_remap_index },
- { 2864, GetVertexAttribIuiv_remap_index },
- { 38163, IsEnabledi_remap_index },
- { 10553, TexParameterIiv_remap_index },
- { 37355, TexParameterIuiv_remap_index },
- { 3386, TransformFeedbackVaryings_remap_index },
- { 15928, Uniform1ui_remap_index },
- { 17298, Uniform1uiv_remap_index },
- { 24656, Uniform2ui_remap_index },
- { 15804, Uniform2uiv_remap_index },
- { 38221, Uniform3ui_remap_index },
- { 30207, Uniform3uiv_remap_index },
- { 4719, Uniform4ui_remap_index },
- { 25831, Uniform4uiv_remap_index },
- { 7398, VertexAttribI1iv_remap_index },
- { 20640, VertexAttribI1uiv_remap_index },
- { 5108, VertexAttribI4bv_remap_index },
- { 8919, VertexAttribI4sv_remap_index },
- { 24387, VertexAttribI4ubv_remap_index },
- { 1836, VertexAttribI4usv_remap_index },
- { 37055, VertexAttribIPointer_remap_index },
- { 35562, PrimitiveRestartIndex_remap_index },
- { 390, TexBuffer_remap_index },
- { 6260, FramebufferTexture_remap_index },
- { 31633, GetBufferParameteri64v_remap_index },
- { 12249, GetInteger64i_v_remap_index },
- { 3805, VertexAttribDivisor_remap_index },
- { 35254, MinSampleShading_remap_index },
- { 28091, BindProgramARB_remap_index },
- { 32404, DeleteProgramsARB_remap_index },
- { 16334, GenProgramsARB_remap_index },
- { 11881, GetProgramEnvParameterdvARB_remap_index },
- { 28221, GetProgramEnvParameterfvARB_remap_index },
- { 33013, GetProgramLocalParameterdvARB_remap_index },
- { 10033, GetProgramLocalParameterfvARB_remap_index },
- { 22076, GetProgramStringARB_remap_index },
- { 33301, GetProgramivARB_remap_index },
- { 33934, IsProgramARB_remap_index },
- { 23325, ProgramEnvParameter4dARB_remap_index },
- { 30134, ProgramEnvParameter4dvARB_remap_index },
- { 19994, ProgramEnvParameter4fARB_remap_index },
- { 10978, ProgramEnvParameter4fvARB_remap_index },
- { 4616, ProgramLocalParameter4dARB_remap_index },
- { 15426, ProgramLocalParameter4dvARB_remap_index },
- { 35669, ProgramLocalParameter4fARB_remap_index },
- { 31044, ProgramLocalParameter4fvARB_remap_index },
- { 34096, ProgramStringARB_remap_index },
- { 4914, VertexAttrib1fARB_remap_index },
- { 34993, VertexAttrib1fvARB_remap_index },
- { 1417, VertexAttrib2fARB_remap_index },
- { 9960, VertexAttrib2fvARB_remap_index },
- { 1496, VertexAttrib3fARB_remap_index },
- { 26848, VertexAttrib3fvARB_remap_index },
- { 13608, VertexAttrib4fARB_remap_index },
- { 14012, VertexAttrib4fvARB_remap_index },
- { 10229, AttachObjectARB_remap_index },
- { 3576, CreateProgramObjectARB_remap_index },
- { 37549, CreateShaderObjectARB_remap_index },
- { 16940, DeleteObjectARB_remap_index },
- { 28734, DetachObjectARB_remap_index },
- { 11439, GetAttachedObjectsARB_remap_index },
- { 11742, GetHandleARB_remap_index },
- { 39568, GetInfoLogARB_remap_index },
- { 38675, GetObjectParameterfvARB_remap_index },
- { 32803, GetObjectParameterivARB_remap_index },
- { 21488, DrawArraysInstancedARB_remap_index },
- { 8265, DrawElementsInstancedARB_remap_index },
- { 11965, BindFramebuffer_remap_index },
- { 33417, BindRenderbuffer_remap_index },
- { 37401, BlitFramebuffer_remap_index },
- { 27836, CheckFramebufferStatus_remap_index },
- { 33636, DeleteFramebuffers_remap_index },
- { 4987, DeleteRenderbuffers_remap_index },
- { 33844, FramebufferRenderbuffer_remap_index },
- { 1361, FramebufferTexture1D_remap_index },
- { 27624, FramebufferTexture2D_remap_index },
- { 19069, FramebufferTexture3D_remap_index },
- { 14727, FramebufferTextureLayer_remap_index },
- { 25675, GenFramebuffers_remap_index },
- { 39852, GenRenderbuffers_remap_index },
- { 30243, GenerateMipmap_remap_index },
- { 20094, GetFramebufferAttachmentParameteriv_remap_index },
- { 39620, GetRenderbufferParameteriv_remap_index },
- { 25867, IsFramebuffer_remap_index },
- { 14482, IsRenderbuffer_remap_index },
- { 2522, RenderbufferStorage_remap_index },
- { 15531, RenderbufferStorageMultisample_remap_index },
- { 30884, FramebufferTextureFaceARB_remap_index },
- { 19853, FlushMappedBufferRange_remap_index },
- { 35158, MapBufferRange_remap_index },
- { 19199, BindVertexArray_remap_index },
- { 24795, DeleteVertexArrays_remap_index },
- { 24452, GenVertexArrays_remap_index },
- { 21142, IsVertexArray_remap_index },
- { 13901, GetActiveUniformBlockName_remap_index },
- { 6361, GetActiveUniformBlockiv_remap_index },
- { 32109, GetActiveUniformName_remap_index },
- { 12710, GetActiveUniformsiv_remap_index },
- { 32597, GetUniformBlockIndex_remap_index },
- { 40244, GetUniformIndices_remap_index },
- { 5958, UniformBlockBinding_remap_index },
- { 36594, CopyBufferSubData_remap_index },
- { 37744, ClientWaitSync_remap_index },
- { 2755, DeleteSync_remap_index },
- { 9118, FenceSync_remap_index },
- { 17816, GetInteger64v_remap_index },
- { 26942, GetSynciv_remap_index },
- { 35534, IsSync_remap_index },
- { 40419, WaitSync_remap_index },
- { 36478, DrawElementsBaseVertex_remap_index },
- { 22128, DrawElementsInstancedBaseVertex_remap_index },
- { 37016, DrawRangeElementsBaseVertex_remap_index },
- { 31532, MultiDrawElementsBaseVertex_remap_index },
- { 19436, ProvokingVertex_remap_index },
- { 21201, GetMultisamplefv_remap_index },
- { 6116, SampleMaski_remap_index },
- { 7664, TexImage2DMultisample_remap_index },
- { 30316, TexImage3DMultisample_remap_index },
- { 30654, BlendEquationSeparateiARB_remap_index },
- { 21282, BlendEquationiARB_remap_index },
- { 14959, BlendFuncSeparateiARB_remap_index },
- { 11838, BlendFunciARB_remap_index },
- { 6604, BindFragDataLocationIndexed_remap_index },
- { 15120, GetFragDataIndex_remap_index },
- { 10099, BindSampler_remap_index },
- { 4893, DeleteSamplers_remap_index },
- { 9816, GenSamplers_remap_index },
- { 16741, GetSamplerParameterIiv_remap_index },
- { 22861, GetSamplerParameterIuiv_remap_index },
- { 5997, GetSamplerParameterfv_remap_index },
- { 30517, GetSamplerParameteriv_remap_index },
- { 16771, IsSampler_remap_index },
- { 19152, SamplerParameterIiv_remap_index },
- { 6177, SamplerParameterIuiv_remap_index },
- { 26579, SamplerParameterf_remap_index },
- { 19478, SamplerParameterfv_remap_index },
- { 26554, SamplerParameteri_remap_index },
- { 17426, SamplerParameteriv_remap_index },
- { 6311, GetQueryObjecti64v_remap_index },
- { 338, GetQueryObjectui64v_remap_index },
- { 7866, QueryCounter_remap_index },
- { 16836, ColorP3ui_remap_index },
- { 37338, ColorP3uiv_remap_index },
- { 24593, ColorP4ui_remap_index },
- { 15840, ColorP4uiv_remap_index },
- { 11414, MultiTexCoordP1ui_remap_index },
- { 14933, MultiTexCoordP1uiv_remap_index },
- { 20793, MultiTexCoordP2ui_remap_index },
- { 15052, MultiTexCoordP2uiv_remap_index },
- { 16371, MultiTexCoordP3ui_remap_index },
- { 12520, MultiTexCoordP3uiv_remap_index },
- { 26164, MultiTexCoordP4ui_remap_index },
- { 15996, MultiTexCoordP4uiv_remap_index },
- { 12441, NormalP3ui_remap_index },
- { 22644, NormalP3uiv_remap_index },
- { 29539, SecondaryColorP3ui_remap_index },
- { 22662, SecondaryColorP3uiv_remap_index },
- { 819, TexCoordP1ui_remap_index },
- { 2390, TexCoordP1uiv_remap_index },
- { 17254, TexCoordP2ui_remap_index },
- { 13195, TexCoordP2uiv_remap_index },
- { 14892, TexCoordP3ui_remap_index },
- { 24929, TexCoordP3uiv_remap_index },
- { 1684, TexCoordP4ui_remap_index },
- { 6918, TexCoordP4uiv_remap_index },
- { 15264, VertexAttribP1ui_remap_index },
- { 15689, VertexAttribP1uiv_remap_index },
- { 9791, VertexAttribP2ui_remap_index },
- { 34479, VertexAttribP2uiv_remap_index },
- { 5643, VertexAttribP3ui_remap_index },
- { 31420, VertexAttribP3uiv_remap_index },
- { 16682, VertexAttribP4ui_remap_index },
- { 18679, VertexAttribP4uiv_remap_index },
- { 6160, VertexP2ui_remap_index },
- { 37159, VertexP2uiv_remap_index },
- { 3369, VertexP3ui_remap_index },
- { 23749, VertexP3uiv_remap_index },
- { 11397, VertexP4ui_remap_index },
- { 39084, VertexP4uiv_remap_index },
- { 2771, DrawArraysIndirect_remap_index },
- { 7119, DrawElementsIndirect_remap_index },
- { 6705, BindTransformFeedback_remap_index },
- { 12299, DeleteTransformFeedbacks_remap_index },
- { 8237, DrawTransformFeedback_remap_index },
- { 11632, GenTransformFeedbacks_remap_index },
- { 35980, IsTransformFeedback_remap_index },
- { 31116, PauseTransformFeedback_remap_index },
- { 36221, ResumeTransformFeedback_remap_index },
- { 2410, BeginQueryIndexed_remap_index },
- { 27920, DrawTransformFeedbackStream_remap_index },
- { 17943, EndQueryIndexed_remap_index },
- { 274, GetQueryIndexediv_remap_index },
- { 32675, ClearDepthf_remap_index },
- { 8522, DepthRangef_remap_index },
- { 16961, GetShaderPrecisionFormat_remap_index },
- { 12026, ReleaseShaderCompiler_remap_index },
- { 13173, ShaderBinary_remap_index },
- { 19268, GetProgramBinary_remap_index },
- { 4653, ProgramBinary_remap_index },
- { 5256, ProgramParameteri_remap_index },
- { 1148, DebugMessageCallbackARB_remap_index },
- { 11760, DebugMessageControlARB_remap_index },
- { 39506, DebugMessageInsertARB_remap_index },
- { 3031, GetDebugMessageLogARB_remap_index },
- { 34423, GetGraphicsResetStatusARB_remap_index },
- { 29378, GetnColorTableARB_remap_index },
- { 9881, GetnCompressedTexImageARB_remap_index },
- { 4353, GetnConvolutionFilterARB_remap_index },
- { 18371, GetnHistogramARB_remap_index },
- { 28128, GetnMapdvARB_remap_index },
- { 34856, GetnMapfvARB_remap_index },
- { 2011, GetnMapivARB_remap_index },
- { 20467, GetnMinmaxARB_remap_index },
- { 14119, GetnPixelMapfvARB_remap_index },
- { 22791, GetnPixelMapuivARB_remap_index },
- { 35508, GetnPixelMapusvARB_remap_index },
- { 1070, GetnPolygonStippleARB_remap_index },
- { 25248, GetnSeparableFilterARB_remap_index },
- { 39403, GetnTexImageARB_remap_index },
- { 22103, GetnUniformdvARB_remap_index },
- { 9149, GetnUniformfvARB_remap_index },
- { 11916, GetnUniformivARB_remap_index },
- { 8211, GetnUniformuivARB_remap_index },
- { 3216, ReadnPixelsARB_remap_index },
- { 22579, DrawArraysInstancedBaseInstance_remap_index },
- { 35420, DrawElementsInstancedBaseInstance_remap_index },
- { 9614, DrawElementsInstancedBaseVertexBaseInstance_remap_index },
- { 7063, DrawTransformFeedbackInstanced_remap_index },
- { 9915, DrawTransformFeedbackStreamInstanced_remap_index },
- { 35791, GetInternalformativ_remap_index },
- { 31461, GetActiveAtomicCounterBufferiv_remap_index },
- { 1003, TexStorage1D_remap_index },
- { 5196, TexStorage2D_remap_index },
- { 18892, TexStorage3D_remap_index },
- { 5497, TextureStorage1DEXT_remap_index },
- { 6733, TextureStorage2DEXT_remap_index },
- { 1330, TextureStorage3DEXT_remap_index },
- { 21021, ClearBufferData_remap_index },
- { 8181, ClearBufferSubData_remap_index },
- { 5702, TextureView_remap_index },
- { 40463, BindVertexBuffer_remap_index },
- { 8395, VertexAttribBinding_remap_index },
- { 12492, VertexAttribFormat_remap_index },
- { 21933, VertexAttribIFormat_remap_index },
- { 11604, VertexAttribLFormat_remap_index },
- { 33817, VertexBindingDivisor_remap_index },
- { 15314, MultiDrawArraysIndirect_remap_index },
- { 26795, MultiDrawElementsIndirect_remap_index },
- { 26434, TexBufferRange_remap_index },
- { 18645, TexStorage2DMultisample_remap_index },
- { 23490, TexStorage3DMultisample_remap_index },
- { 25283, InvalidateBufferData_remap_index },
- { 18811, InvalidateBufferSubData_remap_index },
- { 38256, InvalidateFramebuffer_remap_index },
- { 24515, InvalidateSubFramebuffer_remap_index },
- { 4694, InvalidateTexImage_remap_index },
- { 13751, InvalidateTexSubImage_remap_index },
- { 7147, PolygonOffsetEXT_remap_index },
- { 14859, DrawTexfOES_remap_index },
- { 11793, DrawTexfvOES_remap_index },
- { 3331, DrawTexiOES_remap_index },
- { 28490, DrawTexivOES_remap_index },
- { 24635, DrawTexsOES_remap_index },
- { 22749, DrawTexsvOES_remap_index },
- { 1459, DrawTexxOES_remap_index },
- { 12871, DrawTexxvOES_remap_index },
- { 2304, PointSizePointerOES_remap_index },
- { 13151, QueryMatrixxOES_remap_index },
- { 30769, SampleMaskSGIS_remap_index },
- { 24551, SamplePatternSGIS_remap_index },
- { 23701, ColorPointerEXT_remap_index },
- { 21116, EdgeFlagPointerEXT_remap_index },
- { 7374, IndexPointerEXT_remap_index },
- { 7968, NormalPointerEXT_remap_index },
- { 18439, TexCoordPointerEXT_remap_index },
- { 8865, VertexPointerEXT_remap_index },
- { 6640, DiscardFramebufferEXT_remap_index },
- { 38779, LockArraysEXT_remap_index },
- { 26414, UnlockArraysEXT_remap_index },
- { 7899, DebugMessageCallback_remap_index },
- { 34548, DebugMessageControl_remap_index },
- { 21641, DebugMessageInsert_remap_index },
- { 27188, GetDebugMessageLog_remap_index },
- { 26189, GetObjectLabel_remap_index },
- { 5170, GetObjectPtrLabel_remap_index },
- { 31096, ObjectLabel_remap_index },
- { 38859, ObjectPtrLabel_remap_index },
- { 25924, PopDebugGroup_remap_index },
- { 36249, PushDebugGroup_remap_index },
- { 33709, SecondaryColor3fEXT_remap_index },
- { 21823, SecondaryColor3fvEXT_remap_index },
- { 25095, MultiDrawElementsEXT_remap_index },
- { 5757, FogCoordfEXT_remap_index },
- { 32624, FogCoordfvEXT_remap_index },
- { 14911, ResizeBuffersMESA_remap_index },
- { 13278, WindowPos4dMESA_remap_index },
- { 7170, WindowPos4dvMESA_remap_index },
- { 16489, WindowPos4fMESA_remap_index },
- { 37245, WindowPos4fvMESA_remap_index },
- { 36748, WindowPos4iMESA_remap_index },
- { 14705, WindowPos4ivMESA_remap_index },
- { 22767, WindowPos4sMESA_remap_index },
- { 3554, WindowPos4svMESA_remap_index },
- { 23060, MultiModeDrawArraysIBM_remap_index },
- { 34945, MultiModeDrawElementsIBM_remap_index },
- { 38469, AreProgramsResidentNV_remap_index },
- { 25390, ExecuteProgramNV_remap_index },
- { 19602, GetProgramParameterdvNV_remap_index },
- { 12678, GetProgramParameterfvNV_remap_index },
- { 31394, GetProgramStringNV_remap_index },
- { 29106, GetProgramivNV_remap_index },
- { 28256, GetTrackMatrixivNV_remap_index },
- { 12272, GetVertexAttribdvNV_remap_index },
- { 22532, GetVertexAttribfvNV_remap_index },
- { 22049, GetVertexAttribivNV_remap_index },
- { 11363, LoadProgramNV_remap_index },
- { 33462, ProgramParameters4dvNV_remap_index },
- { 35072, ProgramParameters4fvNV_remap_index },
- { 24897, RequestResidentProgramsNV_remap_index },
- { 509, TrackMatrixNV_remap_index },
- { 13056, VertexAttrib1dNV_remap_index },
- { 15904, VertexAttrib1dvNV_remap_index },
- { 30832, VertexAttrib1fNV_remap_index },
- { 24690, VertexAttrib1fvNV_remap_index },
- { 37302, VertexAttrib1sNV_remap_index },
- { 26961, VertexAttrib1svNV_remap_index },
- { 37833, VertexAttrib2dNV_remap_index },
- { 22919, VertexAttrib2dvNV_remap_index },
- { 24334, VertexAttrib2fNV_remap_index },
- { 15402, VertexAttrib2fvNV_remap_index },
- { 7712, VertexAttrib2sNV_remap_index },
- { 22620, VertexAttrib2svNV_remap_index },
- { 13489, VertexAttrib3dNV_remap_index },
- { 38651, VertexAttrib3dvNV_remap_index },
- { 19634, VertexAttrib3fNV_remap_index },
- { 29405, VertexAttrib3fvNV_remap_index },
- { 28149, VertexAttrib3sNV_remap_index },
- { 28283, VertexAttrib3svNV_remap_index },
- { 34919, VertexAttrib4dNV_remap_index },
- { 13079, VertexAttrib4dvNV_remap_index },
- { 5426, VertexAttrib4fNV_remap_index },
- { 23644, VertexAttrib4fvNV_remap_index },
- { 32019, VertexAttrib4sNV_remap_index },
- { 1178, VertexAttrib4svNV_remap_index },
- { 6393, VertexAttrib4ubNV_remap_index },
- { 625, VertexAttrib4ubvNV_remap_index },
- { 25644, VertexAttribPointerNV_remap_index },
- { 2177, VertexAttribs1dvNV_remap_index },
- { 22688, VertexAttribs1fvNV_remap_index },
- { 24609, VertexAttribs1svNV_remap_index },
- { 12546, VertexAttribs2dvNV_remap_index },
- { 36149, VertexAttribs2fvNV_remap_index },
- { 4755, VertexAttribs2svNV_remap_index },
- { 6938, VertexAttribs3dvNV_remap_index },
- { 11688, VertexAttribs3fvNV_remap_index },
- { 12466, VertexAttribs3svNV_remap_index },
- { 20952, VertexAttribs4dvNV_remap_index },
- { 6964, VertexAttribs4fvNV_remap_index },
- { 39826, VertexAttribs4svNV_remap_index },
- { 35820, VertexAttribs4ubvNV_remap_index },
- { 28060, GetTexBumpParameterfvATI_remap_index },
- { 40270, GetTexBumpParameterivATI_remap_index },
- { 22204, TexBumpParameterfvATI_remap_index },
- { 24714, TexBumpParameterivATI_remap_index },
- { 18323, AlphaFragmentOp1ATI_remap_index },
- { 30721, AlphaFragmentOp2ATI_remap_index },
- { 29321, AlphaFragmentOp3ATI_remap_index },
- { 16462, BeginFragmentShaderATI_remap_index },
- { 11811, BindFragmentShaderATI_remap_index },
- { 7470, ColorFragmentOp1ATI_remap_index },
- { 7585, ColorFragmentOp2ATI_remap_index },
- { 38356, ColorFragmentOp3ATI_remap_index },
- { 7292, DeleteFragmentShaderATI_remap_index },
- { 40572, EndFragmentShaderATI_remap_index },
- { 27988, GenFragmentShadersATI_remap_index },
- { 30475, PassTexCoordATI_remap_index },
- { 8803, SampleMapATI_remap_index },
- { 32474, SetFragmentShaderConstantATI_remap_index },
- { 34748, ActiveStencilFaceEXT_remap_index },
- { 32987, BindVertexArrayAPPLE_remap_index },
- { 20052, GenVertexArraysAPPLE_remap_index },
- { 666, GetProgramNamedParameterdvNV_remap_index },
- { 4052, GetProgramNamedParameterfvNV_remap_index },
- { 32253, ProgramNamedParameter4dNV_remap_index },
- { 17060, ProgramNamedParameter4dvNV_remap_index },
- { 10867, ProgramNamedParameter4fNV_remap_index },
- { 13977, ProgramNamedParameter4fvNV_remap_index },
- { 21093, PrimitiveRestartNV_remap_index },
- { 18283, GetTexGenxvOES_remap_index },
- { 12345, TexGenxOES_remap_index },
- { 33110, TexGenxvOES_remap_index },
- { 29085, DepthBoundsEXT_remap_index },
- { 17273, BindFramebufferEXT_remap_index },
- { 30806, BindRenderbufferEXT_remap_index },
- { 16852, BufferParameteriAPPLE_remap_index },
- { 23241, FlushMappedBufferRangeAPPLE_remap_index },
- { 21961, VertexAttribI1iEXT_remap_index },
- { 2662, VertexAttribI1uiEXT_remap_index },
- { 34310, VertexAttribI2iEXT_remap_index },
- { 28598, VertexAttribI2ivEXT_remap_index },
- { 14415, VertexAttribI2uiEXT_remap_index },
- { 28174, VertexAttribI2uivEXT_remap_index },
- { 31748, VertexAttribI3iEXT_remap_index },
- { 36971, VertexAttribI3ivEXT_remap_index },
- { 3758, VertexAttribI3uiEXT_remap_index },
- { 36867, VertexAttribI3uivEXT_remap_index },
- { 173, VertexAttribI4iEXT_remap_index },
- { 12572, VertexAttribI4ivEXT_remap_index },
- { 54, VertexAttribI4uiEXT_remap_index },
- { 39779, VertexAttribI4uivEXT_remap_index },
- { 11941, ClearColorIiEXT_remap_index },
- { 3911, ClearColorIuiEXT_remap_index },
- { 10157, BindBufferOffsetEXT_remap_index },
- { 27361, BeginPerfMonitorAMD_remap_index },
- { 38404, DeletePerfMonitorsAMD_remap_index },
- { 20444, EndPerfMonitorAMD_remap_index },
- { 31588, GenPerfMonitorsAMD_remap_index },
- { 6818, GetPerfMonitorCounterDataAMD_remap_index },
- { 5877, GetPerfMonitorCounterInfoAMD_remap_index },
- { 39232, GetPerfMonitorCounterStringAMD_remap_index },
- { 22714, GetPerfMonitorCountersAMD_remap_index },
- { 13652, GetPerfMonitorGroupStringAMD_remap_index },
- { 37785, GetPerfMonitorGroupsAMD_remap_index },
- { 19956, SelectPerfMonitorCountersAMD_remap_index },
- { 13801, GetObjectParameterivAPPLE_remap_index },
- { 37915, ObjectPurgeableAPPLE_remap_index },
- { 7539, ObjectUnpurgeableAPPLE_remap_index },
- { 20818, ActiveProgramEXT_remap_index },
- { 1982, CreateShaderProgramEXT_remap_index },
- { 34453, UseShaderProgramEXT_remap_index },
- { 16994, TextureBarrierNV_remap_index },
- { 9851, VDPAUFiniNV_remap_index },
- { 3065, VDPAUGetSurfaceivNV_remap_index },
- { 7101, VDPAUInitNV_remap_index },
- { 17184, VDPAUIsSurfaceNV_remap_index },
- { 25772, VDPAUMapSurfacesNV_remap_index },
- { 11277, VDPAURegisterOutputSurfaceNV_remap_index },
- { 6669, VDPAURegisterVideoSurfaceNV_remap_index },
- { 32447, VDPAUSurfaceAccessNV_remap_index },
- { 29859, VDPAUUnmapSurfacesNV_remap_index },
- { 25512, VDPAUUnregisterSurfaceNV_remap_index },
- { 34808, StencilFuncSeparateATI_remap_index },
- { 21710, ProgramEnvParameters4fvEXT_remap_index },
- { 20491, ProgramLocalParameters4fvEXT_remap_index },
- { 28555, EGLImageTargetRenderbufferStorageOES_remap_index },
- { 14382, EGLImageTargetTexture2DOES_remap_index },
- { 28396, AlphaFuncx_remap_index },
- { 20756, ClearColorx_remap_index },
- { 25797, ClearDepthx_remap_index },
- { 10650, Color4x_remap_index },
- { 8111, DepthRangex_remap_index },
- { 40347, Fogx_remap_index },
- { 37177, Fogxv_remap_index },
- { 35847, Frustumf_remap_index },
- { 3979, Frustumx_remap_index },
- { 31713, LightModelx_remap_index },
- { 35943, LightModelxv_remap_index },
- { 26086, Lightx_remap_index },
- { 13370, Lightxv_remap_index },
- { 21791, LineWidthx_remap_index },
- { 4795, LoadMatrixx_remap_index },
- { 26910, Materialx_remap_index },
- { 39472, Materialxv_remap_index },
- { 10519, MultMatrixx_remap_index },
- { 34121, MultiTexCoord4x_remap_index },
- { 13514, Normal3x_remap_index },
- { 10904, Orthof_remap_index },
- { 22459, Orthox_remap_index },
- { 35476, PointSizex_remap_index },
- { 4530, PolygonOffsetx_remap_index },
- { 30855, Rotatex_remap_index },
- { 8583, SampleCoveragex_remap_index },
- { 7192, Scalex_remap_index },
- { 22362, TexEnvx_remap_index },
- { 25038, TexEnvxv_remap_index },
- { 6205, TexParameterx_remap_index },
- { 34774, Translatex_remap_index },
- { 39154, ClipPlanef_remap_index },
- { 38894, ClipPlanex_remap_index },
- { 18551, GetClipPlanef_remap_index },
- { 4404, GetClipPlanex_remap_index },
- { 33386, GetFixedv_remap_index },
- { 4089, GetLightxv_remap_index },
- { 4207, GetMaterialxv_remap_index },
- { 29503, GetTexEnvxv_remap_index },
- { 21566, GetTexParameterxv_remap_index },
- { 5600, PointParameterx_remap_index },
- { 14265, PointParameterxv_remap_index },
- { 30612, TexParameterxv_remap_index },
+ { 26563, CompressedTexImage1D_remap_index },
+ { 17047, CompressedTexImage2D_remap_index },
+ { 3014, CompressedTexImage3D_remap_index },
+ { 7897, CompressedTexSubImage1D_remap_index },
+ { 4192, CompressedTexSubImage2D_remap_index },
+ { 31470, 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 },
+ { 12181, BlendFuncSeparate_remap_index },
+ { 14445, FogCoordPointer_remap_index },
+ { 17372, FogCoordd_remap_index },
+ { 38115, FogCoorddv_remap_index },
+ { 33158, MultiDrawArrays_remap_index },
+ { 27282, PointParameterf_remap_index },
+ { 18225, PointParameterfv_remap_index },
+ { 27240, PointParameteri_remap_index },
+ { 33366, PointParameteriv_remap_index },
+ { 19189, SecondaryColor3b_remap_index },
+ { 15896, SecondaryColor3bv_remap_index },
+ { 33437, SecondaryColor3d_remap_index },
+ { 3354, SecondaryColor3dv_remap_index },
+ { 36556, SecondaryColor3i_remap_index },
+ { 22053, SecondaryColor3iv_remap_index },
+ { 18896, SecondaryColor3s_remap_index },
+ { 40575, SecondaryColor3sv_remap_index },
+ { 16423, SecondaryColor3ub_remap_index },
+ { 27192, SecondaryColor3ubv_remap_index },
+ { 37077, SecondaryColor3ui_remap_index },
+ { 4374, SecondaryColor3uiv_remap_index },
+ { 14676, SecondaryColor3us_remap_index },
+ { 37369, SecondaryColor3usv_remap_index },
+ { 39569, SecondaryColorPointer_remap_index },
+ { 2193, WindowPos2d_remap_index },
+ { 19713, WindowPos2dv_remap_index },
+ { 2121, WindowPos2f_remap_index },
+ { 1608, WindowPos2fv_remap_index },
+ { 16741, WindowPos2i_remap_index },
+ { 24370, WindowPos2iv_remap_index },
+ { 2523, WindowPos2s_remap_index },
+ { 40448, WindowPos2sv_remap_index },
+ { 16282, WindowPos3d_remap_index },
+ { 14313, WindowPos3dv_remap_index },
+ { 16369, WindowPos3f_remap_index },
+ { 32548, WindowPos3fv_remap_index },
+ { 19135, WindowPos3i_remap_index },
+ { 36654, 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 },
+ { 28564, DeleteBuffers_remap_index },
+ { 38363, DeleteQueries_remap_index },
+ { 29483, EndQuery_remap_index },
+ { 25946, GenBuffers_remap_index },
+ { 2865, GenQueries_remap_index },
+ { 19482, GetBufferParameteriv_remap_index },
+ { 32056, GetBufferPointerv_remap_index },
+ { 28715, GetBufferSubData_remap_index },
+ { 31141, GetQueryObjectiv_remap_index },
+ { 29087, GetQueryObjectuiv_remap_index },
+ { 3946, GetQueryiv_remap_index },
+ { 24513, IsBuffer_remap_index },
+ { 21212, IsQuery_remap_index },
+ { 4553, MapBuffer_remap_index },
+ { 34471, 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 },
+ { 13421, DrawBuffers_remap_index },
+ { 26879, EnableVertexAttribArray_remap_index },
+ { 9357, GetActiveAttrib_remap_index },
+ { 28514, GetActiveUniform_remap_index },
+ { 21780, GetAttachedShaders_remap_index },
+ { 17640, GetAttribLocation_remap_index },
+ { 6203, GetProgramInfoLog_remap_index },
+ { 365, GetProgramiv_remap_index },
+ { 14937, GetShaderInfoLog_remap_index },
+ { 28222, GetShaderSource_remap_index },
+ { 1677, GetShaderiv_remap_index },
+ { 24303, GetUniformLocation_remap_index },
+ { 7565, GetUniformfv_remap_index },
+ { 8088, GetUniformiv_remap_index },
+ { 20465, GetVertexAttribPointerv_remap_index },
+ { 25671, GetVertexAttribdv_remap_index },
+ { 2272, GetVertexAttribfv_remap_index },
+ { 13222, GetVertexAttribiv_remap_index },
+ { 15881, IsProgram_remap_index },
+ { 7683, IsShader_remap_index },
+ { 22355, LinkProgram_remap_index },
+ { 12305, ShaderSource_remap_index },
+ { 12277, StencilFuncSeparate_remap_index },
+ { 4527, StencilMaskSeparate_remap_index },
+ { 9781, StencilOpSeparate_remap_index },
+ { 22436, Uniform1f_remap_index },
+ { 31867, Uniform1fv_remap_index },
+ { 22590, Uniform1i_remap_index },
+ { 32352, Uniform1iv_remap_index },
+ { 31396, Uniform2f_remap_index },
+ { 854, Uniform2fv_remap_index },
+ { 31688, Uniform2i_remap_index },
+ { 33610, Uniform2iv_remap_index },
+ { 3205, Uniform3f_remap_index },
+ { 13517, Uniform3fv_remap_index },
+ { 19008, Uniform3i_remap_index },
+ { 17558, Uniform3iv_remap_index },
+ { 39224, Uniform4f_remap_index },
+ { 5737, Uniform4fv_remap_index },
+ { 16968, Uniform4i_remap_index },
+ { 40892, Uniform4iv_remap_index },
+ { 3238, UniformMatrix2fv_remap_index },
+ { 3672, UniformMatrix3fv_remap_index },
+ { 40223, 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 },
+ { 6095, VertexAttrib2dv_remap_index },
+ { 31187, VertexAttrib2s_remap_index },
+ { 12914, VertexAttrib2sv_remap_index },
+ { 4005, VertexAttrib3d_remap_index },
+ { 578, VertexAttrib3dv_remap_index },
+ { 23974, VertexAttrib3s_remap_index },
+ { 21144, VertexAttrib3sv_remap_index },
+ { 4640, VertexAttrib4Nbv_remap_index },
+ { 22170, VertexAttrib4Niv_remap_index },
+ { 34269, VertexAttrib4Nsv_remap_index },
+ { 5621, VertexAttrib4Nub_remap_index },
+ { 37030, VertexAttrib4Nubv_remap_index },
+ { 40351, VertexAttrib4Nuiv_remap_index },
+ { 6138, VertexAttrib4Nusv_remap_index },
+ { 34763, 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 },
+ { 5373, VertexAttrib4usv_remap_index },
+ { 18756, VertexAttribPointer_remap_index },
+ { 26734, UniformMatrix2x3fv_remap_index },
+ { 33410, UniformMatrix2x4fv_remap_index },
+ { 40270, UniformMatrix3x2fv_remap_index },
+ { 37172, 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 },
+ { 1851, BindFragDataLocation_remap_index },
+ { 6533, ClampColor_remap_index },
+ { 7110, ClearBufferfi_remap_index },
+ { 21238, ClearBufferfv_remap_index },
+ { 35906, ClearBufferiv_remap_index },
+ { 16048, ClearBufferuiv_remap_index },
+ { 9315, ColorMaski_remap_index },
+ { 29864, Disablei_remap_index },
+ { 16336, Enablei_remap_index },
+ { 32006, EndConditionalRender_remap_index },
+ { 28983, EndTransformFeedback_remap_index },
+ { 17181, GetBooleani_v_remap_index },
+ { 23624, GetFragDataLocation_remap_index },
+ { 36156, GetIntegeri_v_remap_index },
+ { 24241, GetStringi_remap_index },
+ { 30107, GetTexParameterIiv_remap_index },
+ { 13968, GetTexParameterIuiv_remap_index },
+ { 38230, GetTransformFeedbackVarying_remap_index },
+ { 10212, GetUniformuiv_remap_index },
+ { 37952, GetVertexAttribIiv_remap_index },
+ { 2933, GetVertexAttribIuiv_remap_index },
+ { 38421, IsEnabledi_remap_index },
+ { 10648, TexParameterIiv_remap_index },
+ { 37613, 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 },
+ { 4788, Uniform4ui_remap_index },
+ { 26038, Uniform4uiv_remap_index },
+ { 7467, VertexAttribI1iv_remap_index },
+ { 20806, VertexAttribI1uiv_remap_index },
+ { 5177, VertexAttribI4bv_remap_index },
+ { 9014, VertexAttribI4sv_remap_index },
+ { 24594, VertexAttribI4ubv_remap_index },
+ { 1905, VertexAttribI4usv_remap_index },
+ { 37313, VertexAttribIPointer_remap_index },
+ { 35820, PrimitiveRestartIndex_remap_index },
+ { 437, TexBuffer_remap_index },
+ { 6329, FramebufferTexture_remap_index },
+ { 31821, GetBufferParameteri64v_remap_index },
+ { 12344, GetInteger64i_v_remap_index },
+ { 3874, VertexAttribDivisor_remap_index },
+ { 35512, MinSampleShading_remap_index },
+ { 28298, BindProgramARB_remap_index },
+ { 32641, DeleteProgramsARB_remap_index },
+ { 16500, GenProgramsARB_remap_index },
+ { 11976, GetProgramEnvParameterdvARB_remap_index },
+ { 28428, GetProgramEnvParameterfvARB_remap_index },
+ { 33250, GetProgramLocalParameterdvARB_remap_index },
+ { 10128, GetProgramLocalParameterfvARB_remap_index },
+ { 22242, GetProgramStringARB_remap_index },
+ { 33538, GetProgramivARB_remap_index },
+ { 34192, IsProgramARB_remap_index },
+ { 23510, ProgramEnvParameter4dARB_remap_index },
+ { 30341, 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 },
+ { 4983, VertexAttrib1fARB_remap_index },
+ { 35251, VertexAttrib1fvARB_remap_index },
+ { 1486, VertexAttrib2fARB_remap_index },
+ { 10055, VertexAttrib2fvARB_remap_index },
+ { 1565, VertexAttrib3fARB_remap_index },
+ { 27055, VertexAttrib3fvARB_remap_index },
+ { 13727, VertexAttrib4fARB_remap_index },
+ { 14131, VertexAttrib4fvARB_remap_index },
+ { 10324, AttachObjectARB_remap_index },
+ { 3645, CreateProgramObjectARB_remap_index },
+ { 37807, 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 },
+ { 21654, DrawArraysInstancedARB_remap_index },
+ { 8360, DrawElementsInstancedARB_remap_index },
+ { 12060, BindFramebuffer_remap_index },
+ { 33675, BindRenderbuffer_remap_index },
+ { 37659, BlitFramebuffer_remap_index },
+ { 28043, CheckFramebufferStatus_remap_index },
+ { 33894, DeleteFramebuffers_remap_index },
+ { 5056, DeleteRenderbuffers_remap_index },
+ { 34102, 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 },
+ { 20260, GetFramebufferAttachmentParameteriv_remap_index },
+ { 39917, GetRenderbufferParameteriv_remap_index },
+ { 26074, IsFramebuffer_remap_index },
+ { 14601, IsRenderbuffer_remap_index },
+ { 2591, RenderbufferStorage_remap_index },
+ { 15697, RenderbufferStorageMultisample_remap_index },
+ { 31091, FramebufferTextureFaceARB_remap_index },
+ { 20019, FlushMappedBufferRange_remap_index },
+ { 35416, 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 },
+ { 12829, GetActiveUniformsiv_remap_index },
+ { 32834, GetUniformBlockIndex_remap_index },
+ { 40518, GetUniformIndices_remap_index },
+ { 6027, UniformBlockBinding_remap_index },
+ { 36852, CopyBufferSubData_remap_index },
+ { 38002, 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 },
+ { 22313, DrawElementsInstancedBaseVertex_remap_index },
+ { 37274, DrawRangeElementsBaseVertex_remap_index },
+ { 31720, 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 },
+ { 21448, BlendEquationiARB_remap_index },
+ { 15078, BlendFuncSeparateiARB_remap_index },
+ { 11933, BlendFunciARB_remap_index },
+ { 6673, BindFragDataLocationIndexed_remap_index },
+ { 15239, GetFragDataIndex_remap_index },
+ { 10194, BindSampler_remap_index },
+ { 4962, DeleteSamplers_remap_index },
+ { 9911, GenSamplers_remap_index },
+ { 16907, GetSamplerParameterIiv_remap_index },
+ { 23046, GetSamplerParameterIuiv_remap_index },
+ { 6066, GetSamplerParameterfv_remap_index },
+ { 30724, GetSamplerParameteriv_remap_index },
+ { 16937, IsSampler_remap_index },
+ { 19318, SamplerParameterIiv_remap_index },
+ { 6246, SamplerParameterIuiv_remap_index },
+ { 26786, SamplerParameterf_remap_index },
+ { 19644, SamplerParameterfv_remap_index },
+ { 26761, SamplerParameteri_remap_index },
+ { 17592, SamplerParameteriv_remap_index },
+ { 6380, GetQueryObjecti64v_remap_index },
+ { 385, GetQueryObjectui64v_remap_index },
+ { 7961, QueryCounter_remap_index },
+ { 17002, ColorP3ui_remap_index },
+ { 37596, ColorP3uiv_remap_index },
+ { 24800, ColorP4ui_remap_index },
+ { 16006, ColorP4uiv_remap_index },
+ { 11509, MultiTexCoordP1ui_remap_index },
+ { 15052, MultiTexCoordP1uiv_remap_index },
+ { 20959, MultiTexCoordP2ui_remap_index },
+ { 15171, MultiTexCoordP2uiv_remap_index },
+ { 16537, MultiTexCoordP3ui_remap_index },
+ { 12639, MultiTexCoordP3uiv_remap_index },
+ { 26371, MultiTexCoordP4ui_remap_index },
+ { 16162, MultiTexCoordP4uiv_remap_index },
+ { 12536, NormalP3ui_remap_index },
+ { 22829, NormalP3uiv_remap_index },
+ { 29746, SecondaryColorP3ui_remap_index },
+ { 22847, SecondaryColorP3uiv_remap_index },
+ { 888, TexCoordP1ui_remap_index },
+ { 2459, TexCoordP1uiv_remap_index },
+ { 17420, TexCoordP2ui_remap_index },
+ { 13314, TexCoordP2uiv_remap_index },
+ { 15011, TexCoordP3ui_remap_index },
+ { 25136, TexCoordP3uiv_remap_index },
+ { 1753, TexCoordP4ui_remap_index },
+ { 6987, TexCoordP4uiv_remap_index },
+ { 15430, VertexAttribP1ui_remap_index },
+ { 15855, VertexAttribP1uiv_remap_index },
+ { 9886, VertexAttribP2ui_remap_index },
+ { 34737, VertexAttribP2uiv_remap_index },
+ { 5712, VertexAttribP3ui_remap_index },
+ { 31608, VertexAttribP3uiv_remap_index },
+ { 16848, VertexAttribP4ui_remap_index },
+ { 18845, VertexAttribP4uiv_remap_index },
+ { 6229, VertexP2ui_remap_index },
+ { 37417, VertexP2uiv_remap_index },
+ { 3438, VertexP3ui_remap_index },
+ { 23956, VertexP3uiv_remap_index },
+ { 11492, VertexP4ui_remap_index },
+ { 39381, 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 },
+ { 2479, BeginQueryIndexed_remap_index },
+ { 28127, DrawTransformFeedbackStream_remap_index },
+ { 18109, EndQueryIndexed_remap_index },
+ { 321, GetQueryIndexediv_remap_index },
+ { 32912, ClearDepthf_remap_index },
+ { 8617, DepthRangef_remap_index },
+ { 17127, GetShaderPrecisionFormat_remap_index },
+ { 12121, ReleaseShaderCompiler_remap_index },
+ { 13292, ShaderBinary_remap_index },
+ { 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 },
+ { 22269, GetFloati_v_remap_index },
+ { 33589, ScissorArrayv_remap_index },
+ { 12553, ScissorIndexed_remap_index },
+ { 23911, ScissorIndexedv_remap_index },
+ { 672, ViewportArrayv_remap_index },
+ { 7539, ViewportIndexedf_remap_index },
+ { 32524, ViewportIndexedfv_remap_index },
+ { 1217, DebugMessageCallbackARB_remap_index },
+ { 11855, DebugMessageControlARB_remap_index },
+ { 39803, DebugMessageInsertARB_remap_index },
+ { 3100, GetDebugMessageLogARB_remap_index },
+ { 34681, GetGraphicsResetStatusARB_remap_index },
+ { 29585, GetnColorTableARB_remap_index },
+ { 9976, GetnCompressedTexImageARB_remap_index },
+ { 4422, GetnConvolutionFilterARB_remap_index },
+ { 18537, GetnHistogramARB_remap_index },
+ { 28335, GetnMapdvARB_remap_index },
+ { 35114, GetnMapfvARB_remap_index },
+ { 2080, GetnMapivARB_remap_index },
+ { 20633, GetnMinmaxARB_remap_index },
+ { 14238, GetnPixelMapfvARB_remap_index },
+ { 22976, GetnPixelMapuivARB_remap_index },
+ { 35766, GetnPixelMapusvARB_remap_index },
+ { 1139, GetnPolygonStippleARB_remap_index },
+ { 25455, GetnSeparableFilterARB_remap_index },
+ { 39700, 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 },
+ { 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 },
+ { 1072, TexStorage1D_remap_index },
+ { 5265, TexStorage2D_remap_index },
+ { 19058, TexStorage3D_remap_index },
+ { 5566, TextureStorage1DEXT_remap_index },
+ { 6802, TextureStorage2DEXT_remap_index },
+ { 1399, TextureStorage3DEXT_remap_index },
+ { 21187, ClearBufferData_remap_index },
+ { 8276, ClearBufferSubData_remap_index },
+ { 5771, TextureView_remap_index },
+ { 40737, BindVertexBuffer_remap_index },
+ { 8490, VertexAttribBinding_remap_index },
+ { 12611, VertexAttribFormat_remap_index },
+ { 22099, VertexAttribIFormat_remap_index },
+ { 11699, VertexAttribLFormat_remap_index },
+ { 34075, VertexBindingDivisor_remap_index },
+ { 15480, MultiDrawArraysIndirect_remap_index },
+ { 27002, MultiDrawElementsIndirect_remap_index },
+ { 26641, TexBufferRange_remap_index },
+ { 18811, TexStorage2DMultisample_remap_index },
+ { 23675, TexStorage3DMultisample_remap_index },
+ { 25490, InvalidateBufferData_remap_index },
+ { 18977, InvalidateBufferSubData_remap_index },
+ { 38514, InvalidateFramebuffer_remap_index },
+ { 24722, InvalidateSubFramebuffer_remap_index },
+ { 4763, InvalidateTexImage_remap_index },
+ { 13870, InvalidateTexSubImage_remap_index },
+ { 7216, PolygonOffsetEXT_remap_index },
+ { 14978, DrawTexfOES_remap_index },
+ { 11888, DrawTexfvOES_remap_index },
+ { 3400, DrawTexiOES_remap_index },
+ { 28697, DrawTexivOES_remap_index },
+ { 24842, DrawTexsOES_remap_index },
+ { 22934, DrawTexsvOES_remap_index },
+ { 1528, DrawTexxOES_remap_index },
+ { 12990, DrawTexxvOES_remap_index },
+ { 2373, PointSizePointerOES_remap_index },
+ { 13270, QueryMatrixxOES_remap_index },
+ { 30976, SampleMaskSGIS_remap_index },
+ { 24758, SamplePatternSGIS_remap_index },
+ { 23886, ColorPointerEXT_remap_index },
+ { 21282, EdgeFlagPointerEXT_remap_index },
+ { 7443, IndexPointerEXT_remap_index },
+ { 8063, NormalPointerEXT_remap_index },
+ { 18605, TexCoordPointerEXT_remap_index },
+ { 8960, VertexPointerEXT_remap_index },
+ { 6709, DiscardFramebufferEXT_remap_index },
+ { 39076, LockArraysEXT_remap_index },
+ { 26621, UnlockArraysEXT_remap_index },
+ { 7994, DebugMessageCallback_remap_index },
+ { 34806, 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 },
+ { 26131, PopDebugGroup_remap_index },
+ { 36507, PushDebugGroup_remap_index },
+ { 33967, SecondaryColor3fEXT_remap_index },
+ { 21989, SecondaryColor3fvEXT_remap_index },
+ { 25302, MultiDrawElementsEXT_remap_index },
+ { 5826, FogCoordfEXT_remap_index },
+ { 32861, 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 },
+ { 14824, WindowPos4ivMESA_remap_index },
+ { 22952, WindowPos4sMESA_remap_index },
+ { 3623, WindowPos4svMESA_remap_index },
+ { 23245, MultiModeDrawArraysIBM_remap_index },
+ { 35203, MultiModeDrawElementsIBM_remap_index },
+ { 38746, AreProgramsResidentNV_remap_index },
+ { 25597, ExecuteProgramNV_remap_index },
+ { 19768, GetProgramParameterdvNV_remap_index },
+ { 12797, GetProgramParameterfvNV_remap_index },
+ { 31582, GetProgramStringNV_remap_index },
+ { 29313, 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 },
+ { 25104, RequestResidentProgramsNV_remap_index },
+ { 556, TrackMatrixNV_remap_index },
+ { 13175, VertexAttrib1dNV_remap_index },
+ { 16070, VertexAttrib1dvNV_remap_index },
+ { 31039, VertexAttrib1fNV_remap_index },
+ { 24897, VertexAttrib1fvNV_remap_index },
+ { 37560, VertexAttrib1sNV_remap_index },
+ { 27168, VertexAttrib1svNV_remap_index },
+ { 38091, 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 },
+ { 19800, VertexAttrib3fNV_remap_index },
+ { 29612, VertexAttrib3fvNV_remap_index },
+ { 28356, VertexAttrib3sNV_remap_index },
+ { 28490, VertexAttrib3svNV_remap_index },
+ { 35177, VertexAttrib4dNV_remap_index },
+ { 13198, VertexAttrib4dvNV_remap_index },
+ { 5495, VertexAttrib4fNV_remap_index },
+ { 23829, VertexAttrib4fvNV_remap_index },
+ { 32232, VertexAttrib4sNV_remap_index },
+ { 1247, VertexAttrib4svNV_remap_index },
+ { 6462, VertexAttrib4ubNV_remap_index },
+ { 694, VertexAttrib4ubvNV_remap_index },
+ { 25851, VertexAttribPointerNV_remap_index },
+ { 2246, VertexAttribs1dvNV_remap_index },
+ { 22873, VertexAttribs1fvNV_remap_index },
+ { 24816, VertexAttribs1svNV_remap_index },
+ { 12665, VertexAttribs2dvNV_remap_index },
+ { 36407, 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 },
+ { 28267, GetTexBumpParameterfvATI_remap_index },
+ { 40544, GetTexBumpParameterivATI_remap_index },
+ { 22389, TexBumpParameterfvATI_remap_index },
+ { 24921, TexBumpParameterivATI_remap_index },
+ { 18489, AlphaFragmentOp1ATI_remap_index },
+ { 30928, AlphaFragmentOp2ATI_remap_index },
+ { 29528, AlphaFragmentOp3ATI_remap_index },
+ { 16628, BeginFragmentShaderATI_remap_index },
+ { 11906, BindFragmentShaderATI_remap_index },
+ { 7776, ColorFragmentOp1ATI_remap_index },
+ { 7649, ColorFragmentOp2ATI_remap_index },
+ { 38614, ColorFragmentOp3ATI_remap_index },
+ { 7361, DeleteFragmentShaderATI_remap_index },
+ { 40846, EndFragmentShaderATI_remap_index },
+ { 28195, GenFragmentShadersATI_remap_index },
+ { 30682, PassTexCoordATI_remap_index },
+ { 8898, SampleMapATI_remap_index },
+ { 32711, SetFragmentShaderConstantATI_remap_index },
+ { 35006, ActiveStencilFaceEXT_remap_index },
+ { 33224, BindVertexArrayAPPLE_remap_index },
+ { 20218, GenVertexArraysAPPLE_remap_index },
+ { 735, GetProgramNamedParameterdvNV_remap_index },
+ { 4121, GetProgramNamedParameterfvNV_remap_index },
+ { 32466, 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 },
+ { 17439, BindFramebufferEXT_remap_index },
+ { 31013, BindRenderbufferEXT_remap_index },
+ { 17018, BufferParameteriAPPLE_remap_index },
+ { 23426, FlushMappedBufferRangeAPPLE_remap_index },
+ { 22127, VertexAttribI1iEXT_remap_index },
+ { 2731, VertexAttribI1uiEXT_remap_index },
+ { 34568, VertexAttribI2iEXT_remap_index },
+ { 28805, VertexAttribI2ivEXT_remap_index },
+ { 14534, VertexAttribI2uiEXT_remap_index },
+ { 28381, VertexAttribI2uivEXT_remap_index },
+ { 31961, VertexAttribI3iEXT_remap_index },
+ { 37229, VertexAttribI3ivEXT_remap_index },
+ { 3827, VertexAttribI3uiEXT_remap_index },
+ { 37125, VertexAttribI3uivEXT_remap_index },
+ { 220, VertexAttribI4iEXT_remap_index },
+ { 12691, VertexAttribI4ivEXT_remap_index },
+ { 101, VertexAttribI4uiEXT_remap_index },
+ { 34, VertexAttribI4uivEXT_remap_index },
+ { 12036, ClearColorIiEXT_remap_index },
+ { 3980, ClearColorIuiEXT_remap_index },
+ { 10252, BindBufferOffsetEXT_remap_index },
+ { 27568, BeginPerfMonitorAMD_remap_index },
+ { 38662, DeletePerfMonitorsAMD_remap_index },
+ { 20610, EndPerfMonitorAMD_remap_index },
+ { 31776, GenPerfMonitorsAMD_remap_index },
+ { 6887, GetPerfMonitorCounterDataAMD_remap_index },
+ { 5946, GetPerfMonitorCounterInfoAMD_remap_index },
+ { 39529, GetPerfMonitorCounterStringAMD_remap_index },
+ { 22899, GetPerfMonitorCountersAMD_remap_index },
+ { 13771, GetPerfMonitorGroupStringAMD_remap_index },
+ { 38043, GetPerfMonitorGroupsAMD_remap_index },
+ { 20122, SelectPerfMonitorCountersAMD_remap_index },
+ { 13920, GetObjectParameterivAPPLE_remap_index },
+ { 38173, ObjectPurgeableAPPLE_remap_index },
+ { 7603, ObjectUnpurgeableAPPLE_remap_index },
+ { 20984, ActiveProgramEXT_remap_index },
+ { 2051, CreateShaderProgramEXT_remap_index },
+ { 34711, UseShaderProgramEXT_remap_index },
+ { 17160, TextureBarrierNV_remap_index },
+ { 9946, VDPAUFiniNV_remap_index },
+ { 3134, VDPAUGetSurfaceivNV_remap_index },
+ { 7170, VDPAUInitNV_remap_index },
+ { 17350, VDPAUIsSurfaceNV_remap_index },
+ { 25979, VDPAUMapSurfacesNV_remap_index },
+ { 11372, VDPAURegisterOutputSurfaceNV_remap_index },
+ { 6738, VDPAURegisterVideoSurfaceNV_remap_index },
+ { 32684, VDPAUSurfaceAccessNV_remap_index },
+ { 30066, VDPAUUnmapSurfacesNV_remap_index },
+ { 25719, VDPAUUnregisterSurfaceNV_remap_index },
+ { 35066, StencilFuncSeparateATI_remap_index },
+ { 21876, ProgramEnvParameters4fvEXT_remap_index },
+ { 20657, ProgramLocalParameters4fvEXT_remap_index },
+ { 28762, EGLImageTargetRenderbufferStorageOES_remap_index },
+ { 14501, EGLImageTargetTexture2DOES_remap_index },
+ { 28603, AlphaFuncx_remap_index },
+ { 20922, ClearColorx_remap_index },
+ { 26004, ClearDepthx_remap_index },
+ { 10745, Color4x_remap_index },
+ { 8206, DepthRangex_remap_index },
+ { 40621, Fogx_remap_index },
+ { 37435, Fogxv_remap_index },
+ { 36105, Frustumf_remap_index },
+ { 4048, Frustumx_remap_index },
+ { 31926, LightModelx_remap_index },
+ { 36201, 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 },
+ { 10614, MultMatrixx_remap_index },
+ { 34379, MultiTexCoord4x_remap_index },
+ { 13633, Normal3x_remap_index },
+ { 10999, Orthof_remap_index },
+ { 22644, Orthox_remap_index },
+ { 35734, PointSizex_remap_index },
+ { 4599, PolygonOffsetx_remap_index },
+ { 31062, 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 },
+ { 18717, GetClipPlanef_remap_index },
+ { 4473, GetClipPlanex_remap_index },
+ { 33644, GetFixedv_remap_index },
+ { 4158, GetLightxv_remap_index },
+ { 4276, GetMaterialxv_remap_index },
+ { 29710, GetTexEnvxv_remap_index },
+ { 21732, GetTexParameterxv_remap_index },
+ { 5669, PointParameterx_remap_index },
+ { 14384, PointParameterxv_remap_index },
+ { 30819, TexParameterxv_remap_index },
{ -1, -1 }
};
/* these functions are in the ABI, but have alternative names */
static const struct gl_function_remap MESA_alt_functions[] = {
/* from GL_EXT_blend_color */
- { 2829, _gloffset_BlendColor },
+ { 2898, _gloffset_BlendColor },
/* from GL_EXT_blend_minmax */
- { 13432, _gloffset_BlendEquation },
+ { 13551, _gloffset_BlendEquation },
/* from GL_EXT_color_subtable */
- { 20387, _gloffset_ColorSubTable },
- { 38558, _gloffset_CopyColorSubTable },
+ { 20553, _gloffset_ColorSubTable },
+ { 38835, _gloffset_CopyColorSubTable },
/* from GL_EXT_convolution */
- { 219, _gloffset_ConvolutionFilter1D },
- { 2600, _gloffset_CopyConvolutionFilter1D },
- { 4829, _gloffset_GetConvolutionParameteriv },
- { 10463, _gloffset_ConvolutionFilter2D },
- { 10693, _gloffset_ConvolutionParameteriv },
- { 11198, _gloffset_ConvolutionParameterfv },
- { 24742, _gloffset_GetSeparableFilter },
- { 28827, _gloffset_SeparableFilter2D },
- { 29723, _gloffset_ConvolutionParameteri },
- { 29986, _gloffset_ConvolutionParameterf },
- { 32045, _gloffset_GetConvolutionParameterfv },
- { 33246, _gloffset_GetConvolutionFilter },
- { 36510, _gloffset_CopyConvolutionFilter2D },
+ { 266, _gloffset_ConvolutionFilter1D },
+ { 2669, _gloffset_CopyConvolutionFilter1D },
+ { 4898, _gloffset_GetConvolutionParameteriv },
+ { 10558, _gloffset_ConvolutionFilter2D },
+ { 10788, _gloffset_ConvolutionParameteriv },
+ { 11293, _gloffset_ConvolutionParameterfv },
+ { 24949, _gloffset_GetSeparableFilter },
+ { 29034, _gloffset_SeparableFilter2D },
+ { 29930, _gloffset_ConvolutionParameteri },
+ { 30193, _gloffset_ConvolutionParameterf },
+ { 32258, _gloffset_GetConvolutionParameterfv },
+ { 33483, _gloffset_GetConvolutionFilter },
+ { 36768, _gloffset_CopyConvolutionFilter2D },
/* from GL_EXT_copy_texture */
- { 17722, _gloffset_CopyTexSubImage3D },
- { 19806, _gloffset_CopyTexImage2D },
- { 29203, _gloffset_CopyTexImage1D },
- { 32709, _gloffset_CopyTexSubImage2D },
- { 36005, _gloffset_CopyTexSubImage1D },
+ { 17888, _gloffset_CopyTexSubImage3D },
+ { 19972, _gloffset_CopyTexImage2D },
+ { 29410, _gloffset_CopyTexImage1D },
+ { 32946, _gloffset_CopyTexSubImage2D },
+ { 36263, _gloffset_CopyTexSubImage1D },
/* from GL_EXT_draw_range_elements */
- { 11487, _gloffset_DrawRangeElements },
+ { 11582, _gloffset_DrawRangeElements },
/* from GL_EXT_histogram */
- { 703, _gloffset_Histogram },
- { 4012, _gloffset_ResetHistogram },
- { 12052, _gloffset_GetMinmax },
- { 18149, _gloffset_GetHistogramParameterfv },
- { 29128, _gloffset_GetMinmaxParameteriv },
- { 31935, _gloffset_ResetMinmax },
- { 33050, _gloffset_GetHistogramParameteriv },
- { 34708, _gloffset_GetHistogram },
- { 38044, _gloffset_Minmax },
- { 40023, _gloffset_GetMinmaxParameterfv },
+ { 772, _gloffset_Histogram },
+ { 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 },
/* from GL_EXT_paletted_texture */
- { 10325, _gloffset_ColorTable },
- { 17883, _gloffset_GetColorTable },
- { 27501, _gloffset_GetColorTableParameterfv },
- { 30042, _gloffset_GetColorTableParameteriv },
+ { 10420, _gloffset_ColorTable },
+ { 18049, _gloffset_GetColorTable },
+ { 27708, _gloffset_GetColorTableParameterfv },
+ { 30249, _gloffset_GetColorTableParameteriv },
/* from GL_EXT_subtexture */
- { 9018, _gloffset_TexSubImage1D },
- { 12889, _gloffset_TexSubImage2D },
+ { 9113, _gloffset_TexSubImage1D },
+ { 13008, _gloffset_TexSubImage2D },
/* from GL_EXT_texture3D */
- { 1627, _gloffset_TexImage3D },
- { 27235, _gloffset_TexSubImage3D },
+ { 1696, _gloffset_TexImage3D },
+ { 27442, _gloffset_TexSubImage3D },
/* from GL_EXT_texture_object */
- { 3708, _gloffset_PrioritizeTextures },
- { 9562, _gloffset_AreTexturesResident },
- { 15961, _gloffset_GenTextures },
- { 18398, _gloffset_DeleteTextures },
- { 23614, _gloffset_IsTexture },
- { 36114, _gloffset_BindTexture },
+ { 3777, _gloffset_PrioritizeTextures },
+ { 9657, _gloffset_AreTexturesResident },
+ { 16127, _gloffset_GenTextures },
+ { 18564, _gloffset_DeleteTextures },
+ { 23799, _gloffset_IsTexture },
+ { 36372, _gloffset_BindTexture },
/* from GL_EXT_vertex_array */
- { 29025, _gloffset_ArrayElement },
- { 37452, _gloffset_GetPointerv },
- { 39350, _gloffset_DrawArrays },
+ { 29232, _gloffset_ArrayElement },
+ { 37710, _gloffset_GetPointerv },
+ { 39647, _gloffset_DrawArrays },
/* from GL_NV_read_buffer */
- { 29692, _gloffset_ReadBuffer },
+ { 29899, _gloffset_ReadBuffer },
/* from GL_OES_blend_subtract */
- { 13432, _gloffset_BlendEquation },
+ { 13551, _gloffset_BlendEquation },
/* from GL_OES_texture_3D */
- { 1627, _gloffset_TexImage3D },
- { 17722, _gloffset_CopyTexSubImage3D },
- { 27235, _gloffset_TexSubImage3D },
+ { 1696, _gloffset_TexImage3D },
+ { 17888, _gloffset_CopyTexSubImage3D },
+ { 27442, _gloffset_TexSubImage3D },
/* from GL_OES_texture_cube_map */
- { 2360, _gloffset_TexGeniv },
- { 13026, _gloffset_TexGenfv },
- { 22306, _gloffset_TexGeni },
- { 22334, _gloffset_TexGenf },
- { 33755, _gloffset_GetTexGeniv },
- { 34578, _gloffset_GetTexGenfv },
+ { 2429, _gloffset_TexGeniv },
+ { 13145, _gloffset_TexGenfv },
+ { 22491, _gloffset_TexGeni },
+ { 22519, _gloffset_TexGenf },
+ { 34013, _gloffset_GetTexGeniv },
+ { 34836, _gloffset_GetTexGenfv },
/* from GL_SGI_color_table */
- { 9735, _gloffset_ColorTableParameteriv },
- { 10325, _gloffset_ColorTable },
- { 17883, _gloffset_GetColorTable },
- { 18015, _gloffset_CopyColorTable },
- { 23383, _gloffset_ColorTableParameterfv },
- { 27501, _gloffset_GetColorTableParameterfv },
- { 30042, _gloffset_GetColorTableParameteriv },
+ { 9830, _gloffset_ColorTableParameteriv },
+ { 10420, _gloffset_ColorTable },
+ { 18049, _gloffset_GetColorTable },
+ { 18181, _gloffset_CopyColorTable },
+ { 23568, _gloffset_ColorTableParameterfv },
+ { 27708, _gloffset_GetColorTableParameterfv },
+ { 30249, _gloffset_GetColorTableParameteriv },
{ -1, -1 }
};