summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/glx/indirect.c26
-rw-r--r--src/glx/indirect_size.c44
-rw-r--r--src/glx/indirect_size.h38
-rw-r--r--src/mapi/glapi/gen/ARB_instanced_arrays.xml21
-rw-r--r--src/mapi/glapi/gen/gl_API.xml1
-rw-r--r--src/mapi/glapi/glapi_sparc.S579
-rw-r--r--src/mapi/glapi/glapi_x86-64.S2801
-rw-r--r--src/mapi/glapi/glapi_x86.S925
-rw-r--r--src/mapi/glapi/glapitable.h617
-rw-r--r--src/mapi/glapi/glapitemp.h180
-rw-r--r--src/mapi/glapi/glprocs.h1414
-rw-r--r--src/mesa/main/enums.c177
-rw-r--r--src/mesa/main/glapidispatch.h1242
-rw-r--r--src/mesa/main/remap_helper.h3936
14 files changed, 6046 insertions, 5955 deletions
diff --git a/src/glx/indirect.c b/src/glx/indirect.c
index 6d3c42c5f3b..49938a167a5 100644
--- a/src/glx/indirect.c
+++ b/src/glx/indirect.c
@@ -41,19 +41,19 @@
#define __GLX_PAD(n) (((n) + 3) & ~3)
-#if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
-#define FASTCALL __attribute__((fastcall))
-#else
-#define FASTCALL
-#endif
-#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
-#define NOINLINE __attribute__((noinline))
-#else
-#define NOINLINE
-#endif
+# if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
+# define FASTCALL __attribute__((fastcall))
+# else
+# define FASTCALL
+# endif
+# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
+# define NOINLINE __attribute__((noinline))
+# else
+# define NOINLINE
+# endif
#ifndef __GNUC__
-#define __builtin_expect(x, y) x
+# define __builtin_expect(x, y) x
#endif
/* If the size and opcode values are known at compile-time, this will, on
@@ -10657,5 +10657,5 @@ __indirect_glFramebufferTextureLayerEXT(GLenum target, GLenum attachment,
}
-#undef FASTCALL
-#undef NOINLINE
+# undef FASTCALL
+# undef NOINLINE
diff --git a/src/glx/indirect_size.c b/src/glx/indirect_size.c
index 137e69cb044..411a0e42c55 100644
--- a/src/glx/indirect_size.c
+++ b/src/glx/indirect_size.c
@@ -29,35 +29,35 @@
#include <GL/gl.h>
#include "indirect_size.h"
-#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
-#define PURE __attribute__((pure))
-#else
-#define PURE
-#endif
+# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
+# define PURE __attribute__((pure))
+# else
+# define PURE
+# endif
-#if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
-#define FASTCALL __attribute__((fastcall))
-#else
-#define FASTCALL
-#endif
+# if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
+# define FASTCALL __attribute__((fastcall))
+# else
+# define FASTCALL
+# endif
-#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
-#define INTERNAL __attribute__((visibility("internal")))
-#else
-#define INTERNAL
-#endif
+# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
+# define INTERNAL __attribute__((visibility("internal")))
+# else
+# define INTERNAL
+# endif
#if defined(__CYGWIN__) || defined(__MINGW32__) || defined(GLX_USE_APPLEGL)
-#undef HAVE_ALIAS
+# undef HAVE_ALIAS
#endif
#ifdef HAVE_ALIAS
-#define ALIAS2(from,to) \
+# define ALIAS2(from,to) \
INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
__attribute__ ((alias( # to )));
-#define ALIAS(from,to) ALIAS2( from, __gl ## to ## _size )
+# define ALIAS(from,to) ALIAS2( from, __gl ## to ## _size )
#else
-#define ALIAS(from,to) \
+# define ALIAS(from,to) \
INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
{ return __gl ## to ## _size( e ); }
#endif
@@ -383,6 +383,6 @@ ALIAS(Fogiv, Fogfv)
ALIAS(ColorTableParameteriv, ColorTableParameterfv)
ALIAS(ConvolutionParameteriv, ConvolutionParameterfv)
ALIAS(PointParameterivNV, PointParameterfvEXT)
-#undef PURE
-#undef FASTCALL
-#undef INTERNAL
+# undef PURE
+# undef FASTCALL
+# undef INTERNAL
diff --git a/src/glx/indirect_size.h b/src/glx/indirect_size.h
index 9857b6c75e6..79b849b6839 100644
--- a/src/glx/indirect_size.h
+++ b/src/glx/indirect_size.h
@@ -26,7 +26,7 @@
*/
#if !defined( _INDIRECT_SIZE_H_ )
-#define _INDIRECT_SIZE_H_
+# define _INDIRECT_SIZE_H_
/**
* \file
@@ -36,23 +36,23 @@
* \author Ian Romanick <idr@us.ibm.com>
*/
-#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
-#define PURE __attribute__((pure))
-#else
-#define PURE
-#endif
+# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
+# define PURE __attribute__((pure))
+# else
+# define PURE
+# endif
-#if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
-#define FASTCALL __attribute__((fastcall))
-#else
-#define FASTCALL
-#endif
+# if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
+# define FASTCALL __attribute__((fastcall))
+# else
+# define FASTCALL
+# endif
-#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
-#define INTERNAL __attribute__((visibility("internal")))
-#else
-#define INTERNAL
-#endif
+# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
+# define INTERNAL __attribute__((visibility("internal")))
+# else
+# define INTERNAL
+# endif
extern INTERNAL PURE FASTCALL GLint __glCallLists_size(GLenum);
extern INTERNAL PURE FASTCALL GLint __glFogfv_size(GLenum);
@@ -81,8 +81,8 @@ extern INTERNAL PURE FASTCALL GLint __glConvolutionParameteriv_size(GLenum);
extern INTERNAL PURE FASTCALL GLint __glPointParameterfvEXT_size(GLenum);
extern INTERNAL PURE FASTCALL GLint __glPointParameterivNV_size(GLenum);
-#undef PURE
-#undef FASTCALL
-#undef INTERNAL
+# undef PURE
+# undef FASTCALL
+# undef INTERNAL
#endif /* !defined( _INDIRECT_SIZE_H_ ) */
diff --git a/src/mapi/glapi/gen/ARB_instanced_arrays.xml b/src/mapi/glapi/gen/ARB_instanced_arrays.xml
new file mode 100644
index 00000000000..822f5437494
--- /dev/null
+++ b/src/mapi/glapi/gen/ARB_instanced_arrays.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
+
+<!-- Note: no GLX protocol info yet. -->
+
+
+<OpenGLAPI>
+
+<category name="GL_ARB_instanced_arrays" number="49">
+
+ <enum name="VERTEX_ATTRIB_ARRAY_DIVISOR_ARB" value="0x88FE"/>
+
+ <function name="VertexAttribDivisorARB" offset="assign">
+ <param name="index" type="GLuint"/>
+ <param name="divisor" type="GLuint"/>
+ </function>
+
+</category>
+
+
+</OpenGLAPI>
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml
index 0fc44b5a83d..6340b0aecab 100644
--- a/src/mapi/glapi/gen/gl_API.xml
+++ b/src/mapi/glapi/gen/gl_API.xml
@@ -12523,5 +12523,6 @@
<xi:include href="EXT_gpu_shader4.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<xi:include href="GL3x.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
+<xi:include href="ARB_instanced_arrays.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</OpenGLAPI>
diff --git a/src/mapi/glapi/glapi_sparc.S b/src/mapi/glapi/glapi_sparc.S
index b919c289084..8d5a671244f 100644
--- a/src/mapi/glapi/glapi_sparc.S
+++ b/src/mapi/glapi/glapi_sparc.S
@@ -773,36 +773,35 @@ gl_dispatch_functions_start:
GL_STUB(glFramebufferTextureARB, 575)
GL_STUB(glFramebufferTextureFaceARB, 576)
GL_STUB(glProgramParameteriARB, 577)
- GL_STUB(glFlushMappedBufferRange, 578)
- GL_STUB(glMapBufferRange, 579)
- GL_STUB(glBindVertexArray, 580)
- GL_STUB(glGenVertexArrays, 581)
- GL_STUB(glCopyBufferSubData, 582)
- GL_STUB(glClientWaitSync, 583)
- GL_STUB(glDeleteSync, 584)
- GL_STUB(glFenceSync, 585)
- GL_STUB(glGetInteger64v, 586)
- GL_STUB(glGetSynciv, 587)
- GL_STUB(glIsSync, 588)
- GL_STUB(glWaitSync, 589)
- GL_STUB(glDrawElementsBaseVertex, 590)
- GL_STUB(glDrawRangeElementsBaseVertex, 591)
- GL_STUB(glMultiDrawElementsBaseVertex, 592)
- GL_STUB(glBindTransformFeedback, 593)
- GL_STUB(glDeleteTransformFeedbacks, 594)
- GL_STUB(glDrawTransformFeedback, 595)
- GL_STUB(glGenTransformFeedbacks, 596)
- GL_STUB(glIsTransformFeedback, 597)
- GL_STUB(glPauseTransformFeedback, 598)
- GL_STUB(glResumeTransformFeedback, 599)
- GL_STUB(glClearDepthf, 600)
- GL_STUB(glDepthRangef, 601)
- GL_STUB(glGetShaderPrecisionFormat, 602)
- GL_STUB(glReleaseShaderCompiler, 603)
- GL_STUB(glShaderBinary, 604)
- GL_STUB(glPolygonOffsetEXT, 605)
- GL_STUB(gl_dispatch_stub_606, 606)
- HIDDEN(gl_dispatch_stub_606)
+ GL_STUB(glVertexAttribDivisorARB, 578)
+ GL_STUB(glFlushMappedBufferRange, 579)
+ GL_STUB(glMapBufferRange, 580)
+ GL_STUB(glBindVertexArray, 581)
+ GL_STUB(glGenVertexArrays, 582)
+ GL_STUB(glCopyBufferSubData, 583)
+ GL_STUB(glClientWaitSync, 584)
+ GL_STUB(glDeleteSync, 585)
+ GL_STUB(glFenceSync, 586)
+ GL_STUB(glGetInteger64v, 587)
+ GL_STUB(glGetSynciv, 588)
+ GL_STUB(glIsSync, 589)
+ GL_STUB(glWaitSync, 590)
+ GL_STUB(glDrawElementsBaseVertex, 591)
+ GL_STUB(glDrawRangeElementsBaseVertex, 592)
+ GL_STUB(glMultiDrawElementsBaseVertex, 593)
+ GL_STUB(glBindTransformFeedback, 594)
+ GL_STUB(glDeleteTransformFeedbacks, 595)
+ GL_STUB(glDrawTransformFeedback, 596)
+ GL_STUB(glGenTransformFeedbacks, 597)
+ GL_STUB(glIsTransformFeedback, 598)
+ GL_STUB(glPauseTransformFeedback, 599)
+ GL_STUB(glResumeTransformFeedback, 600)
+ GL_STUB(glClearDepthf, 601)
+ GL_STUB(glDepthRangef, 602)
+ GL_STUB(glGetShaderPrecisionFormat, 603)
+ GL_STUB(glReleaseShaderCompiler, 604)
+ GL_STUB(glShaderBinary, 605)
+ GL_STUB(glPolygonOffsetEXT, 606)
GL_STUB(gl_dispatch_stub_607, 607)
HIDDEN(gl_dispatch_stub_607)
GL_STUB(gl_dispatch_stub_608, 608)
@@ -817,85 +816,85 @@ gl_dispatch_functions_start:
HIDDEN(gl_dispatch_stub_612)
GL_STUB(gl_dispatch_stub_613, 613)
HIDDEN(gl_dispatch_stub_613)
- GL_STUB(glColorPointerEXT, 614)
- GL_STUB(glEdgeFlagPointerEXT, 615)
- GL_STUB(glIndexPointerEXT, 616)
- GL_STUB(glNormalPointerEXT, 617)
- GL_STUB(glTexCoordPointerEXT, 618)
- GL_STUB(glVertexPointerEXT, 619)
- GL_STUB(glPointParameterfEXT, 620)
- GL_STUB(glPointParameterfvEXT, 621)
- GL_STUB(glLockArraysEXT, 622)
- GL_STUB(glUnlockArraysEXT, 623)
- GL_STUB(glSecondaryColor3bEXT, 624)
- GL_STUB(glSecondaryColor3bvEXT, 625)
- GL_STUB(glSecondaryColor3dEXT, 626)
- GL_STUB(glSecondaryColor3dvEXT, 627)
- GL_STUB(glSecondaryColor3fEXT, 628)
- GL_STUB(glSecondaryColor3fvEXT, 629)
- GL_STUB(glSecondaryColor3iEXT, 630)
- GL_STUB(glSecondaryColor3ivEXT, 631)
- GL_STUB(glSecondaryColor3sEXT, 632)
- GL_STUB(glSecondaryColor3svEXT, 633)
- GL_STUB(glSecondaryColor3ubEXT, 634)
- GL_STUB(glSecondaryColor3ubvEXT, 635)
- GL_STUB(glSecondaryColor3uiEXT, 636)
- GL_STUB(glSecondaryColor3uivEXT, 637)
- GL_STUB(glSecondaryColor3usEXT, 638)
- GL_STUB(glSecondaryColor3usvEXT, 639)
- GL_STUB(glSecondaryColorPointerEXT, 640)
- GL_STUB(glMultiDrawArraysEXT, 641)
- GL_STUB(glMultiDrawElementsEXT, 642)
- GL_STUB(glFogCoordPointerEXT, 643)
- GL_STUB(glFogCoorddEXT, 644)
- GL_STUB(glFogCoorddvEXT, 645)
- GL_STUB(glFogCoordfEXT, 646)
- GL_STUB(glFogCoordfvEXT, 647)
- GL_STUB(gl_dispatch_stub_648, 648)
- HIDDEN(gl_dispatch_stub_648)
- GL_STUB(glBlendFuncSeparateEXT, 649)
- GL_STUB(glFlushVertexArrayRangeNV, 650)
- GL_STUB(glVertexArrayRangeNV, 651)
- GL_STUB(glCombinerInputNV, 652)
- GL_STUB(glCombinerOutputNV, 653)
- GL_STUB(glCombinerParameterfNV, 654)
- GL_STUB(glCombinerParameterfvNV, 655)
- GL_STUB(glCombinerParameteriNV, 656)
- GL_STUB(glCombinerParameterivNV, 657)
- GL_STUB(glFinalCombinerInputNV, 658)
- GL_STUB(glGetCombinerInputParameterfvNV, 659)
- GL_STUB(glGetCombinerInputParameterivNV, 660)
- GL_STUB(glGetCombinerOutputParameterfvNV, 661)
- GL_STUB(glGetCombinerOutputParameterivNV, 662)
- GL_STUB(glGetFinalCombinerInputParameterfvNV, 663)
- GL_STUB(glGetFinalCombinerInputParameterivNV, 664)
- GL_STUB(glResizeBuffersMESA, 665)
- GL_STUB(glWindowPos2dMESA, 666)
- GL_STUB(glWindowPos2dvMESA, 667)
- GL_STUB(glWindowPos2fMESA, 668)
- GL_STUB(glWindowPos2fvMESA, 669)
- GL_STUB(glWindowPos2iMESA, 670)
- GL_STUB(glWindowPos2ivMESA, 671)
- GL_STUB(glWindowPos2sMESA, 672)
- GL_STUB(glWindowPos2svMESA, 673)
- GL_STUB(glWindowPos3dMESA, 674)
- GL_STUB(glWindowPos3dvMESA, 675)
- GL_STUB(glWindowPos3fMESA, 676)
- GL_STUB(glWindowPos3fvMESA, 677)
- GL_STUB(glWindowPos3iMESA, 678)
- GL_STUB(glWindowPos3ivMESA, 679)
- GL_STUB(glWindowPos3sMESA, 680)
- GL_STUB(glWindowPos3svMESA, 681)
- GL_STUB(glWindowPos4dMESA, 682)
- GL_STUB(glWindowPos4dvMESA, 683)
- GL_STUB(glWindowPos4fMESA, 684)
- GL_STUB(glWindowPos4fvMESA, 685)
- GL_STUB(glWindowPos4iMESA, 686)
- GL_STUB(glWindowPos4ivMESA, 687)
- GL_STUB(glWindowPos4sMESA, 688)
- GL_STUB(glWindowPos4svMESA, 689)
- GL_STUB(gl_dispatch_stub_690, 690)
- HIDDEN(gl_dispatch_stub_690)
+ GL_STUB(gl_dispatch_stub_614, 614)
+ HIDDEN(gl_dispatch_stub_614)
+ GL_STUB(glColorPointerEXT, 615)
+ GL_STUB(glEdgeFlagPointerEXT, 616)
+ GL_STUB(glIndexPointerEXT, 617)
+ GL_STUB(glNormalPointerEXT, 618)
+ GL_STUB(glTexCoordPointerEXT, 619)
+ GL_STUB(glVertexPointerEXT, 620)
+ GL_STUB(glPointParameterfEXT, 621)
+ GL_STUB(glPointParameterfvEXT, 622)
+ GL_STUB(glLockArraysEXT, 623)
+ GL_STUB(glUnlockArraysEXT, 624)
+ GL_STUB(glSecondaryColor3bEXT, 625)
+ GL_STUB(glSecondaryColor3bvEXT, 626)
+ GL_STUB(glSecondaryColor3dEXT, 627)
+ GL_STUB(glSecondaryColor3dvEXT, 628)
+ GL_STUB(glSecondaryColor3fEXT, 629)
+ GL_STUB(glSecondaryColor3fvEXT, 630)
+ GL_STUB(glSecondaryColor3iEXT, 631)
+ GL_STUB(glSecondaryColor3ivEXT, 632)
+ GL_STUB(glSecondaryColor3sEXT, 633)
+ GL_STUB(glSecondaryColor3svEXT, 634)
+ GL_STUB(glSecondaryColor3ubEXT, 635)
+ GL_STUB(glSecondaryColor3ubvEXT, 636)
+ GL_STUB(glSecondaryColor3uiEXT, 637)
+ GL_STUB(glSecondaryColor3uivEXT, 638)
+ GL_STUB(glSecondaryColor3usEXT, 639)
+ GL_STUB(glSecondaryColor3usvEXT, 640)
+ GL_STUB(glSecondaryColorPointerEXT, 641)
+ GL_STUB(glMultiDrawArraysEXT, 642)
+ GL_STUB(glMultiDrawElementsEXT, 643)
+ GL_STUB(glFogCoordPointerEXT, 644)
+ GL_STUB(glFogCoorddEXT, 645)
+ GL_STUB(glFogCoorddvEXT, 646)
+ GL_STUB(glFogCoordfEXT, 647)
+ GL_STUB(glFogCoordfvEXT, 648)
+ GL_STUB(gl_dispatch_stub_649, 649)
+ HIDDEN(gl_dispatch_stub_649)
+ GL_STUB(glBlendFuncSeparateEXT, 650)
+ GL_STUB(glFlushVertexArrayRangeNV, 651)
+ GL_STUB(glVertexArrayRangeNV, 652)
+ GL_STUB(glCombinerInputNV, 653)
+ GL_STUB(glCombinerOutputNV, 654)
+ GL_STUB(glCombinerParameterfNV, 655)
+ GL_STUB(glCombinerParameterfvNV, 656)
+ GL_STUB(glCombinerParameteriNV, 657)
+ GL_STUB(glCombinerParameterivNV, 658)
+ GL_STUB(glFinalCombinerInputNV, 659)
+ GL_STUB(glGetCombinerInputParameterfvNV, 660)
+ GL_STUB(glGetCombinerInputParameterivNV, 661)
+ GL_STUB(glGetCombinerOutputParameterfvNV, 662)
+ GL_STUB(glGetCombinerOutputParameterivNV, 663)
+ GL_STUB(glGetFinalCombinerInputParameterfvNV, 664)
+ GL_STUB(glGetFinalCombinerInputParameterivNV, 665)
+ GL_STUB(glResizeBuffersMESA, 666)
+ GL_STUB(glWindowPos2dMESA, 667)
+ GL_STUB(glWindowPos2dvMESA, 668)
+ GL_STUB(glWindowPos2fMESA, 669)
+ GL_STUB(glWindowPos2fvMESA, 670)
+ GL_STUB(glWindowPos2iMESA, 671)
+ GL_STUB(glWindowPos2ivMESA, 672)
+ GL_STUB(glWindowPos2sMESA, 673)
+ GL_STUB(glWindowPos2svMESA, 674)
+ GL_STUB(glWindowPos3dMESA, 675)
+ GL_STUB(glWindowPos3dvMESA, 676)
+ GL_STUB(glWindowPos3fMESA, 677)
+ GL_STUB(glWindowPos3fvMESA, 678)
+ GL_STUB(glWindowPos3iMESA, 679)
+ GL_STUB(glWindowPos3ivMESA, 680)
+ GL_STUB(glWindowPos3sMESA, 681)
+ GL_STUB(glWindowPos3svMESA, 682)
+ GL_STUB(glWindowPos4dMESA, 683)
+ GL_STUB(glWindowPos4dvMESA, 684)
+ GL_STUB(glWindowPos4fMESA, 685)
+ GL_STUB(glWindowPos4fvMESA, 686)
+ GL_STUB(glWindowPos4iMESA, 687)
+ GL_STUB(glWindowPos4ivMESA, 688)
+ GL_STUB(glWindowPos4sMESA, 689)
+ GL_STUB(glWindowPos4svMESA, 690)
GL_STUB(gl_dispatch_stub_691, 691)
HIDDEN(gl_dispatch_stub_691)
GL_STUB(gl_dispatch_stub_692, 692)
@@ -912,88 +911,88 @@ gl_dispatch_functions_start:
HIDDEN(gl_dispatch_stub_697)
GL_STUB(gl_dispatch_stub_698, 698)
HIDDEN(gl_dispatch_stub_698)
- GL_STUB(glAreProgramsResidentNV, 699)
- GL_STUB(glBindProgramNV, 700)
- GL_STUB(glDeleteProgramsNV, 701)
- GL_STUB(glExecuteProgramNV, 702)
- GL_STUB(glGenProgramsNV, 703)
- GL_STUB(glGetProgramParameterdvNV, 704)
- GL_STUB(glGetProgramParameterfvNV, 705)
- GL_STUB(glGetProgramStringNV, 706)
- GL_STUB(glGetProgramivNV, 707)
- GL_STUB(glGetTrackMatrixivNV, 708)
- GL_STUB(glGetVertexAttribPointervNV, 709)
- GL_STUB(glGetVertexAttribdvNV, 710)
- GL_STUB(glGetVertexAttribfvNV, 711)
- GL_STUB(glGetVertexAttribivNV, 712)
- GL_STUB(glIsProgramNV, 713)
- GL_STUB(glLoadProgramNV, 714)
- GL_STUB(glProgramParameters4dvNV, 715)
- GL_STUB(glProgramParameters4fvNV, 716)
- GL_STUB(glRequestResidentProgramsNV, 717)
- GL_STUB(glTrackMatrixNV, 718)
- GL_STUB(glVertexAttrib1dNV, 719)
- GL_STUB(glVertexAttrib1dvNV, 720)
- GL_STUB(glVertexAttrib1fNV, 721)
- GL_STUB(glVertexAttrib1fvNV, 722)
- GL_STUB(glVertexAttrib1sNV, 723)
- GL_STUB(glVertexAttrib1svNV, 724)
- GL_STUB(glVertexAttrib2dNV, 725)
- GL_STUB(glVertexAttrib2dvNV, 726)
- GL_STUB(glVertexAttrib2fNV, 727)
- GL_STUB(glVertexAttrib2fvNV, 728)
- GL_STUB(glVertexAttrib2sNV, 729)
- GL_STUB(glVertexAttrib2svNV, 730)
- GL_STUB(glVertexAttrib3dNV, 731)
- GL_STUB(glVertexAttrib3dvNV, 732)
- GL_STUB(glVertexAttrib3fNV, 733)
- GL_STUB(glVertexAttrib3fvNV, 734)
- GL_STUB(glVertexAttrib3sNV, 735)
- GL_STUB(glVertexAttrib3svNV, 736)
- GL_STUB(glVertexAttrib4dNV, 737)
- GL_STUB(glVertexAttrib4dvNV, 738)
- GL_STUB(glVertexAttrib4fNV, 739)
- GL_STUB(glVertexAttrib4fvNV, 740)
- GL_STUB(glVertexAttrib4sNV, 741)
- GL_STUB(glVertexAttrib4svNV, 742)
- GL_STUB(glVertexAttrib4ubNV, 743)
- GL_STUB(glVertexAttrib4ubvNV, 744)
- GL_STUB(glVertexAttribPointerNV, 745)
- GL_STUB(glVertexAttribs1dvNV, 746)
- GL_STUB(glVertexAttribs1fvNV, 747)
- GL_STUB(glVertexAttribs1svNV, 748)
- GL_STUB(glVertexAttribs2dvNV, 749)
- GL_STUB(glVertexAttribs2fvNV, 750)
- GL_STUB(glVertexAttribs2svNV, 751)
- GL_STUB(glVertexAttribs3dvNV, 752)
- GL_STUB(glVertexAttribs3fvNV, 753)
- GL_STUB(glVertexAttribs3svNV, 754)
- GL_STUB(glVertexAttribs4dvNV, 755)
- GL_STUB(glVertexAttribs4fvNV, 756)
- GL_STUB(glVertexAttribs4svNV, 757)
- GL_STUB(glVertexAttribs4ubvNV, 758)
- GL_STUB(glGetTexBumpParameterfvATI, 759)
- GL_STUB(glGetTexBumpParameterivATI, 760)
- GL_STUB(glTexBumpParameterfvATI, 761)
- GL_STUB(glTexBumpParameterivATI, 762)
- GL_STUB(glAlphaFragmentOp1ATI, 763)
- GL_STUB(glAlphaFragmentOp2ATI, 764)
- GL_STUB(glAlphaFragmentOp3ATI, 765)
- GL_STUB(glBeginFragmentShaderATI, 766)
- GL_STUB(glBindFragmentShaderATI, 767)
- GL_STUB(glColorFragmentOp1ATI, 768)
- GL_STUB(glColorFragmentOp2ATI, 769)
- GL_STUB(glColorFragmentOp3ATI, 770)
- GL_STUB(glDeleteFragmentShaderATI, 771)
- GL_STUB(glEndFragmentShaderATI, 772)
- GL_STUB(glGenFragmentShadersATI, 773)
- GL_STUB(glPassTexCoordATI, 774)
- GL_STUB(glSampleMapATI, 775)
- GL_STUB(glSetFragmentShaderConstantATI, 776)
- GL_STUB(glPointParameteriNV, 777)
- GL_STUB(glPointParameterivNV, 778)
- GL_STUB(gl_dispatch_stub_779, 779)
- HIDDEN(gl_dispatch_stub_779)
+ GL_STUB(gl_dispatch_stub_699, 699)
+ HIDDEN(gl_dispatch_stub_699)
+ GL_STUB(glAreProgramsResidentNV, 700)
+ GL_STUB(glBindProgramNV, 701)
+ GL_STUB(glDeleteProgramsNV, 702)
+ GL_STUB(glExecuteProgramNV, 703)
+ GL_STUB(glGenProgramsNV, 704)
+ GL_STUB(glGetProgramParameterdvNV, 705)
+ GL_STUB(glGetProgramParameterfvNV, 706)
+ GL_STUB(glGetProgramStringNV, 707)
+ GL_STUB(glGetProgramivNV, 708)
+ GL_STUB(glGetTrackMatrixivNV, 709)
+ GL_STUB(glGetVertexAttribPointervNV, 710)
+ GL_STUB(glGetVertexAttribdvNV, 711)
+ GL_STUB(glGetVertexAttribfvNV, 712)
+ GL_STUB(glGetVertexAttribivNV, 713)
+ GL_STUB(glIsProgramNV, 714)
+ GL_STUB(glLoadProgramNV, 715)
+ GL_STUB(glProgramParameters4dvNV, 716)
+ GL_STUB(glProgramParameters4fvNV, 717)
+ GL_STUB(glRequestResidentProgramsNV, 718)
+ GL_STUB(glTrackMatrixNV, 719)
+ GL_STUB(glVertexAttrib1dNV, 720)
+ GL_STUB(glVertexAttrib1dvNV, 721)
+ GL_STUB(glVertexAttrib1fNV, 722)
+ GL_STUB(glVertexAttrib1fvNV, 723)
+ GL_STUB(glVertexAttrib1sNV, 724)
+ GL_STUB(glVertexAttrib1svNV, 725)
+ GL_STUB(glVertexAttrib2dNV, 726)
+ GL_STUB(glVertexAttrib2dvNV, 727)
+ GL_STUB(glVertexAttrib2fNV, 728)
+ GL_STUB(glVertexAttrib2fvNV, 729)
+ GL_STUB(glVertexAttrib2sNV, 730)
+ GL_STUB(glVertexAttrib2svNV, 731)
+ GL_STUB(glVertexAttrib3dNV, 732)
+ GL_STUB(glVertexAttrib3dvNV, 733)
+ GL_STUB(glVertexAttrib3fNV, 734)
+ GL_STUB(glVertexAttrib3fvNV, 735)
+ GL_STUB(glVertexAttrib3sNV, 736)
+ GL_STUB(glVertexAttrib3svNV, 737)
+ GL_STUB(glVertexAttrib4dNV, 738)
+ GL_STUB(glVertexAttrib4dvNV, 739)
+ GL_STUB(glVertexAttrib4fNV, 740)
+ GL_STUB(glVertexAttrib4fvNV, 741)
+ GL_STUB(glVertexAttrib4sNV, 742)
+ GL_STUB(glVertexAttrib4svNV, 743)
+ GL_STUB(glVertexAttrib4ubNV, 744)
+ GL_STUB(glVertexAttrib4ubvNV, 745)
+ GL_STUB(glVertexAttribPointerNV, 746)
+ GL_STUB(glVertexAttribs1dvNV, 747)
+ GL_STUB(glVertexAttribs1fvNV, 748)
+ GL_STUB(glVertexAttribs1svNV, 749)
+ GL_STUB(glVertexAttribs2dvNV, 750)
+ GL_STUB(glVertexAttribs2fvNV, 751)
+ GL_STUB(glVertexAttribs2svNV, 752)
+ GL_STUB(glVertexAttribs3dvNV, 753)
+ GL_STUB(glVertexAttribs3fvNV, 754)
+ GL_STUB(glVertexAttribs3svNV, 755)
+ GL_STUB(glVertexAttribs4dvNV, 756)
+ GL_STUB(glVertexAttribs4fvNV, 757)
+ GL_STUB(glVertexAttribs4svNV, 758)
+ GL_STUB(glVertexAttribs4ubvNV, 759)
+ GL_STUB(glGetTexBumpParameterfvATI, 760)
+ GL_STUB(glGetTexBumpParameterivATI, 761)
+ GL_STUB(glTexBumpParameterfvATI, 762)
+ GL_STUB(glTexBumpParameterivATI, 763)
+ GL_STUB(glAlphaFragmentOp1ATI, 764)
+ GL_STUB(glAlphaFragmentOp2ATI, 765)
+ GL_STUB(glAlphaFragmentOp3ATI, 766)
+ GL_STUB(glBeginFragmentShaderATI, 767)
+ GL_STUB(glBindFragmentShaderATI, 768)
+ GL_STUB(glColorFragmentOp1ATI, 769)
+ GL_STUB(glColorFragmentOp2ATI, 770)
+ GL_STUB(glColorFragmentOp3ATI, 771)
+ GL_STUB(glDeleteFragmentShaderATI, 772)
+ GL_STUB(glEndFragmentShaderATI, 773)
+ GL_STUB(glGenFragmentShadersATI, 774)
+ GL_STUB(glPassTexCoordATI, 775)
+ GL_STUB(glSampleMapATI, 776)
+ GL_STUB(glSetFragmentShaderConstantATI, 777)
+ GL_STUB(glPointParameteriNV, 778)
+ GL_STUB(glPointParameterivNV, 779)
GL_STUB(gl_dispatch_stub_780, 780)
HIDDEN(gl_dispatch_stub_780)
GL_STUB(gl_dispatch_stub_781, 781)
@@ -1002,110 +1001,110 @@ gl_dispatch_functions_start:
HIDDEN(gl_dispatch_stub_782)
GL_STUB(gl_dispatch_stub_783, 783)
HIDDEN(gl_dispatch_stub_783)
- GL_STUB(glGetProgramNamedParameterdvNV, 784)
- GL_STUB(glGetProgramNamedParameterfvNV, 785)
- GL_STUB(glProgramNamedParameter4dNV, 786)
- GL_STUB(glProgramNamedParameter4dvNV, 787)
- GL_STUB(glProgramNamedParameter4fNV, 788)
- GL_STUB(glProgramNamedParameter4fvNV, 789)
- GL_STUB(glPrimitiveRestartIndexNV, 790)
- GL_STUB(glPrimitiveRestartNV, 791)
- GL_STUB(gl_dispatch_stub_792, 792)
- HIDDEN(gl_dispatch_stub_792)
+ GL_STUB(gl_dispatch_stub_784, 784)
+ HIDDEN(gl_dispatch_stub_784)
+ GL_STUB(glGetProgramNamedParameterdvNV, 785)
+ GL_STUB(glGetProgramNamedParameterfvNV, 786)
+ GL_STUB(glProgramNamedParameter4dNV, 787)
+ GL_STUB(glProgramNamedParameter4dvNV, 788)
+ GL_STUB(glProgramNamedParameter4fNV, 789)
+ GL_STUB(glProgramNamedParameter4fvNV, 790)
+ GL_STUB(glPrimitiveRestartIndexNV, 791)
+ GL_STUB(glPrimitiveRestartNV, 792)
GL_STUB(gl_dispatch_stub_793, 793)
HIDDEN(gl_dispatch_stub_793)
- GL_STUB(glBindFramebufferEXT, 794)
- GL_STUB(glBindRenderbufferEXT, 795)
- GL_STUB(glCheckFramebufferStatusEXT, 796)
- GL_STUB(glDeleteFramebuffersEXT, 797)
- GL_STUB(glDeleteRenderbuffersEXT, 798)
- GL_STUB(glFramebufferRenderbufferEXT, 799)
- GL_STUB(glFramebufferTexture1DEXT, 800)
- GL_STUB(glFramebufferTexture2DEXT, 801)
- GL_STUB(glFramebufferTexture3DEXT, 802)
- GL_STUB(glGenFramebuffersEXT, 803)
- GL_STUB(glGenRenderbuffersEXT, 804)
- GL_STUB(glGenerateMipmapEXT, 805)
- GL_STUB(glGetFramebufferAttachmentParameterivEXT, 806)
- GL_STUB(glGetRenderbufferParameterivEXT, 807)
- GL_STUB(glIsFramebufferEXT, 808)
- GL_STUB(glIsRenderbufferEXT, 809)
- GL_STUB(glRenderbufferStorageEXT, 810)
- GL_STUB(gl_dispatch_stub_811, 811)
- HIDDEN(gl_dispatch_stub_811)
+ GL_STUB(gl_dispatch_stub_794, 794)
+ HIDDEN(gl_dispatch_stub_794)
+ GL_STUB(glBindFramebufferEXT, 795)
+ GL_STUB(glBindRenderbufferEXT, 796)
+ GL_STUB(glCheckFramebufferStatusEXT, 797)
+ GL_STUB(glDeleteFramebuffersEXT, 798)
+ GL_STUB(glDeleteRenderbuffersEXT, 799)
+ GL_STUB(glFramebufferRenderbufferEXT, 800)
+ GL_STUB(glFramebufferTexture1DEXT, 801)
+ GL_STUB(glFramebufferTexture2DEXT, 802)
+ GL_STUB(glFramebufferTexture3DEXT, 803)
+ GL_STUB(glGenFramebuffersEXT, 804)
+ GL_STUB(glGenRenderbuffersEXT, 805)
+ GL_STUB(glGenerateMipmapEXT, 806)
+ GL_STUB(glGetFramebufferAttachmentParameterivEXT, 807)
+ GL_STUB(glGetRenderbufferParameterivEXT, 808)
+ GL_STUB(glIsFramebufferEXT, 809)
+ GL_STUB(glIsRenderbufferEXT, 810)
+ GL_STUB(glRenderbufferStorageEXT, 811)
GL_STUB(gl_dispatch_stub_812, 812)
HIDDEN(gl_dispatch_stub_812)
GL_STUB(gl_dispatch_stub_813, 813)
HIDDEN(gl_dispatch_stub_813)
- GL_STUB(glBindFragDataLocationEXT, 814)
- GL_STUB(glGetFragDataLocationEXT, 815)
- GL_STUB(glGetUniformuivEXT, 816)
- GL_STUB(glGetVertexAttribIivEXT, 817)
- GL_STUB(glGetVertexAttribIuivEXT, 818)
- GL_STUB(glUniform1uiEXT, 819)
- GL_STUB(glUniform1uivEXT, 820)
- GL_STUB(glUniform2uiEXT, 821)
- GL_STUB(glUniform2uivEXT, 822)
- GL_STUB(glUniform3uiEXT, 823)
- GL_STUB(glUniform3uivEXT, 824)
- GL_STUB(glUniform4uiEXT, 825)
- GL_STUB(glUniform4uivEXT, 826)
- GL_STUB(glVertexAttribI1iEXT, 827)
- GL_STUB(glVertexAttribI1ivEXT, 828)
- GL_STUB(glVertexAttribI1uiEXT, 829)
- GL_STUB(glVertexAttribI1uivEXT, 830)
- GL_STUB(glVertexAttribI2iEXT, 831)
- GL_STUB(glVertexAttribI2ivEXT, 832)
- GL_STUB(glVertexAttribI2uiEXT, 833)
- GL_STUB(glVertexAttribI2uivEXT, 834)
- GL_STUB(glVertexAttribI3iEXT, 835)
- GL_STUB(glVertexAttribI3ivEXT, 836)
- GL_STUB(glVertexAttribI3uiEXT, 837)
- GL_STUB(glVertexAttribI3uivEXT, 838)
- GL_STUB(glVertexAttribI4bvEXT, 839)
- GL_STUB(glVertexAttribI4iEXT, 840)
- GL_STUB(glVertexAttribI4ivEXT, 841)
- GL_STUB(glVertexAttribI4svEXT, 842)
- GL_STUB(glVertexAttribI4ubvEXT, 843)
- GL_STUB(glVertexAttribI4uiEXT, 844)
- GL_STUB(glVertexAttribI4uivEXT, 845)
- GL_STUB(glVertexAttribI4usvEXT, 846)
- GL_STUB(glVertexAttribIPointerEXT, 847)
- GL_STUB(glFramebufferTextureLayerEXT, 848)
- GL_STUB(glColorMaskIndexedEXT, 849)
- GL_STUB(glDisableIndexedEXT, 850)
- GL_STUB(glEnableIndexedEXT, 851)
- GL_STUB(glGetBooleanIndexedvEXT, 852)
- GL_STUB(glGetIntegerIndexedvEXT, 853)
- GL_STUB(glIsEnabledIndexedEXT, 854)
- GL_STUB(glClearColorIiEXT, 855)
- GL_STUB(glClearColorIuiEXT, 856)
- GL_STUB(glGetTexParameterIivEXT, 857)
- GL_STUB(glGetTexParameterIuivEXT, 858)
- GL_STUB(glTexParameterIivEXT, 859)
- GL_STUB(glTexParameterIuivEXT, 860)
- GL_STUB(glBeginConditionalRenderNV, 861)
- GL_STUB(glEndConditionalRenderNV, 862)
- GL_STUB(glBeginTransformFeedbackEXT, 863)
- GL_STUB(glBindBufferBaseEXT, 864)
- GL_STUB(glBindBufferOffsetEXT, 865)
- GL_STUB(glBindBufferRangeEXT, 866)
- GL_STUB(glEndTransformFeedbackEXT, 867)
- GL_STUB(glGetTransformFeedbackVaryingEXT, 868)
- GL_STUB(glTransformFeedbackVaryingsEXT, 869)
- GL_STUB(glProvokingVertexEXT, 870)
- GL_STUB(gl_dispatch_stub_871, 871)
- HIDDEN(gl_dispatch_stub_871)
+ GL_STUB(gl_dispatch_stub_814, 814)
+ HIDDEN(gl_dispatch_stub_814)
+ GL_STUB(glBindFragDataLocationEXT, 815)
+ GL_STUB(glGetFragDataLocationEXT, 816)
+ GL_STUB(glGetUniformuivEXT, 817)
+ GL_STUB(glGetVertexAttribIivEXT, 818)
+ GL_STUB(glGetVertexAttribIuivEXT, 819)
+ GL_STUB(glUniform1uiEXT, 820)
+ GL_STUB(glUniform1uivEXT, 821)
+ GL_STUB(glUniform2uiEXT, 822)
+ GL_STUB(glUniform2uivEXT, 823)
+ GL_STUB(glUniform3uiEXT, 824)
+ GL_STUB(glUniform3uivEXT, 825)
+ GL_STUB(glUniform4uiEXT, 826)
+ GL_STUB(glUniform4uivEXT, 827)
+ GL_STUB(glVertexAttribI1iEXT, 828)
+ GL_STUB(glVertexAttribI1ivEXT, 829)
+ GL_STUB(glVertexAttribI1uiEXT, 830)
+ GL_STUB(glVertexAttribI1uivEXT, 831)
+ GL_STUB(glVertexAttribI2iEXT, 832)
+ GL_STUB(glVertexAttribI2ivEXT, 833)
+ GL_STUB(glVertexAttribI2uiEXT, 834)
+ GL_STUB(glVertexAttribI2uivEXT, 835)
+ GL_STUB(glVertexAttribI3iEXT, 836)
+ GL_STUB(glVertexAttribI3ivEXT, 837)
+ GL_STUB(glVertexAttribI3uiEXT, 838)
+ GL_STUB(glVertexAttribI3uivEXT, 839)
+ GL_STUB(glVertexAttribI4bvEXT, 840)
+ GL_STUB(glVertexAttribI4iEXT, 841)
+ GL_STUB(glVertexAttribI4ivEXT, 842)
+ GL_STUB(glVertexAttribI4svEXT, 843)
+ GL_STUB(glVertexAttribI4ubvEXT, 844)
+ GL_STUB(glVertexAttribI4uiEXT, 845)
+ GL_STUB(glVertexAttribI4uivEXT, 846)
+ GL_STUB(glVertexAttribI4usvEXT, 847)
+ GL_STUB(glVertexAttribIPointerEXT, 848)
+ GL_STUB(glFramebufferTextureLayerEXT, 849)
+ GL_STUB(glColorMaskIndexedEXT, 850)
+ GL_STUB(glDisableIndexedEXT, 851)
+ GL_STUB(glEnableIndexedEXT, 852)
+ GL_STUB(glGetBooleanIndexedvEXT, 853)
+ GL_STUB(glGetIntegerIndexedvEXT, 854)
+ GL_STUB(glIsEnabledIndexedEXT, 855)
+ GL_STUB(glClearColorIiEXT, 856)
+ GL_STUB(glClearColorIuiEXT, 857)
+ GL_STUB(glGetTexParameterIivEXT, 858)
+ GL_STUB(glGetTexParameterIuivEXT, 859)
+ GL_STUB(glTexParameterIivEXT, 860)
+ GL_STUB(glTexParameterIuivEXT, 861)
+ GL_STUB(glBeginConditionalRenderNV, 862)
+ GL_STUB(glEndConditionalRenderNV, 863)
+ GL_STUB(glBeginTransformFeedbackEXT, 864)
+ GL_STUB(glBindBufferBaseEXT, 865)
+ GL_STUB(glBindBufferOffsetEXT, 866)
+ GL_STUB(glBindBufferRangeEXT, 867)
+ GL_STUB(glEndTransformFeedbackEXT, 868)
+ GL_STUB(glGetTransformFeedbackVaryingEXT, 869)
+ GL_STUB(glTransformFeedbackVaryingsEXT, 870)
+ GL_STUB(glProvokingVertexEXT, 871)
GL_STUB(gl_dispatch_stub_872, 872)
HIDDEN(gl_dispatch_stub_872)
- GL_STUB(glGetObjectParameterivAPPLE, 873)
- GL_STUB(glObjectPurgeableAPPLE, 874)
- GL_STUB(glObjectUnpurgeableAPPLE, 875)
- GL_STUB(glActiveProgramEXT, 876)
- GL_STUB(glCreateShaderProgramEXT, 877)
- GL_STUB(glUseShaderProgramEXT, 878)
- GL_STUB(gl_dispatch_stub_879, 879)
- HIDDEN(gl_dispatch_stub_879)
+ GL_STUB(gl_dispatch_stub_873, 873)
+ HIDDEN(gl_dispatch_stub_873)
+ GL_STUB(glGetObjectParameterivAPPLE, 874)
+ GL_STUB(glObjectPurgeableAPPLE, 875)
+ GL_STUB(glObjectUnpurgeableAPPLE, 876)
+ GL_STUB(glActiveProgramEXT, 877)
+ GL_STUB(glCreateShaderProgramEXT, 878)
+ GL_STUB(glUseShaderProgramEXT, 879)
GL_STUB(gl_dispatch_stub_880, 880)
HIDDEN(gl_dispatch_stub_880)
GL_STUB(gl_dispatch_stub_881, 881)
@@ -1114,8 +1113,10 @@ gl_dispatch_functions_start:
HIDDEN(gl_dispatch_stub_882)
GL_STUB(gl_dispatch_stub_883, 883)
HIDDEN(gl_dispatch_stub_883)
- GL_STUB(glEGLImageTargetRenderbufferStorageOES, 884)
- GL_STUB(glEGLImageTargetTexture2DOES, 885)
+ GL_STUB(gl_dispatch_stub_884, 884)
+ HIDDEN(gl_dispatch_stub_884)
+ GL_STUB(glEGLImageTargetRenderbufferStorageOES, 885)
+ GL_STUB(glEGLImageTargetTexture2DOES, 886)
GL_STUB_ALIAS(glArrayElementEXT, glArrayElement)
GL_STUB_ALIAS(glBindTextureEXT, glBindTexture)
GL_STUB_ALIAS(glDrawArraysEXT, glDrawArrays)
diff --git a/src/mapi/glapi/glapi_x86-64.S b/src/mapi/glapi/glapi_x86-64.S
index 5474e04f53a..f54b2c960f1 100644
--- a/src/mapi/glapi/glapi_x86-64.S
+++ b/src/mapi/glapi/glapi_x86-64.S
@@ -21797,12 +21797,49 @@ GL_PREFIX(ProgramParameteriARB):
.size GL_PREFIX(ProgramParameteriARB), .-GL_PREFIX(ProgramParameteriARB)
.p2align 4,,15
+ .globl GL_PREFIX(VertexAttribDivisorARB)
+ .type GL_PREFIX(VertexAttribDivisorARB), @function
+GL_PREFIX(VertexAttribDivisorARB):
+#if defined(GLX_USE_TLS)
+ call _x86_64_get_dispatch@PLT
+ movq 4624(%rax), %r11
+ jmp *%r11
+#elif defined(PTHREADS)
+ pushq %rdi
+ pushq %rsi
+ pushq %rbp
+ call _x86_64_get_dispatch@PLT
+ popq %rbp
+ popq %rsi
+ popq %rdi
+ movq 4624(%rax), %r11
+ jmp *%r11
+#else
+ movq _glapi_Dispatch(%rip), %rax
+ testq %rax, %rax
+ je 1f
+ movq 4624(%rax), %r11
+ jmp *%r11
+1:
+ pushq %rdi
+ pushq %rsi
+ pushq %rbp
+ call _glapi_get_dispatch
+ popq %rbp
+ popq %rsi
+ popq %rdi
+ movq 4624(%rax), %r11
+ jmp *%r11
+#endif /* defined(GLX_USE_TLS) */
+ .size GL_PREFIX(VertexAttribDivisorARB), .-GL_PREFIX(VertexAttribDivisorARB)
+
+ .p2align 4,,15
.globl GL_PREFIX(FlushMappedBufferRange)
.type GL_PREFIX(FlushMappedBufferRange), @function
GL_PREFIX(FlushMappedBufferRange):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4624(%rax), %r11
+ movq 4632(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -21812,13 +21849,13 @@ GL_PREFIX(FlushMappedBufferRange):
popq %rdx
popq %rsi
popq %rdi
- movq 4624(%rax), %r11
+ movq 4632(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4624(%rax), %r11
+ movq 4632(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -21828,7 +21865,7 @@ GL_PREFIX(FlushMappedBufferRange):
popq %rdx
popq %rsi
popq %rdi
- movq 4624(%rax), %r11
+ movq 4632(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FlushMappedBufferRange), .-GL_PREFIX(FlushMappedBufferRange)
@@ -21839,7 +21876,7 @@ GL_PREFIX(FlushMappedBufferRange):
GL_PREFIX(MapBufferRange):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4632(%rax), %r11
+ movq 4640(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -21853,13 +21890,13 @@ GL_PREFIX(MapBufferRange):
popq %rdx
popq %rsi
popq %rdi
- movq 4632(%rax), %r11
+ movq 4640(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4632(%rax), %r11
+ movq 4640(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -21873,7 +21910,7 @@ GL_PREFIX(MapBufferRange):
popq %rdx
popq %rsi
popq %rdi
- movq 4632(%rax), %r11
+ movq 4640(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(MapBufferRange), .-GL_PREFIX(MapBufferRange)
@@ -21884,25 +21921,25 @@ GL_PREFIX(MapBufferRange):
GL_PREFIX(BindVertexArray):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4640(%rax), %r11
+ movq 4648(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 4640(%rax), %r11
+ movq 4648(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4640(%rax), %r11
+ movq 4648(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 4640(%rax), %r11
+ movq 4648(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindVertexArray), .-GL_PREFIX(BindVertexArray)
@@ -21913,7 +21950,7 @@ GL_PREFIX(BindVertexArray):
GL_PREFIX(GenVertexArrays):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4648(%rax), %r11
+ movq 4656(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -21923,13 +21960,13 @@ GL_PREFIX(GenVertexArrays):
popq %rbp
popq %rsi
popq %rdi
- movq 4648(%rax), %r11
+ movq 4656(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4648(%rax), %r11
+ movq 4656(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -21939,7 +21976,7 @@ GL_PREFIX(GenVertexArrays):
popq %rbp
popq %rsi
popq %rdi
- movq 4648(%rax), %r11
+ movq 4656(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenVertexArrays), .-GL_PREFIX(GenVertexArrays)
@@ -21950,7 +21987,7 @@ GL_PREFIX(GenVertexArrays):
GL_PREFIX(CopyBufferSubData):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4656(%rax), %r11
+ movq 4664(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -21964,13 +22001,13 @@ GL_PREFIX(CopyBufferSubData):
popq %rdx
popq %rsi
popq %rdi
- movq 4656(%rax), %r11
+ movq 4664(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4656(%rax), %r11
+ movq 4664(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -21984,7 +22021,7 @@ GL_PREFIX(CopyBufferSubData):
popq %rdx
popq %rsi
popq %rdi
- movq 4656(%rax), %r11
+ movq 4664(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CopyBufferSubData), .-GL_PREFIX(CopyBufferSubData)
@@ -21995,7 +22032,7 @@ GL_PREFIX(CopyBufferSubData):
GL_PREFIX(ClientWaitSync):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4664(%rax), %r11
+ movq 4672(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22005,13 +22042,13 @@ GL_PREFIX(ClientWaitSync):
popq %rdx
popq %rsi
popq %rdi
- movq 4664(%rax), %r11
+ movq 4672(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4664(%rax), %r11
+ movq 4672(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22021,7 +22058,7 @@ GL_PREFIX(ClientWaitSync):
popq %rdx
popq %rsi
popq %rdi
- movq 4664(%rax), %r11
+ movq 4672(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ClientWaitSync), .-GL_PREFIX(ClientWaitSync)
@@ -22032,25 +22069,25 @@ GL_PREFIX(ClientWaitSync):
GL_PREFIX(DeleteSync):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4672(%rax), %r11
+ movq 4680(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 4672(%rax), %r11
+ movq 4680(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4672(%rax), %r11
+ movq 4680(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 4672(%rax), %r11
+ movq 4680(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DeleteSync), .-GL_PREFIX(DeleteSync)
@@ -22061,7 +22098,7 @@ GL_PREFIX(DeleteSync):
GL_PREFIX(FenceSync):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4680(%rax), %r11
+ movq 4688(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22071,13 +22108,13 @@ GL_PREFIX(FenceSync):
popq %rbp
popq %rsi
popq %rdi
- movq 4680(%rax), %r11
+ movq 4688(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4680(%rax), %r11
+ movq 4688(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22087,7 +22124,7 @@ GL_PREFIX(FenceSync):
popq %rbp
popq %rsi
popq %rdi
- movq 4680(%rax), %r11
+ movq 4688(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FenceSync), .-GL_PREFIX(FenceSync)
@@ -22098,7 +22135,7 @@ GL_PREFIX(FenceSync):
GL_PREFIX(GetInteger64v):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4688(%rax), %r11
+ movq 4696(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22108,13 +22145,13 @@ GL_PREFIX(GetInteger64v):
popq %rbp
popq %rsi
popq %rdi
- movq 4688(%rax), %r11
+ movq 4696(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4688(%rax), %r11
+ movq 4696(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22124,7 +22161,7 @@ GL_PREFIX(GetInteger64v):
popq %rbp
popq %rsi
popq %rdi
- movq 4688(%rax), %r11
+ movq 4696(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetInteger64v), .-GL_PREFIX(GetInteger64v)
@@ -22135,7 +22172,7 @@ GL_PREFIX(GetInteger64v):
GL_PREFIX(GetSynciv):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4696(%rax), %r11
+ movq 4704(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22149,13 +22186,13 @@ GL_PREFIX(GetSynciv):
popq %rdx
popq %rsi
popq %rdi
- movq 4696(%rax), %r11
+ movq 4704(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4696(%rax), %r11
+ movq 4704(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22169,7 +22206,7 @@ GL_PREFIX(GetSynciv):
popq %rdx
popq %rsi
popq %rdi
- movq 4696(%rax), %r11
+ movq 4704(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetSynciv), .-GL_PREFIX(GetSynciv)
@@ -22180,25 +22217,25 @@ GL_PREFIX(GetSynciv):
GL_PREFIX(IsSync):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4704(%rax), %r11
+ movq 4712(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 4704(%rax), %r11
+ movq 4712(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4704(%rax), %r11
+ movq 4712(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 4704(%rax), %r11
+ movq 4712(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IsSync), .-GL_PREFIX(IsSync)
@@ -22209,7 +22246,7 @@ GL_PREFIX(IsSync):
GL_PREFIX(WaitSync):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4712(%rax), %r11
+ movq 4720(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22219,13 +22256,13 @@ GL_PREFIX(WaitSync):
popq %rdx
popq %rsi
popq %rdi
- movq 4712(%rax), %r11
+ movq 4720(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4712(%rax), %r11
+ movq 4720(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22235,7 +22272,7 @@ GL_PREFIX(WaitSync):
popq %rdx
popq %rsi
popq %rdi
- movq 4712(%rax), %r11
+ movq 4720(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WaitSync), .-GL_PREFIX(WaitSync)
@@ -22246,7 +22283,7 @@ GL_PREFIX(WaitSync):
GL_PREFIX(DrawElementsBaseVertex):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4720(%rax), %r11
+ movq 4728(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22260,13 +22297,13 @@ GL_PREFIX(DrawElementsBaseVertex):
popq %rdx
popq %rsi
popq %rdi
- movq 4720(%rax), %r11
+ movq 4728(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4720(%rax), %r11
+ movq 4728(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22280,7 +22317,7 @@ GL_PREFIX(DrawElementsBaseVertex):
popq %rdx
popq %rsi
popq %rdi
- movq 4720(%rax), %r11
+ movq 4728(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DrawElementsBaseVertex), .-GL_PREFIX(DrawElementsBaseVertex)
@@ -22291,7 +22328,7 @@ GL_PREFIX(DrawElementsBaseVertex):
GL_PREFIX(DrawRangeElementsBaseVertex):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4728(%rax), %r11
+ movq 4736(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22309,13 +22346,13 @@ GL_PREFIX(DrawRangeElementsBaseVertex):
popq %rdx
popq %rsi
popq %rdi
- movq 4728(%rax), %r11
+ movq 4736(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4728(%rax), %r11
+ movq 4736(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22333,7 +22370,7 @@ GL_PREFIX(DrawRangeElementsBaseVertex):
popq %rdx
popq %rsi
popq %rdi
- movq 4728(%rax), %r11
+ movq 4736(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DrawRangeElementsBaseVertex), .-GL_PREFIX(DrawRangeElementsBaseVertex)
@@ -22344,7 +22381,7 @@ GL_PREFIX(DrawRangeElementsBaseVertex):
GL_PREFIX(MultiDrawElementsBaseVertex):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4736(%rax), %r11
+ movq 4744(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22362,13 +22399,13 @@ GL_PREFIX(MultiDrawElementsBaseVertex):
popq %rdx
popq %rsi
popq %rdi
- movq 4736(%rax), %r11
+ movq 4744(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4736(%rax), %r11
+ movq 4744(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22386,7 +22423,7 @@ GL_PREFIX(MultiDrawElementsBaseVertex):
popq %rdx
popq %rsi
popq %rdi
- movq 4736(%rax), %r11
+ movq 4744(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(MultiDrawElementsBaseVertex), .-GL_PREFIX(MultiDrawElementsBaseVertex)
@@ -22397,7 +22434,7 @@ GL_PREFIX(MultiDrawElementsBaseVertex):
GL_PREFIX(BindTransformFeedback):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4744(%rax), %r11
+ movq 4752(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22407,13 +22444,13 @@ GL_PREFIX(BindTransformFeedback):
popq %rbp
popq %rsi
popq %rdi
- movq 4744(%rax), %r11
+ movq 4752(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4744(%rax), %r11
+ movq 4752(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22423,7 +22460,7 @@ GL_PREFIX(BindTransformFeedback):
popq %rbp
popq %rsi
popq %rdi
- movq 4744(%rax), %r11
+ movq 4752(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindTransformFeedback), .-GL_PREFIX(BindTransformFeedback)
@@ -22434,7 +22471,7 @@ GL_PREFIX(BindTransformFeedback):
GL_PREFIX(DeleteTransformFeedbacks):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4752(%rax), %r11
+ movq 4760(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22444,13 +22481,13 @@ GL_PREFIX(DeleteTransformFeedbacks):
popq %rbp
popq %rsi
popq %rdi
- movq 4752(%rax), %r11
+ movq 4760(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4752(%rax), %r11
+ movq 4760(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22460,7 +22497,7 @@ GL_PREFIX(DeleteTransformFeedbacks):
popq %rbp
popq %rsi
popq %rdi
- movq 4752(%rax), %r11
+ movq 4760(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DeleteTransformFeedbacks), .-GL_PREFIX(DeleteTransformFeedbacks)
@@ -22471,7 +22508,7 @@ GL_PREFIX(DeleteTransformFeedbacks):
GL_PREFIX(DrawTransformFeedback):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4760(%rax), %r11
+ movq 4768(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22481,13 +22518,13 @@ GL_PREFIX(DrawTransformFeedback):
popq %rbp
popq %rsi
popq %rdi
- movq 4760(%rax), %r11
+ movq 4768(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4760(%rax), %r11
+ movq 4768(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22497,7 +22534,7 @@ GL_PREFIX(DrawTransformFeedback):
popq %rbp
popq %rsi
popq %rdi
- movq 4760(%rax), %r11
+ movq 4768(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DrawTransformFeedback), .-GL_PREFIX(DrawTransformFeedback)
@@ -22508,7 +22545,7 @@ GL_PREFIX(DrawTransformFeedback):
GL_PREFIX(GenTransformFeedbacks):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4768(%rax), %r11
+ movq 4776(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22518,13 +22555,13 @@ GL_PREFIX(GenTransformFeedbacks):
popq %rbp
popq %rsi
popq %rdi
- movq 4768(%rax), %r11
+ movq 4776(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4768(%rax), %r11
+ movq 4776(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22534,7 +22571,7 @@ GL_PREFIX(GenTransformFeedbacks):
popq %rbp
popq %rsi
popq %rdi
- movq 4768(%rax), %r11
+ movq 4776(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenTransformFeedbacks), .-GL_PREFIX(GenTransformFeedbacks)
@@ -22545,25 +22582,25 @@ GL_PREFIX(GenTransformFeedbacks):
GL_PREFIX(IsTransformFeedback):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4776(%rax), %r11
+ movq 4784(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 4776(%rax), %r11
+ movq 4784(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4776(%rax), %r11
+ movq 4784(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 4776(%rax), %r11
+ movq 4784(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IsTransformFeedback), .-GL_PREFIX(IsTransformFeedback)
@@ -22574,25 +22611,25 @@ GL_PREFIX(IsTransformFeedback):
GL_PREFIX(PauseTransformFeedback):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4784(%rax), %r11
+ movq 4792(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 4784(%rax), %r11
+ movq 4792(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4784(%rax), %r11
+ movq 4792(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 4784(%rax), %r11
+ movq 4792(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PauseTransformFeedback), .-GL_PREFIX(PauseTransformFeedback)
@@ -22603,25 +22640,25 @@ GL_PREFIX(PauseTransformFeedback):
GL_PREFIX(ResumeTransformFeedback):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4792(%rax), %r11
+ movq 4800(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 4792(%rax), %r11
+ movq 4800(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4792(%rax), %r11
+ movq 4800(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 4792(%rax), %r11
+ movq 4800(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ResumeTransformFeedback), .-GL_PREFIX(ResumeTransformFeedback)
@@ -22632,25 +22669,25 @@ GL_PREFIX(ResumeTransformFeedback):
GL_PREFIX(ClearDepthf):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4800(%rax), %r11
+ movq 4808(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 4800(%rax), %r11
+ movq 4808(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4800(%rax), %r11
+ movq 4808(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 4800(%rax), %r11
+ movq 4808(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ClearDepthf), .-GL_PREFIX(ClearDepthf)
@@ -22661,7 +22698,7 @@ GL_PREFIX(ClearDepthf):
GL_PREFIX(DepthRangef):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4808(%rax), %r11
+ movq 4816(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22671,13 +22708,13 @@ GL_PREFIX(DepthRangef):
popq %rbp
popq %rsi
popq %rdi
- movq 4808(%rax), %r11
+ movq 4816(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4808(%rax), %r11
+ movq 4816(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22687,7 +22724,7 @@ GL_PREFIX(DepthRangef):
popq %rbp
popq %rsi
popq %rdi
- movq 4808(%rax), %r11
+ movq 4816(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DepthRangef), .-GL_PREFIX(DepthRangef)
@@ -22698,7 +22735,7 @@ GL_PREFIX(DepthRangef):
GL_PREFIX(GetShaderPrecisionFormat):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4816(%rax), %r11
+ movq 4824(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22712,13 +22749,13 @@ GL_PREFIX(GetShaderPrecisionFormat):
popq %rdx
popq %rsi
popq %rdi
- movq 4816(%rax), %r11
+ movq 4824(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4816(%rax), %r11
+ movq 4824(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22732,7 +22769,7 @@ GL_PREFIX(GetShaderPrecisionFormat):
popq %rdx
popq %rsi
popq %rdi
- movq 4816(%rax), %r11
+ movq 4824(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetShaderPrecisionFormat), .-GL_PREFIX(GetShaderPrecisionFormat)
@@ -22743,25 +22780,25 @@ GL_PREFIX(GetShaderPrecisionFormat):
GL_PREFIX(ReleaseShaderCompiler):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4824(%rax), %r11
+ movq 4832(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 4824(%rax), %r11
+ movq 4832(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4824(%rax), %r11
+ movq 4832(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 4824(%rax), %r11
+ movq 4832(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ReleaseShaderCompiler), .-GL_PREFIX(ReleaseShaderCompiler)
@@ -22772,7 +22809,7 @@ GL_PREFIX(ReleaseShaderCompiler):
GL_PREFIX(ShaderBinary):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4832(%rax), %r11
+ movq 4840(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -22786,13 +22823,13 @@ GL_PREFIX(ShaderBinary):
popq %rdx
popq %rsi
popq %rdi
- movq 4832(%rax), %r11
+ movq 4840(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4832(%rax), %r11
+ movq 4840(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -22806,7 +22843,7 @@ GL_PREFIX(ShaderBinary):
popq %rdx
popq %rsi
popq %rdi
- movq 4832(%rax), %r11
+ movq 4840(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ShaderBinary), .-GL_PREFIX(ShaderBinary)
@@ -22817,7 +22854,7 @@ GL_PREFIX(ShaderBinary):
GL_PREFIX(PolygonOffsetEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4840(%rax), %r11
+ movq 4848(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -22827,13 +22864,13 @@ GL_PREFIX(PolygonOffsetEXT):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 4840(%rax), %r11
+ movq 4848(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4840(%rax), %r11
+ movq 4848(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -22843,48 +22880,10 @@ GL_PREFIX(PolygonOffsetEXT):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 4840(%rax), %r11
- jmp *%r11
-#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(PolygonOffsetEXT), .-GL_PREFIX(PolygonOffsetEXT)
-
- .p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_606)
- .type GL_PREFIX(_dispatch_stub_606), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_606))
-GL_PREFIX(_dispatch_stub_606):
-#if defined(GLX_USE_TLS)
- call _x86_64_get_dispatch@PLT
- movq 4848(%rax), %r11
- jmp *%r11
-#elif defined(PTHREADS)
- pushq %rdi
- pushq %rsi
- pushq %rbp
- call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %rsi
- popq %rdi
- movq 4848(%rax), %r11
- jmp *%r11
-#else
- movq _glapi_Dispatch(%rip), %rax
- testq %rax, %rax
- je 1f
- movq 4848(%rax), %r11
- jmp *%r11
-1:
- pushq %rdi
- pushq %rsi
- pushq %rbp
- call _glapi_get_dispatch
- popq %rbp
- popq %rsi
- popq %rdi
movq 4848(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_606), .-GL_PREFIX(_dispatch_stub_606)
+ .size GL_PREFIX(PolygonOffsetEXT), .-GL_PREFIX(PolygonOffsetEXT)
.p2align 4,,15
.globl GL_PREFIX(_dispatch_stub_607)
@@ -22934,13 +22933,13 @@ GL_PREFIX(_dispatch_stub_608):
movq 4864(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
- subq $24, %rsp
- movq %rdi, (%rsp)
- movq %xmm0, 8(%rsp)
+ pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _x86_64_get_dispatch@PLT
- movq 8(%rsp), %xmm0
- movq (%rsp), %rdi
- addq $24, %rsp
+ popq %rbp
+ popq %rsi
+ popq %rdi
movq 4864(%rax), %r11
jmp *%r11
#else
@@ -22950,13 +22949,13 @@ GL_PREFIX(_dispatch_stub_608):
movq 4864(%rax), %r11
jmp *%r11
1:
- subq $24, %rsp
- movq %rdi, (%rsp)
- movq %xmm0, 8(%rsp)
+ pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _glapi_get_dispatch
- movq 8(%rsp), %xmm0
- movq (%rsp), %rdi
- addq $24, %rsp
+ popq %rbp
+ popq %rsi
+ popq %rdi
movq 4864(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
@@ -22972,13 +22971,13 @@ GL_PREFIX(_dispatch_stub_609):
movq 4872(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
- pushq %rdi
- pushq %rsi
- pushq %rbp
+ subq $24, %rsp
+ movq %rdi, (%rsp)
+ movq %xmm0, 8(%rsp)
call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %rsi
- popq %rdi
+ movq 8(%rsp), %xmm0
+ movq (%rsp), %rdi
+ addq $24, %rsp
movq 4872(%rax), %r11
jmp *%r11
#else
@@ -22988,13 +22987,13 @@ GL_PREFIX(_dispatch_stub_609):
movq 4872(%rax), %r11
jmp *%r11
1:
- pushq %rdi
- pushq %rsi
- pushq %rbp
+ subq $24, %rsp
+ movq %rdi, (%rsp)
+ movq %xmm0, 8(%rsp)
call _glapi_get_dispatch
- popq %rbp
- popq %rsi
- popq %rdi
+ movq 8(%rsp), %xmm0
+ movq (%rsp), %rdi
+ addq $24, %rsp
movq 4872(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
@@ -23125,7 +23124,11 @@ GL_PREFIX(_dispatch_stub_613):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _x86_64_get_dispatch@PLT
+ popq %rbp
+ popq %rsi
popq %rdi
movq 4904(%rax), %r11
jmp *%r11
@@ -23137,7 +23140,11 @@ GL_PREFIX(_dispatch_stub_613):
jmp *%r11
1:
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _glapi_get_dispatch
+ popq %rbp
+ popq %rsi
popq %rdi
movq 4904(%rax), %r11
jmp *%r11
@@ -23145,12 +23152,42 @@ GL_PREFIX(_dispatch_stub_613):
.size GL_PREFIX(_dispatch_stub_613), .-GL_PREFIX(_dispatch_stub_613)
.p2align 4,,15
+ .globl GL_PREFIX(_dispatch_stub_614)
+ .type GL_PREFIX(_dispatch_stub_614), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_614))
+GL_PREFIX(_dispatch_stub_614):
+#if defined(GLX_USE_TLS)
+ call _x86_64_get_dispatch@PLT
+ movq 4912(%rax), %r11
+ jmp *%r11
+#elif defined(PTHREADS)
+ pushq %rdi
+ call _x86_64_get_dispatch@PLT
+ popq %rdi
+ movq 4912(%rax), %r11
+ jmp *%r11
+#else
+ movq _glapi_Dispatch(%rip), %rax
+ testq %rax, %rax
+ je 1f
+ movq 4912(%rax), %r11
+ jmp *%r11
+1:
+ pushq %rdi
+ call _glapi_get_dispatch
+ popq %rdi
+ movq 4912(%rax), %r11
+ jmp *%r11
+#endif /* defined(GLX_USE_TLS) */
+ .size GL_PREFIX(_dispatch_stub_614), .-GL_PREFIX(_dispatch_stub_614)
+
+ .p2align 4,,15
.globl GL_PREFIX(ColorPointerEXT)
.type GL_PREFIX(ColorPointerEXT), @function
GL_PREFIX(ColorPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4912(%rax), %r11
+ movq 4920(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23164,13 +23201,13 @@ GL_PREFIX(ColorPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4912(%rax), %r11
+ movq 4920(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4912(%rax), %r11
+ movq 4920(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23184,7 +23221,7 @@ GL_PREFIX(ColorPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4912(%rax), %r11
+ movq 4920(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ColorPointerEXT), .-GL_PREFIX(ColorPointerEXT)
@@ -23195,7 +23232,7 @@ GL_PREFIX(ColorPointerEXT):
GL_PREFIX(EdgeFlagPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4920(%rax), %r11
+ movq 4928(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23205,13 +23242,13 @@ GL_PREFIX(EdgeFlagPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4920(%rax), %r11
+ movq 4928(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4920(%rax), %r11
+ movq 4928(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23221,7 +23258,7 @@ GL_PREFIX(EdgeFlagPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4920(%rax), %r11
+ movq 4928(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EdgeFlagPointerEXT), .-GL_PREFIX(EdgeFlagPointerEXT)
@@ -23232,7 +23269,7 @@ GL_PREFIX(EdgeFlagPointerEXT):
GL_PREFIX(IndexPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4928(%rax), %r11
+ movq 4936(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23246,13 +23283,13 @@ GL_PREFIX(IndexPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4928(%rax), %r11
+ movq 4936(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4928(%rax), %r11
+ movq 4936(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23266,7 +23303,7 @@ GL_PREFIX(IndexPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4928(%rax), %r11
+ movq 4936(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IndexPointerEXT), .-GL_PREFIX(IndexPointerEXT)
@@ -23277,7 +23314,7 @@ GL_PREFIX(IndexPointerEXT):
GL_PREFIX(NormalPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4936(%rax), %r11
+ movq 4944(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23291,13 +23328,13 @@ GL_PREFIX(NormalPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4936(%rax), %r11
+ movq 4944(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4936(%rax), %r11
+ movq 4944(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23311,7 +23348,7 @@ GL_PREFIX(NormalPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4936(%rax), %r11
+ movq 4944(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(NormalPointerEXT), .-GL_PREFIX(NormalPointerEXT)
@@ -23322,7 +23359,7 @@ GL_PREFIX(NormalPointerEXT):
GL_PREFIX(TexCoordPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4944(%rax), %r11
+ movq 4952(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23336,13 +23373,13 @@ GL_PREFIX(TexCoordPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4944(%rax), %r11
+ movq 4952(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4944(%rax), %r11
+ movq 4952(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23356,7 +23393,7 @@ GL_PREFIX(TexCoordPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4944(%rax), %r11
+ movq 4952(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TexCoordPointerEXT), .-GL_PREFIX(TexCoordPointerEXT)
@@ -23367,7 +23404,7 @@ GL_PREFIX(TexCoordPointerEXT):
GL_PREFIX(VertexPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4952(%rax), %r11
+ movq 4960(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23381,13 +23418,13 @@ GL_PREFIX(VertexPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4952(%rax), %r11
+ movq 4960(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4952(%rax), %r11
+ movq 4960(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23401,7 +23438,7 @@ GL_PREFIX(VertexPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4952(%rax), %r11
+ movq 4960(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexPointerEXT), .-GL_PREFIX(VertexPointerEXT)
@@ -23412,7 +23449,7 @@ GL_PREFIX(VertexPointerEXT):
GL_PREFIX(PointParameterfEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4960(%rax), %r11
+ movq 4968(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -23422,13 +23459,13 @@ GL_PREFIX(PointParameterfEXT):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 4960(%rax), %r11
+ movq 4968(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4960(%rax), %r11
+ movq 4968(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -23438,7 +23475,7 @@ GL_PREFIX(PointParameterfEXT):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 4960(%rax), %r11
+ movq 4968(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PointParameterfEXT), .-GL_PREFIX(PointParameterfEXT)
@@ -23449,7 +23486,7 @@ GL_PREFIX(PointParameterfEXT):
GL_PREFIX(PointParameterfvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4968(%rax), %r11
+ movq 4976(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23459,13 +23496,13 @@ GL_PREFIX(PointParameterfvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 4968(%rax), %r11
+ movq 4976(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4968(%rax), %r11
+ movq 4976(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23475,7 +23512,7 @@ GL_PREFIX(PointParameterfvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 4968(%rax), %r11
+ movq 4976(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PointParameterfvEXT), .-GL_PREFIX(PointParameterfvEXT)
@@ -23486,7 +23523,7 @@ GL_PREFIX(PointParameterfvEXT):
GL_PREFIX(LockArraysEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4976(%rax), %r11
+ movq 4984(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23496,13 +23533,13 @@ GL_PREFIX(LockArraysEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 4976(%rax), %r11
+ movq 4984(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4976(%rax), %r11
+ movq 4984(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23512,7 +23549,7 @@ GL_PREFIX(LockArraysEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 4976(%rax), %r11
+ movq 4984(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(LockArraysEXT), .-GL_PREFIX(LockArraysEXT)
@@ -23523,25 +23560,25 @@ GL_PREFIX(LockArraysEXT):
GL_PREFIX(UnlockArraysEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4984(%rax), %r11
+ movq 4992(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 4984(%rax), %r11
+ movq 4992(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4984(%rax), %r11
+ movq 4992(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 4984(%rax), %r11
+ movq 4992(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(UnlockArraysEXT), .-GL_PREFIX(UnlockArraysEXT)
@@ -23552,7 +23589,7 @@ GL_PREFIX(UnlockArraysEXT):
GL_PREFIX(SecondaryColor3bEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 4992(%rax), %r11
+ movq 5000(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23562,13 +23599,13 @@ GL_PREFIX(SecondaryColor3bEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4992(%rax), %r11
+ movq 5000(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 4992(%rax), %r11
+ movq 5000(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23578,7 +23615,7 @@ GL_PREFIX(SecondaryColor3bEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 4992(%rax), %r11
+ movq 5000(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3bEXT), .-GL_PREFIX(SecondaryColor3bEXT)
@@ -23589,25 +23626,25 @@ GL_PREFIX(SecondaryColor3bEXT):
GL_PREFIX(SecondaryColor3bvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5000(%rax), %r11
+ movq 5008(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5000(%rax), %r11
+ movq 5008(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5000(%rax), %r11
+ movq 5008(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5000(%rax), %r11
+ movq 5008(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3bvEXT), .-GL_PREFIX(SecondaryColor3bvEXT)
@@ -23618,7 +23655,7 @@ GL_PREFIX(SecondaryColor3bvEXT):
GL_PREFIX(SecondaryColor3dEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5008(%rax), %r11
+ movq 5016(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -23630,13 +23667,13 @@ GL_PREFIX(SecondaryColor3dEXT):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5008(%rax), %r11
+ movq 5016(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5008(%rax), %r11
+ movq 5016(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -23648,7 +23685,7 @@ GL_PREFIX(SecondaryColor3dEXT):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5008(%rax), %r11
+ movq 5016(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3dEXT), .-GL_PREFIX(SecondaryColor3dEXT)
@@ -23659,25 +23696,25 @@ GL_PREFIX(SecondaryColor3dEXT):
GL_PREFIX(SecondaryColor3dvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5016(%rax), %r11
+ movq 5024(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5016(%rax), %r11
+ movq 5024(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5016(%rax), %r11
+ movq 5024(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5016(%rax), %r11
+ movq 5024(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3dvEXT), .-GL_PREFIX(SecondaryColor3dvEXT)
@@ -23688,7 +23725,7 @@ GL_PREFIX(SecondaryColor3dvEXT):
GL_PREFIX(SecondaryColor3fEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5024(%rax), %r11
+ movq 5032(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -23700,13 +23737,13 @@ GL_PREFIX(SecondaryColor3fEXT):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5024(%rax), %r11
+ movq 5032(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5024(%rax), %r11
+ movq 5032(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -23718,7 +23755,7 @@ GL_PREFIX(SecondaryColor3fEXT):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5024(%rax), %r11
+ movq 5032(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3fEXT), .-GL_PREFIX(SecondaryColor3fEXT)
@@ -23729,25 +23766,25 @@ GL_PREFIX(SecondaryColor3fEXT):
GL_PREFIX(SecondaryColor3fvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5032(%rax), %r11
+ movq 5040(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5032(%rax), %r11
+ movq 5040(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5032(%rax), %r11
+ movq 5040(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5032(%rax), %r11
+ movq 5040(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3fvEXT), .-GL_PREFIX(SecondaryColor3fvEXT)
@@ -23758,7 +23795,7 @@ GL_PREFIX(SecondaryColor3fvEXT):
GL_PREFIX(SecondaryColor3iEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5040(%rax), %r11
+ movq 5048(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23768,13 +23805,13 @@ GL_PREFIX(SecondaryColor3iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5040(%rax), %r11
+ movq 5048(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5040(%rax), %r11
+ movq 5048(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23784,7 +23821,7 @@ GL_PREFIX(SecondaryColor3iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5040(%rax), %r11
+ movq 5048(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3iEXT), .-GL_PREFIX(SecondaryColor3iEXT)
@@ -23795,25 +23832,25 @@ GL_PREFIX(SecondaryColor3iEXT):
GL_PREFIX(SecondaryColor3ivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5048(%rax), %r11
+ movq 5056(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5048(%rax), %r11
+ movq 5056(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5048(%rax), %r11
+ movq 5056(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5048(%rax), %r11
+ movq 5056(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3ivEXT), .-GL_PREFIX(SecondaryColor3ivEXT)
@@ -23824,7 +23861,7 @@ GL_PREFIX(SecondaryColor3ivEXT):
GL_PREFIX(SecondaryColor3sEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5056(%rax), %r11
+ movq 5064(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23834,13 +23871,13 @@ GL_PREFIX(SecondaryColor3sEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5056(%rax), %r11
+ movq 5064(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5056(%rax), %r11
+ movq 5064(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23850,7 +23887,7 @@ GL_PREFIX(SecondaryColor3sEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5056(%rax), %r11
+ movq 5064(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3sEXT), .-GL_PREFIX(SecondaryColor3sEXT)
@@ -23861,25 +23898,25 @@ GL_PREFIX(SecondaryColor3sEXT):
GL_PREFIX(SecondaryColor3svEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5064(%rax), %r11
+ movq 5072(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5064(%rax), %r11
+ movq 5072(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5064(%rax), %r11
+ movq 5072(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5064(%rax), %r11
+ movq 5072(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3svEXT), .-GL_PREFIX(SecondaryColor3svEXT)
@@ -23890,7 +23927,7 @@ GL_PREFIX(SecondaryColor3svEXT):
GL_PREFIX(SecondaryColor3ubEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5072(%rax), %r11
+ movq 5080(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23900,13 +23937,13 @@ GL_PREFIX(SecondaryColor3ubEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5072(%rax), %r11
+ movq 5080(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5072(%rax), %r11
+ movq 5080(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23916,7 +23953,7 @@ GL_PREFIX(SecondaryColor3ubEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5072(%rax), %r11
+ movq 5080(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3ubEXT), .-GL_PREFIX(SecondaryColor3ubEXT)
@@ -23927,25 +23964,25 @@ GL_PREFIX(SecondaryColor3ubEXT):
GL_PREFIX(SecondaryColor3ubvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5080(%rax), %r11
+ movq 5088(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5080(%rax), %r11
+ movq 5088(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5080(%rax), %r11
+ movq 5088(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5080(%rax), %r11
+ movq 5088(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3ubvEXT), .-GL_PREFIX(SecondaryColor3ubvEXT)
@@ -23956,7 +23993,7 @@ GL_PREFIX(SecondaryColor3ubvEXT):
GL_PREFIX(SecondaryColor3uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5088(%rax), %r11
+ movq 5096(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -23966,13 +24003,13 @@ GL_PREFIX(SecondaryColor3uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5088(%rax), %r11
+ movq 5096(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5088(%rax), %r11
+ movq 5096(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -23982,7 +24019,7 @@ GL_PREFIX(SecondaryColor3uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5088(%rax), %r11
+ movq 5096(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3uiEXT), .-GL_PREFIX(SecondaryColor3uiEXT)
@@ -23993,25 +24030,25 @@ GL_PREFIX(SecondaryColor3uiEXT):
GL_PREFIX(SecondaryColor3uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5096(%rax), %r11
+ movq 5104(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5096(%rax), %r11
+ movq 5104(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5096(%rax), %r11
+ movq 5104(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5096(%rax), %r11
+ movq 5104(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3uivEXT), .-GL_PREFIX(SecondaryColor3uivEXT)
@@ -24022,7 +24059,7 @@ GL_PREFIX(SecondaryColor3uivEXT):
GL_PREFIX(SecondaryColor3usEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5104(%rax), %r11
+ movq 5112(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24032,13 +24069,13 @@ GL_PREFIX(SecondaryColor3usEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5104(%rax), %r11
+ movq 5112(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5104(%rax), %r11
+ movq 5112(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24048,7 +24085,7 @@ GL_PREFIX(SecondaryColor3usEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5104(%rax), %r11
+ movq 5112(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3usEXT), .-GL_PREFIX(SecondaryColor3usEXT)
@@ -24059,25 +24096,25 @@ GL_PREFIX(SecondaryColor3usEXT):
GL_PREFIX(SecondaryColor3usvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5112(%rax), %r11
+ movq 5120(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5112(%rax), %r11
+ movq 5120(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5112(%rax), %r11
+ movq 5120(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5112(%rax), %r11
+ movq 5120(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColor3usvEXT), .-GL_PREFIX(SecondaryColor3usvEXT)
@@ -24088,7 +24125,7 @@ GL_PREFIX(SecondaryColor3usvEXT):
GL_PREFIX(SecondaryColorPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5120(%rax), %r11
+ movq 5128(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24102,13 +24139,13 @@ GL_PREFIX(SecondaryColorPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5120(%rax), %r11
+ movq 5128(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5120(%rax), %r11
+ movq 5128(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24122,7 +24159,7 @@ GL_PREFIX(SecondaryColorPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5120(%rax), %r11
+ movq 5128(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SecondaryColorPointerEXT), .-GL_PREFIX(SecondaryColorPointerEXT)
@@ -24133,7 +24170,7 @@ GL_PREFIX(SecondaryColorPointerEXT):
GL_PREFIX(MultiDrawArraysEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5128(%rax), %r11
+ movq 5136(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24147,13 +24184,13 @@ GL_PREFIX(MultiDrawArraysEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5128(%rax), %r11
+ movq 5136(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5128(%rax), %r11
+ movq 5136(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24167,7 +24204,7 @@ GL_PREFIX(MultiDrawArraysEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5128(%rax), %r11
+ movq 5136(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(MultiDrawArraysEXT), .-GL_PREFIX(MultiDrawArraysEXT)
@@ -24178,7 +24215,7 @@ GL_PREFIX(MultiDrawArraysEXT):
GL_PREFIX(MultiDrawElementsEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5136(%rax), %r11
+ movq 5144(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24192,13 +24229,13 @@ GL_PREFIX(MultiDrawElementsEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5136(%rax), %r11
+ movq 5144(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5136(%rax), %r11
+ movq 5144(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24212,7 +24249,7 @@ GL_PREFIX(MultiDrawElementsEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5136(%rax), %r11
+ movq 5144(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(MultiDrawElementsEXT), .-GL_PREFIX(MultiDrawElementsEXT)
@@ -24223,7 +24260,7 @@ GL_PREFIX(MultiDrawElementsEXT):
GL_PREFIX(FogCoordPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5144(%rax), %r11
+ movq 5152(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24233,13 +24270,13 @@ GL_PREFIX(FogCoordPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5144(%rax), %r11
+ movq 5152(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5144(%rax), %r11
+ movq 5152(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24249,7 +24286,7 @@ GL_PREFIX(FogCoordPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5144(%rax), %r11
+ movq 5152(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FogCoordPointerEXT), .-GL_PREFIX(FogCoordPointerEXT)
@@ -24260,7 +24297,7 @@ GL_PREFIX(FogCoordPointerEXT):
GL_PREFIX(FogCoorddEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5152(%rax), %r11
+ movq 5160(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $8, %rsp
@@ -24268,13 +24305,13 @@ GL_PREFIX(FogCoorddEXT):
call _x86_64_get_dispatch@PLT
movq (%rsp), %xmm0
addq $8, %rsp
- movq 5152(%rax), %r11
+ movq 5160(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5152(%rax), %r11
+ movq 5160(%rax), %r11
jmp *%r11
1:
subq $8, %rsp
@@ -24282,7 +24319,7 @@ GL_PREFIX(FogCoorddEXT):
call _glapi_get_dispatch
movq (%rsp), %xmm0
addq $8, %rsp
- movq 5152(%rax), %r11
+ movq 5160(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FogCoorddEXT), .-GL_PREFIX(FogCoorddEXT)
@@ -24293,25 +24330,25 @@ GL_PREFIX(FogCoorddEXT):
GL_PREFIX(FogCoorddvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5160(%rax), %r11
+ movq 5168(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5160(%rax), %r11
+ movq 5168(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5160(%rax), %r11
+ movq 5168(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5160(%rax), %r11
+ movq 5168(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FogCoorddvEXT), .-GL_PREFIX(FogCoorddvEXT)
@@ -24322,7 +24359,7 @@ GL_PREFIX(FogCoorddvEXT):
GL_PREFIX(FogCoordfEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5168(%rax), %r11
+ movq 5176(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $8, %rsp
@@ -24330,13 +24367,13 @@ GL_PREFIX(FogCoordfEXT):
call _x86_64_get_dispatch@PLT
movq (%rsp), %xmm0
addq $8, %rsp
- movq 5168(%rax), %r11
+ movq 5176(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5168(%rax), %r11
+ movq 5176(%rax), %r11
jmp *%r11
1:
subq $8, %rsp
@@ -24344,7 +24381,7 @@ GL_PREFIX(FogCoordfEXT):
call _glapi_get_dispatch
movq (%rsp), %xmm0
addq $8, %rsp
- movq 5168(%rax), %r11
+ movq 5176(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FogCoordfEXT), .-GL_PREFIX(FogCoordfEXT)
@@ -24355,58 +24392,58 @@ GL_PREFIX(FogCoordfEXT):
GL_PREFIX(FogCoordfvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5176(%rax), %r11
+ movq 5184(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5176(%rax), %r11
+ movq 5184(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5176(%rax), %r11
+ movq 5184(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5176(%rax), %r11
+ movq 5184(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FogCoordfvEXT), .-GL_PREFIX(FogCoordfvEXT)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_648)
- .type GL_PREFIX(_dispatch_stub_648), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_648))
-GL_PREFIX(_dispatch_stub_648):
+ .globl GL_PREFIX(_dispatch_stub_649)
+ .type GL_PREFIX(_dispatch_stub_649), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_649))
+GL_PREFIX(_dispatch_stub_649):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5184(%rax), %r11
+ movq 5192(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5184(%rax), %r11
+ movq 5192(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5184(%rax), %r11
+ movq 5192(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5184(%rax), %r11
+ movq 5192(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_648), .-GL_PREFIX(_dispatch_stub_648)
+ .size GL_PREFIX(_dispatch_stub_649), .-GL_PREFIX(_dispatch_stub_649)
.p2align 4,,15
.globl GL_PREFIX(BlendFuncSeparateEXT)
@@ -24414,7 +24451,7 @@ GL_PREFIX(_dispatch_stub_648):
GL_PREFIX(BlendFuncSeparateEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5192(%rax), %r11
+ movq 5200(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24428,13 +24465,13 @@ GL_PREFIX(BlendFuncSeparateEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5192(%rax), %r11
+ movq 5200(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5192(%rax), %r11
+ movq 5200(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24448,7 +24485,7 @@ GL_PREFIX(BlendFuncSeparateEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 5192(%rax), %r11
+ movq 5200(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BlendFuncSeparateEXT), .-GL_PREFIX(BlendFuncSeparateEXT)
@@ -24459,25 +24496,25 @@ GL_PREFIX(BlendFuncSeparateEXT):
GL_PREFIX(FlushVertexArrayRangeNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5200(%rax), %r11
+ movq 5208(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 5200(%rax), %r11
+ movq 5208(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5200(%rax), %r11
+ movq 5208(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 5200(%rax), %r11
+ movq 5208(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FlushVertexArrayRangeNV), .-GL_PREFIX(FlushVertexArrayRangeNV)
@@ -24488,7 +24525,7 @@ GL_PREFIX(FlushVertexArrayRangeNV):
GL_PREFIX(VertexArrayRangeNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5208(%rax), %r11
+ movq 5216(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24498,13 +24535,13 @@ GL_PREFIX(VertexArrayRangeNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5208(%rax), %r11
+ movq 5216(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5208(%rax), %r11
+ movq 5216(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24514,7 +24551,7 @@ GL_PREFIX(VertexArrayRangeNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5208(%rax), %r11
+ movq 5216(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexArrayRangeNV), .-GL_PREFIX(VertexArrayRangeNV)
@@ -24525,7 +24562,7 @@ GL_PREFIX(VertexArrayRangeNV):
GL_PREFIX(CombinerInputNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5216(%rax), %r11
+ movq 5224(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24543,13 +24580,13 @@ GL_PREFIX(CombinerInputNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5216(%rax), %r11
+ movq 5224(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5216(%rax), %r11
+ movq 5224(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24567,7 +24604,7 @@ GL_PREFIX(CombinerInputNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5216(%rax), %r11
+ movq 5224(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CombinerInputNV), .-GL_PREFIX(CombinerInputNV)
@@ -24578,7 +24615,7 @@ GL_PREFIX(CombinerInputNV):
GL_PREFIX(CombinerOutputNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5224(%rax), %r11
+ movq 5232(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24596,13 +24633,13 @@ GL_PREFIX(CombinerOutputNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5224(%rax), %r11
+ movq 5232(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5224(%rax), %r11
+ movq 5232(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24620,7 +24657,7 @@ GL_PREFIX(CombinerOutputNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5224(%rax), %r11
+ movq 5232(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CombinerOutputNV), .-GL_PREFIX(CombinerOutputNV)
@@ -24631,7 +24668,7 @@ GL_PREFIX(CombinerOutputNV):
GL_PREFIX(CombinerParameterfNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5232(%rax), %r11
+ movq 5240(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -24641,13 +24678,13 @@ GL_PREFIX(CombinerParameterfNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5232(%rax), %r11
+ movq 5240(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5232(%rax), %r11
+ movq 5240(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -24657,7 +24694,7 @@ GL_PREFIX(CombinerParameterfNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5232(%rax), %r11
+ movq 5240(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CombinerParameterfNV), .-GL_PREFIX(CombinerParameterfNV)
@@ -24668,7 +24705,7 @@ GL_PREFIX(CombinerParameterfNV):
GL_PREFIX(CombinerParameterfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5240(%rax), %r11
+ movq 5248(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24678,13 +24715,13 @@ GL_PREFIX(CombinerParameterfvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5240(%rax), %r11
+ movq 5248(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5240(%rax), %r11
+ movq 5248(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24694,7 +24731,7 @@ GL_PREFIX(CombinerParameterfvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5240(%rax), %r11
+ movq 5248(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CombinerParameterfvNV), .-GL_PREFIX(CombinerParameterfvNV)
@@ -24705,7 +24742,7 @@ GL_PREFIX(CombinerParameterfvNV):
GL_PREFIX(CombinerParameteriNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5248(%rax), %r11
+ movq 5256(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24715,13 +24752,13 @@ GL_PREFIX(CombinerParameteriNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5248(%rax), %r11
+ movq 5256(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5248(%rax), %r11
+ movq 5256(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24731,7 +24768,7 @@ GL_PREFIX(CombinerParameteriNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5248(%rax), %r11
+ movq 5256(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CombinerParameteriNV), .-GL_PREFIX(CombinerParameteriNV)
@@ -24742,7 +24779,7 @@ GL_PREFIX(CombinerParameteriNV):
GL_PREFIX(CombinerParameterivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5256(%rax), %r11
+ movq 5264(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24752,13 +24789,13 @@ GL_PREFIX(CombinerParameterivNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5256(%rax), %r11
+ movq 5264(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5256(%rax), %r11
+ movq 5264(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24768,7 +24805,7 @@ GL_PREFIX(CombinerParameterivNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5256(%rax), %r11
+ movq 5264(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CombinerParameterivNV), .-GL_PREFIX(CombinerParameterivNV)
@@ -24779,7 +24816,7 @@ GL_PREFIX(CombinerParameterivNV):
GL_PREFIX(FinalCombinerInputNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5264(%rax), %r11
+ movq 5272(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24793,13 +24830,13 @@ GL_PREFIX(FinalCombinerInputNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5264(%rax), %r11
+ movq 5272(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5264(%rax), %r11
+ movq 5272(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24813,7 +24850,7 @@ GL_PREFIX(FinalCombinerInputNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5264(%rax), %r11
+ movq 5272(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FinalCombinerInputNV), .-GL_PREFIX(FinalCombinerInputNV)
@@ -24824,7 +24861,7 @@ GL_PREFIX(FinalCombinerInputNV):
GL_PREFIX(GetCombinerInputParameterfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5272(%rax), %r11
+ movq 5280(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24838,13 +24875,13 @@ GL_PREFIX(GetCombinerInputParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5272(%rax), %r11
+ movq 5280(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5272(%rax), %r11
+ movq 5280(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24858,7 +24895,7 @@ GL_PREFIX(GetCombinerInputParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5272(%rax), %r11
+ movq 5280(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetCombinerInputParameterfvNV), .-GL_PREFIX(GetCombinerInputParameterfvNV)
@@ -24869,7 +24906,7 @@ GL_PREFIX(GetCombinerInputParameterfvNV):
GL_PREFIX(GetCombinerInputParameterivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5280(%rax), %r11
+ movq 5288(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24883,13 +24920,13 @@ GL_PREFIX(GetCombinerInputParameterivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5280(%rax), %r11
+ movq 5288(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5280(%rax), %r11
+ movq 5288(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24903,7 +24940,7 @@ GL_PREFIX(GetCombinerInputParameterivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5280(%rax), %r11
+ movq 5288(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetCombinerInputParameterivNV), .-GL_PREFIX(GetCombinerInputParameterivNV)
@@ -24914,7 +24951,7 @@ GL_PREFIX(GetCombinerInputParameterivNV):
GL_PREFIX(GetCombinerOutputParameterfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5288(%rax), %r11
+ movq 5296(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24928,13 +24965,13 @@ GL_PREFIX(GetCombinerOutputParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5288(%rax), %r11
+ movq 5296(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5288(%rax), %r11
+ movq 5296(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24948,7 +24985,7 @@ GL_PREFIX(GetCombinerOutputParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5288(%rax), %r11
+ movq 5296(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetCombinerOutputParameterfvNV), .-GL_PREFIX(GetCombinerOutputParameterfvNV)
@@ -24959,7 +24996,7 @@ GL_PREFIX(GetCombinerOutputParameterfvNV):
GL_PREFIX(GetCombinerOutputParameterivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5296(%rax), %r11
+ movq 5304(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -24973,13 +25010,13 @@ GL_PREFIX(GetCombinerOutputParameterivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5296(%rax), %r11
+ movq 5304(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5296(%rax), %r11
+ movq 5304(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -24993,7 +25030,7 @@ GL_PREFIX(GetCombinerOutputParameterivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5296(%rax), %r11
+ movq 5304(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetCombinerOutputParameterivNV), .-GL_PREFIX(GetCombinerOutputParameterivNV)
@@ -25004,7 +25041,7 @@ GL_PREFIX(GetCombinerOutputParameterivNV):
GL_PREFIX(GetFinalCombinerInputParameterfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5304(%rax), %r11
+ movq 5312(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25014,13 +25051,13 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5304(%rax), %r11
+ movq 5312(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5304(%rax), %r11
+ movq 5312(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25030,7 +25067,7 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5304(%rax), %r11
+ movq 5312(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetFinalCombinerInputParameterfvNV), .-GL_PREFIX(GetFinalCombinerInputParameterfvNV)
@@ -25041,7 +25078,7 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV):
GL_PREFIX(GetFinalCombinerInputParameterivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5312(%rax), %r11
+ movq 5320(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25051,13 +25088,13 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5312(%rax), %r11
+ movq 5320(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5312(%rax), %r11
+ movq 5320(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25067,7 +25104,7 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5312(%rax), %r11
+ movq 5320(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetFinalCombinerInputParameterivNV), .-GL_PREFIX(GetFinalCombinerInputParameterivNV)
@@ -25078,25 +25115,25 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV):
GL_PREFIX(ResizeBuffersMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5320(%rax), %r11
+ movq 5328(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 5320(%rax), %r11
+ movq 5328(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5320(%rax), %r11
+ movq 5328(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 5320(%rax), %r11
+ movq 5328(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ResizeBuffersMESA), .-GL_PREFIX(ResizeBuffersMESA)
@@ -25107,7 +25144,7 @@ GL_PREFIX(ResizeBuffersMESA):
GL_PREFIX(WindowPos2dMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5328(%rax), %r11
+ movq 5336(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -25117,13 +25154,13 @@ GL_PREFIX(WindowPos2dMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5328(%rax), %r11
+ movq 5336(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5328(%rax), %r11
+ movq 5336(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -25133,7 +25170,7 @@ GL_PREFIX(WindowPos2dMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5328(%rax), %r11
+ movq 5336(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2dMESA), .-GL_PREFIX(WindowPos2dMESA)
@@ -25144,25 +25181,25 @@ GL_PREFIX(WindowPos2dMESA):
GL_PREFIX(WindowPos2dvMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5336(%rax), %r11
+ movq 5344(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5336(%rax), %r11
+ movq 5344(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5336(%rax), %r11
+ movq 5344(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5336(%rax), %r11
+ movq 5344(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2dvMESA), .-GL_PREFIX(WindowPos2dvMESA)
@@ -25173,7 +25210,7 @@ GL_PREFIX(WindowPos2dvMESA):
GL_PREFIX(WindowPos2fMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5344(%rax), %r11
+ movq 5352(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -25183,13 +25220,13 @@ GL_PREFIX(WindowPos2fMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5344(%rax), %r11
+ movq 5352(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5344(%rax), %r11
+ movq 5352(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -25199,7 +25236,7 @@ GL_PREFIX(WindowPos2fMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5344(%rax), %r11
+ movq 5352(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2fMESA), .-GL_PREFIX(WindowPos2fMESA)
@@ -25210,25 +25247,25 @@ GL_PREFIX(WindowPos2fMESA):
GL_PREFIX(WindowPos2fvMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5352(%rax), %r11
+ movq 5360(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5352(%rax), %r11
+ movq 5360(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5352(%rax), %r11
+ movq 5360(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5352(%rax), %r11
+ movq 5360(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2fvMESA), .-GL_PREFIX(WindowPos2fvMESA)
@@ -25239,7 +25276,7 @@ GL_PREFIX(WindowPos2fvMESA):
GL_PREFIX(WindowPos2iMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5360(%rax), %r11
+ movq 5368(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25249,13 +25286,13 @@ GL_PREFIX(WindowPos2iMESA):
popq %rbp
popq %rsi
popq %rdi
- movq 5360(%rax), %r11
+ movq 5368(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5360(%rax), %r11
+ movq 5368(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25265,7 +25302,7 @@ GL_PREFIX(WindowPos2iMESA):
popq %rbp
popq %rsi
popq %rdi
- movq 5360(%rax), %r11
+ movq 5368(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2iMESA), .-GL_PREFIX(WindowPos2iMESA)
@@ -25276,25 +25313,25 @@ GL_PREFIX(WindowPos2iMESA):
GL_PREFIX(WindowPos2ivMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5368(%rax), %r11
+ movq 5376(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5368(%rax), %r11
+ movq 5376(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5368(%rax), %r11
+ movq 5376(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5368(%rax), %r11
+ movq 5376(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2ivMESA), .-GL_PREFIX(WindowPos2ivMESA)
@@ -25305,7 +25342,7 @@ GL_PREFIX(WindowPos2ivMESA):
GL_PREFIX(WindowPos2sMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5376(%rax), %r11
+ movq 5384(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25315,13 +25352,13 @@ GL_PREFIX(WindowPos2sMESA):
popq %rbp
popq %rsi
popq %rdi
- movq 5376(%rax), %r11
+ movq 5384(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5376(%rax), %r11
+ movq 5384(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25331,7 +25368,7 @@ GL_PREFIX(WindowPos2sMESA):
popq %rbp
popq %rsi
popq %rdi
- movq 5376(%rax), %r11
+ movq 5384(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2sMESA), .-GL_PREFIX(WindowPos2sMESA)
@@ -25342,25 +25379,25 @@ GL_PREFIX(WindowPos2sMESA):
GL_PREFIX(WindowPos2svMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5384(%rax), %r11
+ movq 5392(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5384(%rax), %r11
+ movq 5392(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5384(%rax), %r11
+ movq 5392(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5384(%rax), %r11
+ movq 5392(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos2svMESA), .-GL_PREFIX(WindowPos2svMESA)
@@ -25371,7 +25408,7 @@ GL_PREFIX(WindowPos2svMESA):
GL_PREFIX(WindowPos3dMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5392(%rax), %r11
+ movq 5400(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -25383,13 +25420,13 @@ GL_PREFIX(WindowPos3dMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5392(%rax), %r11
+ movq 5400(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5392(%rax), %r11
+ movq 5400(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -25401,7 +25438,7 @@ GL_PREFIX(WindowPos3dMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5392(%rax), %r11
+ movq 5400(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3dMESA), .-GL_PREFIX(WindowPos3dMESA)
@@ -25412,25 +25449,25 @@ GL_PREFIX(WindowPos3dMESA):
GL_PREFIX(WindowPos3dvMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5400(%rax), %r11
+ movq 5408(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5400(%rax), %r11
+ movq 5408(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5400(%rax), %r11
+ movq 5408(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5400(%rax), %r11
+ movq 5408(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3dvMESA), .-GL_PREFIX(WindowPos3dvMESA)
@@ -25441,7 +25478,7 @@ GL_PREFIX(WindowPos3dvMESA):
GL_PREFIX(WindowPos3fMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5408(%rax), %r11
+ movq 5416(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -25453,13 +25490,13 @@ GL_PREFIX(WindowPos3fMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5408(%rax), %r11
+ movq 5416(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5408(%rax), %r11
+ movq 5416(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -25471,7 +25508,7 @@ GL_PREFIX(WindowPos3fMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $24, %rsp
- movq 5408(%rax), %r11
+ movq 5416(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3fMESA), .-GL_PREFIX(WindowPos3fMESA)
@@ -25482,25 +25519,25 @@ GL_PREFIX(WindowPos3fMESA):
GL_PREFIX(WindowPos3fvMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5416(%rax), %r11
+ movq 5424(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5416(%rax), %r11
+ movq 5424(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5416(%rax), %r11
+ movq 5424(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5416(%rax), %r11
+ movq 5424(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3fvMESA), .-GL_PREFIX(WindowPos3fvMESA)
@@ -25511,7 +25548,7 @@ GL_PREFIX(WindowPos3fvMESA):
GL_PREFIX(WindowPos3iMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5424(%rax), %r11
+ movq 5432(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25521,13 +25558,13 @@ GL_PREFIX(WindowPos3iMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5424(%rax), %r11
+ movq 5432(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5424(%rax), %r11
+ movq 5432(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25537,7 +25574,7 @@ GL_PREFIX(WindowPos3iMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5424(%rax), %r11
+ movq 5432(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3iMESA), .-GL_PREFIX(WindowPos3iMESA)
@@ -25548,25 +25585,25 @@ GL_PREFIX(WindowPos3iMESA):
GL_PREFIX(WindowPos3ivMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5432(%rax), %r11
+ movq 5440(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5432(%rax), %r11
+ movq 5440(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5432(%rax), %r11
+ movq 5440(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5432(%rax), %r11
+ movq 5440(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3ivMESA), .-GL_PREFIX(WindowPos3ivMESA)
@@ -25577,7 +25614,7 @@ GL_PREFIX(WindowPos3ivMESA):
GL_PREFIX(WindowPos3sMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5440(%rax), %r11
+ movq 5448(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25587,13 +25624,13 @@ GL_PREFIX(WindowPos3sMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5440(%rax), %r11
+ movq 5448(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5440(%rax), %r11
+ movq 5448(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25603,7 +25640,7 @@ GL_PREFIX(WindowPos3sMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5440(%rax), %r11
+ movq 5448(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3sMESA), .-GL_PREFIX(WindowPos3sMESA)
@@ -25614,25 +25651,25 @@ GL_PREFIX(WindowPos3sMESA):
GL_PREFIX(WindowPos3svMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5448(%rax), %r11
+ movq 5456(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5448(%rax), %r11
+ movq 5456(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5448(%rax), %r11
+ movq 5456(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5448(%rax), %r11
+ movq 5456(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos3svMESA), .-GL_PREFIX(WindowPos3svMESA)
@@ -25643,7 +25680,7 @@ GL_PREFIX(WindowPos3svMESA):
GL_PREFIX(WindowPos4dMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5456(%rax), %r11
+ movq 5464(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $40, %rsp
@@ -25657,13 +25694,13 @@ GL_PREFIX(WindowPos4dMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $40, %rsp
- movq 5456(%rax), %r11
+ movq 5464(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5456(%rax), %r11
+ movq 5464(%rax), %r11
jmp *%r11
1:
subq $40, %rsp
@@ -25677,7 +25714,7 @@ GL_PREFIX(WindowPos4dMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $40, %rsp
- movq 5456(%rax), %r11
+ movq 5464(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4dMESA), .-GL_PREFIX(WindowPos4dMESA)
@@ -25688,25 +25725,25 @@ GL_PREFIX(WindowPos4dMESA):
GL_PREFIX(WindowPos4dvMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5464(%rax), %r11
+ movq 5472(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5464(%rax), %r11
+ movq 5472(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5464(%rax), %r11
+ movq 5472(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5464(%rax), %r11
+ movq 5472(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4dvMESA), .-GL_PREFIX(WindowPos4dvMESA)
@@ -25717,7 +25754,7 @@ GL_PREFIX(WindowPos4dvMESA):
GL_PREFIX(WindowPos4fMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5472(%rax), %r11
+ movq 5480(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $40, %rsp
@@ -25731,13 +25768,13 @@ GL_PREFIX(WindowPos4fMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $40, %rsp
- movq 5472(%rax), %r11
+ movq 5480(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5472(%rax), %r11
+ movq 5480(%rax), %r11
jmp *%r11
1:
subq $40, %rsp
@@ -25751,7 +25788,7 @@ GL_PREFIX(WindowPos4fMESA):
movq 8(%rsp), %xmm1
movq (%rsp), %xmm0
addq $40, %rsp
- movq 5472(%rax), %r11
+ movq 5480(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4fMESA), .-GL_PREFIX(WindowPos4fMESA)
@@ -25762,25 +25799,25 @@ GL_PREFIX(WindowPos4fMESA):
GL_PREFIX(WindowPos4fvMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5480(%rax), %r11
+ movq 5488(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5480(%rax), %r11
+ movq 5488(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5480(%rax), %r11
+ movq 5488(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5480(%rax), %r11
+ movq 5488(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4fvMESA), .-GL_PREFIX(WindowPos4fvMESA)
@@ -25791,7 +25828,7 @@ GL_PREFIX(WindowPos4fvMESA):
GL_PREFIX(WindowPos4iMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5488(%rax), %r11
+ movq 5496(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25805,13 +25842,13 @@ GL_PREFIX(WindowPos4iMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5488(%rax), %r11
+ movq 5496(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5488(%rax), %r11
+ movq 5496(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25825,7 +25862,7 @@ GL_PREFIX(WindowPos4iMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5488(%rax), %r11
+ movq 5496(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4iMESA), .-GL_PREFIX(WindowPos4iMESA)
@@ -25836,25 +25873,25 @@ GL_PREFIX(WindowPos4iMESA):
GL_PREFIX(WindowPos4ivMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5496(%rax), %r11
+ movq 5504(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5496(%rax), %r11
+ movq 5504(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5496(%rax), %r11
+ movq 5504(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5496(%rax), %r11
+ movq 5504(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4ivMESA), .-GL_PREFIX(WindowPos4ivMESA)
@@ -25865,7 +25902,7 @@ GL_PREFIX(WindowPos4ivMESA):
GL_PREFIX(WindowPos4sMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5504(%rax), %r11
+ movq 5512(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -25879,13 +25916,13 @@ GL_PREFIX(WindowPos4sMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5504(%rax), %r11
+ movq 5512(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5504(%rax), %r11
+ movq 5512(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -25899,7 +25936,7 @@ GL_PREFIX(WindowPos4sMESA):
popq %rdx
popq %rsi
popq %rdi
- movq 5504(%rax), %r11
+ movq 5512(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(WindowPos4sMESA), .-GL_PREFIX(WindowPos4sMESA)
@@ -25910,49 +25947,11 @@ GL_PREFIX(WindowPos4sMESA):
GL_PREFIX(WindowPos4svMESA):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5512(%rax), %r11
- jmp *%r11
-#elif defined(PTHREADS)
- pushq %rdi
- call _x86_64_get_dispatch@PLT
- popq %rdi
- movq 5512(%rax), %r11
- jmp *%r11
-#else
- movq _glapi_Dispatch(%rip), %rax
- testq %rax, %rax
- je 1f
- movq 5512(%rax), %r11
- jmp *%r11
-1:
- pushq %rdi
- call _glapi_get_dispatch
- popq %rdi
- movq 5512(%rax), %r11
- jmp *%r11
-#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(WindowPos4svMESA), .-GL_PREFIX(WindowPos4svMESA)
-
- .p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_690)
- .type GL_PREFIX(_dispatch_stub_690), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_690))
-GL_PREFIX(_dispatch_stub_690):
-#if defined(GLX_USE_TLS)
- call _x86_64_get_dispatch@PLT
movq 5520(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
- pushq %rsi
- pushq %rdx
- pushq %rcx
- pushq %r8
call _x86_64_get_dispatch@PLT
- popq %r8
- popq %rcx
- popq %rdx
- popq %rsi
popq %rdi
movq 5520(%rax), %r11
jmp *%r11
@@ -25964,20 +25963,12 @@ GL_PREFIX(_dispatch_stub_690):
jmp *%r11
1:
pushq %rdi
- pushq %rsi
- pushq %rdx
- pushq %rcx
- pushq %r8
call _glapi_get_dispatch
- popq %r8
- popq %rcx
- popq %rdx
- popq %rsi
popq %rdi
movq 5520(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_690), .-GL_PREFIX(_dispatch_stub_690)
+ .size GL_PREFIX(WindowPos4svMESA), .-GL_PREFIX(WindowPos4svMESA)
.p2align 4,,15
.globl GL_PREFIX(_dispatch_stub_691)
@@ -25994,11 +25985,7 @@ GL_PREFIX(_dispatch_stub_691):
pushq %rdx
pushq %rcx
pushq %r8
- pushq %r9
- pushq %rbp
call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %r9
popq %r8
popq %rcx
popq %rdx
@@ -26018,11 +26005,7 @@ GL_PREFIX(_dispatch_stub_691):
pushq %rdx
pushq %rcx
pushq %r8
- pushq %r9
- pushq %rbp
call _glapi_get_dispatch
- popq %rbp
- popq %r9
popq %r8
popq %rcx
popq %rdx
@@ -26045,9 +26028,17 @@ GL_PREFIX(_dispatch_stub_692):
#elif defined(PTHREADS)
pushq %rdi
pushq %rsi
+ pushq %rdx
+ pushq %rcx
+ pushq %r8
+ pushq %r9
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
+ popq %r9
+ popq %r8
+ popq %rcx
+ popq %rdx
popq %rsi
popq %rdi
movq 5536(%rax), %r11
@@ -26061,9 +26052,17 @@ GL_PREFIX(_dispatch_stub_692):
1:
pushq %rdi
pushq %rsi
+ pushq %rdx
+ pushq %rcx
+ pushq %r8
+ pushq %r9
pushq %rbp
call _glapi_get_dispatch
popq %rbp
+ popq %r9
+ popq %r8
+ popq %rcx
+ popq %rdx
popq %rsi
popq %rdi
movq 5536(%rax), %r11
@@ -26082,7 +26081,11 @@ GL_PREFIX(_dispatch_stub_693):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _x86_64_get_dispatch@PLT
+ popq %rbp
+ popq %rsi
popq %rdi
movq 5544(%rax), %r11
jmp *%r11
@@ -26094,7 +26097,11 @@ GL_PREFIX(_dispatch_stub_693):
jmp *%r11
1:
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _glapi_get_dispatch
+ popq %rbp
+ popq %rsi
popq %rdi
movq 5544(%rax), %r11
jmp *%r11
@@ -26112,11 +26119,7 @@ GL_PREFIX(_dispatch_stub_694):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
- pushq %rsi
- pushq %rbp
call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %rsi
popq %rdi
movq 5552(%rax), %r11
jmp *%r11
@@ -26128,11 +26131,7 @@ GL_PREFIX(_dispatch_stub_694):
jmp *%r11
1:
pushq %rdi
- pushq %rsi
- pushq %rbp
call _glapi_get_dispatch
- popq %rbp
- popq %rsi
popq %rdi
movq 5552(%rax), %r11
jmp *%r11
@@ -26151,9 +26150,9 @@ GL_PREFIX(_dispatch_stub_695):
#elif defined(PTHREADS)
pushq %rdi
pushq %rsi
- pushq %rdx
+ pushq %rbp
call _x86_64_get_dispatch@PLT
- popq %rdx
+ popq %rbp
popq %rsi
popq %rdi
movq 5560(%rax), %r11
@@ -26167,9 +26166,9 @@ GL_PREFIX(_dispatch_stub_695):
1:
pushq %rdi
pushq %rsi
- pushq %rdx
+ pushq %rbp
call _glapi_get_dispatch
- popq %rdx
+ popq %rbp
popq %rsi
popq %rdi
movq 5560(%rax), %r11
@@ -26188,7 +26187,11 @@ GL_PREFIX(_dispatch_stub_696):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
+ pushq %rsi
+ pushq %rdx
call _x86_64_get_dispatch@PLT
+ popq %rdx
+ popq %rsi
popq %rdi
movq 5568(%rax), %r11
jmp *%r11
@@ -26200,7 +26203,11 @@ GL_PREFIX(_dispatch_stub_696):
jmp *%r11
1:
pushq %rdi
+ pushq %rsi
+ pushq %rdx
call _glapi_get_dispatch
+ popq %rdx
+ popq %rsi
popq %rdi
movq 5568(%rax), %r11
jmp *%r11
@@ -26218,11 +26225,7 @@ GL_PREFIX(_dispatch_stub_697):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
- pushq %rsi
- pushq %rbp
call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %rsi
popq %rdi
movq 5576(%rax), %r11
jmp *%r11
@@ -26234,11 +26237,7 @@ GL_PREFIX(_dispatch_stub_697):
jmp *%r11
1:
pushq %rdi
- pushq %rsi
- pushq %rbp
call _glapi_get_dispatch
- popq %rbp
- popq %rsi
popq %rdi
movq 5576(%rax), %r11
jmp *%r11
@@ -26256,7 +26255,11 @@ GL_PREFIX(_dispatch_stub_698):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _x86_64_get_dispatch@PLT
+ popq %rbp
+ popq %rsi
popq %rdi
movq 5584(%rax), %r11
jmp *%r11
@@ -26268,7 +26271,11 @@ GL_PREFIX(_dispatch_stub_698):
jmp *%r11
1:
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _glapi_get_dispatch
+ popq %rbp
+ popq %rsi
popq %rdi
movq 5584(%rax), %r11
jmp *%r11
@@ -26276,12 +26283,42 @@ GL_PREFIX(_dispatch_stub_698):
.size GL_PREFIX(_dispatch_stub_698), .-GL_PREFIX(_dispatch_stub_698)
.p2align 4,,15
+ .globl GL_PREFIX(_dispatch_stub_699)
+ .type GL_PREFIX(_dispatch_stub_699), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_699))
+GL_PREFIX(_dispatch_stub_699):
+#if defined(GLX_USE_TLS)
+ call _x86_64_get_dispatch@PLT
+ movq 5592(%rax), %r11
+ jmp *%r11
+#elif defined(PTHREADS)
+ pushq %rdi
+ call _x86_64_get_dispatch@PLT
+ popq %rdi
+ movq 5592(%rax), %r11
+ jmp *%r11
+#else
+ movq _glapi_Dispatch(%rip), %rax
+ testq %rax, %rax
+ je 1f
+ movq 5592(%rax), %r11
+ jmp *%r11
+1:
+ pushq %rdi
+ call _glapi_get_dispatch
+ popq %rdi
+ movq 5592(%rax), %r11
+ jmp *%r11
+#endif /* defined(GLX_USE_TLS) */
+ .size GL_PREFIX(_dispatch_stub_699), .-GL_PREFIX(_dispatch_stub_699)
+
+ .p2align 4,,15
.globl GL_PREFIX(AreProgramsResidentNV)
.type GL_PREFIX(AreProgramsResidentNV), @function
GL_PREFIX(AreProgramsResidentNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5592(%rax), %r11
+ movq 5600(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26291,13 +26328,13 @@ GL_PREFIX(AreProgramsResidentNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5592(%rax), %r11
+ movq 5600(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5592(%rax), %r11
+ movq 5600(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26307,7 +26344,7 @@ GL_PREFIX(AreProgramsResidentNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5592(%rax), %r11
+ movq 5600(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(AreProgramsResidentNV), .-GL_PREFIX(AreProgramsResidentNV)
@@ -26318,7 +26355,7 @@ GL_PREFIX(AreProgramsResidentNV):
GL_PREFIX(BindProgramNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5600(%rax), %r11
+ movq 5608(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26328,13 +26365,13 @@ GL_PREFIX(BindProgramNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5600(%rax), %r11
+ movq 5608(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5600(%rax), %r11
+ movq 5608(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26344,7 +26381,7 @@ GL_PREFIX(BindProgramNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5600(%rax), %r11
+ movq 5608(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindProgramNV), .-GL_PREFIX(BindProgramNV)
@@ -26355,7 +26392,7 @@ GL_PREFIX(BindProgramNV):
GL_PREFIX(DeleteProgramsNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5608(%rax), %r11
+ movq 5616(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26365,13 +26402,13 @@ GL_PREFIX(DeleteProgramsNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5608(%rax), %r11
+ movq 5616(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5608(%rax), %r11
+ movq 5616(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26381,7 +26418,7 @@ GL_PREFIX(DeleteProgramsNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5608(%rax), %r11
+ movq 5616(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DeleteProgramsNV), .-GL_PREFIX(DeleteProgramsNV)
@@ -26392,7 +26429,7 @@ GL_PREFIX(DeleteProgramsNV):
GL_PREFIX(ExecuteProgramNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5616(%rax), %r11
+ movq 5624(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26402,13 +26439,13 @@ GL_PREFIX(ExecuteProgramNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5616(%rax), %r11
+ movq 5624(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5616(%rax), %r11
+ movq 5624(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26418,7 +26455,7 @@ GL_PREFIX(ExecuteProgramNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5616(%rax), %r11
+ movq 5624(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ExecuteProgramNV), .-GL_PREFIX(ExecuteProgramNV)
@@ -26429,7 +26466,7 @@ GL_PREFIX(ExecuteProgramNV):
GL_PREFIX(GenProgramsNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5624(%rax), %r11
+ movq 5632(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26439,13 +26476,13 @@ GL_PREFIX(GenProgramsNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5624(%rax), %r11
+ movq 5632(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5624(%rax), %r11
+ movq 5632(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26455,7 +26492,7 @@ GL_PREFIX(GenProgramsNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5624(%rax), %r11
+ movq 5632(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenProgramsNV), .-GL_PREFIX(GenProgramsNV)
@@ -26466,7 +26503,7 @@ GL_PREFIX(GenProgramsNV):
GL_PREFIX(GetProgramParameterdvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5632(%rax), %r11
+ movq 5640(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26480,13 +26517,13 @@ GL_PREFIX(GetProgramParameterdvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5632(%rax), %r11
+ movq 5640(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5632(%rax), %r11
+ movq 5640(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26500,7 +26537,7 @@ GL_PREFIX(GetProgramParameterdvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5632(%rax), %r11
+ movq 5640(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetProgramParameterdvNV), .-GL_PREFIX(GetProgramParameterdvNV)
@@ -26511,7 +26548,7 @@ GL_PREFIX(GetProgramParameterdvNV):
GL_PREFIX(GetProgramParameterfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5640(%rax), %r11
+ movq 5648(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26525,13 +26562,13 @@ GL_PREFIX(GetProgramParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5640(%rax), %r11
+ movq 5648(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5640(%rax), %r11
+ movq 5648(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26545,7 +26582,7 @@ GL_PREFIX(GetProgramParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5640(%rax), %r11
+ movq 5648(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetProgramParameterfvNV), .-GL_PREFIX(GetProgramParameterfvNV)
@@ -26556,7 +26593,7 @@ GL_PREFIX(GetProgramParameterfvNV):
GL_PREFIX(GetProgramStringNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5648(%rax), %r11
+ movq 5656(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26566,13 +26603,13 @@ GL_PREFIX(GetProgramStringNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5648(%rax), %r11
+ movq 5656(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5648(%rax), %r11
+ movq 5656(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26582,7 +26619,7 @@ GL_PREFIX(GetProgramStringNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5648(%rax), %r11
+ movq 5656(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetProgramStringNV), .-GL_PREFIX(GetProgramStringNV)
@@ -26593,7 +26630,7 @@ GL_PREFIX(GetProgramStringNV):
GL_PREFIX(GetProgramivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5656(%rax), %r11
+ movq 5664(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26603,13 +26640,13 @@ GL_PREFIX(GetProgramivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5656(%rax), %r11
+ movq 5664(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5656(%rax), %r11
+ movq 5664(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26619,7 +26656,7 @@ GL_PREFIX(GetProgramivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5656(%rax), %r11
+ movq 5664(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetProgramivNV), .-GL_PREFIX(GetProgramivNV)
@@ -26630,7 +26667,7 @@ GL_PREFIX(GetProgramivNV):
GL_PREFIX(GetTrackMatrixivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5664(%rax), %r11
+ movq 5672(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26644,13 +26681,13 @@ GL_PREFIX(GetTrackMatrixivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5664(%rax), %r11
+ movq 5672(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5664(%rax), %r11
+ movq 5672(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26664,7 +26701,7 @@ GL_PREFIX(GetTrackMatrixivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5664(%rax), %r11
+ movq 5672(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetTrackMatrixivNV), .-GL_PREFIX(GetTrackMatrixivNV)
@@ -26675,7 +26712,7 @@ GL_PREFIX(GetTrackMatrixivNV):
GL_PREFIX(GetVertexAttribPointervNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5672(%rax), %r11
+ movq 5680(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26685,13 +26722,13 @@ GL_PREFIX(GetVertexAttribPointervNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5672(%rax), %r11
+ movq 5680(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5672(%rax), %r11
+ movq 5680(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26701,7 +26738,7 @@ GL_PREFIX(GetVertexAttribPointervNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5672(%rax), %r11
+ movq 5680(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetVertexAttribPointervNV), .-GL_PREFIX(GetVertexAttribPointervNV)
@@ -26712,7 +26749,7 @@ GL_PREFIX(GetVertexAttribPointervNV):
GL_PREFIX(GetVertexAttribdvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5680(%rax), %r11
+ movq 5688(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26722,13 +26759,13 @@ GL_PREFIX(GetVertexAttribdvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5680(%rax), %r11
+ movq 5688(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5680(%rax), %r11
+ movq 5688(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26738,7 +26775,7 @@ GL_PREFIX(GetVertexAttribdvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5680(%rax), %r11
+ movq 5688(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetVertexAttribdvNV), .-GL_PREFIX(GetVertexAttribdvNV)
@@ -26749,7 +26786,7 @@ GL_PREFIX(GetVertexAttribdvNV):
GL_PREFIX(GetVertexAttribfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5688(%rax), %r11
+ movq 5696(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26759,13 +26796,13 @@ GL_PREFIX(GetVertexAttribfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5688(%rax), %r11
+ movq 5696(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5688(%rax), %r11
+ movq 5696(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26775,7 +26812,7 @@ GL_PREFIX(GetVertexAttribfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5688(%rax), %r11
+ movq 5696(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetVertexAttribfvNV), .-GL_PREFIX(GetVertexAttribfvNV)
@@ -26786,7 +26823,7 @@ GL_PREFIX(GetVertexAttribfvNV):
GL_PREFIX(GetVertexAttribivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5696(%rax), %r11
+ movq 5704(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26796,13 +26833,13 @@ GL_PREFIX(GetVertexAttribivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5696(%rax), %r11
+ movq 5704(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5696(%rax), %r11
+ movq 5704(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26812,7 +26849,7 @@ GL_PREFIX(GetVertexAttribivNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5696(%rax), %r11
+ movq 5704(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetVertexAttribivNV), .-GL_PREFIX(GetVertexAttribivNV)
@@ -26823,25 +26860,25 @@ GL_PREFIX(GetVertexAttribivNV):
GL_PREFIX(IsProgramNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5704(%rax), %r11
+ movq 5712(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 5704(%rax), %r11
+ movq 5712(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5704(%rax), %r11
+ movq 5712(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 5704(%rax), %r11
+ movq 5712(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IsProgramNV), .-GL_PREFIX(IsProgramNV)
@@ -26852,7 +26889,7 @@ GL_PREFIX(IsProgramNV):
GL_PREFIX(LoadProgramNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5712(%rax), %r11
+ movq 5720(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26866,13 +26903,13 @@ GL_PREFIX(LoadProgramNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5712(%rax), %r11
+ movq 5720(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5712(%rax), %r11
+ movq 5720(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26886,7 +26923,7 @@ GL_PREFIX(LoadProgramNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5712(%rax), %r11
+ movq 5720(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(LoadProgramNV), .-GL_PREFIX(LoadProgramNV)
@@ -26897,7 +26934,7 @@ GL_PREFIX(LoadProgramNV):
GL_PREFIX(ProgramParameters4dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5720(%rax), %r11
+ movq 5728(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26911,13 +26948,13 @@ GL_PREFIX(ProgramParameters4dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5720(%rax), %r11
+ movq 5728(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5720(%rax), %r11
+ movq 5728(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26931,7 +26968,7 @@ GL_PREFIX(ProgramParameters4dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5720(%rax), %r11
+ movq 5728(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProgramParameters4dvNV), .-GL_PREFIX(ProgramParameters4dvNV)
@@ -26942,7 +26979,7 @@ GL_PREFIX(ProgramParameters4dvNV):
GL_PREFIX(ProgramParameters4fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5728(%rax), %r11
+ movq 5736(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26956,13 +26993,13 @@ GL_PREFIX(ProgramParameters4fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5728(%rax), %r11
+ movq 5736(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5728(%rax), %r11
+ movq 5736(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -26976,7 +27013,7 @@ GL_PREFIX(ProgramParameters4fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5728(%rax), %r11
+ movq 5736(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProgramParameters4fvNV), .-GL_PREFIX(ProgramParameters4fvNV)
@@ -26987,7 +27024,7 @@ GL_PREFIX(ProgramParameters4fvNV):
GL_PREFIX(RequestResidentProgramsNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5736(%rax), %r11
+ movq 5744(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -26997,13 +27034,13 @@ GL_PREFIX(RequestResidentProgramsNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5736(%rax), %r11
+ movq 5744(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5736(%rax), %r11
+ movq 5744(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27013,7 +27050,7 @@ GL_PREFIX(RequestResidentProgramsNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5736(%rax), %r11
+ movq 5744(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(RequestResidentProgramsNV), .-GL_PREFIX(RequestResidentProgramsNV)
@@ -27024,7 +27061,7 @@ GL_PREFIX(RequestResidentProgramsNV):
GL_PREFIX(TrackMatrixNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5744(%rax), %r11
+ movq 5752(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27038,13 +27075,13 @@ GL_PREFIX(TrackMatrixNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5744(%rax), %r11
+ movq 5752(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5744(%rax), %r11
+ movq 5752(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27058,7 +27095,7 @@ GL_PREFIX(TrackMatrixNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5744(%rax), %r11
+ movq 5752(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TrackMatrixNV), .-GL_PREFIX(TrackMatrixNV)
@@ -27069,7 +27106,7 @@ GL_PREFIX(TrackMatrixNV):
GL_PREFIX(VertexAttrib1dNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5752(%rax), %r11
+ movq 5760(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -27079,13 +27116,13 @@ GL_PREFIX(VertexAttrib1dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5752(%rax), %r11
+ movq 5760(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5752(%rax), %r11
+ movq 5760(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -27095,7 +27132,7 @@ GL_PREFIX(VertexAttrib1dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5752(%rax), %r11
+ movq 5760(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib1dNV), .-GL_PREFIX(VertexAttrib1dNV)
@@ -27106,7 +27143,7 @@ GL_PREFIX(VertexAttrib1dNV):
GL_PREFIX(VertexAttrib1dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5760(%rax), %r11
+ movq 5768(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27116,13 +27153,13 @@ GL_PREFIX(VertexAttrib1dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5760(%rax), %r11
+ movq 5768(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5760(%rax), %r11
+ movq 5768(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27132,7 +27169,7 @@ GL_PREFIX(VertexAttrib1dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5760(%rax), %r11
+ movq 5768(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib1dvNV), .-GL_PREFIX(VertexAttrib1dvNV)
@@ -27143,7 +27180,7 @@ GL_PREFIX(VertexAttrib1dvNV):
GL_PREFIX(VertexAttrib1fNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5768(%rax), %r11
+ movq 5776(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -27153,13 +27190,13 @@ GL_PREFIX(VertexAttrib1fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5768(%rax), %r11
+ movq 5776(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5768(%rax), %r11
+ movq 5776(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -27169,7 +27206,7 @@ GL_PREFIX(VertexAttrib1fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5768(%rax), %r11
+ movq 5776(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib1fNV), .-GL_PREFIX(VertexAttrib1fNV)
@@ -27180,7 +27217,7 @@ GL_PREFIX(VertexAttrib1fNV):
GL_PREFIX(VertexAttrib1fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5776(%rax), %r11
+ movq 5784(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27190,13 +27227,13 @@ GL_PREFIX(VertexAttrib1fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5776(%rax), %r11
+ movq 5784(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5776(%rax), %r11
+ movq 5784(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27206,7 +27243,7 @@ GL_PREFIX(VertexAttrib1fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5776(%rax), %r11
+ movq 5784(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib1fvNV), .-GL_PREFIX(VertexAttrib1fvNV)
@@ -27217,7 +27254,7 @@ GL_PREFIX(VertexAttrib1fvNV):
GL_PREFIX(VertexAttrib1sNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5784(%rax), %r11
+ movq 5792(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27227,13 +27264,13 @@ GL_PREFIX(VertexAttrib1sNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5784(%rax), %r11
+ movq 5792(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5784(%rax), %r11
+ movq 5792(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27243,7 +27280,7 @@ GL_PREFIX(VertexAttrib1sNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5784(%rax), %r11
+ movq 5792(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib1sNV), .-GL_PREFIX(VertexAttrib1sNV)
@@ -27254,7 +27291,7 @@ GL_PREFIX(VertexAttrib1sNV):
GL_PREFIX(VertexAttrib1svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5792(%rax), %r11
+ movq 5800(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27264,13 +27301,13 @@ GL_PREFIX(VertexAttrib1svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5792(%rax), %r11
+ movq 5800(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5792(%rax), %r11
+ movq 5800(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27280,7 +27317,7 @@ GL_PREFIX(VertexAttrib1svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5792(%rax), %r11
+ movq 5800(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib1svNV), .-GL_PREFIX(VertexAttrib1svNV)
@@ -27291,7 +27328,7 @@ GL_PREFIX(VertexAttrib1svNV):
GL_PREFIX(VertexAttrib2dNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5800(%rax), %r11
+ movq 5808(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -27303,13 +27340,13 @@ GL_PREFIX(VertexAttrib2dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5800(%rax), %r11
+ movq 5808(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5800(%rax), %r11
+ movq 5808(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -27321,7 +27358,7 @@ GL_PREFIX(VertexAttrib2dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5800(%rax), %r11
+ movq 5808(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib2dNV), .-GL_PREFIX(VertexAttrib2dNV)
@@ -27332,7 +27369,7 @@ GL_PREFIX(VertexAttrib2dNV):
GL_PREFIX(VertexAttrib2dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5808(%rax), %r11
+ movq 5816(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27342,13 +27379,13 @@ GL_PREFIX(VertexAttrib2dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5808(%rax), %r11
+ movq 5816(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5808(%rax), %r11
+ movq 5816(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27358,7 +27395,7 @@ GL_PREFIX(VertexAttrib2dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5808(%rax), %r11
+ movq 5816(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib2dvNV), .-GL_PREFIX(VertexAttrib2dvNV)
@@ -27369,7 +27406,7 @@ GL_PREFIX(VertexAttrib2dvNV):
GL_PREFIX(VertexAttrib2fNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5816(%rax), %r11
+ movq 5824(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $24, %rsp
@@ -27381,13 +27418,13 @@ GL_PREFIX(VertexAttrib2fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5816(%rax), %r11
+ movq 5824(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5816(%rax), %r11
+ movq 5824(%rax), %r11
jmp *%r11
1:
subq $24, %rsp
@@ -27399,7 +27436,7 @@ GL_PREFIX(VertexAttrib2fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $24, %rsp
- movq 5816(%rax), %r11
+ movq 5824(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib2fNV), .-GL_PREFIX(VertexAttrib2fNV)
@@ -27410,7 +27447,7 @@ GL_PREFIX(VertexAttrib2fNV):
GL_PREFIX(VertexAttrib2fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5824(%rax), %r11
+ movq 5832(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27420,13 +27457,13 @@ GL_PREFIX(VertexAttrib2fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5824(%rax), %r11
+ movq 5832(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5824(%rax), %r11
+ movq 5832(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27436,7 +27473,7 @@ GL_PREFIX(VertexAttrib2fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5824(%rax), %r11
+ movq 5832(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib2fvNV), .-GL_PREFIX(VertexAttrib2fvNV)
@@ -27447,7 +27484,7 @@ GL_PREFIX(VertexAttrib2fvNV):
GL_PREFIX(VertexAttrib2sNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5832(%rax), %r11
+ movq 5840(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27457,13 +27494,13 @@ GL_PREFIX(VertexAttrib2sNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5832(%rax), %r11
+ movq 5840(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5832(%rax), %r11
+ movq 5840(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27473,7 +27510,7 @@ GL_PREFIX(VertexAttrib2sNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5832(%rax), %r11
+ movq 5840(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib2sNV), .-GL_PREFIX(VertexAttrib2sNV)
@@ -27484,7 +27521,7 @@ GL_PREFIX(VertexAttrib2sNV):
GL_PREFIX(VertexAttrib2svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5840(%rax), %r11
+ movq 5848(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27494,13 +27531,13 @@ GL_PREFIX(VertexAttrib2svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5840(%rax), %r11
+ movq 5848(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5840(%rax), %r11
+ movq 5848(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27510,7 +27547,7 @@ GL_PREFIX(VertexAttrib2svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5840(%rax), %r11
+ movq 5848(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib2svNV), .-GL_PREFIX(VertexAttrib2svNV)
@@ -27521,7 +27558,7 @@ GL_PREFIX(VertexAttrib2svNV):
GL_PREFIX(VertexAttrib3dNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5848(%rax), %r11
+ movq 5856(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $40, %rsp
@@ -27535,13 +27572,13 @@ GL_PREFIX(VertexAttrib3dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5848(%rax), %r11
+ movq 5856(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5848(%rax), %r11
+ movq 5856(%rax), %r11
jmp *%r11
1:
subq $40, %rsp
@@ -27555,7 +27592,7 @@ GL_PREFIX(VertexAttrib3dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5848(%rax), %r11
+ movq 5856(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib3dNV), .-GL_PREFIX(VertexAttrib3dNV)
@@ -27566,7 +27603,7 @@ GL_PREFIX(VertexAttrib3dNV):
GL_PREFIX(VertexAttrib3dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5856(%rax), %r11
+ movq 5864(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27576,13 +27613,13 @@ GL_PREFIX(VertexAttrib3dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5856(%rax), %r11
+ movq 5864(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5856(%rax), %r11
+ movq 5864(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27592,7 +27629,7 @@ GL_PREFIX(VertexAttrib3dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5856(%rax), %r11
+ movq 5864(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib3dvNV), .-GL_PREFIX(VertexAttrib3dvNV)
@@ -27603,7 +27640,7 @@ GL_PREFIX(VertexAttrib3dvNV):
GL_PREFIX(VertexAttrib3fNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5864(%rax), %r11
+ movq 5872(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $40, %rsp
@@ -27617,13 +27654,13 @@ GL_PREFIX(VertexAttrib3fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5864(%rax), %r11
+ movq 5872(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5864(%rax), %r11
+ movq 5872(%rax), %r11
jmp *%r11
1:
subq $40, %rsp
@@ -27637,7 +27674,7 @@ GL_PREFIX(VertexAttrib3fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5864(%rax), %r11
+ movq 5872(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib3fNV), .-GL_PREFIX(VertexAttrib3fNV)
@@ -27648,7 +27685,7 @@ GL_PREFIX(VertexAttrib3fNV):
GL_PREFIX(VertexAttrib3fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5872(%rax), %r11
+ movq 5880(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27658,13 +27695,13 @@ GL_PREFIX(VertexAttrib3fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5872(%rax), %r11
+ movq 5880(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5872(%rax), %r11
+ movq 5880(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27674,7 +27711,7 @@ GL_PREFIX(VertexAttrib3fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5872(%rax), %r11
+ movq 5880(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib3fvNV), .-GL_PREFIX(VertexAttrib3fvNV)
@@ -27685,7 +27722,7 @@ GL_PREFIX(VertexAttrib3fvNV):
GL_PREFIX(VertexAttrib3sNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5880(%rax), %r11
+ movq 5888(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27699,13 +27736,13 @@ GL_PREFIX(VertexAttrib3sNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5880(%rax), %r11
+ movq 5888(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5880(%rax), %r11
+ movq 5888(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27719,7 +27756,7 @@ GL_PREFIX(VertexAttrib3sNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5880(%rax), %r11
+ movq 5888(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib3sNV), .-GL_PREFIX(VertexAttrib3sNV)
@@ -27730,7 +27767,7 @@ GL_PREFIX(VertexAttrib3sNV):
GL_PREFIX(VertexAttrib3svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5888(%rax), %r11
+ movq 5896(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27740,13 +27777,13 @@ GL_PREFIX(VertexAttrib3svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5888(%rax), %r11
+ movq 5896(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5888(%rax), %r11
+ movq 5896(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27756,7 +27793,7 @@ GL_PREFIX(VertexAttrib3svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5888(%rax), %r11
+ movq 5896(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib3svNV), .-GL_PREFIX(VertexAttrib3svNV)
@@ -27767,7 +27804,7 @@ GL_PREFIX(VertexAttrib3svNV):
GL_PREFIX(VertexAttrib4dNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5896(%rax), %r11
+ movq 5904(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $40, %rsp
@@ -27783,13 +27820,13 @@ GL_PREFIX(VertexAttrib4dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5896(%rax), %r11
+ movq 5904(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5896(%rax), %r11
+ movq 5904(%rax), %r11
jmp *%r11
1:
subq $40, %rsp
@@ -27805,7 +27842,7 @@ GL_PREFIX(VertexAttrib4dNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5896(%rax), %r11
+ movq 5904(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4dNV), .-GL_PREFIX(VertexAttrib4dNV)
@@ -27816,7 +27853,7 @@ GL_PREFIX(VertexAttrib4dNV):
GL_PREFIX(VertexAttrib4dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5904(%rax), %r11
+ movq 5912(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27826,13 +27863,13 @@ GL_PREFIX(VertexAttrib4dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5904(%rax), %r11
+ movq 5912(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5904(%rax), %r11
+ movq 5912(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27842,7 +27879,7 @@ GL_PREFIX(VertexAttrib4dvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5904(%rax), %r11
+ movq 5912(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4dvNV), .-GL_PREFIX(VertexAttrib4dvNV)
@@ -27853,7 +27890,7 @@ GL_PREFIX(VertexAttrib4dvNV):
GL_PREFIX(VertexAttrib4fNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5912(%rax), %r11
+ movq 5920(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $40, %rsp
@@ -27869,13 +27906,13 @@ GL_PREFIX(VertexAttrib4fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5912(%rax), %r11
+ movq 5920(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5912(%rax), %r11
+ movq 5920(%rax), %r11
jmp *%r11
1:
subq $40, %rsp
@@ -27891,7 +27928,7 @@ GL_PREFIX(VertexAttrib4fNV):
movq 8(%rsp), %xmm0
movq (%rsp), %rdi
addq $40, %rsp
- movq 5912(%rax), %r11
+ movq 5920(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4fNV), .-GL_PREFIX(VertexAttrib4fNV)
@@ -27902,7 +27939,7 @@ GL_PREFIX(VertexAttrib4fNV):
GL_PREFIX(VertexAttrib4fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5920(%rax), %r11
+ movq 5928(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27912,13 +27949,13 @@ GL_PREFIX(VertexAttrib4fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5920(%rax), %r11
+ movq 5928(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5920(%rax), %r11
+ movq 5928(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27928,7 +27965,7 @@ GL_PREFIX(VertexAttrib4fvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5920(%rax), %r11
+ movq 5928(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4fvNV), .-GL_PREFIX(VertexAttrib4fvNV)
@@ -27939,7 +27976,7 @@ GL_PREFIX(VertexAttrib4fvNV):
GL_PREFIX(VertexAttrib4sNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5928(%rax), %r11
+ movq 5936(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27953,13 +27990,13 @@ GL_PREFIX(VertexAttrib4sNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5928(%rax), %r11
+ movq 5936(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5928(%rax), %r11
+ movq 5936(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -27973,7 +28010,7 @@ GL_PREFIX(VertexAttrib4sNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5928(%rax), %r11
+ movq 5936(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4sNV), .-GL_PREFIX(VertexAttrib4sNV)
@@ -27984,7 +28021,7 @@ GL_PREFIX(VertexAttrib4sNV):
GL_PREFIX(VertexAttrib4svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5936(%rax), %r11
+ movq 5944(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -27994,13 +28031,13 @@ GL_PREFIX(VertexAttrib4svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5936(%rax), %r11
+ movq 5944(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5936(%rax), %r11
+ movq 5944(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28010,7 +28047,7 @@ GL_PREFIX(VertexAttrib4svNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5936(%rax), %r11
+ movq 5944(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4svNV), .-GL_PREFIX(VertexAttrib4svNV)
@@ -28021,7 +28058,7 @@ GL_PREFIX(VertexAttrib4svNV):
GL_PREFIX(VertexAttrib4ubNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5944(%rax), %r11
+ movq 5952(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28035,13 +28072,13 @@ GL_PREFIX(VertexAttrib4ubNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5944(%rax), %r11
+ movq 5952(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5944(%rax), %r11
+ movq 5952(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28055,7 +28092,7 @@ GL_PREFIX(VertexAttrib4ubNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5944(%rax), %r11
+ movq 5952(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4ubNV), .-GL_PREFIX(VertexAttrib4ubNV)
@@ -28066,7 +28103,7 @@ GL_PREFIX(VertexAttrib4ubNV):
GL_PREFIX(VertexAttrib4ubvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5952(%rax), %r11
+ movq 5960(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28076,13 +28113,13 @@ GL_PREFIX(VertexAttrib4ubvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5952(%rax), %r11
+ movq 5960(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5952(%rax), %r11
+ movq 5960(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28092,7 +28129,7 @@ GL_PREFIX(VertexAttrib4ubvNV):
popq %rbp
popq %rsi
popq %rdi
- movq 5952(%rax), %r11
+ movq 5960(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttrib4ubvNV), .-GL_PREFIX(VertexAttrib4ubvNV)
@@ -28103,7 +28140,7 @@ GL_PREFIX(VertexAttrib4ubvNV):
GL_PREFIX(VertexAttribPointerNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5960(%rax), %r11
+ movq 5968(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28117,13 +28154,13 @@ GL_PREFIX(VertexAttribPointerNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5960(%rax), %r11
+ movq 5968(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5960(%rax), %r11
+ movq 5968(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28137,7 +28174,7 @@ GL_PREFIX(VertexAttribPointerNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5960(%rax), %r11
+ movq 5968(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribPointerNV), .-GL_PREFIX(VertexAttribPointerNV)
@@ -28148,7 +28185,7 @@ GL_PREFIX(VertexAttribPointerNV):
GL_PREFIX(VertexAttribs1dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5968(%rax), %r11
+ movq 5976(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28158,13 +28195,13 @@ GL_PREFIX(VertexAttribs1dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5968(%rax), %r11
+ movq 5976(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5968(%rax), %r11
+ movq 5976(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28174,7 +28211,7 @@ GL_PREFIX(VertexAttribs1dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5968(%rax), %r11
+ movq 5976(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs1dvNV), .-GL_PREFIX(VertexAttribs1dvNV)
@@ -28185,7 +28222,7 @@ GL_PREFIX(VertexAttribs1dvNV):
GL_PREFIX(VertexAttribs1fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5976(%rax), %r11
+ movq 5984(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28195,13 +28232,13 @@ GL_PREFIX(VertexAttribs1fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5976(%rax), %r11
+ movq 5984(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5976(%rax), %r11
+ movq 5984(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28211,7 +28248,7 @@ GL_PREFIX(VertexAttribs1fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5976(%rax), %r11
+ movq 5984(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs1fvNV), .-GL_PREFIX(VertexAttribs1fvNV)
@@ -28222,7 +28259,7 @@ GL_PREFIX(VertexAttribs1fvNV):
GL_PREFIX(VertexAttribs1svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5984(%rax), %r11
+ movq 5992(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28232,13 +28269,13 @@ GL_PREFIX(VertexAttribs1svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5984(%rax), %r11
+ movq 5992(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5984(%rax), %r11
+ movq 5992(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28248,7 +28285,7 @@ GL_PREFIX(VertexAttribs1svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5984(%rax), %r11
+ movq 5992(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs1svNV), .-GL_PREFIX(VertexAttribs1svNV)
@@ -28259,7 +28296,7 @@ GL_PREFIX(VertexAttribs1svNV):
GL_PREFIX(VertexAttribs2dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 5992(%rax), %r11
+ movq 6000(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28269,13 +28306,13 @@ GL_PREFIX(VertexAttribs2dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5992(%rax), %r11
+ movq 6000(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 5992(%rax), %r11
+ movq 6000(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28285,7 +28322,7 @@ GL_PREFIX(VertexAttribs2dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 5992(%rax), %r11
+ movq 6000(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs2dvNV), .-GL_PREFIX(VertexAttribs2dvNV)
@@ -28296,7 +28333,7 @@ GL_PREFIX(VertexAttribs2dvNV):
GL_PREFIX(VertexAttribs2fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6000(%rax), %r11
+ movq 6008(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28306,13 +28343,13 @@ GL_PREFIX(VertexAttribs2fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6000(%rax), %r11
+ movq 6008(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6000(%rax), %r11
+ movq 6008(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28322,7 +28359,7 @@ GL_PREFIX(VertexAttribs2fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6000(%rax), %r11
+ movq 6008(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs2fvNV), .-GL_PREFIX(VertexAttribs2fvNV)
@@ -28333,7 +28370,7 @@ GL_PREFIX(VertexAttribs2fvNV):
GL_PREFIX(VertexAttribs2svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6008(%rax), %r11
+ movq 6016(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28343,13 +28380,13 @@ GL_PREFIX(VertexAttribs2svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6008(%rax), %r11
+ movq 6016(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6008(%rax), %r11
+ movq 6016(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28359,7 +28396,7 @@ GL_PREFIX(VertexAttribs2svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6008(%rax), %r11
+ movq 6016(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs2svNV), .-GL_PREFIX(VertexAttribs2svNV)
@@ -28370,7 +28407,7 @@ GL_PREFIX(VertexAttribs2svNV):
GL_PREFIX(VertexAttribs3dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6016(%rax), %r11
+ movq 6024(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28380,13 +28417,13 @@ GL_PREFIX(VertexAttribs3dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6016(%rax), %r11
+ movq 6024(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6016(%rax), %r11
+ movq 6024(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28396,7 +28433,7 @@ GL_PREFIX(VertexAttribs3dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6016(%rax), %r11
+ movq 6024(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs3dvNV), .-GL_PREFIX(VertexAttribs3dvNV)
@@ -28407,7 +28444,7 @@ GL_PREFIX(VertexAttribs3dvNV):
GL_PREFIX(VertexAttribs3fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6024(%rax), %r11
+ movq 6032(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28417,13 +28454,13 @@ GL_PREFIX(VertexAttribs3fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6024(%rax), %r11
+ movq 6032(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6024(%rax), %r11
+ movq 6032(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28433,7 +28470,7 @@ GL_PREFIX(VertexAttribs3fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6024(%rax), %r11
+ movq 6032(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs3fvNV), .-GL_PREFIX(VertexAttribs3fvNV)
@@ -28444,7 +28481,7 @@ GL_PREFIX(VertexAttribs3fvNV):
GL_PREFIX(VertexAttribs3svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6032(%rax), %r11
+ movq 6040(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28454,13 +28491,13 @@ GL_PREFIX(VertexAttribs3svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6032(%rax), %r11
+ movq 6040(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6032(%rax), %r11
+ movq 6040(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28470,7 +28507,7 @@ GL_PREFIX(VertexAttribs3svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6032(%rax), %r11
+ movq 6040(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs3svNV), .-GL_PREFIX(VertexAttribs3svNV)
@@ -28481,7 +28518,7 @@ GL_PREFIX(VertexAttribs3svNV):
GL_PREFIX(VertexAttribs4dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6040(%rax), %r11
+ movq 6048(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28491,13 +28528,13 @@ GL_PREFIX(VertexAttribs4dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6040(%rax), %r11
+ movq 6048(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6040(%rax), %r11
+ movq 6048(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28507,7 +28544,7 @@ GL_PREFIX(VertexAttribs4dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6040(%rax), %r11
+ movq 6048(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs4dvNV), .-GL_PREFIX(VertexAttribs4dvNV)
@@ -28518,7 +28555,7 @@ GL_PREFIX(VertexAttribs4dvNV):
GL_PREFIX(VertexAttribs4fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6048(%rax), %r11
+ movq 6056(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28528,13 +28565,13 @@ GL_PREFIX(VertexAttribs4fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6048(%rax), %r11
+ movq 6056(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6048(%rax), %r11
+ movq 6056(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28544,7 +28581,7 @@ GL_PREFIX(VertexAttribs4fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6048(%rax), %r11
+ movq 6056(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs4fvNV), .-GL_PREFIX(VertexAttribs4fvNV)
@@ -28555,7 +28592,7 @@ GL_PREFIX(VertexAttribs4fvNV):
GL_PREFIX(VertexAttribs4svNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6056(%rax), %r11
+ movq 6064(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28565,13 +28602,13 @@ GL_PREFIX(VertexAttribs4svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6056(%rax), %r11
+ movq 6064(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6056(%rax), %r11
+ movq 6064(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28581,7 +28618,7 @@ GL_PREFIX(VertexAttribs4svNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6056(%rax), %r11
+ movq 6064(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs4svNV), .-GL_PREFIX(VertexAttribs4svNV)
@@ -28592,7 +28629,7 @@ GL_PREFIX(VertexAttribs4svNV):
GL_PREFIX(VertexAttribs4ubvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6064(%rax), %r11
+ movq 6072(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28602,13 +28639,13 @@ GL_PREFIX(VertexAttribs4ubvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6064(%rax), %r11
+ movq 6072(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6064(%rax), %r11
+ movq 6072(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28618,7 +28655,7 @@ GL_PREFIX(VertexAttribs4ubvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6064(%rax), %r11
+ movq 6072(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribs4ubvNV), .-GL_PREFIX(VertexAttribs4ubvNV)
@@ -28629,7 +28666,7 @@ GL_PREFIX(VertexAttribs4ubvNV):
GL_PREFIX(GetTexBumpParameterfvATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6072(%rax), %r11
+ movq 6080(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28639,13 +28676,13 @@ GL_PREFIX(GetTexBumpParameterfvATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6072(%rax), %r11
+ movq 6080(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6072(%rax), %r11
+ movq 6080(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28655,7 +28692,7 @@ GL_PREFIX(GetTexBumpParameterfvATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6072(%rax), %r11
+ movq 6080(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetTexBumpParameterfvATI), .-GL_PREFIX(GetTexBumpParameterfvATI)
@@ -28666,7 +28703,7 @@ GL_PREFIX(GetTexBumpParameterfvATI):
GL_PREFIX(GetTexBumpParameterivATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6080(%rax), %r11
+ movq 6088(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28676,13 +28713,13 @@ GL_PREFIX(GetTexBumpParameterivATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6080(%rax), %r11
+ movq 6088(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6080(%rax), %r11
+ movq 6088(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28692,7 +28729,7 @@ GL_PREFIX(GetTexBumpParameterivATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6080(%rax), %r11
+ movq 6088(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetTexBumpParameterivATI), .-GL_PREFIX(GetTexBumpParameterivATI)
@@ -28703,7 +28740,7 @@ GL_PREFIX(GetTexBumpParameterivATI):
GL_PREFIX(TexBumpParameterfvATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6088(%rax), %r11
+ movq 6096(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28713,13 +28750,13 @@ GL_PREFIX(TexBumpParameterfvATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6088(%rax), %r11
+ movq 6096(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6088(%rax), %r11
+ movq 6096(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28729,7 +28766,7 @@ GL_PREFIX(TexBumpParameterfvATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6088(%rax), %r11
+ movq 6096(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TexBumpParameterfvATI), .-GL_PREFIX(TexBumpParameterfvATI)
@@ -28740,7 +28777,7 @@ GL_PREFIX(TexBumpParameterfvATI):
GL_PREFIX(TexBumpParameterivATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6096(%rax), %r11
+ movq 6104(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28750,13 +28787,13 @@ GL_PREFIX(TexBumpParameterivATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6096(%rax), %r11
+ movq 6104(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6096(%rax), %r11
+ movq 6104(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28766,7 +28803,7 @@ GL_PREFIX(TexBumpParameterivATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6096(%rax), %r11
+ movq 6104(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TexBumpParameterivATI), .-GL_PREFIX(TexBumpParameterivATI)
@@ -28777,7 +28814,7 @@ GL_PREFIX(TexBumpParameterivATI):
GL_PREFIX(AlphaFragmentOp1ATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6104(%rax), %r11
+ movq 6112(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28795,13 +28832,13 @@ GL_PREFIX(AlphaFragmentOp1ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6104(%rax), %r11
+ movq 6112(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6104(%rax), %r11
+ movq 6112(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28819,7 +28856,7 @@ GL_PREFIX(AlphaFragmentOp1ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6104(%rax), %r11
+ movq 6112(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(AlphaFragmentOp1ATI), .-GL_PREFIX(AlphaFragmentOp1ATI)
@@ -28830,7 +28867,7 @@ GL_PREFIX(AlphaFragmentOp1ATI):
GL_PREFIX(AlphaFragmentOp2ATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6112(%rax), %r11
+ movq 6120(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28848,13 +28885,13 @@ GL_PREFIX(AlphaFragmentOp2ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6112(%rax), %r11
+ movq 6120(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6112(%rax), %r11
+ movq 6120(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28872,7 +28909,7 @@ GL_PREFIX(AlphaFragmentOp2ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6112(%rax), %r11
+ movq 6120(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(AlphaFragmentOp2ATI), .-GL_PREFIX(AlphaFragmentOp2ATI)
@@ -28883,7 +28920,7 @@ GL_PREFIX(AlphaFragmentOp2ATI):
GL_PREFIX(AlphaFragmentOp3ATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6120(%rax), %r11
+ movq 6128(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -28901,13 +28938,13 @@ GL_PREFIX(AlphaFragmentOp3ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6120(%rax), %r11
+ movq 6128(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6120(%rax), %r11
+ movq 6128(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -28925,7 +28962,7 @@ GL_PREFIX(AlphaFragmentOp3ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6120(%rax), %r11
+ movq 6128(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(AlphaFragmentOp3ATI), .-GL_PREFIX(AlphaFragmentOp3ATI)
@@ -28936,25 +28973,25 @@ GL_PREFIX(AlphaFragmentOp3ATI):
GL_PREFIX(BeginFragmentShaderATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6128(%rax), %r11
+ movq 6136(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 6128(%rax), %r11
+ movq 6136(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6128(%rax), %r11
+ movq 6136(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 6128(%rax), %r11
+ movq 6136(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BeginFragmentShaderATI), .-GL_PREFIX(BeginFragmentShaderATI)
@@ -28965,25 +29002,25 @@ GL_PREFIX(BeginFragmentShaderATI):
GL_PREFIX(BindFragmentShaderATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6136(%rax), %r11
+ movq 6144(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6136(%rax), %r11
+ movq 6144(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6136(%rax), %r11
+ movq 6144(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6136(%rax), %r11
+ movq 6144(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindFragmentShaderATI), .-GL_PREFIX(BindFragmentShaderATI)
@@ -28994,7 +29031,7 @@ GL_PREFIX(BindFragmentShaderATI):
GL_PREFIX(ColorFragmentOp1ATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6144(%rax), %r11
+ movq 6152(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29012,13 +29049,13 @@ GL_PREFIX(ColorFragmentOp1ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6144(%rax), %r11
+ movq 6152(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6144(%rax), %r11
+ movq 6152(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29036,7 +29073,7 @@ GL_PREFIX(ColorFragmentOp1ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6144(%rax), %r11
+ movq 6152(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ColorFragmentOp1ATI), .-GL_PREFIX(ColorFragmentOp1ATI)
@@ -29047,7 +29084,7 @@ GL_PREFIX(ColorFragmentOp1ATI):
GL_PREFIX(ColorFragmentOp2ATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6152(%rax), %r11
+ movq 6160(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29065,13 +29102,13 @@ GL_PREFIX(ColorFragmentOp2ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6152(%rax), %r11
+ movq 6160(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6152(%rax), %r11
+ movq 6160(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29089,7 +29126,7 @@ GL_PREFIX(ColorFragmentOp2ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6152(%rax), %r11
+ movq 6160(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ColorFragmentOp2ATI), .-GL_PREFIX(ColorFragmentOp2ATI)
@@ -29100,7 +29137,7 @@ GL_PREFIX(ColorFragmentOp2ATI):
GL_PREFIX(ColorFragmentOp3ATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6160(%rax), %r11
+ movq 6168(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29118,13 +29155,13 @@ GL_PREFIX(ColorFragmentOp3ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6160(%rax), %r11
+ movq 6168(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6160(%rax), %r11
+ movq 6168(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29142,7 +29179,7 @@ GL_PREFIX(ColorFragmentOp3ATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6160(%rax), %r11
+ movq 6168(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ColorFragmentOp3ATI), .-GL_PREFIX(ColorFragmentOp3ATI)
@@ -29153,25 +29190,25 @@ GL_PREFIX(ColorFragmentOp3ATI):
GL_PREFIX(DeleteFragmentShaderATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6168(%rax), %r11
+ movq 6176(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6168(%rax), %r11
+ movq 6176(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6168(%rax), %r11
+ movq 6176(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6168(%rax), %r11
+ movq 6176(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DeleteFragmentShaderATI), .-GL_PREFIX(DeleteFragmentShaderATI)
@@ -29182,25 +29219,25 @@ GL_PREFIX(DeleteFragmentShaderATI):
GL_PREFIX(EndFragmentShaderATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6176(%rax), %r11
+ movq 6184(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 6176(%rax), %r11
+ movq 6184(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6176(%rax), %r11
+ movq 6184(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 6176(%rax), %r11
+ movq 6184(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EndFragmentShaderATI), .-GL_PREFIX(EndFragmentShaderATI)
@@ -29211,25 +29248,25 @@ GL_PREFIX(EndFragmentShaderATI):
GL_PREFIX(GenFragmentShadersATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6184(%rax), %r11
+ movq 6192(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6184(%rax), %r11
+ movq 6192(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6184(%rax), %r11
+ movq 6192(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6184(%rax), %r11
+ movq 6192(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenFragmentShadersATI), .-GL_PREFIX(GenFragmentShadersATI)
@@ -29240,7 +29277,7 @@ GL_PREFIX(GenFragmentShadersATI):
GL_PREFIX(PassTexCoordATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6192(%rax), %r11
+ movq 6200(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29250,13 +29287,13 @@ GL_PREFIX(PassTexCoordATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6192(%rax), %r11
+ movq 6200(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6192(%rax), %r11
+ movq 6200(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29266,7 +29303,7 @@ GL_PREFIX(PassTexCoordATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6192(%rax), %r11
+ movq 6200(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PassTexCoordATI), .-GL_PREFIX(PassTexCoordATI)
@@ -29277,7 +29314,7 @@ GL_PREFIX(PassTexCoordATI):
GL_PREFIX(SampleMapATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6200(%rax), %r11
+ movq 6208(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29287,13 +29324,13 @@ GL_PREFIX(SampleMapATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6200(%rax), %r11
+ movq 6208(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6200(%rax), %r11
+ movq 6208(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29303,7 +29340,7 @@ GL_PREFIX(SampleMapATI):
popq %rdx
popq %rsi
popq %rdi
- movq 6200(%rax), %r11
+ movq 6208(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SampleMapATI), .-GL_PREFIX(SampleMapATI)
@@ -29314,7 +29351,7 @@ GL_PREFIX(SampleMapATI):
GL_PREFIX(SetFragmentShaderConstantATI):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6208(%rax), %r11
+ movq 6216(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29324,13 +29361,13 @@ GL_PREFIX(SetFragmentShaderConstantATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6208(%rax), %r11
+ movq 6216(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6208(%rax), %r11
+ movq 6216(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29340,7 +29377,7 @@ GL_PREFIX(SetFragmentShaderConstantATI):
popq %rbp
popq %rsi
popq %rdi
- movq 6208(%rax), %r11
+ movq 6216(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(SetFragmentShaderConstantATI), .-GL_PREFIX(SetFragmentShaderConstantATI)
@@ -29351,7 +29388,7 @@ GL_PREFIX(SetFragmentShaderConstantATI):
GL_PREFIX(PointParameteriNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6216(%rax), %r11
+ movq 6224(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29361,13 +29398,13 @@ GL_PREFIX(PointParameteriNV):
popq %rbp
popq %rsi
popq %rdi
- movq 6216(%rax), %r11
+ movq 6224(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6216(%rax), %r11
+ movq 6224(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29377,7 +29414,7 @@ GL_PREFIX(PointParameteriNV):
popq %rbp
popq %rsi
popq %rdi
- movq 6216(%rax), %r11
+ movq 6224(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PointParameteriNV), .-GL_PREFIX(PointParameteriNV)
@@ -29388,7 +29425,7 @@ GL_PREFIX(PointParameteriNV):
GL_PREFIX(PointParameterivNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6224(%rax), %r11
+ movq 6232(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29398,13 +29435,13 @@ GL_PREFIX(PointParameterivNV):
popq %rbp
popq %rsi
popq %rdi
- movq 6224(%rax), %r11
+ movq 6232(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6224(%rax), %r11
+ movq 6232(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29414,40 +29451,10 @@ GL_PREFIX(PointParameterivNV):
popq %rbp
popq %rsi
popq %rdi
- movq 6224(%rax), %r11
- jmp *%r11
-#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(PointParameterivNV), .-GL_PREFIX(PointParameterivNV)
-
- .p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_779)
- .type GL_PREFIX(_dispatch_stub_779), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_779))
-GL_PREFIX(_dispatch_stub_779):
-#if defined(GLX_USE_TLS)
- call _x86_64_get_dispatch@PLT
- movq 6232(%rax), %r11
- jmp *%r11
-#elif defined(PTHREADS)
- pushq %rdi
- call _x86_64_get_dispatch@PLT
- popq %rdi
- movq 6232(%rax), %r11
- jmp *%r11
-#else
- movq _glapi_Dispatch(%rip), %rax
- testq %rax, %rax
- je 1f
- movq 6232(%rax), %r11
- jmp *%r11
-1:
- pushq %rdi
- call _glapi_get_dispatch
- popq %rdi
movq 6232(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_779), .-GL_PREFIX(_dispatch_stub_779)
+ .size GL_PREFIX(PointParameterivNV), .-GL_PREFIX(PointParameterivNV)
.p2align 4,,15
.globl GL_PREFIX(_dispatch_stub_780)
@@ -29490,11 +29497,7 @@ GL_PREFIX(_dispatch_stub_781):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
- pushq %rsi
- pushq %rbp
call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %rsi
popq %rdi
movq 6248(%rax), %r11
jmp *%r11
@@ -29506,11 +29509,7 @@ GL_PREFIX(_dispatch_stub_781):
jmp *%r11
1:
pushq %rdi
- pushq %rsi
- pushq %rbp
call _glapi_get_dispatch
- popq %rbp
- popq %rsi
popq %rdi
movq 6248(%rax), %r11
jmp *%r11
@@ -29566,7 +29565,11 @@ GL_PREFIX(_dispatch_stub_783):
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _x86_64_get_dispatch@PLT
+ popq %rbp
+ popq %rsi
popq %rdi
movq 6264(%rax), %r11
jmp *%r11
@@ -29578,7 +29581,11 @@ GL_PREFIX(_dispatch_stub_783):
jmp *%r11
1:
pushq %rdi
+ pushq %rsi
+ pushq %rbp
call _glapi_get_dispatch
+ popq %rbp
+ popq %rsi
popq %rdi
movq 6264(%rax), %r11
jmp *%r11
@@ -29586,12 +29593,42 @@ GL_PREFIX(_dispatch_stub_783):
.size GL_PREFIX(_dispatch_stub_783), .-GL_PREFIX(_dispatch_stub_783)
.p2align 4,,15
+ .globl GL_PREFIX(_dispatch_stub_784)
+ .type GL_PREFIX(_dispatch_stub_784), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_784))
+GL_PREFIX(_dispatch_stub_784):
+#if defined(GLX_USE_TLS)
+ call _x86_64_get_dispatch@PLT
+ movq 6272(%rax), %r11
+ jmp *%r11
+#elif defined(PTHREADS)
+ pushq %rdi
+ call _x86_64_get_dispatch@PLT
+ popq %rdi
+ movq 6272(%rax), %r11
+ jmp *%r11
+#else
+ movq _glapi_Dispatch(%rip), %rax
+ testq %rax, %rax
+ je 1f
+ movq 6272(%rax), %r11
+ jmp *%r11
+1:
+ pushq %rdi
+ call _glapi_get_dispatch
+ popq %rdi
+ movq 6272(%rax), %r11
+ jmp *%r11
+#endif /* defined(GLX_USE_TLS) */
+ .size GL_PREFIX(_dispatch_stub_784), .-GL_PREFIX(_dispatch_stub_784)
+
+ .p2align 4,,15
.globl GL_PREFIX(GetProgramNamedParameterdvNV)
.type GL_PREFIX(GetProgramNamedParameterdvNV), @function
GL_PREFIX(GetProgramNamedParameterdvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6272(%rax), %r11
+ movq 6280(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29605,13 +29642,13 @@ GL_PREFIX(GetProgramNamedParameterdvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6272(%rax), %r11
+ movq 6280(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6272(%rax), %r11
+ movq 6280(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29625,7 +29662,7 @@ GL_PREFIX(GetProgramNamedParameterdvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6272(%rax), %r11
+ movq 6280(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetProgramNamedParameterdvNV), .-GL_PREFIX(GetProgramNamedParameterdvNV)
@@ -29636,7 +29673,7 @@ GL_PREFIX(GetProgramNamedParameterdvNV):
GL_PREFIX(GetProgramNamedParameterfvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6280(%rax), %r11
+ movq 6288(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29650,13 +29687,13 @@ GL_PREFIX(GetProgramNamedParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6280(%rax), %r11
+ movq 6288(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6280(%rax), %r11
+ movq 6288(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29670,7 +29707,7 @@ GL_PREFIX(GetProgramNamedParameterfvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6280(%rax), %r11
+ movq 6288(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetProgramNamedParameterfvNV), .-GL_PREFIX(GetProgramNamedParameterfvNV)
@@ -29681,7 +29718,7 @@ GL_PREFIX(GetProgramNamedParameterfvNV):
GL_PREFIX(ProgramNamedParameter4dNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6288(%rax), %r11
+ movq 6296(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $56, %rsp
@@ -29701,13 +29738,13 @@ GL_PREFIX(ProgramNamedParameter4dNV):
movq 8(%rsp), %rsi
movq (%rsp), %rdi
addq $56, %rsp
- movq 6288(%rax), %r11
+ movq 6296(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6288(%rax), %r11
+ movq 6296(%rax), %r11
jmp *%r11
1:
subq $56, %rsp
@@ -29727,7 +29764,7 @@ GL_PREFIX(ProgramNamedParameter4dNV):
movq 8(%rsp), %rsi
movq (%rsp), %rdi
addq $56, %rsp
- movq 6288(%rax), %r11
+ movq 6296(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProgramNamedParameter4dNV), .-GL_PREFIX(ProgramNamedParameter4dNV)
@@ -29738,7 +29775,7 @@ GL_PREFIX(ProgramNamedParameter4dNV):
GL_PREFIX(ProgramNamedParameter4dvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6296(%rax), %r11
+ movq 6304(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29752,13 +29789,13 @@ GL_PREFIX(ProgramNamedParameter4dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6296(%rax), %r11
+ movq 6304(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6296(%rax), %r11
+ movq 6304(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29772,7 +29809,7 @@ GL_PREFIX(ProgramNamedParameter4dvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6296(%rax), %r11
+ movq 6304(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProgramNamedParameter4dvNV), .-GL_PREFIX(ProgramNamedParameter4dvNV)
@@ -29783,7 +29820,7 @@ GL_PREFIX(ProgramNamedParameter4dvNV):
GL_PREFIX(ProgramNamedParameter4fNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6304(%rax), %r11
+ movq 6312(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
subq $56, %rsp
@@ -29803,13 +29840,13 @@ GL_PREFIX(ProgramNamedParameter4fNV):
movq 8(%rsp), %rsi
movq (%rsp), %rdi
addq $56, %rsp
- movq 6304(%rax), %r11
+ movq 6312(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6304(%rax), %r11
+ movq 6312(%rax), %r11
jmp *%r11
1:
subq $56, %rsp
@@ -29829,7 +29866,7 @@ GL_PREFIX(ProgramNamedParameter4fNV):
movq 8(%rsp), %rsi
movq (%rsp), %rdi
addq $56, %rsp
- movq 6304(%rax), %r11
+ movq 6312(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProgramNamedParameter4fNV), .-GL_PREFIX(ProgramNamedParameter4fNV)
@@ -29840,7 +29877,7 @@ GL_PREFIX(ProgramNamedParameter4fNV):
GL_PREFIX(ProgramNamedParameter4fvNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6312(%rax), %r11
+ movq 6320(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29854,13 +29891,13 @@ GL_PREFIX(ProgramNamedParameter4fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6312(%rax), %r11
+ movq 6320(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6312(%rax), %r11
+ movq 6320(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29874,7 +29911,7 @@ GL_PREFIX(ProgramNamedParameter4fvNV):
popq %rdx
popq %rsi
popq %rdi
- movq 6312(%rax), %r11
+ movq 6320(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProgramNamedParameter4fvNV), .-GL_PREFIX(ProgramNamedParameter4fvNV)
@@ -29885,25 +29922,25 @@ GL_PREFIX(ProgramNamedParameter4fvNV):
GL_PREFIX(PrimitiveRestartIndexNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6320(%rax), %r11
+ movq 6328(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6320(%rax), %r11
+ movq 6328(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6320(%rax), %r11
+ movq 6328(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6320(%rax), %r11
+ movq 6328(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PrimitiveRestartIndexNV), .-GL_PREFIX(PrimitiveRestartIndexNV)
@@ -29914,37 +29951,37 @@ GL_PREFIX(PrimitiveRestartIndexNV):
GL_PREFIX(PrimitiveRestartNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6328(%rax), %r11
+ movq 6336(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 6328(%rax), %r11
+ movq 6336(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6328(%rax), %r11
+ movq 6336(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 6328(%rax), %r11
+ movq 6336(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(PrimitiveRestartNV), .-GL_PREFIX(PrimitiveRestartNV)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_792)
- .type GL_PREFIX(_dispatch_stub_792), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_792))
-GL_PREFIX(_dispatch_stub_792):
+ .globl GL_PREFIX(_dispatch_stub_793)
+ .type GL_PREFIX(_dispatch_stub_793), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_793))
+GL_PREFIX(_dispatch_stub_793):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6336(%rax), %r11
+ movq 6344(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29954,13 +29991,13 @@ GL_PREFIX(_dispatch_stub_792):
popq %rbp
popq %rsi
popq %rdi
- movq 6336(%rax), %r11
+ movq 6344(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6336(%rax), %r11
+ movq 6344(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -29970,19 +30007,19 @@ GL_PREFIX(_dispatch_stub_792):
popq %rbp
popq %rsi
popq %rdi
- movq 6336(%rax), %r11
+ movq 6344(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_792), .-GL_PREFIX(_dispatch_stub_792)
+ .size GL_PREFIX(_dispatch_stub_793), .-GL_PREFIX(_dispatch_stub_793)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_793)
- .type GL_PREFIX(_dispatch_stub_793), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_793))
-GL_PREFIX(_dispatch_stub_793):
+ .globl GL_PREFIX(_dispatch_stub_794)
+ .type GL_PREFIX(_dispatch_stub_794), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_794))
+GL_PREFIX(_dispatch_stub_794):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6344(%rax), %r11
+ movq 6352(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -29992,13 +30029,13 @@ GL_PREFIX(_dispatch_stub_793):
popq %rbp
popq %rsi
popq %rdi
- movq 6344(%rax), %r11
+ movq 6352(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6344(%rax), %r11
+ movq 6352(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30008,10 +30045,10 @@ GL_PREFIX(_dispatch_stub_793):
popq %rbp
popq %rsi
popq %rdi
- movq 6344(%rax), %r11
+ movq 6352(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_793), .-GL_PREFIX(_dispatch_stub_793)
+ .size GL_PREFIX(_dispatch_stub_794), .-GL_PREFIX(_dispatch_stub_794)
.p2align 4,,15
.globl GL_PREFIX(BindFramebufferEXT)
@@ -30019,7 +30056,7 @@ GL_PREFIX(_dispatch_stub_793):
GL_PREFIX(BindFramebufferEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6352(%rax), %r11
+ movq 6360(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30029,13 +30066,13 @@ GL_PREFIX(BindFramebufferEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6352(%rax), %r11
+ movq 6360(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6352(%rax), %r11
+ movq 6360(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30045,7 +30082,7 @@ GL_PREFIX(BindFramebufferEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6352(%rax), %r11
+ movq 6360(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindFramebufferEXT), .-GL_PREFIX(BindFramebufferEXT)
@@ -30056,7 +30093,7 @@ GL_PREFIX(BindFramebufferEXT):
GL_PREFIX(BindRenderbufferEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6360(%rax), %r11
+ movq 6368(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30066,13 +30103,13 @@ GL_PREFIX(BindRenderbufferEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6360(%rax), %r11
+ movq 6368(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6360(%rax), %r11
+ movq 6368(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30082,7 +30119,7 @@ GL_PREFIX(BindRenderbufferEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6360(%rax), %r11
+ movq 6368(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindRenderbufferEXT), .-GL_PREFIX(BindRenderbufferEXT)
@@ -30093,25 +30130,25 @@ GL_PREFIX(BindRenderbufferEXT):
GL_PREFIX(CheckFramebufferStatusEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6368(%rax), %r11
+ movq 6376(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6368(%rax), %r11
+ movq 6376(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6368(%rax), %r11
+ movq 6376(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6368(%rax), %r11
+ movq 6376(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(CheckFramebufferStatusEXT), .-GL_PREFIX(CheckFramebufferStatusEXT)
@@ -30122,7 +30159,7 @@ GL_PREFIX(CheckFramebufferStatusEXT):
GL_PREFIX(DeleteFramebuffersEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6376(%rax), %r11
+ movq 6384(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30132,13 +30169,13 @@ GL_PREFIX(DeleteFramebuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6376(%rax), %r11
+ movq 6384(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6376(%rax), %r11
+ movq 6384(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30148,7 +30185,7 @@ GL_PREFIX(DeleteFramebuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6376(%rax), %r11
+ movq 6384(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DeleteFramebuffersEXT), .-GL_PREFIX(DeleteFramebuffersEXT)
@@ -30159,7 +30196,7 @@ GL_PREFIX(DeleteFramebuffersEXT):
GL_PREFIX(DeleteRenderbuffersEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6384(%rax), %r11
+ movq 6392(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30169,13 +30206,13 @@ GL_PREFIX(DeleteRenderbuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6384(%rax), %r11
+ movq 6392(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6384(%rax), %r11
+ movq 6392(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30185,7 +30222,7 @@ GL_PREFIX(DeleteRenderbuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6384(%rax), %r11
+ movq 6392(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DeleteRenderbuffersEXT), .-GL_PREFIX(DeleteRenderbuffersEXT)
@@ -30196,7 +30233,7 @@ GL_PREFIX(DeleteRenderbuffersEXT):
GL_PREFIX(FramebufferRenderbufferEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6392(%rax), %r11
+ movq 6400(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30210,13 +30247,13 @@ GL_PREFIX(FramebufferRenderbufferEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6392(%rax), %r11
+ movq 6400(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6392(%rax), %r11
+ movq 6400(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30230,7 +30267,7 @@ GL_PREFIX(FramebufferRenderbufferEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6392(%rax), %r11
+ movq 6400(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FramebufferRenderbufferEXT), .-GL_PREFIX(FramebufferRenderbufferEXT)
@@ -30241,7 +30278,7 @@ GL_PREFIX(FramebufferRenderbufferEXT):
GL_PREFIX(FramebufferTexture1DEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6400(%rax), %r11
+ movq 6408(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30255,13 +30292,13 @@ GL_PREFIX(FramebufferTexture1DEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6400(%rax), %r11
+ movq 6408(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6400(%rax), %r11
+ movq 6408(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30275,7 +30312,7 @@ GL_PREFIX(FramebufferTexture1DEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6400(%rax), %r11
+ movq 6408(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FramebufferTexture1DEXT), .-GL_PREFIX(FramebufferTexture1DEXT)
@@ -30286,7 +30323,7 @@ GL_PREFIX(FramebufferTexture1DEXT):
GL_PREFIX(FramebufferTexture2DEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6408(%rax), %r11
+ movq 6416(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30300,13 +30337,13 @@ GL_PREFIX(FramebufferTexture2DEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6408(%rax), %r11
+ movq 6416(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6408(%rax), %r11
+ movq 6416(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30320,7 +30357,7 @@ GL_PREFIX(FramebufferTexture2DEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6408(%rax), %r11
+ movq 6416(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FramebufferTexture2DEXT), .-GL_PREFIX(FramebufferTexture2DEXT)
@@ -30331,7 +30368,7 @@ GL_PREFIX(FramebufferTexture2DEXT):
GL_PREFIX(FramebufferTexture3DEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6416(%rax), %r11
+ movq 6424(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30349,13 +30386,13 @@ GL_PREFIX(FramebufferTexture3DEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6416(%rax), %r11
+ movq 6424(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6416(%rax), %r11
+ movq 6424(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30373,7 +30410,7 @@ GL_PREFIX(FramebufferTexture3DEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6416(%rax), %r11
+ movq 6424(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FramebufferTexture3DEXT), .-GL_PREFIX(FramebufferTexture3DEXT)
@@ -30384,7 +30421,7 @@ GL_PREFIX(FramebufferTexture3DEXT):
GL_PREFIX(GenFramebuffersEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6424(%rax), %r11
+ movq 6432(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30394,13 +30431,13 @@ GL_PREFIX(GenFramebuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6424(%rax), %r11
+ movq 6432(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6424(%rax), %r11
+ movq 6432(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30410,7 +30447,7 @@ GL_PREFIX(GenFramebuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6424(%rax), %r11
+ movq 6432(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenFramebuffersEXT), .-GL_PREFIX(GenFramebuffersEXT)
@@ -30421,7 +30458,7 @@ GL_PREFIX(GenFramebuffersEXT):
GL_PREFIX(GenRenderbuffersEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6432(%rax), %r11
+ movq 6440(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30431,13 +30468,13 @@ GL_PREFIX(GenRenderbuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6432(%rax), %r11
+ movq 6440(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6432(%rax), %r11
+ movq 6440(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30447,7 +30484,7 @@ GL_PREFIX(GenRenderbuffersEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6432(%rax), %r11
+ movq 6440(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenRenderbuffersEXT), .-GL_PREFIX(GenRenderbuffersEXT)
@@ -30458,25 +30495,25 @@ GL_PREFIX(GenRenderbuffersEXT):
GL_PREFIX(GenerateMipmapEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6440(%rax), %r11
+ movq 6448(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6440(%rax), %r11
+ movq 6448(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6440(%rax), %r11
+ movq 6448(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6440(%rax), %r11
+ movq 6448(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GenerateMipmapEXT), .-GL_PREFIX(GenerateMipmapEXT)
@@ -30487,7 +30524,7 @@ GL_PREFIX(GenerateMipmapEXT):
GL_PREFIX(GetFramebufferAttachmentParameterivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6448(%rax), %r11
+ movq 6456(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30501,13 +30538,13 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6448(%rax), %r11
+ movq 6456(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6448(%rax), %r11
+ movq 6456(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30521,7 +30558,7 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6448(%rax), %r11
+ movq 6456(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetFramebufferAttachmentParameterivEXT), .-GL_PREFIX(GetFramebufferAttachmentParameterivEXT)
@@ -30532,7 +30569,7 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT):
GL_PREFIX(GetRenderbufferParameterivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6456(%rax), %r11
+ movq 6464(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30542,13 +30579,13 @@ GL_PREFIX(GetRenderbufferParameterivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6456(%rax), %r11
+ movq 6464(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6456(%rax), %r11
+ movq 6464(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30558,7 +30595,7 @@ GL_PREFIX(GetRenderbufferParameterivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6456(%rax), %r11
+ movq 6464(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetRenderbufferParameterivEXT), .-GL_PREFIX(GetRenderbufferParameterivEXT)
@@ -30569,25 +30606,25 @@ GL_PREFIX(GetRenderbufferParameterivEXT):
GL_PREFIX(IsFramebufferEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6464(%rax), %r11
+ movq 6472(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6464(%rax), %r11
+ movq 6472(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6464(%rax), %r11
+ movq 6472(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6464(%rax), %r11
+ movq 6472(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IsFramebufferEXT), .-GL_PREFIX(IsFramebufferEXT)
@@ -30598,25 +30635,25 @@ GL_PREFIX(IsFramebufferEXT):
GL_PREFIX(IsRenderbufferEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6472(%rax), %r11
+ movq 6480(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6472(%rax), %r11
+ movq 6480(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6472(%rax), %r11
+ movq 6480(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6472(%rax), %r11
+ movq 6480(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IsRenderbufferEXT), .-GL_PREFIX(IsRenderbufferEXT)
@@ -30627,7 +30664,7 @@ GL_PREFIX(IsRenderbufferEXT):
GL_PREFIX(RenderbufferStorageEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6480(%rax), %r11
+ movq 6488(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30641,13 +30678,13 @@ GL_PREFIX(RenderbufferStorageEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6480(%rax), %r11
+ movq 6488(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6480(%rax), %r11
+ movq 6488(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30661,19 +30698,19 @@ GL_PREFIX(RenderbufferStorageEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6480(%rax), %r11
+ movq 6488(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(RenderbufferStorageEXT), .-GL_PREFIX(RenderbufferStorageEXT)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_811)
- .type GL_PREFIX(_dispatch_stub_811), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_811))
-GL_PREFIX(_dispatch_stub_811):
+ .globl GL_PREFIX(_dispatch_stub_812)
+ .type GL_PREFIX(_dispatch_stub_812), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_812))
+GL_PREFIX(_dispatch_stub_812):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6488(%rax), %r11
+ movq 6496(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30691,13 +30728,13 @@ GL_PREFIX(_dispatch_stub_811):
popq %rdx
popq %rsi
popq %rdi
- movq 6488(%rax), %r11
+ movq 6496(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6488(%rax), %r11
+ movq 6496(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30715,19 +30752,19 @@ GL_PREFIX(_dispatch_stub_811):
popq %rdx
popq %rsi
popq %rdi
- movq 6488(%rax), %r11
+ movq 6496(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_811), .-GL_PREFIX(_dispatch_stub_811)
+ .size GL_PREFIX(_dispatch_stub_812), .-GL_PREFIX(_dispatch_stub_812)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_812)
- .type GL_PREFIX(_dispatch_stub_812), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_812))
-GL_PREFIX(_dispatch_stub_812):
+ .globl GL_PREFIX(_dispatch_stub_813)
+ .type GL_PREFIX(_dispatch_stub_813), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_813))
+GL_PREFIX(_dispatch_stub_813):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6496(%rax), %r11
+ movq 6504(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30737,13 +30774,13 @@ GL_PREFIX(_dispatch_stub_812):
popq %rdx
popq %rsi
popq %rdi
- movq 6496(%rax), %r11
+ movq 6504(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6496(%rax), %r11
+ movq 6504(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30753,19 +30790,19 @@ GL_PREFIX(_dispatch_stub_812):
popq %rdx
popq %rsi
popq %rdi
- movq 6496(%rax), %r11
+ movq 6504(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_812), .-GL_PREFIX(_dispatch_stub_812)
+ .size GL_PREFIX(_dispatch_stub_813), .-GL_PREFIX(_dispatch_stub_813)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_813)
- .type GL_PREFIX(_dispatch_stub_813), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_813))
-GL_PREFIX(_dispatch_stub_813):
+ .globl GL_PREFIX(_dispatch_stub_814)
+ .type GL_PREFIX(_dispatch_stub_814), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_814))
+GL_PREFIX(_dispatch_stub_814):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6504(%rax), %r11
+ movq 6512(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30775,13 +30812,13 @@ GL_PREFIX(_dispatch_stub_813):
popq %rdx
popq %rsi
popq %rdi
- movq 6504(%rax), %r11
+ movq 6512(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6504(%rax), %r11
+ movq 6512(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30791,10 +30828,10 @@ GL_PREFIX(_dispatch_stub_813):
popq %rdx
popq %rsi
popq %rdi
- movq 6504(%rax), %r11
+ movq 6512(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_813), .-GL_PREFIX(_dispatch_stub_813)
+ .size GL_PREFIX(_dispatch_stub_814), .-GL_PREFIX(_dispatch_stub_814)
.p2align 4,,15
.globl GL_PREFIX(BindFragDataLocationEXT)
@@ -30802,7 +30839,7 @@ GL_PREFIX(_dispatch_stub_813):
GL_PREFIX(BindFragDataLocationEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6512(%rax), %r11
+ movq 6520(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30812,13 +30849,13 @@ GL_PREFIX(BindFragDataLocationEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6512(%rax), %r11
+ movq 6520(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6512(%rax), %r11
+ movq 6520(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30828,7 +30865,7 @@ GL_PREFIX(BindFragDataLocationEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6512(%rax), %r11
+ movq 6520(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindFragDataLocationEXT), .-GL_PREFIX(BindFragDataLocationEXT)
@@ -30839,7 +30876,7 @@ GL_PREFIX(BindFragDataLocationEXT):
GL_PREFIX(GetFragDataLocationEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6520(%rax), %r11
+ movq 6528(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30849,13 +30886,13 @@ GL_PREFIX(GetFragDataLocationEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6520(%rax), %r11
+ movq 6528(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6520(%rax), %r11
+ movq 6528(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30865,7 +30902,7 @@ GL_PREFIX(GetFragDataLocationEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6520(%rax), %r11
+ movq 6528(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetFragDataLocationEXT), .-GL_PREFIX(GetFragDataLocationEXT)
@@ -30876,7 +30913,7 @@ GL_PREFIX(GetFragDataLocationEXT):
GL_PREFIX(GetUniformuivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6528(%rax), %r11
+ movq 6536(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30886,13 +30923,13 @@ GL_PREFIX(GetUniformuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6528(%rax), %r11
+ movq 6536(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6528(%rax), %r11
+ movq 6536(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30902,7 +30939,7 @@ GL_PREFIX(GetUniformuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6528(%rax), %r11
+ movq 6536(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetUniformuivEXT), .-GL_PREFIX(GetUniformuivEXT)
@@ -30913,7 +30950,7 @@ GL_PREFIX(GetUniformuivEXT):
GL_PREFIX(GetVertexAttribIivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6536(%rax), %r11
+ movq 6544(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30923,13 +30960,13 @@ GL_PREFIX(GetVertexAttribIivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6536(%rax), %r11
+ movq 6544(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6536(%rax), %r11
+ movq 6544(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30939,7 +30976,7 @@ GL_PREFIX(GetVertexAttribIivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6536(%rax), %r11
+ movq 6544(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetVertexAttribIivEXT), .-GL_PREFIX(GetVertexAttribIivEXT)
@@ -30950,7 +30987,7 @@ GL_PREFIX(GetVertexAttribIivEXT):
GL_PREFIX(GetVertexAttribIuivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6544(%rax), %r11
+ movq 6552(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30960,13 +30997,13 @@ GL_PREFIX(GetVertexAttribIuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6544(%rax), %r11
+ movq 6552(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6544(%rax), %r11
+ movq 6552(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -30976,7 +31013,7 @@ GL_PREFIX(GetVertexAttribIuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6544(%rax), %r11
+ movq 6552(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetVertexAttribIuivEXT), .-GL_PREFIX(GetVertexAttribIuivEXT)
@@ -30987,7 +31024,7 @@ GL_PREFIX(GetVertexAttribIuivEXT):
GL_PREFIX(Uniform1uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6552(%rax), %r11
+ movq 6560(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -30997,13 +31034,13 @@ GL_PREFIX(Uniform1uiEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6552(%rax), %r11
+ movq 6560(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6552(%rax), %r11
+ movq 6560(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31013,7 +31050,7 @@ GL_PREFIX(Uniform1uiEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6552(%rax), %r11
+ movq 6560(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform1uiEXT), .-GL_PREFIX(Uniform1uiEXT)
@@ -31024,7 +31061,7 @@ GL_PREFIX(Uniform1uiEXT):
GL_PREFIX(Uniform1uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6560(%rax), %r11
+ movq 6568(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31034,13 +31071,13 @@ GL_PREFIX(Uniform1uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6560(%rax), %r11
+ movq 6568(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6560(%rax), %r11
+ movq 6568(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31050,7 +31087,7 @@ GL_PREFIX(Uniform1uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6560(%rax), %r11
+ movq 6568(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform1uivEXT), .-GL_PREFIX(Uniform1uivEXT)
@@ -31061,7 +31098,7 @@ GL_PREFIX(Uniform1uivEXT):
GL_PREFIX(Uniform2uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6568(%rax), %r11
+ movq 6576(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31071,13 +31108,13 @@ GL_PREFIX(Uniform2uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6568(%rax), %r11
+ movq 6576(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6568(%rax), %r11
+ movq 6576(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31087,7 +31124,7 @@ GL_PREFIX(Uniform2uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6568(%rax), %r11
+ movq 6576(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform2uiEXT), .-GL_PREFIX(Uniform2uiEXT)
@@ -31098,7 +31135,7 @@ GL_PREFIX(Uniform2uiEXT):
GL_PREFIX(Uniform2uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6576(%rax), %r11
+ movq 6584(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31108,13 +31145,13 @@ GL_PREFIX(Uniform2uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6576(%rax), %r11
+ movq 6584(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6576(%rax), %r11
+ movq 6584(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31124,7 +31161,7 @@ GL_PREFIX(Uniform2uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6576(%rax), %r11
+ movq 6584(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform2uivEXT), .-GL_PREFIX(Uniform2uivEXT)
@@ -31135,7 +31172,7 @@ GL_PREFIX(Uniform2uivEXT):
GL_PREFIX(Uniform3uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6584(%rax), %r11
+ movq 6592(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31149,13 +31186,13 @@ GL_PREFIX(Uniform3uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6584(%rax), %r11
+ movq 6592(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6584(%rax), %r11
+ movq 6592(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31169,7 +31206,7 @@ GL_PREFIX(Uniform3uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6584(%rax), %r11
+ movq 6592(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform3uiEXT), .-GL_PREFIX(Uniform3uiEXT)
@@ -31180,7 +31217,7 @@ GL_PREFIX(Uniform3uiEXT):
GL_PREFIX(Uniform3uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6592(%rax), %r11
+ movq 6600(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31190,13 +31227,13 @@ GL_PREFIX(Uniform3uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6592(%rax), %r11
+ movq 6600(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6592(%rax), %r11
+ movq 6600(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31206,7 +31243,7 @@ GL_PREFIX(Uniform3uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6592(%rax), %r11
+ movq 6600(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform3uivEXT), .-GL_PREFIX(Uniform3uivEXT)
@@ -31217,7 +31254,7 @@ GL_PREFIX(Uniform3uivEXT):
GL_PREFIX(Uniform4uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6600(%rax), %r11
+ movq 6608(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31231,13 +31268,13 @@ GL_PREFIX(Uniform4uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6600(%rax), %r11
+ movq 6608(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6600(%rax), %r11
+ movq 6608(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31251,7 +31288,7 @@ GL_PREFIX(Uniform4uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6600(%rax), %r11
+ movq 6608(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform4uiEXT), .-GL_PREFIX(Uniform4uiEXT)
@@ -31262,7 +31299,7 @@ GL_PREFIX(Uniform4uiEXT):
GL_PREFIX(Uniform4uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6608(%rax), %r11
+ movq 6616(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31272,13 +31309,13 @@ GL_PREFIX(Uniform4uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6608(%rax), %r11
+ movq 6616(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6608(%rax), %r11
+ movq 6616(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31288,7 +31325,7 @@ GL_PREFIX(Uniform4uivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6608(%rax), %r11
+ movq 6616(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(Uniform4uivEXT), .-GL_PREFIX(Uniform4uivEXT)
@@ -31299,7 +31336,7 @@ GL_PREFIX(Uniform4uivEXT):
GL_PREFIX(VertexAttribI1iEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6616(%rax), %r11
+ movq 6624(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31309,13 +31346,13 @@ GL_PREFIX(VertexAttribI1iEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6616(%rax), %r11
+ movq 6624(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6616(%rax), %r11
+ movq 6624(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31325,7 +31362,7 @@ GL_PREFIX(VertexAttribI1iEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6616(%rax), %r11
+ movq 6624(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI1iEXT), .-GL_PREFIX(VertexAttribI1iEXT)
@@ -31336,7 +31373,7 @@ GL_PREFIX(VertexAttribI1iEXT):
GL_PREFIX(VertexAttribI1ivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6624(%rax), %r11
+ movq 6632(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31346,13 +31383,13 @@ GL_PREFIX(VertexAttribI1ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6624(%rax), %r11
+ movq 6632(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6624(%rax), %r11
+ movq 6632(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31362,7 +31399,7 @@ GL_PREFIX(VertexAttribI1ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6624(%rax), %r11
+ movq 6632(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI1ivEXT), .-GL_PREFIX(VertexAttribI1ivEXT)
@@ -31373,7 +31410,7 @@ GL_PREFIX(VertexAttribI1ivEXT):
GL_PREFIX(VertexAttribI1uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6632(%rax), %r11
+ movq 6640(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31383,13 +31420,13 @@ GL_PREFIX(VertexAttribI1uiEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6632(%rax), %r11
+ movq 6640(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6632(%rax), %r11
+ movq 6640(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31399,7 +31436,7 @@ GL_PREFIX(VertexAttribI1uiEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6632(%rax), %r11
+ movq 6640(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI1uiEXT), .-GL_PREFIX(VertexAttribI1uiEXT)
@@ -31410,7 +31447,7 @@ GL_PREFIX(VertexAttribI1uiEXT):
GL_PREFIX(VertexAttribI1uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6640(%rax), %r11
+ movq 6648(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31420,13 +31457,13 @@ GL_PREFIX(VertexAttribI1uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6640(%rax), %r11
+ movq 6648(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6640(%rax), %r11
+ movq 6648(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31436,7 +31473,7 @@ GL_PREFIX(VertexAttribI1uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6640(%rax), %r11
+ movq 6648(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI1uivEXT), .-GL_PREFIX(VertexAttribI1uivEXT)
@@ -31447,7 +31484,7 @@ GL_PREFIX(VertexAttribI1uivEXT):
GL_PREFIX(VertexAttribI2iEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6648(%rax), %r11
+ movq 6656(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31457,13 +31494,13 @@ GL_PREFIX(VertexAttribI2iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6648(%rax), %r11
+ movq 6656(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6648(%rax), %r11
+ movq 6656(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31473,7 +31510,7 @@ GL_PREFIX(VertexAttribI2iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6648(%rax), %r11
+ movq 6656(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI2iEXT), .-GL_PREFIX(VertexAttribI2iEXT)
@@ -31484,7 +31521,7 @@ GL_PREFIX(VertexAttribI2iEXT):
GL_PREFIX(VertexAttribI2ivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6656(%rax), %r11
+ movq 6664(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31494,13 +31531,13 @@ GL_PREFIX(VertexAttribI2ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6656(%rax), %r11
+ movq 6664(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6656(%rax), %r11
+ movq 6664(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31510,7 +31547,7 @@ GL_PREFIX(VertexAttribI2ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6656(%rax), %r11
+ movq 6664(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI2ivEXT), .-GL_PREFIX(VertexAttribI2ivEXT)
@@ -31521,7 +31558,7 @@ GL_PREFIX(VertexAttribI2ivEXT):
GL_PREFIX(VertexAttribI2uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6664(%rax), %r11
+ movq 6672(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31531,13 +31568,13 @@ GL_PREFIX(VertexAttribI2uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6664(%rax), %r11
+ movq 6672(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6664(%rax), %r11
+ movq 6672(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31547,7 +31584,7 @@ GL_PREFIX(VertexAttribI2uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6664(%rax), %r11
+ movq 6672(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI2uiEXT), .-GL_PREFIX(VertexAttribI2uiEXT)
@@ -31558,7 +31595,7 @@ GL_PREFIX(VertexAttribI2uiEXT):
GL_PREFIX(VertexAttribI2uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6672(%rax), %r11
+ movq 6680(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31568,13 +31605,13 @@ GL_PREFIX(VertexAttribI2uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6672(%rax), %r11
+ movq 6680(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6672(%rax), %r11
+ movq 6680(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31584,7 +31621,7 @@ GL_PREFIX(VertexAttribI2uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6672(%rax), %r11
+ movq 6680(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI2uivEXT), .-GL_PREFIX(VertexAttribI2uivEXT)
@@ -31595,7 +31632,7 @@ GL_PREFIX(VertexAttribI2uivEXT):
GL_PREFIX(VertexAttribI3iEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6680(%rax), %r11
+ movq 6688(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31609,13 +31646,13 @@ GL_PREFIX(VertexAttribI3iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6680(%rax), %r11
+ movq 6688(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6680(%rax), %r11
+ movq 6688(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31629,7 +31666,7 @@ GL_PREFIX(VertexAttribI3iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6680(%rax), %r11
+ movq 6688(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI3iEXT), .-GL_PREFIX(VertexAttribI3iEXT)
@@ -31640,7 +31677,7 @@ GL_PREFIX(VertexAttribI3iEXT):
GL_PREFIX(VertexAttribI3ivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6688(%rax), %r11
+ movq 6696(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31650,13 +31687,13 @@ GL_PREFIX(VertexAttribI3ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6688(%rax), %r11
+ movq 6696(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6688(%rax), %r11
+ movq 6696(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31666,7 +31703,7 @@ GL_PREFIX(VertexAttribI3ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6688(%rax), %r11
+ movq 6696(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI3ivEXT), .-GL_PREFIX(VertexAttribI3ivEXT)
@@ -31677,7 +31714,7 @@ GL_PREFIX(VertexAttribI3ivEXT):
GL_PREFIX(VertexAttribI3uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6696(%rax), %r11
+ movq 6704(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31691,13 +31728,13 @@ GL_PREFIX(VertexAttribI3uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6696(%rax), %r11
+ movq 6704(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6696(%rax), %r11
+ movq 6704(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31711,7 +31748,7 @@ GL_PREFIX(VertexAttribI3uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6696(%rax), %r11
+ movq 6704(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI3uiEXT), .-GL_PREFIX(VertexAttribI3uiEXT)
@@ -31722,7 +31759,7 @@ GL_PREFIX(VertexAttribI3uiEXT):
GL_PREFIX(VertexAttribI3uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6704(%rax), %r11
+ movq 6712(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31732,13 +31769,13 @@ GL_PREFIX(VertexAttribI3uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6704(%rax), %r11
+ movq 6712(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6704(%rax), %r11
+ movq 6712(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31748,7 +31785,7 @@ GL_PREFIX(VertexAttribI3uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6704(%rax), %r11
+ movq 6712(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI3uivEXT), .-GL_PREFIX(VertexAttribI3uivEXT)
@@ -31759,7 +31796,7 @@ GL_PREFIX(VertexAttribI3uivEXT):
GL_PREFIX(VertexAttribI4bvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6712(%rax), %r11
+ movq 6720(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31769,13 +31806,13 @@ GL_PREFIX(VertexAttribI4bvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6712(%rax), %r11
+ movq 6720(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6712(%rax), %r11
+ movq 6720(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31785,7 +31822,7 @@ GL_PREFIX(VertexAttribI4bvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6712(%rax), %r11
+ movq 6720(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4bvEXT), .-GL_PREFIX(VertexAttribI4bvEXT)
@@ -31796,7 +31833,7 @@ GL_PREFIX(VertexAttribI4bvEXT):
GL_PREFIX(VertexAttribI4iEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6720(%rax), %r11
+ movq 6728(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31810,13 +31847,13 @@ GL_PREFIX(VertexAttribI4iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6720(%rax), %r11
+ movq 6728(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6720(%rax), %r11
+ movq 6728(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31830,7 +31867,7 @@ GL_PREFIX(VertexAttribI4iEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6720(%rax), %r11
+ movq 6728(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4iEXT), .-GL_PREFIX(VertexAttribI4iEXT)
@@ -31841,7 +31878,7 @@ GL_PREFIX(VertexAttribI4iEXT):
GL_PREFIX(VertexAttribI4ivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6728(%rax), %r11
+ movq 6736(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31851,13 +31888,13 @@ GL_PREFIX(VertexAttribI4ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6728(%rax), %r11
+ movq 6736(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6728(%rax), %r11
+ movq 6736(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31867,7 +31904,7 @@ GL_PREFIX(VertexAttribI4ivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6728(%rax), %r11
+ movq 6736(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4ivEXT), .-GL_PREFIX(VertexAttribI4ivEXT)
@@ -31878,7 +31915,7 @@ GL_PREFIX(VertexAttribI4ivEXT):
GL_PREFIX(VertexAttribI4svEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6736(%rax), %r11
+ movq 6744(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31888,13 +31925,13 @@ GL_PREFIX(VertexAttribI4svEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6736(%rax), %r11
+ movq 6744(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6736(%rax), %r11
+ movq 6744(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31904,7 +31941,7 @@ GL_PREFIX(VertexAttribI4svEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6736(%rax), %r11
+ movq 6744(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4svEXT), .-GL_PREFIX(VertexAttribI4svEXT)
@@ -31915,7 +31952,7 @@ GL_PREFIX(VertexAttribI4svEXT):
GL_PREFIX(VertexAttribI4ubvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6744(%rax), %r11
+ movq 6752(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31925,13 +31962,13 @@ GL_PREFIX(VertexAttribI4ubvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6744(%rax), %r11
+ movq 6752(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6744(%rax), %r11
+ movq 6752(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31941,7 +31978,7 @@ GL_PREFIX(VertexAttribI4ubvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6744(%rax), %r11
+ movq 6752(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4ubvEXT), .-GL_PREFIX(VertexAttribI4ubvEXT)
@@ -31952,7 +31989,7 @@ GL_PREFIX(VertexAttribI4ubvEXT):
GL_PREFIX(VertexAttribI4uiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6752(%rax), %r11
+ movq 6760(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -31966,13 +32003,13 @@ GL_PREFIX(VertexAttribI4uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6752(%rax), %r11
+ movq 6760(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6752(%rax), %r11
+ movq 6760(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -31986,7 +32023,7 @@ GL_PREFIX(VertexAttribI4uiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6752(%rax), %r11
+ movq 6760(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4uiEXT), .-GL_PREFIX(VertexAttribI4uiEXT)
@@ -31997,7 +32034,7 @@ GL_PREFIX(VertexAttribI4uiEXT):
GL_PREFIX(VertexAttribI4uivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6760(%rax), %r11
+ movq 6768(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32007,13 +32044,13 @@ GL_PREFIX(VertexAttribI4uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6760(%rax), %r11
+ movq 6768(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6760(%rax), %r11
+ movq 6768(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32023,7 +32060,7 @@ GL_PREFIX(VertexAttribI4uivEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6760(%rax), %r11
+ movq 6768(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4uivEXT), .-GL_PREFIX(VertexAttribI4uivEXT)
@@ -32034,7 +32071,7 @@ GL_PREFIX(VertexAttribI4uivEXT):
GL_PREFIX(VertexAttribI4usvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6768(%rax), %r11
+ movq 6776(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32044,13 +32081,13 @@ GL_PREFIX(VertexAttribI4usvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6768(%rax), %r11
+ movq 6776(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6768(%rax), %r11
+ movq 6776(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32060,7 +32097,7 @@ GL_PREFIX(VertexAttribI4usvEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6768(%rax), %r11
+ movq 6776(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribI4usvEXT), .-GL_PREFIX(VertexAttribI4usvEXT)
@@ -32071,7 +32108,7 @@ GL_PREFIX(VertexAttribI4usvEXT):
GL_PREFIX(VertexAttribIPointerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6776(%rax), %r11
+ movq 6784(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32085,13 +32122,13 @@ GL_PREFIX(VertexAttribIPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6776(%rax), %r11
+ movq 6784(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6776(%rax), %r11
+ movq 6784(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32105,7 +32142,7 @@ GL_PREFIX(VertexAttribIPointerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6776(%rax), %r11
+ movq 6784(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(VertexAttribIPointerEXT), .-GL_PREFIX(VertexAttribIPointerEXT)
@@ -32116,7 +32153,7 @@ GL_PREFIX(VertexAttribIPointerEXT):
GL_PREFIX(FramebufferTextureLayerEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6784(%rax), %r11
+ movq 6792(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32130,13 +32167,13 @@ GL_PREFIX(FramebufferTextureLayerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6784(%rax), %r11
+ movq 6792(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6784(%rax), %r11
+ movq 6792(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32150,7 +32187,7 @@ GL_PREFIX(FramebufferTextureLayerEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6784(%rax), %r11
+ movq 6792(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(FramebufferTextureLayerEXT), .-GL_PREFIX(FramebufferTextureLayerEXT)
@@ -32161,7 +32198,7 @@ GL_PREFIX(FramebufferTextureLayerEXT):
GL_PREFIX(ColorMaskIndexedEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6792(%rax), %r11
+ movq 6800(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32175,13 +32212,13 @@ GL_PREFIX(ColorMaskIndexedEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6792(%rax), %r11
+ movq 6800(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6792(%rax), %r11
+ movq 6800(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32195,7 +32232,7 @@ GL_PREFIX(ColorMaskIndexedEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6792(%rax), %r11
+ movq 6800(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ColorMaskIndexedEXT), .-GL_PREFIX(ColorMaskIndexedEXT)
@@ -32206,7 +32243,7 @@ GL_PREFIX(ColorMaskIndexedEXT):
GL_PREFIX(DisableIndexedEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6800(%rax), %r11
+ movq 6808(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32216,13 +32253,13 @@ GL_PREFIX(DisableIndexedEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6800(%rax), %r11
+ movq 6808(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6800(%rax), %r11
+ movq 6808(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32232,7 +32269,7 @@ GL_PREFIX(DisableIndexedEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6800(%rax), %r11
+ movq 6808(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(DisableIndexedEXT), .-GL_PREFIX(DisableIndexedEXT)
@@ -32243,7 +32280,7 @@ GL_PREFIX(DisableIndexedEXT):
GL_PREFIX(EnableIndexedEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6808(%rax), %r11
+ movq 6816(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32253,13 +32290,13 @@ GL_PREFIX(EnableIndexedEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6808(%rax), %r11
+ movq 6816(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6808(%rax), %r11
+ movq 6816(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32269,7 +32306,7 @@ GL_PREFIX(EnableIndexedEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6808(%rax), %r11
+ movq 6816(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EnableIndexedEXT), .-GL_PREFIX(EnableIndexedEXT)
@@ -32280,7 +32317,7 @@ GL_PREFIX(EnableIndexedEXT):
GL_PREFIX(GetBooleanIndexedvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6816(%rax), %r11
+ movq 6824(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32290,13 +32327,13 @@ GL_PREFIX(GetBooleanIndexedvEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6816(%rax), %r11
+ movq 6824(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6816(%rax), %r11
+ movq 6824(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32306,7 +32343,7 @@ GL_PREFIX(GetBooleanIndexedvEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6816(%rax), %r11
+ movq 6824(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetBooleanIndexedvEXT), .-GL_PREFIX(GetBooleanIndexedvEXT)
@@ -32317,7 +32354,7 @@ GL_PREFIX(GetBooleanIndexedvEXT):
GL_PREFIX(GetIntegerIndexedvEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6824(%rax), %r11
+ movq 6832(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32327,13 +32364,13 @@ GL_PREFIX(GetIntegerIndexedvEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6824(%rax), %r11
+ movq 6832(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6824(%rax), %r11
+ movq 6832(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32343,7 +32380,7 @@ GL_PREFIX(GetIntegerIndexedvEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6824(%rax), %r11
+ movq 6832(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetIntegerIndexedvEXT), .-GL_PREFIX(GetIntegerIndexedvEXT)
@@ -32354,7 +32391,7 @@ GL_PREFIX(GetIntegerIndexedvEXT):
GL_PREFIX(IsEnabledIndexedEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6832(%rax), %r11
+ movq 6840(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32364,13 +32401,13 @@ GL_PREFIX(IsEnabledIndexedEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6832(%rax), %r11
+ movq 6840(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6832(%rax), %r11
+ movq 6840(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32380,7 +32417,7 @@ GL_PREFIX(IsEnabledIndexedEXT):
popq %rbp
popq %rsi
popq %rdi
- movq 6832(%rax), %r11
+ movq 6840(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(IsEnabledIndexedEXT), .-GL_PREFIX(IsEnabledIndexedEXT)
@@ -32391,7 +32428,7 @@ GL_PREFIX(IsEnabledIndexedEXT):
GL_PREFIX(ClearColorIiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6840(%rax), %r11
+ movq 6848(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32405,13 +32442,13 @@ GL_PREFIX(ClearColorIiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6840(%rax), %r11
+ movq 6848(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6840(%rax), %r11
+ movq 6848(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32425,7 +32462,7 @@ GL_PREFIX(ClearColorIiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6840(%rax), %r11
+ movq 6848(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ClearColorIiEXT), .-GL_PREFIX(ClearColorIiEXT)
@@ -32436,7 +32473,7 @@ GL_PREFIX(ClearColorIiEXT):
GL_PREFIX(ClearColorIuiEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6848(%rax), %r11
+ movq 6856(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32450,13 +32487,13 @@ GL_PREFIX(ClearColorIuiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6848(%rax), %r11
+ movq 6856(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6848(%rax), %r11
+ movq 6856(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32470,7 +32507,7 @@ GL_PREFIX(ClearColorIuiEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6848(%rax), %r11
+ movq 6856(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ClearColorIuiEXT), .-GL_PREFIX(ClearColorIuiEXT)
@@ -32481,7 +32518,7 @@ GL_PREFIX(ClearColorIuiEXT):
GL_PREFIX(GetTexParameterIivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6856(%rax), %r11
+ movq 6864(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32491,13 +32528,13 @@ GL_PREFIX(GetTexParameterIivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6856(%rax), %r11
+ movq 6864(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6856(%rax), %r11
+ movq 6864(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32507,7 +32544,7 @@ GL_PREFIX(GetTexParameterIivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6856(%rax), %r11
+ movq 6864(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetTexParameterIivEXT), .-GL_PREFIX(GetTexParameterIivEXT)
@@ -32518,7 +32555,7 @@ GL_PREFIX(GetTexParameterIivEXT):
GL_PREFIX(GetTexParameterIuivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6864(%rax), %r11
+ movq 6872(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32528,13 +32565,13 @@ GL_PREFIX(GetTexParameterIuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6864(%rax), %r11
+ movq 6872(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6864(%rax), %r11
+ movq 6872(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32544,7 +32581,7 @@ GL_PREFIX(GetTexParameterIuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6864(%rax), %r11
+ movq 6872(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetTexParameterIuivEXT), .-GL_PREFIX(GetTexParameterIuivEXT)
@@ -32555,7 +32592,7 @@ GL_PREFIX(GetTexParameterIuivEXT):
GL_PREFIX(TexParameterIivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6872(%rax), %r11
+ movq 6880(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32565,13 +32602,13 @@ GL_PREFIX(TexParameterIivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6872(%rax), %r11
+ movq 6880(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6872(%rax), %r11
+ movq 6880(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32581,7 +32618,7 @@ GL_PREFIX(TexParameterIivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6872(%rax), %r11
+ movq 6880(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TexParameterIivEXT), .-GL_PREFIX(TexParameterIivEXT)
@@ -32592,7 +32629,7 @@ GL_PREFIX(TexParameterIivEXT):
GL_PREFIX(TexParameterIuivEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6880(%rax), %r11
+ movq 6888(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32602,13 +32639,13 @@ GL_PREFIX(TexParameterIuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6880(%rax), %r11
+ movq 6888(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6880(%rax), %r11
+ movq 6888(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32618,7 +32655,7 @@ GL_PREFIX(TexParameterIuivEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6880(%rax), %r11
+ movq 6888(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TexParameterIuivEXT), .-GL_PREFIX(TexParameterIuivEXT)
@@ -32629,7 +32666,7 @@ GL_PREFIX(TexParameterIuivEXT):
GL_PREFIX(BeginConditionalRenderNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6888(%rax), %r11
+ movq 6896(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32639,13 +32676,13 @@ GL_PREFIX(BeginConditionalRenderNV):
popq %rbp
popq %rsi
popq %rdi
- movq 6888(%rax), %r11
+ movq 6896(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6888(%rax), %r11
+ movq 6896(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32655,7 +32692,7 @@ GL_PREFIX(BeginConditionalRenderNV):
popq %rbp
popq %rsi
popq %rdi
- movq 6888(%rax), %r11
+ movq 6896(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BeginConditionalRenderNV), .-GL_PREFIX(BeginConditionalRenderNV)
@@ -32666,25 +32703,25 @@ GL_PREFIX(BeginConditionalRenderNV):
GL_PREFIX(EndConditionalRenderNV):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6896(%rax), %r11
+ movq 6904(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 6896(%rax), %r11
+ movq 6904(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6896(%rax), %r11
+ movq 6904(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 6896(%rax), %r11
+ movq 6904(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EndConditionalRenderNV), .-GL_PREFIX(EndConditionalRenderNV)
@@ -32695,25 +32732,25 @@ GL_PREFIX(EndConditionalRenderNV):
GL_PREFIX(BeginTransformFeedbackEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6904(%rax), %r11
+ movq 6912(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6904(%rax), %r11
+ movq 6912(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6904(%rax), %r11
+ movq 6912(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6904(%rax), %r11
+ movq 6912(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BeginTransformFeedbackEXT), .-GL_PREFIX(BeginTransformFeedbackEXT)
@@ -32724,7 +32761,7 @@ GL_PREFIX(BeginTransformFeedbackEXT):
GL_PREFIX(BindBufferBaseEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6912(%rax), %r11
+ movq 6920(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32734,13 +32771,13 @@ GL_PREFIX(BindBufferBaseEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6912(%rax), %r11
+ movq 6920(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6912(%rax), %r11
+ movq 6920(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32750,7 +32787,7 @@ GL_PREFIX(BindBufferBaseEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6912(%rax), %r11
+ movq 6920(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindBufferBaseEXT), .-GL_PREFIX(BindBufferBaseEXT)
@@ -32761,7 +32798,7 @@ GL_PREFIX(BindBufferBaseEXT):
GL_PREFIX(BindBufferOffsetEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6920(%rax), %r11
+ movq 6928(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32775,13 +32812,13 @@ GL_PREFIX(BindBufferOffsetEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6920(%rax), %r11
+ movq 6928(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6920(%rax), %r11
+ movq 6928(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32795,7 +32832,7 @@ GL_PREFIX(BindBufferOffsetEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6920(%rax), %r11
+ movq 6928(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindBufferOffsetEXT), .-GL_PREFIX(BindBufferOffsetEXT)
@@ -32806,7 +32843,7 @@ GL_PREFIX(BindBufferOffsetEXT):
GL_PREFIX(BindBufferRangeEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6928(%rax), %r11
+ movq 6936(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32820,13 +32857,13 @@ GL_PREFIX(BindBufferRangeEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6928(%rax), %r11
+ movq 6936(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6928(%rax), %r11
+ movq 6936(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32840,7 +32877,7 @@ GL_PREFIX(BindBufferRangeEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6928(%rax), %r11
+ movq 6936(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(BindBufferRangeEXT), .-GL_PREFIX(BindBufferRangeEXT)
@@ -32851,25 +32888,25 @@ GL_PREFIX(BindBufferRangeEXT):
GL_PREFIX(EndTransformFeedbackEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6936(%rax), %r11
+ movq 6944(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- movq 6936(%rax), %r11
+ movq 6944(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6936(%rax), %r11
+ movq 6944(%rax), %r11
jmp *%r11
1:
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- movq 6936(%rax), %r11
+ movq 6944(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EndTransformFeedbackEXT), .-GL_PREFIX(EndTransformFeedbackEXT)
@@ -32880,7 +32917,7 @@ GL_PREFIX(EndTransformFeedbackEXT):
GL_PREFIX(GetTransformFeedbackVaryingEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6944(%rax), %r11
+ movq 6952(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32898,13 +32935,13 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6944(%rax), %r11
+ movq 6952(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6944(%rax), %r11
+ movq 6952(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32922,7 +32959,7 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6944(%rax), %r11
+ movq 6952(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetTransformFeedbackVaryingEXT), .-GL_PREFIX(GetTransformFeedbackVaryingEXT)
@@ -32933,7 +32970,7 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT):
GL_PREFIX(TransformFeedbackVaryingsEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6952(%rax), %r11
+ movq 6960(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -32947,13 +32984,13 @@ GL_PREFIX(TransformFeedbackVaryingsEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6952(%rax), %r11
+ movq 6960(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6952(%rax), %r11
+ movq 6960(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -32967,7 +33004,7 @@ GL_PREFIX(TransformFeedbackVaryingsEXT):
popq %rdx
popq %rsi
popq %rdi
- movq 6952(%rax), %r11
+ movq 6960(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(TransformFeedbackVaryingsEXT), .-GL_PREFIX(TransformFeedbackVaryingsEXT)
@@ -32978,37 +33015,37 @@ GL_PREFIX(TransformFeedbackVaryingsEXT):
GL_PREFIX(ProvokingVertexEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6960(%rax), %r11
+ movq 6968(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
call _x86_64_get_dispatch@PLT
popq %rdi
- movq 6960(%rax), %r11
+ movq 6968(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6960(%rax), %r11
+ movq 6968(%rax), %r11
jmp *%r11
1:
pushq %rdi
call _glapi_get_dispatch
popq %rdi
- movq 6960(%rax), %r11
+ movq 6968(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ProvokingVertexEXT), .-GL_PREFIX(ProvokingVertexEXT)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_871)
- .type GL_PREFIX(_dispatch_stub_871), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_871))
-GL_PREFIX(_dispatch_stub_871):
+ .globl GL_PREFIX(_dispatch_stub_872)
+ .type GL_PREFIX(_dispatch_stub_872), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_872))
+GL_PREFIX(_dispatch_stub_872):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6968(%rax), %r11
+ movq 6976(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33018,13 +33055,13 @@ GL_PREFIX(_dispatch_stub_871):
popq %rdx
popq %rsi
popq %rdi
- movq 6968(%rax), %r11
+ movq 6976(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6968(%rax), %r11
+ movq 6976(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33034,19 +33071,19 @@ GL_PREFIX(_dispatch_stub_871):
popq %rdx
popq %rsi
popq %rdi
- movq 6968(%rax), %r11
+ movq 6976(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_871), .-GL_PREFIX(_dispatch_stub_871)
+ .size GL_PREFIX(_dispatch_stub_872), .-GL_PREFIX(_dispatch_stub_872)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_872)
- .type GL_PREFIX(_dispatch_stub_872), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_872))
-GL_PREFIX(_dispatch_stub_872):
+ .globl GL_PREFIX(_dispatch_stub_873)
+ .type GL_PREFIX(_dispatch_stub_873), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_873))
+GL_PREFIX(_dispatch_stub_873):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6976(%rax), %r11
+ movq 6984(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33056,13 +33093,13 @@ GL_PREFIX(_dispatch_stub_872):
popq %rdx
popq %rsi
popq %rdi
- movq 6976(%rax), %r11
+ movq 6984(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6976(%rax), %r11
+ movq 6984(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33072,10 +33109,10 @@ GL_PREFIX(_dispatch_stub_872):
popq %rdx
popq %rsi
popq %rdi
- movq 6976(%rax), %r11
+ movq 6984(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_872), .-GL_PREFIX(_dispatch_stub_872)
+ .size GL_PREFIX(_dispatch_stub_873), .-GL_PREFIX(_dispatch_stub_873)
.p2align 4,,15
.globl GL_PREFIX(GetObjectParameterivAPPLE)
@@ -33083,7 +33120,7 @@ GL_PREFIX(_dispatch_stub_872):
GL_PREFIX(GetObjectParameterivAPPLE):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6984(%rax), %r11
+ movq 6992(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33097,13 +33134,13 @@ GL_PREFIX(GetObjectParameterivAPPLE):
popq %rdx
popq %rsi
popq %rdi
- movq 6984(%rax), %r11
+ movq 6992(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6984(%rax), %r11
+ movq 6992(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33117,7 +33154,7 @@ GL_PREFIX(GetObjectParameterivAPPLE):
popq %rdx
popq %rsi
popq %rdi
- movq 6984(%rax), %r11
+ movq 6992(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(GetObjectParameterivAPPLE), .-GL_PREFIX(GetObjectParameterivAPPLE)
@@ -33128,7 +33165,7 @@ GL_PREFIX(GetObjectParameterivAPPLE):
GL_PREFIX(ObjectPurgeableAPPLE):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 6992(%rax), %r11
+ movq 7000(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33138,13 +33175,13 @@ GL_PREFIX(ObjectPurgeableAPPLE):
popq %rdx
popq %rsi
popq %rdi
- movq 6992(%rax), %r11
+ movq 7000(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 6992(%rax), %r11
+ movq 7000(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33154,7 +33191,7 @@ GL_PREFIX(ObjectPurgeableAPPLE):
popq %rdx
popq %rsi
popq %rdi
- movq 6992(%rax), %r11
+ movq 7000(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ObjectPurgeableAPPLE), .-GL_PREFIX(ObjectPurgeableAPPLE)
@@ -33165,7 +33202,7 @@ GL_PREFIX(ObjectPurgeableAPPLE):
GL_PREFIX(ObjectUnpurgeableAPPLE):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 7000(%rax), %r11
+ movq 7008(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33175,13 +33212,13 @@ GL_PREFIX(ObjectUnpurgeableAPPLE):
popq %rdx
popq %rsi
popq %rdi
- movq 7000(%rax), %r11
+ movq 7008(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 7000(%rax), %r11
+ movq 7008(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33191,7 +33228,7 @@ GL_PREFIX(ObjectUnpurgeableAPPLE):
popq %rdx
popq %rsi
popq %rdi
- movq 7000(%rax), %r11
+ movq 7008(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(ObjectUnpurgeableAPPLE), .-GL_PREFIX(ObjectUnpurgeableAPPLE)
@@ -33202,44 +33239,11 @@ GL_PREFIX(ObjectUnpurgeableAPPLE):
GL_PREFIX(ActiveProgramEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 7008(%rax), %r11
- jmp *%r11
-#elif defined(PTHREADS)
- pushq %rdi
- call _x86_64_get_dispatch@PLT
- popq %rdi
- movq 7008(%rax), %r11
- jmp *%r11
-#else
- movq _glapi_Dispatch(%rip), %rax
- testq %rax, %rax
- je 1f
- movq 7008(%rax), %r11
- jmp *%r11
-1:
- pushq %rdi
- call _glapi_get_dispatch
- popq %rdi
- movq 7008(%rax), %r11
- jmp *%r11
-#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(ActiveProgramEXT), .-GL_PREFIX(ActiveProgramEXT)
-
- .p2align 4,,15
- .globl GL_PREFIX(CreateShaderProgramEXT)
- .type GL_PREFIX(CreateShaderProgramEXT), @function
-GL_PREFIX(CreateShaderProgramEXT):
-#if defined(GLX_USE_TLS)
- call _x86_64_get_dispatch@PLT
movq 7016(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
- pushq %rsi
- pushq %rbp
call _x86_64_get_dispatch@PLT
- popq %rbp
- popq %rsi
popq %rdi
movq 7016(%rax), %r11
jmp *%r11
@@ -33251,21 +33255,17 @@ GL_PREFIX(CreateShaderProgramEXT):
jmp *%r11
1:
pushq %rdi
- pushq %rsi
- pushq %rbp
call _glapi_get_dispatch
- popq %rbp
- popq %rsi
popq %rdi
movq 7016(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(CreateShaderProgramEXT), .-GL_PREFIX(CreateShaderProgramEXT)
+ .size GL_PREFIX(ActiveProgramEXT), .-GL_PREFIX(ActiveProgramEXT)
.p2align 4,,15
- .globl GL_PREFIX(UseShaderProgramEXT)
- .type GL_PREFIX(UseShaderProgramEXT), @function
-GL_PREFIX(UseShaderProgramEXT):
+ .globl GL_PREFIX(CreateShaderProgramEXT)
+ .type GL_PREFIX(CreateShaderProgramEXT), @function
+GL_PREFIX(CreateShaderProgramEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
movq 7024(%rax), %r11
@@ -33297,13 +33297,12 @@ GL_PREFIX(UseShaderProgramEXT):
movq 7024(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(UseShaderProgramEXT), .-GL_PREFIX(UseShaderProgramEXT)
+ .size GL_PREFIX(CreateShaderProgramEXT), .-GL_PREFIX(CreateShaderProgramEXT)
.p2align 4,,15
- .globl GL_PREFIX(_dispatch_stub_879)
- .type GL_PREFIX(_dispatch_stub_879), @function
- HIDDEN(GL_PREFIX(_dispatch_stub_879))
-GL_PREFIX(_dispatch_stub_879):
+ .globl GL_PREFIX(UseShaderProgramEXT)
+ .type GL_PREFIX(UseShaderProgramEXT), @function
+GL_PREFIX(UseShaderProgramEXT):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
movq 7032(%rax), %r11
@@ -33311,13 +33310,9 @@ GL_PREFIX(_dispatch_stub_879):
#elif defined(PTHREADS)
pushq %rdi
pushq %rsi
- pushq %rdx
- pushq %rcx
pushq %rbp
call _x86_64_get_dispatch@PLT
popq %rbp
- popq %rcx
- popq %rdx
popq %rsi
popq %rdi
movq 7032(%rax), %r11
@@ -33331,19 +33326,15 @@ GL_PREFIX(_dispatch_stub_879):
1:
pushq %rdi
pushq %rsi
- pushq %rdx
- pushq %rcx
pushq %rbp
call _glapi_get_dispatch
popq %rbp
- popq %rcx
- popq %rdx
popq %rsi
popq %rdi
movq 7032(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
- .size GL_PREFIX(_dispatch_stub_879), .-GL_PREFIX(_dispatch_stub_879)
+ .size GL_PREFIX(UseShaderProgramEXT), .-GL_PREFIX(UseShaderProgramEXT)
.p2align 4,,15
.globl GL_PREFIX(_dispatch_stub_880)
@@ -33450,7 +33441,11 @@ GL_PREFIX(_dispatch_stub_882):
pushq %rdi
pushq %rsi
pushq %rdx
+ pushq %rcx
+ pushq %rbp
call _x86_64_get_dispatch@PLT
+ popq %rbp
+ popq %rcx
popq %rdx
popq %rsi
popq %rdi
@@ -33466,7 +33461,11 @@ GL_PREFIX(_dispatch_stub_882):
pushq %rdi
pushq %rsi
pushq %rdx
+ pushq %rcx
+ pushq %rbp
call _glapi_get_dispatch
+ popq %rbp
+ popq %rcx
popq %rdx
popq %rsi
popq %rdi
@@ -33514,12 +33513,50 @@ GL_PREFIX(_dispatch_stub_883):
.size GL_PREFIX(_dispatch_stub_883), .-GL_PREFIX(_dispatch_stub_883)
.p2align 4,,15
+ .globl GL_PREFIX(_dispatch_stub_884)
+ .type GL_PREFIX(_dispatch_stub_884), @function
+ HIDDEN(GL_PREFIX(_dispatch_stub_884))
+GL_PREFIX(_dispatch_stub_884):
+#if defined(GLX_USE_TLS)
+ call _x86_64_get_dispatch@PLT
+ movq 7072(%rax), %r11
+ jmp *%r11
+#elif defined(PTHREADS)
+ pushq %rdi
+ pushq %rsi
+ pushq %rdx
+ call _x86_64_get_dispatch@PLT
+ popq %rdx
+ popq %rsi
+ popq %rdi
+ movq 7072(%rax), %r11
+ jmp *%r11
+#else
+ movq _glapi_Dispatch(%rip), %rax
+ testq %rax, %rax
+ je 1f
+ movq 7072(%rax), %r11
+ jmp *%r11
+1:
+ pushq %rdi
+ pushq %rsi
+ pushq %rdx
+ call _glapi_get_dispatch
+ popq %rdx
+ popq %rsi
+ popq %rdi
+ movq 7072(%rax), %r11
+ jmp *%r11
+#endif /* defined(GLX_USE_TLS) */
+ .size GL_PREFIX(_dispatch_stub_884), .-GL_PREFIX(_dispatch_stub_884)
+
+ .p2align 4,,15
.globl GL_PREFIX(EGLImageTargetRenderbufferStorageOES)
.type GL_PREFIX(EGLImageTargetRenderbufferStorageOES), @function
GL_PREFIX(EGLImageTargetRenderbufferStorageOES):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 7072(%rax), %r11
+ movq 7080(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33529,13 +33566,13 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES):
popq %rbp
popq %rsi
popq %rdi
- movq 7072(%rax), %r11
+ movq 7080(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 7072(%rax), %r11
+ movq 7080(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33545,7 +33582,7 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES):
popq %rbp
popq %rsi
popq %rdi
- movq 7072(%rax), %r11
+ movq 7080(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EGLImageTargetRenderbufferStorageOES), .-GL_PREFIX(EGLImageTargetRenderbufferStorageOES)
@@ -33556,7 +33593,7 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES):
GL_PREFIX(EGLImageTargetTexture2DOES):
#if defined(GLX_USE_TLS)
call _x86_64_get_dispatch@PLT
- movq 7080(%rax), %r11
+ movq 7088(%rax), %r11
jmp *%r11
#elif defined(PTHREADS)
pushq %rdi
@@ -33566,13 +33603,13 @@ GL_PREFIX(EGLImageTargetTexture2DOES):
popq %rbp
popq %rsi
popq %rdi
- movq 7080(%rax), %r11
+ movq 7088(%rax), %r11
jmp *%r11
#else
movq _glapi_Dispatch(%rip), %rax
testq %rax, %rax
je 1f
- movq 7080(%rax), %r11
+ movq 7088(%rax), %r11
jmp *%r11
1:
pushq %rdi
@@ -33582,7 +33619,7 @@ GL_PREFIX(EGLImageTargetTexture2DOES):
popq %rbp
popq %rsi
popq %rdi
- movq 7080(%rax), %r11
+ movq 7088(%rax), %r11
jmp *%r11
#endif /* defined(GLX_USE_TLS) */
.size GL_PREFIX(EGLImageTargetTexture2DOES), .-GL_PREFIX(EGLImageTargetTexture2DOES)
@@ -33845,10 +33882,10 @@ GL_PREFIX(EGLImageTargetTexture2DOES):
.globl GL_PREFIX(IsProgramARB) ; .set GL_PREFIX(IsProgramARB), GL_PREFIX(IsProgramNV)
.globl GL_PREFIX(PointParameteri) ; .set GL_PREFIX(PointParameteri), GL_PREFIX(PointParameteriNV)
.globl GL_PREFIX(PointParameteriv) ; .set GL_PREFIX(PointParameteriv), GL_PREFIX(PointParameterivNV)
- .globl GL_PREFIX(DeleteVertexArrays) ; .set GL_PREFIX(DeleteVertexArrays), GL_PREFIX(_dispatch_stub_781)
- .globl GL_PREFIX(IsVertexArray) ; .set GL_PREFIX(IsVertexArray), GL_PREFIX(_dispatch_stub_783)
+ .globl GL_PREFIX(DeleteVertexArrays) ; .set GL_PREFIX(DeleteVertexArrays), GL_PREFIX(_dispatch_stub_782)
+ .globl GL_PREFIX(IsVertexArray) ; .set GL_PREFIX(IsVertexArray), GL_PREFIX(_dispatch_stub_784)
.globl GL_PREFIX(PrimitiveRestartIndex) ; .set GL_PREFIX(PrimitiveRestartIndex), GL_PREFIX(PrimitiveRestartIndexNV)
- .globl GL_PREFIX(BlendEquationSeparate) ; .set GL_PREFIX(BlendEquationSeparate), GL_PREFIX(_dispatch_stub_793)
+ .globl GL_PREFIX(BlendEquationSeparate) ; .set GL_PREFIX(BlendEquationSeparate), GL_PREFIX(_dispatch_stub_794)
.globl GL_PREFIX(BindFramebuffer) ; .set GL_PREFIX(BindFramebuffer), GL_PREFIX(BindFramebufferEXT)
.globl GL_PREFIX(BindRenderbuffer) ; .set GL_PREFIX(BindRenderbuffer), GL_PREFIX(BindRenderbufferEXT)
.globl GL_PREFIX(CheckFramebufferStatus) ; .set GL_PREFIX(CheckFramebufferStatus), GL_PREFIX(CheckFramebufferStatusEXT)
@@ -33866,7 +33903,7 @@ GL_PREFIX(EGLImageTargetTexture2DOES):
.globl GL_PREFIX(IsFramebuffer) ; .set GL_PREFIX(IsFramebuffer), GL_PREFIX(IsFramebufferEXT)
.globl GL_PREFIX(IsRenderbuffer) ; .set GL_PREFIX(IsRenderbuffer), GL_PREFIX(IsRenderbufferEXT)
.globl GL_PREFIX(RenderbufferStorage) ; .set GL_PREFIX(RenderbufferStorage), GL_PREFIX(RenderbufferStorageEXT)
- .globl GL_PREFIX(BlitFramebuffer) ; .set GL_PREFIX(BlitFramebuffer), GL_PREFIX(_dispatch_stub_811)
+ .globl GL_PREFIX(BlitFramebuffer) ; .set GL_PREFIX(BlitFramebuffer), GL_PREFIX(_dispatch_stub_812)
.globl GL_PREFIX(BindFragDataLocation) ; .set GL_PREFIX(BindFragDataLocation), GL_PREFIX(BindFragDataLocationEXT)
.globl GL_PREFIX(GetFragDataLocation) ; .set GL_PREFIX(GetFragDataLocation), GL_PREFIX(GetFragDataLocationEXT)
.globl GL_PREFIX(GetUniformuiv) ; .set GL_PREFIX(GetUniformuiv), GL_PREFIX(GetUniformuivEXT)
diff --git a/src/mapi/glapi/glapi_x86.S b/src/mapi/glapi/glapi_x86.S
index e087b3339bb..347cc1223c4 100644
--- a/src/mapi/glapi/glapi_x86.S
+++ b/src/mapi/glapi/glapi_x86.S
@@ -728,36 +728,35 @@ GLNAME(gl_dispatch_functions_start):
GL_STUB(FramebufferTextureARB, 575, FramebufferTextureARB@16)
GL_STUB(FramebufferTextureFaceARB, 576, FramebufferTextureFaceARB@20)
GL_STUB(ProgramParameteriARB, 577, ProgramParameteriARB@12)
- GL_STUB(FlushMappedBufferRange, 578, FlushMappedBufferRange@12)
- GL_STUB(MapBufferRange, 579, MapBufferRange@16)
- GL_STUB(BindVertexArray, 580, BindVertexArray@4)
- GL_STUB(GenVertexArrays, 581, GenVertexArrays@8)
- GL_STUB(CopyBufferSubData, 582, CopyBufferSubData@20)
- GL_STUB(ClientWaitSync, 583, ClientWaitSync@12)
- GL_STUB(DeleteSync, 584, DeleteSync@4)
- GL_STUB(FenceSync, 585, FenceSync@8)
- GL_STUB(GetInteger64v, 586, GetInteger64v@8)
- GL_STUB(GetSynciv, 587, GetSynciv@20)
- GL_STUB(IsSync, 588, IsSync@4)
- GL_STUB(WaitSync, 589, WaitSync@12)
- GL_STUB(DrawElementsBaseVertex, 590, DrawElementsBaseVertex@20)
- GL_STUB(DrawRangeElementsBaseVertex, 591, DrawRangeElementsBaseVertex@28)
- GL_STUB(MultiDrawElementsBaseVertex, 592, MultiDrawElementsBaseVertex@24)
- GL_STUB(BindTransformFeedback, 593, BindTransformFeedback@8)
- GL_STUB(DeleteTransformFeedbacks, 594, DeleteTransformFeedbacks@8)
- GL_STUB(DrawTransformFeedback, 595, DrawTransformFeedback@8)
- GL_STUB(GenTransformFeedbacks, 596, GenTransformFeedbacks@8)
- GL_STUB(IsTransformFeedback, 597, IsTransformFeedback@4)
- GL_STUB(PauseTransformFeedback, 598, PauseTransformFeedback@0)
- GL_STUB(ResumeTransformFeedback, 599, ResumeTransformFeedback@0)
- GL_STUB(ClearDepthf, 600, ClearDepthf@4)
- GL_STUB(DepthRangef, 601, DepthRangef@8)
- GL_STUB(GetShaderPrecisionFormat, 602, GetShaderPrecisionFormat@16)
- GL_STUB(ReleaseShaderCompiler, 603, ReleaseShaderCompiler@0)
- GL_STUB(ShaderBinary, 604, ShaderBinary@20)
- GL_STUB(PolygonOffsetEXT, 605, PolygonOffsetEXT@8)
- GL_STUB(_dispatch_stub_606, 606, _dispatch_stub_606@8)
- HIDDEN(GL_PREFIX(_dispatch_stub_606, _dispatch_stub_606@8))
+ GL_STUB(VertexAttribDivisorARB, 578, VertexAttribDivisorARB@8)
+ GL_STUB(FlushMappedBufferRange, 579, FlushMappedBufferRange@12)
+ GL_STUB(MapBufferRange, 580, MapBufferRange@16)
+ GL_STUB(BindVertexArray, 581, BindVertexArray@4)
+ GL_STUB(GenVertexArrays, 582, GenVertexArrays@8)
+ GL_STUB(CopyBufferSubData, 583, CopyBufferSubData@20)
+ GL_STUB(ClientWaitSync, 584, ClientWaitSync@12)
+ GL_STUB(DeleteSync, 585, DeleteSync@4)
+ GL_STUB(FenceSync, 586, FenceSync@8)
+ GL_STUB(GetInteger64v, 587, GetInteger64v@8)
+ GL_STUB(GetSynciv, 588, GetSynciv@20)
+ GL_STUB(IsSync, 589, IsSync@4)
+ GL_STUB(WaitSync, 590, WaitSync@12)
+ GL_STUB(DrawElementsBaseVertex, 591, DrawElementsBaseVertex@20)
+ GL_STUB(DrawRangeElementsBaseVertex, 592, DrawRangeElementsBaseVertex@28)
+ GL_STUB(MultiDrawElementsBaseVertex, 593, MultiDrawElementsBaseVertex@24)
+ GL_STUB(BindTransformFeedback, 594, BindTransformFeedback@8)
+ GL_STUB(DeleteTransformFeedbacks, 595, DeleteTransformFeedbacks@8)
+ GL_STUB(DrawTransformFeedback, 596, DrawTransformFeedback@8)
+ GL_STUB(GenTransformFeedbacks, 597, GenTransformFeedbacks@8)
+ GL_STUB(IsTransformFeedback, 598, IsTransformFeedback@4)
+ GL_STUB(PauseTransformFeedback, 599, PauseTransformFeedback@0)
+ GL_STUB(ResumeTransformFeedback, 600, ResumeTransformFeedback@0)
+ GL_STUB(ClearDepthf, 601, ClearDepthf@4)
+ GL_STUB(DepthRangef, 602, DepthRangef@8)
+ GL_STUB(GetShaderPrecisionFormat, 603, GetShaderPrecisionFormat@16)
+ GL_STUB(ReleaseShaderCompiler, 604, ReleaseShaderCompiler@0)
+ GL_STUB(ShaderBinary, 605, ShaderBinary@20)
+ GL_STUB(PolygonOffsetEXT, 606, PolygonOffsetEXT@8)
GL_STUB(_dispatch_stub_607, 607, _dispatch_stub_607@8)
HIDDEN(GL_PREFIX(_dispatch_stub_607, _dispatch_stub_607@8))
GL_STUB(_dispatch_stub_608, 608, _dispatch_stub_608@8)
@@ -770,307 +769,309 @@ GLNAME(gl_dispatch_functions_start):
HIDDEN(GL_PREFIX(_dispatch_stub_611, _dispatch_stub_611@8))
GL_STUB(_dispatch_stub_612, 612, _dispatch_stub_612@8)
HIDDEN(GL_PREFIX(_dispatch_stub_612, _dispatch_stub_612@8))
- GL_STUB(_dispatch_stub_613, 613, _dispatch_stub_613@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_613, _dispatch_stub_613@4))
- GL_STUB(ColorPointerEXT, 614, ColorPointerEXT@20)
- GL_STUB(EdgeFlagPointerEXT, 615, EdgeFlagPointerEXT@12)
- GL_STUB(IndexPointerEXT, 616, IndexPointerEXT@16)
- GL_STUB(NormalPointerEXT, 617, NormalPointerEXT@16)
- GL_STUB(TexCoordPointerEXT, 618, TexCoordPointerEXT@20)
- GL_STUB(VertexPointerEXT, 619, VertexPointerEXT@20)
- GL_STUB(PointParameterfEXT, 620, PointParameterfEXT@8)
- GL_STUB(PointParameterfvEXT, 621, PointParameterfvEXT@8)
- GL_STUB(LockArraysEXT, 622, LockArraysEXT@8)
- GL_STUB(UnlockArraysEXT, 623, UnlockArraysEXT@0)
- GL_STUB(SecondaryColor3bEXT, 624, SecondaryColor3bEXT@12)
- GL_STUB(SecondaryColor3bvEXT, 625, SecondaryColor3bvEXT@4)
- GL_STUB(SecondaryColor3dEXT, 626, SecondaryColor3dEXT@24)
- GL_STUB(SecondaryColor3dvEXT, 627, SecondaryColor3dvEXT@4)
- GL_STUB(SecondaryColor3fEXT, 628, SecondaryColor3fEXT@12)
- GL_STUB(SecondaryColor3fvEXT, 629, SecondaryColor3fvEXT@4)
- GL_STUB(SecondaryColor3iEXT, 630, SecondaryColor3iEXT@12)
- GL_STUB(SecondaryColor3ivEXT, 631, SecondaryColor3ivEXT@4)
- GL_STUB(SecondaryColor3sEXT, 632, SecondaryColor3sEXT@12)
- GL_STUB(SecondaryColor3svEXT, 633, SecondaryColor3svEXT@4)
- GL_STUB(SecondaryColor3ubEXT, 634, SecondaryColor3ubEXT@12)
- GL_STUB(SecondaryColor3ubvEXT, 635, SecondaryColor3ubvEXT@4)
- GL_STUB(SecondaryColor3uiEXT, 636, SecondaryColor3uiEXT@12)
- GL_STUB(SecondaryColor3uivEXT, 637, SecondaryColor3uivEXT@4)
- GL_STUB(SecondaryColor3usEXT, 638, SecondaryColor3usEXT@12)
- GL_STUB(SecondaryColor3usvEXT, 639, SecondaryColor3usvEXT@4)
- GL_STUB(SecondaryColorPointerEXT, 640, SecondaryColorPointerEXT@16)
- GL_STUB(MultiDrawArraysEXT, 641, MultiDrawArraysEXT@16)
- GL_STUB(MultiDrawElementsEXT, 642, MultiDrawElementsEXT@20)
- GL_STUB(FogCoordPointerEXT, 643, FogCoordPointerEXT@12)
- GL_STUB(FogCoorddEXT, 644, FogCoorddEXT@8)
- GL_STUB(FogCoorddvEXT, 645, FogCoorddvEXT@4)
- GL_STUB(FogCoordfEXT, 646, FogCoordfEXT@4)
- GL_STUB(FogCoordfvEXT, 647, FogCoordfvEXT@4)
- GL_STUB(_dispatch_stub_648, 648, _dispatch_stub_648@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_648, _dispatch_stub_648@4))
- GL_STUB(BlendFuncSeparateEXT, 649, BlendFuncSeparateEXT@16)
- GL_STUB(FlushVertexArrayRangeNV, 650, FlushVertexArrayRangeNV@0)
- GL_STUB(VertexArrayRangeNV, 651, VertexArrayRangeNV@8)
- GL_STUB(CombinerInputNV, 652, CombinerInputNV@24)
- GL_STUB(CombinerOutputNV, 653, CombinerOutputNV@40)
- GL_STUB(CombinerParameterfNV, 654, CombinerParameterfNV@8)
- GL_STUB(CombinerParameterfvNV, 655, CombinerParameterfvNV@8)
- GL_STUB(CombinerParameteriNV, 656, CombinerParameteriNV@8)
- GL_STUB(CombinerParameterivNV, 657, CombinerParameterivNV@8)
- GL_STUB(FinalCombinerInputNV, 658, FinalCombinerInputNV@16)
- GL_STUB(GetCombinerInputParameterfvNV, 659, GetCombinerInputParameterfvNV@20)
- GL_STUB(GetCombinerInputParameterivNV, 660, GetCombinerInputParameterivNV@20)
- GL_STUB(GetCombinerOutputParameterfvNV, 661, GetCombinerOutputParameterfvNV@16)
- GL_STUB(GetCombinerOutputParameterivNV, 662, GetCombinerOutputParameterivNV@16)
- GL_STUB(GetFinalCombinerInputParameterfvNV, 663, GetFinalCombinerInputParameterfvNV@12)
- GL_STUB(GetFinalCombinerInputParameterivNV, 664, GetFinalCombinerInputParameterivNV@12)
- GL_STUB(ResizeBuffersMESA, 665, ResizeBuffersMESA@0)
- GL_STUB(WindowPos2dMESA, 666, WindowPos2dMESA@16)
- GL_STUB(WindowPos2dvMESA, 667, WindowPos2dvMESA@4)
- GL_STUB(WindowPos2fMESA, 668, WindowPos2fMESA@8)
- GL_STUB(WindowPos2fvMESA, 669, WindowPos2fvMESA@4)
- GL_STUB(WindowPos2iMESA, 670, WindowPos2iMESA@8)
- GL_STUB(WindowPos2ivMESA, 671, WindowPos2ivMESA@4)
- GL_STUB(WindowPos2sMESA, 672, WindowPos2sMESA@8)
- GL_STUB(WindowPos2svMESA, 673, WindowPos2svMESA@4)
- GL_STUB(WindowPos3dMESA, 674, WindowPos3dMESA@24)
- GL_STUB(WindowPos3dvMESA, 675, WindowPos3dvMESA@4)
- GL_STUB(WindowPos3fMESA, 676, WindowPos3fMESA@12)
- GL_STUB(WindowPos3fvMESA, 677, WindowPos3fvMESA@4)
- GL_STUB(WindowPos3iMESA, 678, WindowPos3iMESA@12)
- GL_STUB(WindowPos3ivMESA, 679, WindowPos3ivMESA@4)
- GL_STUB(WindowPos3sMESA, 680, WindowPos3sMESA@12)
- GL_STUB(WindowPos3svMESA, 681, WindowPos3svMESA@4)
- GL_STUB(WindowPos4dMESA, 682, WindowPos4dMESA@32)
- GL_STUB(WindowPos4dvMESA, 683, WindowPos4dvMESA@4)
- GL_STUB(WindowPos4fMESA, 684, WindowPos4fMESA@16)
- GL_STUB(WindowPos4fvMESA, 685, WindowPos4fvMESA@4)
- GL_STUB(WindowPos4iMESA, 686, WindowPos4iMESA@16)
- GL_STUB(WindowPos4ivMESA, 687, WindowPos4ivMESA@4)
- GL_STUB(WindowPos4sMESA, 688, WindowPos4sMESA@16)
- GL_STUB(WindowPos4svMESA, 689, WindowPos4svMESA@4)
- GL_STUB(_dispatch_stub_690, 690, _dispatch_stub_690@20)
- HIDDEN(GL_PREFIX(_dispatch_stub_690, _dispatch_stub_690@20))
- GL_STUB(_dispatch_stub_691, 691, _dispatch_stub_691@24)
- HIDDEN(GL_PREFIX(_dispatch_stub_691, _dispatch_stub_691@24))
- GL_STUB(_dispatch_stub_692, 692, _dispatch_stub_692@8)
- HIDDEN(GL_PREFIX(_dispatch_stub_692, _dispatch_stub_692@8))
- GL_STUB(_dispatch_stub_693, 693, _dispatch_stub_693@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_693, _dispatch_stub_693@4))
- GL_STUB(_dispatch_stub_694, 694, _dispatch_stub_694@8)
- HIDDEN(GL_PREFIX(_dispatch_stub_694, _dispatch_stub_694@8))
- GL_STUB(_dispatch_stub_695, 695, _dispatch_stub_695@12)
- HIDDEN(GL_PREFIX(_dispatch_stub_695, _dispatch_stub_695@12))
- GL_STUB(_dispatch_stub_696, 696, _dispatch_stub_696@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_696, _dispatch_stub_696@4))
- GL_STUB(_dispatch_stub_697, 697, _dispatch_stub_697@8)
- HIDDEN(GL_PREFIX(_dispatch_stub_697, _dispatch_stub_697@8))
- GL_STUB(_dispatch_stub_698, 698, _dispatch_stub_698@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_698, _dispatch_stub_698@4))
- GL_STUB(AreProgramsResidentNV, 699, AreProgramsResidentNV@12)
- GL_STUB(BindProgramNV, 700, BindProgramNV@8)
- GL_STUB(DeleteProgramsNV, 701, DeleteProgramsNV@8)
- GL_STUB(ExecuteProgramNV, 702, ExecuteProgramNV@12)
- GL_STUB(GenProgramsNV, 703, GenProgramsNV@8)
- GL_STUB(GetProgramParameterdvNV, 704, GetProgramParameterdvNV@16)
- GL_STUB(GetProgramParameterfvNV, 705, GetProgramParameterfvNV@16)
- GL_STUB(GetProgramStringNV, 706, GetProgramStringNV@12)
- GL_STUB(GetProgramivNV, 707, GetProgramivNV@12)
- GL_STUB(GetTrackMatrixivNV, 708, GetTrackMatrixivNV@16)
- GL_STUB(GetVertexAttribPointervNV, 709, GetVertexAttribPointervNV@12)
- GL_STUB(GetVertexAttribdvNV, 710, GetVertexAttribdvNV@12)
- GL_STUB(GetVertexAttribfvNV, 711, GetVertexAttribfvNV@12)
- GL_STUB(GetVertexAttribivNV, 712, GetVertexAttribivNV@12)
- GL_STUB(IsProgramNV, 713, IsProgramNV@4)
- GL_STUB(LoadProgramNV, 714, LoadProgramNV@16)
- GL_STUB(ProgramParameters4dvNV, 715, ProgramParameters4dvNV@16)
- GL_STUB(ProgramParameters4fvNV, 716, ProgramParameters4fvNV@16)
- GL_STUB(RequestResidentProgramsNV, 717, RequestResidentProgramsNV@8)
- GL_STUB(TrackMatrixNV, 718, TrackMatrixNV@16)
- GL_STUB(VertexAttrib1dNV, 719, VertexAttrib1dNV@12)
- GL_STUB(VertexAttrib1dvNV, 720, VertexAttrib1dvNV@8)
- GL_STUB(VertexAttrib1fNV, 721, VertexAttrib1fNV@8)
- GL_STUB(VertexAttrib1fvNV, 722, VertexAttrib1fvNV@8)
- GL_STUB(VertexAttrib1sNV, 723, VertexAttrib1sNV@8)
- GL_STUB(VertexAttrib1svNV, 724, VertexAttrib1svNV@8)
- GL_STUB(VertexAttrib2dNV, 725, VertexAttrib2dNV@20)
- GL_STUB(VertexAttrib2dvNV, 726, VertexAttrib2dvNV@8)
- GL_STUB(VertexAttrib2fNV, 727, VertexAttrib2fNV@12)
- GL_STUB(VertexAttrib2fvNV, 728, VertexAttrib2fvNV@8)
- GL_STUB(VertexAttrib2sNV, 729, VertexAttrib2sNV@12)
- GL_STUB(VertexAttrib2svNV, 730, VertexAttrib2svNV@8)
- GL_STUB(VertexAttrib3dNV, 731, VertexAttrib3dNV@28)
- GL_STUB(VertexAttrib3dvNV, 732, VertexAttrib3dvNV@8)
- GL_STUB(VertexAttrib3fNV, 733, VertexAttrib3fNV@16)
- GL_STUB(VertexAttrib3fvNV, 734, VertexAttrib3fvNV@8)
- GL_STUB(VertexAttrib3sNV, 735, VertexAttrib3sNV@16)
- GL_STUB(VertexAttrib3svNV, 736, VertexAttrib3svNV@8)
- GL_STUB(VertexAttrib4dNV, 737, VertexAttrib4dNV@36)
- GL_STUB(VertexAttrib4dvNV, 738, VertexAttrib4dvNV@8)
- GL_STUB(VertexAttrib4fNV, 739, VertexAttrib4fNV@20)
- GL_STUB(VertexAttrib4fvNV, 740, VertexAttrib4fvNV@8)
- GL_STUB(VertexAttrib4sNV, 741, VertexAttrib4sNV@20)
- GL_STUB(VertexAttrib4svNV, 742, VertexAttrib4svNV@8)
- GL_STUB(VertexAttrib4ubNV, 743, VertexAttrib4ubNV@20)
- GL_STUB(VertexAttrib4ubvNV, 744, VertexAttrib4ubvNV@8)
- GL_STUB(VertexAttribPointerNV, 745, VertexAttribPointerNV@20)
- GL_STUB(VertexAttribs1dvNV, 746, VertexAttribs1dvNV@12)
- GL_STUB(VertexAttribs1fvNV, 747, VertexAttribs1fvNV@12)
- GL_STUB(VertexAttribs1svNV, 748, VertexAttribs1svNV@12)
- GL_STUB(VertexAttribs2dvNV, 749, VertexAttribs2dvNV@12)
- GL_STUB(VertexAttribs2fvNV, 750, VertexAttribs2fvNV@12)
- GL_STUB(VertexAttribs2svNV, 751, VertexAttribs2svNV@12)
- GL_STUB(VertexAttribs3dvNV, 752, VertexAttribs3dvNV@12)
- GL_STUB(VertexAttribs3fvNV, 753, VertexAttribs3fvNV@12)
- GL_STUB(VertexAttribs3svNV, 754, VertexAttribs3svNV@12)
- GL_STUB(VertexAttribs4dvNV, 755, VertexAttribs4dvNV@12)
- GL_STUB(VertexAttribs4fvNV, 756, VertexAttribs4fvNV@12)
- GL_STUB(VertexAttribs4svNV, 757, VertexAttribs4svNV@12)
- GL_STUB(VertexAttribs4ubvNV, 758, VertexAttribs4ubvNV@12)
- GL_STUB(GetTexBumpParameterfvATI, 759, GetTexBumpParameterfvATI@8)
- GL_STUB(GetTexBumpParameterivATI, 760, GetTexBumpParameterivATI@8)
- GL_STUB(TexBumpParameterfvATI, 761, TexBumpParameterfvATI@8)
- GL_STUB(TexBumpParameterivATI, 762, TexBumpParameterivATI@8)
- GL_STUB(AlphaFragmentOp1ATI, 763, AlphaFragmentOp1ATI@24)
- GL_STUB(AlphaFragmentOp2ATI, 764, AlphaFragmentOp2ATI@36)
- GL_STUB(AlphaFragmentOp3ATI, 765, AlphaFragmentOp3ATI@48)
- GL_STUB(BeginFragmentShaderATI, 766, BeginFragmentShaderATI@0)
- GL_STUB(BindFragmentShaderATI, 767, BindFragmentShaderATI@4)
- GL_STUB(ColorFragmentOp1ATI, 768, ColorFragmentOp1ATI@28)
- GL_STUB(ColorFragmentOp2ATI, 769, ColorFragmentOp2ATI@40)
- GL_STUB(ColorFragmentOp3ATI, 770, ColorFragmentOp3ATI@52)
- GL_STUB(DeleteFragmentShaderATI, 771, DeleteFragmentShaderATI@4)
- GL_STUB(EndFragmentShaderATI, 772, EndFragmentShaderATI@0)
- GL_STUB(GenFragmentShadersATI, 773, GenFragmentShadersATI@4)
- GL_STUB(PassTexCoordATI, 774, PassTexCoordATI@12)
- GL_STUB(SampleMapATI, 775, SampleMapATI@12)
- GL_STUB(SetFragmentShaderConstantATI, 776, SetFragmentShaderConstantATI@8)
- GL_STUB(PointParameteriNV, 777, PointParameteriNV@8)
- GL_STUB(PointParameterivNV, 778, PointParameterivNV@8)
- GL_STUB(_dispatch_stub_779, 779, _dispatch_stub_779@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_779, _dispatch_stub_779@4))
+ GL_STUB(_dispatch_stub_613, 613, _dispatch_stub_613@8)
+ HIDDEN(GL_PREFIX(_dispatch_stub_613, _dispatch_stub_613@8))
+ GL_STUB(_dispatch_stub_614, 614, _dispatch_stub_614@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_614, _dispatch_stub_614@4))
+ GL_STUB(ColorPointerEXT, 615, ColorPointerEXT@20)
+ GL_STUB(EdgeFlagPointerEXT, 616, EdgeFlagPointerEXT@12)
+ GL_STUB(IndexPointerEXT, 617, IndexPointerEXT@16)
+ GL_STUB(NormalPointerEXT, 618, NormalPointerEXT@16)
+ GL_STUB(TexCoordPointerEXT, 619, TexCoordPointerEXT@20)
+ GL_STUB(VertexPointerEXT, 620, VertexPointerEXT@20)
+ GL_STUB(PointParameterfEXT, 621, PointParameterfEXT@8)
+ GL_STUB(PointParameterfvEXT, 622, PointParameterfvEXT@8)
+ GL_STUB(LockArraysEXT, 623, LockArraysEXT@8)
+ GL_STUB(UnlockArraysEXT, 624, UnlockArraysEXT@0)
+ GL_STUB(SecondaryColor3bEXT, 625, SecondaryColor3bEXT@12)
+ GL_STUB(SecondaryColor3bvEXT, 626, SecondaryColor3bvEXT@4)
+ GL_STUB(SecondaryColor3dEXT, 627, SecondaryColor3dEXT@24)
+ GL_STUB(SecondaryColor3dvEXT, 628, SecondaryColor3dvEXT@4)
+ GL_STUB(SecondaryColor3fEXT, 629, SecondaryColor3fEXT@12)
+ GL_STUB(SecondaryColor3fvEXT, 630, SecondaryColor3fvEXT@4)
+ GL_STUB(SecondaryColor3iEXT, 631, SecondaryColor3iEXT@12)
+ GL_STUB(SecondaryColor3ivEXT, 632, SecondaryColor3ivEXT@4)
+ GL_STUB(SecondaryColor3sEXT, 633, SecondaryColor3sEXT@12)
+ GL_STUB(SecondaryColor3svEXT, 634, SecondaryColor3svEXT@4)
+ GL_STUB(SecondaryColor3ubEXT, 635, SecondaryColor3ubEXT@12)
+ GL_STUB(SecondaryColor3ubvEXT, 636, SecondaryColor3ubvEXT@4)
+ GL_STUB(SecondaryColor3uiEXT, 637, SecondaryColor3uiEXT@12)
+ GL_STUB(SecondaryColor3uivEXT, 638, SecondaryColor3uivEXT@4)
+ GL_STUB(SecondaryColor3usEXT, 639, SecondaryColor3usEXT@12)
+ GL_STUB(SecondaryColor3usvEXT, 640, SecondaryColor3usvEXT@4)
+ GL_STUB(SecondaryColorPointerEXT, 641, SecondaryColorPointerEXT@16)
+ GL_STUB(MultiDrawArraysEXT, 642, MultiDrawArraysEXT@16)
+ GL_STUB(MultiDrawElementsEXT, 643, MultiDrawElementsEXT@20)
+ GL_STUB(FogCoordPointerEXT, 644, FogCoordPointerEXT@12)
+ GL_STUB(FogCoorddEXT, 645, FogCoorddEXT@8)
+ GL_STUB(FogCoorddvEXT, 646, FogCoorddvEXT@4)
+ GL_STUB(FogCoordfEXT, 647, FogCoordfEXT@4)
+ GL_STUB(FogCoordfvEXT, 648, FogCoordfvEXT@4)
+ GL_STUB(_dispatch_stub_649, 649, _dispatch_stub_649@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_649, _dispatch_stub_649@4))
+ GL_STUB(BlendFuncSeparateEXT, 650, BlendFuncSeparateEXT@16)
+ GL_STUB(FlushVertexArrayRangeNV, 651, FlushVertexArrayRangeNV@0)
+ GL_STUB(VertexArrayRangeNV, 652, VertexArrayRangeNV@8)
+ GL_STUB(CombinerInputNV, 653, CombinerInputNV@24)
+ GL_STUB(CombinerOutputNV, 654, CombinerOutputNV@40)
+ GL_STUB(CombinerParameterfNV, 655, CombinerParameterfNV@8)
+ GL_STUB(CombinerParameterfvNV, 656, CombinerParameterfvNV@8)
+ GL_STUB(CombinerParameteriNV, 657, CombinerParameteriNV@8)
+ GL_STUB(CombinerParameterivNV, 658, CombinerParameterivNV@8)
+ GL_STUB(FinalCombinerInputNV, 659, FinalCombinerInputNV@16)
+ GL_STUB(GetCombinerInputParameterfvNV, 660, GetCombinerInputParameterfvNV@20)
+ GL_STUB(GetCombinerInputParameterivNV, 661, GetCombinerInputParameterivNV@20)
+ GL_STUB(GetCombinerOutputParameterfvNV, 662, GetCombinerOutputParameterfvNV@16)
+ GL_STUB(GetCombinerOutputParameterivNV, 663, GetCombinerOutputParameterivNV@16)
+ GL_STUB(GetFinalCombinerInputParameterfvNV, 664, GetFinalCombinerInputParameterfvNV@12)
+ GL_STUB(GetFinalCombinerInputParameterivNV, 665, GetFinalCombinerInputParameterivNV@12)
+ GL_STUB(ResizeBuffersMESA, 666, ResizeBuffersMESA@0)
+ GL_STUB(WindowPos2dMESA, 667, WindowPos2dMESA@16)
+ GL_STUB(WindowPos2dvMESA, 668, WindowPos2dvMESA@4)
+ GL_STUB(WindowPos2fMESA, 669, WindowPos2fMESA@8)
+ GL_STUB(WindowPos2fvMESA, 670, WindowPos2fvMESA@4)
+ GL_STUB(WindowPos2iMESA, 671, WindowPos2iMESA@8)
+ GL_STUB(WindowPos2ivMESA, 672, WindowPos2ivMESA@4)
+ GL_STUB(WindowPos2sMESA, 673, WindowPos2sMESA@8)
+ GL_STUB(WindowPos2svMESA, 674, WindowPos2svMESA@4)
+ GL_STUB(WindowPos3dMESA, 675, WindowPos3dMESA@24)
+ GL_STUB(WindowPos3dvMESA, 676, WindowPos3dvMESA@4)
+ GL_STUB(WindowPos3fMESA, 677, WindowPos3fMESA@12)
+ GL_STUB(WindowPos3fvMESA, 678, WindowPos3fvMESA@4)
+ GL_STUB(WindowPos3iMESA, 679, WindowPos3iMESA@12)
+ GL_STUB(WindowPos3ivMESA, 680, WindowPos3ivMESA@4)
+ GL_STUB(WindowPos3sMESA, 681, WindowPos3sMESA@12)
+ GL_STUB(WindowPos3svMESA, 682, WindowPos3svMESA@4)
+ GL_STUB(WindowPos4dMESA, 683, WindowPos4dMESA@32)
+ GL_STUB(WindowPos4dvMESA, 684, WindowPos4dvMESA@4)
+ GL_STUB(WindowPos4fMESA, 685, WindowPos4fMESA@16)
+ GL_STUB(WindowPos4fvMESA, 686, WindowPos4fvMESA@4)
+ GL_STUB(WindowPos4iMESA, 687, WindowPos4iMESA@16)
+ GL_STUB(WindowPos4ivMESA, 688, WindowPos4ivMESA@4)
+ GL_STUB(WindowPos4sMESA, 689, WindowPos4sMESA@16)
+ GL_STUB(WindowPos4svMESA, 690, WindowPos4svMESA@4)
+ GL_STUB(_dispatch_stub_691, 691, _dispatch_stub_691@20)
+ HIDDEN(GL_PREFIX(_dispatch_stub_691, _dispatch_stub_691@20))
+ GL_STUB(_dispatch_stub_692, 692, _dispatch_stub_692@24)
+ HIDDEN(GL_PREFIX(_dispatch_stub_692, _dispatch_stub_692@24))
+ GL_STUB(_dispatch_stub_693, 693, _dispatch_stub_693@8)
+ HIDDEN(GL_PREFIX(_dispatch_stub_693, _dispatch_stub_693@8))
+ GL_STUB(_dispatch_stub_694, 694, _dispatch_stub_694@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_694, _dispatch_stub_694@4))
+ GL_STUB(_dispatch_stub_695, 695, _dispatch_stub_695@8)
+ HIDDEN(GL_PREFIX(_dispatch_stub_695, _dispatch_stub_695@8))
+ GL_STUB(_dispatch_stub_696, 696, _dispatch_stub_696@12)
+ HIDDEN(GL_PREFIX(_dispatch_stub_696, _dispatch_stub_696@12))
+ GL_STUB(_dispatch_stub_697, 697, _dispatch_stub_697@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_697, _dispatch_stub_697@4))
+ GL_STUB(_dispatch_stub_698, 698, _dispatch_stub_698@8)
+ HIDDEN(GL_PREFIX(_dispatch_stub_698, _dispatch_stub_698@8))
+ GL_STUB(_dispatch_stub_699, 699, _dispatch_stub_699@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_699, _dispatch_stub_699@4))
+ GL_STUB(AreProgramsResidentNV, 700, AreProgramsResidentNV@12)
+ GL_STUB(BindProgramNV, 701, BindProgramNV@8)
+ GL_STUB(DeleteProgramsNV, 702, DeleteProgramsNV@8)
+ GL_STUB(ExecuteProgramNV, 703, ExecuteProgramNV@12)
+ GL_STUB(GenProgramsNV, 704, GenProgramsNV@8)
+ GL_STUB(GetProgramParameterdvNV, 705, GetProgramParameterdvNV@16)
+ GL_STUB(GetProgramParameterfvNV, 706, GetProgramParameterfvNV@16)
+ GL_STUB(GetProgramStringNV, 707, GetProgramStringNV@12)
+ GL_STUB(GetProgramivNV, 708, GetProgramivNV@12)
+ GL_STUB(GetTrackMatrixivNV, 709, GetTrackMatrixivNV@16)
+ GL_STUB(GetVertexAttribPointervNV, 710, GetVertexAttribPointervNV@12)
+ GL_STUB(GetVertexAttribdvNV, 711, GetVertexAttribdvNV@12)
+ GL_STUB(GetVertexAttribfvNV, 712, GetVertexAttribfvNV@12)
+ GL_STUB(GetVertexAttribivNV, 713, GetVertexAttribivNV@12)
+ GL_STUB(IsProgramNV, 714, IsProgramNV@4)
+ GL_STUB(LoadProgramNV, 715, LoadProgramNV@16)
+ GL_STUB(ProgramParameters4dvNV, 716, ProgramParameters4dvNV@16)
+ GL_STUB(ProgramParameters4fvNV, 717, ProgramParameters4fvNV@16)
+ GL_STUB(RequestResidentProgramsNV, 718, RequestResidentProgramsNV@8)
+ GL_STUB(TrackMatrixNV, 719, TrackMatrixNV@16)
+ GL_STUB(VertexAttrib1dNV, 720, VertexAttrib1dNV@12)
+ GL_STUB(VertexAttrib1dvNV, 721, VertexAttrib1dvNV@8)
+ GL_STUB(VertexAttrib1fNV, 722, VertexAttrib1fNV@8)
+ GL_STUB(VertexAttrib1fvNV, 723, VertexAttrib1fvNV@8)
+ GL_STUB(VertexAttrib1sNV, 724, VertexAttrib1sNV@8)
+ GL_STUB(VertexAttrib1svNV, 725, VertexAttrib1svNV@8)
+ GL_STUB(VertexAttrib2dNV, 726, VertexAttrib2dNV@20)
+ GL_STUB(VertexAttrib2dvNV, 727, VertexAttrib2dvNV@8)
+ GL_STUB(VertexAttrib2fNV, 728, VertexAttrib2fNV@12)
+ GL_STUB(VertexAttrib2fvNV, 729, VertexAttrib2fvNV@8)
+ GL_STUB(VertexAttrib2sNV, 730, VertexAttrib2sNV@12)
+ GL_STUB(VertexAttrib2svNV, 731, VertexAttrib2svNV@8)
+ GL_STUB(VertexAttrib3dNV, 732, VertexAttrib3dNV@28)
+ GL_STUB(VertexAttrib3dvNV, 733, VertexAttrib3dvNV@8)
+ GL_STUB(VertexAttrib3fNV, 734, VertexAttrib3fNV@16)
+ GL_STUB(VertexAttrib3fvNV, 735, VertexAttrib3fvNV@8)
+ GL_STUB(VertexAttrib3sNV, 736, VertexAttrib3sNV@16)
+ GL_STUB(VertexAttrib3svNV, 737, VertexAttrib3svNV@8)
+ GL_STUB(VertexAttrib4dNV, 738, VertexAttrib4dNV@36)
+ GL_STUB(VertexAttrib4dvNV, 739, VertexAttrib4dvNV@8)
+ GL_STUB(VertexAttrib4fNV, 740, VertexAttrib4fNV@20)
+ GL_STUB(VertexAttrib4fvNV, 741, VertexAttrib4fvNV@8)
+ GL_STUB(VertexAttrib4sNV, 742, VertexAttrib4sNV@20)
+ GL_STUB(VertexAttrib4svNV, 743, VertexAttrib4svNV@8)
+ GL_STUB(VertexAttrib4ubNV, 744, VertexAttrib4ubNV@20)
+ GL_STUB(VertexAttrib4ubvNV, 745, VertexAttrib4ubvNV@8)
+ GL_STUB(VertexAttribPointerNV, 746, VertexAttribPointerNV@20)
+ GL_STUB(VertexAttribs1dvNV, 747, VertexAttribs1dvNV@12)
+ GL_STUB(VertexAttribs1fvNV, 748, VertexAttribs1fvNV@12)
+ GL_STUB(VertexAttribs1svNV, 749, VertexAttribs1svNV@12)
+ GL_STUB(VertexAttribs2dvNV, 750, VertexAttribs2dvNV@12)
+ GL_STUB(VertexAttribs2fvNV, 751, VertexAttribs2fvNV@12)
+ GL_STUB(VertexAttribs2svNV, 752, VertexAttribs2svNV@12)
+ GL_STUB(VertexAttribs3dvNV, 753, VertexAttribs3dvNV@12)
+ GL_STUB(VertexAttribs3fvNV, 754, VertexAttribs3fvNV@12)
+ GL_STUB(VertexAttribs3svNV, 755, VertexAttribs3svNV@12)
+ GL_STUB(VertexAttribs4dvNV, 756, VertexAttribs4dvNV@12)
+ GL_STUB(VertexAttribs4fvNV, 757, VertexAttribs4fvNV@12)
+ GL_STUB(VertexAttribs4svNV, 758, VertexAttribs4svNV@12)
+ GL_STUB(VertexAttribs4ubvNV, 759, VertexAttribs4ubvNV@12)
+ GL_STUB(GetTexBumpParameterfvATI, 760, GetTexBumpParameterfvATI@8)
+ GL_STUB(GetTexBumpParameterivATI, 761, GetTexBumpParameterivATI@8)
+ GL_STUB(TexBumpParameterfvATI, 762, TexBumpParameterfvATI@8)
+ GL_STUB(TexBumpParameterivATI, 763, TexBumpParameterivATI@8)
+ GL_STUB(AlphaFragmentOp1ATI, 764, AlphaFragmentOp1ATI@24)
+ GL_STUB(AlphaFragmentOp2ATI, 765, AlphaFragmentOp2ATI@36)
+ GL_STUB(AlphaFragmentOp3ATI, 766, AlphaFragmentOp3ATI@48)
+ GL_STUB(BeginFragmentShaderATI, 767, BeginFragmentShaderATI@0)
+ GL_STUB(BindFragmentShaderATI, 768, BindFragmentShaderATI@4)
+ GL_STUB(ColorFragmentOp1ATI, 769, ColorFragmentOp1ATI@28)
+ GL_STUB(ColorFragmentOp2ATI, 770, ColorFragmentOp2ATI@40)
+ GL_STUB(ColorFragmentOp3ATI, 771, ColorFragmentOp3ATI@52)
+ GL_STUB(DeleteFragmentShaderATI, 772, DeleteFragmentShaderATI@4)
+ GL_STUB(EndFragmentShaderATI, 773, EndFragmentShaderATI@0)
+ GL_STUB(GenFragmentShadersATI, 774, GenFragmentShadersATI@4)
+ GL_STUB(PassTexCoordATI, 775, PassTexCoordATI@12)
+ GL_STUB(SampleMapATI, 776, SampleMapATI@12)
+ GL_STUB(SetFragmentShaderConstantATI, 777, SetFragmentShaderConstantATI@8)
+ GL_STUB(PointParameteriNV, 778, PointParameteriNV@8)
+ GL_STUB(PointParameterivNV, 779, PointParameterivNV@8)
GL_STUB(_dispatch_stub_780, 780, _dispatch_stub_780@4)
HIDDEN(GL_PREFIX(_dispatch_stub_780, _dispatch_stub_780@4))
- GL_STUB(_dispatch_stub_781, 781, _dispatch_stub_781@8)
- HIDDEN(GL_PREFIX(_dispatch_stub_781, _dispatch_stub_781@8))
+ GL_STUB(_dispatch_stub_781, 781, _dispatch_stub_781@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_781, _dispatch_stub_781@4))
GL_STUB(_dispatch_stub_782, 782, _dispatch_stub_782@8)
HIDDEN(GL_PREFIX(_dispatch_stub_782, _dispatch_stub_782@8))
- GL_STUB(_dispatch_stub_783, 783, _dispatch_stub_783@4)
- HIDDEN(GL_PREFIX(_dispatch_stub_783, _dispatch_stub_783@4))
- GL_STUB(GetProgramNamedParameterdvNV, 784, GetProgramNamedParameterdvNV@16)
- GL_STUB(GetProgramNamedParameterfvNV, 785, GetProgramNamedParameterfvNV@16)
- GL_STUB(ProgramNamedParameter4dNV, 786, ProgramNamedParameter4dNV@44)
- GL_STUB(ProgramNamedParameter4dvNV, 787, ProgramNamedParameter4dvNV@16)
- GL_STUB(ProgramNamedParameter4fNV, 788, ProgramNamedParameter4fNV@28)
- GL_STUB(ProgramNamedParameter4fvNV, 789, ProgramNamedParameter4fvNV@16)
- GL_STUB(PrimitiveRestartIndexNV, 790, PrimitiveRestartIndexNV@4)
- GL_STUB(PrimitiveRestartNV, 791, PrimitiveRestartNV@0)
- GL_STUB(_dispatch_stub_792, 792, _dispatch_stub_792@16)
- HIDDEN(GL_PREFIX(_dispatch_stub_792, _dispatch_stub_792@16))
- GL_STUB(_dispatch_stub_793, 793, _dispatch_stub_793@8)
- HIDDEN(GL_PREFIX(_dispatch_stub_793, _dispatch_stub_793@8))
- GL_STUB(BindFramebufferEXT, 794, BindFramebufferEXT@8)
- GL_STUB(BindRenderbufferEXT, 795, BindRenderbufferEXT@8)
- GL_STUB(CheckFramebufferStatusEXT, 796, CheckFramebufferStatusEXT@4)
- GL_STUB(DeleteFramebuffersEXT, 797, DeleteFramebuffersEXT@8)
- GL_STUB(DeleteRenderbuffersEXT, 798, DeleteRenderbuffersEXT@8)
- GL_STUB(FramebufferRenderbufferEXT, 799, FramebufferRenderbufferEXT@16)
- GL_STUB(FramebufferTexture1DEXT, 800, FramebufferTexture1DEXT@20)
- GL_STUB(FramebufferTexture2DEXT, 801, FramebufferTexture2DEXT@20)
- GL_STUB(FramebufferTexture3DEXT, 802, FramebufferTexture3DEXT@24)
- GL_STUB(GenFramebuffersEXT, 803, GenFramebuffersEXT@8)
- GL_STUB(GenRenderbuffersEXT, 804, GenRenderbuffersEXT@8)
- GL_STUB(GenerateMipmapEXT, 805, GenerateMipmapEXT@4)
- GL_STUB(GetFramebufferAttachmentParameterivEXT, 806, GetFramebufferAttachmentParameterivEXT@16)
- GL_STUB(GetRenderbufferParameterivEXT, 807, GetRenderbufferParameterivEXT@12)
- GL_STUB(IsFramebufferEXT, 808, IsFramebufferEXT@4)
- GL_STUB(IsRenderbufferEXT, 809, IsRenderbufferEXT@4)
- GL_STUB(RenderbufferStorageEXT, 810, RenderbufferStorageEXT@16)
- GL_STUB(_dispatch_stub_811, 811, _dispatch_stub_811@40)
- HIDDEN(GL_PREFIX(_dispatch_stub_811, _dispatch_stub_811@40))
- GL_STUB(_dispatch_stub_812, 812, _dispatch_stub_812@12)
- HIDDEN(GL_PREFIX(_dispatch_stub_812, _dispatch_stub_812@12))
+ GL_STUB(_dispatch_stub_783, 783, _dispatch_stub_783@8)
+ HIDDEN(GL_PREFIX(_dispatch_stub_783, _dispatch_stub_783@8))
+ GL_STUB(_dispatch_stub_784, 784, _dispatch_stub_784@4)
+ HIDDEN(GL_PREFIX(_dispatch_stub_784, _dispatch_stub_784@4))
+ GL_STUB(GetProgramNamedParameterdvNV, 785, GetProgramNamedParameterdvNV@16)
+ GL_STUB(GetProgramNamedParameterfvNV, 786, GetProgramNamedParameterfvNV@16)
+ GL_STUB(ProgramNamedParameter4dNV, 787, ProgramNamedParameter4dNV@44)
+ GL_STUB(ProgramNamedParameter4dvNV, 788, ProgramNamedParameter4dvNV@16)
+ GL_STUB(ProgramNamedParameter4fNV, 789, ProgramNamedParameter4fNV@28)
+ GL_STUB(ProgramNamedParameter4fvNV, 790, ProgramNamedParameter4fvNV@16)
+ GL_STUB(PrimitiveRestartIndexNV, 791, PrimitiveRestartIndexNV@4)
+ GL_STUB(PrimitiveRestartNV, 792, PrimitiveRestartNV@0)
+ GL_STUB(_dispatch_stub_793, 793, _dispatch_stub_793@16)
+ HIDDEN(GL_PREFIX(_dispatch_stub_793, _dispatch_stub_793@16))
+ GL_STUB(_dispatch_stub_794, 794, _dispatch_stub_794@8)
+ HIDDEN(GL_PREFIX(_dispatch_stub_794, _dispatch_stub_794@8))
+ GL_STUB(BindFramebufferEXT, 795, BindFramebufferEXT@8)
+ GL_STUB(BindRenderbufferEXT, 796, BindRenderbufferEXT@8)
+ GL_STUB(CheckFramebufferStatusEXT, 797, CheckFramebufferStatusEXT@4)
+ GL_STUB(DeleteFramebuffersEXT, 798, DeleteFramebuffersEXT@8)
+ GL_STUB(DeleteRenderbuffersEXT, 799, DeleteRenderbuffersEXT@8)
+ GL_STUB(FramebufferRenderbufferEXT, 800, FramebufferRenderbufferEXT@16)
+ GL_STUB(FramebufferTexture1DEXT, 801, FramebufferTexture1DEXT@20)
+ GL_STUB(FramebufferTexture2DEXT, 802, FramebufferTexture2DEXT@20)
+ GL_STUB(FramebufferTexture3DEXT, 803, FramebufferTexture3DEXT@24)
+ GL_STUB(GenFramebuffersEXT, 804, GenFramebuffersEXT@8)
+ GL_STUB(GenRenderbuffersEXT, 805, GenRenderbuffersEXT@8)
+ GL_STUB(GenerateMipmapEXT, 806, GenerateMipmapEXT@4)
+ GL_STUB(GetFramebufferAttachmentParameterivEXT, 807, GetFramebufferAttachmentParameterivEXT@16)
+ GL_STUB(GetRenderbufferParameterivEXT, 808, GetRenderbufferParameterivEXT@12)
+ GL_STUB(IsFramebufferEXT, 809, IsFramebufferEXT@4)
+ GL_STUB(IsRenderbufferEXT, 810, IsRenderbufferEXT@4)
+ GL_STUB(RenderbufferStorageEXT, 811, RenderbufferStorageEXT@16)
+ GL_STUB(_dispatch_stub_812, 812, _dispatch_stub_812@40)
+ HIDDEN(GL_PREFIX(_dispatch_stub_812, _dispatch_stub_812@40))
GL_STUB(_dispatch_stub_813, 813, _dispatch_stub_813@12)
HIDDEN(GL_PREFIX(_dispatch_stub_813, _dispatch_stub_813@12))
- GL_STUB(BindFragDataLocationEXT, 814, BindFragDataLocationEXT@12)
- GL_STUB(GetFragDataLocationEXT, 815, GetFragDataLocationEXT@8)
- GL_STUB(GetUniformuivEXT, 816, GetUniformuivEXT@12)
- GL_STUB(GetVertexAttribIivEXT, 817, GetVertexAttribIivEXT@12)
- GL_STUB(GetVertexAttribIuivEXT, 818, GetVertexAttribIuivEXT@12)
- GL_STUB(Uniform1uiEXT, 819, Uniform1uiEXT@8)
- GL_STUB(Uniform1uivEXT, 820, Uniform1uivEXT@12)
- GL_STUB(Uniform2uiEXT, 821, Uniform2uiEXT@12)
- GL_STUB(Uniform2uivEXT, 822, Uniform2uivEXT@12)
- GL_STUB(Uniform3uiEXT, 823, Uniform3uiEXT@16)
- GL_STUB(Uniform3uivEXT, 824, Uniform3uivEXT@12)
- GL_STUB(Uniform4uiEXT, 825, Uniform4uiEXT@20)
- GL_STUB(Uniform4uivEXT, 826, Uniform4uivEXT@12)
- GL_STUB(VertexAttribI1iEXT, 827, VertexAttribI1iEXT@8)
- GL_STUB(VertexAttribI1ivEXT, 828, VertexAttribI1ivEXT@8)
- GL_STUB(VertexAttribI1uiEXT, 829, VertexAttribI1uiEXT@8)
- GL_STUB(VertexAttribI1uivEXT, 830, VertexAttribI1uivEXT@8)
- GL_STUB(VertexAttribI2iEXT, 831, VertexAttribI2iEXT@12)
- GL_STUB(VertexAttribI2ivEXT, 832, VertexAttribI2ivEXT@8)
- GL_STUB(VertexAttribI2uiEXT, 833, VertexAttribI2uiEXT@12)
- GL_STUB(VertexAttribI2uivEXT, 834, VertexAttribI2uivEXT@8)
- GL_STUB(VertexAttribI3iEXT, 835, VertexAttribI3iEXT@16)
- GL_STUB(VertexAttribI3ivEXT, 836, VertexAttribI3ivEXT@8)
- GL_STUB(VertexAttribI3uiEXT, 837, VertexAttribI3uiEXT@16)
- GL_STUB(VertexAttribI3uivEXT, 838, VertexAttribI3uivEXT@8)
- GL_STUB(VertexAttribI4bvEXT, 839, VertexAttribI4bvEXT@8)
- GL_STUB(VertexAttribI4iEXT, 840, VertexAttribI4iEXT@20)
- GL_STUB(VertexAttribI4ivEXT, 841, VertexAttribI4ivEXT@8)
- GL_STUB(VertexAttribI4svEXT, 842, VertexAttribI4svEXT@8)
- GL_STUB(VertexAttribI4ubvEXT, 843, VertexAttribI4ubvEXT@8)
- GL_STUB(VertexAttribI4uiEXT, 844, VertexAttribI4uiEXT@20)
- GL_STUB(VertexAttribI4uivEXT, 845, VertexAttribI4uivEXT@8)
- GL_STUB(VertexAttribI4usvEXT, 846, VertexAttribI4usvEXT@8)
- GL_STUB(VertexAttribIPointerEXT, 847, VertexAttribIPointerEXT@20)
- GL_STUB(FramebufferTextureLayerEXT, 848, FramebufferTextureLayerEXT@20)
- GL_STUB(ColorMaskIndexedEXT, 849, ColorMaskIndexedEXT@20)
- GL_STUB(DisableIndexedEXT, 850, DisableIndexedEXT@8)
- GL_STUB(EnableIndexedEXT, 851, EnableIndexedEXT@8)
- GL_STUB(GetBooleanIndexedvEXT, 852, GetBooleanIndexedvEXT@12)
- GL_STUB(GetIntegerIndexedvEXT, 853, GetIntegerIndexedvEXT@12)
- GL_STUB(IsEnabledIndexedEXT, 854, IsEnabledIndexedEXT@8)
- GL_STUB(ClearColorIiEXT, 855, ClearColorIiEXT@16)
- GL_STUB(ClearColorIuiEXT, 856, ClearColorIuiEXT@16)
- GL_STUB(GetTexParameterIivEXT, 857, GetTexParameterIivEXT@12)
- GL_STUB(GetTexParameterIuivEXT, 858, GetTexParameterIuivEXT@12)
- GL_STUB(TexParameterIivEXT, 859, TexParameterIivEXT@12)
- GL_STUB(TexParameterIuivEXT, 860, TexParameterIuivEXT@12)
- GL_STUB(BeginConditionalRenderNV, 861, BeginConditionalRenderNV@8)
- GL_STUB(EndConditionalRenderNV, 862, EndConditionalRenderNV@0)
- GL_STUB(BeginTransformFeedbackEXT, 863, BeginTransformFeedbackEXT@4)
- GL_STUB(BindBufferBaseEXT, 864, BindBufferBaseEXT@12)
- GL_STUB(BindBufferOffsetEXT, 865, BindBufferOffsetEXT@16)
- GL_STUB(BindBufferRangeEXT, 866, BindBufferRangeEXT@20)
- GL_STUB(EndTransformFeedbackEXT, 867, EndTransformFeedbackEXT@0)
- GL_STUB(GetTransformFeedbackVaryingEXT, 868, GetTransformFeedbackVaryingEXT@28)
- GL_STUB(TransformFeedbackVaryingsEXT, 869, TransformFeedbackVaryingsEXT@16)
- GL_STUB(ProvokingVertexEXT, 870, ProvokingVertexEXT@4)
- GL_STUB(_dispatch_stub_871, 871, _dispatch_stub_871@12)
- HIDDEN(GL_PREFIX(_dispatch_stub_871, _dispatch_stub_871@12))
+ GL_STUB(_dispatch_stub_814, 814, _dispatch_stub_814@12)
+ HIDDEN(GL_PREFIX(_dispatch_stub_814, _dispatch_stub_814@12))
+ GL_STUB(BindFragDataLocationEXT, 815, BindFragDataLocationEXT@12)
+ GL_STUB(GetFragDataLocationEXT, 816, GetFragDataLocationEXT@8)
+ GL_STUB(GetUniformuivEXT, 817, GetUniformuivEXT@12)
+ GL_STUB(GetVertexAttribIivEXT, 818, GetVertexAttribIivEXT@12)
+ GL_STUB(GetVertexAttribIuivEXT, 819, GetVertexAttribIuivEXT@12)
+ GL_STUB(Uniform1uiEXT, 820, Uniform1uiEXT@8)
+ GL_STUB(Uniform1uivEXT, 821, Uniform1uivEXT@12)
+ GL_STUB(Uniform2uiEXT, 822, Uniform2uiEXT@12)
+ GL_STUB(Uniform2uivEXT, 823, Uniform2uivEXT@12)
+ GL_STUB(Uniform3uiEXT, 824, Uniform3uiEXT@16)
+ GL_STUB(Uniform3uivEXT, 825, Uniform3uivEXT@12)
+ GL_STUB(Uniform4uiEXT, 826, Uniform4uiEXT@20)
+ GL_STUB(Uniform4uivEXT, 827, Uniform4uivEXT@12)
+ GL_STUB(VertexAttribI1iEXT, 828, VertexAttribI1iEXT@8)
+ GL_STUB(VertexAttribI1ivEXT, 829, VertexAttribI1ivEXT@8)
+ GL_STUB(VertexAttribI1uiEXT, 830, VertexAttribI1uiEXT@8)
+ GL_STUB(VertexAttribI1uivEXT, 831, VertexAttribI1uivEXT@8)
+ GL_STUB(VertexAttribI2iEXT, 832, VertexAttribI2iEXT@12)
+ GL_STUB(VertexAttribI2ivEXT, 833, VertexAttribI2ivEXT@8)
+ GL_STUB(VertexAttribI2uiEXT, 834, VertexAttribI2uiEXT@12)
+ GL_STUB(VertexAttribI2uivEXT, 835, VertexAttribI2uivEXT@8)
+ GL_STUB(VertexAttribI3iEXT, 836, VertexAttribI3iEXT@16)
+ GL_STUB(VertexAttribI3ivEXT, 837, VertexAttribI3ivEXT@8)
+ GL_STUB(VertexAttribI3uiEXT, 838, VertexAttribI3uiEXT@16)
+ GL_STUB(VertexAttribI3uivEXT, 839, VertexAttribI3uivEXT@8)
+ GL_STUB(VertexAttribI4bvEXT, 840, VertexAttribI4bvEXT@8)
+ GL_STUB(VertexAttribI4iEXT, 841, VertexAttribI4iEXT@20)
+ GL_STUB(VertexAttribI4ivEXT, 842, VertexAttribI4ivEXT@8)
+ GL_STUB(VertexAttribI4svEXT, 843, VertexAttribI4svEXT@8)
+ GL_STUB(VertexAttribI4ubvEXT, 844, VertexAttribI4ubvEXT@8)
+ GL_STUB(VertexAttribI4uiEXT, 845, VertexAttribI4uiEXT@20)
+ GL_STUB(VertexAttribI4uivEXT, 846, VertexAttribI4uivEXT@8)
+ GL_STUB(VertexAttribI4usvEXT, 847, VertexAttribI4usvEXT@8)
+ GL_STUB(VertexAttribIPointerEXT, 848, VertexAttribIPointerEXT@20)
+ GL_STUB(FramebufferTextureLayerEXT, 849, FramebufferTextureLayerEXT@20)
+ GL_STUB(ColorMaskIndexedEXT, 850, ColorMaskIndexedEXT@20)
+ GL_STUB(DisableIndexedEXT, 851, DisableIndexedEXT@8)
+ GL_STUB(EnableIndexedEXT, 852, EnableIndexedEXT@8)
+ GL_STUB(GetBooleanIndexedvEXT, 853, GetBooleanIndexedvEXT@12)
+ GL_STUB(GetIntegerIndexedvEXT, 854, GetIntegerIndexedvEXT@12)
+ GL_STUB(IsEnabledIndexedEXT, 855, IsEnabledIndexedEXT@8)
+ GL_STUB(ClearColorIiEXT, 856, ClearColorIiEXT@16)
+ GL_STUB(ClearColorIuiEXT, 857, ClearColorIuiEXT@16)
+ GL_STUB(GetTexParameterIivEXT, 858, GetTexParameterIivEXT@12)
+ GL_STUB(GetTexParameterIuivEXT, 859, GetTexParameterIuivEXT@12)
+ GL_STUB(TexParameterIivEXT, 860, TexParameterIivEXT@12)
+ GL_STUB(TexParameterIuivEXT, 861, TexParameterIuivEXT@12)
+ GL_STUB(BeginConditionalRenderNV, 862, BeginConditionalRenderNV@8)
+ GL_STUB(EndConditionalRenderNV, 863, EndConditionalRenderNV@0)
+ GL_STUB(BeginTransformFeedbackEXT, 864, BeginTransformFeedbackEXT@4)
+ GL_STUB(BindBufferBaseEXT, 865, BindBufferBaseEXT@12)
+ GL_STUB(BindBufferOffsetEXT, 866, BindBufferOffsetEXT@16)
+ GL_STUB(BindBufferRangeEXT, 867, BindBufferRangeEXT@20)
+ GL_STUB(EndTransformFeedbackEXT, 868, EndTransformFeedbackEXT@0)
+ GL_STUB(GetTransformFeedbackVaryingEXT, 869, GetTransformFeedbackVaryingEXT@28)
+ GL_STUB(TransformFeedbackVaryingsEXT, 870, TransformFeedbackVaryingsEXT@16)
+ GL_STUB(ProvokingVertexEXT, 871, ProvokingVertexEXT@4)
GL_STUB(_dispatch_stub_872, 872, _dispatch_stub_872@12)
HIDDEN(GL_PREFIX(_dispatch_stub_872, _dispatch_stub_872@12))
- GL_STUB(GetObjectParameterivAPPLE, 873, GetObjectParameterivAPPLE@16)
- GL_STUB(ObjectPurgeableAPPLE, 874, ObjectPurgeableAPPLE@12)
- GL_STUB(ObjectUnpurgeableAPPLE, 875, ObjectUnpurgeableAPPLE@12)
- GL_STUB(ActiveProgramEXT, 876, ActiveProgramEXT@4)
- GL_STUB(CreateShaderProgramEXT, 877, CreateShaderProgramEXT@8)
- GL_STUB(UseShaderProgramEXT, 878, UseShaderProgramEXT@8)
- GL_STUB(_dispatch_stub_879, 879, _dispatch_stub_879@16)
- HIDDEN(GL_PREFIX(_dispatch_stub_879, _dispatch_stub_879@16))
+ GL_STUB(_dispatch_stub_873, 873, _dispatch_stub_873@12)
+ HIDDEN(GL_PREFIX(_dispatch_stub_873, _dispatch_stub_873@12))
+ GL_STUB(GetObjectParameterivAPPLE, 874, GetObjectParameterivAPPLE@16)
+ GL_STUB(ObjectPurgeableAPPLE, 875, ObjectPurgeableAPPLE@12)
+ GL_STUB(ObjectUnpurgeableAPPLE, 876, ObjectUnpurgeableAPPLE@12)
+ GL_STUB(ActiveProgramEXT, 877, ActiveProgramEXT@4)
+ GL_STUB(CreateShaderProgramEXT, 878, CreateShaderProgramEXT@8)
+ GL_STUB(UseShaderProgramEXT, 879, UseShaderProgramEXT@8)
GL_STUB(_dispatch_stub_880, 880, _dispatch_stub_880@16)
HIDDEN(GL_PREFIX(_dispatch_stub_880, _dispatch_stub_880@16))
GL_STUB(_dispatch_stub_881, 881, _dispatch_stub_881@16)
HIDDEN(GL_PREFIX(_dispatch_stub_881, _dispatch_stub_881@16))
- GL_STUB(_dispatch_stub_882, 882, _dispatch_stub_882@12)
- HIDDEN(GL_PREFIX(_dispatch_stub_882, _dispatch_stub_882@12))
+ GL_STUB(_dispatch_stub_882, 882, _dispatch_stub_882@16)
+ HIDDEN(GL_PREFIX(_dispatch_stub_882, _dispatch_stub_882@16))
GL_STUB(_dispatch_stub_883, 883, _dispatch_stub_883@12)
HIDDEN(GL_PREFIX(_dispatch_stub_883, _dispatch_stub_883@12))
- GL_STUB(EGLImageTargetRenderbufferStorageOES, 884, EGLImageTargetRenderbufferStorageOES@8)
- GL_STUB(EGLImageTargetTexture2DOES, 885, EGLImageTargetTexture2DOES@8)
+ GL_STUB(_dispatch_stub_884, 884, _dispatch_stub_884@12)
+ HIDDEN(GL_PREFIX(_dispatch_stub_884, _dispatch_stub_884@12))
+ GL_STUB(EGLImageTargetRenderbufferStorageOES, 885, EGLImageTargetRenderbufferStorageOES@8)
+ GL_STUB(EGLImageTargetTexture2DOES, 886, EGLImageTargetTexture2DOES@8)
GL_STUB_ALIAS(ArrayElementEXT, 306, ArrayElementEXT@4, ArrayElement, ArrayElement@4)
GL_STUB_ALIAS(BindTextureEXT, 307, BindTextureEXT@8, BindTexture, BindTexture@8)
GL_STUB_ALIAS(DrawArraysEXT, 310, DrawArraysEXT@12, DrawArrays, DrawArrays@12)
@@ -1260,151 +1261,151 @@ GLNAME(gl_dispatch_functions_start):
GL_STUB_ALIAS(DrawElementsInstancedEXT, 573, DrawElementsInstancedEXT@20, DrawElementsInstancedARB, DrawElementsInstancedARB@20)
GL_STUB_ALIAS(DrawElementsInstanced, 573, DrawElementsInstanced@20, DrawElementsInstancedARB, DrawElementsInstancedARB@20)
GL_STUB_ALIAS(RenderbufferStorageMultisampleEXT, 574, RenderbufferStorageMultisampleEXT@20, RenderbufferStorageMultisample, RenderbufferStorageMultisample@20)
- GL_STUB_ALIAS(PointParameterf, 620, PointParameterf@8, PointParameterfEXT, PointParameterfEXT@8)
- GL_STUB_ALIAS(PointParameterfARB, 620, PointParameterfARB@8, PointParameterfEXT, PointParameterfEXT@8)
- GL_STUB_ALIAS(PointParameterfv, 621, PointParameterfv@8, PointParameterfvEXT, PointParameterfvEXT@8)
- GL_STUB_ALIAS(PointParameterfvARB, 621, PointParameterfvARB@8, PointParameterfvEXT, PointParameterfvEXT@8)
- GL_STUB_ALIAS(SecondaryColor3b, 624, SecondaryColor3b@12, SecondaryColor3bEXT, SecondaryColor3bEXT@12)
- GL_STUB_ALIAS(SecondaryColor3bv, 625, SecondaryColor3bv@4, SecondaryColor3bvEXT, SecondaryColor3bvEXT@4)
- GL_STUB_ALIAS(SecondaryColor3d, 626, SecondaryColor3d@24, SecondaryColor3dEXT, SecondaryColor3dEXT@24)
- GL_STUB_ALIAS(SecondaryColor3dv, 627, SecondaryColor3dv@4, SecondaryColor3dvEXT, SecondaryColor3dvEXT@4)
- GL_STUB_ALIAS(SecondaryColor3f, 628, SecondaryColor3f@12, SecondaryColor3fEXT, SecondaryColor3fEXT@12)
- GL_STUB_ALIAS(SecondaryColor3fv, 629, SecondaryColor3fv@4, SecondaryColor3fvEXT, SecondaryColor3fvEXT@4)
- GL_STUB_ALIAS(SecondaryColor3i, 630, SecondaryColor3i@12, SecondaryColor3iEXT, SecondaryColor3iEXT@12)
- GL_STUB_ALIAS(SecondaryColor3iv, 631, SecondaryColor3iv@4, SecondaryColor3ivEXT, SecondaryColor3ivEXT@4)
- GL_STUB_ALIAS(SecondaryColor3s, 632, SecondaryColor3s@12, SecondaryColor3sEXT, SecondaryColor3sEXT@12)
- GL_STUB_ALIAS(SecondaryColor3sv, 633, SecondaryColor3sv@4, SecondaryColor3svEXT, SecondaryColor3svEXT@4)
- GL_STUB_ALIAS(SecondaryColor3ub, 634, SecondaryColor3ub@12, SecondaryColor3ubEXT, SecondaryColor3ubEXT@12)
- GL_STUB_ALIAS(SecondaryColor3ubv, 635, SecondaryColor3ubv@4, SecondaryColor3ubvEXT, SecondaryColor3ubvEXT@4)
- GL_STUB_ALIAS(SecondaryColor3ui, 636, SecondaryColor3ui@12, SecondaryColor3uiEXT, SecondaryColor3uiEXT@12)
- GL_STUB_ALIAS(SecondaryColor3uiv, 637, SecondaryColor3uiv@4, SecondaryColor3uivEXT, SecondaryColor3uivEXT@4)
- GL_STUB_ALIAS(SecondaryColor3us, 638, SecondaryColor3us@12, SecondaryColor3usEXT, SecondaryColor3usEXT@12)
- GL_STUB_ALIAS(SecondaryColor3usv, 639, SecondaryColor3usv@4, SecondaryColor3usvEXT, SecondaryColor3usvEXT@4)
- GL_STUB_ALIAS(SecondaryColorPointer, 640, SecondaryColorPointer@16, SecondaryColorPointerEXT, SecondaryColorPointerEXT@16)
- GL_STUB_ALIAS(MultiDrawArrays, 641, MultiDrawArrays@16, MultiDrawArraysEXT, MultiDrawArraysEXT@16)
- GL_STUB_ALIAS(MultiDrawElements, 642, MultiDrawElements@20, MultiDrawElementsEXT, MultiDrawElementsEXT@20)
- GL_STUB_ALIAS(FogCoordPointer, 643, FogCoordPointer@12, FogCoordPointerEXT, FogCoordPointerEXT@12)
- GL_STUB_ALIAS(FogCoordd, 644, FogCoordd@8, FogCoorddEXT, FogCoorddEXT@8)
- GL_STUB_ALIAS(FogCoorddv, 645, FogCoorddv@4, FogCoorddvEXT, FogCoorddvEXT@4)
- GL_STUB_ALIAS(FogCoordf, 646, FogCoordf@4, FogCoordfEXT, FogCoordfEXT@4)
- GL_STUB_ALIAS(FogCoordfv, 647, FogCoordfv@4, FogCoordfvEXT, FogCoordfvEXT@4)
- GL_STUB_ALIAS(BlendFuncSeparate, 649, BlendFuncSeparate@16, BlendFuncSeparateEXT, BlendFuncSeparateEXT@16)
- GL_STUB_ALIAS(WindowPos2d, 666, WindowPos2d@16, WindowPos2dMESA, WindowPos2dMESA@16)
- GL_STUB_ALIAS(WindowPos2dARB, 666, WindowPos2dARB@16, WindowPos2dMESA, WindowPos2dMESA@16)
- GL_STUB_ALIAS(WindowPos2dv, 667, WindowPos2dv@4, WindowPos2dvMESA, WindowPos2dvMESA@4)
- GL_STUB_ALIAS(WindowPos2dvARB, 667, WindowPos2dvARB@4, WindowPos2dvMESA, WindowPos2dvMESA@4)
- GL_STUB_ALIAS(WindowPos2f, 668, WindowPos2f@8, WindowPos2fMESA, WindowPos2fMESA@8)
- GL_STUB_ALIAS(WindowPos2fARB, 668, WindowPos2fARB@8, WindowPos2fMESA, WindowPos2fMESA@8)
- GL_STUB_ALIAS(WindowPos2fv, 669, WindowPos2fv@4, WindowPos2fvMESA, WindowPos2fvMESA@4)
- GL_STUB_ALIAS(WindowPos2fvARB, 669, WindowPos2fvARB@4, WindowPos2fvMESA, WindowPos2fvMESA@4)
- GL_STUB_ALIAS(WindowPos2i, 670, WindowPos2i@8, WindowPos2iMESA, WindowPos2iMESA@8)
- GL_STUB_ALIAS(WindowPos2iARB, 670, WindowPos2iARB@8, WindowPos2iMESA, WindowPos2iMESA@8)
- GL_STUB_ALIAS(WindowPos2iv, 671, WindowPos2iv@4, WindowPos2ivMESA, WindowPos2ivMESA@4)
- GL_STUB_ALIAS(WindowPos2ivARB, 671, WindowPos2ivARB@4, WindowPos2ivMESA, WindowPos2ivMESA@4)
- GL_STUB_ALIAS(WindowPos2s, 672, WindowPos2s@8, WindowPos2sMESA, WindowPos2sMESA@8)
- GL_STUB_ALIAS(WindowPos2sARB, 672, WindowPos2sARB@8, WindowPos2sMESA, WindowPos2sMESA@8)
- GL_STUB_ALIAS(WindowPos2sv, 673, WindowPos2sv@4, WindowPos2svMESA, WindowPos2svMESA@4)
- GL_STUB_ALIAS(WindowPos2svARB, 673, WindowPos2svARB@4, WindowPos2svMESA, WindowPos2svMESA@4)
- GL_STUB_ALIAS(WindowPos3d, 674, WindowPos3d@24, WindowPos3dMESA, WindowPos3dMESA@24)
- GL_STUB_ALIAS(WindowPos3dARB, 674, WindowPos3dARB@24, WindowPos3dMESA, WindowPos3dMESA@24)
- GL_STUB_ALIAS(WindowPos3dv, 675, WindowPos3dv@4, WindowPos3dvMESA, WindowPos3dvMESA@4)
- GL_STUB_ALIAS(WindowPos3dvARB, 675, WindowPos3dvARB@4, WindowPos3dvMESA, WindowPos3dvMESA@4)
- GL_STUB_ALIAS(WindowPos3f, 676, WindowPos3f@12, WindowPos3fMESA, WindowPos3fMESA@12)
- GL_STUB_ALIAS(WindowPos3fARB, 676, WindowPos3fARB@12, WindowPos3fMESA, WindowPos3fMESA@12)
- GL_STUB_ALIAS(WindowPos3fv, 677, WindowPos3fv@4, WindowPos3fvMESA, WindowPos3fvMESA@4)
- GL_STUB_ALIAS(WindowPos3fvARB, 677, WindowPos3fvARB@4, WindowPos3fvMESA, WindowPos3fvMESA@4)
- GL_STUB_ALIAS(WindowPos3i, 678, WindowPos3i@12, WindowPos3iMESA, WindowPos3iMESA@12)
- GL_STUB_ALIAS(WindowPos3iARB, 678, WindowPos3iARB@12, WindowPos3iMESA, WindowPos3iMESA@12)
- GL_STUB_ALIAS(WindowPos3iv, 679, WindowPos3iv@4, WindowPos3ivMESA, WindowPos3ivMESA@4)
- GL_STUB_ALIAS(WindowPos3ivARB, 679, WindowPos3ivARB@4, WindowPos3ivMESA, WindowPos3ivMESA@4)
- GL_STUB_ALIAS(WindowPos3s, 680, WindowPos3s@12, WindowPos3sMESA, WindowPos3sMESA@12)
- GL_STUB_ALIAS(WindowPos3sARB, 680, WindowPos3sARB@12, WindowPos3sMESA, WindowPos3sMESA@12)
- GL_STUB_ALIAS(WindowPos3sv, 681, WindowPos3sv@4, WindowPos3svMESA, WindowPos3svMESA@4)
- GL_STUB_ALIAS(WindowPos3svARB, 681, WindowPos3svARB@4, WindowPos3svMESA, WindowPos3svMESA@4)
- GL_STUB_ALIAS(BindProgramARB, 700, BindProgramARB@8, BindProgramNV, BindProgramNV@8)
- GL_STUB_ALIAS(DeleteProgramsARB, 701, DeleteProgramsARB@8, DeleteProgramsNV, DeleteProgramsNV@8)
- GL_STUB_ALIAS(GenProgramsARB, 703, GenProgramsARB@8, GenProgramsNV, GenProgramsNV@8)
- GL_STUB_ALIAS(GetVertexAttribPointerv, 709, GetVertexAttribPointerv@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12)
- GL_STUB_ALIAS(GetVertexAttribPointervARB, 709, GetVertexAttribPointervARB@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12)
- GL_STUB_ALIAS(IsProgramARB, 713, IsProgramARB@4, IsProgramNV, IsProgramNV@4)
- GL_STUB_ALIAS(PointParameteri, 777, PointParameteri@8, PointParameteriNV, PointParameteriNV@8)
- GL_STUB_ALIAS(PointParameteriv, 778, PointParameteriv@8, PointParameterivNV, PointParameterivNV@8)
- GL_STUB_ALIAS(DeleteVertexArrays, 781, DeleteVertexArrays@8, _dispatch_stub_781, _dispatch_stub_781@8)
- GL_STUB_ALIAS(IsVertexArray, 783, IsVertexArray@4, _dispatch_stub_783, _dispatch_stub_783@4)
- GL_STUB_ALIAS(PrimitiveRestartIndex, 790, PrimitiveRestartIndex@4, PrimitiveRestartIndexNV, PrimitiveRestartIndexNV@4)
- GL_STUB_ALIAS(BlendEquationSeparate, 793, BlendEquationSeparate@8, _dispatch_stub_793, _dispatch_stub_793@8)
- GL_STUB_ALIAS(BindFramebuffer, 794, BindFramebuffer@8, BindFramebufferEXT, BindFramebufferEXT@8)
- GL_STUB_ALIAS(BindRenderbuffer, 795, BindRenderbuffer@8, BindRenderbufferEXT, BindRenderbufferEXT@8)
- GL_STUB_ALIAS(CheckFramebufferStatus, 796, CheckFramebufferStatus@4, CheckFramebufferStatusEXT, CheckFramebufferStatusEXT@4)
- GL_STUB_ALIAS(DeleteFramebuffers, 797, DeleteFramebuffers@8, DeleteFramebuffersEXT, DeleteFramebuffersEXT@8)
- GL_STUB_ALIAS(DeleteRenderbuffers, 798, DeleteRenderbuffers@8, DeleteRenderbuffersEXT, DeleteRenderbuffersEXT@8)
- GL_STUB_ALIAS(FramebufferRenderbuffer, 799, FramebufferRenderbuffer@16, FramebufferRenderbufferEXT, FramebufferRenderbufferEXT@16)
- GL_STUB_ALIAS(FramebufferTexture1D, 800, FramebufferTexture1D@20, FramebufferTexture1DEXT, FramebufferTexture1DEXT@20)
- GL_STUB_ALIAS(FramebufferTexture2D, 801, FramebufferTexture2D@20, FramebufferTexture2DEXT, FramebufferTexture2DEXT@20)
- GL_STUB_ALIAS(FramebufferTexture3D, 802, FramebufferTexture3D@24, FramebufferTexture3DEXT, FramebufferTexture3DEXT@24)
- GL_STUB_ALIAS(GenFramebuffers, 803, GenFramebuffers@8, GenFramebuffersEXT, GenFramebuffersEXT@8)
- GL_STUB_ALIAS(GenRenderbuffers, 804, GenRenderbuffers@8, GenRenderbuffersEXT, GenRenderbuffersEXT@8)
- GL_STUB_ALIAS(GenerateMipmap, 805, GenerateMipmap@4, GenerateMipmapEXT, GenerateMipmapEXT@4)
- GL_STUB_ALIAS(GetFramebufferAttachmentParameteriv, 806, GetFramebufferAttachmentParameteriv@16, GetFramebufferAttachmentParameterivEXT, GetFramebufferAttachmentParameterivEXT@16)
- GL_STUB_ALIAS(GetRenderbufferParameteriv, 807, GetRenderbufferParameteriv@12, GetRenderbufferParameterivEXT, GetRenderbufferParameterivEXT@12)
- GL_STUB_ALIAS(IsFramebuffer, 808, IsFramebuffer@4, IsFramebufferEXT, IsFramebufferEXT@4)
- GL_STUB_ALIAS(IsRenderbuffer, 809, IsRenderbuffer@4, IsRenderbufferEXT, IsRenderbufferEXT@4)
- GL_STUB_ALIAS(RenderbufferStorage, 810, RenderbufferStorage@16, RenderbufferStorageEXT, RenderbufferStorageEXT@16)
- GL_STUB_ALIAS(BlitFramebuffer, 811, BlitFramebuffer@40, _dispatch_stub_811, _dispatch_stub_811@40)
- GL_STUB_ALIAS(BindFragDataLocation, 814, BindFragDataLocation@12, BindFragDataLocationEXT, BindFragDataLocationEXT@12)
- GL_STUB_ALIAS(GetFragDataLocation, 815, GetFragDataLocation@8, GetFragDataLocationEXT, GetFragDataLocationEXT@8)
- GL_STUB_ALIAS(GetUniformuiv, 816, GetUniformuiv@12, GetUniformuivEXT, GetUniformuivEXT@12)
- GL_STUB_ALIAS(GetVertexAttribIiv, 817, GetVertexAttribIiv@12, GetVertexAttribIivEXT, GetVertexAttribIivEXT@12)
- GL_STUB_ALIAS(GetVertexAttribIuiv, 818, GetVertexAttribIuiv@12, GetVertexAttribIuivEXT, GetVertexAttribIuivEXT@12)
- GL_STUB_ALIAS(Uniform1ui, 819, Uniform1ui@8, Uniform1uiEXT, Uniform1uiEXT@8)
- GL_STUB_ALIAS(Uniform1uiv, 820, Uniform1uiv@12, Uniform1uivEXT, Uniform1uivEXT@12)
- GL_STUB_ALIAS(Uniform2ui, 821, Uniform2ui@12, Uniform2uiEXT, Uniform2uiEXT@12)
- GL_STUB_ALIAS(Uniform2uiv, 822, Uniform2uiv@12, Uniform2uivEXT, Uniform2uivEXT@12)
- GL_STUB_ALIAS(Uniform3ui, 823, Uniform3ui@16, Uniform3uiEXT, Uniform3uiEXT@16)
- GL_STUB_ALIAS(Uniform3uiv, 824, Uniform3uiv@12, Uniform3uivEXT, Uniform3uivEXT@12)
- GL_STUB_ALIAS(Uniform4ui, 825, Uniform4ui@20, Uniform4uiEXT, Uniform4uiEXT@20)
- GL_STUB_ALIAS(Uniform4uiv, 826, Uniform4uiv@12, Uniform4uivEXT, Uniform4uivEXT@12)
- GL_STUB_ALIAS(VertexAttribI1i, 827, VertexAttribI1i@8, VertexAttribI1iEXT, VertexAttribI1iEXT@8)
- GL_STUB_ALIAS(VertexAttribI1iv, 828, VertexAttribI1iv@8, VertexAttribI1ivEXT, VertexAttribI1ivEXT@8)
- GL_STUB_ALIAS(VertexAttribI1ui, 829, VertexAttribI1ui@8, VertexAttribI1uiEXT, VertexAttribI1uiEXT@8)
- GL_STUB_ALIAS(VertexAttribI1uiv, 830, VertexAttribI1uiv@8, VertexAttribI1uivEXT, VertexAttribI1uivEXT@8)
- GL_STUB_ALIAS(VertexAttribI2i, 831, VertexAttribI2i@12, VertexAttribI2iEXT, VertexAttribI2iEXT@12)
- GL_STUB_ALIAS(VertexAttribI2iv, 832, VertexAttribI2iv@8, VertexAttribI2ivEXT, VertexAttribI2ivEXT@8)
- GL_STUB_ALIAS(VertexAttribI2ui, 833, VertexAttribI2ui@12, VertexAttribI2uiEXT, VertexAttribI2uiEXT@12)
- GL_STUB_ALIAS(VertexAttribI2uiv, 834, VertexAttribI2uiv@8, VertexAttribI2uivEXT, VertexAttribI2uivEXT@8)
- GL_STUB_ALIAS(VertexAttribI3i, 835, VertexAttribI3i@16, VertexAttribI3iEXT, VertexAttribI3iEXT@16)
- GL_STUB_ALIAS(VertexAttribI3iv, 836, VertexAttribI3iv@8, VertexAttribI3ivEXT, VertexAttribI3ivEXT@8)
- GL_STUB_ALIAS(VertexAttribI3ui, 837, VertexAttribI3ui@16, VertexAttribI3uiEXT, VertexAttribI3uiEXT@16)
- GL_STUB_ALIAS(VertexAttribI3uiv, 838, VertexAttribI3uiv@8, VertexAttribI3uivEXT, VertexAttribI3uivEXT@8)
- GL_STUB_ALIAS(VertexAttribI4bv, 839, VertexAttribI4bv@8, VertexAttribI4bvEXT, VertexAttribI4bvEXT@8)
- GL_STUB_ALIAS(VertexAttribI4i, 840, VertexAttribI4i@20, VertexAttribI4iEXT, VertexAttribI4iEXT@20)
- GL_STUB_ALIAS(VertexAttribI4iv, 841, VertexAttribI4iv@8, VertexAttribI4ivEXT, VertexAttribI4ivEXT@8)
- GL_STUB_ALIAS(VertexAttribI4sv, 842, VertexAttribI4sv@8, VertexAttribI4svEXT, VertexAttribI4svEXT@8)
- GL_STUB_ALIAS(VertexAttribI4ubv, 843, VertexAttribI4ubv@8, VertexAttribI4ubvEXT, VertexAttribI4ubvEXT@8)
- GL_STUB_ALIAS(VertexAttribI4ui, 844, VertexAttribI4ui@20, VertexAttribI4uiEXT, VertexAttribI4uiEXT@20)
- GL_STUB_ALIAS(VertexAttribI4uiv, 845, VertexAttribI4uiv@8, VertexAttribI4uivEXT, VertexAttribI4uivEXT@8)
- GL_STUB_ALIAS(VertexAttribI4usv, 846, VertexAttribI4usv@8, VertexAttribI4usvEXT, VertexAttribI4usvEXT@8)
- GL_STUB_ALIAS(VertexAttribIPointer, 847, VertexAttribIPointer@20, VertexAttribIPointerEXT, VertexAttribIPointerEXT@20)
- GL_STUB_ALIAS(FramebufferTextureLayer, 848, FramebufferTextureLayer@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20)
- GL_STUB_ALIAS(ColorMaski, 849, ColorMaski@20, ColorMaskIndexedEXT, ColorMaskIndexedEXT@20)
- GL_STUB_ALIAS(Disablei, 850, Disablei@8, DisableIndexedEXT, DisableIndexedEXT@8)
- GL_STUB_ALIAS(Enablei, 851, Enablei@8, EnableIndexedEXT, EnableIndexedEXT@8)
- GL_STUB_ALIAS(GetBooleani_v, 852, GetBooleani_v@12, GetBooleanIndexedvEXT, GetBooleanIndexedvEXT@12)
- GL_STUB_ALIAS(GetIntegeri_v, 853, GetIntegeri_v@12, GetIntegerIndexedvEXT, GetIntegerIndexedvEXT@12)
- GL_STUB_ALIAS(IsEnabledi, 854, IsEnabledi@8, IsEnabledIndexedEXT, IsEnabledIndexedEXT@8)
- GL_STUB_ALIAS(GetTexParameterIiv, 857, GetTexParameterIiv@12, GetTexParameterIivEXT, GetTexParameterIivEXT@12)
- GL_STUB_ALIAS(GetTexParameterIuiv, 858, GetTexParameterIuiv@12, GetTexParameterIuivEXT, GetTexParameterIuivEXT@12)
- GL_STUB_ALIAS(TexParameterIiv, 859, TexParameterIiv@12, TexParameterIivEXT, TexParameterIivEXT@12)
- GL_STUB_ALIAS(TexParameterIuiv, 860, TexParameterIuiv@12, TexParameterIuivEXT, TexParameterIuivEXT@12)
- GL_STUB_ALIAS(BeginConditionalRender, 861, BeginConditionalRender@8, BeginConditionalRenderNV, BeginConditionalRenderNV@8)
- GL_STUB_ALIAS(EndConditionalRender, 862, EndConditionalRender@0, EndConditionalRenderNV, EndConditionalRenderNV@0)
- GL_STUB_ALIAS(BeginTransformFeedback, 863, BeginTransformFeedback@4, BeginTransformFeedbackEXT, BeginTransformFeedbackEXT@4)
- GL_STUB_ALIAS(BindBufferBase, 864, BindBufferBase@12, BindBufferBaseEXT, BindBufferBaseEXT@12)
- GL_STUB_ALIAS(BindBufferRange, 866, BindBufferRange@20, BindBufferRangeEXT, BindBufferRangeEXT@20)
- GL_STUB_ALIAS(EndTransformFeedback, 867, EndTransformFeedback@0, EndTransformFeedbackEXT, EndTransformFeedbackEXT@0)
- GL_STUB_ALIAS(GetTransformFeedbackVarying, 868, GetTransformFeedbackVarying@28, GetTransformFeedbackVaryingEXT, GetTransformFeedbackVaryingEXT@28)
- GL_STUB_ALIAS(TransformFeedbackVaryings, 869, TransformFeedbackVaryings@16, TransformFeedbackVaryingsEXT, TransformFeedbackVaryingsEXT@16)
- GL_STUB_ALIAS(ProvokingVertex, 870, ProvokingVertex@4, ProvokingVertexEXT, ProvokingVertexEXT@4)
+ GL_STUB_ALIAS(PointParameterf, 621, PointParameterf@8, PointParameterfEXT, PointParameterfEXT@8)
+ GL_STUB_ALIAS(PointParameterfARB, 621, PointParameterfARB@8, PointParameterfEXT, PointParameterfEXT@8)
+ GL_STUB_ALIAS(PointParameterfv, 622, PointParameterfv@8, PointParameterfvEXT, PointParameterfvEXT@8)
+ GL_STUB_ALIAS(PointParameterfvARB, 622, PointParameterfvARB@8, PointParameterfvEXT, PointParameterfvEXT@8)
+ GL_STUB_ALIAS(SecondaryColor3b, 625, SecondaryColor3b@12, SecondaryColor3bEXT, SecondaryColor3bEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3bv, 626, SecondaryColor3bv@4, SecondaryColor3bvEXT, SecondaryColor3bvEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3d, 627, SecondaryColor3d@24, SecondaryColor3dEXT, SecondaryColor3dEXT@24)
+ GL_STUB_ALIAS(SecondaryColor3dv, 628, SecondaryColor3dv@4, SecondaryColor3dvEXT, SecondaryColor3dvEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3f, 629, SecondaryColor3f@12, SecondaryColor3fEXT, SecondaryColor3fEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3fv, 630, SecondaryColor3fv@4, SecondaryColor3fvEXT, SecondaryColor3fvEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3i, 631, SecondaryColor3i@12, SecondaryColor3iEXT, SecondaryColor3iEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3iv, 632, SecondaryColor3iv@4, SecondaryColor3ivEXT, SecondaryColor3ivEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3s, 633, SecondaryColor3s@12, SecondaryColor3sEXT, SecondaryColor3sEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3sv, 634, SecondaryColor3sv@4, SecondaryColor3svEXT, SecondaryColor3svEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3ub, 635, SecondaryColor3ub@12, SecondaryColor3ubEXT, SecondaryColor3ubEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3ubv, 636, SecondaryColor3ubv@4, SecondaryColor3ubvEXT, SecondaryColor3ubvEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3ui, 637, SecondaryColor3ui@12, SecondaryColor3uiEXT, SecondaryColor3uiEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3uiv, 638, SecondaryColor3uiv@4, SecondaryColor3uivEXT, SecondaryColor3uivEXT@4)
+ GL_STUB_ALIAS(SecondaryColor3us, 639, SecondaryColor3us@12, SecondaryColor3usEXT, SecondaryColor3usEXT@12)
+ GL_STUB_ALIAS(SecondaryColor3usv, 640, SecondaryColor3usv@4, SecondaryColor3usvEXT, SecondaryColor3usvEXT@4)
+ GL_STUB_ALIAS(SecondaryColorPointer, 641, SecondaryColorPointer@16, SecondaryColorPointerEXT, SecondaryColorPointerEXT@16)
+ GL_STUB_ALIAS(MultiDrawArrays, 642, MultiDrawArrays@16, MultiDrawArraysEXT, MultiDrawArraysEXT@16)
+ GL_STUB_ALIAS(MultiDrawElements, 643, MultiDrawElements@20, MultiDrawElementsEXT, MultiDrawElementsEXT@20)
+ GL_STUB_ALIAS(FogCoordPointer, 644, FogCoordPointer@12, FogCoordPointerEXT, FogCoordPointerEXT@12)
+ GL_STUB_ALIAS(FogCoordd, 645, FogCoordd@8, FogCoorddEXT, FogCoorddEXT@8)
+ GL_STUB_ALIAS(FogCoorddv, 646, FogCoorddv@4, FogCoorddvEXT, FogCoorddvEXT@4)
+ GL_STUB_ALIAS(FogCoordf, 647, FogCoordf@4, FogCoordfEXT, FogCoordfEXT@4)
+ GL_STUB_ALIAS(FogCoordfv, 648, FogCoordfv@4, FogCoordfvEXT, FogCoordfvEXT@4)
+ GL_STUB_ALIAS(BlendFuncSeparate, 650, BlendFuncSeparate@16, BlendFuncSeparateEXT, BlendFuncSeparateEXT@16)
+ GL_STUB_ALIAS(WindowPos2d, 667, WindowPos2d@16, WindowPos2dMESA, WindowPos2dMESA@16)
+ GL_STUB_ALIAS(WindowPos2dARB, 667, WindowPos2dARB@16, WindowPos2dMESA, WindowPos2dMESA@16)
+ GL_STUB_ALIAS(WindowPos2dv, 668, WindowPos2dv@4, WindowPos2dvMESA, WindowPos2dvMESA@4)
+ GL_STUB_ALIAS(WindowPos2dvARB, 668, WindowPos2dvARB@4, WindowPos2dvMESA, WindowPos2dvMESA@4)
+ GL_STUB_ALIAS(WindowPos2f, 669, WindowPos2f@8, WindowPos2fMESA, WindowPos2fMESA@8)
+ GL_STUB_ALIAS(WindowPos2fARB, 669, WindowPos2fARB@8, WindowPos2fMESA, WindowPos2fMESA@8)
+ GL_STUB_ALIAS(WindowPos2fv, 670, WindowPos2fv@4, WindowPos2fvMESA, WindowPos2fvMESA@4)
+ GL_STUB_ALIAS(WindowPos2fvARB, 670, WindowPos2fvARB@4, WindowPos2fvMESA, WindowPos2fvMESA@4)
+ GL_STUB_ALIAS(WindowPos2i, 671, WindowPos2i@8, WindowPos2iMESA, WindowPos2iMESA@8)
+ GL_STUB_ALIAS(WindowPos2iARB, 671, WindowPos2iARB@8, WindowPos2iMESA, WindowPos2iMESA@8)
+ GL_STUB_ALIAS(WindowPos2iv, 672, WindowPos2iv@4, WindowPos2ivMESA, WindowPos2ivMESA@4)
+ GL_STUB_ALIAS(WindowPos2ivARB, 672, WindowPos2ivARB@4, WindowPos2ivMESA, WindowPos2ivMESA@4)
+ GL_STUB_ALIAS(WindowPos2s, 673, WindowPos2s@8, WindowPos2sMESA, WindowPos2sMESA@8)
+ GL_STUB_ALIAS(WindowPos2sARB, 673, WindowPos2sARB@8, WindowPos2sMESA, WindowPos2sMESA@8)
+ GL_STUB_ALIAS(WindowPos2sv, 674, WindowPos2sv@4, WindowPos2svMESA, WindowPos2svMESA@4)
+ GL_STUB_ALIAS(WindowPos2svARB, 674, WindowPos2svARB@4, WindowPos2svMESA, WindowPos2svMESA@4)
+ GL_STUB_ALIAS(WindowPos3d, 675, WindowPos3d@24, WindowPos3dMESA, WindowPos3dMESA@24)
+ GL_STUB_ALIAS(WindowPos3dARB, 675, WindowPos3dARB@24, WindowPos3dMESA, WindowPos3dMESA@24)
+ GL_STUB_ALIAS(WindowPos3dv, 676, WindowPos3dv@4, WindowPos3dvMESA, WindowPos3dvMESA@4)
+ GL_STUB_ALIAS(WindowPos3dvARB, 676, WindowPos3dvARB@4, WindowPos3dvMESA, WindowPos3dvMESA@4)
+ GL_STUB_ALIAS(WindowPos3f, 677, WindowPos3f@12, WindowPos3fMESA, WindowPos3fMESA@12)
+ GL_STUB_ALIAS(WindowPos3fARB, 677, WindowPos3fARB@12, WindowPos3fMESA, WindowPos3fMESA@12)
+ GL_STUB_ALIAS(WindowPos3fv, 678, WindowPos3fv@4, WindowPos3fvMESA, WindowPos3fvMESA@4)
+ GL_STUB_ALIAS(WindowPos3fvARB, 678, WindowPos3fvARB@4, WindowPos3fvMESA, WindowPos3fvMESA@4)
+ GL_STUB_ALIAS(WindowPos3i, 679, WindowPos3i@12, WindowPos3iMESA, WindowPos3iMESA@12)
+ GL_STUB_ALIAS(WindowPos3iARB, 679, WindowPos3iARB@12, WindowPos3iMESA, WindowPos3iMESA@12)
+ GL_STUB_ALIAS(WindowPos3iv, 680, WindowPos3iv@4, WindowPos3ivMESA, WindowPos3ivMESA@4)
+ GL_STUB_ALIAS(WindowPos3ivARB, 680, WindowPos3ivARB@4, WindowPos3ivMESA, WindowPos3ivMESA@4)
+ GL_STUB_ALIAS(WindowPos3s, 681, WindowPos3s@12, WindowPos3sMESA, WindowPos3sMESA@12)
+ GL_STUB_ALIAS(WindowPos3sARB, 681, WindowPos3sARB@12, WindowPos3sMESA, WindowPos3sMESA@12)
+ GL_STUB_ALIAS(WindowPos3sv, 682, WindowPos3sv@4, WindowPos3svMESA, WindowPos3svMESA@4)
+ GL_STUB_ALIAS(WindowPos3svARB, 682, WindowPos3svARB@4, WindowPos3svMESA, WindowPos3svMESA@4)
+ GL_STUB_ALIAS(BindProgramARB, 701, BindProgramARB@8, BindProgramNV, BindProgramNV@8)
+ GL_STUB_ALIAS(DeleteProgramsARB, 702, DeleteProgramsARB@8, DeleteProgramsNV, DeleteProgramsNV@8)
+ GL_STUB_ALIAS(GenProgramsARB, 704, GenProgramsARB@8, GenProgramsNV, GenProgramsNV@8)
+ GL_STUB_ALIAS(GetVertexAttribPointerv, 710, GetVertexAttribPointerv@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12)
+ GL_STUB_ALIAS(GetVertexAttribPointervARB, 710, GetVertexAttribPointervARB@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12)
+ GL_STUB_ALIAS(IsProgramARB, 714, IsProgramARB@4, IsProgramNV, IsProgramNV@4)
+ GL_STUB_ALIAS(PointParameteri, 778, PointParameteri@8, PointParameteriNV, PointParameteriNV@8)
+ GL_STUB_ALIAS(PointParameteriv, 779, PointParameteriv@8, PointParameterivNV, PointParameterivNV@8)
+ GL_STUB_ALIAS(DeleteVertexArrays, 782, DeleteVertexArrays@8, _dispatch_stub_782, _dispatch_stub_782@8)
+ GL_STUB_ALIAS(IsVertexArray, 784, IsVertexArray@4, _dispatch_stub_784, _dispatch_stub_784@4)
+ GL_STUB_ALIAS(PrimitiveRestartIndex, 791, PrimitiveRestartIndex@4, PrimitiveRestartIndexNV, PrimitiveRestartIndexNV@4)
+ GL_STUB_ALIAS(BlendEquationSeparate, 794, BlendEquationSeparate@8, _dispatch_stub_794, _dispatch_stub_794@8)
+ GL_STUB_ALIAS(BindFramebuffer, 795, BindFramebuffer@8, BindFramebufferEXT, BindFramebufferEXT@8)
+ GL_STUB_ALIAS(BindRenderbuffer, 796, BindRenderbuffer@8, BindRenderbufferEXT, BindRenderbufferEXT@8)
+ GL_STUB_ALIAS(CheckFramebufferStatus, 797, CheckFramebufferStatus@4, CheckFramebufferStatusEXT, CheckFramebufferStatusEXT@4)
+ GL_STUB_ALIAS(DeleteFramebuffers, 798, DeleteFramebuffers@8, DeleteFramebuffersEXT, DeleteFramebuffersEXT@8)
+ GL_STUB_ALIAS(DeleteRenderbuffers, 799, DeleteRenderbuffers@8, DeleteRenderbuffersEXT, DeleteRenderbuffersEXT@8)
+ GL_STUB_ALIAS(FramebufferRenderbuffer, 800, FramebufferRenderbuffer@16, FramebufferRenderbufferEXT, FramebufferRenderbufferEXT@16)
+ GL_STUB_ALIAS(FramebufferTexture1D, 801, FramebufferTexture1D@20, FramebufferTexture1DEXT, FramebufferTexture1DEXT@20)
+ GL_STUB_ALIAS(FramebufferTexture2D, 802, FramebufferTexture2D@20, FramebufferTexture2DEXT, FramebufferTexture2DEXT@20)
+ GL_STUB_ALIAS(FramebufferTexture3D, 803, FramebufferTexture3D@24, FramebufferTexture3DEXT, FramebufferTexture3DEXT@24)
+ GL_STUB_ALIAS(GenFramebuffers, 804, GenFramebuffers@8, GenFramebuffersEXT, GenFramebuffersEXT@8)
+ GL_STUB_ALIAS(GenRenderbuffers, 805, GenRenderbuffers@8, GenRenderbuffersEXT, GenRenderbuffersEXT@8)
+ GL_STUB_ALIAS(GenerateMipmap, 806, GenerateMipmap@4, GenerateMipmapEXT, GenerateMipmapEXT@4)
+ GL_STUB_ALIAS(GetFramebufferAttachmentParameteriv, 807, GetFramebufferAttachmentParameteriv@16, GetFramebufferAttachmentParameterivEXT, GetFramebufferAttachmentParameterivEXT@16)
+ GL_STUB_ALIAS(GetRenderbufferParameteriv, 808, GetRenderbufferParameteriv@12, GetRenderbufferParameterivEXT, GetRenderbufferParameterivEXT@12)
+ GL_STUB_ALIAS(IsFramebuffer, 809, IsFramebuffer@4, IsFramebufferEXT, IsFramebufferEXT@4)
+ GL_STUB_ALIAS(IsRenderbuffer, 810, IsRenderbuffer@4, IsRenderbufferEXT, IsRenderbufferEXT@4)
+ GL_STUB_ALIAS(RenderbufferStorage, 811, RenderbufferStorage@16, RenderbufferStorageEXT, RenderbufferStorageEXT@16)
+ GL_STUB_ALIAS(BlitFramebuffer, 812, BlitFramebuffer@40, _dispatch_stub_812, _dispatch_stub_812@40)
+ GL_STUB_ALIAS(BindFragDataLocation, 815, BindFragDataLocation@12, BindFragDataLocationEXT, BindFragDataLocationEXT@12)
+ GL_STUB_ALIAS(GetFragDataLocation, 816, GetFragDataLocation@8, GetFragDataLocationEXT, GetFragDataLocationEXT@8)
+ GL_STUB_ALIAS(GetUniformuiv, 817, GetUniformuiv@12, GetUniformuivEXT, GetUniformuivEXT@12)
+ GL_STUB_ALIAS(GetVertexAttribIiv, 818, GetVertexAttribIiv@12, GetVertexAttribIivEXT, GetVertexAttribIivEXT@12)
+ GL_STUB_ALIAS(GetVertexAttribIuiv, 819, GetVertexAttribIuiv@12, GetVertexAttribIuivEXT, GetVertexAttribIuivEXT@12)
+ GL_STUB_ALIAS(Uniform1ui, 820, Uniform1ui@8, Uniform1uiEXT, Uniform1uiEXT@8)
+ GL_STUB_ALIAS(Uniform1uiv, 821, Uniform1uiv@12, Uniform1uivEXT, Uniform1uivEXT@12)
+ GL_STUB_ALIAS(Uniform2ui, 822, Uniform2ui@12, Uniform2uiEXT, Uniform2uiEXT@12)
+ GL_STUB_ALIAS(Uniform2uiv, 823, Uniform2uiv@12, Uniform2uivEXT, Uniform2uivEXT@12)
+ GL_STUB_ALIAS(Uniform3ui, 824, Uniform3ui@16, Uniform3uiEXT, Uniform3uiEXT@16)
+ GL_STUB_ALIAS(Uniform3uiv, 825, Uniform3uiv@12, Uniform3uivEXT, Uniform3uivEXT@12)
+ GL_STUB_ALIAS(Uniform4ui, 826, Uniform4ui@20, Uniform4uiEXT, Uniform4uiEXT@20)
+ GL_STUB_ALIAS(Uniform4uiv, 827, Uniform4uiv@12, Uniform4uivEXT, Uniform4uivEXT@12)
+ GL_STUB_ALIAS(VertexAttribI1i, 828, VertexAttribI1i@8, VertexAttribI1iEXT, VertexAttribI1iEXT@8)
+ GL_STUB_ALIAS(VertexAttribI1iv, 829, VertexAttribI1iv@8, VertexAttribI1ivEXT, VertexAttribI1ivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI1ui, 830, VertexAttribI1ui@8, VertexAttribI1uiEXT, VertexAttribI1uiEXT@8)
+ GL_STUB_ALIAS(VertexAttribI1uiv, 831, VertexAttribI1uiv@8, VertexAttribI1uivEXT, VertexAttribI1uivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI2i, 832, VertexAttribI2i@12, VertexAttribI2iEXT, VertexAttribI2iEXT@12)
+ GL_STUB_ALIAS(VertexAttribI2iv, 833, VertexAttribI2iv@8, VertexAttribI2ivEXT, VertexAttribI2ivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI2ui, 834, VertexAttribI2ui@12, VertexAttribI2uiEXT, VertexAttribI2uiEXT@12)
+ GL_STUB_ALIAS(VertexAttribI2uiv, 835, VertexAttribI2uiv@8, VertexAttribI2uivEXT, VertexAttribI2uivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI3i, 836, VertexAttribI3i@16, VertexAttribI3iEXT, VertexAttribI3iEXT@16)
+ GL_STUB_ALIAS(VertexAttribI3iv, 837, VertexAttribI3iv@8, VertexAttribI3ivEXT, VertexAttribI3ivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI3ui, 838, VertexAttribI3ui@16, VertexAttribI3uiEXT, VertexAttribI3uiEXT@16)
+ GL_STUB_ALIAS(VertexAttribI3uiv, 839, VertexAttribI3uiv@8, VertexAttribI3uivEXT, VertexAttribI3uivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI4bv, 840, VertexAttribI4bv@8, VertexAttribI4bvEXT, VertexAttribI4bvEXT@8)
+ GL_STUB_ALIAS(VertexAttribI4i, 841, VertexAttribI4i@20, VertexAttribI4iEXT, VertexAttribI4iEXT@20)
+ GL_STUB_ALIAS(VertexAttribI4iv, 842, VertexAttribI4iv@8, VertexAttribI4ivEXT, VertexAttribI4ivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI4sv, 843, VertexAttribI4sv@8, VertexAttribI4svEXT, VertexAttribI4svEXT@8)
+ GL_STUB_ALIAS(VertexAttribI4ubv, 844, VertexAttribI4ubv@8, VertexAttribI4ubvEXT, VertexAttribI4ubvEXT@8)
+ GL_STUB_ALIAS(VertexAttribI4ui, 845, VertexAttribI4ui@20, VertexAttribI4uiEXT, VertexAttribI4uiEXT@20)
+ GL_STUB_ALIAS(VertexAttribI4uiv, 846, VertexAttribI4uiv@8, VertexAttribI4uivEXT, VertexAttribI4uivEXT@8)
+ GL_STUB_ALIAS(VertexAttribI4usv, 847, VertexAttribI4usv@8, VertexAttribI4usvEXT, VertexAttribI4usvEXT@8)
+ GL_STUB_ALIAS(VertexAttribIPointer, 848, VertexAttribIPointer@20, VertexAttribIPointerEXT, VertexAttribIPointerEXT@20)
+ GL_STUB_ALIAS(FramebufferTextureLayer, 849, FramebufferTextureLayer@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20)
+ GL_STUB_ALIAS(ColorMaski, 850, ColorMaski@20, ColorMaskIndexedEXT, ColorMaskIndexedEXT@20)
+ GL_STUB_ALIAS(Disablei, 851, Disablei@8, DisableIndexedEXT, DisableIndexedEXT@8)
+ GL_STUB_ALIAS(Enablei, 852, Enablei@8, EnableIndexedEXT, EnableIndexedEXT@8)
+ GL_STUB_ALIAS(GetBooleani_v, 853, GetBooleani_v@12, GetBooleanIndexedvEXT, GetBooleanIndexedvEXT@12)
+ GL_STUB_ALIAS(GetIntegeri_v, 854, GetIntegeri_v@12, GetIntegerIndexedvEXT, GetIntegerIndexedvEXT@12)
+ GL_STUB_ALIAS(IsEnabledi, 855, IsEnabledi@8, IsEnabledIndexedEXT, IsEnabledIndexedEXT@8)
+ GL_STUB_ALIAS(GetTexParameterIiv, 858, GetTexParameterIiv@12, GetTexParameterIivEXT, GetTexParameterIivEXT@12)
+ GL_STUB_ALIAS(GetTexParameterIuiv, 859, GetTexParameterIuiv@12, GetTexParameterIuivEXT, GetTexParameterIuivEXT@12)
+ GL_STUB_ALIAS(TexParameterIiv, 860, TexParameterIiv@12, TexParameterIivEXT, TexParameterIivEXT@12)
+ GL_STUB_ALIAS(TexParameterIuiv, 861, TexParameterIuiv@12, TexParameterIuivEXT, TexParameterIuivEXT@12)
+ GL_STUB_ALIAS(BeginConditionalRender, 862, BeginConditionalRender@8, BeginConditionalRenderNV, BeginConditionalRenderNV@8)
+ GL_STUB_ALIAS(EndConditionalRender, 863, EndConditionalRender@0, EndConditionalRenderNV, EndConditionalRenderNV@0)
+ GL_STUB_ALIAS(BeginTransformFeedback, 864, BeginTransformFeedback@4, BeginTransformFeedbackEXT, BeginTransformFeedbackEXT@4)
+ GL_STUB_ALIAS(BindBufferBase, 865, BindBufferBase@12, BindBufferBaseEXT, BindBufferBaseEXT@12)
+ GL_STUB_ALIAS(BindBufferRange, 867, BindBufferRange@20, BindBufferRangeEXT, BindBufferRangeEXT@20)
+ GL_STUB_ALIAS(EndTransformFeedback, 868, EndTransformFeedback@0, EndTransformFeedbackEXT, EndTransformFeedbackEXT@0)
+ GL_STUB_ALIAS(GetTransformFeedbackVarying, 869, GetTransformFeedbackVarying@28, GetTransformFeedbackVaryingEXT, GetTransformFeedbackVaryingEXT@28)
+ GL_STUB_ALIAS(TransformFeedbackVaryings, 870, TransformFeedbackVaryings@16, TransformFeedbackVaryingsEXT, TransformFeedbackVaryingsEXT@16)
+ GL_STUB_ALIAS(ProvokingVertex, 871, ProvokingVertex@4, ProvokingVertexEXT, ProvokingVertexEXT@4)
GLOBL GLNAME(gl_dispatch_functions_end)
HIDDEN(GLNAME(gl_dispatch_functions_end))
diff --git a/src/mapi/glapi/glapitable.h b/src/mapi/glapi/glapitable.h
index ff662dc7eca..80cbc56bf74 100644
--- a/src/mapi/glapi/glapitable.h
+++ b/src/mapi/glapi/glapitable.h
@@ -618,314 +618,315 @@ struct _glapi_table
void (GLAPIENTRYP FramebufferTextureARB)(GLenum target, GLenum attachment, GLuint texture, GLint level); /* 575 */
void (GLAPIENTRYP FramebufferTextureFaceARB)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); /* 576 */
void (GLAPIENTRYP ProgramParameteriARB)(GLuint program, GLenum pname, GLint value); /* 577 */
- void (GLAPIENTRYP FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length); /* 578 */
- GLvoid * (GLAPIENTRYP MapBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); /* 579 */
- void (GLAPIENTRYP BindVertexArray)(GLuint array); /* 580 */
- void (GLAPIENTRYP GenVertexArrays)(GLsizei n, GLuint * arrays); /* 581 */
- void (GLAPIENTRYP CopyBufferSubData)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); /* 582 */
- GLenum (GLAPIENTRYP ClientWaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 583 */
- void (GLAPIENTRYP DeleteSync)(GLsync sync); /* 584 */
- GLsync (GLAPIENTRYP FenceSync)(GLenum condition, GLbitfield flags); /* 585 */
- void (GLAPIENTRYP GetInteger64v)(GLenum pname, GLint64 * params); /* 586 */
- void (GLAPIENTRYP GetSynciv)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 587 */
- GLboolean (GLAPIENTRYP IsSync)(GLsync sync); /* 588 */
- void (GLAPIENTRYP WaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 589 */
- void (GLAPIENTRYP DrawElementsBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 590 */
- void (GLAPIENTRYP DrawRangeElementsBaseVertex)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 591 */
- void (GLAPIENTRYP MultiDrawElementsBaseVertex)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount, const GLint * basevertex); /* 592 */
- void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 593 */
- void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 594 */
- void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 595 */
- void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 596 */
- GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 597 */
- void (GLAPIENTRYP PauseTransformFeedback)(void); /* 598 */
- void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 599 */
- void (GLAPIENTRYP ClearDepthf)(GLclampf depth); /* 600 */
- void (GLAPIENTRYP DepthRangef)(GLclampf zNear, GLclampf zFar); /* 601 */
- void (GLAPIENTRYP GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision); /* 602 */
- void (GLAPIENTRYP ReleaseShaderCompiler)(void); /* 603 */
- void (GLAPIENTRYP ShaderBinary)(GLsizei n, const GLuint * shaders, GLenum binaryformat, const GLvoid * binary, GLsizei length); /* 604 */
- void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 605 */
- void (GLAPIENTRYP GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params); /* 606 */
- void (GLAPIENTRYP GetPixelTexGenParameterivSGIS)(GLenum pname, GLint * params); /* 607 */
- void (GLAPIENTRYP PixelTexGenParameterfSGIS)(GLenum pname, GLfloat param); /* 608 */
- void (GLAPIENTRYP PixelTexGenParameterfvSGIS)(GLenum pname, const GLfloat * params); /* 609 */
- void (GLAPIENTRYP PixelTexGenParameteriSGIS)(GLenum pname, GLint param); /* 610 */
- void (GLAPIENTRYP PixelTexGenParameterivSGIS)(GLenum pname, const GLint * params); /* 611 */
- void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 612 */
- void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 613 */
- void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 614 */
- void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 615 */
- void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 616 */
- void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 617 */
- void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 618 */
- void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 619 */
- void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 620 */
- void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 621 */
- void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 622 */
- void (GLAPIENTRYP UnlockArraysEXT)(void); /* 623 */
- void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 624 */
- void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 625 */
- void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 626 */
- void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 627 */
- void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 628 */
- void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 629 */
- void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 630 */
- void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 631 */
- void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 632 */
- void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 633 */
- void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 634 */
- void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 635 */
- void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 636 */
- void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 637 */
- void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 638 */
- void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 639 */
- void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 640 */
- void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); /* 641 */
- void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 642 */
- void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 643 */
- void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 644 */
- void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 645 */
- void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 646 */
- void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 647 */
- void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 648 */
- void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 649 */
- void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 650 */
- void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 651 */
- void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 652 */
- void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 653 */
- void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 654 */
- void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 655 */
- void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 656 */
- void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 657 */
- void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 658 */
- void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 659 */
- void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 660 */
- void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 661 */
- void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 662 */
- void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 663 */
- void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 664 */
- void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 665 */
- void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 666 */
- void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 667 */
- void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 668 */
- void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 669 */
- void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 670 */
- void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 671 */
- void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 672 */
- void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 673 */
- void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 674 */
- void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 675 */
- void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 676 */
- void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 677 */
- void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 678 */
- void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 679 */
- void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 680 */
- void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 681 */
- void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 682 */
- void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 683 */
- void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 684 */
- void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 685 */
- void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 686 */
- void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 687 */
- void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 688 */
- void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 689 */
- void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 690 */
- void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 691 */
- void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 692 */
- void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 693 */
- void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 694 */
- void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 695 */
- GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 696 */
- void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 697 */
- GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 698 */
- GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 699 */
- void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 700 */
- void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 701 */
- void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 702 */
- void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 703 */
- void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 704 */
- void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 705 */
- void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 706 */
- void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 707 */
- void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 708 */
- void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 709 */
- void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 710 */
- void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 711 */
- void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 712 */
- GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 713 */
- void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 714 */
- void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 715 */
- void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 716 */
- void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 717 */
- void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 718 */
- void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 719 */
- void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 720 */
- void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 721 */
- void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 722 */
- void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 723 */
- void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 724 */
- void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 725 */
- void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 726 */
- void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 727 */
- void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 728 */
- void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 729 */
- void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 730 */
- void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 731 */
- void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 732 */
- void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 733 */
- void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 734 */
- void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 735 */
- void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 736 */
- void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 737 */
- void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 738 */
- void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 739 */
- void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 740 */
- void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 741 */
- void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 742 */
- void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 743 */
- void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 744 */
- void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 745 */
- void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 746 */
- void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 747 */
- void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 748 */
- void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 749 */
- void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 750 */
- void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 751 */
- void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 752 */
- void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 753 */
- void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 754 */
- void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 755 */
- void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 756 */
- void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 757 */
- void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 758 */
- void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 759 */
- void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 760 */
- void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 761 */
- void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 762 */
- void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 763 */
- void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 764 */
- 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); /* 765 */
- void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 766 */
- void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 767 */
- void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 768 */
- void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 769 */
- 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); /* 770 */
- void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 771 */
- void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 772 */
- GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 773 */
- void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 774 */
- void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 775 */
- void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 776 */
- void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 777 */
- void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 778 */
- void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 779 */
- void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 780 */
- void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 781 */
- void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 782 */
- GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 783 */
- void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 784 */
- void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 785 */
- void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 786 */
- void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 787 */
- void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 788 */
- void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 789 */
- void (GLAPIENTRYP PrimitiveRestartIndexNV)(GLuint index); /* 790 */
- void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 791 */
- void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 792 */
- void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 793 */
- void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 794 */
- void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 795 */
- GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 796 */
- void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 797 */
- void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 798 */
- void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 799 */
- void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 800 */
- void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 801 */
- void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 802 */
- void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 803 */
- void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 804 */
- void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 805 */
- void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 806 */
- void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 807 */
- GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 808 */
- GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 809 */
- void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 810 */
- void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 811 */
- void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 812 */
- void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 813 */
- void (GLAPIENTRYP BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar * name); /* 814 */
- GLint (GLAPIENTRYP GetFragDataLocationEXT)(GLuint program, const GLchar * name); /* 815 */
- void (GLAPIENTRYP GetUniformuivEXT)(GLuint program, GLint location, GLuint * params); /* 816 */
- void (GLAPIENTRYP GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint * params); /* 817 */
- void (GLAPIENTRYP GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint * params); /* 818 */
- void (GLAPIENTRYP Uniform1uiEXT)(GLint location, GLuint x); /* 819 */
- void (GLAPIENTRYP Uniform1uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 820 */
- void (GLAPIENTRYP Uniform2uiEXT)(GLint location, GLuint x, GLuint y); /* 821 */
- void (GLAPIENTRYP Uniform2uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 822 */
- void (GLAPIENTRYP Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z); /* 823 */
- void (GLAPIENTRYP Uniform3uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 824 */
- void (GLAPIENTRYP Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w); /* 825 */
- void (GLAPIENTRYP Uniform4uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 826 */
- void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 827 */
- void (GLAPIENTRYP VertexAttribI1ivEXT)(GLuint index, const GLint * v); /* 828 */
- void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 829 */
- void (GLAPIENTRYP VertexAttribI1uivEXT)(GLuint index, const GLuint * v); /* 830 */
- void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 831 */
- void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 832 */
- void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 833 */
- void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 834 */
- void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 835 */
- void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 836 */
- void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 837 */
- void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 838 */
- void (GLAPIENTRYP VertexAttribI4bvEXT)(GLuint index, const GLbyte * v); /* 839 */
- void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 840 */
- void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 841 */
- void (GLAPIENTRYP VertexAttribI4svEXT)(GLuint index, const GLshort * v); /* 842 */
- void (GLAPIENTRYP VertexAttribI4ubvEXT)(GLuint index, const GLubyte * v); /* 843 */
- void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 844 */
- void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 845 */
- void (GLAPIENTRYP VertexAttribI4usvEXT)(GLuint index, const GLushort * v); /* 846 */
- void (GLAPIENTRYP VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 847 */
- void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 848 */
- void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 849 */
- void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 850 */
- void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 851 */
- void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 852 */
- void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 853 */
- GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 854 */
- void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 855 */
- void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 856 */
- void (GLAPIENTRYP GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint * params); /* 857 */
- void (GLAPIENTRYP GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint * params); /* 858 */
- void (GLAPIENTRYP TexParameterIivEXT)(GLenum target, GLenum pname, const GLint * params); /* 859 */
- void (GLAPIENTRYP TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint * params); /* 860 */
- void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 861 */
- void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 862 */
- void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 863 */
- void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 864 */
- void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 865 */
- void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 866 */
- void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 867 */
- void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 868 */
- void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 869 */
- void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 870 */
- void (GLAPIENTRYP GetTexParameterPointervAPPLE)(GLenum target, GLenum pname, GLvoid ** params); /* 871 */
- void (GLAPIENTRYP TextureRangeAPPLE)(GLenum target, GLsizei length, GLvoid * pointer); /* 872 */
- void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 873 */
- GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 874 */
- GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 875 */
- void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 876 */
- GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 877 */
- void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 878 */
- void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 879 */
- void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 880 */
- void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 881 */
- void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 882 */
- void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 883 */
- void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 884 */
- void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 885 */
+ void (GLAPIENTRYP VertexAttribDivisorARB)(GLuint index, GLuint divisor); /* 578 */
+ void (GLAPIENTRYP FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length); /* 579 */
+ GLvoid * (GLAPIENTRYP MapBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); /* 580 */
+ void (GLAPIENTRYP BindVertexArray)(GLuint array); /* 581 */
+ void (GLAPIENTRYP GenVertexArrays)(GLsizei n, GLuint * arrays); /* 582 */
+ void (GLAPIENTRYP CopyBufferSubData)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); /* 583 */
+ GLenum (GLAPIENTRYP ClientWaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 584 */
+ void (GLAPIENTRYP DeleteSync)(GLsync sync); /* 585 */
+ GLsync (GLAPIENTRYP FenceSync)(GLenum condition, GLbitfield flags); /* 586 */
+ void (GLAPIENTRYP GetInteger64v)(GLenum pname, GLint64 * params); /* 587 */
+ void (GLAPIENTRYP GetSynciv)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 588 */
+ GLboolean (GLAPIENTRYP IsSync)(GLsync sync); /* 589 */
+ void (GLAPIENTRYP WaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 590 */
+ void (GLAPIENTRYP DrawElementsBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 591 */
+ void (GLAPIENTRYP DrawRangeElementsBaseVertex)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 592 */
+ void (GLAPIENTRYP MultiDrawElementsBaseVertex)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount, const GLint * basevertex); /* 593 */
+ void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 594 */
+ void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 595 */
+ void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 596 */
+ void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 597 */
+ GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 598 */
+ void (GLAPIENTRYP PauseTransformFeedback)(void); /* 599 */
+ void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 600 */
+ void (GLAPIENTRYP ClearDepthf)(GLclampf depth); /* 601 */
+ void (GLAPIENTRYP DepthRangef)(GLclampf zNear, GLclampf zFar); /* 602 */
+ void (GLAPIENTRYP GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision); /* 603 */
+ void (GLAPIENTRYP ReleaseShaderCompiler)(void); /* 604 */
+ void (GLAPIENTRYP ShaderBinary)(GLsizei n, const GLuint * shaders, GLenum binaryformat, const GLvoid * binary, GLsizei length); /* 605 */
+ void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 606 */
+ void (GLAPIENTRYP GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params); /* 607 */
+ void (GLAPIENTRYP GetPixelTexGenParameterivSGIS)(GLenum pname, GLint * params); /* 608 */
+ void (GLAPIENTRYP PixelTexGenParameterfSGIS)(GLenum pname, GLfloat param); /* 609 */
+ void (GLAPIENTRYP PixelTexGenParameterfvSGIS)(GLenum pname, const GLfloat * params); /* 610 */
+ void (GLAPIENTRYP PixelTexGenParameteriSGIS)(GLenum pname, GLint param); /* 611 */
+ void (GLAPIENTRYP PixelTexGenParameterivSGIS)(GLenum pname, const GLint * params); /* 612 */
+ void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 613 */
+ void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 614 */
+ void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 615 */
+ void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 616 */
+ void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 617 */
+ void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 618 */
+ void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 619 */
+ void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 620 */
+ void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 621 */
+ void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 622 */
+ void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 623 */
+ void (GLAPIENTRYP UnlockArraysEXT)(void); /* 624 */
+ void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 625 */
+ void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 626 */
+ void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 627 */
+ void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 628 */
+ void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 629 */
+ void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 630 */
+ void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 631 */
+ void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 632 */
+ void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 633 */
+ void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 634 */
+ void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 635 */
+ void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 636 */
+ void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 637 */
+ void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 638 */
+ void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 639 */
+ void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 640 */
+ void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 641 */
+ void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); /* 642 */
+ void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 643 */
+ void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 644 */
+ void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 645 */
+ void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 646 */
+ void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 647 */
+ void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 648 */
+ void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 649 */
+ void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 650 */
+ void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 651 */
+ void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 652 */
+ void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 653 */
+ void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 654 */
+ void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 655 */
+ void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 656 */
+ void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 657 */
+ void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 658 */
+ void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 659 */
+ void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 660 */
+ void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 661 */
+ void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 662 */
+ void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 663 */
+ void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 664 */
+ void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 665 */
+ void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 666 */
+ void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 667 */
+ void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 668 */
+ void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 669 */
+ void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 670 */
+ void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 671 */
+ void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 672 */
+ void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 673 */
+ void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 674 */
+ void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 675 */
+ void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 676 */
+ void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 677 */
+ void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 678 */
+ void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 679 */
+ void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 680 */
+ void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 681 */
+ void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 682 */
+ void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 683 */
+ void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 684 */
+ void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 685 */
+ void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 686 */
+ void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 687 */
+ void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 688 */
+ void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 689 */
+ void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 690 */
+ void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 691 */
+ void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 692 */
+ void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 693 */
+ void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 694 */
+ void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 695 */
+ void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 696 */
+ GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 697 */
+ void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 698 */
+ GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 699 */
+ GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 700 */
+ void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 701 */
+ void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 702 */
+ void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 703 */
+ void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 704 */
+ void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 705 */
+ void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 706 */
+ void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 707 */
+ void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 708 */
+ void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 709 */
+ void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 710 */
+ void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 711 */
+ void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 712 */
+ void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 713 */
+ GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 714 */
+ void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 715 */
+ void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 716 */
+ void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 717 */
+ void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 718 */
+ void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 719 */
+ void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 720 */
+ void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 721 */
+ void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 722 */
+ void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 723 */
+ void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 724 */
+ void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 725 */
+ void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 726 */
+ void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 727 */
+ void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 728 */
+ void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 729 */
+ void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 730 */
+ void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 731 */
+ void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 732 */
+ void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 733 */
+ void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 734 */
+ void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 735 */
+ void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 736 */
+ void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 737 */
+ void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 738 */
+ void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 739 */
+ void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 740 */
+ void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 741 */
+ void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 742 */
+ void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 743 */
+ void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 744 */
+ void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 745 */
+ void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 746 */
+ void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 747 */
+ void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 748 */
+ void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 749 */
+ void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 750 */
+ void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 751 */
+ void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 752 */
+ void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 753 */
+ void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 754 */
+ void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 755 */
+ void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 756 */
+ void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 757 */
+ void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 758 */
+ void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 759 */
+ void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 760 */
+ void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 761 */
+ void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 762 */
+ void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 763 */
+ void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 764 */
+ void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 765 */
+ 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); /* 766 */
+ void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 767 */
+ void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 768 */
+ void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 769 */
+ void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 770 */
+ 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); /* 771 */
+ void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 772 */
+ void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 773 */
+ GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 774 */
+ void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 775 */
+ void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 776 */
+ void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 777 */
+ void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 778 */
+ void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 779 */
+ void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 780 */
+ void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 781 */
+ void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 782 */
+ void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 783 */
+ GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 784 */
+ void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 785 */
+ void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 786 */
+ void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 787 */
+ void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 788 */
+ void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 789 */
+ void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 790 */
+ void (GLAPIENTRYP PrimitiveRestartIndexNV)(GLuint index); /* 791 */
+ void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 792 */
+ void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 793 */
+ void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 794 */
+ void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 795 */
+ void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 796 */
+ GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 797 */
+ void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 798 */
+ void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 799 */
+ void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 800 */
+ void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 801 */
+ void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 802 */
+ void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 803 */
+ void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 804 */
+ void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 805 */
+ void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 806 */
+ void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 807 */
+ void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 808 */
+ GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 809 */
+ GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 810 */
+ void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 811 */
+ void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 812 */
+ void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 813 */
+ void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 814 */
+ void (GLAPIENTRYP BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar * name); /* 815 */
+ GLint (GLAPIENTRYP GetFragDataLocationEXT)(GLuint program, const GLchar * name); /* 816 */
+ void (GLAPIENTRYP GetUniformuivEXT)(GLuint program, GLint location, GLuint * params); /* 817 */
+ void (GLAPIENTRYP GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint * params); /* 818 */
+ void (GLAPIENTRYP GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint * params); /* 819 */
+ void (GLAPIENTRYP Uniform1uiEXT)(GLint location, GLuint x); /* 820 */
+ void (GLAPIENTRYP Uniform1uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 821 */
+ void (GLAPIENTRYP Uniform2uiEXT)(GLint location, GLuint x, GLuint y); /* 822 */
+ void (GLAPIENTRYP Uniform2uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 823 */
+ void (GLAPIENTRYP Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z); /* 824 */
+ void (GLAPIENTRYP Uniform3uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 825 */
+ void (GLAPIENTRYP Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w); /* 826 */
+ void (GLAPIENTRYP Uniform4uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 827 */
+ void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 828 */
+ void (GLAPIENTRYP VertexAttribI1ivEXT)(GLuint index, const GLint * v); /* 829 */
+ void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 830 */
+ void (GLAPIENTRYP VertexAttribI1uivEXT)(GLuint index, const GLuint * v); /* 831 */
+ void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 832 */
+ void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 833 */
+ void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 834 */
+ void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 835 */
+ void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 836 */
+ void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 837 */
+ void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 838 */
+ void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 839 */
+ void (GLAPIENTRYP VertexAttribI4bvEXT)(GLuint index, const GLbyte * v); /* 840 */
+ void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 841 */
+ void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 842 */
+ void (GLAPIENTRYP VertexAttribI4svEXT)(GLuint index, const GLshort * v); /* 843 */
+ void (GLAPIENTRYP VertexAttribI4ubvEXT)(GLuint index, const GLubyte * v); /* 844 */
+ void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 845 */
+ void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 846 */
+ void (GLAPIENTRYP VertexAttribI4usvEXT)(GLuint index, const GLushort * v); /* 847 */
+ void (GLAPIENTRYP VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 848 */
+ void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 849 */
+ void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 850 */
+ void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 851 */
+ void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 852 */
+ void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 853 */
+ void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 854 */
+ GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 855 */
+ void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 856 */
+ void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 857 */
+ void (GLAPIENTRYP GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint * params); /* 858 */
+ void (GLAPIENTRYP GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint * params); /* 859 */
+ void (GLAPIENTRYP TexParameterIivEXT)(GLenum target, GLenum pname, const GLint * params); /* 860 */
+ void (GLAPIENTRYP TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint * params); /* 861 */
+ void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 862 */
+ void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 863 */
+ void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 864 */
+ void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 865 */
+ void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 866 */
+ void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 867 */
+ void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 868 */
+ void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 869 */
+ void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 870 */
+ void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 871 */
+ void (GLAPIENTRYP GetTexParameterPointervAPPLE)(GLenum target, GLenum pname, GLvoid ** params); /* 872 */
+ void (GLAPIENTRYP TextureRangeAPPLE)(GLenum target, GLsizei length, GLvoid * pointer); /* 873 */
+ void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 874 */
+ GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 875 */
+ GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 876 */
+ void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 877 */
+ GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 878 */
+ void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 879 */
+ void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 880 */
+ void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 881 */
+ void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 882 */
+ void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 883 */
+ void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 884 */
+ void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 885 */
+ void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 886 */
};
#endif /* !defined( _GLAPI_TABLE_H_ ) */
diff --git a/src/mapi/glapi/glapitemp.h b/src/mapi/glapi/glapitemp.h
index 2ccb29978ba..22047204099 100644
--- a/src/mapi/glapi/glapitemp.h
+++ b/src/mapi/glapi/glapitemp.h
@@ -3952,6 +3952,11 @@ KEYWORD1 void KEYWORD2 NAME(ProgramParameteriARB)(GLuint program, GLenum pname,
DISPATCH(ProgramParameteriARB, (program, pname, value), (F, "glProgramParameteriARB(%d, 0x%x, %d);\n", program, pname, value));
}
+KEYWORD1 void KEYWORD2 NAME(VertexAttribDivisorARB)(GLuint index, GLuint divisor)
+{
+ DISPATCH(VertexAttribDivisorARB, (index, divisor), (F, "glVertexAttribDivisorARB(%d, %d);\n", index, divisor));
+}
+
KEYWORD1 void KEYWORD2 NAME(FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length)
{
DISPATCH(FlushMappedBufferRange, (target, offset, length), (F, "glFlushMappedBufferRange(0x%x, %d, %d);\n", target, offset, length));
@@ -4092,58 +4097,58 @@ KEYWORD1 void KEYWORD2 NAME(PolygonOffsetEXT)(GLfloat factor, GLfloat bias)
DISPATCH(PolygonOffsetEXT, (factor, bias), (F, "glPolygonOffsetEXT(%f, %f);\n", factor, bias));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_606)(GLenum pname, GLfloat * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_607)(GLenum pname, GLfloat * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_606)(GLenum pname, GLfloat * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_607)(GLenum pname, GLfloat * params)
{
DISPATCH(GetPixelTexGenParameterfvSGIS, (pname, params), (F, "glGetPixelTexGenParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_607)(GLenum pname, GLint * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_608)(GLenum pname, GLint * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_607)(GLenum pname, GLint * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_608)(GLenum pname, GLint * params)
{
DISPATCH(GetPixelTexGenParameterivSGIS, (pname, params), (F, "glGetPixelTexGenParameterivSGIS(0x%x, %p);\n", pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_608)(GLenum pname, GLfloat param);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, GLfloat param);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_608)(GLenum pname, GLfloat param)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, GLfloat param)
{
DISPATCH(PixelTexGenParameterfSGIS, (pname, param), (F, "glPixelTexGenParameterfSGIS(0x%x, %f);\n", pname, param));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, const GLfloat * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_610)(GLenum pname, const GLfloat * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, const GLfloat * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_610)(GLenum pname, const GLfloat * params)
{
DISPATCH(PixelTexGenParameterfvSGIS, (pname, params), (F, "glPixelTexGenParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_610)(GLenum pname, GLint param);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_611)(GLenum pname, GLint param);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_610)(GLenum pname, GLint param)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_611)(GLenum pname, GLint param)
{
DISPATCH(PixelTexGenParameteriSGIS, (pname, param), (F, "glPixelTexGenParameteriSGIS(0x%x, %d);\n", pname, param));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_611)(GLenum pname, const GLint * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_612)(GLenum pname, const GLint * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_611)(GLenum pname, const GLint * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_612)(GLenum pname, const GLint * params)
{
DISPATCH(PixelTexGenParameterivSGIS, (pname, params), (F, "glPixelTexGenParameterivSGIS(0x%x, %p);\n", pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_612)(GLclampf value, GLboolean invert);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_613)(GLclampf value, GLboolean invert);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_612)(GLclampf value, GLboolean invert)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_613)(GLclampf value, GLboolean invert)
{
DISPATCH(SampleMaskSGIS, (value, invert), (F, "glSampleMaskSGIS(%f, %d);\n", value, invert));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_613)(GLenum pattern);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_614)(GLenum pattern);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_613)(GLenum pattern)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_614)(GLenum pattern)
{
DISPATCH(SamplePatternSGIS, (pattern), (F, "glSamplePatternSGIS(0x%x);\n", pattern));
}
@@ -4193,9 +4198,9 @@ KEYWORD1 void KEYWORD2 NAME(PointParameterfEXT)(GLenum pname, GLfloat param)
DISPATCH(PointParameterfEXT, (pname, param), (F, "glPointParameterfEXT(0x%x, %f);\n", pname, param));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_620)(GLenum pname, GLfloat param);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_621)(GLenum pname, GLfloat param);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_620)(GLenum pname, GLfloat param)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_621)(GLenum pname, GLfloat param)
{
DISPATCH(PointParameterfEXT, (pname, param), (F, "glPointParameterfSGIS(0x%x, %f);\n", pname, param));
}
@@ -4215,9 +4220,9 @@ KEYWORD1 void KEYWORD2 NAME(PointParameterfvEXT)(GLenum pname, const GLfloat * p
DISPATCH(PointParameterfvEXT, (pname, params), (F, "glPointParameterfvEXT(0x%x, %p);\n", pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_621)(GLenum pname, const GLfloat * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_622)(GLenum pname, const GLfloat * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_621)(GLenum pname, const GLfloat * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_622)(GLenum pname, const GLfloat * params)
{
DISPATCH(PointParameterfvEXT, (pname, params), (F, "glPointParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params));
}
@@ -4472,9 +4477,9 @@ KEYWORD1 void KEYWORD2 NAME(FogCoordfvEXT)(const GLfloat * coord)
DISPATCH(FogCoordfvEXT, (coord), (F, "glFogCoordfvEXT(%p);\n", (const void *) coord));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_648)(GLenum mode);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_649)(GLenum mode);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_648)(GLenum mode)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_649)(GLenum mode)
{
DISPATCH(PixelTexGenSGIX, (mode), (F, "glPixelTexGenSGIX(0x%x);\n", mode));
}
@@ -4489,9 +4494,9 @@ KEYWORD1 void KEYWORD2 NAME(BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfac
DISPATCH(BlendFuncSeparateEXT, (sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha), (F, "glBlendFuncSeparateEXT(0x%x, 0x%x, 0x%x, 0x%x);\n", sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_649)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_650)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_649)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_650)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
{
DISPATCH(BlendFuncSeparateEXT, (sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha), (F, "glBlendFuncSeparateINGR(0x%x, 0x%x, 0x%x, 0x%x);\n", sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha));
}
@@ -4856,65 +4861,65 @@ KEYWORD1 void KEYWORD2 NAME(WindowPos4svMESA)(const GLshort * v)
DISPATCH(WindowPos4svMESA, (v), (F, "glWindowPos4svMESA(%p);\n", (const void *) v));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_690)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_691)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_690)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_691)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride)
{
DISPATCH(MultiModeDrawArraysIBM, (mode, first, count, primcount, modestride), (F, "glMultiModeDrawArraysIBM(%p, %p, %p, %d, %d);\n", (const void *) mode, (const void *) first, (const void *) count, primcount, modestride));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_691)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_692)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_691)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_692)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride)
{
DISPATCH(MultiModeDrawElementsIBM, (mode, count, type, indices, primcount, modestride), (F, "glMultiModeDrawElementsIBM(%p, %p, 0x%x, %p, %d, %d);\n", (const void *) mode, (const void *) count, type, (const void *) indices, primcount, modestride));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_692)(GLsizei n, const GLuint * fences);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_693)(GLsizei n, const GLuint * fences);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_692)(GLsizei n, const GLuint * fences)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_693)(GLsizei n, const GLuint * fences)
{
DISPATCH(DeleteFencesNV, (n, fences), (F, "glDeleteFencesNV(%d, %p);\n", n, (const void *) fences));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_693)(GLuint fence);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_694)(GLuint fence);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_693)(GLuint fence)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_694)(GLuint fence)
{
DISPATCH(FinishFenceNV, (fence), (F, "glFinishFenceNV(%d);\n", fence));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_694)(GLsizei n, GLuint * fences);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_695)(GLsizei n, GLuint * fences);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_694)(GLsizei n, GLuint * fences)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_695)(GLsizei n, GLuint * fences)
{
DISPATCH(GenFencesNV, (n, fences), (F, "glGenFencesNV(%d, %p);\n", n, (const void *) fences));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_695)(GLuint fence, GLenum pname, GLint * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_696)(GLuint fence, GLenum pname, GLint * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_695)(GLuint fence, GLenum pname, GLint * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_696)(GLuint fence, GLenum pname, GLint * params)
{
DISPATCH(GetFenceivNV, (fence, pname, params), (F, "glGetFenceivNV(%d, 0x%x, %p);\n", fence, pname, (const void *) params));
}
-KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_696)(GLuint fence);
+KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_697)(GLuint fence);
-KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_696)(GLuint fence)
+KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_697)(GLuint fence)
{
RETURN_DISPATCH(IsFenceNV, (fence), (F, "glIsFenceNV(%d);\n", fence));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_697)(GLuint fence, GLenum condition);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_698)(GLuint fence, GLenum condition);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_697)(GLuint fence, GLenum condition)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_698)(GLuint fence, GLenum condition)
{
DISPATCH(SetFenceNV, (fence, condition), (F, "glSetFenceNV(%d, 0x%x);\n", fence, condition));
}
-KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_698)(GLuint fence);
+KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_699)(GLuint fence);
-KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_698)(GLuint fence)
+KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_699)(GLuint fence)
{
RETURN_DISPATCH(TestFenceNV, (fence), (F, "glTestFenceNV(%d);\n", fence));
}
@@ -5359,16 +5364,16 @@ KEYWORD1 void KEYWORD2 NAME(PointParameterivNV)(GLenum pname, const GLint * para
DISPATCH(PointParameterivNV, (pname, params), (F, "glPointParameterivNV(0x%x, %p);\n", pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_779)(GLenum face);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_780)(GLenum face);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_779)(GLenum face)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_780)(GLenum face)
{
DISPATCH(ActiveStencilFaceEXT, (face), (F, "glActiveStencilFaceEXT(0x%x);\n", face));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_780)(GLuint array);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_781)(GLuint array);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_780)(GLuint array)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_781)(GLuint array)
{
DISPATCH(BindVertexArrayAPPLE, (array), (F, "glBindVertexArrayAPPLE(%d);\n", array));
}
@@ -5378,16 +5383,16 @@ KEYWORD1 void KEYWORD2 NAME(DeleteVertexArrays)(GLsizei n, const GLuint * arrays
DISPATCH(DeleteVertexArraysAPPLE, (n, arrays), (F, "glDeleteVertexArrays(%d, %p);\n", n, (const void *) arrays));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_781)(GLsizei n, const GLuint * arrays);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(GLsizei n, const GLuint * arrays);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_781)(GLsizei n, const GLuint * arrays)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(GLsizei n, const GLuint * arrays)
{
DISPATCH(DeleteVertexArraysAPPLE, (n, arrays), (F, "glDeleteVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(GLsizei n, GLuint * arrays);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_783)(GLsizei n, GLuint * arrays);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(GLsizei n, GLuint * arrays)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_783)(GLsizei n, GLuint * arrays)
{
DISPATCH(GenVertexArraysAPPLE, (n, arrays), (F, "glGenVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays));
}
@@ -5397,9 +5402,9 @@ KEYWORD1 GLboolean KEYWORD2 NAME(IsVertexArray)(GLuint array)
RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArray(%d);\n", array));
}
-KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_783)(GLuint array);
+KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_784)(GLuint array);
-KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_783)(GLuint array)
+KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_784)(GLuint array)
{
RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArrayAPPLE(%d);\n", array));
}
@@ -5449,9 +5454,9 @@ KEYWORD1 void KEYWORD2 NAME(PrimitiveRestartNV)(void)
DISPATCH(PrimitiveRestartNV, (), (F, "glPrimitiveRestartNV();\n"));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_792)(GLclampd zmin, GLclampd zmax);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_793)(GLclampd zmin, GLclampd zmax);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_792)(GLclampd zmin, GLclampd zmax)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_793)(GLclampd zmin, GLclampd zmax)
{
DISPATCH(DepthBoundsEXT, (zmin, zmax), (F, "glDepthBoundsEXT(%f, %f);\n", zmin, zmax));
}
@@ -5461,9 +5466,9 @@ KEYWORD1 void KEYWORD2 NAME(BlendEquationSeparate)(GLenum modeRGB, GLenum modeA)
DISPATCH(BlendEquationSeparateEXT, (modeRGB, modeA), (F, "glBlendEquationSeparate(0x%x, 0x%x);\n", modeRGB, modeA));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_793)(GLenum modeRGB, GLenum modeA);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_794)(GLenum modeRGB, GLenum modeA);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_793)(GLenum modeRGB, GLenum modeA)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_794)(GLenum modeRGB, GLenum modeA)
{
DISPATCH(BlendEquationSeparateEXT, (modeRGB, modeA), (F, "glBlendEquationSeparateEXT(0x%x, 0x%x);\n", modeRGB, modeA));
}
@@ -5643,23 +5648,23 @@ KEYWORD1 void KEYWORD2 NAME(BlitFramebuffer)(GLint srcX0, GLint srcY0, GLint src
DISPATCH(BlitFramebufferEXT, (srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter), (F, "glBlitFramebuffer(%d, %d, %d, %d, %d, %d, %d, %d, %d, 0x%x);\n", srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_811)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_812)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_811)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_812)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
{
DISPATCH(BlitFramebufferEXT, (srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter), (F, "glBlitFramebufferEXT(%d, %d, %d, %d, %d, %d, %d, %d, %d, 0x%x);\n", srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_812)(GLenum target, GLenum pname, GLint param);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_813)(GLenum target, GLenum pname, GLint param);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_812)(GLenum target, GLenum pname, GLint param)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_813)(GLenum target, GLenum pname, GLint param)
{
DISPATCH(BufferParameteriAPPLE, (target, pname, param), (F, "glBufferParameteriAPPLE(0x%x, 0x%x, %d);\n", target, pname, param));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_813)(GLenum target, GLintptr offset, GLsizeiptr size);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_814)(GLenum target, GLintptr offset, GLsizeiptr size);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_813)(GLenum target, GLintptr offset, GLsizeiptr size)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_814)(GLenum target, GLintptr offset, GLsizeiptr size)
{
DISPATCH(FlushMappedBufferRangeAPPLE, (target, offset, size), (F, "glFlushMappedBufferRangeAPPLE(0x%x, %d, %d);\n", target, offset, size));
}
@@ -6219,16 +6224,16 @@ KEYWORD1 void KEYWORD2 NAME(ProvokingVertex)(GLenum mode)
DISPATCH(ProvokingVertexEXT, (mode), (F, "glProvokingVertex(0x%x);\n", mode));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_871)(GLenum target, GLenum pname, GLvoid ** params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLenum target, GLenum pname, GLvoid ** params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_871)(GLenum target, GLenum pname, GLvoid ** params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLenum target, GLenum pname, GLvoid ** params)
{
DISPATCH(GetTexParameterPointervAPPLE, (target, pname, params), (F, "glGetTexParameterPointervAPPLE(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLenum target, GLsizei length, GLvoid * pointer);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_873)(GLenum target, GLsizei length, GLvoid * pointer);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLenum target, GLsizei length, GLvoid * pointer)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_873)(GLenum target, GLsizei length, GLvoid * pointer)
{
DISPATCH(TextureRangeAPPLE, (target, length, pointer), (F, "glTextureRangeAPPLE(0x%x, %d, %p);\n", target, length, (const void *) pointer));
}
@@ -6263,37 +6268,37 @@ KEYWORD1 void KEYWORD2 NAME(UseShaderProgramEXT)(GLenum type, GLuint program)
DISPATCH(UseShaderProgramEXT, (type, program), (F, "glUseShaderProgramEXT(0x%x, %d);\n", type, program));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_879)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_880)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_879)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_880)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask)
{
DISPATCH(StencilFuncSeparateATI, (frontfunc, backfunc, ref, mask), (F, "glStencilFuncSeparateATI(0x%x, 0x%x, %d, %d);\n", frontfunc, backfunc, ref, mask));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_880)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_881)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_880)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_881)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
{
DISPATCH(ProgramEnvParameters4fvEXT, (target, index, count, params), (F, "glProgramEnvParameters4fvEXT(0x%x, %d, %d, %p);\n", target, index, count, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_881)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_882)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_881)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_882)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
{
DISPATCH(ProgramLocalParameters4fvEXT, (target, index, count, params), (F, "glProgramLocalParameters4fvEXT(0x%x, %d, %d, %p);\n", target, index, count, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_882)(GLuint id, GLenum pname, GLint64EXT * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_883)(GLuint id, GLenum pname, GLint64EXT * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_882)(GLuint id, GLenum pname, GLint64EXT * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_883)(GLuint id, GLenum pname, GLint64EXT * params)
{
DISPATCH(GetQueryObjecti64vEXT, (id, pname, params), (F, "glGetQueryObjecti64vEXT(%d, 0x%x, %p);\n", id, pname, (const void *) params));
}
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_883)(GLuint id, GLenum pname, GLuint64EXT * params);
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_884)(GLuint id, GLenum pname, GLuint64EXT * params);
-KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_883)(GLuint id, GLenum pname, GLuint64EXT * params)
+KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_884)(GLuint id, GLenum pname, GLuint64EXT * params)
{
DISPATCH(GetQueryObjectui64vEXT, (id, pname, params), (F, "glGetQueryObjectui64vEXT(%d, 0x%x, %p);\n", id, pname, (const void *) params));
}
@@ -7039,6 +7044,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(FramebufferTextureARB),
TABLE_ENTRY(FramebufferTextureFaceARB),
TABLE_ENTRY(ProgramParameteriARB),
+ TABLE_ENTRY(VertexAttribDivisorARB),
TABLE_ENTRY(FlushMappedBufferRange),
TABLE_ENTRY(MapBufferRange),
TABLE_ENTRY(BindVertexArray),
@@ -7067,7 +7073,6 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(ReleaseShaderCompiler),
TABLE_ENTRY(ShaderBinary),
TABLE_ENTRY(PolygonOffsetEXT),
- TABLE_ENTRY(_dispatch_stub_606),
TABLE_ENTRY(_dispatch_stub_607),
TABLE_ENTRY(_dispatch_stub_608),
TABLE_ENTRY(_dispatch_stub_609),
@@ -7075,6 +7080,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(_dispatch_stub_611),
TABLE_ENTRY(_dispatch_stub_612),
TABLE_ENTRY(_dispatch_stub_613),
+ TABLE_ENTRY(_dispatch_stub_614),
TABLE_ENTRY(ColorPointerEXT),
TABLE_ENTRY(EdgeFlagPointerEXT),
TABLE_ENTRY(IndexPointerEXT),
@@ -7109,7 +7115,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(FogCoorddvEXT),
TABLE_ENTRY(FogCoordfEXT),
TABLE_ENTRY(FogCoordfvEXT),
- TABLE_ENTRY(_dispatch_stub_648),
+ TABLE_ENTRY(_dispatch_stub_649),
TABLE_ENTRY(BlendFuncSeparateEXT),
TABLE_ENTRY(FlushVertexArrayRangeNV),
TABLE_ENTRY(VertexArrayRangeNV),
@@ -7151,7 +7157,6 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(WindowPos4ivMESA),
TABLE_ENTRY(WindowPos4sMESA),
TABLE_ENTRY(WindowPos4svMESA),
- TABLE_ENTRY(_dispatch_stub_690),
TABLE_ENTRY(_dispatch_stub_691),
TABLE_ENTRY(_dispatch_stub_692),
TABLE_ENTRY(_dispatch_stub_693),
@@ -7160,6 +7165,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(_dispatch_stub_696),
TABLE_ENTRY(_dispatch_stub_697),
TABLE_ENTRY(_dispatch_stub_698),
+ TABLE_ENTRY(_dispatch_stub_699),
TABLE_ENTRY(AreProgramsResidentNV),
TABLE_ENTRY(BindProgramNV),
TABLE_ENTRY(DeleteProgramsNV),
@@ -7240,11 +7246,11 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(SetFragmentShaderConstantATI),
TABLE_ENTRY(PointParameteriNV),
TABLE_ENTRY(PointParameterivNV),
- TABLE_ENTRY(_dispatch_stub_779),
TABLE_ENTRY(_dispatch_stub_780),
TABLE_ENTRY(_dispatch_stub_781),
TABLE_ENTRY(_dispatch_stub_782),
TABLE_ENTRY(_dispatch_stub_783),
+ TABLE_ENTRY(_dispatch_stub_784),
TABLE_ENTRY(GetProgramNamedParameterdvNV),
TABLE_ENTRY(GetProgramNamedParameterfvNV),
TABLE_ENTRY(ProgramNamedParameter4dNV),
@@ -7253,8 +7259,8 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(ProgramNamedParameter4fvNV),
TABLE_ENTRY(PrimitiveRestartIndexNV),
TABLE_ENTRY(PrimitiveRestartNV),
- TABLE_ENTRY(_dispatch_stub_792),
TABLE_ENTRY(_dispatch_stub_793),
+ TABLE_ENTRY(_dispatch_stub_794),
TABLE_ENTRY(BindFramebufferEXT),
TABLE_ENTRY(BindRenderbufferEXT),
TABLE_ENTRY(CheckFramebufferStatusEXT),
@@ -7272,9 +7278,9 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(IsFramebufferEXT),
TABLE_ENTRY(IsRenderbufferEXT),
TABLE_ENTRY(RenderbufferStorageEXT),
- TABLE_ENTRY(_dispatch_stub_811),
TABLE_ENTRY(_dispatch_stub_812),
TABLE_ENTRY(_dispatch_stub_813),
+ TABLE_ENTRY(_dispatch_stub_814),
TABLE_ENTRY(BindFragDataLocationEXT),
TABLE_ENTRY(GetFragDataLocationEXT),
TABLE_ENTRY(GetUniformuivEXT),
@@ -7332,19 +7338,19 @@ _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(GetTransformFeedbackVaryingEXT),
TABLE_ENTRY(TransformFeedbackVaryingsEXT),
TABLE_ENTRY(ProvokingVertexEXT),
- TABLE_ENTRY(_dispatch_stub_871),
TABLE_ENTRY(_dispatch_stub_872),
+ TABLE_ENTRY(_dispatch_stub_873),
TABLE_ENTRY(GetObjectParameterivAPPLE),
TABLE_ENTRY(ObjectPurgeableAPPLE),
TABLE_ENTRY(ObjectUnpurgeableAPPLE),
TABLE_ENTRY(ActiveProgramEXT),
TABLE_ENTRY(CreateShaderProgramEXT),
TABLE_ENTRY(UseShaderProgramEXT),
- TABLE_ENTRY(_dispatch_stub_879),
TABLE_ENTRY(_dispatch_stub_880),
TABLE_ENTRY(_dispatch_stub_881),
TABLE_ENTRY(_dispatch_stub_882),
TABLE_ENTRY(_dispatch_stub_883),
+ TABLE_ENTRY(_dispatch_stub_884),
TABLE_ENTRY(EGLImageTargetRenderbufferStorageOES),
TABLE_ENTRY(EGLImageTargetTexture2DOES),
/* A whole bunch of no-op functions. These might be called
@@ -7651,10 +7657,10 @@ _glapi_proc UNUSED_TABLE_NAME[] = {
TABLE_ENTRY(RenderbufferStorageMultisampleEXT),
TABLE_ENTRY(PointParameterf),
TABLE_ENTRY(PointParameterfARB),
- TABLE_ENTRY(_dispatch_stub_620),
+ TABLE_ENTRY(_dispatch_stub_621),
TABLE_ENTRY(PointParameterfv),
TABLE_ENTRY(PointParameterfvARB),
- TABLE_ENTRY(_dispatch_stub_621),
+ TABLE_ENTRY(_dispatch_stub_622),
TABLE_ENTRY(SecondaryColor3b),
TABLE_ENTRY(SecondaryColor3bv),
TABLE_ENTRY(SecondaryColor3d),
@@ -7680,7 +7686,7 @@ _glapi_proc UNUSED_TABLE_NAME[] = {
TABLE_ENTRY(FogCoordf),
TABLE_ENTRY(FogCoordfv),
TABLE_ENTRY(BlendFuncSeparate),
- TABLE_ENTRY(_dispatch_stub_649),
+ TABLE_ENTRY(_dispatch_stub_650),
TABLE_ENTRY(WindowPos2d),
TABLE_ENTRY(WindowPos2dARB),
TABLE_ENTRY(WindowPos2dv),
diff --git a/src/mapi/glapi/glprocs.h b/src/mapi/glapi/glprocs.h
index 315847e7573..3ee6e680796 100644
--- a/src/mapi/glapi/glprocs.h
+++ b/src/mapi/glapi/glprocs.h
@@ -630,6 +630,7 @@ static const char gl_string_table[] =
"glFramebufferTextureARB\0"
"glFramebufferTextureFaceARB\0"
"glProgramParameteriARB\0"
+ "glVertexAttribDivisorARB\0"
"glFlushMappedBufferRange\0"
"glMapBufferRange\0"
"glBindVertexArray\0"
@@ -1314,7 +1315,6 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_364 mgl_dispatch_stub_364
#define gl_dispatch_stub_365 mgl_dispatch_stub_365
#define gl_dispatch_stub_366 mgl_dispatch_stub_366
-#define gl_dispatch_stub_606 mgl_dispatch_stub_606
#define gl_dispatch_stub_607 mgl_dispatch_stub_607
#define gl_dispatch_stub_608 mgl_dispatch_stub_608
#define gl_dispatch_stub_609 mgl_dispatch_stub_609
@@ -1322,8 +1322,8 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_611 mgl_dispatch_stub_611
#define gl_dispatch_stub_612 mgl_dispatch_stub_612
#define gl_dispatch_stub_613 mgl_dispatch_stub_613
-#define gl_dispatch_stub_648 mgl_dispatch_stub_648
-#define gl_dispatch_stub_690 mgl_dispatch_stub_690
+#define gl_dispatch_stub_614 mgl_dispatch_stub_614
+#define gl_dispatch_stub_649 mgl_dispatch_stub_649
#define gl_dispatch_stub_691 mgl_dispatch_stub_691
#define gl_dispatch_stub_692 mgl_dispatch_stub_692
#define gl_dispatch_stub_693 mgl_dispatch_stub_693
@@ -1332,23 +1332,24 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_696 mgl_dispatch_stub_696
#define gl_dispatch_stub_697 mgl_dispatch_stub_697
#define gl_dispatch_stub_698 mgl_dispatch_stub_698
-#define gl_dispatch_stub_779 mgl_dispatch_stub_779
+#define gl_dispatch_stub_699 mgl_dispatch_stub_699
#define gl_dispatch_stub_780 mgl_dispatch_stub_780
#define gl_dispatch_stub_781 mgl_dispatch_stub_781
#define gl_dispatch_stub_782 mgl_dispatch_stub_782
#define gl_dispatch_stub_783 mgl_dispatch_stub_783
-#define gl_dispatch_stub_792 mgl_dispatch_stub_792
+#define gl_dispatch_stub_784 mgl_dispatch_stub_784
#define gl_dispatch_stub_793 mgl_dispatch_stub_793
-#define gl_dispatch_stub_811 mgl_dispatch_stub_811
+#define gl_dispatch_stub_794 mgl_dispatch_stub_794
#define gl_dispatch_stub_812 mgl_dispatch_stub_812
#define gl_dispatch_stub_813 mgl_dispatch_stub_813
-#define gl_dispatch_stub_871 mgl_dispatch_stub_871
+#define gl_dispatch_stub_814 mgl_dispatch_stub_814
#define gl_dispatch_stub_872 mgl_dispatch_stub_872
-#define gl_dispatch_stub_879 mgl_dispatch_stub_879
+#define gl_dispatch_stub_873 mgl_dispatch_stub_873
#define gl_dispatch_stub_880 mgl_dispatch_stub_880
#define gl_dispatch_stub_881 mgl_dispatch_stub_881
#define gl_dispatch_stub_882 mgl_dispatch_stub_882
#define gl_dispatch_stub_883 mgl_dispatch_stub_883
+#define gl_dispatch_stub_884 mgl_dispatch_stub_884
#endif /* USE_MGL_NAMESPACE */
@@ -1366,41 +1367,41 @@ void GLAPIENTRY gl_dispatch_stub_363(GLenum target, GLenum pname, GLint * params
void GLAPIENTRY gl_dispatch_stub_364(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values);
void GLAPIENTRY gl_dispatch_stub_365(GLenum target, GLenum pname, GLfloat * params);
void GLAPIENTRY gl_dispatch_stub_366(GLenum target, GLenum pname, GLint * params);
-void GLAPIENTRY gl_dispatch_stub_606(GLenum pname, GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_607(GLenum pname, GLint * params);
-void GLAPIENTRY gl_dispatch_stub_608(GLenum pname, GLfloat param);
-void GLAPIENTRY gl_dispatch_stub_609(GLenum pname, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_610(GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_611(GLenum pname, const GLint * params);
-void GLAPIENTRY gl_dispatch_stub_612(GLclampf value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_613(GLenum pattern);
-void GLAPIENTRY gl_dispatch_stub_648(GLenum mode);
-void GLAPIENTRY gl_dispatch_stub_690(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_691(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_692(GLsizei n, const GLuint * fences);
-void GLAPIENTRY gl_dispatch_stub_693(GLuint fence);
-void GLAPIENTRY gl_dispatch_stub_694(GLsizei n, GLuint * fences);
-void GLAPIENTRY gl_dispatch_stub_695(GLuint fence, GLenum pname, GLint * params);
-GLboolean GLAPIENTRY gl_dispatch_stub_696(GLuint fence);
-void GLAPIENTRY gl_dispatch_stub_697(GLuint fence, GLenum condition);
-GLboolean GLAPIENTRY gl_dispatch_stub_698(GLuint fence);
-void GLAPIENTRY gl_dispatch_stub_779(GLenum face);
-void GLAPIENTRY gl_dispatch_stub_780(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_781(GLsizei n, const GLuint * arrays);
-void GLAPIENTRY gl_dispatch_stub_782(GLsizei n, GLuint * arrays);
-GLboolean GLAPIENTRY gl_dispatch_stub_783(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_792(GLclampd zmin, GLclampd zmax);
-void GLAPIENTRY gl_dispatch_stub_793(GLenum modeRGB, GLenum modeA);
-void GLAPIENTRY gl_dispatch_stub_811(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
-void GLAPIENTRY gl_dispatch_stub_812(GLenum target, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_813(GLenum target, GLintptr offset, GLsizeiptr size);
-void GLAPIENTRY gl_dispatch_stub_871(GLenum target, GLenum pname, GLvoid ** params);
-void GLAPIENTRY gl_dispatch_stub_872(GLenum target, GLsizei length, GLvoid * pointer);
-void GLAPIENTRY gl_dispatch_stub_879(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
-void GLAPIENTRY gl_dispatch_stub_880(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_607(GLenum pname, GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_608(GLenum pname, GLint * params);
+void GLAPIENTRY gl_dispatch_stub_609(GLenum pname, GLfloat param);
+void GLAPIENTRY gl_dispatch_stub_610(GLenum pname, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_611(GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_612(GLenum pname, const GLint * params);
+void GLAPIENTRY gl_dispatch_stub_613(GLclampf value, GLboolean invert);
+void GLAPIENTRY gl_dispatch_stub_614(GLenum pattern);
+void GLAPIENTRY gl_dispatch_stub_649(GLenum mode);
+void GLAPIENTRY gl_dispatch_stub_691(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_692(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_693(GLsizei n, const GLuint * fences);
+void GLAPIENTRY gl_dispatch_stub_694(GLuint fence);
+void GLAPIENTRY gl_dispatch_stub_695(GLsizei n, GLuint * fences);
+void GLAPIENTRY gl_dispatch_stub_696(GLuint fence, GLenum pname, GLint * params);
+GLboolean GLAPIENTRY gl_dispatch_stub_697(GLuint fence);
+void GLAPIENTRY gl_dispatch_stub_698(GLuint fence, GLenum condition);
+GLboolean GLAPIENTRY gl_dispatch_stub_699(GLuint fence);
+void GLAPIENTRY gl_dispatch_stub_780(GLenum face);
+void GLAPIENTRY gl_dispatch_stub_781(GLuint array);
+void GLAPIENTRY gl_dispatch_stub_782(GLsizei n, const GLuint * arrays);
+void GLAPIENTRY gl_dispatch_stub_783(GLsizei n, GLuint * arrays);
+GLboolean GLAPIENTRY gl_dispatch_stub_784(GLuint array);
+void GLAPIENTRY gl_dispatch_stub_793(GLclampd zmin, GLclampd zmax);
+void GLAPIENTRY gl_dispatch_stub_794(GLenum modeRGB, GLenum modeA);
+void GLAPIENTRY gl_dispatch_stub_812(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
+void GLAPIENTRY gl_dispatch_stub_813(GLenum target, GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_814(GLenum target, GLintptr offset, GLsizeiptr size);
+void GLAPIENTRY gl_dispatch_stub_872(GLenum target, GLenum pname, GLvoid ** params);
+void GLAPIENTRY gl_dispatch_stub_873(GLenum target, GLsizei length, GLvoid * pointer);
+void GLAPIENTRY gl_dispatch_stub_880(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
void GLAPIENTRY gl_dispatch_stub_881(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_882(GLuint id, GLenum pname, GLint64EXT * params);
-void GLAPIENTRY gl_dispatch_stub_883(GLuint id, GLenum pname, GLuint64EXT * params);
+void GLAPIENTRY gl_dispatch_stub_882(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_883(GLuint id, GLenum pname, GLint64EXT * params);
+void GLAPIENTRY gl_dispatch_stub_884(GLuint id, GLenum pname, GLuint64EXT * params);
#endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */
static const glprocs_table_t static_functions[] = {
@@ -1982,673 +1983,674 @@ static const glprocs_table_t static_functions[] = {
NAME_FUNC_OFFSET( 9225, glFramebufferTextureARB, glFramebufferTextureARB, NULL, 575),
NAME_FUNC_OFFSET( 9249, glFramebufferTextureFaceARB, glFramebufferTextureFaceARB, NULL, 576),
NAME_FUNC_OFFSET( 9277, glProgramParameteriARB, glProgramParameteriARB, NULL, 577),
- NAME_FUNC_OFFSET( 9300, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 578),
- NAME_FUNC_OFFSET( 9325, glMapBufferRange, glMapBufferRange, NULL, 579),
- NAME_FUNC_OFFSET( 9342, glBindVertexArray, glBindVertexArray, NULL, 580),
- NAME_FUNC_OFFSET( 9360, glGenVertexArrays, glGenVertexArrays, NULL, 581),
- NAME_FUNC_OFFSET( 9378, glCopyBufferSubData, glCopyBufferSubData, NULL, 582),
- NAME_FUNC_OFFSET( 9398, glClientWaitSync, glClientWaitSync, NULL, 583),
- NAME_FUNC_OFFSET( 9415, glDeleteSync, glDeleteSync, NULL, 584),
- NAME_FUNC_OFFSET( 9428, glFenceSync, glFenceSync, NULL, 585),
- NAME_FUNC_OFFSET( 9440, glGetInteger64v, glGetInteger64v, NULL, 586),
- NAME_FUNC_OFFSET( 9456, glGetSynciv, glGetSynciv, NULL, 587),
- NAME_FUNC_OFFSET( 9468, glIsSync, glIsSync, NULL, 588),
- NAME_FUNC_OFFSET( 9477, glWaitSync, glWaitSync, NULL, 589),
- NAME_FUNC_OFFSET( 9488, glDrawElementsBaseVertex, glDrawElementsBaseVertex, NULL, 590),
- NAME_FUNC_OFFSET( 9513, glDrawRangeElementsBaseVertex, glDrawRangeElementsBaseVertex, NULL, 591),
- NAME_FUNC_OFFSET( 9543, glMultiDrawElementsBaseVertex, glMultiDrawElementsBaseVertex, NULL, 592),
- NAME_FUNC_OFFSET( 9573, glBindTransformFeedback, glBindTransformFeedback, NULL, 593),
- NAME_FUNC_OFFSET( 9597, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, 594),
- NAME_FUNC_OFFSET( 9624, glDrawTransformFeedback, glDrawTransformFeedback, NULL, 595),
- NAME_FUNC_OFFSET( 9648, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, 596),
- NAME_FUNC_OFFSET( 9672, glIsTransformFeedback, glIsTransformFeedback, NULL, 597),
- NAME_FUNC_OFFSET( 9694, glPauseTransformFeedback, glPauseTransformFeedback, NULL, 598),
- NAME_FUNC_OFFSET( 9719, glResumeTransformFeedback, glResumeTransformFeedback, NULL, 599),
- NAME_FUNC_OFFSET( 9745, glClearDepthf, glClearDepthf, NULL, 600),
- NAME_FUNC_OFFSET( 9759, glDepthRangef, glDepthRangef, NULL, 601),
- NAME_FUNC_OFFSET( 9773, glGetShaderPrecisionFormat, glGetShaderPrecisionFormat, NULL, 602),
- NAME_FUNC_OFFSET( 9800, glReleaseShaderCompiler, glReleaseShaderCompiler, NULL, 603),
- NAME_FUNC_OFFSET( 9824, glShaderBinary, glShaderBinary, NULL, 604),
- NAME_FUNC_OFFSET( 9839, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 605),
- NAME_FUNC_OFFSET( 9858, gl_dispatch_stub_606, gl_dispatch_stub_606, NULL, 606),
- NAME_FUNC_OFFSET( 9890, gl_dispatch_stub_607, gl_dispatch_stub_607, NULL, 607),
- NAME_FUNC_OFFSET( 9922, gl_dispatch_stub_608, gl_dispatch_stub_608, NULL, 608),
- NAME_FUNC_OFFSET( 9950, gl_dispatch_stub_609, gl_dispatch_stub_609, NULL, 609),
- NAME_FUNC_OFFSET( 9979, gl_dispatch_stub_610, gl_dispatch_stub_610, NULL, 610),
- NAME_FUNC_OFFSET(10007, gl_dispatch_stub_611, gl_dispatch_stub_611, NULL, 611),
- NAME_FUNC_OFFSET(10036, gl_dispatch_stub_612, gl_dispatch_stub_612, NULL, 612),
- NAME_FUNC_OFFSET(10053, gl_dispatch_stub_613, gl_dispatch_stub_613, NULL, 613),
- NAME_FUNC_OFFSET(10073, glColorPointerEXT, glColorPointerEXT, NULL, 614),
- NAME_FUNC_OFFSET(10091, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 615),
- NAME_FUNC_OFFSET(10112, glIndexPointerEXT, glIndexPointerEXT, NULL, 616),
- NAME_FUNC_OFFSET(10130, glNormalPointerEXT, glNormalPointerEXT, NULL, 617),
- NAME_FUNC_OFFSET(10149, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 618),
- NAME_FUNC_OFFSET(10170, glVertexPointerEXT, glVertexPointerEXT, NULL, 619),
- NAME_FUNC_OFFSET(10189, glPointParameterfEXT, glPointParameterfEXT, NULL, 620),
- NAME_FUNC_OFFSET(10210, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 621),
- NAME_FUNC_OFFSET(10232, glLockArraysEXT, glLockArraysEXT, NULL, 622),
- NAME_FUNC_OFFSET(10248, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 623),
- NAME_FUNC_OFFSET(10266, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 624),
- NAME_FUNC_OFFSET(10288, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 625),
- NAME_FUNC_OFFSET(10311, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 626),
- NAME_FUNC_OFFSET(10333, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 627),
- NAME_FUNC_OFFSET(10356, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 628),
- NAME_FUNC_OFFSET(10378, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 629),
- NAME_FUNC_OFFSET(10401, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 630),
- NAME_FUNC_OFFSET(10423, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 631),
- NAME_FUNC_OFFSET(10446, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 632),
- NAME_FUNC_OFFSET(10468, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 633),
- NAME_FUNC_OFFSET(10491, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 634),
- NAME_FUNC_OFFSET(10514, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 635),
- NAME_FUNC_OFFSET(10538, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 636),
- NAME_FUNC_OFFSET(10561, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 637),
- NAME_FUNC_OFFSET(10585, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 638),
- NAME_FUNC_OFFSET(10608, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 639),
- NAME_FUNC_OFFSET(10632, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 640),
- NAME_FUNC_OFFSET(10659, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 641),
- NAME_FUNC_OFFSET(10680, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 642),
- NAME_FUNC_OFFSET(10703, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 643),
- NAME_FUNC_OFFSET(10724, glFogCoorddEXT, glFogCoorddEXT, NULL, 644),
- NAME_FUNC_OFFSET(10739, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 645),
- NAME_FUNC_OFFSET(10755, glFogCoordfEXT, glFogCoordfEXT, NULL, 646),
- NAME_FUNC_OFFSET(10770, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 647),
- NAME_FUNC_OFFSET(10786, gl_dispatch_stub_648, gl_dispatch_stub_648, NULL, 648),
- NAME_FUNC_OFFSET(10804, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 649),
- NAME_FUNC_OFFSET(10827, glFlushVertexArrayRangeNV, glFlushVertexArrayRangeNV, NULL, 650),
- NAME_FUNC_OFFSET(10853, glVertexArrayRangeNV, glVertexArrayRangeNV, NULL, 651),
- NAME_FUNC_OFFSET(10874, glCombinerInputNV, glCombinerInputNV, NULL, 652),
- NAME_FUNC_OFFSET(10892, glCombinerOutputNV, glCombinerOutputNV, NULL, 653),
- NAME_FUNC_OFFSET(10911, glCombinerParameterfNV, glCombinerParameterfNV, NULL, 654),
- NAME_FUNC_OFFSET(10934, glCombinerParameterfvNV, glCombinerParameterfvNV, NULL, 655),
- NAME_FUNC_OFFSET(10958, glCombinerParameteriNV, glCombinerParameteriNV, NULL, 656),
- NAME_FUNC_OFFSET(10981, glCombinerParameterivNV, glCombinerParameterivNV, NULL, 657),
- NAME_FUNC_OFFSET(11005, glFinalCombinerInputNV, glFinalCombinerInputNV, NULL, 658),
- NAME_FUNC_OFFSET(11028, glGetCombinerInputParameterfvNV, glGetCombinerInputParameterfvNV, NULL, 659),
- NAME_FUNC_OFFSET(11060, glGetCombinerInputParameterivNV, glGetCombinerInputParameterivNV, NULL, 660),
- NAME_FUNC_OFFSET(11092, glGetCombinerOutputParameterfvNV, glGetCombinerOutputParameterfvNV, NULL, 661),
- NAME_FUNC_OFFSET(11125, glGetCombinerOutputParameterivNV, glGetCombinerOutputParameterivNV, NULL, 662),
- NAME_FUNC_OFFSET(11158, glGetFinalCombinerInputParameterfvNV, glGetFinalCombinerInputParameterfvNV, NULL, 663),
- NAME_FUNC_OFFSET(11195, glGetFinalCombinerInputParameterivNV, glGetFinalCombinerInputParameterivNV, NULL, 664),
- NAME_FUNC_OFFSET(11232, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 665),
- NAME_FUNC_OFFSET(11252, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 666),
- NAME_FUNC_OFFSET(11270, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 667),
- NAME_FUNC_OFFSET(11289, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 668),
- NAME_FUNC_OFFSET(11307, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 669),
- NAME_FUNC_OFFSET(11326, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 670),
- NAME_FUNC_OFFSET(11344, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 671),
- NAME_FUNC_OFFSET(11363, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 672),
- NAME_FUNC_OFFSET(11381, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 673),
- NAME_FUNC_OFFSET(11400, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 674),
- NAME_FUNC_OFFSET(11418, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 675),
- NAME_FUNC_OFFSET(11437, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 676),
- NAME_FUNC_OFFSET(11455, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 677),
- NAME_FUNC_OFFSET(11474, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 678),
- NAME_FUNC_OFFSET(11492, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 679),
- NAME_FUNC_OFFSET(11511, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 680),
- NAME_FUNC_OFFSET(11529, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 681),
- NAME_FUNC_OFFSET(11548, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 682),
- NAME_FUNC_OFFSET(11566, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 683),
- NAME_FUNC_OFFSET(11585, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 684),
- NAME_FUNC_OFFSET(11603, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 685),
- NAME_FUNC_OFFSET(11622, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 686),
- NAME_FUNC_OFFSET(11640, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 687),
- NAME_FUNC_OFFSET(11659, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 688),
- NAME_FUNC_OFFSET(11677, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 689),
- NAME_FUNC_OFFSET(11696, gl_dispatch_stub_690, gl_dispatch_stub_690, NULL, 690),
+ NAME_FUNC_OFFSET( 9300, glVertexAttribDivisorARB, glVertexAttribDivisorARB, NULL, 578),
+ NAME_FUNC_OFFSET( 9325, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 579),
+ NAME_FUNC_OFFSET( 9350, glMapBufferRange, glMapBufferRange, NULL, 580),
+ NAME_FUNC_OFFSET( 9367, glBindVertexArray, glBindVertexArray, NULL, 581),
+ NAME_FUNC_OFFSET( 9385, glGenVertexArrays, glGenVertexArrays, NULL, 582),
+ NAME_FUNC_OFFSET( 9403, glCopyBufferSubData, glCopyBufferSubData, NULL, 583),
+ NAME_FUNC_OFFSET( 9423, glClientWaitSync, glClientWaitSync, NULL, 584),
+ NAME_FUNC_OFFSET( 9440, glDeleteSync, glDeleteSync, NULL, 585),
+ NAME_FUNC_OFFSET( 9453, glFenceSync, glFenceSync, NULL, 586),
+ NAME_FUNC_OFFSET( 9465, glGetInteger64v, glGetInteger64v, NULL, 587),
+ NAME_FUNC_OFFSET( 9481, glGetSynciv, glGetSynciv, NULL, 588),
+ NAME_FUNC_OFFSET( 9493, glIsSync, glIsSync, NULL, 589),
+ NAME_FUNC_OFFSET( 9502, glWaitSync, glWaitSync, NULL, 590),
+ NAME_FUNC_OFFSET( 9513, glDrawElementsBaseVertex, glDrawElementsBaseVertex, NULL, 591),
+ NAME_FUNC_OFFSET( 9538, glDrawRangeElementsBaseVertex, glDrawRangeElementsBaseVertex, NULL, 592),
+ NAME_FUNC_OFFSET( 9568, glMultiDrawElementsBaseVertex, glMultiDrawElementsBaseVertex, NULL, 593),
+ NAME_FUNC_OFFSET( 9598, glBindTransformFeedback, glBindTransformFeedback, NULL, 594),
+ NAME_FUNC_OFFSET( 9622, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, 595),
+ NAME_FUNC_OFFSET( 9649, glDrawTransformFeedback, glDrawTransformFeedback, NULL, 596),
+ NAME_FUNC_OFFSET( 9673, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, 597),
+ NAME_FUNC_OFFSET( 9697, glIsTransformFeedback, glIsTransformFeedback, NULL, 598),
+ NAME_FUNC_OFFSET( 9719, glPauseTransformFeedback, glPauseTransformFeedback, NULL, 599),
+ NAME_FUNC_OFFSET( 9744, glResumeTransformFeedback, glResumeTransformFeedback, NULL, 600),
+ NAME_FUNC_OFFSET( 9770, glClearDepthf, glClearDepthf, NULL, 601),
+ NAME_FUNC_OFFSET( 9784, glDepthRangef, glDepthRangef, NULL, 602),
+ NAME_FUNC_OFFSET( 9798, glGetShaderPrecisionFormat, glGetShaderPrecisionFormat, NULL, 603),
+ NAME_FUNC_OFFSET( 9825, glReleaseShaderCompiler, glReleaseShaderCompiler, NULL, 604),
+ NAME_FUNC_OFFSET( 9849, glShaderBinary, glShaderBinary, NULL, 605),
+ NAME_FUNC_OFFSET( 9864, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 606),
+ NAME_FUNC_OFFSET( 9883, gl_dispatch_stub_607, gl_dispatch_stub_607, NULL, 607),
+ NAME_FUNC_OFFSET( 9915, gl_dispatch_stub_608, gl_dispatch_stub_608, NULL, 608),
+ NAME_FUNC_OFFSET( 9947, gl_dispatch_stub_609, gl_dispatch_stub_609, NULL, 609),
+ NAME_FUNC_OFFSET( 9975, gl_dispatch_stub_610, gl_dispatch_stub_610, NULL, 610),
+ NAME_FUNC_OFFSET(10004, gl_dispatch_stub_611, gl_dispatch_stub_611, NULL, 611),
+ NAME_FUNC_OFFSET(10032, gl_dispatch_stub_612, gl_dispatch_stub_612, NULL, 612),
+ NAME_FUNC_OFFSET(10061, gl_dispatch_stub_613, gl_dispatch_stub_613, NULL, 613),
+ NAME_FUNC_OFFSET(10078, gl_dispatch_stub_614, gl_dispatch_stub_614, NULL, 614),
+ NAME_FUNC_OFFSET(10098, glColorPointerEXT, glColorPointerEXT, NULL, 615),
+ NAME_FUNC_OFFSET(10116, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 616),
+ NAME_FUNC_OFFSET(10137, glIndexPointerEXT, glIndexPointerEXT, NULL, 617),
+ NAME_FUNC_OFFSET(10155, glNormalPointerEXT, glNormalPointerEXT, NULL, 618),
+ NAME_FUNC_OFFSET(10174, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 619),
+ NAME_FUNC_OFFSET(10195, glVertexPointerEXT, glVertexPointerEXT, NULL, 620),
+ NAME_FUNC_OFFSET(10214, glPointParameterfEXT, glPointParameterfEXT, NULL, 621),
+ NAME_FUNC_OFFSET(10235, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 622),
+ NAME_FUNC_OFFSET(10257, glLockArraysEXT, glLockArraysEXT, NULL, 623),
+ NAME_FUNC_OFFSET(10273, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 624),
+ NAME_FUNC_OFFSET(10291, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 625),
+ NAME_FUNC_OFFSET(10313, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 626),
+ NAME_FUNC_OFFSET(10336, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 627),
+ NAME_FUNC_OFFSET(10358, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 628),
+ NAME_FUNC_OFFSET(10381, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 629),
+ NAME_FUNC_OFFSET(10403, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 630),
+ NAME_FUNC_OFFSET(10426, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 631),
+ NAME_FUNC_OFFSET(10448, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 632),
+ NAME_FUNC_OFFSET(10471, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 633),
+ NAME_FUNC_OFFSET(10493, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 634),
+ NAME_FUNC_OFFSET(10516, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 635),
+ NAME_FUNC_OFFSET(10539, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 636),
+ NAME_FUNC_OFFSET(10563, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 637),
+ NAME_FUNC_OFFSET(10586, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 638),
+ NAME_FUNC_OFFSET(10610, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 639),
+ NAME_FUNC_OFFSET(10633, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 640),
+ NAME_FUNC_OFFSET(10657, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 641),
+ NAME_FUNC_OFFSET(10684, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 642),
+ NAME_FUNC_OFFSET(10705, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 643),
+ NAME_FUNC_OFFSET(10728, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 644),
+ NAME_FUNC_OFFSET(10749, glFogCoorddEXT, glFogCoorddEXT, NULL, 645),
+ NAME_FUNC_OFFSET(10764, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 646),
+ NAME_FUNC_OFFSET(10780, glFogCoordfEXT, glFogCoordfEXT, NULL, 647),
+ NAME_FUNC_OFFSET(10795, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 648),
+ NAME_FUNC_OFFSET(10811, gl_dispatch_stub_649, gl_dispatch_stub_649, NULL, 649),
+ NAME_FUNC_OFFSET(10829, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 650),
+ NAME_FUNC_OFFSET(10852, glFlushVertexArrayRangeNV, glFlushVertexArrayRangeNV, NULL, 651),
+ NAME_FUNC_OFFSET(10878, glVertexArrayRangeNV, glVertexArrayRangeNV, NULL, 652),
+ NAME_FUNC_OFFSET(10899, glCombinerInputNV, glCombinerInputNV, NULL, 653),
+ NAME_FUNC_OFFSET(10917, glCombinerOutputNV, glCombinerOutputNV, NULL, 654),
+ NAME_FUNC_OFFSET(10936, glCombinerParameterfNV, glCombinerParameterfNV, NULL, 655),
+ NAME_FUNC_OFFSET(10959, glCombinerParameterfvNV, glCombinerParameterfvNV, NULL, 656),
+ NAME_FUNC_OFFSET(10983, glCombinerParameteriNV, glCombinerParameteriNV, NULL, 657),
+ NAME_FUNC_OFFSET(11006, glCombinerParameterivNV, glCombinerParameterivNV, NULL, 658),
+ NAME_FUNC_OFFSET(11030, glFinalCombinerInputNV, glFinalCombinerInputNV, NULL, 659),
+ NAME_FUNC_OFFSET(11053, glGetCombinerInputParameterfvNV, glGetCombinerInputParameterfvNV, NULL, 660),
+ NAME_FUNC_OFFSET(11085, glGetCombinerInputParameterivNV, glGetCombinerInputParameterivNV, NULL, 661),
+ NAME_FUNC_OFFSET(11117, glGetCombinerOutputParameterfvNV, glGetCombinerOutputParameterfvNV, NULL, 662),
+ NAME_FUNC_OFFSET(11150, glGetCombinerOutputParameterivNV, glGetCombinerOutputParameterivNV, NULL, 663),
+ NAME_FUNC_OFFSET(11183, glGetFinalCombinerInputParameterfvNV, glGetFinalCombinerInputParameterfvNV, NULL, 664),
+ NAME_FUNC_OFFSET(11220, glGetFinalCombinerInputParameterivNV, glGetFinalCombinerInputParameterivNV, NULL, 665),
+ NAME_FUNC_OFFSET(11257, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 666),
+ NAME_FUNC_OFFSET(11277, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 667),
+ NAME_FUNC_OFFSET(11295, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 668),
+ NAME_FUNC_OFFSET(11314, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 669),
+ NAME_FUNC_OFFSET(11332, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 670),
+ NAME_FUNC_OFFSET(11351, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 671),
+ NAME_FUNC_OFFSET(11369, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 672),
+ NAME_FUNC_OFFSET(11388, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 673),
+ NAME_FUNC_OFFSET(11406, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 674),
+ NAME_FUNC_OFFSET(11425, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 675),
+ NAME_FUNC_OFFSET(11443, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 676),
+ NAME_FUNC_OFFSET(11462, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 677),
+ NAME_FUNC_OFFSET(11480, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 678),
+ NAME_FUNC_OFFSET(11499, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 679),
+ NAME_FUNC_OFFSET(11517, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 680),
+ NAME_FUNC_OFFSET(11536, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 681),
+ NAME_FUNC_OFFSET(11554, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 682),
+ NAME_FUNC_OFFSET(11573, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 683),
+ NAME_FUNC_OFFSET(11591, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 684),
+ NAME_FUNC_OFFSET(11610, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 685),
+ NAME_FUNC_OFFSET(11628, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 686),
+ NAME_FUNC_OFFSET(11647, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 687),
+ NAME_FUNC_OFFSET(11665, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 688),
+ NAME_FUNC_OFFSET(11684, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 689),
+ NAME_FUNC_OFFSET(11702, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 690),
NAME_FUNC_OFFSET(11721, gl_dispatch_stub_691, gl_dispatch_stub_691, NULL, 691),
- NAME_FUNC_OFFSET(11748, gl_dispatch_stub_692, gl_dispatch_stub_692, NULL, 692),
- NAME_FUNC_OFFSET(11765, gl_dispatch_stub_693, gl_dispatch_stub_693, NULL, 693),
- NAME_FUNC_OFFSET(11781, gl_dispatch_stub_694, gl_dispatch_stub_694, NULL, 694),
- NAME_FUNC_OFFSET(11795, gl_dispatch_stub_695, gl_dispatch_stub_695, NULL, 695),
- NAME_FUNC_OFFSET(11810, gl_dispatch_stub_696, gl_dispatch_stub_696, NULL, 696),
- NAME_FUNC_OFFSET(11822, gl_dispatch_stub_697, gl_dispatch_stub_697, NULL, 697),
- NAME_FUNC_OFFSET(11835, gl_dispatch_stub_698, gl_dispatch_stub_698, NULL, 698),
- NAME_FUNC_OFFSET(11849, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 699),
- NAME_FUNC_OFFSET(11873, glBindProgramNV, glBindProgramNV, NULL, 700),
- NAME_FUNC_OFFSET(11889, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 701),
- NAME_FUNC_OFFSET(11908, glExecuteProgramNV, glExecuteProgramNV, NULL, 702),
- NAME_FUNC_OFFSET(11927, glGenProgramsNV, glGenProgramsNV, NULL, 703),
- NAME_FUNC_OFFSET(11943, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 704),
- NAME_FUNC_OFFSET(11969, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 705),
- NAME_FUNC_OFFSET(11995, glGetProgramStringNV, glGetProgramStringNV, NULL, 706),
- NAME_FUNC_OFFSET(12016, glGetProgramivNV, glGetProgramivNV, NULL, 707),
- NAME_FUNC_OFFSET(12033, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 708),
- NAME_FUNC_OFFSET(12054, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 709),
- NAME_FUNC_OFFSET(12082, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 710),
- NAME_FUNC_OFFSET(12104, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 711),
- NAME_FUNC_OFFSET(12126, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 712),
- NAME_FUNC_OFFSET(12148, glIsProgramNV, glIsProgramNV, NULL, 713),
- NAME_FUNC_OFFSET(12162, glLoadProgramNV, glLoadProgramNV, NULL, 714),
- NAME_FUNC_OFFSET(12178, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 715),
- NAME_FUNC_OFFSET(12203, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 716),
- NAME_FUNC_OFFSET(12228, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 717),
- NAME_FUNC_OFFSET(12256, glTrackMatrixNV, glTrackMatrixNV, NULL, 718),
- NAME_FUNC_OFFSET(12272, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 719),
- NAME_FUNC_OFFSET(12291, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 720),
- NAME_FUNC_OFFSET(12311, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 721),
- NAME_FUNC_OFFSET(12330, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 722),
- NAME_FUNC_OFFSET(12350, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 723),
- NAME_FUNC_OFFSET(12369, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 724),
- NAME_FUNC_OFFSET(12389, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 725),
- NAME_FUNC_OFFSET(12408, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 726),
- NAME_FUNC_OFFSET(12428, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 727),
- NAME_FUNC_OFFSET(12447, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 728),
- NAME_FUNC_OFFSET(12467, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 729),
- NAME_FUNC_OFFSET(12486, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 730),
- NAME_FUNC_OFFSET(12506, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 731),
- NAME_FUNC_OFFSET(12525, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 732),
- NAME_FUNC_OFFSET(12545, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 733),
- NAME_FUNC_OFFSET(12564, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 734),
- NAME_FUNC_OFFSET(12584, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 735),
- NAME_FUNC_OFFSET(12603, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 736),
- NAME_FUNC_OFFSET(12623, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 737),
- NAME_FUNC_OFFSET(12642, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 738),
- NAME_FUNC_OFFSET(12662, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 739),
- NAME_FUNC_OFFSET(12681, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 740),
- NAME_FUNC_OFFSET(12701, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 741),
- NAME_FUNC_OFFSET(12720, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 742),
- NAME_FUNC_OFFSET(12740, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 743),
- NAME_FUNC_OFFSET(12760, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 744),
- NAME_FUNC_OFFSET(12781, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 745),
- NAME_FUNC_OFFSET(12805, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 746),
- NAME_FUNC_OFFSET(12826, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 747),
- NAME_FUNC_OFFSET(12847, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 748),
- NAME_FUNC_OFFSET(12868, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 749),
- NAME_FUNC_OFFSET(12889, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 750),
- NAME_FUNC_OFFSET(12910, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 751),
- NAME_FUNC_OFFSET(12931, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 752),
- NAME_FUNC_OFFSET(12952, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 753),
- NAME_FUNC_OFFSET(12973, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 754),
- NAME_FUNC_OFFSET(12994, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 755),
- NAME_FUNC_OFFSET(13015, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 756),
- NAME_FUNC_OFFSET(13036, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 757),
- NAME_FUNC_OFFSET(13057, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 758),
- NAME_FUNC_OFFSET(13079, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 759),
- NAME_FUNC_OFFSET(13106, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 760),
- NAME_FUNC_OFFSET(13133, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 761),
- NAME_FUNC_OFFSET(13157, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 762),
- NAME_FUNC_OFFSET(13181, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 763),
- NAME_FUNC_OFFSET(13203, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 764),
- NAME_FUNC_OFFSET(13225, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 765),
- NAME_FUNC_OFFSET(13247, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 766),
- NAME_FUNC_OFFSET(13272, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 767),
- NAME_FUNC_OFFSET(13296, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 768),
- NAME_FUNC_OFFSET(13318, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 769),
- NAME_FUNC_OFFSET(13340, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 770),
- NAME_FUNC_OFFSET(13362, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 771),
- NAME_FUNC_OFFSET(13388, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 772),
- NAME_FUNC_OFFSET(13411, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 773),
- NAME_FUNC_OFFSET(13435, glPassTexCoordATI, glPassTexCoordATI, NULL, 774),
- NAME_FUNC_OFFSET(13453, glSampleMapATI, glSampleMapATI, NULL, 775),
- NAME_FUNC_OFFSET(13468, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 776),
- NAME_FUNC_OFFSET(13499, glPointParameteriNV, glPointParameteriNV, NULL, 777),
- NAME_FUNC_OFFSET(13519, glPointParameterivNV, glPointParameterivNV, NULL, 778),
- NAME_FUNC_OFFSET(13540, gl_dispatch_stub_779, gl_dispatch_stub_779, NULL, 779),
- NAME_FUNC_OFFSET(13563, gl_dispatch_stub_780, gl_dispatch_stub_780, NULL, 780),
- NAME_FUNC_OFFSET(13586, gl_dispatch_stub_781, gl_dispatch_stub_781, NULL, 781),
- NAME_FUNC_OFFSET(13612, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782),
- NAME_FUNC_OFFSET(13635, gl_dispatch_stub_783, gl_dispatch_stub_783, NULL, 783),
- NAME_FUNC_OFFSET(13656, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 784),
- NAME_FUNC_OFFSET(13687, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 785),
- NAME_FUNC_OFFSET(13718, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 786),
- NAME_FUNC_OFFSET(13746, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 787),
- NAME_FUNC_OFFSET(13775, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 788),
- NAME_FUNC_OFFSET(13803, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 789),
- NAME_FUNC_OFFSET(13832, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 790),
- NAME_FUNC_OFFSET(13858, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 791),
- NAME_FUNC_OFFSET(13879, gl_dispatch_stub_792, gl_dispatch_stub_792, NULL, 792),
- NAME_FUNC_OFFSET(13896, gl_dispatch_stub_793, gl_dispatch_stub_793, NULL, 793),
- NAME_FUNC_OFFSET(13923, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 794),
- NAME_FUNC_OFFSET(13944, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 795),
- NAME_FUNC_OFFSET(13966, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 796),
- NAME_FUNC_OFFSET(13994, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 797),
- NAME_FUNC_OFFSET(14018, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 798),
- NAME_FUNC_OFFSET(14043, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 799),
- NAME_FUNC_OFFSET(14072, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 800),
- NAME_FUNC_OFFSET(14098, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 801),
- NAME_FUNC_OFFSET(14124, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 802),
- NAME_FUNC_OFFSET(14150, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 803),
- NAME_FUNC_OFFSET(14171, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 804),
- NAME_FUNC_OFFSET(14193, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 805),
- NAME_FUNC_OFFSET(14213, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 806),
- NAME_FUNC_OFFSET(14254, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 807),
- NAME_FUNC_OFFSET(14286, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 808),
- NAME_FUNC_OFFSET(14305, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 809),
- NAME_FUNC_OFFSET(14325, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 810),
- NAME_FUNC_OFFSET(14350, gl_dispatch_stub_811, gl_dispatch_stub_811, NULL, 811),
- NAME_FUNC_OFFSET(14371, gl_dispatch_stub_812, gl_dispatch_stub_812, NULL, 812),
- NAME_FUNC_OFFSET(14395, gl_dispatch_stub_813, gl_dispatch_stub_813, NULL, 813),
- NAME_FUNC_OFFSET(14425, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 814),
- NAME_FUNC_OFFSET(14451, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 815),
- NAME_FUNC_OFFSET(14476, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 816),
- NAME_FUNC_OFFSET(14495, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 817),
- NAME_FUNC_OFFSET(14519, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 818),
- NAME_FUNC_OFFSET(14544, glUniform1uiEXT, glUniform1uiEXT, NULL, 819),
- NAME_FUNC_OFFSET(14560, glUniform1uivEXT, glUniform1uivEXT, NULL, 820),
- NAME_FUNC_OFFSET(14577, glUniform2uiEXT, glUniform2uiEXT, NULL, 821),
- NAME_FUNC_OFFSET(14593, glUniform2uivEXT, glUniform2uivEXT, NULL, 822),
- NAME_FUNC_OFFSET(14610, glUniform3uiEXT, glUniform3uiEXT, NULL, 823),
- NAME_FUNC_OFFSET(14626, glUniform3uivEXT, glUniform3uivEXT, NULL, 824),
- NAME_FUNC_OFFSET(14643, glUniform4uiEXT, glUniform4uiEXT, NULL, 825),
- NAME_FUNC_OFFSET(14659, glUniform4uivEXT, glUniform4uivEXT, NULL, 826),
- NAME_FUNC_OFFSET(14676, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 827),
- NAME_FUNC_OFFSET(14697, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 828),
- NAME_FUNC_OFFSET(14719, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 829),
- NAME_FUNC_OFFSET(14741, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 830),
- NAME_FUNC_OFFSET(14764, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 831),
- NAME_FUNC_OFFSET(14785, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 832),
- NAME_FUNC_OFFSET(14807, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 833),
- NAME_FUNC_OFFSET(14829, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 834),
- NAME_FUNC_OFFSET(14852, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 835),
- NAME_FUNC_OFFSET(14873, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 836),
- NAME_FUNC_OFFSET(14895, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 837),
- NAME_FUNC_OFFSET(14917, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 838),
- NAME_FUNC_OFFSET(14940, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 839),
- NAME_FUNC_OFFSET(14962, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 840),
- NAME_FUNC_OFFSET(14983, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 841),
- NAME_FUNC_OFFSET(15005, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 842),
- NAME_FUNC_OFFSET(15027, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 843),
- NAME_FUNC_OFFSET(15050, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 844),
- NAME_FUNC_OFFSET(15072, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 845),
- NAME_FUNC_OFFSET(15095, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 846),
- NAME_FUNC_OFFSET(15118, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 847),
- NAME_FUNC_OFFSET(15144, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 848),
- NAME_FUNC_OFFSET(15173, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 849),
- NAME_FUNC_OFFSET(15195, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 850),
- NAME_FUNC_OFFSET(15215, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 851),
- NAME_FUNC_OFFSET(15234, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 852),
- NAME_FUNC_OFFSET(15258, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 853),
- NAME_FUNC_OFFSET(15282, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 854),
- NAME_FUNC_OFFSET(15304, glClearColorIiEXT, glClearColorIiEXT, NULL, 855),
- NAME_FUNC_OFFSET(15322, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 856),
- NAME_FUNC_OFFSET(15341, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 857),
- NAME_FUNC_OFFSET(15365, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 858),
- NAME_FUNC_OFFSET(15390, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 859),
- NAME_FUNC_OFFSET(15411, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 860),
- NAME_FUNC_OFFSET(15433, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 861),
- NAME_FUNC_OFFSET(15460, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 862),
- NAME_FUNC_OFFSET(15485, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 863),
- NAME_FUNC_OFFSET(15513, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 864),
- NAME_FUNC_OFFSET(15533, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 865),
- NAME_FUNC_OFFSET(15555, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 866),
- NAME_FUNC_OFFSET(15576, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 867),
- NAME_FUNC_OFFSET(15602, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 868),
- NAME_FUNC_OFFSET(15635, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 869),
- NAME_FUNC_OFFSET(15666, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 870),
- NAME_FUNC_OFFSET(15687, gl_dispatch_stub_871, gl_dispatch_stub_871, NULL, 871),
- NAME_FUNC_OFFSET(15718, gl_dispatch_stub_872, gl_dispatch_stub_872, NULL, 872),
- NAME_FUNC_OFFSET(15738, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 873),
- NAME_FUNC_OFFSET(15766, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 874),
- NAME_FUNC_OFFSET(15789, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 875),
- NAME_FUNC_OFFSET(15814, glActiveProgramEXT, glActiveProgramEXT, NULL, 876),
- NAME_FUNC_OFFSET(15833, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 877),
- NAME_FUNC_OFFSET(15858, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 878),
- NAME_FUNC_OFFSET(15880, gl_dispatch_stub_879, gl_dispatch_stub_879, NULL, 879),
+ NAME_FUNC_OFFSET(11746, gl_dispatch_stub_692, gl_dispatch_stub_692, NULL, 692),
+ NAME_FUNC_OFFSET(11773, gl_dispatch_stub_693, gl_dispatch_stub_693, NULL, 693),
+ NAME_FUNC_OFFSET(11790, gl_dispatch_stub_694, gl_dispatch_stub_694, NULL, 694),
+ NAME_FUNC_OFFSET(11806, gl_dispatch_stub_695, gl_dispatch_stub_695, NULL, 695),
+ NAME_FUNC_OFFSET(11820, gl_dispatch_stub_696, gl_dispatch_stub_696, NULL, 696),
+ NAME_FUNC_OFFSET(11835, gl_dispatch_stub_697, gl_dispatch_stub_697, NULL, 697),
+ NAME_FUNC_OFFSET(11847, gl_dispatch_stub_698, gl_dispatch_stub_698, NULL, 698),
+ NAME_FUNC_OFFSET(11860, gl_dispatch_stub_699, gl_dispatch_stub_699, NULL, 699),
+ NAME_FUNC_OFFSET(11874, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 700),
+ NAME_FUNC_OFFSET(11898, glBindProgramNV, glBindProgramNV, NULL, 701),
+ NAME_FUNC_OFFSET(11914, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 702),
+ NAME_FUNC_OFFSET(11933, glExecuteProgramNV, glExecuteProgramNV, NULL, 703),
+ NAME_FUNC_OFFSET(11952, glGenProgramsNV, glGenProgramsNV, NULL, 704),
+ NAME_FUNC_OFFSET(11968, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 705),
+ NAME_FUNC_OFFSET(11994, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 706),
+ NAME_FUNC_OFFSET(12020, glGetProgramStringNV, glGetProgramStringNV, NULL, 707),
+ NAME_FUNC_OFFSET(12041, glGetProgramivNV, glGetProgramivNV, NULL, 708),
+ NAME_FUNC_OFFSET(12058, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 709),
+ NAME_FUNC_OFFSET(12079, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 710),
+ NAME_FUNC_OFFSET(12107, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 711),
+ NAME_FUNC_OFFSET(12129, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 712),
+ NAME_FUNC_OFFSET(12151, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 713),
+ NAME_FUNC_OFFSET(12173, glIsProgramNV, glIsProgramNV, NULL, 714),
+ NAME_FUNC_OFFSET(12187, glLoadProgramNV, glLoadProgramNV, NULL, 715),
+ NAME_FUNC_OFFSET(12203, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 716),
+ NAME_FUNC_OFFSET(12228, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 717),
+ NAME_FUNC_OFFSET(12253, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 718),
+ NAME_FUNC_OFFSET(12281, glTrackMatrixNV, glTrackMatrixNV, NULL, 719),
+ NAME_FUNC_OFFSET(12297, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 720),
+ NAME_FUNC_OFFSET(12316, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 721),
+ NAME_FUNC_OFFSET(12336, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 722),
+ NAME_FUNC_OFFSET(12355, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 723),
+ NAME_FUNC_OFFSET(12375, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 724),
+ NAME_FUNC_OFFSET(12394, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 725),
+ NAME_FUNC_OFFSET(12414, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 726),
+ NAME_FUNC_OFFSET(12433, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 727),
+ NAME_FUNC_OFFSET(12453, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 728),
+ NAME_FUNC_OFFSET(12472, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 729),
+ NAME_FUNC_OFFSET(12492, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 730),
+ NAME_FUNC_OFFSET(12511, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 731),
+ NAME_FUNC_OFFSET(12531, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 732),
+ NAME_FUNC_OFFSET(12550, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 733),
+ NAME_FUNC_OFFSET(12570, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 734),
+ NAME_FUNC_OFFSET(12589, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 735),
+ NAME_FUNC_OFFSET(12609, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 736),
+ NAME_FUNC_OFFSET(12628, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 737),
+ NAME_FUNC_OFFSET(12648, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 738),
+ NAME_FUNC_OFFSET(12667, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 739),
+ NAME_FUNC_OFFSET(12687, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 740),
+ NAME_FUNC_OFFSET(12706, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 741),
+ NAME_FUNC_OFFSET(12726, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 742),
+ NAME_FUNC_OFFSET(12745, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 743),
+ NAME_FUNC_OFFSET(12765, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 744),
+ NAME_FUNC_OFFSET(12785, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 745),
+ NAME_FUNC_OFFSET(12806, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 746),
+ NAME_FUNC_OFFSET(12830, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 747),
+ NAME_FUNC_OFFSET(12851, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 748),
+ NAME_FUNC_OFFSET(12872, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 749),
+ NAME_FUNC_OFFSET(12893, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 750),
+ NAME_FUNC_OFFSET(12914, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 751),
+ NAME_FUNC_OFFSET(12935, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 752),
+ NAME_FUNC_OFFSET(12956, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 753),
+ NAME_FUNC_OFFSET(12977, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 754),
+ NAME_FUNC_OFFSET(12998, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 755),
+ NAME_FUNC_OFFSET(13019, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 756),
+ NAME_FUNC_OFFSET(13040, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 757),
+ NAME_FUNC_OFFSET(13061, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 758),
+ NAME_FUNC_OFFSET(13082, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 759),
+ NAME_FUNC_OFFSET(13104, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 760),
+ NAME_FUNC_OFFSET(13131, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 761),
+ NAME_FUNC_OFFSET(13158, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 762),
+ NAME_FUNC_OFFSET(13182, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 763),
+ NAME_FUNC_OFFSET(13206, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 764),
+ NAME_FUNC_OFFSET(13228, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 765),
+ NAME_FUNC_OFFSET(13250, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 766),
+ NAME_FUNC_OFFSET(13272, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 767),
+ NAME_FUNC_OFFSET(13297, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 768),
+ NAME_FUNC_OFFSET(13321, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 769),
+ NAME_FUNC_OFFSET(13343, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 770),
+ NAME_FUNC_OFFSET(13365, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 771),
+ NAME_FUNC_OFFSET(13387, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 772),
+ NAME_FUNC_OFFSET(13413, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 773),
+ NAME_FUNC_OFFSET(13436, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 774),
+ NAME_FUNC_OFFSET(13460, glPassTexCoordATI, glPassTexCoordATI, NULL, 775),
+ NAME_FUNC_OFFSET(13478, glSampleMapATI, glSampleMapATI, NULL, 776),
+ NAME_FUNC_OFFSET(13493, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 777),
+ NAME_FUNC_OFFSET(13524, glPointParameteriNV, glPointParameteriNV, NULL, 778),
+ NAME_FUNC_OFFSET(13544, glPointParameterivNV, glPointParameterivNV, NULL, 779),
+ NAME_FUNC_OFFSET(13565, gl_dispatch_stub_780, gl_dispatch_stub_780, NULL, 780),
+ NAME_FUNC_OFFSET(13588, gl_dispatch_stub_781, gl_dispatch_stub_781, NULL, 781),
+ NAME_FUNC_OFFSET(13611, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782),
+ NAME_FUNC_OFFSET(13637, gl_dispatch_stub_783, gl_dispatch_stub_783, NULL, 783),
+ NAME_FUNC_OFFSET(13660, gl_dispatch_stub_784, gl_dispatch_stub_784, NULL, 784),
+ NAME_FUNC_OFFSET(13681, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 785),
+ NAME_FUNC_OFFSET(13712, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 786),
+ NAME_FUNC_OFFSET(13743, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 787),
+ NAME_FUNC_OFFSET(13771, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 788),
+ NAME_FUNC_OFFSET(13800, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 789),
+ NAME_FUNC_OFFSET(13828, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 790),
+ NAME_FUNC_OFFSET(13857, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 791),
+ NAME_FUNC_OFFSET(13883, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 792),
+ NAME_FUNC_OFFSET(13904, gl_dispatch_stub_793, gl_dispatch_stub_793, NULL, 793),
+ NAME_FUNC_OFFSET(13921, gl_dispatch_stub_794, gl_dispatch_stub_794, NULL, 794),
+ NAME_FUNC_OFFSET(13948, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 795),
+ NAME_FUNC_OFFSET(13969, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 796),
+ NAME_FUNC_OFFSET(13991, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 797),
+ NAME_FUNC_OFFSET(14019, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 798),
+ NAME_FUNC_OFFSET(14043, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 799),
+ NAME_FUNC_OFFSET(14068, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 800),
+ NAME_FUNC_OFFSET(14097, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 801),
+ NAME_FUNC_OFFSET(14123, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 802),
+ NAME_FUNC_OFFSET(14149, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 803),
+ NAME_FUNC_OFFSET(14175, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 804),
+ NAME_FUNC_OFFSET(14196, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 805),
+ NAME_FUNC_OFFSET(14218, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 806),
+ NAME_FUNC_OFFSET(14238, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 807),
+ NAME_FUNC_OFFSET(14279, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 808),
+ NAME_FUNC_OFFSET(14311, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 809),
+ NAME_FUNC_OFFSET(14330, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 810),
+ NAME_FUNC_OFFSET(14350, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 811),
+ NAME_FUNC_OFFSET(14375, gl_dispatch_stub_812, gl_dispatch_stub_812, NULL, 812),
+ NAME_FUNC_OFFSET(14396, gl_dispatch_stub_813, gl_dispatch_stub_813, NULL, 813),
+ NAME_FUNC_OFFSET(14420, gl_dispatch_stub_814, gl_dispatch_stub_814, NULL, 814),
+ NAME_FUNC_OFFSET(14450, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 815),
+ NAME_FUNC_OFFSET(14476, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 816),
+ NAME_FUNC_OFFSET(14501, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 817),
+ NAME_FUNC_OFFSET(14520, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 818),
+ NAME_FUNC_OFFSET(14544, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 819),
+ NAME_FUNC_OFFSET(14569, glUniform1uiEXT, glUniform1uiEXT, NULL, 820),
+ NAME_FUNC_OFFSET(14585, glUniform1uivEXT, glUniform1uivEXT, NULL, 821),
+ NAME_FUNC_OFFSET(14602, glUniform2uiEXT, glUniform2uiEXT, NULL, 822),
+ NAME_FUNC_OFFSET(14618, glUniform2uivEXT, glUniform2uivEXT, NULL, 823),
+ NAME_FUNC_OFFSET(14635, glUniform3uiEXT, glUniform3uiEXT, NULL, 824),
+ NAME_FUNC_OFFSET(14651, glUniform3uivEXT, glUniform3uivEXT, NULL, 825),
+ NAME_FUNC_OFFSET(14668, glUniform4uiEXT, glUniform4uiEXT, NULL, 826),
+ NAME_FUNC_OFFSET(14684, glUniform4uivEXT, glUniform4uivEXT, NULL, 827),
+ NAME_FUNC_OFFSET(14701, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 828),
+ NAME_FUNC_OFFSET(14722, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 829),
+ NAME_FUNC_OFFSET(14744, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 830),
+ NAME_FUNC_OFFSET(14766, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 831),
+ NAME_FUNC_OFFSET(14789, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 832),
+ NAME_FUNC_OFFSET(14810, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 833),
+ NAME_FUNC_OFFSET(14832, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 834),
+ NAME_FUNC_OFFSET(14854, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 835),
+ NAME_FUNC_OFFSET(14877, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 836),
+ NAME_FUNC_OFFSET(14898, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 837),
+ NAME_FUNC_OFFSET(14920, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 838),
+ NAME_FUNC_OFFSET(14942, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 839),
+ NAME_FUNC_OFFSET(14965, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 840),
+ NAME_FUNC_OFFSET(14987, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 841),
+ NAME_FUNC_OFFSET(15008, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 842),
+ NAME_FUNC_OFFSET(15030, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 843),
+ NAME_FUNC_OFFSET(15052, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 844),
+ NAME_FUNC_OFFSET(15075, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 845),
+ NAME_FUNC_OFFSET(15097, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 846),
+ NAME_FUNC_OFFSET(15120, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 847),
+ NAME_FUNC_OFFSET(15143, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 848),
+ NAME_FUNC_OFFSET(15169, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 849),
+ NAME_FUNC_OFFSET(15198, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 850),
+ NAME_FUNC_OFFSET(15220, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 851),
+ NAME_FUNC_OFFSET(15240, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 852),
+ NAME_FUNC_OFFSET(15259, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 853),
+ NAME_FUNC_OFFSET(15283, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 854),
+ NAME_FUNC_OFFSET(15307, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 855),
+ NAME_FUNC_OFFSET(15329, glClearColorIiEXT, glClearColorIiEXT, NULL, 856),
+ NAME_FUNC_OFFSET(15347, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 857),
+ NAME_FUNC_OFFSET(15366, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 858),
+ NAME_FUNC_OFFSET(15390, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 859),
+ NAME_FUNC_OFFSET(15415, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 860),
+ NAME_FUNC_OFFSET(15436, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 861),
+ NAME_FUNC_OFFSET(15458, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 862),
+ NAME_FUNC_OFFSET(15485, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 863),
+ NAME_FUNC_OFFSET(15510, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 864),
+ NAME_FUNC_OFFSET(15538, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 865),
+ NAME_FUNC_OFFSET(15558, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 866),
+ NAME_FUNC_OFFSET(15580, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 867),
+ NAME_FUNC_OFFSET(15601, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 868),
+ NAME_FUNC_OFFSET(15627, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 869),
+ NAME_FUNC_OFFSET(15660, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 870),
+ NAME_FUNC_OFFSET(15691, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 871),
+ NAME_FUNC_OFFSET(15712, gl_dispatch_stub_872, gl_dispatch_stub_872, NULL, 872),
+ NAME_FUNC_OFFSET(15743, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873),
+ NAME_FUNC_OFFSET(15763, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 874),
+ NAME_FUNC_OFFSET(15791, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 875),
+ NAME_FUNC_OFFSET(15814, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 876),
+ NAME_FUNC_OFFSET(15839, glActiveProgramEXT, glActiveProgramEXT, NULL, 877),
+ NAME_FUNC_OFFSET(15858, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 878),
+ NAME_FUNC_OFFSET(15883, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 879),
NAME_FUNC_OFFSET(15905, gl_dispatch_stub_880, gl_dispatch_stub_880, NULL, 880),
- NAME_FUNC_OFFSET(15934, gl_dispatch_stub_881, gl_dispatch_stub_881, NULL, 881),
- NAME_FUNC_OFFSET(15965, gl_dispatch_stub_882, gl_dispatch_stub_882, NULL, 882),
- NAME_FUNC_OFFSET(15989, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883),
- NAME_FUNC_OFFSET(16014, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 884),
- NAME_FUNC_OFFSET(16053, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 885),
- NAME_FUNC_OFFSET(16082, glArrayElement, glArrayElement, NULL, 306),
- NAME_FUNC_OFFSET(16100, glBindTexture, glBindTexture, NULL, 307),
- NAME_FUNC_OFFSET(16117, glDrawArrays, glDrawArrays, NULL, 310),
- NAME_FUNC_OFFSET(16133, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
- NAME_FUNC_OFFSET(16158, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
- NAME_FUNC_OFFSET(16178, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
- NAME_FUNC_OFFSET(16198, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
- NAME_FUNC_OFFSET(16221, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
- NAME_FUNC_OFFSET(16244, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
- NAME_FUNC_OFFSET(16264, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
- NAME_FUNC_OFFSET(16281, glGetPointerv, glGetPointerv, NULL, 329),
- NAME_FUNC_OFFSET(16298, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
- NAME_FUNC_OFFSET(16313, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
- NAME_FUNC_OFFSET(16337, glTexSubImage1D, glTexSubImage1D, NULL, 332),
- NAME_FUNC_OFFSET(16356, glTexSubImage2D, glTexSubImage2D, NULL, 333),
- NAME_FUNC_OFFSET(16375, glBlendColor, glBlendColor, NULL, 336),
- NAME_FUNC_OFFSET(16391, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(16410, glDrawRangeElements, glDrawRangeElements, NULL, 338),
- NAME_FUNC_OFFSET(16433, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(16449, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(16465, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
- NAME_FUNC_OFFSET(16492, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
- NAME_FUNC_OFFSET(16519, glCopyColorTable, glCopyColorTable, NULL, 342),
- NAME_FUNC_OFFSET(16539, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(16558, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(16577, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(16607, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(16637, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(16667, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(16697, glColorSubTable, glColorSubTable, NULL, 346),
- NAME_FUNC_OFFSET(16716, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
- NAME_FUNC_OFFSET(16739, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
- NAME_FUNC_OFFSET(16764, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
- NAME_FUNC_OFFSET(16789, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
- NAME_FUNC_OFFSET(16816, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
- NAME_FUNC_OFFSET(16844, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
- NAME_FUNC_OFFSET(16871, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
- NAME_FUNC_OFFSET(16899, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
- NAME_FUNC_OFFSET(16928, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
- NAME_FUNC_OFFSET(16957, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
- NAME_FUNC_OFFSET(16983, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
- NAME_FUNC_OFFSET(17014, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
- NAME_FUNC_OFFSET(17045, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
- NAME_FUNC_OFFSET(17069, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
- NAME_FUNC_OFFSET(17092, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
- NAME_FUNC_OFFSET(17110, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
- NAME_FUNC_OFFSET(17139, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
- NAME_FUNC_OFFSET(17168, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
- NAME_FUNC_OFFSET(17183, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
- NAME_FUNC_OFFSET(17209, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
- NAME_FUNC_OFFSET(17235, glHistogram, glHistogram, NULL, 367),
- NAME_FUNC_OFFSET(17250, glMinmax, glMinmax, NULL, 368),
- NAME_FUNC_OFFSET(17262, glResetHistogram, glResetHistogram, NULL, 369),
- NAME_FUNC_OFFSET(17282, glResetMinmax, glResetMinmax, NULL, 370),
- NAME_FUNC_OFFSET(17299, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(17315, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(17334, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(17357, glActiveTextureARB, glActiveTextureARB, NULL, 374),
- NAME_FUNC_OFFSET(17373, glClientActiveTextureARB, glClientActiveTextureARB, NULL, 375),
- NAME_FUNC_OFFSET(17395, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, 376),
- NAME_FUNC_OFFSET(17413, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, 377),
- NAME_FUNC_OFFSET(17432, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
- NAME_FUNC_OFFSET(17450, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
- NAME_FUNC_OFFSET(17469, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, 380),
- NAME_FUNC_OFFSET(17487, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, 381),
- NAME_FUNC_OFFSET(17506, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, 382),
- NAME_FUNC_OFFSET(17524, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, 383),
- NAME_FUNC_OFFSET(17543, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, 384),
- NAME_FUNC_OFFSET(17561, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, 385),
- NAME_FUNC_OFFSET(17580, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
- NAME_FUNC_OFFSET(17598, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
- NAME_FUNC_OFFSET(17617, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, 388),
- NAME_FUNC_OFFSET(17635, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, 389),
- NAME_FUNC_OFFSET(17654, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, 390),
- NAME_FUNC_OFFSET(17672, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, 391),
- NAME_FUNC_OFFSET(17691, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, 392),
- NAME_FUNC_OFFSET(17709, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, 393),
- NAME_FUNC_OFFSET(17728, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
- NAME_FUNC_OFFSET(17746, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
- NAME_FUNC_OFFSET(17765, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, 396),
- NAME_FUNC_OFFSET(17783, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, 397),
- NAME_FUNC_OFFSET(17802, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, 398),
- NAME_FUNC_OFFSET(17820, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, 399),
- NAME_FUNC_OFFSET(17839, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, 400),
- NAME_FUNC_OFFSET(17857, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, 401),
- NAME_FUNC_OFFSET(17876, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
- NAME_FUNC_OFFSET(17894, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
- NAME_FUNC_OFFSET(17913, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, 404),
- NAME_FUNC_OFFSET(17931, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, 405),
- NAME_FUNC_OFFSET(17950, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, 406),
- NAME_FUNC_OFFSET(17968, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, 407),
- NAME_FUNC_OFFSET(17987, glStencilOpSeparate, glStencilOpSeparate, NULL, 423),
- NAME_FUNC_OFFSET(18010, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 441),
- NAME_FUNC_OFFSET(18033, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 442),
- NAME_FUNC_OFFSET(18056, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 443),
- NAME_FUNC_OFFSET(18079, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 444),
- NAME_FUNC_OFFSET(18102, glSampleCoverageARB, glSampleCoverageARB, NULL, 445),
- NAME_FUNC_OFFSET(18119, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 446),
- NAME_FUNC_OFFSET(18142, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 447),
- NAME_FUNC_OFFSET(18165, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 448),
- NAME_FUNC_OFFSET(18188, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 449),
- NAME_FUNC_OFFSET(18214, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 450),
- NAME_FUNC_OFFSET(18240, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 451),
- NAME_FUNC_OFFSET(18266, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 452),
- NAME_FUNC_OFFSET(18290, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 453),
- NAME_FUNC_OFFSET(18317, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 454),
- NAME_FUNC_OFFSET(18343, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 461),
- NAME_FUNC_OFFSET(18363, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 462),
- NAME_FUNC_OFFSET(18383, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 463),
- NAME_FUNC_OFFSET(18403, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 464),
- NAME_FUNC_OFFSET(18426, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 465),
- NAME_FUNC_OFFSET(18450, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 466),
- NAME_FUNC_OFFSET(18473, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 467),
- NAME_FUNC_OFFSET(18497, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 473),
- NAME_FUNC_OFFSET(18514, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 474),
- NAME_FUNC_OFFSET(18532, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 475),
- NAME_FUNC_OFFSET(18549, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 476),
- NAME_FUNC_OFFSET(18567, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 477),
- NAME_FUNC_OFFSET(18584, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 478),
- NAME_FUNC_OFFSET(18602, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 479),
- NAME_FUNC_OFFSET(18619, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 480),
- NAME_FUNC_OFFSET(18637, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 481),
- NAME_FUNC_OFFSET(18654, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 482),
- NAME_FUNC_OFFSET(18672, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 483),
- NAME_FUNC_OFFSET(18689, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 484),
- NAME_FUNC_OFFSET(18707, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 485),
- NAME_FUNC_OFFSET(18724, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 486),
- NAME_FUNC_OFFSET(18742, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 487),
- NAME_FUNC_OFFSET(18759, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 488),
- NAME_FUNC_OFFSET(18777, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 489),
- NAME_FUNC_OFFSET(18794, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 490),
- NAME_FUNC_OFFSET(18812, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 491),
- NAME_FUNC_OFFSET(18831, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 492),
- NAME_FUNC_OFFSET(18850, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 493),
- NAME_FUNC_OFFSET(18869, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 494),
- NAME_FUNC_OFFSET(18888, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 495),
- NAME_FUNC_OFFSET(18908, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 496),
- NAME_FUNC_OFFSET(18928, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 497),
- NAME_FUNC_OFFSET(18948, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 498),
- NAME_FUNC_OFFSET(18966, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 499),
- NAME_FUNC_OFFSET(18983, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 500),
- NAME_FUNC_OFFSET(19001, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 501),
- NAME_FUNC_OFFSET(19018, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 502),
- NAME_FUNC_OFFSET(19036, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 503),
- NAME_FUNC_OFFSET(19054, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 504),
- NAME_FUNC_OFFSET(19071, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 505),
- NAME_FUNC_OFFSET(19089, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 506),
- NAME_FUNC_OFFSET(19108, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 507),
- NAME_FUNC_OFFSET(19127, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 508),
- NAME_FUNC_OFFSET(19146, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 509),
- NAME_FUNC_OFFSET(19168, glBindBufferARB, glBindBufferARB, NULL, 510),
- NAME_FUNC_OFFSET(19181, glBufferDataARB, glBufferDataARB, NULL, 511),
- NAME_FUNC_OFFSET(19194, glBufferSubDataARB, glBufferSubDataARB, NULL, 512),
- NAME_FUNC_OFFSET(19210, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 513),
- NAME_FUNC_OFFSET(19226, glGenBuffersARB, glGenBuffersARB, NULL, 514),
- NAME_FUNC_OFFSET(19239, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 515),
- NAME_FUNC_OFFSET(19262, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 516),
- NAME_FUNC_OFFSET(19282, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 517),
- NAME_FUNC_OFFSET(19301, glIsBufferARB, glIsBufferARB, NULL, 518),
- NAME_FUNC_OFFSET(19312, glMapBufferARB, glMapBufferARB, NULL, 519),
- NAME_FUNC_OFFSET(19324, glUnmapBufferARB, glUnmapBufferARB, NULL, 520),
- NAME_FUNC_OFFSET(19338, glBeginQueryARB, glBeginQueryARB, NULL, 521),
- NAME_FUNC_OFFSET(19351, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 522),
- NAME_FUNC_OFFSET(19367, glEndQueryARB, glEndQueryARB, NULL, 523),
- NAME_FUNC_OFFSET(19378, glGenQueriesARB, glGenQueriesARB, NULL, 524),
- NAME_FUNC_OFFSET(19391, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 525),
- NAME_FUNC_OFFSET(19410, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 526),
- NAME_FUNC_OFFSET(19430, glGetQueryivARB, glGetQueryivARB, NULL, 527),
- NAME_FUNC_OFFSET(19443, glIsQueryARB, glIsQueryARB, NULL, 528),
- NAME_FUNC_OFFSET(19453, glCompileShaderARB, glCompileShaderARB, NULL, 530),
- NAME_FUNC_OFFSET(19469, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 535),
- NAME_FUNC_OFFSET(19488, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 541),
- NAME_FUNC_OFFSET(19506, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 542),
- NAME_FUNC_OFFSET(19527, glGetUniformfvARB, glGetUniformfvARB, NULL, 543),
- NAME_FUNC_OFFSET(19542, glGetUniformivARB, glGetUniformivARB, NULL, 544),
- NAME_FUNC_OFFSET(19557, glLinkProgramARB, glLinkProgramARB, NULL, 545),
- NAME_FUNC_OFFSET(19571, glShaderSourceARB, glShaderSourceARB, NULL, 546),
- NAME_FUNC_OFFSET(19586, glUniform1fARB, glUniform1fARB, NULL, 547),
- NAME_FUNC_OFFSET(19598, glUniform1fvARB, glUniform1fvARB, NULL, 548),
- NAME_FUNC_OFFSET(19611, glUniform1iARB, glUniform1iARB, NULL, 549),
- NAME_FUNC_OFFSET(19623, glUniform1ivARB, glUniform1ivARB, NULL, 550),
- NAME_FUNC_OFFSET(19636, glUniform2fARB, glUniform2fARB, NULL, 551),
- NAME_FUNC_OFFSET(19648, glUniform2fvARB, glUniform2fvARB, NULL, 552),
- NAME_FUNC_OFFSET(19661, glUniform2iARB, glUniform2iARB, NULL, 553),
- NAME_FUNC_OFFSET(19673, glUniform2ivARB, glUniform2ivARB, NULL, 554),
- NAME_FUNC_OFFSET(19686, glUniform3fARB, glUniform3fARB, NULL, 555),
- NAME_FUNC_OFFSET(19698, glUniform3fvARB, glUniform3fvARB, NULL, 556),
- NAME_FUNC_OFFSET(19711, glUniform3iARB, glUniform3iARB, NULL, 557),
- NAME_FUNC_OFFSET(19723, glUniform3ivARB, glUniform3ivARB, NULL, 558),
- NAME_FUNC_OFFSET(19736, glUniform4fARB, glUniform4fARB, NULL, 559),
- NAME_FUNC_OFFSET(19748, glUniform4fvARB, glUniform4fvARB, NULL, 560),
- NAME_FUNC_OFFSET(19761, glUniform4iARB, glUniform4iARB, NULL, 561),
- NAME_FUNC_OFFSET(19773, glUniform4ivARB, glUniform4ivARB, NULL, 562),
- NAME_FUNC_OFFSET(19786, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 563),
- NAME_FUNC_OFFSET(19805, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 564),
- NAME_FUNC_OFFSET(19824, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 565),
- NAME_FUNC_OFFSET(19843, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 566),
- NAME_FUNC_OFFSET(19856, glValidateProgramARB, glValidateProgramARB, NULL, 567),
- NAME_FUNC_OFFSET(19874, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 568),
- NAME_FUNC_OFFSET(19895, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 569),
- NAME_FUNC_OFFSET(19913, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 570),
- NAME_FUNC_OFFSET(19933, glDrawBuffersARB, glDrawBuffersARB, NULL, 571),
- NAME_FUNC_OFFSET(19947, glDrawBuffersARB, glDrawBuffersARB, NULL, 571),
- NAME_FUNC_OFFSET(19964, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 572),
+ NAME_FUNC_OFFSET(15930, gl_dispatch_stub_881, gl_dispatch_stub_881, NULL, 881),
+ NAME_FUNC_OFFSET(15959, gl_dispatch_stub_882, gl_dispatch_stub_882, NULL, 882),
+ NAME_FUNC_OFFSET(15990, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883),
+ NAME_FUNC_OFFSET(16014, gl_dispatch_stub_884, gl_dispatch_stub_884, NULL, 884),
+ NAME_FUNC_OFFSET(16039, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 885),
+ NAME_FUNC_OFFSET(16078, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 886),
+ NAME_FUNC_OFFSET(16107, glArrayElement, glArrayElement, NULL, 306),
+ NAME_FUNC_OFFSET(16125, glBindTexture, glBindTexture, NULL, 307),
+ NAME_FUNC_OFFSET(16142, glDrawArrays, glDrawArrays, NULL, 310),
+ NAME_FUNC_OFFSET(16158, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
+ NAME_FUNC_OFFSET(16183, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
+ NAME_FUNC_OFFSET(16203, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
+ NAME_FUNC_OFFSET(16223, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
+ NAME_FUNC_OFFSET(16246, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
+ NAME_FUNC_OFFSET(16269, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
+ NAME_FUNC_OFFSET(16289, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
+ NAME_FUNC_OFFSET(16306, glGetPointerv, glGetPointerv, NULL, 329),
+ NAME_FUNC_OFFSET(16323, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
+ NAME_FUNC_OFFSET(16338, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
+ NAME_FUNC_OFFSET(16362, glTexSubImage1D, glTexSubImage1D, NULL, 332),
+ NAME_FUNC_OFFSET(16381, glTexSubImage2D, glTexSubImage2D, NULL, 333),
+ NAME_FUNC_OFFSET(16400, glBlendColor, glBlendColor, NULL, 336),
+ NAME_FUNC_OFFSET(16416, glBlendEquation, glBlendEquation, NULL, 337),
+ NAME_FUNC_OFFSET(16435, glDrawRangeElements, glDrawRangeElements, NULL, 338),
+ NAME_FUNC_OFFSET(16458, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(16474, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(16490, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
+ NAME_FUNC_OFFSET(16517, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
+ NAME_FUNC_OFFSET(16544, glCopyColorTable, glCopyColorTable, NULL, 342),
+ NAME_FUNC_OFFSET(16564, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(16583, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(16602, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(16632, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(16662, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(16692, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(16722, glColorSubTable, glColorSubTable, NULL, 346),
+ NAME_FUNC_OFFSET(16741, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
+ NAME_FUNC_OFFSET(16764, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
+ NAME_FUNC_OFFSET(16789, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
+ NAME_FUNC_OFFSET(16814, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
+ NAME_FUNC_OFFSET(16841, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
+ NAME_FUNC_OFFSET(16869, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
+ NAME_FUNC_OFFSET(16896, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
+ NAME_FUNC_OFFSET(16924, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
+ NAME_FUNC_OFFSET(16953, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
+ NAME_FUNC_OFFSET(16982, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
+ NAME_FUNC_OFFSET(17008, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
+ NAME_FUNC_OFFSET(17039, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
+ NAME_FUNC_OFFSET(17070, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
+ NAME_FUNC_OFFSET(17094, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
+ NAME_FUNC_OFFSET(17117, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
+ NAME_FUNC_OFFSET(17135, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
+ NAME_FUNC_OFFSET(17164, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
+ NAME_FUNC_OFFSET(17193, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
+ NAME_FUNC_OFFSET(17208, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
+ NAME_FUNC_OFFSET(17234, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
+ NAME_FUNC_OFFSET(17260, glHistogram, glHistogram, NULL, 367),
+ NAME_FUNC_OFFSET(17275, glMinmax, glMinmax, NULL, 368),
+ NAME_FUNC_OFFSET(17287, glResetHistogram, glResetHistogram, NULL, 369),
+ NAME_FUNC_OFFSET(17307, glResetMinmax, glResetMinmax, NULL, 370),
+ NAME_FUNC_OFFSET(17324, glTexImage3D, glTexImage3D, NULL, 371),
+ NAME_FUNC_OFFSET(17340, glTexSubImage3D, glTexSubImage3D, NULL, 372),
+ NAME_FUNC_OFFSET(17359, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
+ NAME_FUNC_OFFSET(17382, glActiveTextureARB, glActiveTextureARB, NULL, 374),
+ NAME_FUNC_OFFSET(17398, glClientActiveTextureARB, glClientActiveTextureARB, NULL, 375),
+ NAME_FUNC_OFFSET(17420, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, 376),
+ NAME_FUNC_OFFSET(17438, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, 377),
+ NAME_FUNC_OFFSET(17457, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
+ NAME_FUNC_OFFSET(17475, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
+ NAME_FUNC_OFFSET(17494, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, 380),
+ NAME_FUNC_OFFSET(17512, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, 381),
+ NAME_FUNC_OFFSET(17531, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, 382),
+ NAME_FUNC_OFFSET(17549, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, 383),
+ NAME_FUNC_OFFSET(17568, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, 384),
+ NAME_FUNC_OFFSET(17586, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, 385),
+ NAME_FUNC_OFFSET(17605, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
+ NAME_FUNC_OFFSET(17623, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
+ NAME_FUNC_OFFSET(17642, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, 388),
+ NAME_FUNC_OFFSET(17660, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, 389),
+ NAME_FUNC_OFFSET(17679, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, 390),
+ NAME_FUNC_OFFSET(17697, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, 391),
+ NAME_FUNC_OFFSET(17716, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, 392),
+ NAME_FUNC_OFFSET(17734, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, 393),
+ NAME_FUNC_OFFSET(17753, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
+ NAME_FUNC_OFFSET(17771, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
+ NAME_FUNC_OFFSET(17790, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, 396),
+ NAME_FUNC_OFFSET(17808, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, 397),
+ NAME_FUNC_OFFSET(17827, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, 398),
+ NAME_FUNC_OFFSET(17845, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, 399),
+ NAME_FUNC_OFFSET(17864, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, 400),
+ NAME_FUNC_OFFSET(17882, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, 401),
+ NAME_FUNC_OFFSET(17901, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
+ NAME_FUNC_OFFSET(17919, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
+ NAME_FUNC_OFFSET(17938, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, 404),
+ NAME_FUNC_OFFSET(17956, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, 405),
+ NAME_FUNC_OFFSET(17975, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, 406),
+ NAME_FUNC_OFFSET(17993, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, 407),
+ NAME_FUNC_OFFSET(18012, glStencilOpSeparate, glStencilOpSeparate, NULL, 423),
+ NAME_FUNC_OFFSET(18035, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 441),
+ NAME_FUNC_OFFSET(18058, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 442),
+ NAME_FUNC_OFFSET(18081, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 443),
+ NAME_FUNC_OFFSET(18104, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 444),
+ NAME_FUNC_OFFSET(18127, glSampleCoverageARB, glSampleCoverageARB, NULL, 445),
+ NAME_FUNC_OFFSET(18144, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 446),
+ NAME_FUNC_OFFSET(18167, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 447),
+ NAME_FUNC_OFFSET(18190, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 448),
+ NAME_FUNC_OFFSET(18213, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 449),
+ NAME_FUNC_OFFSET(18239, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 450),
+ NAME_FUNC_OFFSET(18265, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 451),
+ NAME_FUNC_OFFSET(18291, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 452),
+ NAME_FUNC_OFFSET(18315, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 453),
+ NAME_FUNC_OFFSET(18342, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 454),
+ NAME_FUNC_OFFSET(18368, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 461),
+ NAME_FUNC_OFFSET(18388, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 462),
+ NAME_FUNC_OFFSET(18408, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 463),
+ NAME_FUNC_OFFSET(18428, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 464),
+ NAME_FUNC_OFFSET(18451, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 465),
+ NAME_FUNC_OFFSET(18475, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 466),
+ NAME_FUNC_OFFSET(18498, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 467),
+ NAME_FUNC_OFFSET(18522, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 473),
+ NAME_FUNC_OFFSET(18539, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 474),
+ NAME_FUNC_OFFSET(18557, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 475),
+ NAME_FUNC_OFFSET(18574, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 476),
+ NAME_FUNC_OFFSET(18592, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 477),
+ NAME_FUNC_OFFSET(18609, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 478),
+ NAME_FUNC_OFFSET(18627, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 479),
+ NAME_FUNC_OFFSET(18644, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 480),
+ NAME_FUNC_OFFSET(18662, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 481),
+ NAME_FUNC_OFFSET(18679, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 482),
+ NAME_FUNC_OFFSET(18697, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 483),
+ NAME_FUNC_OFFSET(18714, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 484),
+ NAME_FUNC_OFFSET(18732, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 485),
+ NAME_FUNC_OFFSET(18749, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 486),
+ NAME_FUNC_OFFSET(18767, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 487),
+ NAME_FUNC_OFFSET(18784, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 488),
+ NAME_FUNC_OFFSET(18802, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 489),
+ NAME_FUNC_OFFSET(18819, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 490),
+ NAME_FUNC_OFFSET(18837, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 491),
+ NAME_FUNC_OFFSET(18856, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 492),
+ NAME_FUNC_OFFSET(18875, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 493),
+ NAME_FUNC_OFFSET(18894, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 494),
+ NAME_FUNC_OFFSET(18913, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 495),
+ NAME_FUNC_OFFSET(18933, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 496),
+ NAME_FUNC_OFFSET(18953, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 497),
+ NAME_FUNC_OFFSET(18973, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 498),
+ NAME_FUNC_OFFSET(18991, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 499),
+ NAME_FUNC_OFFSET(19008, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 500),
+ NAME_FUNC_OFFSET(19026, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 501),
+ NAME_FUNC_OFFSET(19043, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 502),
+ NAME_FUNC_OFFSET(19061, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 503),
+ NAME_FUNC_OFFSET(19079, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 504),
+ NAME_FUNC_OFFSET(19096, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 505),
+ NAME_FUNC_OFFSET(19114, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 506),
+ NAME_FUNC_OFFSET(19133, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 507),
+ NAME_FUNC_OFFSET(19152, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 508),
+ NAME_FUNC_OFFSET(19171, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 509),
+ NAME_FUNC_OFFSET(19193, glBindBufferARB, glBindBufferARB, NULL, 510),
+ NAME_FUNC_OFFSET(19206, glBufferDataARB, glBufferDataARB, NULL, 511),
+ NAME_FUNC_OFFSET(19219, glBufferSubDataARB, glBufferSubDataARB, NULL, 512),
+ NAME_FUNC_OFFSET(19235, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 513),
+ NAME_FUNC_OFFSET(19251, glGenBuffersARB, glGenBuffersARB, NULL, 514),
+ NAME_FUNC_OFFSET(19264, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 515),
+ NAME_FUNC_OFFSET(19287, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 516),
+ NAME_FUNC_OFFSET(19307, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 517),
+ NAME_FUNC_OFFSET(19326, glIsBufferARB, glIsBufferARB, NULL, 518),
+ NAME_FUNC_OFFSET(19337, glMapBufferARB, glMapBufferARB, NULL, 519),
+ NAME_FUNC_OFFSET(19349, glUnmapBufferARB, glUnmapBufferARB, NULL, 520),
+ NAME_FUNC_OFFSET(19363, glBeginQueryARB, glBeginQueryARB, NULL, 521),
+ NAME_FUNC_OFFSET(19376, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 522),
+ NAME_FUNC_OFFSET(19392, glEndQueryARB, glEndQueryARB, NULL, 523),
+ NAME_FUNC_OFFSET(19403, glGenQueriesARB, glGenQueriesARB, NULL, 524),
+ NAME_FUNC_OFFSET(19416, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 525),
+ NAME_FUNC_OFFSET(19435, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 526),
+ NAME_FUNC_OFFSET(19455, glGetQueryivARB, glGetQueryivARB, NULL, 527),
+ NAME_FUNC_OFFSET(19468, glIsQueryARB, glIsQueryARB, NULL, 528),
+ NAME_FUNC_OFFSET(19478, glCompileShaderARB, glCompileShaderARB, NULL, 530),
+ NAME_FUNC_OFFSET(19494, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 535),
+ NAME_FUNC_OFFSET(19513, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 541),
+ NAME_FUNC_OFFSET(19531, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 542),
+ NAME_FUNC_OFFSET(19552, glGetUniformfvARB, glGetUniformfvARB, NULL, 543),
+ NAME_FUNC_OFFSET(19567, glGetUniformivARB, glGetUniformivARB, NULL, 544),
+ NAME_FUNC_OFFSET(19582, glLinkProgramARB, glLinkProgramARB, NULL, 545),
+ NAME_FUNC_OFFSET(19596, glShaderSourceARB, glShaderSourceARB, NULL, 546),
+ NAME_FUNC_OFFSET(19611, glUniform1fARB, glUniform1fARB, NULL, 547),
+ NAME_FUNC_OFFSET(19623, glUniform1fvARB, glUniform1fvARB, NULL, 548),
+ NAME_FUNC_OFFSET(19636, glUniform1iARB, glUniform1iARB, NULL, 549),
+ NAME_FUNC_OFFSET(19648, glUniform1ivARB, glUniform1ivARB, NULL, 550),
+ NAME_FUNC_OFFSET(19661, glUniform2fARB, glUniform2fARB, NULL, 551),
+ NAME_FUNC_OFFSET(19673, glUniform2fvARB, glUniform2fvARB, NULL, 552),
+ NAME_FUNC_OFFSET(19686, glUniform2iARB, glUniform2iARB, NULL, 553),
+ NAME_FUNC_OFFSET(19698, glUniform2ivARB, glUniform2ivARB, NULL, 554),
+ NAME_FUNC_OFFSET(19711, glUniform3fARB, glUniform3fARB, NULL, 555),
+ NAME_FUNC_OFFSET(19723, glUniform3fvARB, glUniform3fvARB, NULL, 556),
+ NAME_FUNC_OFFSET(19736, glUniform3iARB, glUniform3iARB, NULL, 557),
+ NAME_FUNC_OFFSET(19748, glUniform3ivARB, glUniform3ivARB, NULL, 558),
+ NAME_FUNC_OFFSET(19761, glUniform4fARB, glUniform4fARB, NULL, 559),
+ NAME_FUNC_OFFSET(19773, glUniform4fvARB, glUniform4fvARB, NULL, 560),
+ NAME_FUNC_OFFSET(19786, glUniform4iARB, glUniform4iARB, NULL, 561),
+ NAME_FUNC_OFFSET(19798, glUniform4ivARB, glUniform4ivARB, NULL, 562),
+ NAME_FUNC_OFFSET(19811, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 563),
+ NAME_FUNC_OFFSET(19830, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 564),
+ NAME_FUNC_OFFSET(19849, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 565),
+ NAME_FUNC_OFFSET(19868, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 566),
+ NAME_FUNC_OFFSET(19881, glValidateProgramARB, glValidateProgramARB, NULL, 567),
+ NAME_FUNC_OFFSET(19899, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 568),
+ NAME_FUNC_OFFSET(19920, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 569),
+ NAME_FUNC_OFFSET(19938, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 570),
+ NAME_FUNC_OFFSET(19958, glDrawBuffersARB, glDrawBuffersARB, NULL, 571),
+ NAME_FUNC_OFFSET(19972, glDrawBuffersARB, glDrawBuffersARB, NULL, 571),
NAME_FUNC_OFFSET(19989, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 572),
- NAME_FUNC_OFFSET(20011, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
- NAME_FUNC_OFFSET(20038, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
- NAME_FUNC_OFFSET(20062, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 574),
- NAME_FUNC_OFFSET(20098, gl_dispatch_stub_612, gl_dispatch_stub_612, NULL, 612),
- NAME_FUNC_OFFSET(20114, gl_dispatch_stub_613, gl_dispatch_stub_613, NULL, 613),
- NAME_FUNC_OFFSET(20133, glPointParameterfEXT, glPointParameterfEXT, NULL, 620),
- NAME_FUNC_OFFSET(20151, glPointParameterfEXT, glPointParameterfEXT, NULL, 620),
- NAME_FUNC_OFFSET(20172, glPointParameterfEXT, glPointParameterfEXT, NULL, 620),
- NAME_FUNC_OFFSET(20194, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 621),
- NAME_FUNC_OFFSET(20213, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 621),
- NAME_FUNC_OFFSET(20235, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 621),
- NAME_FUNC_OFFSET(20258, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 624),
- NAME_FUNC_OFFSET(20277, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 625),
- NAME_FUNC_OFFSET(20297, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 626),
- NAME_FUNC_OFFSET(20316, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 627),
- NAME_FUNC_OFFSET(20336, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 628),
- NAME_FUNC_OFFSET(20355, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 629),
- NAME_FUNC_OFFSET(20375, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 630),
- NAME_FUNC_OFFSET(20394, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 631),
- NAME_FUNC_OFFSET(20414, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 632),
- NAME_FUNC_OFFSET(20433, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 633),
- NAME_FUNC_OFFSET(20453, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 634),
- NAME_FUNC_OFFSET(20473, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 635),
- NAME_FUNC_OFFSET(20494, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 636),
- NAME_FUNC_OFFSET(20514, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 637),
- NAME_FUNC_OFFSET(20535, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 638),
- NAME_FUNC_OFFSET(20555, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 639),
- NAME_FUNC_OFFSET(20576, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 640),
- NAME_FUNC_OFFSET(20600, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 641),
- NAME_FUNC_OFFSET(20618, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 642),
- NAME_FUNC_OFFSET(20638, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 643),
- NAME_FUNC_OFFSET(20656, glFogCoorddEXT, glFogCoorddEXT, NULL, 644),
- NAME_FUNC_OFFSET(20668, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 645),
- NAME_FUNC_OFFSET(20681, glFogCoordfEXT, glFogCoordfEXT, NULL, 646),
- NAME_FUNC_OFFSET(20693, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 647),
- NAME_FUNC_OFFSET(20706, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 649),
- NAME_FUNC_OFFSET(20726, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 649),
- NAME_FUNC_OFFSET(20750, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 666),
- NAME_FUNC_OFFSET(20764, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 666),
- NAME_FUNC_OFFSET(20781, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 667),
- NAME_FUNC_OFFSET(20796, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 667),
- NAME_FUNC_OFFSET(20814, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 668),
- NAME_FUNC_OFFSET(20828, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 668),
- NAME_FUNC_OFFSET(20845, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 669),
- NAME_FUNC_OFFSET(20860, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 669),
- NAME_FUNC_OFFSET(20878, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 670),
- NAME_FUNC_OFFSET(20892, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 670),
- NAME_FUNC_OFFSET(20909, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 671),
- NAME_FUNC_OFFSET(20924, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 671),
- NAME_FUNC_OFFSET(20942, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 672),
- NAME_FUNC_OFFSET(20956, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 672),
- NAME_FUNC_OFFSET(20973, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 673),
- NAME_FUNC_OFFSET(20988, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 673),
- NAME_FUNC_OFFSET(21006, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 674),
- NAME_FUNC_OFFSET(21020, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 674),
- NAME_FUNC_OFFSET(21037, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 675),
- NAME_FUNC_OFFSET(21052, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 675),
- NAME_FUNC_OFFSET(21070, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 676),
- NAME_FUNC_OFFSET(21084, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 676),
- NAME_FUNC_OFFSET(21101, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 677),
- NAME_FUNC_OFFSET(21116, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 677),
- NAME_FUNC_OFFSET(21134, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 678),
- NAME_FUNC_OFFSET(21148, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 678),
- NAME_FUNC_OFFSET(21165, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 679),
- NAME_FUNC_OFFSET(21180, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 679),
- NAME_FUNC_OFFSET(21198, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 680),
- NAME_FUNC_OFFSET(21212, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 680),
- NAME_FUNC_OFFSET(21229, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 681),
- NAME_FUNC_OFFSET(21244, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 681),
- NAME_FUNC_OFFSET(21262, glBindProgramNV, glBindProgramNV, NULL, 700),
- NAME_FUNC_OFFSET(21279, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 701),
- NAME_FUNC_OFFSET(21299, glGenProgramsNV, glGenProgramsNV, NULL, 703),
- NAME_FUNC_OFFSET(21316, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 709),
- NAME_FUNC_OFFSET(21342, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 709),
- NAME_FUNC_OFFSET(21371, glIsProgramNV, glIsProgramNV, NULL, 713),
- NAME_FUNC_OFFSET(21386, glPointParameteriNV, glPointParameteriNV, NULL, 777),
- NAME_FUNC_OFFSET(21404, glPointParameterivNV, glPointParameterivNV, NULL, 778),
- NAME_FUNC_OFFSET(21423, gl_dispatch_stub_781, gl_dispatch_stub_781, NULL, 781),
- NAME_FUNC_OFFSET(21444, gl_dispatch_stub_783, gl_dispatch_stub_783, NULL, 783),
- NAME_FUNC_OFFSET(21460, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 790),
- NAME_FUNC_OFFSET(21484, gl_dispatch_stub_793, gl_dispatch_stub_793, NULL, 793),
- NAME_FUNC_OFFSET(21508, gl_dispatch_stub_793, gl_dispatch_stub_793, NULL, 793),
- NAME_FUNC_OFFSET(21535, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 794),
- NAME_FUNC_OFFSET(21553, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 795),
- NAME_FUNC_OFFSET(21572, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 796),
- NAME_FUNC_OFFSET(21597, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 797),
- NAME_FUNC_OFFSET(21618, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 798),
- NAME_FUNC_OFFSET(21640, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 799),
- NAME_FUNC_OFFSET(21666, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 800),
- NAME_FUNC_OFFSET(21689, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 801),
- NAME_FUNC_OFFSET(21712, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 802),
- NAME_FUNC_OFFSET(21735, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 803),
- NAME_FUNC_OFFSET(21753, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 804),
- NAME_FUNC_OFFSET(21772, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 805),
- NAME_FUNC_OFFSET(21789, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 806),
- NAME_FUNC_OFFSET(21827, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 807),
- NAME_FUNC_OFFSET(21856, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 808),
- NAME_FUNC_OFFSET(21872, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 809),
- NAME_FUNC_OFFSET(21889, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 810),
- NAME_FUNC_OFFSET(21911, gl_dispatch_stub_811, gl_dispatch_stub_811, NULL, 811),
- NAME_FUNC_OFFSET(21929, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 814),
- NAME_FUNC_OFFSET(21952, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 815),
- NAME_FUNC_OFFSET(21974, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 816),
- NAME_FUNC_OFFSET(21990, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 817),
- NAME_FUNC_OFFSET(22011, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 818),
- NAME_FUNC_OFFSET(22033, glUniform1uiEXT, glUniform1uiEXT, NULL, 819),
- NAME_FUNC_OFFSET(22046, glUniform1uivEXT, glUniform1uivEXT, NULL, 820),
- NAME_FUNC_OFFSET(22060, glUniform2uiEXT, glUniform2uiEXT, NULL, 821),
- NAME_FUNC_OFFSET(22073, glUniform2uivEXT, glUniform2uivEXT, NULL, 822),
- NAME_FUNC_OFFSET(22087, glUniform3uiEXT, glUniform3uiEXT, NULL, 823),
- NAME_FUNC_OFFSET(22100, glUniform3uivEXT, glUniform3uivEXT, NULL, 824),
- NAME_FUNC_OFFSET(22114, glUniform4uiEXT, glUniform4uiEXT, NULL, 825),
- NAME_FUNC_OFFSET(22127, glUniform4uivEXT, glUniform4uivEXT, NULL, 826),
- NAME_FUNC_OFFSET(22141, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 827),
- NAME_FUNC_OFFSET(22159, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 828),
- NAME_FUNC_OFFSET(22178, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 829),
- NAME_FUNC_OFFSET(22197, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 830),
- NAME_FUNC_OFFSET(22217, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 831),
- NAME_FUNC_OFFSET(22235, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 832),
- NAME_FUNC_OFFSET(22254, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 833),
- NAME_FUNC_OFFSET(22273, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 834),
- NAME_FUNC_OFFSET(22293, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 835),
- NAME_FUNC_OFFSET(22311, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 836),
- NAME_FUNC_OFFSET(22330, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 837),
- NAME_FUNC_OFFSET(22349, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 838),
- NAME_FUNC_OFFSET(22369, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 839),
- NAME_FUNC_OFFSET(22388, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 840),
- NAME_FUNC_OFFSET(22406, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 841),
- NAME_FUNC_OFFSET(22425, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 842),
- NAME_FUNC_OFFSET(22444, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 843),
- NAME_FUNC_OFFSET(22464, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 844),
- NAME_FUNC_OFFSET(22483, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 845),
- NAME_FUNC_OFFSET(22503, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 846),
- NAME_FUNC_OFFSET(22523, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 847),
- NAME_FUNC_OFFSET(22546, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 848),
- NAME_FUNC_OFFSET(22572, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 849),
- NAME_FUNC_OFFSET(22585, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 850),
- NAME_FUNC_OFFSET(22596, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 851),
- NAME_FUNC_OFFSET(22606, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 852),
- NAME_FUNC_OFFSET(22622, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 853),
- NAME_FUNC_OFFSET(22638, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 854),
- NAME_FUNC_OFFSET(22651, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 857),
- NAME_FUNC_OFFSET(22672, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 858),
- NAME_FUNC_OFFSET(22694, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 859),
- NAME_FUNC_OFFSET(22712, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 860),
- NAME_FUNC_OFFSET(22731, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 861),
- NAME_FUNC_OFFSET(22756, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 862),
- NAME_FUNC_OFFSET(22779, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 863),
- NAME_FUNC_OFFSET(22804, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 864),
- NAME_FUNC_OFFSET(22821, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 866),
- NAME_FUNC_OFFSET(22839, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 867),
- NAME_FUNC_OFFSET(22862, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 868),
- NAME_FUNC_OFFSET(22892, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 869),
- NAME_FUNC_OFFSET(22920, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 870),
+ NAME_FUNC_OFFSET(20014, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 572),
+ NAME_FUNC_OFFSET(20036, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
+ NAME_FUNC_OFFSET(20063, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
+ NAME_FUNC_OFFSET(20087, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 574),
+ NAME_FUNC_OFFSET(20123, gl_dispatch_stub_613, gl_dispatch_stub_613, NULL, 613),
+ NAME_FUNC_OFFSET(20139, gl_dispatch_stub_614, gl_dispatch_stub_614, NULL, 614),
+ NAME_FUNC_OFFSET(20158, glPointParameterfEXT, glPointParameterfEXT, NULL, 621),
+ NAME_FUNC_OFFSET(20176, glPointParameterfEXT, glPointParameterfEXT, NULL, 621),
+ NAME_FUNC_OFFSET(20197, glPointParameterfEXT, glPointParameterfEXT, NULL, 621),
+ NAME_FUNC_OFFSET(20219, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 622),
+ NAME_FUNC_OFFSET(20238, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 622),
+ NAME_FUNC_OFFSET(20260, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 622),
+ NAME_FUNC_OFFSET(20283, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 625),
+ NAME_FUNC_OFFSET(20302, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 626),
+ NAME_FUNC_OFFSET(20322, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 627),
+ NAME_FUNC_OFFSET(20341, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 628),
+ NAME_FUNC_OFFSET(20361, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 629),
+ NAME_FUNC_OFFSET(20380, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 630),
+ NAME_FUNC_OFFSET(20400, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 631),
+ NAME_FUNC_OFFSET(20419, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 632),
+ NAME_FUNC_OFFSET(20439, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 633),
+ NAME_FUNC_OFFSET(20458, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 634),
+ NAME_FUNC_OFFSET(20478, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 635),
+ NAME_FUNC_OFFSET(20498, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 636),
+ NAME_FUNC_OFFSET(20519, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 637),
+ NAME_FUNC_OFFSET(20539, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 638),
+ NAME_FUNC_OFFSET(20560, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 639),
+ NAME_FUNC_OFFSET(20580, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 640),
+ NAME_FUNC_OFFSET(20601, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 641),
+ NAME_FUNC_OFFSET(20625, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 642),
+ NAME_FUNC_OFFSET(20643, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 643),
+ NAME_FUNC_OFFSET(20663, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 644),
+ NAME_FUNC_OFFSET(20681, glFogCoorddEXT, glFogCoorddEXT, NULL, 645),
+ NAME_FUNC_OFFSET(20693, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 646),
+ NAME_FUNC_OFFSET(20706, glFogCoordfEXT, glFogCoordfEXT, NULL, 647),
+ NAME_FUNC_OFFSET(20718, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 648),
+ NAME_FUNC_OFFSET(20731, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 650),
+ NAME_FUNC_OFFSET(20751, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 650),
+ NAME_FUNC_OFFSET(20775, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 667),
+ NAME_FUNC_OFFSET(20789, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 667),
+ NAME_FUNC_OFFSET(20806, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 668),
+ NAME_FUNC_OFFSET(20821, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 668),
+ NAME_FUNC_OFFSET(20839, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 669),
+ NAME_FUNC_OFFSET(20853, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 669),
+ NAME_FUNC_OFFSET(20870, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 670),
+ NAME_FUNC_OFFSET(20885, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 670),
+ NAME_FUNC_OFFSET(20903, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 671),
+ NAME_FUNC_OFFSET(20917, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 671),
+ NAME_FUNC_OFFSET(20934, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 672),
+ NAME_FUNC_OFFSET(20949, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 672),
+ NAME_FUNC_OFFSET(20967, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 673),
+ NAME_FUNC_OFFSET(20981, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 673),
+ NAME_FUNC_OFFSET(20998, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 674),
+ NAME_FUNC_OFFSET(21013, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 674),
+ NAME_FUNC_OFFSET(21031, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 675),
+ NAME_FUNC_OFFSET(21045, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 675),
+ NAME_FUNC_OFFSET(21062, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 676),
+ NAME_FUNC_OFFSET(21077, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 676),
+ NAME_FUNC_OFFSET(21095, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 677),
+ NAME_FUNC_OFFSET(21109, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 677),
+ NAME_FUNC_OFFSET(21126, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 678),
+ NAME_FUNC_OFFSET(21141, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 678),
+ NAME_FUNC_OFFSET(21159, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 679),
+ NAME_FUNC_OFFSET(21173, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 679),
+ NAME_FUNC_OFFSET(21190, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 680),
+ NAME_FUNC_OFFSET(21205, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 680),
+ NAME_FUNC_OFFSET(21223, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 681),
+ NAME_FUNC_OFFSET(21237, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 681),
+ NAME_FUNC_OFFSET(21254, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 682),
+ NAME_FUNC_OFFSET(21269, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 682),
+ NAME_FUNC_OFFSET(21287, glBindProgramNV, glBindProgramNV, NULL, 701),
+ NAME_FUNC_OFFSET(21304, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 702),
+ NAME_FUNC_OFFSET(21324, glGenProgramsNV, glGenProgramsNV, NULL, 704),
+ NAME_FUNC_OFFSET(21341, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 710),
+ NAME_FUNC_OFFSET(21367, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 710),
+ NAME_FUNC_OFFSET(21396, glIsProgramNV, glIsProgramNV, NULL, 714),
+ NAME_FUNC_OFFSET(21411, glPointParameteriNV, glPointParameteriNV, NULL, 778),
+ NAME_FUNC_OFFSET(21429, glPointParameterivNV, glPointParameterivNV, NULL, 779),
+ NAME_FUNC_OFFSET(21448, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782),
+ NAME_FUNC_OFFSET(21469, gl_dispatch_stub_784, gl_dispatch_stub_784, NULL, 784),
+ NAME_FUNC_OFFSET(21485, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 791),
+ NAME_FUNC_OFFSET(21509, gl_dispatch_stub_794, gl_dispatch_stub_794, NULL, 794),
+ NAME_FUNC_OFFSET(21533, gl_dispatch_stub_794, gl_dispatch_stub_794, NULL, 794),
+ NAME_FUNC_OFFSET(21560, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 795),
+ NAME_FUNC_OFFSET(21578, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 796),
+ NAME_FUNC_OFFSET(21597, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 797),
+ NAME_FUNC_OFFSET(21622, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 798),
+ NAME_FUNC_OFFSET(21643, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 799),
+ NAME_FUNC_OFFSET(21665, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 800),
+ NAME_FUNC_OFFSET(21691, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 801),
+ NAME_FUNC_OFFSET(21714, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 802),
+ NAME_FUNC_OFFSET(21737, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 803),
+ NAME_FUNC_OFFSET(21760, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 804),
+ NAME_FUNC_OFFSET(21778, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 805),
+ NAME_FUNC_OFFSET(21797, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 806),
+ NAME_FUNC_OFFSET(21814, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 807),
+ NAME_FUNC_OFFSET(21852, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 808),
+ NAME_FUNC_OFFSET(21881, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 809),
+ NAME_FUNC_OFFSET(21897, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 810),
+ NAME_FUNC_OFFSET(21914, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 811),
+ NAME_FUNC_OFFSET(21936, gl_dispatch_stub_812, gl_dispatch_stub_812, NULL, 812),
+ NAME_FUNC_OFFSET(21954, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 815),
+ NAME_FUNC_OFFSET(21977, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 816),
+ NAME_FUNC_OFFSET(21999, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 817),
+ NAME_FUNC_OFFSET(22015, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 818),
+ NAME_FUNC_OFFSET(22036, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 819),
+ NAME_FUNC_OFFSET(22058, glUniform1uiEXT, glUniform1uiEXT, NULL, 820),
+ NAME_FUNC_OFFSET(22071, glUniform1uivEXT, glUniform1uivEXT, NULL, 821),
+ NAME_FUNC_OFFSET(22085, glUniform2uiEXT, glUniform2uiEXT, NULL, 822),
+ NAME_FUNC_OFFSET(22098, glUniform2uivEXT, glUniform2uivEXT, NULL, 823),
+ NAME_FUNC_OFFSET(22112, glUniform3uiEXT, glUniform3uiEXT, NULL, 824),
+ NAME_FUNC_OFFSET(22125, glUniform3uivEXT, glUniform3uivEXT, NULL, 825),
+ NAME_FUNC_OFFSET(22139, glUniform4uiEXT, glUniform4uiEXT, NULL, 826),
+ NAME_FUNC_OFFSET(22152, glUniform4uivEXT, glUniform4uivEXT, NULL, 827),
+ NAME_FUNC_OFFSET(22166, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 828),
+ NAME_FUNC_OFFSET(22184, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 829),
+ NAME_FUNC_OFFSET(22203, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 830),
+ NAME_FUNC_OFFSET(22222, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 831),
+ NAME_FUNC_OFFSET(22242, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 832),
+ NAME_FUNC_OFFSET(22260, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 833),
+ NAME_FUNC_OFFSET(22279, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 834),
+ NAME_FUNC_OFFSET(22298, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 835),
+ NAME_FUNC_OFFSET(22318, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 836),
+ NAME_FUNC_OFFSET(22336, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 837),
+ NAME_FUNC_OFFSET(22355, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 838),
+ NAME_FUNC_OFFSET(22374, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 839),
+ NAME_FUNC_OFFSET(22394, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 840),
+ NAME_FUNC_OFFSET(22413, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 841),
+ NAME_FUNC_OFFSET(22431, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 842),
+ NAME_FUNC_OFFSET(22450, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 843),
+ NAME_FUNC_OFFSET(22469, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 844),
+ NAME_FUNC_OFFSET(22489, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 845),
+ NAME_FUNC_OFFSET(22508, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 846),
+ NAME_FUNC_OFFSET(22528, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 847),
+ NAME_FUNC_OFFSET(22548, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 848),
+ NAME_FUNC_OFFSET(22571, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 849),
+ NAME_FUNC_OFFSET(22597, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 850),
+ NAME_FUNC_OFFSET(22610, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 851),
+ NAME_FUNC_OFFSET(22621, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 852),
+ NAME_FUNC_OFFSET(22631, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 853),
+ NAME_FUNC_OFFSET(22647, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 854),
+ NAME_FUNC_OFFSET(22663, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 855),
+ NAME_FUNC_OFFSET(22676, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 858),
+ NAME_FUNC_OFFSET(22697, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 859),
+ NAME_FUNC_OFFSET(22719, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 860),
+ NAME_FUNC_OFFSET(22737, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 861),
+ NAME_FUNC_OFFSET(22756, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 862),
+ NAME_FUNC_OFFSET(22781, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 863),
+ NAME_FUNC_OFFSET(22804, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 864),
+ NAME_FUNC_OFFSET(22829, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 865),
+ NAME_FUNC_OFFSET(22846, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 867),
+ NAME_FUNC_OFFSET(22864, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 868),
+ NAME_FUNC_OFFSET(22887, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 869),
+ NAME_FUNC_OFFSET(22917, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 870),
+ NAME_FUNC_OFFSET(22945, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 871),
NAME_FUNC_OFFSET(-1, NULL, NULL, NULL, 0)
};
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c
index 9ceee99dc02..c358fb246bc 100644
--- a/src/mesa/main/enums.c
+++ b/src/mesa/main/enums.c
@@ -2275,6 +2275,7 @@ LONGSTRING static const char enum_string_table[] =
"GL_VERTEX_ATTRIB_ARRAY9_NV\0"
"GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING\0"
"GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB\0"
+ "GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB\0"
"GL_VERTEX_ATTRIB_ARRAY_ENABLED\0"
"GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB\0"
"GL_VERTEX_ATTRIB_ARRAY_INTEGER\0"
@@ -2332,7 +2333,7 @@ LONGSTRING static const char enum_string_table[] =
"GL_ZOOM_Y\0"
;
-static const enum_elt all_enums[2294] =
+static const enum_elt all_enums[2295] =
{
{ 0, 0x00000600 }, /* GL_2D */
{ 6, 0x00001407 }, /* GL_2_BYTES */
@@ -4573,64 +4574,65 @@ static const enum_elt all_enums[2294] =
{ 49885, 0x00008659 }, /* GL_VERTEX_ATTRIB_ARRAY9_NV */
{ 49912, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */
{ 49950, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB */
- { 49992, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */
- { 50023, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB */
- { 50058, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */
- { 50089, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT */
- { 50124, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */
- { 50158, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB */
- { 50196, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */
- { 50227, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB */
- { 50262, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */
- { 50290, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB */
- { 50322, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */
- { 50352, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB */
- { 50386, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */
- { 50414, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB */
- { 50446, 0x000086A7 }, /* GL_VERTEX_BLEND_ARB */
- { 50466, 0x00008620 }, /* GL_VERTEX_PROGRAM_ARB */
- { 50488, 0x0000864A }, /* GL_VERTEX_PROGRAM_BINDING_NV */
- { 50517, 0x00008620 }, /* GL_VERTEX_PROGRAM_NV */
- { 50538, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE */
- { 50567, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_ARB */
- { 50600, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_NV */
- { 50632, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE */
- { 50659, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_ARB */
- { 50690, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_NV */
- { 50720, 0x00008B31 }, /* GL_VERTEX_SHADER */
- { 50737, 0x00008B31 }, /* GL_VERTEX_SHADER_ARB */
- { 50758, 0x00008621 }, /* GL_VERTEX_STATE_PROGRAM_NV */
- { 50785, 0x00000BA2 }, /* GL_VIEWPORT */
- { 50797, 0x00000800 }, /* GL_VIEWPORT_BIT */
- { 50813, 0x00008A1A }, /* GL_VOLATILE_APPLE */
- { 50831, 0x0000911D }, /* GL_WAIT_FAILED */
- { 50846, 0x000086AD }, /* GL_WEIGHT_ARRAY_ARB */
- { 50866, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */
- { 50897, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB */
- { 50932, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_OES */
- { 50967, 0x000086AD }, /* GL_WEIGHT_ARRAY_OES */
- { 50987, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_ARB */
- { 51015, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_OES */
- { 51043, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_ARB */
- { 51068, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_OES */
- { 51093, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_ARB */
- { 51120, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_OES */
- { 51147, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_ARB */
- { 51172, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_OES */
- { 51197, 0x000086A6 }, /* GL_WEIGHT_SUM_UNITY_ARB */
- { 51221, 0x000081D4 }, /* GL_WRAP_BORDER_SUN */
- { 51240, 0x000088B9 }, /* GL_WRITE_ONLY */
- { 51254, 0x000088B9 }, /* GL_WRITE_ONLY_ARB */
- { 51272, 0x000088B9 }, /* GL_WRITE_ONLY_OES */
- { 51290, 0x00001506 }, /* GL_XOR */
- { 51297, 0x000085B9 }, /* GL_YCBCR_422_APPLE */
- { 51316, 0x00008757 }, /* GL_YCBCR_MESA */
- { 51330, 0x00000000 }, /* GL_ZERO */
- { 51338, 0x00000D16 }, /* GL_ZOOM_X */
- { 51348, 0x00000D17 }, /* GL_ZOOM_Y */
+ { 49992, 0x000088FE }, /* GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB */
+ { 50027, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */
+ { 50058, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB */
+ { 50093, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */
+ { 50124, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT */
+ { 50159, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */
+ { 50193, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB */
+ { 50231, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */
+ { 50262, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB */
+ { 50297, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */
+ { 50325, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB */
+ { 50357, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */
+ { 50387, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB */
+ { 50421, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */
+ { 50449, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB */
+ { 50481, 0x000086A7 }, /* GL_VERTEX_BLEND_ARB */
+ { 50501, 0x00008620 }, /* GL_VERTEX_PROGRAM_ARB */
+ { 50523, 0x0000864A }, /* GL_VERTEX_PROGRAM_BINDING_NV */
+ { 50552, 0x00008620 }, /* GL_VERTEX_PROGRAM_NV */
+ { 50573, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE */
+ { 50602, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_ARB */
+ { 50635, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_NV */
+ { 50667, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE */
+ { 50694, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_ARB */
+ { 50725, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_NV */
+ { 50755, 0x00008B31 }, /* GL_VERTEX_SHADER */
+ { 50772, 0x00008B31 }, /* GL_VERTEX_SHADER_ARB */
+ { 50793, 0x00008621 }, /* GL_VERTEX_STATE_PROGRAM_NV */
+ { 50820, 0x00000BA2 }, /* GL_VIEWPORT */
+ { 50832, 0x00000800 }, /* GL_VIEWPORT_BIT */
+ { 50848, 0x00008A1A }, /* GL_VOLATILE_APPLE */
+ { 50866, 0x0000911D }, /* GL_WAIT_FAILED */
+ { 50881, 0x000086AD }, /* GL_WEIGHT_ARRAY_ARB */
+ { 50901, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */
+ { 50932, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB */
+ { 50967, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_OES */
+ { 51002, 0x000086AD }, /* GL_WEIGHT_ARRAY_OES */
+ { 51022, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_ARB */
+ { 51050, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_OES */
+ { 51078, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_ARB */
+ { 51103, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_OES */
+ { 51128, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_ARB */
+ { 51155, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_OES */
+ { 51182, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_ARB */
+ { 51207, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_OES */
+ { 51232, 0x000086A6 }, /* GL_WEIGHT_SUM_UNITY_ARB */
+ { 51256, 0x000081D4 }, /* GL_WRAP_BORDER_SUN */
+ { 51275, 0x000088B9 }, /* GL_WRITE_ONLY */
+ { 51289, 0x000088B9 }, /* GL_WRITE_ONLY_ARB */
+ { 51307, 0x000088B9 }, /* GL_WRITE_ONLY_OES */
+ { 51325, 0x00001506 }, /* GL_XOR */
+ { 51332, 0x000085B9 }, /* GL_YCBCR_422_APPLE */
+ { 51351, 0x00008757 }, /* GL_YCBCR_MESA */
+ { 51365, 0x00000000 }, /* GL_ZERO */
+ { 51373, 0x00000D16 }, /* GL_ZOOM_X */
+ { 51383, 0x00000D17 }, /* GL_ZOOM_Y */
};
-static const unsigned reduced_enums[1551] =
+static const unsigned reduced_enums[1552] =
{
535, /* GL_FALSE */
827, /* GL_LINES */
@@ -4776,7 +4778,7 @@ static const unsigned reduced_enums[1551] =
1856, /* GL_STENCIL_WRITEMASK */
1006, /* GL_MATRIX_MODE */
1222, /* GL_NORMALIZE */
- 2266, /* GL_VIEWPORT */
+ 2267, /* GL_VIEWPORT */
1195, /* GL_MODELVIEW_STACK_DEPTH */
1481, /* GL_PROJECTION_STACK_DEPTH */
2089, /* GL_TEXTURE_STACK_DEPTH */
@@ -4856,8 +4858,8 @@ static const unsigned reduced_enums[1551] =
741, /* GL_INDEX_OFFSET */
1550, /* GL_RED_SCALE */
1546, /* GL_RED_BIAS */
- 2292, /* GL_ZOOM_X */
- 2293, /* GL_ZOOM_Y */
+ 2293, /* GL_ZOOM_X */
+ 2294, /* GL_ZOOM_Y */
697, /* GL_GREEN_SCALE */
693, /* GL_GREEN_BIAS */
115, /* GL_BLUE_SCALE */
@@ -4960,7 +4962,7 @@ static const unsigned reduced_enums[1551] =
347, /* GL_COPY */
59, /* GL_AND_INVERTED */
1220, /* GL_NOOP */
- 2288, /* GL_XOR */
+ 2289, /* GL_XOR */
1287, /* GL_OR */
1221, /* GL_NOR */
526, /* GL_EQUIV */
@@ -5301,7 +5303,7 @@ static const unsigned reduced_enums[1551] =
354, /* GL_CULL_VERTEX_EXT */
356, /* GL_CULL_VERTEX_OBJECT_POSITION_EXT */
355, /* GL_CULL_VERTEX_EYE_POSITION_EXT */
- 2284, /* GL_WRAP_BORDER_SUN */
+ 2285, /* GL_WRAP_BORDER_SUN */
1991, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */
816, /* GL_LIGHT_MODEL_COLOR_CONTROL */
1758, /* GL_SINGLE_COLOR */
@@ -5481,7 +5483,7 @@ static const unsigned reduced_enums[1551] =
2213, /* GL_VERTEX_ARRAY_BINDING */
2080, /* GL_TEXTURE_RANGE_LENGTH_APPLE */
2081, /* GL_TEXTURE_RANGE_POINTER_APPLE */
- 2289, /* GL_YCBCR_422_APPLE */
+ 2290, /* GL_YCBCR_422_APPLE */
2202, /* GL_UNSIGNED_SHORT_8_8_APPLE */
2204, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */
2092, /* GL_TEXTURE_STORAGE_HINT_APPLE */
@@ -5491,12 +5493,12 @@ static const unsigned reduced_enums[1551] =
1760, /* GL_SLICE_ACCUM_SUN */
1510, /* GL_QUAD_MESH_SUN */
2139, /* GL_TRIANGLE_MESH_SUN */
- 2254, /* GL_VERTEX_PROGRAM_ARB */
- 2265, /* GL_VERTEX_STATE_PROGRAM_NV */
- 2239, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */
- 2247, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */
- 2249, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */
- 2251, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */
+ 2255, /* GL_VERTEX_PROGRAM_ARB */
+ 2266, /* GL_VERTEX_STATE_PROGRAM_NV */
+ 2240, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */
+ 2248, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */
+ 2250, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */
+ 2252, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */
383, /* GL_CURRENT_VERTEX_ATTRIB */
1455, /* GL_PROGRAM_LENGTH_ARB */
1471, /* GL_PROGRAM_STRING_ARB */
@@ -5518,14 +5520,14 @@ static const unsigned reduced_enums[1551] =
366, /* GL_CURRENT_MATRIX_STACK_DEPTH_ARB */
363, /* GL_CURRENT_MATRIX_ARB */
1468, /* GL_PROGRAM_POINT_SIZE */
- 2260, /* GL_VERTEX_PROGRAM_TWO_SIDE */
+ 2261, /* GL_VERTEX_PROGRAM_TWO_SIDE */
1467, /* GL_PROGRAM_PARAMETER_NV */
- 2245, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */
+ 2246, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */
1473, /* GL_PROGRAM_TARGET_NV */
1470, /* GL_PROGRAM_RESIDENT_NV */
2102, /* GL_TRACK_MATRIX_NV */
2103, /* GL_TRACK_MATRIX_TRANSFORM_NV */
- 2255, /* GL_VERTEX_PROGRAM_BINDING_NV */
+ 2256, /* GL_VERTEX_PROGRAM_BINDING_NV */
1449, /* GL_PROGRAM_ERROR_POSITION_ARB */
408, /* GL_DEPTH_CLAMP */
2221, /* GL_VERTEX_ATTRIB_ARRAY0_NV */
@@ -5582,14 +5584,14 @@ static const unsigned reduced_enums[1551] =
311, /* GL_COMPRESSED_TEXTURE_FORMATS */
1134, /* GL_MAX_VERTEX_UNITS_ARB */
23, /* GL_ACTIVE_VERTEX_UNITS_ARB */
- 2283, /* GL_WEIGHT_SUM_UNITY_ARB */
- 2253, /* GL_VERTEX_BLEND_ARB */
+ 2284, /* GL_WEIGHT_SUM_UNITY_ARB */
+ 2254, /* GL_VERTEX_BLEND_ARB */
385, /* GL_CURRENT_WEIGHT_ARB */
- 2281, /* GL_WEIGHT_ARRAY_TYPE_ARB */
- 2279, /* GL_WEIGHT_ARRAY_STRIDE_ARB */
- 2277, /* GL_WEIGHT_ARRAY_SIZE_ARB */
- 2275, /* GL_WEIGHT_ARRAY_POINTER_ARB */
- 2270, /* GL_WEIGHT_ARRAY_ARB */
+ 2282, /* GL_WEIGHT_ARRAY_TYPE_ARB */
+ 2280, /* GL_WEIGHT_ARRAY_STRIDE_ARB */
+ 2278, /* GL_WEIGHT_ARRAY_SIZE_ARB */
+ 2276, /* GL_WEIGHT_ARRAY_POINTER_ARB */
+ 2271, /* GL_WEIGHT_ARRAY_ARB */
442, /* GL_DOT3_RGB */
443, /* GL_DOT3_RGBA */
305, /* GL_COMPRESSED_RGB_FXT1_3DFX */
@@ -5634,7 +5636,7 @@ static const unsigned reduced_enums[1551] =
1197, /* GL_MODULATE_ADD_ATI */
1198, /* GL_MODULATE_SIGNED_ADD_ATI */
1199, /* GL_MODULATE_SUBTRACT_ATI */
- 2290, /* GL_YCBCR_MESA */
+ 2291, /* GL_YCBCR_MESA */
1294, /* GL_PACK_INVERT_MESA */
388, /* GL_DEBUG_OBJECT_MESA */
389, /* GL_DEBUG_PRINT_MESA */
@@ -5713,7 +5715,7 @@ static const unsigned reduced_enums[1551] =
1520, /* GL_QUERY_RESULT */
1522, /* GL_QUERY_RESULT_AVAILABLE */
1126, /* GL_MAX_VERTEX_ATTRIBS */
- 2243, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */
+ 2244, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */
433, /* GL_DEPTH_STENCIL_TO_RGBA_NV */
432, /* GL_DEPTH_STENCIL_TO_BGRA_NV */
1103, /* GL_MAX_TEXTURE_COORDS */
@@ -5736,7 +5738,7 @@ static const unsigned reduced_enums[1551] =
516, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING */
1730, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */
573, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING */
- 2271, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */
+ 2272, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */
2237, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */
1454, /* GL_PROGRAM_INSTRUCTIONS_ARB */
1070, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */
@@ -5763,7 +5765,7 @@ static const unsigned reduced_enums[1551] =
1477, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */
2127, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */
1539, /* GL_READ_ONLY */
- 2285, /* GL_WRITE_ONLY */
+ 2286, /* GL_WRITE_ONLY */
1541, /* GL_READ_WRITE */
124, /* GL_BUFFER_ACCESS */
129, /* GL_BUFFER_MAPPED */
@@ -5821,7 +5823,8 @@ static const unsigned reduced_enums[1551] =
1069, /* GL_MAX_PROGRAM_IF_DEPTH_NV */
1073, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */
1072, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */
- 2241, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */
+ 2242, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */
+ 2239, /* GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB */
1012, /* GL_MAX_ARRAY_TEXTURE_LAYERS */
1149, /* GL_MIN_PROGRAM_TEXEL_OFFSET */
1086, /* GL_MAX_PROGRAM_TEXEL_OFFSET */
@@ -5843,12 +5846,12 @@ static const unsigned reduced_enums[1551] =
138, /* GL_BUFFER_SERIALIZED_MODIFY_APPLE */
128, /* GL_BUFFER_FLUSHING_UNMAP_APPLE */
1556, /* GL_RELEASED_APPLE */
- 2268, /* GL_VOLATILE_APPLE */
+ 2269, /* GL_VOLATILE_APPLE */
1595, /* GL_RETAINED_APPLE */
2144, /* GL_UNDEFINED_APPLE */
1504, /* GL_PURGEABLE_APPLE */
596, /* GL_FRAGMENT_SHADER */
- 2263, /* GL_VERTEX_SHADER */
+ 2264, /* GL_VERTEX_SHADER */
1465, /* GL_PROGRAM_OBJECT_ARB */
1747, /* GL_SHADER_OBJECT_ARB */
1041, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */
@@ -6166,7 +6169,7 @@ static const unsigned reduced_enums[1551] =
54, /* GL_ALREADY_SIGNALED */
2100, /* GL_TIMEOUT_EXPIRED */
312, /* GL_CONDITION_SATISFIED */
- 2269, /* GL_WAIT_FAILED */
+ 2270, /* GL_WAIT_FAILED */
126, /* GL_BUFFER_ACCESS_FLAGS */
132, /* GL_BUFFER_MAP_LENGTH */
133, /* GL_BUFFER_MAP_OFFSET */
diff --git a/src/mesa/main/glapidispatch.h b/src/mesa/main/glapidispatch.h
index 29823d06fe4..15920cf4f7b 100644
--- a/src/mesa/main/glapidispatch.h
+++ b/src/mesa/main/glapidispatch.h
@@ -59,7 +59,7 @@
} while(0)
/* total number of offsets below */
-#define _gloffset_COUNT 886
+#define _gloffset_COUNT 887
#define _gloffset_NewList 0
#define _gloffset_EndList 1
@@ -642,318 +642,319 @@
#define _gloffset_FramebufferTextureARB 575
#define _gloffset_FramebufferTextureFaceARB 576
#define _gloffset_ProgramParameteriARB 577
-#define _gloffset_FlushMappedBufferRange 578
-#define _gloffset_MapBufferRange 579
-#define _gloffset_BindVertexArray 580
-#define _gloffset_GenVertexArrays 581
-#define _gloffset_CopyBufferSubData 582
-#define _gloffset_ClientWaitSync 583
-#define _gloffset_DeleteSync 584
-#define _gloffset_FenceSync 585
-#define _gloffset_GetInteger64v 586
-#define _gloffset_GetSynciv 587
-#define _gloffset_IsSync 588
-#define _gloffset_WaitSync 589
-#define _gloffset_DrawElementsBaseVertex 590
-#define _gloffset_DrawRangeElementsBaseVertex 591
-#define _gloffset_MultiDrawElementsBaseVertex 592
-#define _gloffset_BindTransformFeedback 593
-#define _gloffset_DeleteTransformFeedbacks 594
-#define _gloffset_DrawTransformFeedback 595
-#define _gloffset_GenTransformFeedbacks 596
-#define _gloffset_IsTransformFeedback 597
-#define _gloffset_PauseTransformFeedback 598
-#define _gloffset_ResumeTransformFeedback 599
-#define _gloffset_ClearDepthf 600
-#define _gloffset_DepthRangef 601
-#define _gloffset_GetShaderPrecisionFormat 602
-#define _gloffset_ReleaseShaderCompiler 603
-#define _gloffset_ShaderBinary 604
-#define _gloffset_PolygonOffsetEXT 605
-#define _gloffset_GetPixelTexGenParameterfvSGIS 606
-#define _gloffset_GetPixelTexGenParameterivSGIS 607
-#define _gloffset_PixelTexGenParameterfSGIS 608
-#define _gloffset_PixelTexGenParameterfvSGIS 609
-#define _gloffset_PixelTexGenParameteriSGIS 610
-#define _gloffset_PixelTexGenParameterivSGIS 611
-#define _gloffset_SampleMaskSGIS 612
-#define _gloffset_SamplePatternSGIS 613
-#define _gloffset_ColorPointerEXT 614
-#define _gloffset_EdgeFlagPointerEXT 615
-#define _gloffset_IndexPointerEXT 616
-#define _gloffset_NormalPointerEXT 617
-#define _gloffset_TexCoordPointerEXT 618
-#define _gloffset_VertexPointerEXT 619
-#define _gloffset_PointParameterfEXT 620
-#define _gloffset_PointParameterfvEXT 621
-#define _gloffset_LockArraysEXT 622
-#define _gloffset_UnlockArraysEXT 623
-#define _gloffset_SecondaryColor3bEXT 624
-#define _gloffset_SecondaryColor3bvEXT 625
-#define _gloffset_SecondaryColor3dEXT 626
-#define _gloffset_SecondaryColor3dvEXT 627
-#define _gloffset_SecondaryColor3fEXT 628
-#define _gloffset_SecondaryColor3fvEXT 629
-#define _gloffset_SecondaryColor3iEXT 630
-#define _gloffset_SecondaryColor3ivEXT 631
-#define _gloffset_SecondaryColor3sEXT 632
-#define _gloffset_SecondaryColor3svEXT 633
-#define _gloffset_SecondaryColor3ubEXT 634
-#define _gloffset_SecondaryColor3ubvEXT 635
-#define _gloffset_SecondaryColor3uiEXT 636
-#define _gloffset_SecondaryColor3uivEXT 637
-#define _gloffset_SecondaryColor3usEXT 638
-#define _gloffset_SecondaryColor3usvEXT 639
-#define _gloffset_SecondaryColorPointerEXT 640
-#define _gloffset_MultiDrawArraysEXT 641
-#define _gloffset_MultiDrawElementsEXT 642
-#define _gloffset_FogCoordPointerEXT 643
-#define _gloffset_FogCoorddEXT 644
-#define _gloffset_FogCoorddvEXT 645
-#define _gloffset_FogCoordfEXT 646
-#define _gloffset_FogCoordfvEXT 647
-#define _gloffset_PixelTexGenSGIX 648
-#define _gloffset_BlendFuncSeparateEXT 649
-#define _gloffset_FlushVertexArrayRangeNV 650
-#define _gloffset_VertexArrayRangeNV 651
-#define _gloffset_CombinerInputNV 652
-#define _gloffset_CombinerOutputNV 653
-#define _gloffset_CombinerParameterfNV 654
-#define _gloffset_CombinerParameterfvNV 655
-#define _gloffset_CombinerParameteriNV 656
-#define _gloffset_CombinerParameterivNV 657
-#define _gloffset_FinalCombinerInputNV 658
-#define _gloffset_GetCombinerInputParameterfvNV 659
-#define _gloffset_GetCombinerInputParameterivNV 660
-#define _gloffset_GetCombinerOutputParameterfvNV 661
-#define _gloffset_GetCombinerOutputParameterivNV 662
-#define _gloffset_GetFinalCombinerInputParameterfvNV 663
-#define _gloffset_GetFinalCombinerInputParameterivNV 664
-#define _gloffset_ResizeBuffersMESA 665
-#define _gloffset_WindowPos2dMESA 666
-#define _gloffset_WindowPos2dvMESA 667
-#define _gloffset_WindowPos2fMESA 668
-#define _gloffset_WindowPos2fvMESA 669
-#define _gloffset_WindowPos2iMESA 670
-#define _gloffset_WindowPos2ivMESA 671
-#define _gloffset_WindowPos2sMESA 672
-#define _gloffset_WindowPos2svMESA 673
-#define _gloffset_WindowPos3dMESA 674
-#define _gloffset_WindowPos3dvMESA 675
-#define _gloffset_WindowPos3fMESA 676
-#define _gloffset_WindowPos3fvMESA 677
-#define _gloffset_WindowPos3iMESA 678
-#define _gloffset_WindowPos3ivMESA 679
-#define _gloffset_WindowPos3sMESA 680
-#define _gloffset_WindowPos3svMESA 681
-#define _gloffset_WindowPos4dMESA 682
-#define _gloffset_WindowPos4dvMESA 683
-#define _gloffset_WindowPos4fMESA 684
-#define _gloffset_WindowPos4fvMESA 685
-#define _gloffset_WindowPos4iMESA 686
-#define _gloffset_WindowPos4ivMESA 687
-#define _gloffset_WindowPos4sMESA 688
-#define _gloffset_WindowPos4svMESA 689
-#define _gloffset_MultiModeDrawArraysIBM 690
-#define _gloffset_MultiModeDrawElementsIBM 691
-#define _gloffset_DeleteFencesNV 692
-#define _gloffset_FinishFenceNV 693
-#define _gloffset_GenFencesNV 694
-#define _gloffset_GetFenceivNV 695
-#define _gloffset_IsFenceNV 696
-#define _gloffset_SetFenceNV 697
-#define _gloffset_TestFenceNV 698
-#define _gloffset_AreProgramsResidentNV 699
-#define _gloffset_BindProgramNV 700
-#define _gloffset_DeleteProgramsNV 701
-#define _gloffset_ExecuteProgramNV 702
-#define _gloffset_GenProgramsNV 703
-#define _gloffset_GetProgramParameterdvNV 704
-#define _gloffset_GetProgramParameterfvNV 705
-#define _gloffset_GetProgramStringNV 706
-#define _gloffset_GetProgramivNV 707
-#define _gloffset_GetTrackMatrixivNV 708
-#define _gloffset_GetVertexAttribPointervNV 709
-#define _gloffset_GetVertexAttribdvNV 710
-#define _gloffset_GetVertexAttribfvNV 711
-#define _gloffset_GetVertexAttribivNV 712
-#define _gloffset_IsProgramNV 713
-#define _gloffset_LoadProgramNV 714
-#define _gloffset_ProgramParameters4dvNV 715
-#define _gloffset_ProgramParameters4fvNV 716
-#define _gloffset_RequestResidentProgramsNV 717
-#define _gloffset_TrackMatrixNV 718
-#define _gloffset_VertexAttrib1dNV 719
-#define _gloffset_VertexAttrib1dvNV 720
-#define _gloffset_VertexAttrib1fNV 721
-#define _gloffset_VertexAttrib1fvNV 722
-#define _gloffset_VertexAttrib1sNV 723
-#define _gloffset_VertexAttrib1svNV 724
-#define _gloffset_VertexAttrib2dNV 725
-#define _gloffset_VertexAttrib2dvNV 726
-#define _gloffset_VertexAttrib2fNV 727
-#define _gloffset_VertexAttrib2fvNV 728
-#define _gloffset_VertexAttrib2sNV 729
-#define _gloffset_VertexAttrib2svNV 730
-#define _gloffset_VertexAttrib3dNV 731
-#define _gloffset_VertexAttrib3dvNV 732
-#define _gloffset_VertexAttrib3fNV 733
-#define _gloffset_VertexAttrib3fvNV 734
-#define _gloffset_VertexAttrib3sNV 735
-#define _gloffset_VertexAttrib3svNV 736
-#define _gloffset_VertexAttrib4dNV 737
-#define _gloffset_VertexAttrib4dvNV 738
-#define _gloffset_VertexAttrib4fNV 739
-#define _gloffset_VertexAttrib4fvNV 740
-#define _gloffset_VertexAttrib4sNV 741
-#define _gloffset_VertexAttrib4svNV 742
-#define _gloffset_VertexAttrib4ubNV 743
-#define _gloffset_VertexAttrib4ubvNV 744
-#define _gloffset_VertexAttribPointerNV 745
-#define _gloffset_VertexAttribs1dvNV 746
-#define _gloffset_VertexAttribs1fvNV 747
-#define _gloffset_VertexAttribs1svNV 748
-#define _gloffset_VertexAttribs2dvNV 749
-#define _gloffset_VertexAttribs2fvNV 750
-#define _gloffset_VertexAttribs2svNV 751
-#define _gloffset_VertexAttribs3dvNV 752
-#define _gloffset_VertexAttribs3fvNV 753
-#define _gloffset_VertexAttribs3svNV 754
-#define _gloffset_VertexAttribs4dvNV 755
-#define _gloffset_VertexAttribs4fvNV 756
-#define _gloffset_VertexAttribs4svNV 757
-#define _gloffset_VertexAttribs4ubvNV 758
-#define _gloffset_GetTexBumpParameterfvATI 759
-#define _gloffset_GetTexBumpParameterivATI 760
-#define _gloffset_TexBumpParameterfvATI 761
-#define _gloffset_TexBumpParameterivATI 762
-#define _gloffset_AlphaFragmentOp1ATI 763
-#define _gloffset_AlphaFragmentOp2ATI 764
-#define _gloffset_AlphaFragmentOp3ATI 765
-#define _gloffset_BeginFragmentShaderATI 766
-#define _gloffset_BindFragmentShaderATI 767
-#define _gloffset_ColorFragmentOp1ATI 768
-#define _gloffset_ColorFragmentOp2ATI 769
-#define _gloffset_ColorFragmentOp3ATI 770
-#define _gloffset_DeleteFragmentShaderATI 771
-#define _gloffset_EndFragmentShaderATI 772
-#define _gloffset_GenFragmentShadersATI 773
-#define _gloffset_PassTexCoordATI 774
-#define _gloffset_SampleMapATI 775
-#define _gloffset_SetFragmentShaderConstantATI 776
-#define _gloffset_PointParameteriNV 777
-#define _gloffset_PointParameterivNV 778
-#define _gloffset_ActiveStencilFaceEXT 779
-#define _gloffset_BindVertexArrayAPPLE 780
-#define _gloffset_DeleteVertexArraysAPPLE 781
-#define _gloffset_GenVertexArraysAPPLE 782
-#define _gloffset_IsVertexArrayAPPLE 783
-#define _gloffset_GetProgramNamedParameterdvNV 784
-#define _gloffset_GetProgramNamedParameterfvNV 785
-#define _gloffset_ProgramNamedParameter4dNV 786
-#define _gloffset_ProgramNamedParameter4dvNV 787
-#define _gloffset_ProgramNamedParameter4fNV 788
-#define _gloffset_ProgramNamedParameter4fvNV 789
-#define _gloffset_PrimitiveRestartIndexNV 790
-#define _gloffset_PrimitiveRestartNV 791
-#define _gloffset_DepthBoundsEXT 792
-#define _gloffset_BlendEquationSeparateEXT 793
-#define _gloffset_BindFramebufferEXT 794
-#define _gloffset_BindRenderbufferEXT 795
-#define _gloffset_CheckFramebufferStatusEXT 796
-#define _gloffset_DeleteFramebuffersEXT 797
-#define _gloffset_DeleteRenderbuffersEXT 798
-#define _gloffset_FramebufferRenderbufferEXT 799
-#define _gloffset_FramebufferTexture1DEXT 800
-#define _gloffset_FramebufferTexture2DEXT 801
-#define _gloffset_FramebufferTexture3DEXT 802
-#define _gloffset_GenFramebuffersEXT 803
-#define _gloffset_GenRenderbuffersEXT 804
-#define _gloffset_GenerateMipmapEXT 805
-#define _gloffset_GetFramebufferAttachmentParameterivEXT 806
-#define _gloffset_GetRenderbufferParameterivEXT 807
-#define _gloffset_IsFramebufferEXT 808
-#define _gloffset_IsRenderbufferEXT 809
-#define _gloffset_RenderbufferStorageEXT 810
-#define _gloffset_BlitFramebufferEXT 811
-#define _gloffset_BufferParameteriAPPLE 812
-#define _gloffset_FlushMappedBufferRangeAPPLE 813
-#define _gloffset_BindFragDataLocationEXT 814
-#define _gloffset_GetFragDataLocationEXT 815
-#define _gloffset_GetUniformuivEXT 816
-#define _gloffset_GetVertexAttribIivEXT 817
-#define _gloffset_GetVertexAttribIuivEXT 818
-#define _gloffset_Uniform1uiEXT 819
-#define _gloffset_Uniform1uivEXT 820
-#define _gloffset_Uniform2uiEXT 821
-#define _gloffset_Uniform2uivEXT 822
-#define _gloffset_Uniform3uiEXT 823
-#define _gloffset_Uniform3uivEXT 824
-#define _gloffset_Uniform4uiEXT 825
-#define _gloffset_Uniform4uivEXT 826
-#define _gloffset_VertexAttribI1iEXT 827
-#define _gloffset_VertexAttribI1ivEXT 828
-#define _gloffset_VertexAttribI1uiEXT 829
-#define _gloffset_VertexAttribI1uivEXT 830
-#define _gloffset_VertexAttribI2iEXT 831
-#define _gloffset_VertexAttribI2ivEXT 832
-#define _gloffset_VertexAttribI2uiEXT 833
-#define _gloffset_VertexAttribI2uivEXT 834
-#define _gloffset_VertexAttribI3iEXT 835
-#define _gloffset_VertexAttribI3ivEXT 836
-#define _gloffset_VertexAttribI3uiEXT 837
-#define _gloffset_VertexAttribI3uivEXT 838
-#define _gloffset_VertexAttribI4bvEXT 839
-#define _gloffset_VertexAttribI4iEXT 840
-#define _gloffset_VertexAttribI4ivEXT 841
-#define _gloffset_VertexAttribI4svEXT 842
-#define _gloffset_VertexAttribI4ubvEXT 843
-#define _gloffset_VertexAttribI4uiEXT 844
-#define _gloffset_VertexAttribI4uivEXT 845
-#define _gloffset_VertexAttribI4usvEXT 846
-#define _gloffset_VertexAttribIPointerEXT 847
-#define _gloffset_FramebufferTextureLayerEXT 848
-#define _gloffset_ColorMaskIndexedEXT 849
-#define _gloffset_DisableIndexedEXT 850
-#define _gloffset_EnableIndexedEXT 851
-#define _gloffset_GetBooleanIndexedvEXT 852
-#define _gloffset_GetIntegerIndexedvEXT 853
-#define _gloffset_IsEnabledIndexedEXT 854
-#define _gloffset_ClearColorIiEXT 855
-#define _gloffset_ClearColorIuiEXT 856
-#define _gloffset_GetTexParameterIivEXT 857
-#define _gloffset_GetTexParameterIuivEXT 858
-#define _gloffset_TexParameterIivEXT 859
-#define _gloffset_TexParameterIuivEXT 860
-#define _gloffset_BeginConditionalRenderNV 861
-#define _gloffset_EndConditionalRenderNV 862
-#define _gloffset_BeginTransformFeedbackEXT 863
-#define _gloffset_BindBufferBaseEXT 864
-#define _gloffset_BindBufferOffsetEXT 865
-#define _gloffset_BindBufferRangeEXT 866
-#define _gloffset_EndTransformFeedbackEXT 867
-#define _gloffset_GetTransformFeedbackVaryingEXT 868
-#define _gloffset_TransformFeedbackVaryingsEXT 869
-#define _gloffset_ProvokingVertexEXT 870
-#define _gloffset_GetTexParameterPointervAPPLE 871
-#define _gloffset_TextureRangeAPPLE 872
-#define _gloffset_GetObjectParameterivAPPLE 873
-#define _gloffset_ObjectPurgeableAPPLE 874
-#define _gloffset_ObjectUnpurgeableAPPLE 875
-#define _gloffset_ActiveProgramEXT 876
-#define _gloffset_CreateShaderProgramEXT 877
-#define _gloffset_UseShaderProgramEXT 878
-#define _gloffset_StencilFuncSeparateATI 879
-#define _gloffset_ProgramEnvParameters4fvEXT 880
-#define _gloffset_ProgramLocalParameters4fvEXT 881
-#define _gloffset_GetQueryObjecti64vEXT 882
-#define _gloffset_GetQueryObjectui64vEXT 883
-#define _gloffset_EGLImageTargetRenderbufferStorageOES 884
-#define _gloffset_EGLImageTargetTexture2DOES 885
+#define _gloffset_VertexAttribDivisorARB 578
+#define _gloffset_FlushMappedBufferRange 579
+#define _gloffset_MapBufferRange 580
+#define _gloffset_BindVertexArray 581
+#define _gloffset_GenVertexArrays 582
+#define _gloffset_CopyBufferSubData 583
+#define _gloffset_ClientWaitSync 584
+#define _gloffset_DeleteSync 585
+#define _gloffset_FenceSync 586
+#define _gloffset_GetInteger64v 587
+#define _gloffset_GetSynciv 588
+#define _gloffset_IsSync 589
+#define _gloffset_WaitSync 590
+#define _gloffset_DrawElementsBaseVertex 591
+#define _gloffset_DrawRangeElementsBaseVertex 592
+#define _gloffset_MultiDrawElementsBaseVertex 593
+#define _gloffset_BindTransformFeedback 594
+#define _gloffset_DeleteTransformFeedbacks 595
+#define _gloffset_DrawTransformFeedback 596
+#define _gloffset_GenTransformFeedbacks 597
+#define _gloffset_IsTransformFeedback 598
+#define _gloffset_PauseTransformFeedback 599
+#define _gloffset_ResumeTransformFeedback 600
+#define _gloffset_ClearDepthf 601
+#define _gloffset_DepthRangef 602
+#define _gloffset_GetShaderPrecisionFormat 603
+#define _gloffset_ReleaseShaderCompiler 604
+#define _gloffset_ShaderBinary 605
+#define _gloffset_PolygonOffsetEXT 606
+#define _gloffset_GetPixelTexGenParameterfvSGIS 607
+#define _gloffset_GetPixelTexGenParameterivSGIS 608
+#define _gloffset_PixelTexGenParameterfSGIS 609
+#define _gloffset_PixelTexGenParameterfvSGIS 610
+#define _gloffset_PixelTexGenParameteriSGIS 611
+#define _gloffset_PixelTexGenParameterivSGIS 612
+#define _gloffset_SampleMaskSGIS 613
+#define _gloffset_SamplePatternSGIS 614
+#define _gloffset_ColorPointerEXT 615
+#define _gloffset_EdgeFlagPointerEXT 616
+#define _gloffset_IndexPointerEXT 617
+#define _gloffset_NormalPointerEXT 618
+#define _gloffset_TexCoordPointerEXT 619
+#define _gloffset_VertexPointerEXT 620
+#define _gloffset_PointParameterfEXT 621
+#define _gloffset_PointParameterfvEXT 622
+#define _gloffset_LockArraysEXT 623
+#define _gloffset_UnlockArraysEXT 624
+#define _gloffset_SecondaryColor3bEXT 625
+#define _gloffset_SecondaryColor3bvEXT 626
+#define _gloffset_SecondaryColor3dEXT 627
+#define _gloffset_SecondaryColor3dvEXT 628
+#define _gloffset_SecondaryColor3fEXT 629
+#define _gloffset_SecondaryColor3fvEXT 630
+#define _gloffset_SecondaryColor3iEXT 631
+#define _gloffset_SecondaryColor3ivEXT 632
+#define _gloffset_SecondaryColor3sEXT 633
+#define _gloffset_SecondaryColor3svEXT 634
+#define _gloffset_SecondaryColor3ubEXT 635
+#define _gloffset_SecondaryColor3ubvEXT 636
+#define _gloffset_SecondaryColor3uiEXT 637
+#define _gloffset_SecondaryColor3uivEXT 638
+#define _gloffset_SecondaryColor3usEXT 639
+#define _gloffset_SecondaryColor3usvEXT 640
+#define _gloffset_SecondaryColorPointerEXT 641
+#define _gloffset_MultiDrawArraysEXT 642
+#define _gloffset_MultiDrawElementsEXT 643
+#define _gloffset_FogCoordPointerEXT 644
+#define _gloffset_FogCoorddEXT 645
+#define _gloffset_FogCoorddvEXT 646
+#define _gloffset_FogCoordfEXT 647
+#define _gloffset_FogCoordfvEXT 648
+#define _gloffset_PixelTexGenSGIX 649
+#define _gloffset_BlendFuncSeparateEXT 650
+#define _gloffset_FlushVertexArrayRangeNV 651
+#define _gloffset_VertexArrayRangeNV 652
+#define _gloffset_CombinerInputNV 653
+#define _gloffset_CombinerOutputNV 654
+#define _gloffset_CombinerParameterfNV 655
+#define _gloffset_CombinerParameterfvNV 656
+#define _gloffset_CombinerParameteriNV 657
+#define _gloffset_CombinerParameterivNV 658
+#define _gloffset_FinalCombinerInputNV 659
+#define _gloffset_GetCombinerInputParameterfvNV 660
+#define _gloffset_GetCombinerInputParameterivNV 661
+#define _gloffset_GetCombinerOutputParameterfvNV 662
+#define _gloffset_GetCombinerOutputParameterivNV 663
+#define _gloffset_GetFinalCombinerInputParameterfvNV 664
+#define _gloffset_GetFinalCombinerInputParameterivNV 665
+#define _gloffset_ResizeBuffersMESA 666
+#define _gloffset_WindowPos2dMESA 667
+#define _gloffset_WindowPos2dvMESA 668
+#define _gloffset_WindowPos2fMESA 669
+#define _gloffset_WindowPos2fvMESA 670
+#define _gloffset_WindowPos2iMESA 671
+#define _gloffset_WindowPos2ivMESA 672
+#define _gloffset_WindowPos2sMESA 673
+#define _gloffset_WindowPos2svMESA 674
+#define _gloffset_WindowPos3dMESA 675
+#define _gloffset_WindowPos3dvMESA 676
+#define _gloffset_WindowPos3fMESA 677
+#define _gloffset_WindowPos3fvMESA 678
+#define _gloffset_WindowPos3iMESA 679
+#define _gloffset_WindowPos3ivMESA 680
+#define _gloffset_WindowPos3sMESA 681
+#define _gloffset_WindowPos3svMESA 682
+#define _gloffset_WindowPos4dMESA 683
+#define _gloffset_WindowPos4dvMESA 684
+#define _gloffset_WindowPos4fMESA 685
+#define _gloffset_WindowPos4fvMESA 686
+#define _gloffset_WindowPos4iMESA 687
+#define _gloffset_WindowPos4ivMESA 688
+#define _gloffset_WindowPos4sMESA 689
+#define _gloffset_WindowPos4svMESA 690
+#define _gloffset_MultiModeDrawArraysIBM 691
+#define _gloffset_MultiModeDrawElementsIBM 692
+#define _gloffset_DeleteFencesNV 693
+#define _gloffset_FinishFenceNV 694
+#define _gloffset_GenFencesNV 695
+#define _gloffset_GetFenceivNV 696
+#define _gloffset_IsFenceNV 697
+#define _gloffset_SetFenceNV 698
+#define _gloffset_TestFenceNV 699
+#define _gloffset_AreProgramsResidentNV 700
+#define _gloffset_BindProgramNV 701
+#define _gloffset_DeleteProgramsNV 702
+#define _gloffset_ExecuteProgramNV 703
+#define _gloffset_GenProgramsNV 704
+#define _gloffset_GetProgramParameterdvNV 705
+#define _gloffset_GetProgramParameterfvNV 706
+#define _gloffset_GetProgramStringNV 707
+#define _gloffset_GetProgramivNV 708
+#define _gloffset_GetTrackMatrixivNV 709
+#define _gloffset_GetVertexAttribPointervNV 710
+#define _gloffset_GetVertexAttribdvNV 711
+#define _gloffset_GetVertexAttribfvNV 712
+#define _gloffset_GetVertexAttribivNV 713
+#define _gloffset_IsProgramNV 714
+#define _gloffset_LoadProgramNV 715
+#define _gloffset_ProgramParameters4dvNV 716
+#define _gloffset_ProgramParameters4fvNV 717
+#define _gloffset_RequestResidentProgramsNV 718
+#define _gloffset_TrackMatrixNV 719
+#define _gloffset_VertexAttrib1dNV 720
+#define _gloffset_VertexAttrib1dvNV 721
+#define _gloffset_VertexAttrib1fNV 722
+#define _gloffset_VertexAttrib1fvNV 723
+#define _gloffset_VertexAttrib1sNV 724
+#define _gloffset_VertexAttrib1svNV 725
+#define _gloffset_VertexAttrib2dNV 726
+#define _gloffset_VertexAttrib2dvNV 727
+#define _gloffset_VertexAttrib2fNV 728
+#define _gloffset_VertexAttrib2fvNV 729
+#define _gloffset_VertexAttrib2sNV 730
+#define _gloffset_VertexAttrib2svNV 731
+#define _gloffset_VertexAttrib3dNV 732
+#define _gloffset_VertexAttrib3dvNV 733
+#define _gloffset_VertexAttrib3fNV 734
+#define _gloffset_VertexAttrib3fvNV 735
+#define _gloffset_VertexAttrib3sNV 736
+#define _gloffset_VertexAttrib3svNV 737
+#define _gloffset_VertexAttrib4dNV 738
+#define _gloffset_VertexAttrib4dvNV 739
+#define _gloffset_VertexAttrib4fNV 740
+#define _gloffset_VertexAttrib4fvNV 741
+#define _gloffset_VertexAttrib4sNV 742
+#define _gloffset_VertexAttrib4svNV 743
+#define _gloffset_VertexAttrib4ubNV 744
+#define _gloffset_VertexAttrib4ubvNV 745
+#define _gloffset_VertexAttribPointerNV 746
+#define _gloffset_VertexAttribs1dvNV 747
+#define _gloffset_VertexAttribs1fvNV 748
+#define _gloffset_VertexAttribs1svNV 749
+#define _gloffset_VertexAttribs2dvNV 750
+#define _gloffset_VertexAttribs2fvNV 751
+#define _gloffset_VertexAttribs2svNV 752
+#define _gloffset_VertexAttribs3dvNV 753
+#define _gloffset_VertexAttribs3fvNV 754
+#define _gloffset_VertexAttribs3svNV 755
+#define _gloffset_VertexAttribs4dvNV 756
+#define _gloffset_VertexAttribs4fvNV 757
+#define _gloffset_VertexAttribs4svNV 758
+#define _gloffset_VertexAttribs4ubvNV 759
+#define _gloffset_GetTexBumpParameterfvATI 760
+#define _gloffset_GetTexBumpParameterivATI 761
+#define _gloffset_TexBumpParameterfvATI 762
+#define _gloffset_TexBumpParameterivATI 763
+#define _gloffset_AlphaFragmentOp1ATI 764
+#define _gloffset_AlphaFragmentOp2ATI 765
+#define _gloffset_AlphaFragmentOp3ATI 766
+#define _gloffset_BeginFragmentShaderATI 767
+#define _gloffset_BindFragmentShaderATI 768
+#define _gloffset_ColorFragmentOp1ATI 769
+#define _gloffset_ColorFragmentOp2ATI 770
+#define _gloffset_ColorFragmentOp3ATI 771
+#define _gloffset_DeleteFragmentShaderATI 772
+#define _gloffset_EndFragmentShaderATI 773
+#define _gloffset_GenFragmentShadersATI 774
+#define _gloffset_PassTexCoordATI 775
+#define _gloffset_SampleMapATI 776
+#define _gloffset_SetFragmentShaderConstantATI 777
+#define _gloffset_PointParameteriNV 778
+#define _gloffset_PointParameterivNV 779
+#define _gloffset_ActiveStencilFaceEXT 780
+#define _gloffset_BindVertexArrayAPPLE 781
+#define _gloffset_DeleteVertexArraysAPPLE 782
+#define _gloffset_GenVertexArraysAPPLE 783
+#define _gloffset_IsVertexArrayAPPLE 784
+#define _gloffset_GetProgramNamedParameterdvNV 785
+#define _gloffset_GetProgramNamedParameterfvNV 786
+#define _gloffset_ProgramNamedParameter4dNV 787
+#define _gloffset_ProgramNamedParameter4dvNV 788
+#define _gloffset_ProgramNamedParameter4fNV 789
+#define _gloffset_ProgramNamedParameter4fvNV 790
+#define _gloffset_PrimitiveRestartIndexNV 791
+#define _gloffset_PrimitiveRestartNV 792
+#define _gloffset_DepthBoundsEXT 793
+#define _gloffset_BlendEquationSeparateEXT 794
+#define _gloffset_BindFramebufferEXT 795
+#define _gloffset_BindRenderbufferEXT 796
+#define _gloffset_CheckFramebufferStatusEXT 797
+#define _gloffset_DeleteFramebuffersEXT 798
+#define _gloffset_DeleteRenderbuffersEXT 799
+#define _gloffset_FramebufferRenderbufferEXT 800
+#define _gloffset_FramebufferTexture1DEXT 801
+#define _gloffset_FramebufferTexture2DEXT 802
+#define _gloffset_FramebufferTexture3DEXT 803
+#define _gloffset_GenFramebuffersEXT 804
+#define _gloffset_GenRenderbuffersEXT 805
+#define _gloffset_GenerateMipmapEXT 806
+#define _gloffset_GetFramebufferAttachmentParameterivEXT 807
+#define _gloffset_GetRenderbufferParameterivEXT 808
+#define _gloffset_IsFramebufferEXT 809
+#define _gloffset_IsRenderbufferEXT 810
+#define _gloffset_RenderbufferStorageEXT 811
+#define _gloffset_BlitFramebufferEXT 812
+#define _gloffset_BufferParameteriAPPLE 813
+#define _gloffset_FlushMappedBufferRangeAPPLE 814
+#define _gloffset_BindFragDataLocationEXT 815
+#define _gloffset_GetFragDataLocationEXT 816
+#define _gloffset_GetUniformuivEXT 817
+#define _gloffset_GetVertexAttribIivEXT 818
+#define _gloffset_GetVertexAttribIuivEXT 819
+#define _gloffset_Uniform1uiEXT 820
+#define _gloffset_Uniform1uivEXT 821
+#define _gloffset_Uniform2uiEXT 822
+#define _gloffset_Uniform2uivEXT 823
+#define _gloffset_Uniform3uiEXT 824
+#define _gloffset_Uniform3uivEXT 825
+#define _gloffset_Uniform4uiEXT 826
+#define _gloffset_Uniform4uivEXT 827
+#define _gloffset_VertexAttribI1iEXT 828
+#define _gloffset_VertexAttribI1ivEXT 829
+#define _gloffset_VertexAttribI1uiEXT 830
+#define _gloffset_VertexAttribI1uivEXT 831
+#define _gloffset_VertexAttribI2iEXT 832
+#define _gloffset_VertexAttribI2ivEXT 833
+#define _gloffset_VertexAttribI2uiEXT 834
+#define _gloffset_VertexAttribI2uivEXT 835
+#define _gloffset_VertexAttribI3iEXT 836
+#define _gloffset_VertexAttribI3ivEXT 837
+#define _gloffset_VertexAttribI3uiEXT 838
+#define _gloffset_VertexAttribI3uivEXT 839
+#define _gloffset_VertexAttribI4bvEXT 840
+#define _gloffset_VertexAttribI4iEXT 841
+#define _gloffset_VertexAttribI4ivEXT 842
+#define _gloffset_VertexAttribI4svEXT 843
+#define _gloffset_VertexAttribI4ubvEXT 844
+#define _gloffset_VertexAttribI4uiEXT 845
+#define _gloffset_VertexAttribI4uivEXT 846
+#define _gloffset_VertexAttribI4usvEXT 847
+#define _gloffset_VertexAttribIPointerEXT 848
+#define _gloffset_FramebufferTextureLayerEXT 849
+#define _gloffset_ColorMaskIndexedEXT 850
+#define _gloffset_DisableIndexedEXT 851
+#define _gloffset_EnableIndexedEXT 852
+#define _gloffset_GetBooleanIndexedvEXT 853
+#define _gloffset_GetIntegerIndexedvEXT 854
+#define _gloffset_IsEnabledIndexedEXT 855
+#define _gloffset_ClearColorIiEXT 856
+#define _gloffset_ClearColorIuiEXT 857
+#define _gloffset_GetTexParameterIivEXT 858
+#define _gloffset_GetTexParameterIuivEXT 859
+#define _gloffset_TexParameterIivEXT 860
+#define _gloffset_TexParameterIuivEXT 861
+#define _gloffset_BeginConditionalRenderNV 862
+#define _gloffset_EndConditionalRenderNV 863
+#define _gloffset_BeginTransformFeedbackEXT 864
+#define _gloffset_BindBufferBaseEXT 865
+#define _gloffset_BindBufferOffsetEXT 866
+#define _gloffset_BindBufferRangeEXT 867
+#define _gloffset_EndTransformFeedbackEXT 868
+#define _gloffset_GetTransformFeedbackVaryingEXT 869
+#define _gloffset_TransformFeedbackVaryingsEXT 870
+#define _gloffset_ProvokingVertexEXT 871
+#define _gloffset_GetTexParameterPointervAPPLE 872
+#define _gloffset_TextureRangeAPPLE 873
+#define _gloffset_GetObjectParameterivAPPLE 874
+#define _gloffset_ObjectPurgeableAPPLE 875
+#define _gloffset_ObjectUnpurgeableAPPLE 876
+#define _gloffset_ActiveProgramEXT 877
+#define _gloffset_CreateShaderProgramEXT 878
+#define _gloffset_UseShaderProgramEXT 879
+#define _gloffset_StencilFuncSeparateATI 880
+#define _gloffset_ProgramEnvParameters4fvEXT 881
+#define _gloffset_ProgramLocalParameters4fvEXT 882
+#define _gloffset_GetQueryObjecti64vEXT 883
+#define _gloffset_GetQueryObjectui64vEXT 884
+#define _gloffset_EGLImageTargetRenderbufferStorageOES 885
+#define _gloffset_EGLImageTargetTexture2DOES 886
#else /* !_GLAPI_USE_REMAP_TABLE */
-#define driDispatchRemapTable_size 478
+#define driDispatchRemapTable_size 479
extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define AttachShader_remap_index 0
@@ -1126,314 +1127,315 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define FramebufferTextureARB_remap_index 167
#define FramebufferTextureFaceARB_remap_index 168
#define ProgramParameteriARB_remap_index 169
-#define FlushMappedBufferRange_remap_index 170
-#define MapBufferRange_remap_index 171
-#define BindVertexArray_remap_index 172
-#define GenVertexArrays_remap_index 173
-#define CopyBufferSubData_remap_index 174
-#define ClientWaitSync_remap_index 175
-#define DeleteSync_remap_index 176
-#define FenceSync_remap_index 177
-#define GetInteger64v_remap_index 178
-#define GetSynciv_remap_index 179
-#define IsSync_remap_index 180
-#define WaitSync_remap_index 181
-#define DrawElementsBaseVertex_remap_index 182
-#define DrawRangeElementsBaseVertex_remap_index 183
-#define MultiDrawElementsBaseVertex_remap_index 184
-#define BindTransformFeedback_remap_index 185
-#define DeleteTransformFeedbacks_remap_index 186
-#define DrawTransformFeedback_remap_index 187
-#define GenTransformFeedbacks_remap_index 188
-#define IsTransformFeedback_remap_index 189
-#define PauseTransformFeedback_remap_index 190
-#define ResumeTransformFeedback_remap_index 191
-#define ClearDepthf_remap_index 192
-#define DepthRangef_remap_index 193
-#define GetShaderPrecisionFormat_remap_index 194
-#define ReleaseShaderCompiler_remap_index 195
-#define ShaderBinary_remap_index 196
-#define PolygonOffsetEXT_remap_index 197
-#define GetPixelTexGenParameterfvSGIS_remap_index 198
-#define GetPixelTexGenParameterivSGIS_remap_index 199
-#define PixelTexGenParameterfSGIS_remap_index 200
-#define PixelTexGenParameterfvSGIS_remap_index 201
-#define PixelTexGenParameteriSGIS_remap_index 202
-#define PixelTexGenParameterivSGIS_remap_index 203
-#define SampleMaskSGIS_remap_index 204
-#define SamplePatternSGIS_remap_index 205
-#define ColorPointerEXT_remap_index 206
-#define EdgeFlagPointerEXT_remap_index 207
-#define IndexPointerEXT_remap_index 208
-#define NormalPointerEXT_remap_index 209
-#define TexCoordPointerEXT_remap_index 210
-#define VertexPointerEXT_remap_index 211
-#define PointParameterfEXT_remap_index 212
-#define PointParameterfvEXT_remap_index 213
-#define LockArraysEXT_remap_index 214
-#define UnlockArraysEXT_remap_index 215
-#define SecondaryColor3bEXT_remap_index 216
-#define SecondaryColor3bvEXT_remap_index 217
-#define SecondaryColor3dEXT_remap_index 218
-#define SecondaryColor3dvEXT_remap_index 219
-#define SecondaryColor3fEXT_remap_index 220
-#define SecondaryColor3fvEXT_remap_index 221
-#define SecondaryColor3iEXT_remap_index 222
-#define SecondaryColor3ivEXT_remap_index 223
-#define SecondaryColor3sEXT_remap_index 224
-#define SecondaryColor3svEXT_remap_index 225
-#define SecondaryColor3ubEXT_remap_index 226
-#define SecondaryColor3ubvEXT_remap_index 227
-#define SecondaryColor3uiEXT_remap_index 228
-#define SecondaryColor3uivEXT_remap_index 229
-#define SecondaryColor3usEXT_remap_index 230
-#define SecondaryColor3usvEXT_remap_index 231
-#define SecondaryColorPointerEXT_remap_index 232
-#define MultiDrawArraysEXT_remap_index 233
-#define MultiDrawElementsEXT_remap_index 234
-#define FogCoordPointerEXT_remap_index 235
-#define FogCoorddEXT_remap_index 236
-#define FogCoorddvEXT_remap_index 237
-#define FogCoordfEXT_remap_index 238
-#define FogCoordfvEXT_remap_index 239
-#define PixelTexGenSGIX_remap_index 240
-#define BlendFuncSeparateEXT_remap_index 241
-#define FlushVertexArrayRangeNV_remap_index 242
-#define VertexArrayRangeNV_remap_index 243
-#define CombinerInputNV_remap_index 244
-#define CombinerOutputNV_remap_index 245
-#define CombinerParameterfNV_remap_index 246
-#define CombinerParameterfvNV_remap_index 247
-#define CombinerParameteriNV_remap_index 248
-#define CombinerParameterivNV_remap_index 249
-#define FinalCombinerInputNV_remap_index 250
-#define GetCombinerInputParameterfvNV_remap_index 251
-#define GetCombinerInputParameterivNV_remap_index 252
-#define GetCombinerOutputParameterfvNV_remap_index 253
-#define GetCombinerOutputParameterivNV_remap_index 254
-#define GetFinalCombinerInputParameterfvNV_remap_index 255
-#define GetFinalCombinerInputParameterivNV_remap_index 256
-#define ResizeBuffersMESA_remap_index 257
-#define WindowPos2dMESA_remap_index 258
-#define WindowPos2dvMESA_remap_index 259
-#define WindowPos2fMESA_remap_index 260
-#define WindowPos2fvMESA_remap_index 261
-#define WindowPos2iMESA_remap_index 262
-#define WindowPos2ivMESA_remap_index 263
-#define WindowPos2sMESA_remap_index 264
-#define WindowPos2svMESA_remap_index 265
-#define WindowPos3dMESA_remap_index 266
-#define WindowPos3dvMESA_remap_index 267
-#define WindowPos3fMESA_remap_index 268
-#define WindowPos3fvMESA_remap_index 269
-#define WindowPos3iMESA_remap_index 270
-#define WindowPos3ivMESA_remap_index 271
-#define WindowPos3sMESA_remap_index 272
-#define WindowPos3svMESA_remap_index 273
-#define WindowPos4dMESA_remap_index 274
-#define WindowPos4dvMESA_remap_index 275
-#define WindowPos4fMESA_remap_index 276
-#define WindowPos4fvMESA_remap_index 277
-#define WindowPos4iMESA_remap_index 278
-#define WindowPos4ivMESA_remap_index 279
-#define WindowPos4sMESA_remap_index 280
-#define WindowPos4svMESA_remap_index 281
-#define MultiModeDrawArraysIBM_remap_index 282
-#define MultiModeDrawElementsIBM_remap_index 283
-#define DeleteFencesNV_remap_index 284
-#define FinishFenceNV_remap_index 285
-#define GenFencesNV_remap_index 286
-#define GetFenceivNV_remap_index 287
-#define IsFenceNV_remap_index 288
-#define SetFenceNV_remap_index 289
-#define TestFenceNV_remap_index 290
-#define AreProgramsResidentNV_remap_index 291
-#define BindProgramNV_remap_index 292
-#define DeleteProgramsNV_remap_index 293
-#define ExecuteProgramNV_remap_index 294
-#define GenProgramsNV_remap_index 295
-#define GetProgramParameterdvNV_remap_index 296
-#define GetProgramParameterfvNV_remap_index 297
-#define GetProgramStringNV_remap_index 298
-#define GetProgramivNV_remap_index 299
-#define GetTrackMatrixivNV_remap_index 300
-#define GetVertexAttribPointervNV_remap_index 301
-#define GetVertexAttribdvNV_remap_index 302
-#define GetVertexAttribfvNV_remap_index 303
-#define GetVertexAttribivNV_remap_index 304
-#define IsProgramNV_remap_index 305
-#define LoadProgramNV_remap_index 306
-#define ProgramParameters4dvNV_remap_index 307
-#define ProgramParameters4fvNV_remap_index 308
-#define RequestResidentProgramsNV_remap_index 309
-#define TrackMatrixNV_remap_index 310
-#define VertexAttrib1dNV_remap_index 311
-#define VertexAttrib1dvNV_remap_index 312
-#define VertexAttrib1fNV_remap_index 313
-#define VertexAttrib1fvNV_remap_index 314
-#define VertexAttrib1sNV_remap_index 315
-#define VertexAttrib1svNV_remap_index 316
-#define VertexAttrib2dNV_remap_index 317
-#define VertexAttrib2dvNV_remap_index 318
-#define VertexAttrib2fNV_remap_index 319
-#define VertexAttrib2fvNV_remap_index 320
-#define VertexAttrib2sNV_remap_index 321
-#define VertexAttrib2svNV_remap_index 322
-#define VertexAttrib3dNV_remap_index 323
-#define VertexAttrib3dvNV_remap_index 324
-#define VertexAttrib3fNV_remap_index 325
-#define VertexAttrib3fvNV_remap_index 326
-#define VertexAttrib3sNV_remap_index 327
-#define VertexAttrib3svNV_remap_index 328
-#define VertexAttrib4dNV_remap_index 329
-#define VertexAttrib4dvNV_remap_index 330
-#define VertexAttrib4fNV_remap_index 331
-#define VertexAttrib4fvNV_remap_index 332
-#define VertexAttrib4sNV_remap_index 333
-#define VertexAttrib4svNV_remap_index 334
-#define VertexAttrib4ubNV_remap_index 335
-#define VertexAttrib4ubvNV_remap_index 336
-#define VertexAttribPointerNV_remap_index 337
-#define VertexAttribs1dvNV_remap_index 338
-#define VertexAttribs1fvNV_remap_index 339
-#define VertexAttribs1svNV_remap_index 340
-#define VertexAttribs2dvNV_remap_index 341
-#define VertexAttribs2fvNV_remap_index 342
-#define VertexAttribs2svNV_remap_index 343
-#define VertexAttribs3dvNV_remap_index 344
-#define VertexAttribs3fvNV_remap_index 345
-#define VertexAttribs3svNV_remap_index 346
-#define VertexAttribs4dvNV_remap_index 347
-#define VertexAttribs4fvNV_remap_index 348
-#define VertexAttribs4svNV_remap_index 349
-#define VertexAttribs4ubvNV_remap_index 350
-#define GetTexBumpParameterfvATI_remap_index 351
-#define GetTexBumpParameterivATI_remap_index 352
-#define TexBumpParameterfvATI_remap_index 353
-#define TexBumpParameterivATI_remap_index 354
-#define AlphaFragmentOp1ATI_remap_index 355
-#define AlphaFragmentOp2ATI_remap_index 356
-#define AlphaFragmentOp3ATI_remap_index 357
-#define BeginFragmentShaderATI_remap_index 358
-#define BindFragmentShaderATI_remap_index 359
-#define ColorFragmentOp1ATI_remap_index 360
-#define ColorFragmentOp2ATI_remap_index 361
-#define ColorFragmentOp3ATI_remap_index 362
-#define DeleteFragmentShaderATI_remap_index 363
-#define EndFragmentShaderATI_remap_index 364
-#define GenFragmentShadersATI_remap_index 365
-#define PassTexCoordATI_remap_index 366
-#define SampleMapATI_remap_index 367
-#define SetFragmentShaderConstantATI_remap_index 368
-#define PointParameteriNV_remap_index 369
-#define PointParameterivNV_remap_index 370
-#define ActiveStencilFaceEXT_remap_index 371
-#define BindVertexArrayAPPLE_remap_index 372
-#define DeleteVertexArraysAPPLE_remap_index 373
-#define GenVertexArraysAPPLE_remap_index 374
-#define IsVertexArrayAPPLE_remap_index 375
-#define GetProgramNamedParameterdvNV_remap_index 376
-#define GetProgramNamedParameterfvNV_remap_index 377
-#define ProgramNamedParameter4dNV_remap_index 378
-#define ProgramNamedParameter4dvNV_remap_index 379
-#define ProgramNamedParameter4fNV_remap_index 380
-#define ProgramNamedParameter4fvNV_remap_index 381
-#define PrimitiveRestartIndexNV_remap_index 382
-#define PrimitiveRestartNV_remap_index 383
-#define DepthBoundsEXT_remap_index 384
-#define BlendEquationSeparateEXT_remap_index 385
-#define BindFramebufferEXT_remap_index 386
-#define BindRenderbufferEXT_remap_index 387
-#define CheckFramebufferStatusEXT_remap_index 388
-#define DeleteFramebuffersEXT_remap_index 389
-#define DeleteRenderbuffersEXT_remap_index 390
-#define FramebufferRenderbufferEXT_remap_index 391
-#define FramebufferTexture1DEXT_remap_index 392
-#define FramebufferTexture2DEXT_remap_index 393
-#define FramebufferTexture3DEXT_remap_index 394
-#define GenFramebuffersEXT_remap_index 395
-#define GenRenderbuffersEXT_remap_index 396
-#define GenerateMipmapEXT_remap_index 397
-#define GetFramebufferAttachmentParameterivEXT_remap_index 398
-#define GetRenderbufferParameterivEXT_remap_index 399
-#define IsFramebufferEXT_remap_index 400
-#define IsRenderbufferEXT_remap_index 401
-#define RenderbufferStorageEXT_remap_index 402
-#define BlitFramebufferEXT_remap_index 403
-#define BufferParameteriAPPLE_remap_index 404
-#define FlushMappedBufferRangeAPPLE_remap_index 405
-#define BindFragDataLocationEXT_remap_index 406
-#define GetFragDataLocationEXT_remap_index 407
-#define GetUniformuivEXT_remap_index 408
-#define GetVertexAttribIivEXT_remap_index 409
-#define GetVertexAttribIuivEXT_remap_index 410
-#define Uniform1uiEXT_remap_index 411
-#define Uniform1uivEXT_remap_index 412
-#define Uniform2uiEXT_remap_index 413
-#define Uniform2uivEXT_remap_index 414
-#define Uniform3uiEXT_remap_index 415
-#define Uniform3uivEXT_remap_index 416
-#define Uniform4uiEXT_remap_index 417
-#define Uniform4uivEXT_remap_index 418
-#define VertexAttribI1iEXT_remap_index 419
-#define VertexAttribI1ivEXT_remap_index 420
-#define VertexAttribI1uiEXT_remap_index 421
-#define VertexAttribI1uivEXT_remap_index 422
-#define VertexAttribI2iEXT_remap_index 423
-#define VertexAttribI2ivEXT_remap_index 424
-#define VertexAttribI2uiEXT_remap_index 425
-#define VertexAttribI2uivEXT_remap_index 426
-#define VertexAttribI3iEXT_remap_index 427
-#define VertexAttribI3ivEXT_remap_index 428
-#define VertexAttribI3uiEXT_remap_index 429
-#define VertexAttribI3uivEXT_remap_index 430
-#define VertexAttribI4bvEXT_remap_index 431
-#define VertexAttribI4iEXT_remap_index 432
-#define VertexAttribI4ivEXT_remap_index 433
-#define VertexAttribI4svEXT_remap_index 434
-#define VertexAttribI4ubvEXT_remap_index 435
-#define VertexAttribI4uiEXT_remap_index 436
-#define VertexAttribI4uivEXT_remap_index 437
-#define VertexAttribI4usvEXT_remap_index 438
-#define VertexAttribIPointerEXT_remap_index 439
-#define FramebufferTextureLayerEXT_remap_index 440
-#define ColorMaskIndexedEXT_remap_index 441
-#define DisableIndexedEXT_remap_index 442
-#define EnableIndexedEXT_remap_index 443
-#define GetBooleanIndexedvEXT_remap_index 444
-#define GetIntegerIndexedvEXT_remap_index 445
-#define IsEnabledIndexedEXT_remap_index 446
-#define ClearColorIiEXT_remap_index 447
-#define ClearColorIuiEXT_remap_index 448
-#define GetTexParameterIivEXT_remap_index 449
-#define GetTexParameterIuivEXT_remap_index 450
-#define TexParameterIivEXT_remap_index 451
-#define TexParameterIuivEXT_remap_index 452
-#define BeginConditionalRenderNV_remap_index 453
-#define EndConditionalRenderNV_remap_index 454
-#define BeginTransformFeedbackEXT_remap_index 455
-#define BindBufferBaseEXT_remap_index 456
-#define BindBufferOffsetEXT_remap_index 457
-#define BindBufferRangeEXT_remap_index 458
-#define EndTransformFeedbackEXT_remap_index 459
-#define GetTransformFeedbackVaryingEXT_remap_index 460
-#define TransformFeedbackVaryingsEXT_remap_index 461
-#define ProvokingVertexEXT_remap_index 462
-#define GetTexParameterPointervAPPLE_remap_index 463
-#define TextureRangeAPPLE_remap_index 464
-#define GetObjectParameterivAPPLE_remap_index 465
-#define ObjectPurgeableAPPLE_remap_index 466
-#define ObjectUnpurgeableAPPLE_remap_index 467
-#define ActiveProgramEXT_remap_index 468
-#define CreateShaderProgramEXT_remap_index 469
-#define UseShaderProgramEXT_remap_index 470
-#define StencilFuncSeparateATI_remap_index 471
-#define ProgramEnvParameters4fvEXT_remap_index 472
-#define ProgramLocalParameters4fvEXT_remap_index 473
-#define GetQueryObjecti64vEXT_remap_index 474
-#define GetQueryObjectui64vEXT_remap_index 475
-#define EGLImageTargetRenderbufferStorageOES_remap_index 476
-#define EGLImageTargetTexture2DOES_remap_index 477
+#define VertexAttribDivisorARB_remap_index 170
+#define FlushMappedBufferRange_remap_index 171
+#define MapBufferRange_remap_index 172
+#define BindVertexArray_remap_index 173
+#define GenVertexArrays_remap_index 174
+#define CopyBufferSubData_remap_index 175
+#define ClientWaitSync_remap_index 176
+#define DeleteSync_remap_index 177
+#define FenceSync_remap_index 178
+#define GetInteger64v_remap_index 179
+#define GetSynciv_remap_index 180
+#define IsSync_remap_index 181
+#define WaitSync_remap_index 182
+#define DrawElementsBaseVertex_remap_index 183
+#define DrawRangeElementsBaseVertex_remap_index 184
+#define MultiDrawElementsBaseVertex_remap_index 185
+#define BindTransformFeedback_remap_index 186
+#define DeleteTransformFeedbacks_remap_index 187
+#define DrawTransformFeedback_remap_index 188
+#define GenTransformFeedbacks_remap_index 189
+#define IsTransformFeedback_remap_index 190
+#define PauseTransformFeedback_remap_index 191
+#define ResumeTransformFeedback_remap_index 192
+#define ClearDepthf_remap_index 193
+#define DepthRangef_remap_index 194
+#define GetShaderPrecisionFormat_remap_index 195
+#define ReleaseShaderCompiler_remap_index 196
+#define ShaderBinary_remap_index 197
+#define PolygonOffsetEXT_remap_index 198
+#define GetPixelTexGenParameterfvSGIS_remap_index 199
+#define GetPixelTexGenParameterivSGIS_remap_index 200
+#define PixelTexGenParameterfSGIS_remap_index 201
+#define PixelTexGenParameterfvSGIS_remap_index 202
+#define PixelTexGenParameteriSGIS_remap_index 203
+#define PixelTexGenParameterivSGIS_remap_index 204
+#define SampleMaskSGIS_remap_index 205
+#define SamplePatternSGIS_remap_index 206
+#define ColorPointerEXT_remap_index 207
+#define EdgeFlagPointerEXT_remap_index 208
+#define IndexPointerEXT_remap_index 209
+#define NormalPointerEXT_remap_index 210
+#define TexCoordPointerEXT_remap_index 211
+#define VertexPointerEXT_remap_index 212
+#define PointParameterfEXT_remap_index 213
+#define PointParameterfvEXT_remap_index 214
+#define LockArraysEXT_remap_index 215
+#define UnlockArraysEXT_remap_index 216
+#define SecondaryColor3bEXT_remap_index 217
+#define SecondaryColor3bvEXT_remap_index 218
+#define SecondaryColor3dEXT_remap_index 219
+#define SecondaryColor3dvEXT_remap_index 220
+#define SecondaryColor3fEXT_remap_index 221
+#define SecondaryColor3fvEXT_remap_index 222
+#define SecondaryColor3iEXT_remap_index 223
+#define SecondaryColor3ivEXT_remap_index 224
+#define SecondaryColor3sEXT_remap_index 225
+#define SecondaryColor3svEXT_remap_index 226
+#define SecondaryColor3ubEXT_remap_index 227
+#define SecondaryColor3ubvEXT_remap_index 228
+#define SecondaryColor3uiEXT_remap_index 229
+#define SecondaryColor3uivEXT_remap_index 230
+#define SecondaryColor3usEXT_remap_index 231
+#define SecondaryColor3usvEXT_remap_index 232
+#define SecondaryColorPointerEXT_remap_index 233
+#define MultiDrawArraysEXT_remap_index 234
+#define MultiDrawElementsEXT_remap_index 235
+#define FogCoordPointerEXT_remap_index 236
+#define FogCoorddEXT_remap_index 237
+#define FogCoorddvEXT_remap_index 238
+#define FogCoordfEXT_remap_index 239
+#define FogCoordfvEXT_remap_index 240
+#define PixelTexGenSGIX_remap_index 241
+#define BlendFuncSeparateEXT_remap_index 242
+#define FlushVertexArrayRangeNV_remap_index 243
+#define VertexArrayRangeNV_remap_index 244
+#define CombinerInputNV_remap_index 245
+#define CombinerOutputNV_remap_index 246
+#define CombinerParameterfNV_remap_index 247
+#define CombinerParameterfvNV_remap_index 248
+#define CombinerParameteriNV_remap_index 249
+#define CombinerParameterivNV_remap_index 250
+#define FinalCombinerInputNV_remap_index 251
+#define GetCombinerInputParameterfvNV_remap_index 252
+#define GetCombinerInputParameterivNV_remap_index 253
+#define GetCombinerOutputParameterfvNV_remap_index 254
+#define GetCombinerOutputParameterivNV_remap_index 255
+#define GetFinalCombinerInputParameterfvNV_remap_index 256
+#define GetFinalCombinerInputParameterivNV_remap_index 257
+#define ResizeBuffersMESA_remap_index 258
+#define WindowPos2dMESA_remap_index 259
+#define WindowPos2dvMESA_remap_index 260
+#define WindowPos2fMESA_remap_index 261
+#define WindowPos2fvMESA_remap_index 262
+#define WindowPos2iMESA_remap_index 263
+#define WindowPos2ivMESA_remap_index 264
+#define WindowPos2sMESA_remap_index 265
+#define WindowPos2svMESA_remap_index 266
+#define WindowPos3dMESA_remap_index 267
+#define WindowPos3dvMESA_remap_index 268
+#define WindowPos3fMESA_remap_index 269
+#define WindowPos3fvMESA_remap_index 270
+#define WindowPos3iMESA_remap_index 271
+#define WindowPos3ivMESA_remap_index 272
+#define WindowPos3sMESA_remap_index 273
+#define WindowPos3svMESA_remap_index 274
+#define WindowPos4dMESA_remap_index 275
+#define WindowPos4dvMESA_remap_index 276
+#define WindowPos4fMESA_remap_index 277
+#define WindowPos4fvMESA_remap_index 278
+#define WindowPos4iMESA_remap_index 279
+#define WindowPos4ivMESA_remap_index 280
+#define WindowPos4sMESA_remap_index 281
+#define WindowPos4svMESA_remap_index 282
+#define MultiModeDrawArraysIBM_remap_index 283
+#define MultiModeDrawElementsIBM_remap_index 284
+#define DeleteFencesNV_remap_index 285
+#define FinishFenceNV_remap_index 286
+#define GenFencesNV_remap_index 287
+#define GetFenceivNV_remap_index 288
+#define IsFenceNV_remap_index 289
+#define SetFenceNV_remap_index 290
+#define TestFenceNV_remap_index 291
+#define AreProgramsResidentNV_remap_index 292
+#define BindProgramNV_remap_index 293
+#define DeleteProgramsNV_remap_index 294
+#define ExecuteProgramNV_remap_index 295
+#define GenProgramsNV_remap_index 296
+#define GetProgramParameterdvNV_remap_index 297
+#define GetProgramParameterfvNV_remap_index 298
+#define GetProgramStringNV_remap_index 299
+#define GetProgramivNV_remap_index 300
+#define GetTrackMatrixivNV_remap_index 301
+#define GetVertexAttribPointervNV_remap_index 302
+#define GetVertexAttribdvNV_remap_index 303
+#define GetVertexAttribfvNV_remap_index 304
+#define GetVertexAttribivNV_remap_index 305
+#define IsProgramNV_remap_index 306
+#define LoadProgramNV_remap_index 307
+#define ProgramParameters4dvNV_remap_index 308
+#define ProgramParameters4fvNV_remap_index 309
+#define RequestResidentProgramsNV_remap_index 310
+#define TrackMatrixNV_remap_index 311
+#define VertexAttrib1dNV_remap_index 312
+#define VertexAttrib1dvNV_remap_index 313
+#define VertexAttrib1fNV_remap_index 314
+#define VertexAttrib1fvNV_remap_index 315
+#define VertexAttrib1sNV_remap_index 316
+#define VertexAttrib1svNV_remap_index 317
+#define VertexAttrib2dNV_remap_index 318
+#define VertexAttrib2dvNV_remap_index 319
+#define VertexAttrib2fNV_remap_index 320
+#define VertexAttrib2fvNV_remap_index 321
+#define VertexAttrib2sNV_remap_index 322
+#define VertexAttrib2svNV_remap_index 323
+#define VertexAttrib3dNV_remap_index 324
+#define VertexAttrib3dvNV_remap_index 325
+#define VertexAttrib3fNV_remap_index 326
+#define VertexAttrib3fvNV_remap_index 327
+#define VertexAttrib3sNV_remap_index 328
+#define VertexAttrib3svNV_remap_index 329
+#define VertexAttrib4dNV_remap_index 330
+#define VertexAttrib4dvNV_remap_index 331
+#define VertexAttrib4fNV_remap_index 332
+#define VertexAttrib4fvNV_remap_index 333
+#define VertexAttrib4sNV_remap_index 334
+#define VertexAttrib4svNV_remap_index 335
+#define VertexAttrib4ubNV_remap_index 336
+#define VertexAttrib4ubvNV_remap_index 337
+#define VertexAttribPointerNV_remap_index 338
+#define VertexAttribs1dvNV_remap_index 339
+#define VertexAttribs1fvNV_remap_index 340
+#define VertexAttribs1svNV_remap_index 341
+#define VertexAttribs2dvNV_remap_index 342
+#define VertexAttribs2fvNV_remap_index 343
+#define VertexAttribs2svNV_remap_index 344
+#define VertexAttribs3dvNV_remap_index 345
+#define VertexAttribs3fvNV_remap_index 346
+#define VertexAttribs3svNV_remap_index 347
+#define VertexAttribs4dvNV_remap_index 348
+#define VertexAttribs4fvNV_remap_index 349
+#define VertexAttribs4svNV_remap_index 350
+#define VertexAttribs4ubvNV_remap_index 351
+#define GetTexBumpParameterfvATI_remap_index 352
+#define GetTexBumpParameterivATI_remap_index 353
+#define TexBumpParameterfvATI_remap_index 354
+#define TexBumpParameterivATI_remap_index 355
+#define AlphaFragmentOp1ATI_remap_index 356
+#define AlphaFragmentOp2ATI_remap_index 357
+#define AlphaFragmentOp3ATI_remap_index 358
+#define BeginFragmentShaderATI_remap_index 359
+#define BindFragmentShaderATI_remap_index 360
+#define ColorFragmentOp1ATI_remap_index 361
+#define ColorFragmentOp2ATI_remap_index 362
+#define ColorFragmentOp3ATI_remap_index 363
+#define DeleteFragmentShaderATI_remap_index 364
+#define EndFragmentShaderATI_remap_index 365
+#define GenFragmentShadersATI_remap_index 366
+#define PassTexCoordATI_remap_index 367
+#define SampleMapATI_remap_index 368
+#define SetFragmentShaderConstantATI_remap_index 369
+#define PointParameteriNV_remap_index 370
+#define PointParameterivNV_remap_index 371
+#define ActiveStencilFaceEXT_remap_index 372
+#define BindVertexArrayAPPLE_remap_index 373
+#define DeleteVertexArraysAPPLE_remap_index 374
+#define GenVertexArraysAPPLE_remap_index 375
+#define IsVertexArrayAPPLE_remap_index 376
+#define GetProgramNamedParameterdvNV_remap_index 377
+#define GetProgramNamedParameterfvNV_remap_index 378
+#define ProgramNamedParameter4dNV_remap_index 379
+#define ProgramNamedParameter4dvNV_remap_index 380
+#define ProgramNamedParameter4fNV_remap_index 381
+#define ProgramNamedParameter4fvNV_remap_index 382
+#define PrimitiveRestartIndexNV_remap_index 383
+#define PrimitiveRestartNV_remap_index 384
+#define DepthBoundsEXT_remap_index 385
+#define BlendEquationSeparateEXT_remap_index 386
+#define BindFramebufferEXT_remap_index 387
+#define BindRenderbufferEXT_remap_index 388
+#define CheckFramebufferStatusEXT_remap_index 389
+#define DeleteFramebuffersEXT_remap_index 390
+#define DeleteRenderbuffersEXT_remap_index 391
+#define FramebufferRenderbufferEXT_remap_index 392
+#define FramebufferTexture1DEXT_remap_index 393
+#define FramebufferTexture2DEXT_remap_index 394
+#define FramebufferTexture3DEXT_remap_index 395
+#define GenFramebuffersEXT_remap_index 396
+#define GenRenderbuffersEXT_remap_index 397
+#define GenerateMipmapEXT_remap_index 398
+#define GetFramebufferAttachmentParameterivEXT_remap_index 399
+#define GetRenderbufferParameterivEXT_remap_index 400
+#define IsFramebufferEXT_remap_index 401
+#define IsRenderbufferEXT_remap_index 402
+#define RenderbufferStorageEXT_remap_index 403
+#define BlitFramebufferEXT_remap_index 404
+#define BufferParameteriAPPLE_remap_index 405
+#define FlushMappedBufferRangeAPPLE_remap_index 406
+#define BindFragDataLocationEXT_remap_index 407
+#define GetFragDataLocationEXT_remap_index 408
+#define GetUniformuivEXT_remap_index 409
+#define GetVertexAttribIivEXT_remap_index 410
+#define GetVertexAttribIuivEXT_remap_index 411
+#define Uniform1uiEXT_remap_index 412
+#define Uniform1uivEXT_remap_index 413
+#define Uniform2uiEXT_remap_index 414
+#define Uniform2uivEXT_remap_index 415
+#define Uniform3uiEXT_remap_index 416
+#define Uniform3uivEXT_remap_index 417
+#define Uniform4uiEXT_remap_index 418
+#define Uniform4uivEXT_remap_index 419
+#define VertexAttribI1iEXT_remap_index 420
+#define VertexAttribI1ivEXT_remap_index 421
+#define VertexAttribI1uiEXT_remap_index 422
+#define VertexAttribI1uivEXT_remap_index 423
+#define VertexAttribI2iEXT_remap_index 424
+#define VertexAttribI2ivEXT_remap_index 425
+#define VertexAttribI2uiEXT_remap_index 426
+#define VertexAttribI2uivEXT_remap_index 427
+#define VertexAttribI3iEXT_remap_index 428
+#define VertexAttribI3ivEXT_remap_index 429
+#define VertexAttribI3uiEXT_remap_index 430
+#define VertexAttribI3uivEXT_remap_index 431
+#define VertexAttribI4bvEXT_remap_index 432
+#define VertexAttribI4iEXT_remap_index 433
+#define VertexAttribI4ivEXT_remap_index 434
+#define VertexAttribI4svEXT_remap_index 435
+#define VertexAttribI4ubvEXT_remap_index 436
+#define VertexAttribI4uiEXT_remap_index 437
+#define VertexAttribI4uivEXT_remap_index 438
+#define VertexAttribI4usvEXT_remap_index 439
+#define VertexAttribIPointerEXT_remap_index 440
+#define FramebufferTextureLayerEXT_remap_index 441
+#define ColorMaskIndexedEXT_remap_index 442
+#define DisableIndexedEXT_remap_index 443
+#define EnableIndexedEXT_remap_index 444
+#define GetBooleanIndexedvEXT_remap_index 445
+#define GetIntegerIndexedvEXT_remap_index 446
+#define IsEnabledIndexedEXT_remap_index 447
+#define ClearColorIiEXT_remap_index 448
+#define ClearColorIuiEXT_remap_index 449
+#define GetTexParameterIivEXT_remap_index 450
+#define GetTexParameterIuivEXT_remap_index 451
+#define TexParameterIivEXT_remap_index 452
+#define TexParameterIuivEXT_remap_index 453
+#define BeginConditionalRenderNV_remap_index 454
+#define EndConditionalRenderNV_remap_index 455
+#define BeginTransformFeedbackEXT_remap_index 456
+#define BindBufferBaseEXT_remap_index 457
+#define BindBufferOffsetEXT_remap_index 458
+#define BindBufferRangeEXT_remap_index 459
+#define EndTransformFeedbackEXT_remap_index 460
+#define GetTransformFeedbackVaryingEXT_remap_index 461
+#define TransformFeedbackVaryingsEXT_remap_index 462
+#define ProvokingVertexEXT_remap_index 463
+#define GetTexParameterPointervAPPLE_remap_index 464
+#define TextureRangeAPPLE_remap_index 465
+#define GetObjectParameterivAPPLE_remap_index 466
+#define ObjectPurgeableAPPLE_remap_index 467
+#define ObjectUnpurgeableAPPLE_remap_index 468
+#define ActiveProgramEXT_remap_index 469
+#define CreateShaderProgramEXT_remap_index 470
+#define UseShaderProgramEXT_remap_index 471
+#define StencilFuncSeparateATI_remap_index 472
+#define ProgramEnvParameters4fvEXT_remap_index 473
+#define ProgramLocalParameters4fvEXT_remap_index 474
+#define GetQueryObjecti64vEXT_remap_index 475
+#define GetQueryObjectui64vEXT_remap_index 476
+#define EGLImageTargetRenderbufferStorageOES_remap_index 477
+#define EGLImageTargetTexture2DOES_remap_index 478
#define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index]
#define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index]
@@ -1605,6 +1607,7 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_FramebufferTextureARB driDispatchRemapTable[FramebufferTextureARB_remap_index]
#define _gloffset_FramebufferTextureFaceARB driDispatchRemapTable[FramebufferTextureFaceARB_remap_index]
#define _gloffset_ProgramParameteriARB driDispatchRemapTable[ProgramParameteriARB_remap_index]
+#define _gloffset_VertexAttribDivisorARB driDispatchRemapTable[VertexAttribDivisorARB_remap_index]
#define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
#define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
#define _gloffset_BindVertexArray driDispatchRemapTable[BindVertexArray_remap_index]
@@ -3650,6 +3653,9 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define CALL_ProgramParameteriARB(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLuint, GLenum, GLint)), _gloffset_ProgramParameteriARB, parameters)
#define GET_ProgramParameteriARB(disp) GET_by_offset(disp, _gloffset_ProgramParameteriARB)
#define SET_ProgramParameteriARB(disp, fn) SET_by_offset(disp, _gloffset_ProgramParameteriARB, fn)
+#define CALL_VertexAttribDivisorARB(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLuint, GLuint)), _gloffset_VertexAttribDivisorARB, parameters)
+#define GET_VertexAttribDivisorARB(disp) GET_by_offset(disp, _gloffset_VertexAttribDivisorARB)
+#define SET_VertexAttribDivisorARB(disp, fn) SET_by_offset(disp, _gloffset_VertexAttribDivisorARB, fn)
#define CALL_FlushMappedBufferRange(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLintptr, GLsizeiptr)), _gloffset_FlushMappedBufferRange, parameters)
#define GET_FlushMappedBufferRange(disp) GET_by_offset(disp, _gloffset_FlushMappedBufferRange)
#define SET_FlushMappedBufferRange(disp, fn) SET_by_offset(disp, _gloffset_FlushMappedBufferRange, fn)
diff --git a/src/mesa/main/remap_helper.h b/src/mesa/main/remap_helper.h
index a332f5da64b..f826f77053d 100644
--- a/src/mesa/main/remap_helper.h
+++ b/src/mesa/main/remap_helper.h
@@ -70,4686 +70,4690 @@ static const char _mesa_function_pool[] =
"\0"
"glLoadIdentity\0"
"\0"
- /* _mesa_function_pool[216]: GetCombinerOutputParameterfvNV (will be remapped) */
- "iiip\0"
- "glGetCombinerOutputParameterfvNV\0"
- "\0"
- /* _mesa_function_pool[255]: SampleCoverageARB (will be remapped) */
+ /* _mesa_function_pool[216]: SampleCoverageARB (will be remapped) */
"fi\0"
"glSampleCoverage\0"
"glSampleCoverageARB\0"
"\0"
- /* _mesa_function_pool[296]: ConvolutionFilter1D (offset 348) */
+ /* _mesa_function_pool[257]: ConvolutionFilter1D (offset 348) */
"iiiiip\0"
"glConvolutionFilter1D\0"
"glConvolutionFilter1DEXT\0"
"\0"
- /* _mesa_function_pool[351]: BeginQueryARB (will be remapped) */
+ /* _mesa_function_pool[312]: BeginQueryARB (will be remapped) */
"ii\0"
"glBeginQuery\0"
"glBeginQueryARB\0"
"\0"
- /* _mesa_function_pool[384]: RasterPos3dv (offset 71) */
+ /* _mesa_function_pool[345]: RasterPos3dv (offset 71) */
"p\0"
"glRasterPos3dv\0"
"\0"
- /* _mesa_function_pool[402]: PointParameteriNV (will be remapped) */
+ /* _mesa_function_pool[363]: PointParameteriNV (will be remapped) */
"ii\0"
"glPointParameteri\0"
"glPointParameteriNV\0"
"\0"
- /* _mesa_function_pool[444]: GetProgramiv (will be remapped) */
+ /* _mesa_function_pool[405]: GetProgramiv (will be remapped) */
"iip\0"
"glGetProgramiv\0"
"\0"
- /* _mesa_function_pool[464]: MultiTexCoord3sARB (offset 398) */
+ /* _mesa_function_pool[425]: MultiTexCoord3sARB (offset 398) */
"iiii\0"
"glMultiTexCoord3s\0"
"glMultiTexCoord3sARB\0"
"\0"
- /* _mesa_function_pool[509]: SecondaryColor3iEXT (will be remapped) */
+ /* _mesa_function_pool[470]: SecondaryColor3iEXT (will be remapped) */
"iii\0"
"glSecondaryColor3i\0"
"glSecondaryColor3iEXT\0"
"\0"
- /* _mesa_function_pool[555]: WindowPos3fMESA (will be remapped) */
+ /* _mesa_function_pool[516]: WindowPos3fMESA (will be remapped) */
"fff\0"
"glWindowPos3f\0"
"glWindowPos3fARB\0"
"glWindowPos3fMESA\0"
"\0"
- /* _mesa_function_pool[609]: TexCoord1iv (offset 99) */
+ /* _mesa_function_pool[570]: TexCoord1iv (offset 99) */
"p\0"
"glTexCoord1iv\0"
"\0"
- /* _mesa_function_pool[626]: TexCoord4sv (offset 125) */
+ /* _mesa_function_pool[587]: TexCoord4sv (offset 125) */
"p\0"
"glTexCoord4sv\0"
"\0"
- /* _mesa_function_pool[643]: RasterPos4s (offset 84) */
+ /* _mesa_function_pool[604]: RasterPos4s (offset 84) */
"iiii\0"
"glRasterPos4s\0"
"\0"
- /* _mesa_function_pool[663]: PixelTexGenParameterfvSGIS (will be remapped) */
+ /* _mesa_function_pool[624]: PixelTexGenParameterfvSGIS (will be remapped) */
"ip\0"
"glPixelTexGenParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[696]: ActiveTextureARB (offset 374) */
+ /* _mesa_function_pool[657]: ActiveTextureARB (offset 374) */
"i\0"
"glActiveTexture\0"
"glActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[734]: BlitFramebufferEXT (will be remapped) */
+ /* _mesa_function_pool[695]: BlitFramebufferEXT (will be remapped) */
"iiiiiiiiii\0"
"glBlitFramebuffer\0"
"glBlitFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[785]: TexCoord1f (offset 96) */
+ /* _mesa_function_pool[746]: TexCoord1f (offset 96) */
"f\0"
"glTexCoord1f\0"
"\0"
- /* _mesa_function_pool[801]: TexCoord1d (offset 94) */
+ /* _mesa_function_pool[762]: TexCoord1d (offset 94) */
"d\0"
"glTexCoord1d\0"
"\0"
- /* _mesa_function_pool[817]: VertexAttrib4ubvNV (will be remapped) */
+ /* _mesa_function_pool[778]: VertexAttrib4ubvNV (will be remapped) */
"ip\0"
"glVertexAttrib4ubvNV\0"
"\0"
- /* _mesa_function_pool[842]: TexCoord1i (offset 98) */
+ /* _mesa_function_pool[803]: TexCoord1i (offset 98) */
"i\0"
"glTexCoord1i\0"
"\0"
- /* _mesa_function_pool[858]: GetProgramNamedParameterdvNV (will be remapped) */
+ /* _mesa_function_pool[819]: GetProgramNamedParameterdvNV (will be remapped) */
"iipp\0"
"glGetProgramNamedParameterdvNV\0"
"\0"
- /* _mesa_function_pool[895]: Histogram (offset 367) */
+ /* _mesa_function_pool[856]: Histogram (offset 367) */
"iiii\0"
"glHistogram\0"
"glHistogramEXT\0"
"\0"
- /* _mesa_function_pool[928]: TexCoord1s (offset 100) */
+ /* _mesa_function_pool[889]: TexCoord1s (offset 100) */
"i\0"
"glTexCoord1s\0"
"\0"
- /* _mesa_function_pool[944]: GetMapfv (offset 267) */
+ /* _mesa_function_pool[905]: GetMapfv (offset 267) */
"iip\0"
"glGetMapfv\0"
"\0"
- /* _mesa_function_pool[960]: EvalCoord1f (offset 230) */
+ /* _mesa_function_pool[921]: EvalCoord1f (offset 230) */
"f\0"
"glEvalCoord1f\0"
"\0"
- /* _mesa_function_pool[977]: FramebufferTexture (will be remapped) */
+ /* _mesa_function_pool[938]: FramebufferTexture (will be remapped) */
"iiii\0"
"glFramebufferTexture\0"
"\0"
- /* _mesa_function_pool[1004]: VertexAttribI1ivEXT (will be remapped) */
+ /* _mesa_function_pool[965]: VertexAttribI1ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI1ivEXT\0"
"glVertexAttribI1iv\0"
"\0"
- /* _mesa_function_pool[1049]: TexImage4DSGIS (dynamic) */
+ /* _mesa_function_pool[1010]: TexImage4DSGIS (dynamic) */
"iiiiiiiiiip\0"
"glTexImage4DSGIS\0"
"\0"
- /* _mesa_function_pool[1079]: PolygonStipple (offset 175) */
+ /* _mesa_function_pool[1040]: PolygonStipple (offset 175) */
"p\0"
"glPolygonStipple\0"
"\0"
- /* _mesa_function_pool[1099]: WindowPos2dvMESA (will be remapped) */
+ /* _mesa_function_pool[1060]: WindowPos2dvMESA (will be remapped) */
"p\0"
"glWindowPos2dv\0"
"glWindowPos2dvARB\0"
"glWindowPos2dvMESA\0"
"\0"
- /* _mesa_function_pool[1154]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[1115]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[1198]: BlendEquationSeparateEXT (will be remapped) */
+ /* _mesa_function_pool[1159]: BlendEquationSeparateEXT (will be remapped) */
"ii\0"
"glBlendEquationSeparate\0"
"glBlendEquationSeparateEXT\0"
"glBlendEquationSeparateATI\0"
"\0"
- /* _mesa_function_pool[1280]: ListParameterfSGIX (dynamic) */
+ /* _mesa_function_pool[1241]: ListParameterfSGIX (dynamic) */
"iif\0"
"glListParameterfSGIX\0"
"\0"
- /* _mesa_function_pool[1306]: SecondaryColor3bEXT (will be remapped) */
+ /* _mesa_function_pool[1267]: SecondaryColor3bEXT (will be remapped) */
"iii\0"
"glSecondaryColor3b\0"
"glSecondaryColor3bEXT\0"
"\0"
- /* _mesa_function_pool[1352]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */
+ /* _mesa_function_pool[1313]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */
"pppp\0"
"glTexCoord4fColor4fNormal3fVertex4fvSUN\0"
"\0"
- /* _mesa_function_pool[1398]: GetPixelMapfv (offset 271) */
+ /* _mesa_function_pool[1359]: GetPixelMapfv (offset 271) */
"ip\0"
"glGetPixelMapfv\0"
"\0"
- /* _mesa_function_pool[1418]: Color3uiv (offset 22) */
+ /* _mesa_function_pool[1379]: Color3uiv (offset 22) */
"p\0"
"glColor3uiv\0"
"\0"
- /* _mesa_function_pool[1433]: IsEnabled (offset 286) */
+ /* _mesa_function_pool[1394]: IsEnabled (offset 286) */
"i\0"
"glIsEnabled\0"
"\0"
- /* _mesa_function_pool[1448]: VertexAttrib4svNV (will be remapped) */
+ /* _mesa_function_pool[1409]: VertexAttrib4svNV (will be remapped) */
"ip\0"
"glVertexAttrib4svNV\0"
"\0"
- /* _mesa_function_pool[1472]: EvalCoord2fv (offset 235) */
+ /* _mesa_function_pool[1433]: EvalCoord2fv (offset 235) */
"p\0"
"glEvalCoord2fv\0"
"\0"
- /* _mesa_function_pool[1490]: GetBufferSubDataARB (will be remapped) */
+ /* _mesa_function_pool[1451]: GetBufferSubDataARB (will be remapped) */
"iiip\0"
"glGetBufferSubData\0"
"glGetBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[1537]: BufferSubDataARB (will be remapped) */
+ /* _mesa_function_pool[1498]: BufferSubDataARB (will be remapped) */
"iiip\0"
"glBufferSubData\0"
"glBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[1578]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[1539]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[1616]: AttachShader (will be remapped) */
+ /* _mesa_function_pool[1577]: AttachShader (will be remapped) */
"ii\0"
"glAttachShader\0"
"\0"
- /* _mesa_function_pool[1635]: VertexAttrib2fARB (will be remapped) */
+ /* _mesa_function_pool[1596]: VertexAttrib2fARB (will be remapped) */
"iff\0"
"glVertexAttrib2f\0"
"glVertexAttrib2fARB\0"
"\0"
- /* _mesa_function_pool[1677]: GetDebugLogLengthMESA (dynamic) */
+ /* _mesa_function_pool[1638]: GetDebugLogLengthMESA (dynamic) */
"iii\0"
"glGetDebugLogLengthMESA\0"
"\0"
- /* _mesa_function_pool[1706]: GetMapiv (offset 268) */
+ /* _mesa_function_pool[1667]: GetMapiv (offset 268) */
"iip\0"
"glGetMapiv\0"
"\0"
- /* _mesa_function_pool[1722]: VertexAttrib3fARB (will be remapped) */
+ /* _mesa_function_pool[1683]: VertexAttrib3fARB (will be remapped) */
"ifff\0"
"glVertexAttrib3f\0"
"glVertexAttrib3fARB\0"
"\0"
- /* _mesa_function_pool[1765]: Indexubv (offset 316) */
+ /* _mesa_function_pool[1726]: Indexubv (offset 316) */
"p\0"
"glIndexubv\0"
"\0"
- /* _mesa_function_pool[1779]: GetQueryivARB (will be remapped) */
+ /* _mesa_function_pool[1740]: GetQueryivARB (will be remapped) */
"iip\0"
"glGetQueryiv\0"
"glGetQueryivARB\0"
"\0"
- /* _mesa_function_pool[1813]: TexImage3D (offset 371) */
+ /* _mesa_function_pool[1774]: TexImage3D (offset 371) */
"iiiiiiiiip\0"
"glTexImage3D\0"
"glTexImage3DEXT\0"
"\0"
- /* _mesa_function_pool[1854]: BindFragDataLocationEXT (will be remapped) */
+ /* _mesa_function_pool[1815]: BindFragDataLocationEXT (will be remapped) */
"iip\0"
"glBindFragDataLocationEXT\0"
"glBindFragDataLocation\0"
"\0"
- /* _mesa_function_pool[1908]: ReplacementCodeuiVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[1869]: ReplacementCodeuiVertex3fvSUN (dynamic) */
"pp\0"
"glReplacementCodeuiVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[1944]: EdgeFlagPointer (offset 312) */
+ /* _mesa_function_pool[1905]: EdgeFlagPointer (offset 312) */
"ip\0"
"glEdgeFlagPointer\0"
"\0"
- /* _mesa_function_pool[1966]: Color3ubv (offset 20) */
+ /* _mesa_function_pool[1927]: Color3ubv (offset 20) */
"p\0"
"glColor3ubv\0"
"\0"
- /* _mesa_function_pool[1981]: GetQueryObjectivARB (will be remapped) */
+ /* _mesa_function_pool[1942]: GetQueryObjectivARB (will be remapped) */
"iip\0"
"glGetQueryObjectiv\0"
"glGetQueryObjectivARB\0"
"\0"
- /* _mesa_function_pool[2027]: Vertex3dv (offset 135) */
+ /* _mesa_function_pool[1988]: Vertex3dv (offset 135) */
"p\0"
"glVertex3dv\0"
"\0"
- /* _mesa_function_pool[2042]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[2003]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiTexCoord2fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[2089]: CompressedTexSubImage2DARB (will be remapped) */
+ /* _mesa_function_pool[2050]: CompressedTexSubImage2DARB (will be remapped) */
"iiiiiiiip\0"
"glCompressedTexSubImage2D\0"
"glCompressedTexSubImage2DARB\0"
"\0"
- /* _mesa_function_pool[2155]: CombinerOutputNV (will be remapped) */
+ /* _mesa_function_pool[2116]: CombinerOutputNV (will be remapped) */
"iiiiiiiiii\0"
"glCombinerOutputNV\0"
"\0"
- /* _mesa_function_pool[2186]: VertexAttribs3fvNV (will be remapped) */
+ /* _mesa_function_pool[2147]: VertexAttribs3fvNV (will be remapped) */
"iip\0"
"glVertexAttribs3fvNV\0"
"\0"
- /* _mesa_function_pool[2212]: Uniform2fARB (will be remapped) */
+ /* _mesa_function_pool[2173]: Uniform2fARB (will be remapped) */
"iff\0"
"glUniform2f\0"
"glUniform2fARB\0"
"\0"
- /* _mesa_function_pool[2244]: LightModeliv (offset 166) */
+ /* _mesa_function_pool[2205]: LightModeliv (offset 166) */
"ip\0"
"glLightModeliv\0"
"\0"
- /* _mesa_function_pool[2263]: VertexAttrib1svARB (will be remapped) */
+ /* _mesa_function_pool[2224]: VertexAttrib1svARB (will be remapped) */
"ip\0"
"glVertexAttrib1sv\0"
"glVertexAttrib1svARB\0"
"\0"
- /* _mesa_function_pool[2306]: VertexAttribs1dvNV (will be remapped) */
+ /* _mesa_function_pool[2267]: VertexAttribs1dvNV (will be remapped) */
"iip\0"
"glVertexAttribs1dvNV\0"
"\0"
- /* _mesa_function_pool[2332]: Uniform2ivARB (will be remapped) */
+ /* _mesa_function_pool[2293]: Uniform2ivARB (will be remapped) */
"iip\0"
"glUniform2iv\0"
"glUniform2ivARB\0"
"\0"
- /* _mesa_function_pool[2366]: GetImageTransformParameterfvHP (dynamic) */
+ /* _mesa_function_pool[2327]: GetImageTransformParameterfvHP (dynamic) */
"iip\0"
"glGetImageTransformParameterfvHP\0"
"\0"
- /* _mesa_function_pool[2404]: Normal3bv (offset 53) */
+ /* _mesa_function_pool[2365]: Normal3bv (offset 53) */
"p\0"
"glNormal3bv\0"
"\0"
- /* _mesa_function_pool[2419]: TexGeniv (offset 193) */
+ /* _mesa_function_pool[2380]: TexGeniv (offset 193) */
"iip\0"
"glTexGeniv\0"
"\0"
- /* _mesa_function_pool[2435]: WeightubvARB (dynamic) */
+ /* _mesa_function_pool[2396]: WeightubvARB (dynamic) */
"ip\0"
"glWeightubvARB\0"
"\0"
- /* _mesa_function_pool[2454]: VertexAttrib1fvNV (will be remapped) */
+ /* _mesa_function_pool[2415]: VertexAttrib1fvNV (will be remapped) */
"ip\0"
"glVertexAttrib1fvNV\0"
"\0"
- /* _mesa_function_pool[2478]: Vertex3iv (offset 139) */
+ /* _mesa_function_pool[2439]: Vertex3iv (offset 139) */
"p\0"
"glVertex3iv\0"
"\0"
- /* _mesa_function_pool[2493]: CopyConvolutionFilter1D (offset 354) */
+ /* _mesa_function_pool[2454]: CopyConvolutionFilter1D (offset 354) */
"iiiii\0"
"glCopyConvolutionFilter1D\0"
"glCopyConvolutionFilter1DEXT\0"
"\0"
- /* _mesa_function_pool[2555]: VertexAttribI1uiEXT (will be remapped) */
+ /* _mesa_function_pool[2516]: VertexAttribI1uiEXT (will be remapped) */
"ii\0"
"glVertexAttribI1uiEXT\0"
"glVertexAttribI1ui\0"
"\0"
- /* _mesa_function_pool[2600]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[2561]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */
"iffffff\0"
"glReplacementCodeuiNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[2648]: DeleteSync (will be remapped) */
+ /* _mesa_function_pool[2609]: DeleteSync (will be remapped) */
"i\0"
"glDeleteSync\0"
"\0"
- /* _mesa_function_pool[2664]: FragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[2625]: FragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[2694]: BlendColor (offset 336) */
+ /* _mesa_function_pool[2655]: BlendColor (offset 336) */
"ffff\0"
"glBlendColor\0"
"glBlendColorEXT\0"
"\0"
- /* _mesa_function_pool[2729]: UniformMatrix4fvARB (will be remapped) */
+ /* _mesa_function_pool[2690]: UniformMatrix4fvARB (will be remapped) */
"iiip\0"
"glUniformMatrix4fv\0"
"glUniformMatrix4fvARB\0"
"\0"
- /* _mesa_function_pool[2776]: DeleteVertexArraysAPPLE (will be remapped) */
+ /* _mesa_function_pool[2737]: DeleteVertexArraysAPPLE (will be remapped) */
"ip\0"
"glDeleteVertexArrays\0"
"glDeleteVertexArraysAPPLE\0"
"\0"
- /* _mesa_function_pool[2827]: TexBuffer (will be remapped) */
+ /* _mesa_function_pool[2788]: TexBuffer (will be remapped) */
"iii\0"
"glTexBuffer\0"
"\0"
- /* _mesa_function_pool[2844]: ReadInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[2805]: ReadInstrumentsSGIX (dynamic) */
"i\0"
"glReadInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[2869]: CallLists (offset 3) */
+ /* _mesa_function_pool[2830]: CallLists (offset 3) */
"iip\0"
"glCallLists\0"
"\0"
- /* _mesa_function_pool[2886]: UniformMatrix2x4fv (will be remapped) */
+ /* _mesa_function_pool[2847]: UniformMatrix2x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x4fv\0"
"\0"
- /* _mesa_function_pool[2913]: Color4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[2874]: Color4ubVertex3fvSUN (dynamic) */
"pp\0"
"glColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[2940]: Normal3iv (offset 59) */
+ /* _mesa_function_pool[2901]: Normal3iv (offset 59) */
"p\0"
"glNormal3iv\0"
"\0"
- /* _mesa_function_pool[2955]: PassThrough (offset 199) */
+ /* _mesa_function_pool[2916]: PassThrough (offset 199) */
"f\0"
"glPassThrough\0"
"\0"
- /* _mesa_function_pool[2972]: GetVertexAttribIivEXT (will be remapped) */
+ /* _mesa_function_pool[2933]: GetVertexAttribIivEXT (will be remapped) */
"iip\0"
"glGetVertexAttribIivEXT\0"
"glGetVertexAttribIiv\0"
"\0"
- /* _mesa_function_pool[3022]: TexParameterIivEXT (will be remapped) */
+ /* _mesa_function_pool[2983]: TexParameterIivEXT (will be remapped) */
"iip\0"
"glTexParameterIivEXT\0"
"glTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[3066]: FramebufferTextureLayerEXT (will be remapped) */
+ /* _mesa_function_pool[3027]: FramebufferTextureLayerEXT (will be remapped) */
"iiiii\0"
"glFramebufferTextureLayer\0"
"glFramebufferTextureLayerEXT\0"
"\0"
- /* _mesa_function_pool[3128]: GetListParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[3089]: GetListParameterfvSGIX (dynamic) */
"iip\0"
"glGetListParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[3158]: Viewport (offset 305) */
+ /* _mesa_function_pool[3119]: Viewport (offset 305) */
"iiii\0"
"glViewport\0"
"\0"
- /* _mesa_function_pool[3175]: VertexAttrib4NusvARB (will be remapped) */
+ /* _mesa_function_pool[3136]: VertexAttrib4NusvARB (will be remapped) */
"ip\0"
"glVertexAttrib4Nusv\0"
"glVertexAttrib4NusvARB\0"
"\0"
- /* _mesa_function_pool[3222]: WindowPos4svMESA (will be remapped) */
+ /* _mesa_function_pool[3183]: WindowPos4svMESA (will be remapped) */
"p\0"
"glWindowPos4svMESA\0"
"\0"
- /* _mesa_function_pool[3244]: CreateProgramObjectARB (will be remapped) */
+ /* _mesa_function_pool[3205]: CreateProgramObjectARB (will be remapped) */
"\0"
"glCreateProgramObjectARB\0"
"\0"
- /* _mesa_function_pool[3271]: DeleteTransformFeedbacks (will be remapped) */
+ /* _mesa_function_pool[3232]: DeleteTransformFeedbacks (will be remapped) */
"ip\0"
"glDeleteTransformFeedbacks\0"
"\0"
- /* _mesa_function_pool[3302]: UniformMatrix4x3fv (will be remapped) */
+ /* _mesa_function_pool[3263]: UniformMatrix4x3fv (will be remapped) */
"iiip\0"
"glUniformMatrix4x3fv\0"
"\0"
- /* _mesa_function_pool[3329]: PrioritizeTextures (offset 331) */
+ /* _mesa_function_pool[3290]: PrioritizeTextures (offset 331) */
"ipp\0"
"glPrioritizeTextures\0"
"glPrioritizeTexturesEXT\0"
"\0"
- /* _mesa_function_pool[3379]: VertexAttribI3uiEXT (will be remapped) */
+ /* _mesa_function_pool[3340]: VertexAttribI3uiEXT (will be remapped) */
"iiii\0"
"glVertexAttribI3uiEXT\0"
"glVertexAttribI3ui\0"
"\0"
- /* _mesa_function_pool[3426]: AsyncMarkerSGIX (dynamic) */
+ /* _mesa_function_pool[3387]: AsyncMarkerSGIX (dynamic) */
"i\0"
"glAsyncMarkerSGIX\0"
"\0"
- /* _mesa_function_pool[3447]: GlobalAlphaFactorubSUN (dynamic) */
+ /* _mesa_function_pool[3408]: GlobalAlphaFactorubSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorubSUN\0"
"\0"
- /* _mesa_function_pool[3475]: ClearColorIuiEXT (will be remapped) */
+ /* _mesa_function_pool[3436]: ClearColorIuiEXT (will be remapped) */
"iiii\0"
"glClearColorIuiEXT\0"
"\0"
- /* _mesa_function_pool[3500]: ClearDebugLogMESA (dynamic) */
+ /* _mesa_function_pool[3461]: ClearDebugLogMESA (dynamic) */
"iii\0"
"glClearDebugLogMESA\0"
"\0"
- /* _mesa_function_pool[3525]: Uniform4uiEXT (will be remapped) */
+ /* _mesa_function_pool[3486]: Uniform4uiEXT (will be remapped) */
"iiiii\0"
"glUniform4uiEXT\0"
"glUniform4ui\0"
"\0"
- /* _mesa_function_pool[3561]: ResetHistogram (offset 369) */
+ /* _mesa_function_pool[3522]: ResetHistogram (offset 369) */
"i\0"
"glResetHistogram\0"
"glResetHistogramEXT\0"
"\0"
- /* _mesa_function_pool[3601]: GetProgramNamedParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[3562]: GetProgramNamedParameterfvNV (will be remapped) */
"iipp\0"
"glGetProgramNamedParameterfvNV\0"
"\0"
- /* _mesa_function_pool[3638]: PointParameterfEXT (will be remapped) */
+ /* _mesa_function_pool[3599]: PointParameterfEXT (will be remapped) */
"if\0"
"glPointParameterf\0"
"glPointParameterfARB\0"
"glPointParameterfEXT\0"
"glPointParameterfSGIS\0"
"\0"
- /* _mesa_function_pool[3724]: LoadIdentityDeformationMapSGIX (dynamic) */
+ /* _mesa_function_pool[3685]: LoadIdentityDeformationMapSGIX (dynamic) */
"i\0"
"glLoadIdentityDeformationMapSGIX\0"
"\0"
- /* _mesa_function_pool[3760]: GenFencesNV (will be remapped) */
+ /* _mesa_function_pool[3721]: GenFencesNV (will be remapped) */
"ip\0"
"glGenFencesNV\0"
"\0"
- /* _mesa_function_pool[3778]: ImageTransformParameterfHP (dynamic) */
+ /* _mesa_function_pool[3739]: ImageTransformParameterfHP (dynamic) */
"iif\0"
"glImageTransformParameterfHP\0"
"\0"
- /* _mesa_function_pool[3812]: MatrixIndexusvARB (dynamic) */
+ /* _mesa_function_pool[3773]: MatrixIndexusvARB (dynamic) */
"ip\0"
"glMatrixIndexusvARB\0"
"\0"
- /* _mesa_function_pool[3836]: DrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[3797]: DrawElementsBaseVertex (will be remapped) */
"iiipi\0"
"glDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[3868]: DisableVertexAttribArrayARB (will be remapped) */
+ /* _mesa_function_pool[3829]: DisableVertexAttribArrayARB (will be remapped) */
"i\0"
"glDisableVertexAttribArray\0"
"glDisableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[3928]: TexCoord2sv (offset 109) */
+ /* _mesa_function_pool[3889]: TexCoord2sv (offset 109) */
"p\0"
"glTexCoord2sv\0"
"\0"
- /* _mesa_function_pool[3945]: Vertex4dv (offset 143) */
+ /* _mesa_function_pool[3906]: Vertex4dv (offset 143) */
"p\0"
"glVertex4dv\0"
"\0"
- /* _mesa_function_pool[3960]: StencilMaskSeparate (will be remapped) */
+ /* _mesa_function_pool[3921]: StencilMaskSeparate (will be remapped) */
"ii\0"
"glStencilMaskSeparate\0"
"\0"
- /* _mesa_function_pool[3986]: ProgramLocalParameter4dARB (will be remapped) */
+ /* _mesa_function_pool[3947]: ProgramLocalParameter4dARB (will be remapped) */
"iidddd\0"
"glProgramLocalParameter4dARB\0"
"\0"
- /* _mesa_function_pool[4023]: CompressedTexImage3DARB (will be remapped) */
+ /* _mesa_function_pool[3984]: CompressedTexImage3DARB (will be remapped) */
"iiiiiiiip\0"
"glCompressedTexImage3D\0"
"glCompressedTexImage3DARB\0"
"\0"
- /* _mesa_function_pool[4083]: Color3sv (offset 18) */
+ /* _mesa_function_pool[4044]: Color3sv (offset 18) */
"p\0"
"glColor3sv\0"
"\0"
- /* _mesa_function_pool[4097]: GetConvolutionParameteriv (offset 358) */
+ /* _mesa_function_pool[4058]: GetConvolutionParameteriv (offset 358) */
"iip\0"
"glGetConvolutionParameteriv\0"
"glGetConvolutionParameterivEXT\0"
"\0"
- /* _mesa_function_pool[4161]: VertexAttrib1fARB (will be remapped) */
+ /* _mesa_function_pool[4122]: VertexAttrib1fARB (will be remapped) */
"if\0"
"glVertexAttrib1f\0"
"glVertexAttrib1fARB\0"
"\0"
- /* _mesa_function_pool[4202]: Vertex2dv (offset 127) */
+ /* _mesa_function_pool[4163]: Vertex2dv (offset 127) */
"p\0"
"glVertex2dv\0"
"\0"
- /* _mesa_function_pool[4217]: TestFenceNV (will be remapped) */
+ /* _mesa_function_pool[4178]: TestFenceNV (will be remapped) */
"i\0"
"glTestFenceNV\0"
"\0"
- /* _mesa_function_pool[4234]: MultiTexCoord1fvARB (offset 379) */
+ /* _mesa_function_pool[4195]: GetVertexAttribIuivEXT (will be remapped) */
+ "iip\0"
+ "glGetVertexAttribIuivEXT\0"
+ "glGetVertexAttribIuiv\0"
+ "\0"
+ /* _mesa_function_pool[4247]: MultiTexCoord1fvARB (offset 379) */
"ip\0"
"glMultiTexCoord1fv\0"
"glMultiTexCoord1fvARB\0"
"\0"
- /* _mesa_function_pool[4279]: TexCoord3iv (offset 115) */
+ /* _mesa_function_pool[4292]: TexCoord3iv (offset 115) */
"p\0"
"glTexCoord3iv\0"
"\0"
- /* _mesa_function_pool[4296]: Uniform2uivEXT (will be remapped) */
+ /* _mesa_function_pool[4309]: Uniform2uivEXT (will be remapped) */
"iip\0"
"glUniform2uivEXT\0"
"glUniform2uiv\0"
"\0"
- /* _mesa_function_pool[4332]: ColorFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[4345]: ColorFragmentOp2ATI (will be remapped) */
"iiiiiiiiii\0"
"glColorFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[4366]: SecondaryColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[4379]: SecondaryColorPointerListIBM (dynamic) */
"iiipi\0"
"glSecondaryColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[4404]: GetPixelTexGenParameterivSGIS (will be remapped) */
+ /* _mesa_function_pool[4417]: GetPixelTexGenParameterivSGIS (will be remapped) */
"ip\0"
"glGetPixelTexGenParameterivSGIS\0"
"\0"
- /* _mesa_function_pool[4440]: Color3fv (offset 14) */
+ /* _mesa_function_pool[4453]: Color3fv (offset 14) */
"p\0"
"glColor3fv\0"
"\0"
- /* _mesa_function_pool[4454]: VertexAttrib4fNV (will be remapped) */
+ /* _mesa_function_pool[4467]: VertexAttrib4fNV (will be remapped) */
"iffff\0"
"glVertexAttrib4fNV\0"
"\0"
- /* _mesa_function_pool[4480]: ReplacementCodeubSUN (dynamic) */
+ /* _mesa_function_pool[4493]: ReplacementCodeubSUN (dynamic) */
"i\0"
"glReplacementCodeubSUN\0"
"\0"
- /* _mesa_function_pool[4506]: FinishAsyncSGIX (dynamic) */
+ /* _mesa_function_pool[4519]: FinishAsyncSGIX (dynamic) */
"p\0"
"glFinishAsyncSGIX\0"
"\0"
- /* _mesa_function_pool[4527]: GetDebugLogMESA (dynamic) */
+ /* _mesa_function_pool[4540]: GetDebugLogMESA (dynamic) */
"iiiipp\0"
"glGetDebugLogMESA\0"
"\0"
- /* _mesa_function_pool[4553]: FogCoorddEXT (will be remapped) */
+ /* _mesa_function_pool[4566]: FogCoorddEXT (will be remapped) */
"d\0"
"glFogCoordd\0"
"glFogCoorddEXT\0"
"\0"
- /* _mesa_function_pool[4583]: BeginConditionalRenderNV (will be remapped) */
+ /* _mesa_function_pool[4596]: BeginConditionalRenderNV (will be remapped) */
"ii\0"
"glBeginConditionalRenderNV\0"
"glBeginConditionalRender\0"
"\0"
- /* _mesa_function_pool[4639]: Color4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[4652]: Color4ubVertex3fSUN (dynamic) */
"iiiifff\0"
"glColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[4670]: FogCoordfEXT (will be remapped) */
+ /* _mesa_function_pool[4683]: FogCoordfEXT (will be remapped) */
"f\0"
"glFogCoordf\0"
"glFogCoordfEXT\0"
"\0"
- /* _mesa_function_pool[4700]: PointSize (offset 173) */
+ /* _mesa_function_pool[4713]: PointSize (offset 173) */
"f\0"
"glPointSize\0"
"\0"
- /* _mesa_function_pool[4715]: VertexAttribI2uivEXT (will be remapped) */
+ /* _mesa_function_pool[4728]: VertexAttribI2uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI2uivEXT\0"
"glVertexAttribI2uiv\0"
"\0"
- /* _mesa_function_pool[4762]: TexCoord2fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[4775]: TexCoord2fVertex3fSUN (dynamic) */
"fffff\0"
"glTexCoord2fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[4793]: PopName (offset 200) */
+ /* _mesa_function_pool[4806]: PopName (offset 200) */
"\0"
"glPopName\0"
"\0"
- /* _mesa_function_pool[4805]: GlobalAlphaFactoriSUN (dynamic) */
+ /* _mesa_function_pool[4818]: GlobalAlphaFactoriSUN (dynamic) */
"i\0"
"glGlobalAlphaFactoriSUN\0"
"\0"
- /* _mesa_function_pool[4832]: VertexAttrib2dNV (will be remapped) */
+ /* _mesa_function_pool[4845]: VertexAttrib2dNV (will be remapped) */
"idd\0"
"glVertexAttrib2dNV\0"
"\0"
- /* _mesa_function_pool[4856]: GetProgramInfoLog (will be remapped) */
+ /* _mesa_function_pool[4869]: GetProgramInfoLog (will be remapped) */
"iipp\0"
"glGetProgramInfoLog\0"
"\0"
- /* _mesa_function_pool[4882]: VertexAttrib4NbvARB (will be remapped) */
+ /* _mesa_function_pool[4895]: VertexAttrib4NbvARB (will be remapped) */
"ip\0"
"glVertexAttrib4Nbv\0"
"glVertexAttrib4NbvARB\0"
"\0"
- /* _mesa_function_pool[4927]: GetActiveAttribARB (will be remapped) */
+ /* _mesa_function_pool[4940]: GetActiveAttribARB (will be remapped) */
"iiipppp\0"
"glGetActiveAttrib\0"
"glGetActiveAttribARB\0"
"\0"
- /* _mesa_function_pool[4975]: Vertex4sv (offset 149) */
+ /* _mesa_function_pool[4988]: Vertex4sv (offset 149) */
"p\0"
"glVertex4sv\0"
"\0"
- /* _mesa_function_pool[4990]: VertexAttrib4ubNV (will be remapped) */
+ /* _mesa_function_pool[5003]: VertexAttrib4ubNV (will be remapped) */
"iiiii\0"
"glVertexAttrib4ubNV\0"
"\0"
- /* _mesa_function_pool[5017]: ClampColor (will be remapped) */
+ /* _mesa_function_pool[5030]: ClampColor (will be remapped) */
"ii\0"
"glClampColor\0"
"\0"
- /* _mesa_function_pool[5034]: TextureRangeAPPLE (will be remapped) */
+ /* _mesa_function_pool[5047]: TextureRangeAPPLE (will be remapped) */
"iip\0"
"glTextureRangeAPPLE\0"
"\0"
- /* _mesa_function_pool[5059]: GetTexEnvfv (offset 276) */
+ /* _mesa_function_pool[5072]: GetTexEnvfv (offset 276) */
"iip\0"
"glGetTexEnvfv\0"
"\0"
- /* _mesa_function_pool[5078]: BindTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[5091]: BindTransformFeedback (will be remapped) */
"ii\0"
"glBindTransformFeedback\0"
"\0"
- /* _mesa_function_pool[5106]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[5119]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
"ffffffffffff\0"
"glTexCoord2fColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[5159]: Indexub (offset 315) */
+ /* _mesa_function_pool[5172]: Indexub (offset 315) */
"i\0"
"glIndexub\0"
"\0"
- /* _mesa_function_pool[5172]: ColorMaskIndexedEXT (will be remapped) */
- "iiiii\0"
- "glColorMaskIndexedEXT\0"
- "glColorMaski\0"
- "\0"
- /* _mesa_function_pool[5214]: TexEnvi (offset 186) */
+ /* _mesa_function_pool[5185]: TexEnvi (offset 186) */
"iii\0"
"glTexEnvi\0"
"\0"
- /* _mesa_function_pool[5229]: GetClipPlane (offset 259) */
+ /* _mesa_function_pool[5200]: GetClipPlane (offset 259) */
"ip\0"
"glGetClipPlane\0"
"\0"
- /* _mesa_function_pool[5248]: CombinerParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[5219]: CombinerParameterfvNV (will be remapped) */
"ip\0"
"glCombinerParameterfvNV\0"
"\0"
- /* _mesa_function_pool[5276]: VertexAttribs3dvNV (will be remapped) */
+ /* _mesa_function_pool[5247]: VertexAttribs3dvNV (will be remapped) */
"iip\0"
"glVertexAttribs3dvNV\0"
"\0"
- /* _mesa_function_pool[5302]: VertexAttribI2uiEXT (will be remapped) */
+ /* _mesa_function_pool[5273]: VertexAttribI2uiEXT (will be remapped) */
"iii\0"
"glVertexAttribI2uiEXT\0"
"glVertexAttribI2ui\0"
"\0"
- /* _mesa_function_pool[5348]: VertexAttribs4fvNV (will be remapped) */
+ /* _mesa_function_pool[5319]: VertexAttribs4fvNV (will be remapped) */
"iip\0"
"glVertexAttribs4fvNV\0"
"\0"
- /* _mesa_function_pool[5374]: VertexArrayRangeNV (will be remapped) */
+ /* _mesa_function_pool[5345]: VertexArrayRangeNV (will be remapped) */
"ip\0"
"glVertexArrayRangeNV\0"
"\0"
- /* _mesa_function_pool[5399]: FragmentLightiSGIX (dynamic) */
+ /* _mesa_function_pool[5370]: FragmentLightiSGIX (dynamic) */
"iii\0"
"glFragmentLightiSGIX\0"
"\0"
- /* _mesa_function_pool[5425]: PolygonOffsetEXT (will be remapped) */
+ /* _mesa_function_pool[5396]: PolygonOffsetEXT (will be remapped) */
"ff\0"
"glPolygonOffsetEXT\0"
"\0"
- /* _mesa_function_pool[5448]: VertexAttribI4uivEXT (will be remapped) */
+ /* _mesa_function_pool[5419]: VertexAttribI4uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI4uivEXT\0"
"glVertexAttribI4uiv\0"
"\0"
- /* _mesa_function_pool[5495]: PollAsyncSGIX (dynamic) */
+ /* _mesa_function_pool[5466]: PollAsyncSGIX (dynamic) */
"p\0"
"glPollAsyncSGIX\0"
"\0"
- /* _mesa_function_pool[5514]: DeleteFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[5485]: DeleteFragmentShaderATI (will be remapped) */
"i\0"
"glDeleteFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[5543]: Scaled (offset 301) */
+ /* _mesa_function_pool[5514]: Scaled (offset 301) */
"ddd\0"
"glScaled\0"
"\0"
- /* _mesa_function_pool[5557]: ResumeTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[5528]: ResumeTransformFeedback (will be remapped) */
"\0"
"glResumeTransformFeedback\0"
"\0"
- /* _mesa_function_pool[5585]: Scalef (offset 302) */
+ /* _mesa_function_pool[5556]: Scalef (offset 302) */
"fff\0"
"glScalef\0"
"\0"
- /* _mesa_function_pool[5599]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[5570]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[5637]: MultTransposeMatrixdARB (will be remapped) */
+ /* _mesa_function_pool[5608]: MultTransposeMatrixdARB (will be remapped) */
"p\0"
"glMultTransposeMatrixd\0"
"glMultTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[5689]: ObjectUnpurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[5660]: ColorMaskIndexedEXT (will be remapped) */
+ "iiiii\0"
+ "glColorMaskIndexedEXT\0"
+ "glColorMaski\0"
+ "\0"
+ /* _mesa_function_pool[5702]: ObjectUnpurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectUnpurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[5719]: AlphaFunc (offset 240) */
+ /* _mesa_function_pool[5732]: AlphaFunc (offset 240) */
"if\0"
"glAlphaFunc\0"
"\0"
- /* _mesa_function_pool[5735]: WindowPos2svMESA (will be remapped) */
+ /* _mesa_function_pool[5748]: WindowPos2svMESA (will be remapped) */
"p\0"
"glWindowPos2sv\0"
"glWindowPos2svARB\0"
"glWindowPos2svMESA\0"
"\0"
- /* _mesa_function_pool[5790]: EdgeFlag (offset 41) */
+ /* _mesa_function_pool[5803]: EdgeFlag (offset 41) */
"i\0"
"glEdgeFlag\0"
"\0"
- /* _mesa_function_pool[5804]: TexCoord2iv (offset 107) */
+ /* _mesa_function_pool[5817]: TexCoord2iv (offset 107) */
"p\0"
"glTexCoord2iv\0"
"\0"
- /* _mesa_function_pool[5821]: CompressedTexImage1DARB (will be remapped) */
+ /* _mesa_function_pool[5834]: CompressedTexImage1DARB (will be remapped) */
"iiiiiip\0"
"glCompressedTexImage1D\0"
"glCompressedTexImage1DARB\0"
"\0"
- /* _mesa_function_pool[5879]: Rotated (offset 299) */
+ /* _mesa_function_pool[5892]: Rotated (offset 299) */
"dddd\0"
"glRotated\0"
"\0"
- /* _mesa_function_pool[5895]: GetTexParameterIuivEXT (will be remapped) */
+ /* _mesa_function_pool[5908]: GetTexParameterIuivEXT (will be remapped) */
"iip\0"
"glGetTexParameterIuivEXT\0"
"glGetTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[5947]: VertexAttrib2sNV (will be remapped) */
+ /* _mesa_function_pool[5960]: VertexAttrib2sNV (will be remapped) */
"iii\0"
"glVertexAttrib2sNV\0"
"\0"
- /* _mesa_function_pool[5971]: ReadPixels (offset 256) */
+ /* _mesa_function_pool[5984]: ReadPixels (offset 256) */
"iiiiiip\0"
"glReadPixels\0"
"\0"
- /* _mesa_function_pool[5993]: EdgeFlagv (offset 42) */
+ /* _mesa_function_pool[6006]: EdgeFlagv (offset 42) */
"p\0"
"glEdgeFlagv\0"
"\0"
- /* _mesa_function_pool[6008]: NormalPointerListIBM (dynamic) */
+ /* _mesa_function_pool[6021]: NormalPointerListIBM (dynamic) */
"iipi\0"
"glNormalPointerListIBM\0"
"\0"
- /* _mesa_function_pool[6037]: IndexPointerEXT (will be remapped) */
+ /* _mesa_function_pool[6050]: IndexPointerEXT (will be remapped) */
"iiip\0"
"glIndexPointerEXT\0"
"\0"
- /* _mesa_function_pool[6061]: Color4iv (offset 32) */
+ /* _mesa_function_pool[6074]: Color4iv (offset 32) */
"p\0"
"glColor4iv\0"
"\0"
- /* _mesa_function_pool[6075]: TexParameterf (offset 178) */
+ /* _mesa_function_pool[6088]: TexParameterf (offset 178) */
"iif\0"
"glTexParameterf\0"
"\0"
- /* _mesa_function_pool[6096]: TexParameteri (offset 180) */
+ /* _mesa_function_pool[6109]: TexParameteri (offset 180) */
"iii\0"
"glTexParameteri\0"
"\0"
- /* _mesa_function_pool[6117]: NormalPointerEXT (will be remapped) */
+ /* _mesa_function_pool[6130]: NormalPointerEXT (will be remapped) */
"iiip\0"
"glNormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[6142]: MultiTexCoord3dARB (offset 392) */
+ /* _mesa_function_pool[6155]: MultiTexCoord3dARB (offset 392) */
"iddd\0"
"glMultiTexCoord3d\0"
"glMultiTexCoord3dARB\0"
"\0"
- /* _mesa_function_pool[6187]: MultiTexCoord2iARB (offset 388) */
+ /* _mesa_function_pool[6200]: MultiTexCoord2iARB (offset 388) */
"iii\0"
"glMultiTexCoord2i\0"
"glMultiTexCoord2iARB\0"
"\0"
- /* _mesa_function_pool[6231]: DrawPixels (offset 257) */
+ /* _mesa_function_pool[6244]: DrawPixels (offset 257) */
"iiiip\0"
"glDrawPixels\0"
"\0"
- /* _mesa_function_pool[6251]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[6264]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */
"iffffffff\0"
"glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[6311]: MultiTexCoord2svARB (offset 391) */
+ /* _mesa_function_pool[6324]: MultiTexCoord2svARB (offset 391) */
"ip\0"
"glMultiTexCoord2sv\0"
"glMultiTexCoord2svARB\0"
"\0"
- /* _mesa_function_pool[6356]: ReplacementCodeubvSUN (dynamic) */
+ /* _mesa_function_pool[6369]: ReplacementCodeubvSUN (dynamic) */
"p\0"
"glReplacementCodeubvSUN\0"
"\0"
- /* _mesa_function_pool[6383]: Uniform3iARB (will be remapped) */
+ /* _mesa_function_pool[6396]: Uniform3iARB (will be remapped) */
"iiii\0"
"glUniform3i\0"
"glUniform3iARB\0"
"\0"
- /* _mesa_function_pool[6416]: DrawTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[6429]: DrawTransformFeedback (will be remapped) */
"ii\0"
"glDrawTransformFeedback\0"
"\0"
- /* _mesa_function_pool[6444]: DrawElementsInstancedARB (will be remapped) */
+ /* _mesa_function_pool[6457]: DrawElementsInstancedARB (will be remapped) */
"iiipi\0"
"glDrawElementsInstancedARB\0"
"glDrawElementsInstancedEXT\0"
"glDrawElementsInstanced\0"
"\0"
- /* _mesa_function_pool[6529]: GetShaderInfoLog (will be remapped) */
+ /* _mesa_function_pool[6542]: GetShaderInfoLog (will be remapped) */
"iipp\0"
"glGetShaderInfoLog\0"
"\0"
- /* _mesa_function_pool[6554]: WeightivARB (dynamic) */
+ /* _mesa_function_pool[6567]: WeightivARB (dynamic) */
"ip\0"
"glWeightivARB\0"
"\0"
- /* _mesa_function_pool[6572]: PollInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[6585]: PollInstrumentsSGIX (dynamic) */
"p\0"
"glPollInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[6597]: GlobalAlphaFactordSUN (dynamic) */
+ /* _mesa_function_pool[6610]: GlobalAlphaFactordSUN (dynamic) */
"d\0"
"glGlobalAlphaFactordSUN\0"
"\0"
- /* _mesa_function_pool[6624]: GetFinalCombinerInputParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[6637]: GetFinalCombinerInputParameterfvNV (will be remapped) */
"iip\0"
"glGetFinalCombinerInputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[6666]: GenerateMipmapEXT (will be remapped) */
+ /* _mesa_function_pool[6679]: GenerateMipmapEXT (will be remapped) */
"i\0"
"glGenerateMipmap\0"
"glGenerateMipmapEXT\0"
"\0"
- /* _mesa_function_pool[6706]: GenLists (offset 5) */
+ /* _mesa_function_pool[6719]: GenLists (offset 5) */
"i\0"
"glGenLists\0"
"\0"
- /* _mesa_function_pool[6720]: DepthRangef (will be remapped) */
+ /* _mesa_function_pool[6733]: DepthRangef (will be remapped) */
"ff\0"
"glDepthRangef\0"
"\0"
- /* _mesa_function_pool[6738]: GetMapAttribParameterivNV (dynamic) */
+ /* _mesa_function_pool[6751]: GetMapAttribParameterivNV (dynamic) */
"iiip\0"
"glGetMapAttribParameterivNV\0"
"\0"
- /* _mesa_function_pool[6772]: CreateShaderObjectARB (will be remapped) */
+ /* _mesa_function_pool[6785]: CreateShaderObjectARB (will be remapped) */
"i\0"
"glCreateShaderObjectARB\0"
"\0"
- /* _mesa_function_pool[6799]: GetSharpenTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[6812]: GetSharpenTexFuncSGIS (dynamic) */
"ip\0"
"glGetSharpenTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[6827]: BufferDataARB (will be remapped) */
+ /* _mesa_function_pool[6840]: BufferDataARB (will be remapped) */
"iipi\0"
"glBufferData\0"
"glBufferDataARB\0"
"\0"
- /* _mesa_function_pool[6862]: FlushVertexArrayRangeNV (will be remapped) */
+ /* _mesa_function_pool[6875]: FlushVertexArrayRangeNV (will be remapped) */
"\0"
"glFlushVertexArrayRangeNV\0"
"\0"
- /* _mesa_function_pool[6890]: MapGrid2d (offset 226) */
+ /* _mesa_function_pool[6903]: MapGrid2d (offset 226) */
"iddidd\0"
"glMapGrid2d\0"
"\0"
- /* _mesa_function_pool[6910]: MapGrid2f (offset 227) */
+ /* _mesa_function_pool[6923]: MapGrid2f (offset 227) */
"iffiff\0"
"glMapGrid2f\0"
"\0"
- /* _mesa_function_pool[6930]: SampleMapATI (will be remapped) */
+ /* _mesa_function_pool[6943]: SampleMapATI (will be remapped) */
"iii\0"
"glSampleMapATI\0"
"\0"
- /* _mesa_function_pool[6950]: VertexPointerEXT (will be remapped) */
+ /* _mesa_function_pool[6963]: VertexPointerEXT (will be remapped) */
"iiiip\0"
"glVertexPointerEXT\0"
"\0"
- /* _mesa_function_pool[6976]: GetTexFilterFuncSGIS (dynamic) */
+ /* _mesa_function_pool[6989]: GetTexFilterFuncSGIS (dynamic) */
"iip\0"
"glGetTexFilterFuncSGIS\0"
"\0"
- /* _mesa_function_pool[7004]: Scissor (offset 176) */
+ /* _mesa_function_pool[7017]: Scissor (offset 176) */
"iiii\0"
"glScissor\0"
"\0"
- /* _mesa_function_pool[7020]: Fogf (offset 153) */
+ /* _mesa_function_pool[7033]: Fogf (offset 153) */
"if\0"
"glFogf\0"
"\0"
- /* _mesa_function_pool[7031]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[7044]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[7076]: TexSubImage1D (offset 332) */
+ /* _mesa_function_pool[7089]: TexSubImage1D (offset 332) */
"iiiiiip\0"
"glTexSubImage1D\0"
"glTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[7120]: VertexAttrib1sARB (will be remapped) */
+ /* _mesa_function_pool[7133]: VertexAttrib1sARB (will be remapped) */
"ii\0"
"glVertexAttrib1s\0"
"glVertexAttrib1sARB\0"
"\0"
- /* _mesa_function_pool[7161]: FenceSync (will be remapped) */
+ /* _mesa_function_pool[7174]: FenceSync (will be remapped) */
"ii\0"
"glFenceSync\0"
"\0"
- /* _mesa_function_pool[7177]: Color4usv (offset 40) */
+ /* _mesa_function_pool[7190]: Color4usv (offset 40) */
"p\0"
"glColor4usv\0"
"\0"
- /* _mesa_function_pool[7192]: Fogi (offset 155) */
+ /* _mesa_function_pool[7205]: Fogi (offset 155) */
"ii\0"
"glFogi\0"
"\0"
- /* _mesa_function_pool[7203]: DepthRange (offset 288) */
+ /* _mesa_function_pool[7216]: DepthRange (offset 288) */
"dd\0"
"glDepthRange\0"
"\0"
- /* _mesa_function_pool[7220]: RasterPos3iv (offset 75) */
+ /* _mesa_function_pool[7233]: RasterPos3iv (offset 75) */
"p\0"
"glRasterPos3iv\0"
"\0"
- /* _mesa_function_pool[7238]: FinalCombinerInputNV (will be remapped) */
+ /* _mesa_function_pool[7251]: FinalCombinerInputNV (will be remapped) */
"iiii\0"
"glFinalCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[7267]: TexCoord2i (offset 106) */
+ /* _mesa_function_pool[7280]: TexCoord2i (offset 106) */
"ii\0"
"glTexCoord2i\0"
"\0"
- /* _mesa_function_pool[7284]: PixelMapfv (offset 251) */
+ /* _mesa_function_pool[7297]: PixelMapfv (offset 251) */
"iip\0"
"glPixelMapfv\0"
"\0"
- /* _mesa_function_pool[7302]: Color4ui (offset 37) */
+ /* _mesa_function_pool[7315]: Color4ui (offset 37) */
"iiii\0"
"glColor4ui\0"
"\0"
- /* _mesa_function_pool[7319]: RasterPos3s (offset 76) */
+ /* _mesa_function_pool[7332]: RasterPos3s (offset 76) */
"iii\0"
"glRasterPos3s\0"
"\0"
- /* _mesa_function_pool[7338]: Color3usv (offset 24) */
+ /* _mesa_function_pool[7351]: Color3usv (offset 24) */
"p\0"
"glColor3usv\0"
"\0"
- /* _mesa_function_pool[7353]: FlushRasterSGIX (dynamic) */
+ /* _mesa_function_pool[7366]: FlushRasterSGIX (dynamic) */
"\0"
"glFlushRasterSGIX\0"
"\0"
- /* _mesa_function_pool[7373]: TexCoord2f (offset 104) */
+ /* _mesa_function_pool[7386]: TexCoord2f (offset 104) */
"ff\0"
"glTexCoord2f\0"
"\0"
- /* _mesa_function_pool[7390]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[7403]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */
"ifffff\0"
"glReplacementCodeuiTexCoord2fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[7439]: TexCoord2d (offset 102) */
+ /* _mesa_function_pool[7452]: TexCoord2d (offset 102) */
"dd\0"
"glTexCoord2d\0"
"\0"
- /* _mesa_function_pool[7456]: RasterPos3d (offset 70) */
+ /* _mesa_function_pool[7469]: RasterPos3d (offset 70) */
"ddd\0"
"glRasterPos3d\0"
"\0"
- /* _mesa_function_pool[7475]: RasterPos3f (offset 72) */
+ /* _mesa_function_pool[7488]: RasterPos3f (offset 72) */
"fff\0"
"glRasterPos3f\0"
"\0"
- /* _mesa_function_pool[7494]: Uniform1fARB (will be remapped) */
+ /* _mesa_function_pool[7507]: Uniform1fARB (will be remapped) */
"if\0"
"glUniform1f\0"
"glUniform1fARB\0"
"\0"
- /* _mesa_function_pool[7525]: AreTexturesResident (offset 322) */
+ /* _mesa_function_pool[7538]: AreTexturesResident (offset 322) */
"ipp\0"
"glAreTexturesResident\0"
"glAreTexturesResidentEXT\0"
"\0"
- /* _mesa_function_pool[7577]: TexCoord2s (offset 108) */
+ /* _mesa_function_pool[7590]: TexCoord2s (offset 108) */
"ii\0"
"glTexCoord2s\0"
"\0"
- /* _mesa_function_pool[7594]: StencilOpSeparate (will be remapped) */
+ /* _mesa_function_pool[7607]: StencilOpSeparate (will be remapped) */
"iiii\0"
"glStencilOpSeparate\0"
"glStencilOpSeparateATI\0"
"\0"
- /* _mesa_function_pool[7643]: ColorTableParameteriv (offset 341) */
+ /* _mesa_function_pool[7656]: ColorTableParameteriv (offset 341) */
"iip\0"
"glColorTableParameteriv\0"
"glColorTableParameterivSGI\0"
"\0"
- /* _mesa_function_pool[7699]: FogCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[7712]: FogCoordPointerListIBM (dynamic) */
"iipi\0"
"glFogCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[7730]: WindowPos3dMESA (will be remapped) */
+ /* _mesa_function_pool[7743]: WindowPos3dMESA (will be remapped) */
"ddd\0"
"glWindowPos3d\0"
"glWindowPos3dARB\0"
"glWindowPos3dMESA\0"
"\0"
- /* _mesa_function_pool[7784]: Color4us (offset 39) */
+ /* _mesa_function_pool[7797]: Color4us (offset 39) */
"iiii\0"
"glColor4us\0"
"\0"
- /* _mesa_function_pool[7801]: PointParameterfvEXT (will be remapped) */
+ /* _mesa_function_pool[7814]: PointParameterfvEXT (will be remapped) */
"ip\0"
"glPointParameterfv\0"
"glPointParameterfvARB\0"
"glPointParameterfvEXT\0"
"glPointParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[7891]: Color3bv (offset 10) */
+ /* _mesa_function_pool[7904]: Color3bv (offset 10) */
"p\0"
"glColor3bv\0"
"\0"
- /* _mesa_function_pool[7905]: WindowPos2fvMESA (will be remapped) */
+ /* _mesa_function_pool[7918]: WindowPos2fvMESA (will be remapped) */
"p\0"
"glWindowPos2fv\0"
"glWindowPos2fvARB\0"
"glWindowPos2fvMESA\0"
"\0"
- /* _mesa_function_pool[7960]: SecondaryColor3bvEXT (will be remapped) */
+ /* _mesa_function_pool[7973]: SecondaryColor3bvEXT (will be remapped) */
"p\0"
"glSecondaryColor3bv\0"
"glSecondaryColor3bvEXT\0"
"\0"
- /* _mesa_function_pool[8006]: VertexPointerListIBM (dynamic) */
+ /* _mesa_function_pool[8019]: VertexPointerListIBM (dynamic) */
"iiipi\0"
"glVertexPointerListIBM\0"
"\0"
- /* _mesa_function_pool[8036]: GetProgramLocalParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[8049]: GetProgramLocalParameterfvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterfvARB\0"
"\0"
- /* _mesa_function_pool[8073]: FragmentMaterialfSGIX (dynamic) */
+ /* _mesa_function_pool[8086]: FragmentMaterialfSGIX (dynamic) */
"iif\0"
"glFragmentMaterialfSGIX\0"
"\0"
- /* _mesa_function_pool[8102]: TexCoord2fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[8115]: TexCoord2fNormal3fVertex3fSUN (dynamic) */
"ffffffff\0"
"glTexCoord2fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[8144]: RenderbufferStorageEXT (will be remapped) */
+ /* _mesa_function_pool[8157]: RenderbufferStorageEXT (will be remapped) */
"iiii\0"
"glRenderbufferStorage\0"
"glRenderbufferStorageEXT\0"
"\0"
- /* _mesa_function_pool[8197]: IsFenceNV (will be remapped) */
+ /* _mesa_function_pool[8210]: IsFenceNV (will be remapped) */
"i\0"
"glIsFenceNV\0"
"\0"
- /* _mesa_function_pool[8212]: AttachObjectARB (will be remapped) */
+ /* _mesa_function_pool[8225]: AttachObjectARB (will be remapped) */
"ii\0"
"glAttachObjectARB\0"
"\0"
- /* _mesa_function_pool[8234]: GetFragmentLightivSGIX (dynamic) */
+ /* _mesa_function_pool[8247]: GetFragmentLightivSGIX (dynamic) */
"iip\0"
"glGetFragmentLightivSGIX\0"
"\0"
- /* _mesa_function_pool[8264]: UniformMatrix2fvARB (will be remapped) */
+ /* _mesa_function_pool[8277]: UniformMatrix2fvARB (will be remapped) */
"iiip\0"
"glUniformMatrix2fv\0"
"glUniformMatrix2fvARB\0"
"\0"
- /* _mesa_function_pool[8311]: MultiTexCoord2fARB (offset 386) */
+ /* _mesa_function_pool[8324]: MultiTexCoord2fARB (offset 386) */
"iff\0"
"glMultiTexCoord2f\0"
"glMultiTexCoord2fARB\0"
"\0"
- /* _mesa_function_pool[8355]: ColorTable (offset 339) */
+ /* _mesa_function_pool[8368]: ColorTable (offset 339) */
"iiiiip\0"
"glColorTable\0"
"glColorTableSGI\0"
"glColorTableEXT\0"
"\0"
- /* _mesa_function_pool[8408]: IndexPointer (offset 314) */
+ /* _mesa_function_pool[8421]: IndexPointer (offset 314) */
"iip\0"
"glIndexPointer\0"
"\0"
- /* _mesa_function_pool[8428]: Accum (offset 213) */
+ /* _mesa_function_pool[8441]: Accum (offset 213) */
"if\0"
"glAccum\0"
"\0"
- /* _mesa_function_pool[8440]: GetTexImage (offset 281) */
+ /* _mesa_function_pool[8453]: GetTexImage (offset 281) */
"iiiip\0"
"glGetTexImage\0"
"\0"
- /* _mesa_function_pool[8461]: MapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[8474]: MapControlPointsNV (dynamic) */
"iiiiiiiip\0"
"glMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[8493]: ConvolutionFilter2D (offset 349) */
+ /* _mesa_function_pool[8506]: ConvolutionFilter2D (offset 349) */
"iiiiiip\0"
"glConvolutionFilter2D\0"
"glConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[8549]: Finish (offset 216) */
+ /* _mesa_function_pool[8562]: Finish (offset 216) */
"\0"
"glFinish\0"
"\0"
- /* _mesa_function_pool[8560]: MapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[8573]: MapParameterfvNV (dynamic) */
"iip\0"
"glMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[8584]: ClearStencil (offset 207) */
+ /* _mesa_function_pool[8597]: ClearStencil (offset 207) */
"i\0"
"glClearStencil\0"
"\0"
- /* _mesa_function_pool[8602]: VertexAttrib3dvARB (will be remapped) */
+ /* _mesa_function_pool[8615]: VertexAttrib3dvARB (will be remapped) */
"ip\0"
"glVertexAttrib3dv\0"
"glVertexAttrib3dvARB\0"
"\0"
- /* _mesa_function_pool[8645]: Uniform4uivEXT (will be remapped) */
+ /* _mesa_function_pool[8658]: Uniform4uivEXT (will be remapped) */
"iip\0"
"glUniform4uivEXT\0"
"glUniform4uiv\0"
"\0"
- /* _mesa_function_pool[8681]: HintPGI (dynamic) */
+ /* _mesa_function_pool[8694]: HintPGI (dynamic) */
"ii\0"
"glHintPGI\0"
"\0"
- /* _mesa_function_pool[8695]: ConvolutionParameteriv (offset 353) */
+ /* _mesa_function_pool[8708]: ConvolutionParameteriv (offset 353) */
"iip\0"
"glConvolutionParameteriv\0"
"glConvolutionParameterivEXT\0"
"\0"
- /* _mesa_function_pool[8753]: Color4s (offset 33) */
+ /* _mesa_function_pool[8766]: Color4s (offset 33) */
"iiii\0"
"glColor4s\0"
"\0"
- /* _mesa_function_pool[8769]: InterleavedArrays (offset 317) */
+ /* _mesa_function_pool[8782]: InterleavedArrays (offset 317) */
"iip\0"
"glInterleavedArrays\0"
"\0"
- /* _mesa_function_pool[8794]: RasterPos2fv (offset 65) */
+ /* _mesa_function_pool[8807]: RasterPos2fv (offset 65) */
"p\0"
"glRasterPos2fv\0"
"\0"
- /* _mesa_function_pool[8812]: TexCoord1fv (offset 97) */
+ /* _mesa_function_pool[8825]: TexCoord1fv (offset 97) */
"p\0"
"glTexCoord1fv\0"
"\0"
- /* _mesa_function_pool[8829]: Vertex2d (offset 126) */
+ /* _mesa_function_pool[8842]: Vertex2d (offset 126) */
"dd\0"
"glVertex2d\0"
"\0"
- /* _mesa_function_pool[8844]: CullParameterdvEXT (dynamic) */
+ /* _mesa_function_pool[8857]: CullParameterdvEXT (dynamic) */
"ip\0"
"glCullParameterdvEXT\0"
"\0"
- /* _mesa_function_pool[8869]: ProgramNamedParameter4fNV (will be remapped) */
+ /* _mesa_function_pool[8882]: ProgramNamedParameter4fNV (will be remapped) */
"iipffff\0"
"glProgramNamedParameter4fNV\0"
"\0"
- /* _mesa_function_pool[8906]: Color3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[8919]: Color3fVertex3fSUN (dynamic) */
"ffffff\0"
"glColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[8935]: ProgramEnvParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[8948]: ProgramEnvParameter4fvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4fvARB\0"
"glProgramParameter4fvNV\0"
"\0"
- /* _mesa_function_pool[8992]: Color4i (offset 31) */
+ /* _mesa_function_pool[9005]: Color4i (offset 31) */
"iiii\0"
"glColor4i\0"
"\0"
- /* _mesa_function_pool[9008]: Color4f (offset 29) */
+ /* _mesa_function_pool[9021]: Color4f (offset 29) */
"ffff\0"
"glColor4f\0"
"\0"
- /* _mesa_function_pool[9024]: RasterPos4fv (offset 81) */
+ /* _mesa_function_pool[9037]: RasterPos4fv (offset 81) */
"p\0"
"glRasterPos4fv\0"
"\0"
- /* _mesa_function_pool[9042]: Color4d (offset 27) */
+ /* _mesa_function_pool[9055]: Color4d (offset 27) */
"dddd\0"
"glColor4d\0"
"\0"
- /* _mesa_function_pool[9058]: ClearIndex (offset 205) */
+ /* _mesa_function_pool[9071]: ClearIndex (offset 205) */
"f\0"
"glClearIndex\0"
"\0"
- /* _mesa_function_pool[9074]: Color4b (offset 25) */
+ /* _mesa_function_pool[9087]: Color4b (offset 25) */
"iiii\0"
"glColor4b\0"
"\0"
- /* _mesa_function_pool[9090]: LoadMatrixd (offset 292) */
+ /* _mesa_function_pool[9103]: LoadMatrixd (offset 292) */
"p\0"
"glLoadMatrixd\0"
"\0"
- /* _mesa_function_pool[9107]: FragmentLightModeliSGIX (dynamic) */
+ /* _mesa_function_pool[9120]: FragmentLightModeliSGIX (dynamic) */
"ii\0"
"glFragmentLightModeliSGIX\0"
"\0"
- /* _mesa_function_pool[9137]: RasterPos2dv (offset 63) */
+ /* _mesa_function_pool[9150]: RasterPos2dv (offset 63) */
"p\0"
"glRasterPos2dv\0"
"\0"
- /* _mesa_function_pool[9155]: ConvolutionParameterfv (offset 351) */
+ /* _mesa_function_pool[9168]: ConvolutionParameterfv (offset 351) */
"iip\0"
"glConvolutionParameterfv\0"
"glConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[9213]: TbufferMask3DFX (dynamic) */
+ /* _mesa_function_pool[9226]: TbufferMask3DFX (dynamic) */
"i\0"
"glTbufferMask3DFX\0"
"\0"
- /* _mesa_function_pool[9234]: GetTexGendv (offset 278) */
+ /* _mesa_function_pool[9247]: GetTexGendv (offset 278) */
"iip\0"
"glGetTexGendv\0"
"\0"
- /* _mesa_function_pool[9253]: GetVertexAttribfvNV (will be remapped) */
+ /* _mesa_function_pool[9266]: GetVertexAttribfvNV (will be remapped) */
"iip\0"
"glGetVertexAttribfvNV\0"
"\0"
- /* _mesa_function_pool[9280]: BeginTransformFeedbackEXT (will be remapped) */
+ /* _mesa_function_pool[9293]: BeginTransformFeedbackEXT (will be remapped) */
"i\0"
"glBeginTransformFeedbackEXT\0"
"glBeginTransformFeedback\0"
"\0"
- /* _mesa_function_pool[9336]: LoadProgramNV (will be remapped) */
+ /* _mesa_function_pool[9349]: LoadProgramNV (will be remapped) */
"iiip\0"
"glLoadProgramNV\0"
"\0"
- /* _mesa_function_pool[9358]: WaitSync (will be remapped) */
+ /* _mesa_function_pool[9371]: WaitSync (will be remapped) */
"iii\0"
"glWaitSync\0"
"\0"
- /* _mesa_function_pool[9374]: EndList (offset 1) */
+ /* _mesa_function_pool[9387]: EndList (offset 1) */
"\0"
"glEndList\0"
"\0"
- /* _mesa_function_pool[9386]: VertexAttrib4fvNV (will be remapped) */
+ /* _mesa_function_pool[9399]: VertexAttrib4fvNV (will be remapped) */
"ip\0"
"glVertexAttrib4fvNV\0"
"\0"
- /* _mesa_function_pool[9410]: GetAttachedObjectsARB (will be remapped) */
+ /* _mesa_function_pool[9423]: GetAttachedObjectsARB (will be remapped) */
"iipp\0"
"glGetAttachedObjectsARB\0"
"\0"
- /* _mesa_function_pool[9440]: Uniform3fvARB (will be remapped) */
+ /* _mesa_function_pool[9453]: Uniform3fvARB (will be remapped) */
"iip\0"
"glUniform3fv\0"
"glUniform3fvARB\0"
"\0"
- /* _mesa_function_pool[9474]: EvalCoord1fv (offset 231) */
+ /* _mesa_function_pool[9487]: EvalCoord1fv (offset 231) */
"p\0"
"glEvalCoord1fv\0"
"\0"
- /* _mesa_function_pool[9492]: DrawRangeElements (offset 338) */
+ /* _mesa_function_pool[9505]: DrawRangeElements (offset 338) */
"iiiiip\0"
"glDrawRangeElements\0"
"glDrawRangeElementsEXT\0"
"\0"
- /* _mesa_function_pool[9543]: EvalMesh2 (offset 238) */
+ /* _mesa_function_pool[9556]: EvalMesh2 (offset 238) */
"iiiii\0"
"glEvalMesh2\0"
"\0"
- /* _mesa_function_pool[9562]: Vertex4fv (offset 145) */
+ /* _mesa_function_pool[9575]: Vertex4fv (offset 145) */
"p\0"
"glVertex4fv\0"
"\0"
- /* _mesa_function_pool[9577]: GenTransformFeedbacks (will be remapped) */
+ /* _mesa_function_pool[9590]: GenTransformFeedbacks (will be remapped) */
"ip\0"
"glGenTransformFeedbacks\0"
"\0"
- /* _mesa_function_pool[9605]: SpriteParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[9618]: SpriteParameterfvSGIX (dynamic) */
"ip\0"
"glSpriteParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[9633]: CheckFramebufferStatusEXT (will be remapped) */
+ /* _mesa_function_pool[9646]: CheckFramebufferStatusEXT (will be remapped) */
"i\0"
"glCheckFramebufferStatus\0"
"glCheckFramebufferStatusEXT\0"
"\0"
- /* _mesa_function_pool[9689]: GlobalAlphaFactoruiSUN (dynamic) */
+ /* _mesa_function_pool[9702]: GlobalAlphaFactoruiSUN (dynamic) */
"i\0"
"glGlobalAlphaFactoruiSUN\0"
"\0"
- /* _mesa_function_pool[9717]: GetHandleARB (will be remapped) */
+ /* _mesa_function_pool[9730]: GetHandleARB (will be remapped) */
"i\0"
"glGetHandleARB\0"
"\0"
- /* _mesa_function_pool[9735]: GetVertexAttribivARB (will be remapped) */
+ /* _mesa_function_pool[9748]: GetVertexAttribivARB (will be remapped) */
"iip\0"
"glGetVertexAttribiv\0"
"glGetVertexAttribivARB\0"
"\0"
- /* _mesa_function_pool[9783]: GetCombinerInputParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[9796]: GetCombinerInputParameterfvNV (will be remapped) */
"iiiip\0"
"glGetCombinerInputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[9822]: GetTexParameterIivEXT (will be remapped) */
+ /* _mesa_function_pool[9835]: GetTexParameterIivEXT (will be remapped) */
"iip\0"
"glGetTexParameterIivEXT\0"
"glGetTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[9872]: CreateProgram (will be remapped) */
+ /* _mesa_function_pool[9885]: CreateProgram (will be remapped) */
"\0"
"glCreateProgram\0"
"\0"
- /* _mesa_function_pool[9890]: LoadTransposeMatrixdARB (will be remapped) */
+ /* _mesa_function_pool[9903]: LoadTransposeMatrixdARB (will be remapped) */
"p\0"
"glLoadTransposeMatrixd\0"
"glLoadTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[9942]: ReleaseShaderCompiler (will be remapped) */
+ /* _mesa_function_pool[9955]: ReleaseShaderCompiler (will be remapped) */
"\0"
"glReleaseShaderCompiler\0"
"\0"
- /* _mesa_function_pool[9968]: GetMinmax (offset 364) */
+ /* _mesa_function_pool[9981]: GetMinmax (offset 364) */
"iiiip\0"
"glGetMinmax\0"
"glGetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[10002]: StencilFuncSeparate (will be remapped) */
+ /* _mesa_function_pool[10015]: StencilFuncSeparate (will be remapped) */
"iiii\0"
"glStencilFuncSeparate\0"
"\0"
- /* _mesa_function_pool[10030]: SecondaryColor3sEXT (will be remapped) */
+ /* _mesa_function_pool[10043]: SecondaryColor3sEXT (will be remapped) */
"iii\0"
"glSecondaryColor3s\0"
"glSecondaryColor3sEXT\0"
"\0"
- /* _mesa_function_pool[10076]: Color3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[10089]: Color3fVertex3fvSUN (dynamic) */
"pp\0"
"glColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[10102]: GetInteger64i_v (will be remapped) */
+ /* _mesa_function_pool[10115]: GetInteger64i_v (will be remapped) */
"iip\0"
"glGetInteger64i_v\0"
"\0"
- /* _mesa_function_pool[10125]: Normal3fv (offset 57) */
+ /* _mesa_function_pool[10138]: Normal3fv (offset 57) */
"p\0"
"glNormal3fv\0"
"\0"
- /* _mesa_function_pool[10140]: GlobalAlphaFactorbSUN (dynamic) */
+ /* _mesa_function_pool[10153]: GlobalAlphaFactorbSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorbSUN\0"
"\0"
- /* _mesa_function_pool[10167]: Color3us (offset 23) */
+ /* _mesa_function_pool[10180]: Color3us (offset 23) */
"iii\0"
"glColor3us\0"
"\0"
- /* _mesa_function_pool[10183]: ImageTransformParameterfvHP (dynamic) */
+ /* _mesa_function_pool[10196]: ImageTransformParameterfvHP (dynamic) */
"iip\0"
"glImageTransformParameterfvHP\0"
"\0"
- /* _mesa_function_pool[10218]: VertexAttrib4ivARB (will be remapped) */
+ /* _mesa_function_pool[10231]: VertexAttrib4ivARB (will be remapped) */
"ip\0"
"glVertexAttrib4iv\0"
"glVertexAttrib4ivARB\0"
"\0"
- /* _mesa_function_pool[10261]: End (offset 43) */
+ /* _mesa_function_pool[10274]: End (offset 43) */
"\0"
"glEnd\0"
"\0"
- /* _mesa_function_pool[10269]: VertexAttrib3fNV (will be remapped) */
+ /* _mesa_function_pool[10282]: VertexAttrib3fNV (will be remapped) */
"ifff\0"
"glVertexAttrib3fNV\0"
"\0"
- /* _mesa_function_pool[10294]: VertexAttribs2dvNV (will be remapped) */
+ /* _mesa_function_pool[10307]: VertexAttribs2dvNV (will be remapped) */
"iip\0"
"glVertexAttribs2dvNV\0"
"\0"
- /* _mesa_function_pool[10320]: GetQueryObjectui64vEXT (will be remapped) */
+ /* _mesa_function_pool[10333]: GetQueryObjectui64vEXT (will be remapped) */
"iip\0"
"glGetQueryObjectui64vEXT\0"
"\0"
- /* _mesa_function_pool[10350]: MultiTexCoord3fvARB (offset 395) */
+ /* _mesa_function_pool[10363]: MultiTexCoord3fvARB (offset 395) */
"ip\0"
"glMultiTexCoord3fv\0"
"glMultiTexCoord3fvARB\0"
"\0"
- /* _mesa_function_pool[10395]: SecondaryColor3dEXT (will be remapped) */
+ /* _mesa_function_pool[10408]: SecondaryColor3dEXT (will be remapped) */
"ddd\0"
"glSecondaryColor3d\0"
"glSecondaryColor3dEXT\0"
"\0"
- /* _mesa_function_pool[10441]: Color3ub (offset 19) */
+ /* _mesa_function_pool[10454]: Color3ub (offset 19) */
"iii\0"
"glColor3ub\0"
"\0"
- /* _mesa_function_pool[10457]: GetProgramParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[10470]: GetProgramParameterfvNV (will be remapped) */
"iiip\0"
"glGetProgramParameterfvNV\0"
"\0"
- /* _mesa_function_pool[10489]: TangentPointerEXT (dynamic) */
+ /* _mesa_function_pool[10502]: TangentPointerEXT (dynamic) */
"iip\0"
"glTangentPointerEXT\0"
"\0"
- /* _mesa_function_pool[10514]: Color4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[10527]: Color4fNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[10549]: GetInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[10562]: GetInstrumentsSGIX (dynamic) */
"\0"
"glGetInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[10572]: GetUniformuivEXT (will be remapped) */
+ /* _mesa_function_pool[10585]: GetUniformuivEXT (will be remapped) */
"iip\0"
"glGetUniformuivEXT\0"
"glGetUniformuiv\0"
"\0"
- /* _mesa_function_pool[10612]: Color3ui (offset 21) */
+ /* _mesa_function_pool[10625]: Color3ui (offset 21) */
"iii\0"
"glColor3ui\0"
"\0"
- /* _mesa_function_pool[10628]: EvalMapsNV (dynamic) */
+ /* _mesa_function_pool[10641]: EvalMapsNV (dynamic) */
"ii\0"
"glEvalMapsNV\0"
"\0"
- /* _mesa_function_pool[10645]: TexSubImage2D (offset 333) */
+ /* _mesa_function_pool[10658]: TexSubImage2D (offset 333) */
"iiiiiiiip\0"
"glTexSubImage2D\0"
"glTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[10691]: FragmentLightivSGIX (dynamic) */
+ /* _mesa_function_pool[10704]: FragmentLightivSGIX (dynamic) */
"iip\0"
"glFragmentLightivSGIX\0"
"\0"
- /* _mesa_function_pool[10718]: GetTexParameterPointervAPPLE (will be remapped) */
+ /* _mesa_function_pool[10731]: GetTexParameterPointervAPPLE (will be remapped) */
"iip\0"
"glGetTexParameterPointervAPPLE\0"
"\0"
- /* _mesa_function_pool[10754]: TexGenfv (offset 191) */
+ /* _mesa_function_pool[10767]: TexGenfv (offset 191) */
"iip\0"
"glTexGenfv\0"
"\0"
- /* _mesa_function_pool[10770]: GetTransformFeedbackVaryingEXT (will be remapped) */
+ /* _mesa_function_pool[10783]: GetTransformFeedbackVaryingEXT (will be remapped) */
"iiipppp\0"
"glGetTransformFeedbackVaryingEXT\0"
"glGetTransformFeedbackVarying\0"
"\0"
- /* _mesa_function_pool[10842]: VertexAttrib4bvARB (will be remapped) */
+ /* _mesa_function_pool[10855]: VertexAttrib4bvARB (will be remapped) */
"ip\0"
"glVertexAttrib4bv\0"
"glVertexAttrib4bvARB\0"
"\0"
- /* _mesa_function_pool[10885]: ShaderBinary (will be remapped) */
+ /* _mesa_function_pool[10898]: ShaderBinary (will be remapped) */
"ipipi\0"
"glShaderBinary\0"
"\0"
- /* _mesa_function_pool[10907]: GetIntegerIndexedvEXT (will be remapped) */
+ /* _mesa_function_pool[10920]: GetIntegerIndexedvEXT (will be remapped) */
"iip\0"
"glGetIntegerIndexedvEXT\0"
"glGetIntegeri_v\0"
"\0"
- /* _mesa_function_pool[10952]: MultiTexCoord4sARB (offset 406) */
+ /* _mesa_function_pool[10965]: MultiTexCoord4sARB (offset 406) */
"iiiii\0"
"glMultiTexCoord4s\0"
"glMultiTexCoord4sARB\0"
"\0"
- /* _mesa_function_pool[10998]: GetFragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[11011]: GetFragmentMaterialivSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[11031]: WindowPos4dMESA (will be remapped) */
+ /* _mesa_function_pool[11044]: WindowPos4dMESA (will be remapped) */
"dddd\0"
"glWindowPos4dMESA\0"
"\0"
- /* _mesa_function_pool[11055]: WeightPointerARB (dynamic) */
+ /* _mesa_function_pool[11068]: WeightPointerARB (dynamic) */
"iiip\0"
"glWeightPointerARB\0"
"\0"
- /* _mesa_function_pool[11080]: WindowPos2dMESA (will be remapped) */
+ /* _mesa_function_pool[11093]: WindowPos2dMESA (will be remapped) */
"dd\0"
"glWindowPos2d\0"
"glWindowPos2dARB\0"
"glWindowPos2dMESA\0"
"\0"
- /* _mesa_function_pool[11133]: FramebufferTexture3DEXT (will be remapped) */
+ /* _mesa_function_pool[11146]: FramebufferTexture3DEXT (will be remapped) */
"iiiiii\0"
"glFramebufferTexture3D\0"
"glFramebufferTexture3DEXT\0"
"\0"
- /* _mesa_function_pool[11190]: BlendEquation (offset 337) */
+ /* _mesa_function_pool[11203]: BlendEquation (offset 337) */
"i\0"
"glBlendEquation\0"
"glBlendEquationEXT\0"
"\0"
- /* _mesa_function_pool[11228]: VertexAttrib3dNV (will be remapped) */
+ /* _mesa_function_pool[11241]: VertexAttrib3dNV (will be remapped) */
"iddd\0"
"glVertexAttrib3dNV\0"
"\0"
- /* _mesa_function_pool[11253]: VertexAttrib3dARB (will be remapped) */
+ /* _mesa_function_pool[11266]: VertexAttrib3dARB (will be remapped) */
"iddd\0"
"glVertexAttrib3d\0"
"glVertexAttrib3dARB\0"
"\0"
- /* _mesa_function_pool[11296]: VertexAttribI4usvEXT (will be remapped) */
+ /* _mesa_function_pool[11309]: VertexAttribI4usvEXT (will be remapped) */
"ip\0"
"glVertexAttribI4usvEXT\0"
"glVertexAttribI4usv\0"
"\0"
- /* _mesa_function_pool[11343]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[11356]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
"ppppp\0"
"glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[11407]: VertexAttrib4fARB (will be remapped) */
+ /* _mesa_function_pool[11420]: VertexAttrib4fARB (will be remapped) */
"iffff\0"
"glVertexAttrib4f\0"
"glVertexAttrib4fARB\0"
"\0"
- /* _mesa_function_pool[11451]: GetError (offset 261) */
+ /* _mesa_function_pool[11464]: GetError (offset 261) */
"\0"
"glGetError\0"
"\0"
- /* _mesa_function_pool[11464]: IndexFuncEXT (dynamic) */
+ /* _mesa_function_pool[11477]: IndexFuncEXT (dynamic) */
"if\0"
"glIndexFuncEXT\0"
"\0"
- /* _mesa_function_pool[11483]: TexCoord3dv (offset 111) */
+ /* _mesa_function_pool[11496]: TexCoord3dv (offset 111) */
"p\0"
"glTexCoord3dv\0"
"\0"
- /* _mesa_function_pool[11500]: Indexdv (offset 45) */
+ /* _mesa_function_pool[11513]: Indexdv (offset 45) */
"p\0"
"glIndexdv\0"
"\0"
- /* _mesa_function_pool[11513]: FramebufferTexture2DEXT (will be remapped) */
+ /* _mesa_function_pool[11526]: FramebufferTexture2DEXT (will be remapped) */
"iiiii\0"
"glFramebufferTexture2D\0"
"glFramebufferTexture2DEXT\0"
"\0"
- /* _mesa_function_pool[11569]: Normal3s (offset 60) */
+ /* _mesa_function_pool[11582]: Normal3s (offset 60) */
"iii\0"
"glNormal3s\0"
"\0"
- /* _mesa_function_pool[11585]: GetObjectParameterivAPPLE (will be remapped) */
+ /* _mesa_function_pool[11598]: GetObjectParameterivAPPLE (will be remapped) */
"iiip\0"
"glGetObjectParameterivAPPLE\0"
"\0"
- /* _mesa_function_pool[11619]: PushName (offset 201) */
+ /* _mesa_function_pool[11632]: PushName (offset 201) */
"i\0"
"glPushName\0"
"\0"
- /* _mesa_function_pool[11633]: MultiTexCoord2dvARB (offset 385) */
+ /* _mesa_function_pool[11646]: MultiTexCoord2dvARB (offset 385) */
"ip\0"
"glMultiTexCoord2dv\0"
"glMultiTexCoord2dvARB\0"
"\0"
- /* _mesa_function_pool[11678]: CullParameterfvEXT (dynamic) */
+ /* _mesa_function_pool[11691]: CullParameterfvEXT (dynamic) */
"ip\0"
"glCullParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[11703]: Normal3i (offset 58) */
+ /* _mesa_function_pool[11716]: Normal3i (offset 58) */
"iii\0"
"glNormal3i\0"
"\0"
- /* _mesa_function_pool[11719]: ProgramNamedParameter4fvNV (will be remapped) */
+ /* _mesa_function_pool[11732]: ProgramNamedParameter4fvNV (will be remapped) */
"iipp\0"
"glProgramNamedParameter4fvNV\0"
"\0"
- /* _mesa_function_pool[11754]: SecondaryColorPointerEXT (will be remapped) */
+ /* _mesa_function_pool[11767]: SecondaryColorPointerEXT (will be remapped) */
"iiip\0"
"glSecondaryColorPointer\0"
"glSecondaryColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[11811]: VertexAttrib4fvARB (will be remapped) */
+ /* _mesa_function_pool[11824]: VertexAttrib4fvARB (will be remapped) */
"ip\0"
"glVertexAttrib4fv\0"
"glVertexAttrib4fvARB\0"
"\0"
- /* _mesa_function_pool[11854]: ColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[11867]: ColorPointerListIBM (dynamic) */
"iiipi\0"
"glColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[11883]: GetActiveUniformARB (will be remapped) */
+ /* _mesa_function_pool[11896]: GetActiveUniformARB (will be remapped) */
"iiipppp\0"
"glGetActiveUniform\0"
"glGetActiveUniformARB\0"
"\0"
- /* _mesa_function_pool[11933]: ImageTransformParameteriHP (dynamic) */
+ /* _mesa_function_pool[11946]: ImageTransformParameteriHP (dynamic) */
"iii\0"
"glImageTransformParameteriHP\0"
"\0"
- /* _mesa_function_pool[11967]: Normal3b (offset 52) */
+ /* _mesa_function_pool[11980]: Normal3b (offset 52) */
"iii\0"
"glNormal3b\0"
"\0"
- /* _mesa_function_pool[11983]: Normal3d (offset 54) */
+ /* _mesa_function_pool[11996]: Normal3d (offset 54) */
"ddd\0"
"glNormal3d\0"
"\0"
- /* _mesa_function_pool[11999]: Uniform1uiEXT (will be remapped) */
+ /* _mesa_function_pool[12012]: Uniform1uiEXT (will be remapped) */
"ii\0"
"glUniform1uiEXT\0"
"glUniform1ui\0"
"\0"
- /* _mesa_function_pool[12032]: Normal3f (offset 56) */
+ /* _mesa_function_pool[12045]: Normal3f (offset 56) */
"fff\0"
"glNormal3f\0"
"\0"
- /* _mesa_function_pool[12048]: MultiTexCoord1svARB (offset 383) */
+ /* _mesa_function_pool[12061]: MultiTexCoord1svARB (offset 383) */
"ip\0"
"glMultiTexCoord1sv\0"
"glMultiTexCoord1svARB\0"
"\0"
- /* _mesa_function_pool[12093]: Indexi (offset 48) */
+ /* _mesa_function_pool[12106]: Indexi (offset 48) */
"i\0"
"glIndexi\0"
"\0"
- /* _mesa_function_pool[12105]: EGLImageTargetTexture2DOES (will be remapped) */
+ /* _mesa_function_pool[12118]: EGLImageTargetTexture2DOES (will be remapped) */
"ip\0"
"glEGLImageTargetTexture2DOES\0"
"\0"
- /* _mesa_function_pool[12138]: EndQueryARB (will be remapped) */
+ /* _mesa_function_pool[12151]: EndQueryARB (will be remapped) */
"i\0"
"glEndQuery\0"
"glEndQueryARB\0"
"\0"
- /* _mesa_function_pool[12166]: DeleteFencesNV (will be remapped) */
+ /* _mesa_function_pool[12179]: DeleteFencesNV (will be remapped) */
"ip\0"
"glDeleteFencesNV\0"
"\0"
- /* _mesa_function_pool[12187]: DeformationMap3dSGIX (dynamic) */
- "iddiiddiiddiip\0"
- "glDeformationMap3dSGIX\0"
- "\0"
- /* _mesa_function_pool[12226]: BindBufferRangeEXT (will be remapped) */
+ /* _mesa_function_pool[12200]: BindBufferRangeEXT (will be remapped) */
"iiiii\0"
"glBindBufferRangeEXT\0"
"glBindBufferRange\0"
"\0"
- /* _mesa_function_pool[12272]: DepthMask (offset 211) */
+ /* _mesa_function_pool[12246]: DepthMask (offset 211) */
"i\0"
"glDepthMask\0"
"\0"
- /* _mesa_function_pool[12287]: IsShader (will be remapped) */
+ /* _mesa_function_pool[12261]: IsShader (will be remapped) */
"i\0"
"glIsShader\0"
"\0"
- /* _mesa_function_pool[12301]: Indexf (offset 46) */
+ /* _mesa_function_pool[12275]: Indexf (offset 46) */
"f\0"
"glIndexf\0"
"\0"
- /* _mesa_function_pool[12313]: GetImageTransformParameterivHP (dynamic) */
+ /* _mesa_function_pool[12287]: GetImageTransformParameterivHP (dynamic) */
"iip\0"
"glGetImageTransformParameterivHP\0"
"\0"
- /* _mesa_function_pool[12351]: Indexd (offset 44) */
+ /* _mesa_function_pool[12325]: Indexd (offset 44) */
"d\0"
"glIndexd\0"
"\0"
- /* _mesa_function_pool[12363]: GetMaterialiv (offset 270) */
+ /* _mesa_function_pool[12337]: GetMaterialiv (offset 270) */
"iip\0"
"glGetMaterialiv\0"
"\0"
- /* _mesa_function_pool[12384]: StencilOp (offset 244) */
+ /* _mesa_function_pool[12358]: StencilOp (offset 244) */
"iii\0"
"glStencilOp\0"
"\0"
- /* _mesa_function_pool[12401]: WindowPos4ivMESA (will be remapped) */
+ /* _mesa_function_pool[12375]: WindowPos4ivMESA (will be remapped) */
"p\0"
"glWindowPos4ivMESA\0"
"\0"
- /* _mesa_function_pool[12423]: FramebufferTextureLayer (dynamic) */
+ /* _mesa_function_pool[12397]: FramebufferTextureLayer (dynamic) */
"iiiii\0"
"glFramebufferTextureLayerARB\0"
"\0"
- /* _mesa_function_pool[12459]: MultiTexCoord3svARB (offset 399) */
+ /* _mesa_function_pool[12433]: MultiTexCoord3svARB (offset 399) */
"ip\0"
"glMultiTexCoord3sv\0"
"glMultiTexCoord3svARB\0"
"\0"
- /* _mesa_function_pool[12504]: TexEnvfv (offset 185) */
+ /* _mesa_function_pool[12478]: TexEnvfv (offset 185) */
"iip\0"
"glTexEnvfv\0"
"\0"
- /* _mesa_function_pool[12520]: MultiTexCoord4iARB (offset 404) */
+ /* _mesa_function_pool[12494]: MultiTexCoord4iARB (offset 404) */
"iiiii\0"
"glMultiTexCoord4i\0"
"glMultiTexCoord4iARB\0"
"\0"
- /* _mesa_function_pool[12566]: Indexs (offset 50) */
+ /* _mesa_function_pool[12540]: Indexs (offset 50) */
"i\0"
"glIndexs\0"
"\0"
- /* _mesa_function_pool[12578]: Binormal3ivEXT (dynamic) */
+ /* _mesa_function_pool[12552]: Binormal3ivEXT (dynamic) */
"p\0"
"glBinormal3ivEXT\0"
"\0"
- /* _mesa_function_pool[12598]: ResizeBuffersMESA (will be remapped) */
+ /* _mesa_function_pool[12572]: ResizeBuffersMESA (will be remapped) */
"\0"
"glResizeBuffersMESA\0"
"\0"
- /* _mesa_function_pool[12620]: GetUniformivARB (will be remapped) */
+ /* _mesa_function_pool[12594]: GetUniformivARB (will be remapped) */
"iip\0"
"glGetUniformiv\0"
"glGetUniformivARB\0"
"\0"
- /* _mesa_function_pool[12658]: PixelTexGenParameteriSGIS (will be remapped) */
+ /* _mesa_function_pool[12632]: PixelTexGenParameteriSGIS (will be remapped) */
"ii\0"
"glPixelTexGenParameteriSGIS\0"
"\0"
- /* _mesa_function_pool[12690]: VertexPointervINTEL (dynamic) */
+ /* _mesa_function_pool[12664]: VertexPointervINTEL (dynamic) */
"iip\0"
"glVertexPointervINTEL\0"
"\0"
- /* _mesa_function_pool[12717]: Vertex2i (offset 130) */
+ /* _mesa_function_pool[12691]: Vertex2i (offset 130) */
"ii\0"
"glVertex2i\0"
"\0"
- /* _mesa_function_pool[12732]: LoadMatrixf (offset 291) */
+ /* _mesa_function_pool[12706]: LoadMatrixf (offset 291) */
"p\0"
"glLoadMatrixf\0"
"\0"
- /* _mesa_function_pool[12749]: VertexAttribI1uivEXT (will be remapped) */
+ /* _mesa_function_pool[12723]: VertexAttribI1uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI1uivEXT\0"
"glVertexAttribI1uiv\0"
"\0"
- /* _mesa_function_pool[12796]: Vertex2f (offset 128) */
+ /* _mesa_function_pool[12770]: Vertex2f (offset 128) */
"ff\0"
"glVertex2f\0"
"\0"
- /* _mesa_function_pool[12811]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[12785]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glReplacementCodeuiColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[12864]: Color4bv (offset 26) */
+ /* _mesa_function_pool[12838]: Color4bv (offset 26) */
"p\0"
"glColor4bv\0"
"\0"
- /* _mesa_function_pool[12878]: VertexPointer (offset 321) */
+ /* _mesa_function_pool[12852]: VertexPointer (offset 321) */
"iiip\0"
"glVertexPointer\0"
"\0"
- /* _mesa_function_pool[12900]: SecondaryColor3uiEXT (will be remapped) */
+ /* _mesa_function_pool[12874]: SecondaryColor3uiEXT (will be remapped) */
"iii\0"
"glSecondaryColor3ui\0"
"glSecondaryColor3uiEXT\0"
"\0"
- /* _mesa_function_pool[12948]: StartInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[12922]: StartInstrumentsSGIX (dynamic) */
"\0"
"glStartInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[12973]: SecondaryColor3usvEXT (will be remapped) */
+ /* _mesa_function_pool[12947]: SecondaryColor3usvEXT (will be remapped) */
"p\0"
"glSecondaryColor3usv\0"
"glSecondaryColor3usvEXT\0"
"\0"
- /* _mesa_function_pool[13021]: VertexAttrib2fvNV (will be remapped) */
+ /* _mesa_function_pool[12995]: VertexAttrib2fvNV (will be remapped) */
"ip\0"
"glVertexAttrib2fvNV\0"
"\0"
- /* _mesa_function_pool[13045]: ProgramLocalParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[13019]: ProgramLocalParameter4dvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4dvARB\0"
"\0"
- /* _mesa_function_pool[13080]: DeleteLists (offset 4) */
+ /* _mesa_function_pool[13054]: DeleteLists (offset 4) */
"ii\0"
"glDeleteLists\0"
"\0"
- /* _mesa_function_pool[13098]: LogicOp (offset 242) */
+ /* _mesa_function_pool[13072]: LogicOp (offset 242) */
"i\0"
"glLogicOp\0"
"\0"
- /* _mesa_function_pool[13111]: MatrixIndexuivARB (dynamic) */
+ /* _mesa_function_pool[13085]: MatrixIndexuivARB (dynamic) */
"ip\0"
"glMatrixIndexuivARB\0"
"\0"
- /* _mesa_function_pool[13135]: Vertex2s (offset 132) */
+ /* _mesa_function_pool[13109]: Vertex2s (offset 132) */
"ii\0"
"glVertex2s\0"
"\0"
- /* _mesa_function_pool[13150]: RenderbufferStorageMultisample (will be remapped) */
+ /* _mesa_function_pool[13124]: RenderbufferStorageMultisample (will be remapped) */
"iiiii\0"
"glRenderbufferStorageMultisample\0"
"glRenderbufferStorageMultisampleEXT\0"
"\0"
- /* _mesa_function_pool[13226]: TexCoord4fv (offset 121) */
+ /* _mesa_function_pool[13200]: TexCoord4fv (offset 121) */
"p\0"
"glTexCoord4fv\0"
"\0"
- /* _mesa_function_pool[13243]: Tangent3sEXT (dynamic) */
+ /* _mesa_function_pool[13217]: Tangent3sEXT (dynamic) */
"iii\0"
"glTangent3sEXT\0"
"\0"
- /* _mesa_function_pool[13263]: GlobalAlphaFactorfSUN (dynamic) */
+ /* _mesa_function_pool[13237]: GlobalAlphaFactorfSUN (dynamic) */
"f\0"
"glGlobalAlphaFactorfSUN\0"
"\0"
- /* _mesa_function_pool[13290]: MultiTexCoord3iARB (offset 396) */
+ /* _mesa_function_pool[13264]: MultiTexCoord3iARB (offset 396) */
"iiii\0"
"glMultiTexCoord3i\0"
"glMultiTexCoord3iARB\0"
"\0"
- /* _mesa_function_pool[13335]: IsProgram (will be remapped) */
+ /* _mesa_function_pool[13309]: IsProgram (will be remapped) */
"i\0"
"glIsProgram\0"
"\0"
- /* _mesa_function_pool[13350]: TexCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[13324]: TexCoordPointerListIBM (dynamic) */
"iiipi\0"
"glTexCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[13382]: VertexAttribI4svEXT (will be remapped) */
+ /* _mesa_function_pool[13356]: VertexAttribI4svEXT (will be remapped) */
"ip\0"
"glVertexAttribI4svEXT\0"
"glVertexAttribI4sv\0"
"\0"
- /* _mesa_function_pool[13427]: GlobalAlphaFactorusSUN (dynamic) */
+ /* _mesa_function_pool[13401]: GlobalAlphaFactorusSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorusSUN\0"
"\0"
- /* _mesa_function_pool[13455]: VertexAttrib2dvNV (will be remapped) */
+ /* _mesa_function_pool[13429]: VertexAttrib2dvNV (will be remapped) */
"ip\0"
"glVertexAttrib2dvNV\0"
"\0"
- /* _mesa_function_pool[13479]: FramebufferRenderbufferEXT (will be remapped) */
+ /* _mesa_function_pool[13453]: FramebufferRenderbufferEXT (will be remapped) */
"iiii\0"
"glFramebufferRenderbuffer\0"
"glFramebufferRenderbufferEXT\0"
"\0"
- /* _mesa_function_pool[13540]: ClearBufferuiv (will be remapped) */
+ /* _mesa_function_pool[13514]: ClearBufferuiv (will be remapped) */
"iip\0"
"glClearBufferuiv\0"
"\0"
- /* _mesa_function_pool[13562]: VertexAttrib1dvNV (will be remapped) */
+ /* _mesa_function_pool[13536]: VertexAttrib1dvNV (will be remapped) */
"ip\0"
"glVertexAttrib1dvNV\0"
"\0"
- /* _mesa_function_pool[13586]: GenTextures (offset 328) */
+ /* _mesa_function_pool[13560]: GenTextures (offset 328) */
"ip\0"
"glGenTextures\0"
"glGenTexturesEXT\0"
"\0"
- /* _mesa_function_pool[13621]: FramebufferTextureARB (will be remapped) */
+ /* _mesa_function_pool[13595]: FramebufferTextureARB (will be remapped) */
"iiii\0"
"glFramebufferTextureARB\0"
"\0"
- /* _mesa_function_pool[13651]: SetFenceNV (will be remapped) */
+ /* _mesa_function_pool[13625]: SetFenceNV (will be remapped) */
"ii\0"
"glSetFenceNV\0"
"\0"
- /* _mesa_function_pool[13668]: FramebufferTexture1DEXT (will be remapped) */
+ /* _mesa_function_pool[13642]: FramebufferTexture1DEXT (will be remapped) */
"iiiii\0"
"glFramebufferTexture1D\0"
"glFramebufferTexture1DEXT\0"
"\0"
- /* _mesa_function_pool[13724]: GetCombinerOutputParameterivNV (will be remapped) */
+ /* _mesa_function_pool[13698]: GetCombinerOutputParameterivNV (will be remapped) */
"iiip\0"
"glGetCombinerOutputParameterivNV\0"
"\0"
- /* _mesa_function_pool[13763]: PixelTexGenParameterivSGIS (will be remapped) */
+ /* _mesa_function_pool[13737]: MultiModeDrawArraysIBM (will be remapped) */
+ "pppii\0"
+ "glMultiModeDrawArraysIBM\0"
+ "\0"
+ /* _mesa_function_pool[13769]: PixelTexGenParameterivSGIS (will be remapped) */
"ip\0"
"glPixelTexGenParameterivSGIS\0"
"\0"
- /* _mesa_function_pool[13796]: TextureNormalEXT (dynamic) */
+ /* _mesa_function_pool[13802]: TextureNormalEXT (dynamic) */
"i\0"
"glTextureNormalEXT\0"
"\0"
- /* _mesa_function_pool[13818]: IndexPointerListIBM (dynamic) */
+ /* _mesa_function_pool[13824]: IndexPointerListIBM (dynamic) */
"iipi\0"
"glIndexPointerListIBM\0"
"\0"
- /* _mesa_function_pool[13846]: WeightfvARB (dynamic) */
+ /* _mesa_function_pool[13852]: WeightfvARB (dynamic) */
"ip\0"
"glWeightfvARB\0"
"\0"
- /* _mesa_function_pool[13864]: RasterPos2sv (offset 69) */
+ /* _mesa_function_pool[13870]: GetCombinerOutputParameterfvNV (will be remapped) */
+ "iiip\0"
+ "glGetCombinerOutputParameterfvNV\0"
+ "\0"
+ /* _mesa_function_pool[13909]: RasterPos2sv (offset 69) */
"p\0"
"glRasterPos2sv\0"
"\0"
- /* _mesa_function_pool[13882]: Color4ubv (offset 36) */
+ /* _mesa_function_pool[13927]: Color4ubv (offset 36) */
"p\0"
"glColor4ubv\0"
"\0"
- /* _mesa_function_pool[13897]: DrawBuffer (offset 202) */
+ /* _mesa_function_pool[13942]: DrawBuffer (offset 202) */
"i\0"
"glDrawBuffer\0"
"\0"
- /* _mesa_function_pool[13913]: TexCoord2fv (offset 105) */
+ /* _mesa_function_pool[13958]: TexCoord2fv (offset 105) */
"p\0"
"glTexCoord2fv\0"
"\0"
- /* _mesa_function_pool[13930]: WindowPos4fMESA (will be remapped) */
+ /* _mesa_function_pool[13975]: WindowPos4fMESA (will be remapped) */
"ffff\0"
"glWindowPos4fMESA\0"
"\0"
- /* _mesa_function_pool[13954]: TexCoord1sv (offset 101) */
+ /* _mesa_function_pool[13999]: TexCoord1sv (offset 101) */
"p\0"
"glTexCoord1sv\0"
"\0"
- /* _mesa_function_pool[13971]: WindowPos3dvMESA (will be remapped) */
+ /* _mesa_function_pool[14016]: WindowPos3dvMESA (will be remapped) */
"p\0"
"glWindowPos3dv\0"
"glWindowPos3dvARB\0"
"glWindowPos3dvMESA\0"
"\0"
- /* _mesa_function_pool[14026]: DepthFunc (offset 245) */
+ /* _mesa_function_pool[14071]: DepthFunc (offset 245) */
"i\0"
"glDepthFunc\0"
"\0"
- /* _mesa_function_pool[14041]: PixelMapusv (offset 253) */
+ /* _mesa_function_pool[14086]: PixelMapusv (offset 253) */
"iip\0"
"glPixelMapusv\0"
"\0"
- /* _mesa_function_pool[14060]: GetQueryObjecti64vEXT (will be remapped) */
+ /* _mesa_function_pool[14105]: GetQueryObjecti64vEXT (will be remapped) */
"iip\0"
"glGetQueryObjecti64vEXT\0"
"\0"
- /* _mesa_function_pool[14089]: MultiTexCoord1dARB (offset 376) */
+ /* _mesa_function_pool[14134]: MultiTexCoord1dARB (offset 376) */
"id\0"
"glMultiTexCoord1d\0"
"glMultiTexCoord1dARB\0"
"\0"
- /* _mesa_function_pool[14132]: PointParameterivNV (will be remapped) */
+ /* _mesa_function_pool[14177]: PointParameterivNV (will be remapped) */
"ip\0"
"glPointParameteriv\0"
"glPointParameterivNV\0"
"\0"
- /* _mesa_function_pool[14176]: BlendFunc (offset 241) */
+ /* _mesa_function_pool[14221]: BlendFunc (offset 241) */
"ii\0"
"glBlendFunc\0"
"\0"
- /* _mesa_function_pool[14192]: EndTransformFeedbackEXT (will be remapped) */
+ /* _mesa_function_pool[14237]: EndTransformFeedbackEXT (will be remapped) */
"\0"
"glEndTransformFeedbackEXT\0"
"glEndTransformFeedback\0"
"\0"
- /* _mesa_function_pool[14243]: Uniform2fvARB (will be remapped) */
+ /* _mesa_function_pool[14288]: Uniform2fvARB (will be remapped) */
"iip\0"
"glUniform2fv\0"
"glUniform2fvARB\0"
"\0"
- /* _mesa_function_pool[14277]: BufferParameteriAPPLE (will be remapped) */
+ /* _mesa_function_pool[14322]: BufferParameteriAPPLE (will be remapped) */
"iii\0"
"glBufferParameteriAPPLE\0"
"\0"
- /* _mesa_function_pool[14306]: MultiTexCoord3dvARB (offset 393) */
+ /* _mesa_function_pool[14351]: MultiTexCoord3dvARB (offset 393) */
"ip\0"
"glMultiTexCoord3dv\0"
"glMultiTexCoord3dvARB\0"
"\0"
- /* _mesa_function_pool[14351]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[14396]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[14407]: DeleteObjectARB (will be remapped) */
+ /* _mesa_function_pool[14452]: DeleteObjectARB (will be remapped) */
"i\0"
"glDeleteObjectARB\0"
"\0"
- /* _mesa_function_pool[14428]: GetShaderPrecisionFormat (will be remapped) */
+ /* _mesa_function_pool[14473]: GetShaderPrecisionFormat (will be remapped) */
"iipp\0"
"glGetShaderPrecisionFormat\0"
"\0"
- /* _mesa_function_pool[14461]: MatrixIndexPointerARB (dynamic) */
+ /* _mesa_function_pool[14506]: MatrixIndexPointerARB (dynamic) */
"iiip\0"
"glMatrixIndexPointerARB\0"
"\0"
- /* _mesa_function_pool[14491]: ProgramNamedParameter4dvNV (will be remapped) */
+ /* _mesa_function_pool[14536]: ProgramNamedParameter4dvNV (will be remapped) */
"iipp\0"
"glProgramNamedParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[14526]: Tangent3fvEXT (dynamic) */
+ /* _mesa_function_pool[14571]: Tangent3fvEXT (dynamic) */
"p\0"
"glTangent3fvEXT\0"
"\0"
- /* _mesa_function_pool[14545]: Flush (offset 217) */
+ /* _mesa_function_pool[14590]: Flush (offset 217) */
"\0"
"glFlush\0"
"\0"
- /* _mesa_function_pool[14555]: Color4uiv (offset 38) */
+ /* _mesa_function_pool[14600]: Color4uiv (offset 38) */
"p\0"
"glColor4uiv\0"
"\0"
- /* _mesa_function_pool[14570]: VertexAttribI4iEXT (will be remapped) */
+ /* _mesa_function_pool[14615]: VertexAttribI4iEXT (will be remapped) */
"iiiii\0"
"glVertexAttribI4iEXT\0"
"glVertexAttribI4i\0"
"\0"
- /* _mesa_function_pool[14616]: GenVertexArrays (will be remapped) */
+ /* _mesa_function_pool[14661]: GenVertexArrays (will be remapped) */
"ip\0"
"glGenVertexArrays\0"
"\0"
- /* _mesa_function_pool[14638]: Uniform3uivEXT (will be remapped) */
+ /* _mesa_function_pool[14683]: Uniform3uivEXT (will be remapped) */
"iip\0"
"glUniform3uivEXT\0"
"glUniform3uiv\0"
"\0"
- /* _mesa_function_pool[14674]: RasterPos3sv (offset 77) */
+ /* _mesa_function_pool[14719]: RasterPos3sv (offset 77) */
"p\0"
"glRasterPos3sv\0"
"\0"
- /* _mesa_function_pool[14692]: BindFramebufferEXT (will be remapped) */
+ /* _mesa_function_pool[14737]: BindFramebufferEXT (will be remapped) */
"ii\0"
"glBindFramebuffer\0"
"glBindFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[14735]: ReferencePlaneSGIX (dynamic) */
+ /* _mesa_function_pool[14780]: ReferencePlaneSGIX (dynamic) */
"p\0"
"glReferencePlaneSGIX\0"
"\0"
- /* _mesa_function_pool[14759]: PushAttrib (offset 219) */
+ /* _mesa_function_pool[14804]: PushAttrib (offset 219) */
"i\0"
"glPushAttrib\0"
"\0"
- /* _mesa_function_pool[14775]: RasterPos2i (offset 66) */
+ /* _mesa_function_pool[14820]: RasterPos2i (offset 66) */
"ii\0"
"glRasterPos2i\0"
"\0"
- /* _mesa_function_pool[14793]: ValidateProgramARB (will be remapped) */
+ /* _mesa_function_pool[14838]: ValidateProgramARB (will be remapped) */
"i\0"
"glValidateProgram\0"
"glValidateProgramARB\0"
"\0"
- /* _mesa_function_pool[14835]: TexParameteriv (offset 181) */
+ /* _mesa_function_pool[14880]: TexParameteriv (offset 181) */
"iip\0"
"glTexParameteriv\0"
"\0"
- /* _mesa_function_pool[14857]: UnlockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[14902]: UnlockArraysEXT (will be remapped) */
"\0"
"glUnlockArraysEXT\0"
"\0"
- /* _mesa_function_pool[14877]: TexCoord2fColor3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[14922]: TexCoord2fColor3fVertex3fSUN (dynamic) */
"ffffffff\0"
"glTexCoord2fColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[14918]: WindowPos3fvMESA (will be remapped) */
+ /* _mesa_function_pool[14963]: WindowPos3fvMESA (will be remapped) */
"p\0"
"glWindowPos3fv\0"
"glWindowPos3fvARB\0"
"glWindowPos3fvMESA\0"
"\0"
- /* _mesa_function_pool[14973]: RasterPos2f (offset 64) */
+ /* _mesa_function_pool[15018]: RasterPos2f (offset 64) */
"ff\0"
"glRasterPos2f\0"
"\0"
- /* _mesa_function_pool[14991]: VertexAttrib1svNV (will be remapped) */
+ /* _mesa_function_pool[15036]: VertexAttrib1svNV (will be remapped) */
"ip\0"
"glVertexAttrib1svNV\0"
"\0"
- /* _mesa_function_pool[15015]: RasterPos2d (offset 62) */
+ /* _mesa_function_pool[15060]: RasterPos2d (offset 62) */
"dd\0"
"glRasterPos2d\0"
"\0"
- /* _mesa_function_pool[15033]: RasterPos3fv (offset 73) */
+ /* _mesa_function_pool[15078]: RasterPos3fv (offset 73) */
"p\0"
"glRasterPos3fv\0"
"\0"
- /* _mesa_function_pool[15051]: CopyTexSubImage3D (offset 373) */
+ /* _mesa_function_pool[15096]: CopyTexSubImage3D (offset 373) */
"iiiiiiiii\0"
"glCopyTexSubImage3D\0"
"glCopyTexSubImage3DEXT\0"
"\0"
- /* _mesa_function_pool[15105]: VertexAttrib2dARB (will be remapped) */
+ /* _mesa_function_pool[15150]: VertexAttrib2dARB (will be remapped) */
"idd\0"
"glVertexAttrib2d\0"
"glVertexAttrib2dARB\0"
"\0"
- /* _mesa_function_pool[15147]: Color4ub (offset 35) */
+ /* _mesa_function_pool[15192]: Color4ub (offset 35) */
"iiii\0"
"glColor4ub\0"
"\0"
- /* _mesa_function_pool[15164]: GetInteger64v (will be remapped) */
+ /* _mesa_function_pool[15209]: GetInteger64v (will be remapped) */
"ip\0"
"glGetInteger64v\0"
"\0"
- /* _mesa_function_pool[15184]: TextureColorMaskSGIS (dynamic) */
+ /* _mesa_function_pool[15229]: TextureColorMaskSGIS (dynamic) */
"iiii\0"
"glTextureColorMaskSGIS\0"
"\0"
- /* _mesa_function_pool[15213]: RasterPos2s (offset 68) */
+ /* _mesa_function_pool[15258]: RasterPos2s (offset 68) */
"ii\0"
"glRasterPos2s\0"
"\0"
- /* _mesa_function_pool[15231]: GetColorTable (offset 343) */
+ /* _mesa_function_pool[15276]: GetColorTable (offset 343) */
"iiip\0"
"glGetColorTable\0"
"glGetColorTableSGI\0"
"glGetColorTableEXT\0"
"\0"
- /* _mesa_function_pool[15291]: SelectBuffer (offset 195) */
+ /* _mesa_function_pool[15336]: SelectBuffer (offset 195) */
"ip\0"
"glSelectBuffer\0"
"\0"
- /* _mesa_function_pool[15310]: Indexiv (offset 49) */
+ /* _mesa_function_pool[15355]: Indexiv (offset 49) */
"p\0"
"glIndexiv\0"
"\0"
- /* _mesa_function_pool[15323]: TexCoord3i (offset 114) */
+ /* _mesa_function_pool[15368]: TexCoord3i (offset 114) */
"iii\0"
"glTexCoord3i\0"
"\0"
- /* _mesa_function_pool[15341]: CopyColorTable (offset 342) */
+ /* _mesa_function_pool[15386]: CopyColorTable (offset 342) */
"iiiii\0"
"glCopyColorTable\0"
"glCopyColorTableSGI\0"
"\0"
- /* _mesa_function_pool[15385]: GetHistogramParameterfv (offset 362) */
+ /* _mesa_function_pool[15430]: GetHistogramParameterfv (offset 362) */
"iip\0"
"glGetHistogramParameterfv\0"
"glGetHistogramParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[15445]: Frustum (offset 289) */
+ /* _mesa_function_pool[15490]: Frustum (offset 289) */
"dddddd\0"
"glFrustum\0"
"\0"
- /* _mesa_function_pool[15463]: GetString (offset 275) */
+ /* _mesa_function_pool[15508]: GetString (offset 275) */
"i\0"
"glGetString\0"
"\0"
- /* _mesa_function_pool[15478]: ColorPointervINTEL (dynamic) */
+ /* _mesa_function_pool[15523]: ColorPointervINTEL (dynamic) */
"iip\0"
"glColorPointervINTEL\0"
"\0"
- /* _mesa_function_pool[15504]: TexEnvf (offset 184) */
+ /* _mesa_function_pool[15549]: TexEnvf (offset 184) */
"iif\0"
"glTexEnvf\0"
"\0"
- /* _mesa_function_pool[15519]: TexCoord3d (offset 110) */
+ /* _mesa_function_pool[15564]: TexCoord3d (offset 110) */
"ddd\0"
"glTexCoord3d\0"
"\0"
- /* _mesa_function_pool[15537]: AlphaFragmentOp1ATI (will be remapped) */
+ /* _mesa_function_pool[15582]: AlphaFragmentOp1ATI (will be remapped) */
"iiiiii\0"
"glAlphaFragmentOp1ATI\0"
"\0"
- /* _mesa_function_pool[15567]: TexCoord3f (offset 112) */
+ /* _mesa_function_pool[15612]: TexCoord3f (offset 112) */
"fff\0"
"glTexCoord3f\0"
"\0"
- /* _mesa_function_pool[15585]: MultiTexCoord3ivARB (offset 397) */
+ /* _mesa_function_pool[15630]: MultiTexCoord3ivARB (offset 397) */
"ip\0"
"glMultiTexCoord3iv\0"
"glMultiTexCoord3ivARB\0"
"\0"
- /* _mesa_function_pool[15630]: MultiTexCoord2sARB (offset 390) */
+ /* _mesa_function_pool[15675]: MultiTexCoord2sARB (offset 390) */
"iii\0"
"glMultiTexCoord2s\0"
"glMultiTexCoord2sARB\0"
"\0"
- /* _mesa_function_pool[15674]: VertexAttrib1dvARB (will be remapped) */
+ /* _mesa_function_pool[15719]: VertexAttrib1dvARB (will be remapped) */
"ip\0"
"glVertexAttrib1dv\0"
"glVertexAttrib1dvARB\0"
"\0"
- /* _mesa_function_pool[15717]: DeleteTextures (offset 327) */
+ /* _mesa_function_pool[15762]: DeleteTextures (offset 327) */
"ip\0"
"glDeleteTextures\0"
"glDeleteTexturesEXT\0"
"\0"
- /* _mesa_function_pool[15758]: TexCoordPointerEXT (will be remapped) */
+ /* _mesa_function_pool[15803]: TexCoordPointerEXT (will be remapped) */
"iiiip\0"
"glTexCoordPointerEXT\0"
"\0"
- /* _mesa_function_pool[15786]: TexSubImage4DSGIS (dynamic) */
+ /* _mesa_function_pool[15831]: TexSubImage4DSGIS (dynamic) */
"iiiiiiiiiiiip\0"
"glTexSubImage4DSGIS\0"
"\0"
- /* _mesa_function_pool[15821]: TexCoord3s (offset 116) */
+ /* _mesa_function_pool[15866]: TexCoord3s (offset 116) */
"iii\0"
"glTexCoord3s\0"
"\0"
- /* _mesa_function_pool[15839]: GetTexLevelParameteriv (offset 285) */
+ /* _mesa_function_pool[15884]: GetTexLevelParameteriv (offset 285) */
"iiip\0"
"glGetTexLevelParameteriv\0"
"\0"
- /* _mesa_function_pool[15870]: CombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[15915]: CombinerStageParameterfvNV (dynamic) */
"iip\0"
"glCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[15904]: StopInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[15949]: StopInstrumentsSGIX (dynamic) */
"i\0"
"glStopInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[15929]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */
+ /* _mesa_function_pool[15974]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */
"fffffffffffffff\0"
"glTexCoord4fColor4fNormal3fVertex4fSUN\0"
"\0"
- /* _mesa_function_pool[15985]: ClearAccum (offset 204) */
+ /* _mesa_function_pool[16030]: ClearAccum (offset 204) */
"ffff\0"
"glClearAccum\0"
"\0"
- /* _mesa_function_pool[16004]: DeformSGIX (dynamic) */
+ /* _mesa_function_pool[16049]: DeformSGIX (dynamic) */
"i\0"
"glDeformSGIX\0"
"\0"
- /* _mesa_function_pool[16020]: GetVertexAttribfvARB (will be remapped) */
+ /* _mesa_function_pool[16065]: GetVertexAttribfvARB (will be remapped) */
"iip\0"
"glGetVertexAttribfv\0"
"glGetVertexAttribfvARB\0"
"\0"
- /* _mesa_function_pool[16068]: SecondaryColor3ivEXT (will be remapped) */
+ /* _mesa_function_pool[16113]: SecondaryColor3ivEXT (will be remapped) */
"p\0"
"glSecondaryColor3iv\0"
"glSecondaryColor3ivEXT\0"
"\0"
- /* _mesa_function_pool[16114]: TexCoord4iv (offset 123) */
+ /* _mesa_function_pool[16159]: TexCoord4iv (offset 123) */
"p\0"
"glTexCoord4iv\0"
"\0"
- /* _mesa_function_pool[16131]: VertexAttribI4uiEXT (will be remapped) */
+ /* _mesa_function_pool[16176]: VertexAttribI4uiEXT (will be remapped) */
"iiiii\0"
"glVertexAttribI4uiEXT\0"
"glVertexAttribI4ui\0"
"\0"
- /* _mesa_function_pool[16179]: GetFragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[16224]: GetFragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[16212]: UniformMatrix4x2fv (will be remapped) */
+ /* _mesa_function_pool[16257]: UniformMatrix4x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix4x2fv\0"
"\0"
- /* _mesa_function_pool[16239]: GetDetailTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[16284]: GetDetailTexFuncSGIS (dynamic) */
"ip\0"
"glGetDetailTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[16266]: GetCombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[16311]: GetCombinerStageParameterfvNV (dynamic) */
"iip\0"
"glGetCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[16303]: PolygonOffset (offset 319) */
+ /* _mesa_function_pool[16348]: PolygonOffset (offset 319) */
"ff\0"
"glPolygonOffset\0"
"\0"
- /* _mesa_function_pool[16323]: BindVertexArray (will be remapped) */
+ /* _mesa_function_pool[16368]: BindVertexArray (will be remapped) */
"i\0"
"glBindVertexArray\0"
"\0"
- /* _mesa_function_pool[16344]: Color4ubVertex2fvSUN (dynamic) */
+ /* _mesa_function_pool[16389]: Color4ubVertex2fvSUN (dynamic) */
"pp\0"
"glColor4ubVertex2fvSUN\0"
"\0"
- /* _mesa_function_pool[16371]: Rectd (offset 86) */
+ /* _mesa_function_pool[16416]: Rectd (offset 86) */
"dddd\0"
"glRectd\0"
"\0"
- /* _mesa_function_pool[16385]: TexFilterFuncSGIS (dynamic) */
+ /* _mesa_function_pool[16430]: TexFilterFuncSGIS (dynamic) */
"iiip\0"
"glTexFilterFuncSGIS\0"
"\0"
- /* _mesa_function_pool[16411]: SampleMaskSGIS (will be remapped) */
+ /* _mesa_function_pool[16456]: SampleMaskSGIS (will be remapped) */
"fi\0"
"glSampleMaskSGIS\0"
"glSampleMaskEXT\0"
"\0"
- /* _mesa_function_pool[16448]: VertexAttribI4ubvEXT (will be remapped) */
+ /* _mesa_function_pool[16493]: VertexAttribI4ubvEXT (will be remapped) */
"ip\0"
"glVertexAttribI4ubvEXT\0"
"glVertexAttribI4ubv\0"
"\0"
- /* _mesa_function_pool[16495]: GetAttribLocationARB (will be remapped) */
+ /* _mesa_function_pool[16540]: GetAttribLocationARB (will be remapped) */
"ip\0"
"glGetAttribLocation\0"
"glGetAttribLocationARB\0"
"\0"
- /* _mesa_function_pool[16542]: RasterPos3i (offset 74) */
+ /* _mesa_function_pool[16587]: RasterPos3i (offset 74) */
"iii\0"
"glRasterPos3i\0"
"\0"
- /* _mesa_function_pool[16561]: VertexAttrib4ubvARB (will be remapped) */
+ /* _mesa_function_pool[16606]: VertexAttrib4ubvARB (will be remapped) */
"ip\0"
"glVertexAttrib4ubv\0"
"glVertexAttrib4ubvARB\0"
"\0"
- /* _mesa_function_pool[16606]: DetailTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[16651]: DetailTexFuncSGIS (dynamic) */
"iip\0"
"glDetailTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[16631]: Normal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[16676]: Normal3fVertex3fSUN (dynamic) */
"ffffff\0"
"glNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[16661]: CopyTexImage2D (offset 324) */
+ /* _mesa_function_pool[16706]: CopyTexImage2D (offset 324) */
"iiiiiiii\0"
"glCopyTexImage2D\0"
"glCopyTexImage2DEXT\0"
"\0"
- /* _mesa_function_pool[16708]: GetBufferPointervARB (will be remapped) */
+ /* _mesa_function_pool[16753]: GetBufferPointervARB (will be remapped) */
"iip\0"
"glGetBufferPointerv\0"
"glGetBufferPointervARB\0"
"\0"
- /* _mesa_function_pool[16756]: ProgramEnvParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[16801]: ProgramEnvParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramEnvParameter4fARB\0"
"glProgramParameter4fNV\0"
"\0"
- /* _mesa_function_pool[16814]: Uniform3ivARB (will be remapped) */
+ /* _mesa_function_pool[16859]: Uniform3ivARB (will be remapped) */
"iip\0"
"glUniform3iv\0"
"glUniform3ivARB\0"
"\0"
- /* _mesa_function_pool[16848]: Lightfv (offset 160) */
+ /* _mesa_function_pool[16893]: Lightfv (offset 160) */
"iip\0"
"glLightfv\0"
"\0"
- /* _mesa_function_pool[16863]: PrimitiveRestartIndexNV (will be remapped) */
+ /* _mesa_function_pool[16908]: PrimitiveRestartIndexNV (will be remapped) */
"i\0"
"glPrimitiveRestartIndexNV\0"
"glPrimitiveRestartIndex\0"
"\0"
- /* _mesa_function_pool[16916]: ClearDepth (offset 208) */
+ /* _mesa_function_pool[16961]: ClearDepth (offset 208) */
"d\0"
"glClearDepth\0"
"\0"
- /* _mesa_function_pool[16932]: GetFenceivNV (will be remapped) */
+ /* _mesa_function_pool[16977]: GetFenceivNV (will be remapped) */
"iip\0"
"glGetFenceivNV\0"
"\0"
- /* _mesa_function_pool[16952]: WindowPos4dvMESA (will be remapped) */
+ /* _mesa_function_pool[16997]: WindowPos4dvMESA (will be remapped) */
"p\0"
"glWindowPos4dvMESA\0"
"\0"
- /* _mesa_function_pool[16974]: ColorSubTable (offset 346) */
+ /* _mesa_function_pool[17019]: ColorSubTable (offset 346) */
"iiiiip\0"
"glColorSubTable\0"
"glColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[17017]: Color4fv (offset 30) */
+ /* _mesa_function_pool[17062]: Color4fv (offset 30) */
"p\0"
"glColor4fv\0"
"\0"
- /* _mesa_function_pool[17031]: MultiTexCoord4ivARB (offset 405) */
+ /* _mesa_function_pool[17076]: MultiTexCoord4ivARB (offset 405) */
"ip\0"
"glMultiTexCoord4iv\0"
"glMultiTexCoord4ivARB\0"
"\0"
- /* _mesa_function_pool[17076]: ProgramLocalParameters4fvEXT (will be remapped) */
+ /* _mesa_function_pool[17121]: ProgramLocalParameters4fvEXT (will be remapped) */
"iiip\0"
"glProgramLocalParameters4fvEXT\0"
"\0"
- /* _mesa_function_pool[17113]: ColorPointer (offset 308) */
+ /* _mesa_function_pool[17158]: ColorPointer (offset 308) */
"iiip\0"
"glColorPointer\0"
"\0"
- /* _mesa_function_pool[17134]: Rects (offset 92) */
+ /* _mesa_function_pool[17179]: Rects (offset 92) */
"iiii\0"
"glRects\0"
"\0"
- /* _mesa_function_pool[17148]: GetMapAttribParameterfvNV (dynamic) */
+ /* _mesa_function_pool[17193]: GetMapAttribParameterfvNV (dynamic) */
"iiip\0"
"glGetMapAttribParameterfvNV\0"
"\0"
- /* _mesa_function_pool[17182]: CreateShaderProgramEXT (will be remapped) */
+ /* _mesa_function_pool[17227]: CreateShaderProgramEXT (will be remapped) */
"ip\0"
"glCreateShaderProgramEXT\0"
"\0"
- /* _mesa_function_pool[17211]: ActiveProgramEXT (will be remapped) */
+ /* _mesa_function_pool[17256]: ActiveProgramEXT (will be remapped) */
"i\0"
"glActiveProgramEXT\0"
"\0"
- /* _mesa_function_pool[17233]: Lightiv (offset 162) */
+ /* _mesa_function_pool[17278]: Lightiv (offset 162) */
"iip\0"
"glLightiv\0"
"\0"
- /* _mesa_function_pool[17248]: VertexAttrib4sARB (will be remapped) */
+ /* _mesa_function_pool[17293]: VertexAttrib4sARB (will be remapped) */
"iiiii\0"
"glVertexAttrib4s\0"
"glVertexAttrib4sARB\0"
"\0"
- /* _mesa_function_pool[17292]: GetQueryObjectuivARB (will be remapped) */
+ /* _mesa_function_pool[17337]: GetQueryObjectuivARB (will be remapped) */
"iip\0"
"glGetQueryObjectuiv\0"
"glGetQueryObjectuivARB\0"
"\0"
- /* _mesa_function_pool[17340]: GetTexParameteriv (offset 283) */
+ /* _mesa_function_pool[17385]: GetTexParameteriv (offset 283) */
"iip\0"
"glGetTexParameteriv\0"
"\0"
- /* _mesa_function_pool[17365]: MapParameterivNV (dynamic) */
+ /* _mesa_function_pool[17410]: MapParameterivNV (dynamic) */
"iip\0"
"glMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[17389]: GenRenderbuffersEXT (will be remapped) */
+ /* _mesa_function_pool[17434]: GenRenderbuffersEXT (will be remapped) */
"ip\0"
"glGenRenderbuffers\0"
"glGenRenderbuffersEXT\0"
"\0"
- /* _mesa_function_pool[17434]: ClearBufferfv (will be remapped) */
+ /* _mesa_function_pool[17479]: ClearBufferfv (will be remapped) */
"iip\0"
"glClearBufferfv\0"
"\0"
- /* _mesa_function_pool[17455]: VertexAttrib2dvARB (will be remapped) */
+ /* _mesa_function_pool[17500]: VertexAttrib2dvARB (will be remapped) */
"ip\0"
"glVertexAttrib2dv\0"
"glVertexAttrib2dvARB\0"
"\0"
- /* _mesa_function_pool[17498]: EdgeFlagPointerEXT (will be remapped) */
+ /* _mesa_function_pool[17543]: EdgeFlagPointerEXT (will be remapped) */
"iip\0"
"glEdgeFlagPointerEXT\0"
"\0"
- /* _mesa_function_pool[17524]: VertexAttribs2svNV (will be remapped) */
+ /* _mesa_function_pool[17569]: VertexAttribs2svNV (will be remapped) */
"iip\0"
"glVertexAttribs2svNV\0"
"\0"
- /* _mesa_function_pool[17550]: WeightbvARB (dynamic) */
+ /* _mesa_function_pool[17595]: WeightbvARB (dynamic) */
"ip\0"
"glWeightbvARB\0"
"\0"
- /* _mesa_function_pool[17568]: VertexAttrib2fvARB (will be remapped) */
+ /* _mesa_function_pool[17613]: VertexAttrib2fvARB (will be remapped) */
"ip\0"
"glVertexAttrib2fv\0"
"glVertexAttrib2fvARB\0"
"\0"
- /* _mesa_function_pool[17611]: GetBufferParameterivARB (will be remapped) */
+ /* _mesa_function_pool[17656]: GetBufferParameterivARB (will be remapped) */
"iip\0"
"glGetBufferParameteriv\0"
"glGetBufferParameterivARB\0"
"\0"
- /* _mesa_function_pool[17665]: Rectdv (offset 87) */
+ /* _mesa_function_pool[17710]: Rectdv (offset 87) */
"pp\0"
"glRectdv\0"
"\0"
- /* _mesa_function_pool[17678]: ListParameteriSGIX (dynamic) */
+ /* _mesa_function_pool[17723]: ListParameteriSGIX (dynamic) */
"iii\0"
"glListParameteriSGIX\0"
"\0"
- /* _mesa_function_pool[17704]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[17749]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */
"iffffffffff\0"
"glReplacementCodeuiColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[17763]: InstrumentsBufferSGIX (dynamic) */
+ /* _mesa_function_pool[17808]: InstrumentsBufferSGIX (dynamic) */
"ip\0"
"glInstrumentsBufferSGIX\0"
"\0"
- /* _mesa_function_pool[17791]: VertexAttrib4NivARB (will be remapped) */
+ /* _mesa_function_pool[17836]: VertexAttrib4NivARB (will be remapped) */
"ip\0"
"glVertexAttrib4Niv\0"
"glVertexAttrib4NivARB\0"
"\0"
- /* _mesa_function_pool[17836]: DrawArraysInstancedARB (will be remapped) */
+ /* _mesa_function_pool[17881]: DrawArraysInstancedARB (will be remapped) */
"iiii\0"
"glDrawArraysInstancedARB\0"
"glDrawArraysInstancedEXT\0"
"glDrawArraysInstanced\0"
"\0"
- /* _mesa_function_pool[17914]: GetAttachedShaders (will be remapped) */
+ /* _mesa_function_pool[17959]: GetAttachedShaders (will be remapped) */
"iipp\0"
"glGetAttachedShaders\0"
"\0"
- /* _mesa_function_pool[17941]: GenVertexArraysAPPLE (will be remapped) */
+ /* _mesa_function_pool[17986]: GenVertexArraysAPPLE (will be remapped) */
"ip\0"
"glGenVertexArraysAPPLE\0"
"\0"
- /* _mesa_function_pool[17968]: ClearBufferfi (will be remapped) */
+ /* _mesa_function_pool[18013]: ClearBufferfi (will be remapped) */
"iifi\0"
"glClearBufferfi\0"
"\0"
- /* _mesa_function_pool[17990]: Materialiv (offset 172) */
+ /* _mesa_function_pool[18035]: Materialiv (offset 172) */
"iip\0"
"glMaterialiv\0"
"\0"
- /* _mesa_function_pool[18008]: PushClientAttrib (offset 335) */
+ /* _mesa_function_pool[18053]: PushClientAttrib (offset 335) */
"i\0"
"glPushClientAttrib\0"
"\0"
- /* _mesa_function_pool[18030]: ProgramEnvParameters4fvEXT (will be remapped) */
+ /* _mesa_function_pool[18075]: ProgramEnvParameters4fvEXT (will be remapped) */
"iiip\0"
"glProgramEnvParameters4fvEXT\0"
"\0"
- /* _mesa_function_pool[18065]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[18110]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glTexCoord2fColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[18111]: WindowPos2iMESA (will be remapped) */
+ /* _mesa_function_pool[18156]: WindowPos2iMESA (will be remapped) */
"ii\0"
"glWindowPos2i\0"
"glWindowPos2iARB\0"
"glWindowPos2iMESA\0"
"\0"
- /* _mesa_function_pool[18164]: SecondaryColor3fvEXT (will be remapped) */
+ /* _mesa_function_pool[18209]: SecondaryColor3fvEXT (will be remapped) */
"p\0"
"glSecondaryColor3fv\0"
"glSecondaryColor3fvEXT\0"
"\0"
- /* _mesa_function_pool[18210]: PolygonMode (offset 174) */
+ /* _mesa_function_pool[18255]: PolygonMode (offset 174) */
"ii\0"
"glPolygonMode\0"
"\0"
- /* _mesa_function_pool[18228]: CompressedTexSubImage1DARB (will be remapped) */
+ /* _mesa_function_pool[18273]: CompressedTexSubImage1DARB (will be remapped) */
"iiiiiip\0"
"glCompressedTexSubImage1D\0"
"glCompressedTexSubImage1DARB\0"
"\0"
- /* _mesa_function_pool[18292]: VertexAttribI1iEXT (will be remapped) */
+ /* _mesa_function_pool[18337]: VertexAttribI1iEXT (will be remapped) */
"ii\0"
"glVertexAttribI1iEXT\0"
"glVertexAttribI1i\0"
"\0"
- /* _mesa_function_pool[18335]: GetVertexAttribivNV (will be remapped) */
+ /* _mesa_function_pool[18380]: GetVertexAttribivNV (will be remapped) */
"iip\0"
"glGetVertexAttribivNV\0"
"\0"
- /* _mesa_function_pool[18362]: GetProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[18407]: GetProgramStringARB (will be remapped) */
"iip\0"
"glGetProgramStringARB\0"
"\0"
- /* _mesa_function_pool[18389]: VertexAttribIPointerEXT (will be remapped) */
+ /* _mesa_function_pool[18434]: VertexAttribIPointerEXT (will be remapped) */
"iiiip\0"
"glVertexAttribIPointerEXT\0"
"glVertexAttribIPointer\0"
"\0"
- /* _mesa_function_pool[18445]: TexBumpParameterfvATI (will be remapped) */
+ /* _mesa_function_pool[18490]: TexBumpParameterfvATI (will be remapped) */
"ip\0"
"glTexBumpParameterfvATI\0"
"\0"
- /* _mesa_function_pool[18473]: CompileShaderARB (will be remapped) */
+ /* _mesa_function_pool[18518]: CompileShaderARB (will be remapped) */
"i\0"
"glCompileShader\0"
"glCompileShaderARB\0"
"\0"
- /* _mesa_function_pool[18511]: DeleteShader (will be remapped) */
+ /* _mesa_function_pool[18556]: DeleteShader (will be remapped) */
"i\0"
"glDeleteShader\0"
"\0"
- /* _mesa_function_pool[18529]: DisableClientState (offset 309) */
+ /* _mesa_function_pool[18574]: DisableClientState (offset 309) */
"i\0"
"glDisableClientState\0"
"\0"
- /* _mesa_function_pool[18553]: TexGeni (offset 192) */
+ /* _mesa_function_pool[18598]: TexGeni (offset 192) */
"iii\0"
"glTexGeni\0"
"\0"
- /* _mesa_function_pool[18568]: TexGenf (offset 190) */
+ /* _mesa_function_pool[18613]: TexGenf (offset 190) */
"iif\0"
"glTexGenf\0"
"\0"
- /* _mesa_function_pool[18583]: Uniform3fARB (will be remapped) */
+ /* _mesa_function_pool[18628]: Uniform3fARB (will be remapped) */
"ifff\0"
"glUniform3f\0"
"glUniform3fARB\0"
"\0"
- /* _mesa_function_pool[18616]: TexGend (offset 188) */
+ /* _mesa_function_pool[18661]: TexGend (offset 188) */
"iid\0"
"glTexGend\0"
"\0"
- /* _mesa_function_pool[18631]: ListParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[18676]: ListParameterfvSGIX (dynamic) */
"iip\0"
"glListParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[18658]: GetPolygonStipple (offset 274) */
+ /* _mesa_function_pool[18703]: GetPolygonStipple (offset 274) */
"p\0"
"glGetPolygonStipple\0"
"\0"
- /* _mesa_function_pool[18681]: Tangent3dvEXT (dynamic) */
+ /* _mesa_function_pool[18726]: Tangent3dvEXT (dynamic) */
"p\0"
"glTangent3dvEXT\0"
"\0"
- /* _mesa_function_pool[18700]: BindBufferOffsetEXT (will be remapped) */
+ /* _mesa_function_pool[18745]: BindBufferOffsetEXT (will be remapped) */
"iiii\0"
"glBindBufferOffsetEXT\0"
"\0"
- /* _mesa_function_pool[18728]: WindowPos3sMESA (will be remapped) */
+ /* _mesa_function_pool[18773]: WindowPos3sMESA (will be remapped) */
"iii\0"
"glWindowPos3s\0"
"glWindowPos3sARB\0"
"glWindowPos3sMESA\0"
"\0"
- /* _mesa_function_pool[18782]: VertexAttrib2svNV (will be remapped) */
+ /* _mesa_function_pool[18827]: VertexAttrib2svNV (will be remapped) */
"ip\0"
"glVertexAttrib2svNV\0"
"\0"
- /* _mesa_function_pool[18806]: DisableIndexedEXT (will be remapped) */
+ /* _mesa_function_pool[18851]: DisableIndexedEXT (will be remapped) */
"ii\0"
"glDisableIndexedEXT\0"
"glDisablei\0"
"\0"
- /* _mesa_function_pool[18841]: BindBufferBaseEXT (will be remapped) */
+ /* _mesa_function_pool[18886]: BindBufferBaseEXT (will be remapped) */
"iii\0"
"glBindBufferBaseEXT\0"
"glBindBufferBase\0"
"\0"
- /* _mesa_function_pool[18883]: TexCoord2fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[18928]: TexCoord2fVertex3fvSUN (dynamic) */
"pp\0"
"glTexCoord2fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[18912]: WindowPos4sMESA (will be remapped) */
+ /* _mesa_function_pool[18957]: WindowPos4sMESA (will be remapped) */
"iiii\0"
"glWindowPos4sMESA\0"
"\0"
- /* _mesa_function_pool[18936]: VertexAttrib4NuivARB (will be remapped) */
+ /* _mesa_function_pool[18981]: VertexAttrib4NuivARB (will be remapped) */
"ip\0"
"glVertexAttrib4Nuiv\0"
"glVertexAttrib4NuivARB\0"
"\0"
- /* _mesa_function_pool[18983]: ClientActiveTextureARB (offset 375) */
+ /* _mesa_function_pool[19028]: ClientActiveTextureARB (offset 375) */
"i\0"
"glClientActiveTexture\0"
"glClientActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[19033]: PixelTexGenSGIX (will be remapped) */
+ /* _mesa_function_pool[19078]: PixelTexGenSGIX (will be remapped) */
"i\0"
"glPixelTexGenSGIX\0"
"\0"
- /* _mesa_function_pool[19054]: ReplacementCodeusvSUN (dynamic) */
+ /* _mesa_function_pool[19099]: ReplacementCodeusvSUN (dynamic) */
"p\0"
"glReplacementCodeusvSUN\0"
"\0"
- /* _mesa_function_pool[19081]: Uniform4fARB (will be remapped) */
+ /* _mesa_function_pool[19126]: Uniform4fARB (will be remapped) */
"iffff\0"
"glUniform4f\0"
"glUniform4fARB\0"
"\0"
- /* _mesa_function_pool[19115]: Color4sv (offset 34) */
+ /* _mesa_function_pool[19160]: Color4sv (offset 34) */
"p\0"
"glColor4sv\0"
"\0"
- /* _mesa_function_pool[19129]: FlushMappedBufferRange (will be remapped) */
+ /* _mesa_function_pool[19174]: FlushMappedBufferRange (will be remapped) */
"iii\0"
"glFlushMappedBufferRange\0"
"\0"
- /* _mesa_function_pool[19159]: IsProgramNV (will be remapped) */
+ /* _mesa_function_pool[19204]: IsProgramNV (will be remapped) */
"i\0"
"glIsProgramARB\0"
"glIsProgramNV\0"
"\0"
- /* _mesa_function_pool[19191]: FlushMappedBufferRangeAPPLE (will be remapped) */
+ /* _mesa_function_pool[19236]: FlushMappedBufferRangeAPPLE (will be remapped) */
"iii\0"
"glFlushMappedBufferRangeAPPLE\0"
"\0"
- /* _mesa_function_pool[19226]: PixelZoom (offset 246) */
+ /* _mesa_function_pool[19271]: PixelZoom (offset 246) */
"ff\0"
"glPixelZoom\0"
"\0"
- /* _mesa_function_pool[19242]: ReplacementCodePointerSUN (dynamic) */
+ /* _mesa_function_pool[19287]: ReplacementCodePointerSUN (dynamic) */
"iip\0"
"glReplacementCodePointerSUN\0"
"\0"
- /* _mesa_function_pool[19275]: ProgramEnvParameter4dARB (will be remapped) */
+ /* _mesa_function_pool[19320]: ProgramEnvParameter4dARB (will be remapped) */
"iidddd\0"
"glProgramEnvParameter4dARB\0"
"glProgramParameter4dNV\0"
"\0"
- /* _mesa_function_pool[19333]: ColorTableParameterfv (offset 340) */
+ /* _mesa_function_pool[19378]: ColorTableParameterfv (offset 340) */
"iip\0"
"glColorTableParameterfv\0"
"glColorTableParameterfvSGI\0"
"\0"
- /* _mesa_function_pool[19389]: FragmentLightModelfSGIX (dynamic) */
+ /* _mesa_function_pool[19434]: FragmentLightModelfSGIX (dynamic) */
"if\0"
"glFragmentLightModelfSGIX\0"
"\0"
- /* _mesa_function_pool[19419]: Binormal3bvEXT (dynamic) */
+ /* _mesa_function_pool[19464]: Binormal3bvEXT (dynamic) */
"p\0"
"glBinormal3bvEXT\0"
"\0"
- /* _mesa_function_pool[19439]: PixelMapuiv (offset 252) */
+ /* _mesa_function_pool[19484]: PixelMapuiv (offset 252) */
"iip\0"
"glPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[19458]: Color3dv (offset 12) */
+ /* _mesa_function_pool[19503]: Color3dv (offset 12) */
"p\0"
"glColor3dv\0"
"\0"
- /* _mesa_function_pool[19472]: IsTexture (offset 330) */
+ /* _mesa_function_pool[19517]: IsTexture (offset 330) */
"i\0"
"glIsTexture\0"
"glIsTextureEXT\0"
"\0"
- /* _mesa_function_pool[19502]: VertexWeightfvEXT (dynamic) */
+ /* _mesa_function_pool[19547]: VertexWeightfvEXT (dynamic) */
"p\0"
"glVertexWeightfvEXT\0"
"\0"
- /* _mesa_function_pool[19525]: VertexAttrib1dARB (will be remapped) */
+ /* _mesa_function_pool[19570]: VertexAttrib1dARB (will be remapped) */
"id\0"
"glVertexAttrib1d\0"
"glVertexAttrib1dARB\0"
"\0"
- /* _mesa_function_pool[19566]: ImageTransformParameterivHP (dynamic) */
+ /* _mesa_function_pool[19611]: ImageTransformParameterivHP (dynamic) */
"iip\0"
"glImageTransformParameterivHP\0"
"\0"
- /* _mesa_function_pool[19601]: TexCoord4i (offset 122) */
+ /* _mesa_function_pool[19646]: TexCoord4i (offset 122) */
"iiii\0"
"glTexCoord4i\0"
"\0"
- /* _mesa_function_pool[19620]: DeleteQueriesARB (will be remapped) */
+ /* _mesa_function_pool[19665]: DeleteQueriesARB (will be remapped) */
"ip\0"
"glDeleteQueries\0"
"glDeleteQueriesARB\0"
"\0"
- /* _mesa_function_pool[19659]: Color4ubVertex2fSUN (dynamic) */
+ /* _mesa_function_pool[19704]: Color4ubVertex2fSUN (dynamic) */
"iiiiff\0"
"glColor4ubVertex2fSUN\0"
"\0"
- /* _mesa_function_pool[19689]: FragmentColorMaterialSGIX (dynamic) */
+ /* _mesa_function_pool[19734]: FragmentColorMaterialSGIX (dynamic) */
"ii\0"
"glFragmentColorMaterialSGIX\0"
"\0"
- /* _mesa_function_pool[19721]: CurrentPaletteMatrixARB (dynamic) */
+ /* _mesa_function_pool[19766]: CurrentPaletteMatrixARB (dynamic) */
"i\0"
"glCurrentPaletteMatrixARB\0"
"\0"
- /* _mesa_function_pool[19750]: GetMapdv (offset 266) */
+ /* _mesa_function_pool[19795]: GetMapdv (offset 266) */
"iip\0"
"glGetMapdv\0"
"\0"
- /* _mesa_function_pool[19766]: ObjectPurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[19811]: ObjectPurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectPurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[19794]: GetStringi (will be remapped) */
+ /* _mesa_function_pool[19839]: GetStringi (will be remapped) */
"ii\0"
"glGetStringi\0"
"\0"
- /* _mesa_function_pool[19811]: SamplePatternSGIS (will be remapped) */
+ /* _mesa_function_pool[19856]: SamplePatternSGIS (will be remapped) */
"i\0"
"glSamplePatternSGIS\0"
"glSamplePatternEXT\0"
"\0"
- /* _mesa_function_pool[19853]: PixelStoref (offset 249) */
+ /* _mesa_function_pool[19898]: PixelStoref (offset 249) */
"if\0"
"glPixelStoref\0"
"\0"
- /* _mesa_function_pool[19871]: IsQueryARB (will be remapped) */
+ /* _mesa_function_pool[19916]: IsQueryARB (will be remapped) */
"i\0"
"glIsQuery\0"
"glIsQueryARB\0"
"\0"
- /* _mesa_function_pool[19897]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[19942]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */
"iiiiifff\0"
"glReplacementCodeuiColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[19946]: PixelStorei (offset 250) */
+ /* _mesa_function_pool[19991]: PixelStorei (offset 250) */
"ii\0"
"glPixelStorei\0"
"\0"
- /* _mesa_function_pool[19964]: VertexAttrib4usvARB (will be remapped) */
+ /* _mesa_function_pool[20009]: VertexAttrib4usvARB (will be remapped) */
"ip\0"
"glVertexAttrib4usv\0"
"glVertexAttrib4usvARB\0"
"\0"
- /* _mesa_function_pool[20009]: LinkProgramARB (will be remapped) */
+ /* _mesa_function_pool[20054]: LinkProgramARB (will be remapped) */
"i\0"
"glLinkProgram\0"
"glLinkProgramARB\0"
"\0"
- /* _mesa_function_pool[20043]: VertexAttrib2fNV (will be remapped) */
+ /* _mesa_function_pool[20088]: VertexAttrib2fNV (will be remapped) */
"iff\0"
"glVertexAttrib2fNV\0"
"\0"
- /* _mesa_function_pool[20067]: ShaderSourceARB (will be remapped) */
+ /* _mesa_function_pool[20112]: ShaderSourceARB (will be remapped) */
"iipp\0"
"glShaderSource\0"
"glShaderSourceARB\0"
"\0"
- /* _mesa_function_pool[20106]: FragmentMaterialiSGIX (dynamic) */
+ /* _mesa_function_pool[20151]: FragmentMaterialiSGIX (dynamic) */
"iii\0"
"glFragmentMaterialiSGIX\0"
"\0"
- /* _mesa_function_pool[20135]: EvalCoord2dv (offset 233) */
+ /* _mesa_function_pool[20180]: EvalCoord2dv (offset 233) */
"p\0"
"glEvalCoord2dv\0"
"\0"
- /* _mesa_function_pool[20153]: VertexAttrib3svARB (will be remapped) */
+ /* _mesa_function_pool[20198]: VertexAttrib3svARB (will be remapped) */
"ip\0"
"glVertexAttrib3sv\0"
"glVertexAttrib3svARB\0"
"\0"
- /* _mesa_function_pool[20196]: ColorMaterial (offset 151) */
+ /* _mesa_function_pool[20241]: ColorMaterial (offset 151) */
"ii\0"
"glColorMaterial\0"
"\0"
- /* _mesa_function_pool[20216]: CompressedTexSubImage3DARB (will be remapped) */
+ /* _mesa_function_pool[20261]: CompressedTexSubImage3DARB (will be remapped) */
"iiiiiiiiiip\0"
"glCompressedTexSubImage3D\0"
"glCompressedTexSubImage3DARB\0"
"\0"
- /* _mesa_function_pool[20284]: WindowPos2ivMESA (will be remapped) */
+ /* _mesa_function_pool[20329]: WindowPos2ivMESA (will be remapped) */
"p\0"
"glWindowPos2iv\0"
"glWindowPos2ivARB\0"
"glWindowPos2ivMESA\0"
"\0"
- /* _mesa_function_pool[20339]: IsFramebufferEXT (will be remapped) */
+ /* _mesa_function_pool[20384]: IsFramebufferEXT (will be remapped) */
"i\0"
"glIsFramebuffer\0"
"glIsFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[20377]: Uniform4ivARB (will be remapped) */
+ /* _mesa_function_pool[20422]: Uniform4ivARB (will be remapped) */
"iip\0"
"glUniform4iv\0"
"glUniform4ivARB\0"
"\0"
- /* _mesa_function_pool[20411]: GetVertexAttribdvARB (will be remapped) */
+ /* _mesa_function_pool[20456]: GetVertexAttribdvARB (will be remapped) */
"iip\0"
"glGetVertexAttribdv\0"
"glGetVertexAttribdvARB\0"
"\0"
- /* _mesa_function_pool[20459]: TexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[20504]: TexBumpParameterivATI (will be remapped) */
"ip\0"
"glTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[20487]: GetSeparableFilter (offset 359) */
+ /* _mesa_function_pool[20532]: GetSeparableFilter (offset 359) */
"iiippp\0"
"glGetSeparableFilter\0"
"glGetSeparableFilterEXT\0"
"\0"
- /* _mesa_function_pool[20540]: Binormal3dEXT (dynamic) */
+ /* _mesa_function_pool[20585]: Binormal3dEXT (dynamic) */
"ddd\0"
"glBinormal3dEXT\0"
"\0"
- /* _mesa_function_pool[20561]: SpriteParameteriSGIX (dynamic) */
+ /* _mesa_function_pool[20606]: SpriteParameteriSGIX (dynamic) */
"ii\0"
"glSpriteParameteriSGIX\0"
"\0"
- /* _mesa_function_pool[20588]: RequestResidentProgramsNV (will be remapped) */
+ /* _mesa_function_pool[20633]: RequestResidentProgramsNV (will be remapped) */
"ip\0"
"glRequestResidentProgramsNV\0"
"\0"
- /* _mesa_function_pool[20620]: TagSampleBufferSGIX (dynamic) */
+ /* _mesa_function_pool[20665]: TagSampleBufferSGIX (dynamic) */
"\0"
"glTagSampleBufferSGIX\0"
"\0"
- /* _mesa_function_pool[20644]: TransformFeedbackVaryingsEXT (will be remapped) */
+ /* _mesa_function_pool[20689]: TransformFeedbackVaryingsEXT (will be remapped) */
"iipi\0"
"glTransformFeedbackVaryingsEXT\0"
"glTransformFeedbackVaryings\0"
"\0"
- /* _mesa_function_pool[20709]: FeedbackBuffer (offset 194) */
+ /* _mesa_function_pool[20754]: FeedbackBuffer (offset 194) */
"iip\0"
"glFeedbackBuffer\0"
"\0"
- /* _mesa_function_pool[20731]: RasterPos2iv (offset 67) */
+ /* _mesa_function_pool[20776]: RasterPos2iv (offset 67) */
"p\0"
"glRasterPos2iv\0"
"\0"
- /* _mesa_function_pool[20749]: TexImage1D (offset 182) */
+ /* _mesa_function_pool[20794]: TexImage1D (offset 182) */
"iiiiiiip\0"
"glTexImage1D\0"
"\0"
- /* _mesa_function_pool[20772]: ListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[20817]: ListParameterivSGIX (dynamic) */
"iip\0"
"glListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[20799]: MultiDrawElementsEXT (will be remapped) */
+ /* _mesa_function_pool[20844]: MultiDrawElementsEXT (will be remapped) */
"ipipi\0"
"glMultiDrawElements\0"
"glMultiDrawElementsEXT\0"
"\0"
- /* _mesa_function_pool[20849]: Color3s (offset 17) */
+ /* _mesa_function_pool[20894]: Color3s (offset 17) */
"iii\0"
"glColor3s\0"
"\0"
- /* _mesa_function_pool[20864]: Uniform1ivARB (will be remapped) */
+ /* _mesa_function_pool[20909]: Uniform1ivARB (will be remapped) */
"iip\0"
"glUniform1iv\0"
"glUniform1ivARB\0"
"\0"
- /* _mesa_function_pool[20898]: WindowPos2sMESA (will be remapped) */
+ /* _mesa_function_pool[20943]: WindowPos2sMESA (will be remapped) */
"ii\0"
"glWindowPos2s\0"
"glWindowPos2sARB\0"
"glWindowPos2sMESA\0"
"\0"
- /* _mesa_function_pool[20951]: WeightusvARB (dynamic) */
+ /* _mesa_function_pool[20996]: WeightusvARB (dynamic) */
"ip\0"
"glWeightusvARB\0"
"\0"
- /* _mesa_function_pool[20970]: TexCoordPointer (offset 320) */
+ /* _mesa_function_pool[21015]: TexCoordPointer (offset 320) */
"iiip\0"
"glTexCoordPointer\0"
"\0"
- /* _mesa_function_pool[20994]: FogCoordPointerEXT (will be remapped) */
+ /* _mesa_function_pool[21039]: FogCoordPointerEXT (will be remapped) */
"iip\0"
"glFogCoordPointer\0"
"glFogCoordPointerEXT\0"
"\0"
- /* _mesa_function_pool[21038]: IndexMaterialEXT (dynamic) */
+ /* _mesa_function_pool[21083]: IndexMaterialEXT (dynamic) */
"ii\0"
"glIndexMaterialEXT\0"
"\0"
- /* _mesa_function_pool[21061]: Color3i (offset 15) */
+ /* _mesa_function_pool[21106]: Color3i (offset 15) */
"iii\0"
"glColor3i\0"
"\0"
- /* _mesa_function_pool[21076]: FrontFace (offset 157) */
+ /* _mesa_function_pool[21121]: FrontFace (offset 157) */
"i\0"
"glFrontFace\0"
"\0"
- /* _mesa_function_pool[21091]: EvalCoord2d (offset 232) */
+ /* _mesa_function_pool[21136]: EvalCoord2d (offset 232) */
"dd\0"
"glEvalCoord2d\0"
"\0"
- /* _mesa_function_pool[21109]: SecondaryColor3ubvEXT (will be remapped) */
+ /* _mesa_function_pool[21154]: SecondaryColor3ubvEXT (will be remapped) */
"p\0"
"glSecondaryColor3ubv\0"
"glSecondaryColor3ubvEXT\0"
"\0"
- /* _mesa_function_pool[21157]: EvalCoord2f (offset 234) */
+ /* _mesa_function_pool[21202]: EvalCoord2f (offset 234) */
"ff\0"
"glEvalCoord2f\0"
"\0"
- /* _mesa_function_pool[21175]: VertexAttrib4dvARB (will be remapped) */
+ /* _mesa_function_pool[21220]: VertexAttrib4dvARB (will be remapped) */
"ip\0"
"glVertexAttrib4dv\0"
"glVertexAttrib4dvARB\0"
"\0"
- /* _mesa_function_pool[21218]: BindAttribLocationARB (will be remapped) */
+ /* _mesa_function_pool[21263]: BindAttribLocationARB (will be remapped) */
"iip\0"
"glBindAttribLocation\0"
"glBindAttribLocationARB\0"
"\0"
- /* _mesa_function_pool[21268]: Color3b (offset 9) */
+ /* _mesa_function_pool[21313]: Color3b (offset 9) */
"iii\0"
"glColor3b\0"
"\0"
- /* _mesa_function_pool[21283]: MultiTexCoord2dARB (offset 384) */
+ /* _mesa_function_pool[21328]: MultiTexCoord2dARB (offset 384) */
"idd\0"
"glMultiTexCoord2d\0"
"glMultiTexCoord2dARB\0"
"\0"
- /* _mesa_function_pool[21327]: ExecuteProgramNV (will be remapped) */
+ /* _mesa_function_pool[21372]: ExecuteProgramNV (will be remapped) */
"iip\0"
"glExecuteProgramNV\0"
"\0"
- /* _mesa_function_pool[21351]: Color3f (offset 13) */
+ /* _mesa_function_pool[21396]: Color3f (offset 13) */
"fff\0"
"glColor3f\0"
"\0"
- /* _mesa_function_pool[21366]: LightEnviSGIX (dynamic) */
+ /* _mesa_function_pool[21411]: LightEnviSGIX (dynamic) */
"ii\0"
"glLightEnviSGIX\0"
"\0"
- /* _mesa_function_pool[21386]: Color3d (offset 11) */
+ /* _mesa_function_pool[21431]: Color3d (offset 11) */
"ddd\0"
"glColor3d\0"
"\0"
- /* _mesa_function_pool[21401]: Normal3dv (offset 55) */
+ /* _mesa_function_pool[21446]: Normal3dv (offset 55) */
"p\0"
"glNormal3dv\0"
"\0"
- /* _mesa_function_pool[21416]: Lightf (offset 159) */
+ /* _mesa_function_pool[21461]: Lightf (offset 159) */
"iif\0"
"glLightf\0"
"\0"
- /* _mesa_function_pool[21430]: ReplacementCodeuiSUN (dynamic) */
+ /* _mesa_function_pool[21475]: ReplacementCodeuiSUN (dynamic) */
"i\0"
"glReplacementCodeuiSUN\0"
"\0"
- /* _mesa_function_pool[21456]: MatrixMode (offset 293) */
+ /* _mesa_function_pool[21501]: MatrixMode (offset 293) */
"i\0"
"glMatrixMode\0"
"\0"
- /* _mesa_function_pool[21472]: GetPixelMapusv (offset 273) */
+ /* _mesa_function_pool[21517]: GetPixelMapusv (offset 273) */
"ip\0"
"glGetPixelMapusv\0"
"\0"
- /* _mesa_function_pool[21493]: Lighti (offset 161) */
+ /* _mesa_function_pool[21538]: Lighti (offset 161) */
"iii\0"
"glLighti\0"
"\0"
- /* _mesa_function_pool[21507]: VertexAttribPointerNV (will be remapped) */
+ /* _mesa_function_pool[21552]: VertexAttribPointerNV (will be remapped) */
"iiiip\0"
"glVertexAttribPointerNV\0"
"\0"
- /* _mesa_function_pool[21538]: ClearDepthf (will be remapped) */
+ /* _mesa_function_pool[21583]: ClearDepthf (will be remapped) */
"f\0"
"glClearDepthf\0"
"\0"
- /* _mesa_function_pool[21555]: GetBooleanIndexedvEXT (will be remapped) */
+ /* _mesa_function_pool[21600]: GetBooleanIndexedvEXT (will be remapped) */
"iip\0"
"glGetBooleanIndexedvEXT\0"
"glGetBooleani_v\0"
"\0"
- /* _mesa_function_pool[21600]: GetFramebufferAttachmentParameterivEXT (will be remapped) */
+ /* _mesa_function_pool[21645]: GetFramebufferAttachmentParameterivEXT (will be remapped) */
"iiip\0"
"glGetFramebufferAttachmentParameteriv\0"
"glGetFramebufferAttachmentParameterivEXT\0"
"\0"
- /* _mesa_function_pool[21685]: PixelTransformParameterfEXT (dynamic) */
+ /* _mesa_function_pool[21730]: PixelTransformParameterfEXT (dynamic) */
"iif\0"
"glPixelTransformParameterfEXT\0"
"\0"
- /* _mesa_function_pool[21720]: MultiTexCoord4dvARB (offset 401) */
+ /* _mesa_function_pool[21765]: MultiTexCoord4dvARB (offset 401) */
"ip\0"
"glMultiTexCoord4dv\0"
"glMultiTexCoord4dvARB\0"
"\0"
- /* _mesa_function_pool[21765]: PixelTransformParameteriEXT (dynamic) */
+ /* _mesa_function_pool[21810]: PixelTransformParameteriEXT (dynamic) */
"iii\0"
"glPixelTransformParameteriEXT\0"
"\0"
- /* _mesa_function_pool[21800]: GetDoublev (offset 260) */
+ /* _mesa_function_pool[21845]: GetDoublev (offset 260) */
"ip\0"
"glGetDoublev\0"
"\0"
- /* _mesa_function_pool[21817]: MultMatrixd (offset 295) */
+ /* _mesa_function_pool[21862]: MultMatrixd (offset 295) */
"p\0"
"glMultMatrixd\0"
"\0"
- /* _mesa_function_pool[21834]: MultMatrixf (offset 294) */
+ /* _mesa_function_pool[21879]: MultMatrixf (offset 294) */
"p\0"
"glMultMatrixf\0"
"\0"
- /* _mesa_function_pool[21851]: VertexAttribI4bvEXT (will be remapped) */
+ /* _mesa_function_pool[21896]: VertexAttribI4bvEXT (will be remapped) */
"ip\0"
"glVertexAttribI4bvEXT\0"
"glVertexAttribI4bv\0"
"\0"
- /* _mesa_function_pool[21896]: TexCoord2fColor4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[21941]: TexCoord2fColor4ubVertex3fSUN (dynamic) */
"ffiiiifff\0"
"glTexCoord2fColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[21939]: Uniform1iARB (will be remapped) */
+ /* _mesa_function_pool[21984]: Uniform1iARB (will be remapped) */
"ii\0"
"glUniform1i\0"
"glUniform1iARB\0"
"\0"
- /* _mesa_function_pool[21970]: VertexAttribPointerARB (will be remapped) */
+ /* _mesa_function_pool[22015]: VertexAttribPointerARB (will be remapped) */
"iiiiip\0"
"glVertexAttribPointer\0"
"glVertexAttribPointerARB\0"
"\0"
- /* _mesa_function_pool[22025]: VertexAttrib3sNV (will be remapped) */
+ /* _mesa_function_pool[22070]: VertexAttrib3sNV (will be remapped) */
"iiii\0"
"glVertexAttrib3sNV\0"
"\0"
- /* _mesa_function_pool[22050]: SharpenTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[22095]: SharpenTexFuncSGIS (dynamic) */
"iip\0"
"glSharpenTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[22076]: MultiTexCoord4fvARB (offset 403) */
+ /* _mesa_function_pool[22121]: MultiTexCoord4fvARB (offset 403) */
"ip\0"
"glMultiTexCoord4fv\0"
"glMultiTexCoord4fvARB\0"
"\0"
- /* _mesa_function_pool[22121]: Uniform2uiEXT (will be remapped) */
+ /* _mesa_function_pool[22166]: Uniform2uiEXT (will be remapped) */
"iii\0"
"glUniform2uiEXT\0"
"glUniform2ui\0"
"\0"
- /* _mesa_function_pool[22155]: UniformMatrix2x3fv (will be remapped) */
+ /* _mesa_function_pool[22200]: UniformMatrix2x3fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x3fv\0"
"\0"
- /* _mesa_function_pool[22182]: TrackMatrixNV (will be remapped) */
+ /* _mesa_function_pool[22227]: TrackMatrixNV (will be remapped) */
"iiii\0"
"glTrackMatrixNV\0"
"\0"
- /* _mesa_function_pool[22204]: CombinerParameteriNV (will be remapped) */
+ /* _mesa_function_pool[22249]: CombinerParameteriNV (will be remapped) */
"ii\0"
"glCombinerParameteriNV\0"
"\0"
- /* _mesa_function_pool[22231]: DeleteAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[22276]: DeleteAsyncMarkersSGIX (dynamic) */
"ii\0"
"glDeleteAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[22260]: ReplacementCodeusSUN (dynamic) */
+ /* _mesa_function_pool[22305]: ReplacementCodeusSUN (dynamic) */
"i\0"
"glReplacementCodeusSUN\0"
"\0"
- /* _mesa_function_pool[22286]: IsAsyncMarkerSGIX (dynamic) */
+ /* _mesa_function_pool[22331]: IsAsyncMarkerSGIX (dynamic) */
"i\0"
"glIsAsyncMarkerSGIX\0"
"\0"
- /* _mesa_function_pool[22309]: FrameZoomSGIX (dynamic) */
+ /* _mesa_function_pool[22354]: FrameZoomSGIX (dynamic) */
"i\0"
"glFrameZoomSGIX\0"
"\0"
- /* _mesa_function_pool[22328]: Normal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[22373]: Normal3fVertex3fvSUN (dynamic) */
"pp\0"
"glNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[22355]: RasterPos4sv (offset 85) */
+ /* _mesa_function_pool[22400]: RasterPos4sv (offset 85) */
"p\0"
"glRasterPos4sv\0"
"\0"
- /* _mesa_function_pool[22373]: VertexAttrib4NsvARB (will be remapped) */
+ /* _mesa_function_pool[22418]: VertexAttrib4NsvARB (will be remapped) */
"ip\0"
"glVertexAttrib4Nsv\0"
"glVertexAttrib4NsvARB\0"
"\0"
- /* _mesa_function_pool[22418]: VertexAttrib3fvARB (will be remapped) */
+ /* _mesa_function_pool[22463]: VertexAttrib3fvARB (will be remapped) */
"ip\0"
"glVertexAttrib3fv\0"
"glVertexAttrib3fvARB\0"
"\0"
- /* _mesa_function_pool[22461]: ClearColor (offset 206) */
+ /* _mesa_function_pool[22506]: ClearColor (offset 206) */
"ffff\0"
"glClearColor\0"
"\0"
- /* _mesa_function_pool[22480]: GetSynciv (will be remapped) */
+ /* _mesa_function_pool[22525]: GetSynciv (will be remapped) */
"iiipp\0"
"glGetSynciv\0"
"\0"
- /* _mesa_function_pool[22499]: ClearColorIiEXT (will be remapped) */
+ /* _mesa_function_pool[22544]: ClearColorIiEXT (will be remapped) */
"iiii\0"
"glClearColorIiEXT\0"
"\0"
- /* _mesa_function_pool[22523]: DeleteFramebuffersEXT (will be remapped) */
+ /* _mesa_function_pool[22568]: DeleteFramebuffersEXT (will be remapped) */
"ip\0"
"glDeleteFramebuffers\0"
"glDeleteFramebuffersEXT\0"
"\0"
- /* _mesa_function_pool[22572]: GlobalAlphaFactorsSUN (dynamic) */
+ /* _mesa_function_pool[22617]: GlobalAlphaFactorsSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorsSUN\0"
"\0"
- /* _mesa_function_pool[22599]: IsEnabledIndexedEXT (will be remapped) */
+ /* _mesa_function_pool[22644]: IsEnabledIndexedEXT (will be remapped) */
"ii\0"
"glIsEnabledIndexedEXT\0"
"glIsEnabledi\0"
"\0"
- /* _mesa_function_pool[22638]: TexEnviv (offset 187) */
+ /* _mesa_function_pool[22683]: TexEnviv (offset 187) */
"iip\0"
"glTexEnviv\0"
"\0"
- /* _mesa_function_pool[22654]: TexSubImage3D (offset 372) */
+ /* _mesa_function_pool[22699]: TexSubImage3D (offset 372) */
"iiiiiiiiiip\0"
"glTexSubImage3D\0"
"glTexSubImage3DEXT\0"
"\0"
- /* _mesa_function_pool[22702]: Tangent3fEXT (dynamic) */
+ /* _mesa_function_pool[22747]: Tangent3fEXT (dynamic) */
"fff\0"
"glTangent3fEXT\0"
"\0"
- /* _mesa_function_pool[22722]: SecondaryColor3uivEXT (will be remapped) */
+ /* _mesa_function_pool[22767]: SecondaryColor3uivEXT (will be remapped) */
"p\0"
"glSecondaryColor3uiv\0"
"glSecondaryColor3uivEXT\0"
"\0"
- /* _mesa_function_pool[22770]: MatrixIndexubvARB (dynamic) */
+ /* _mesa_function_pool[22815]: MatrixIndexubvARB (dynamic) */
"ip\0"
"glMatrixIndexubvARB\0"
"\0"
- /* _mesa_function_pool[22794]: Color4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[22839]: Color4fNormal3fVertex3fSUN (dynamic) */
"ffffffffff\0"
"glColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[22835]: PixelTexGenParameterfSGIS (will be remapped) */
+ /* _mesa_function_pool[22880]: PixelTexGenParameterfSGIS (will be remapped) */
"if\0"
"glPixelTexGenParameterfSGIS\0"
"\0"
- /* _mesa_function_pool[22867]: CreateShader (will be remapped) */
+ /* _mesa_function_pool[22912]: CreateShader (will be remapped) */
"i\0"
"glCreateShader\0"
"\0"
- /* _mesa_function_pool[22885]: GetColorTableParameterfv (offset 344) */
+ /* _mesa_function_pool[22930]: GetColorTableParameterfv (offset 344) */
"iip\0"
"glGetColorTableParameterfv\0"
"glGetColorTableParameterfvSGI\0"
"glGetColorTableParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[22977]: FragmentLightModelfvSGIX (dynamic) */
+ /* _mesa_function_pool[23022]: FragmentLightModelfvSGIX (dynamic) */
"ip\0"
"glFragmentLightModelfvSGIX\0"
"\0"
- /* _mesa_function_pool[23008]: Bitmap (offset 8) */
+ /* _mesa_function_pool[23053]: Bitmap (offset 8) */
"iiffffp\0"
"glBitmap\0"
"\0"
- /* _mesa_function_pool[23026]: MultiTexCoord3fARB (offset 394) */
+ /* _mesa_function_pool[23071]: MultiTexCoord3fARB (offset 394) */
"ifff\0"
"glMultiTexCoord3f\0"
"glMultiTexCoord3fARB\0"
"\0"
- /* _mesa_function_pool[23071]: GetTexLevelParameterfv (offset 284) */
+ /* _mesa_function_pool[23116]: GetTexLevelParameterfv (offset 284) */
"iiip\0"
"glGetTexLevelParameterfv\0"
"\0"
- /* _mesa_function_pool[23102]: GetPixelTexGenParameterfvSGIS (will be remapped) */
+ /* _mesa_function_pool[23147]: GetPixelTexGenParameterfvSGIS (will be remapped) */
"ip\0"
"glGetPixelTexGenParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[23138]: GenFramebuffersEXT (will be remapped) */
+ /* _mesa_function_pool[23183]: GenFramebuffersEXT (will be remapped) */
"ip\0"
"glGenFramebuffers\0"
"glGenFramebuffersEXT\0"
"\0"
- /* _mesa_function_pool[23181]: VertexAttribDivisor (will be remapped) */
+ /* _mesa_function_pool[23226]: VertexAttribDivisor (will be remapped) */
"ii\0"
"glVertexAttribDivisor\0"
"\0"
- /* _mesa_function_pool[23207]: GetProgramParameterdvNV (will be remapped) */
+ /* _mesa_function_pool[23252]: GetProgramParameterdvNV (will be remapped) */
"iiip\0"
"glGetProgramParameterdvNV\0"
"\0"
- /* _mesa_function_pool[23239]: Vertex2sv (offset 133) */
+ /* _mesa_function_pool[23284]: Vertex2sv (offset 133) */
"p\0"
"glVertex2sv\0"
"\0"
- /* _mesa_function_pool[23254]: GetIntegerv (offset 263) */
+ /* _mesa_function_pool[23299]: GetIntegerv (offset 263) */
"ip\0"
"glGetIntegerv\0"
"\0"
- /* _mesa_function_pool[23272]: IsVertexArrayAPPLE (will be remapped) */
+ /* _mesa_function_pool[23317]: IsVertexArrayAPPLE (will be remapped) */
"i\0"
"glIsVertexArray\0"
"glIsVertexArrayAPPLE\0"
"\0"
- /* _mesa_function_pool[23312]: FragmentLightfvSGIX (dynamic) */
+ /* _mesa_function_pool[23357]: FragmentLightfvSGIX (dynamic) */
"iip\0"
"glFragmentLightfvSGIX\0"
"\0"
- /* _mesa_function_pool[23339]: DetachShader (will be remapped) */
+ /* _mesa_function_pool[23384]: VertexAttribDivisorARB (will be remapped) */
+ "ii\0"
+ "glVertexAttribDivisorARB\0"
+ "\0"
+ /* _mesa_function_pool[23413]: DetachShader (will be remapped) */
"ii\0"
"glDetachShader\0"
"\0"
- /* _mesa_function_pool[23358]: VertexAttrib4NubARB (will be remapped) */
+ /* _mesa_function_pool[23432]: VertexAttrib4NubARB (will be remapped) */
"iiiii\0"
"glVertexAttrib4Nub\0"
"glVertexAttrib4NubARB\0"
"\0"
- /* _mesa_function_pool[23406]: GetProgramEnvParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[23480]: GetProgramEnvParameterfvARB (will be remapped) */
"iip\0"
"glGetProgramEnvParameterfvARB\0"
"\0"
- /* _mesa_function_pool[23441]: GetTrackMatrixivNV (will be remapped) */
+ /* _mesa_function_pool[23515]: GetTrackMatrixivNV (will be remapped) */
"iiip\0"
"glGetTrackMatrixivNV\0"
"\0"
- /* _mesa_function_pool[23468]: VertexAttrib3svNV (will be remapped) */
+ /* _mesa_function_pool[23542]: VertexAttrib3svNV (will be remapped) */
"ip\0"
"glVertexAttrib3svNV\0"
"\0"
- /* _mesa_function_pool[23492]: Uniform4fvARB (will be remapped) */
+ /* _mesa_function_pool[23566]: Uniform4fvARB (will be remapped) */
"iip\0"
"glUniform4fv\0"
"glUniform4fvARB\0"
"\0"
- /* _mesa_function_pool[23526]: MultTransposeMatrixfARB (will be remapped) */
+ /* _mesa_function_pool[23600]: MultTransposeMatrixfARB (will be remapped) */
"p\0"
"glMultTransposeMatrixf\0"
"glMultTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[23578]: GetTexEnviv (offset 277) */
+ /* _mesa_function_pool[23652]: GetTexEnviv (offset 277) */
"iip\0"
"glGetTexEnviv\0"
"\0"
- /* _mesa_function_pool[23597]: ColorFragmentOp1ATI (will be remapped) */
+ /* _mesa_function_pool[23671]: ColorFragmentOp1ATI (will be remapped) */
"iiiiiii\0"
"glColorFragmentOp1ATI\0"
"\0"
- /* _mesa_function_pool[23628]: GetUniformfvARB (will be remapped) */
+ /* _mesa_function_pool[23702]: GetUniformfvARB (will be remapped) */
"iip\0"
"glGetUniformfv\0"
"glGetUniformfvARB\0"
"\0"
- /* _mesa_function_pool[23666]: EGLImageTargetRenderbufferStorageOES (will be remapped) */
+ /* _mesa_function_pool[23740]: EGLImageTargetRenderbufferStorageOES (will be remapped) */
"ip\0"
"glEGLImageTargetRenderbufferStorageOES\0"
"\0"
- /* _mesa_function_pool[23709]: VertexAttribI2ivEXT (will be remapped) */
+ /* _mesa_function_pool[23783]: VertexAttribI2ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI2ivEXT\0"
"glVertexAttribI2iv\0"
"\0"
- /* _mesa_function_pool[23754]: PopClientAttrib (offset 334) */
+ /* _mesa_function_pool[23828]: PopClientAttrib (offset 334) */
"\0"
"glPopClientAttrib\0"
"\0"
- /* _mesa_function_pool[23774]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[23848]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
"iffffffffffff\0"
"glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[23845]: DetachObjectARB (will be remapped) */
+ /* _mesa_function_pool[23919]: DetachObjectARB (will be remapped) */
"ii\0"
"glDetachObjectARB\0"
"\0"
- /* _mesa_function_pool[23867]: VertexBlendARB (dynamic) */
+ /* _mesa_function_pool[23941]: VertexBlendARB (dynamic) */
"i\0"
"glVertexBlendARB\0"
"\0"
- /* _mesa_function_pool[23887]: WindowPos3iMESA (will be remapped) */
+ /* _mesa_function_pool[23961]: WindowPos3iMESA (will be remapped) */
"iii\0"
"glWindowPos3i\0"
"glWindowPos3iARB\0"
"glWindowPos3iMESA\0"
"\0"
- /* _mesa_function_pool[23941]: SeparableFilter2D (offset 360) */
+ /* _mesa_function_pool[24015]: SeparableFilter2D (offset 360) */
"iiiiiipp\0"
"glSeparableFilter2D\0"
"glSeparableFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[23994]: ProgramParameteriARB (will be remapped) */
+ /* _mesa_function_pool[24068]: ProgramParameteriARB (will be remapped) */
"iii\0"
"glProgramParameteriARB\0"
"\0"
- /* _mesa_function_pool[24022]: Map1d (offset 220) */
+ /* _mesa_function_pool[24096]: Map1d (offset 220) */
"iddiip\0"
"glMap1d\0"
"\0"
- /* _mesa_function_pool[24038]: Map1f (offset 221) */
+ /* _mesa_function_pool[24112]: Map1f (offset 221) */
"iffiip\0"
"glMap1f\0"
"\0"
- /* _mesa_function_pool[24054]: CompressedTexImage2DARB (will be remapped) */
+ /* _mesa_function_pool[24128]: CompressedTexImage2DARB (will be remapped) */
"iiiiiiip\0"
"glCompressedTexImage2D\0"
"glCompressedTexImage2DARB\0"
"\0"
- /* _mesa_function_pool[24113]: ArrayElement (offset 306) */
+ /* _mesa_function_pool[24187]: ArrayElement (offset 306) */
"i\0"
"glArrayElement\0"
"glArrayElementEXT\0"
"\0"
- /* _mesa_function_pool[24149]: TexImage2D (offset 183) */
+ /* _mesa_function_pool[24223]: TexImage2D (offset 183) */
"iiiiiiiip\0"
"glTexImage2D\0"
"\0"
- /* _mesa_function_pool[24173]: DepthBoundsEXT (will be remapped) */
+ /* _mesa_function_pool[24247]: DepthBoundsEXT (will be remapped) */
"dd\0"
"glDepthBoundsEXT\0"
"\0"
- /* _mesa_function_pool[24194]: ProgramParameters4fvNV (will be remapped) */
+ /* _mesa_function_pool[24268]: ProgramParameters4fvNV (will be remapped) */
"iiip\0"
"glProgramParameters4fvNV\0"
"\0"
- /* _mesa_function_pool[24225]: DeformationMap3fSGIX (dynamic) */
+ /* _mesa_function_pool[24299]: DeformationMap3fSGIX (dynamic) */
"iffiiffiiffiip\0"
"glDeformationMap3fSGIX\0"
"\0"
- /* _mesa_function_pool[24264]: GetProgramivNV (will be remapped) */
+ /* _mesa_function_pool[24338]: GetProgramivNV (will be remapped) */
"iip\0"
"glGetProgramivNV\0"
"\0"
- /* _mesa_function_pool[24286]: GetFragDataLocationEXT (will be remapped) */
+ /* _mesa_function_pool[24360]: GetFragDataLocationEXT (will be remapped) */
"ip\0"
"glGetFragDataLocationEXT\0"
"glGetFragDataLocation\0"
"\0"
- /* _mesa_function_pool[24337]: GetMinmaxParameteriv (offset 366) */
+ /* _mesa_function_pool[24411]: GetMinmaxParameteriv (offset 366) */
"iip\0"
"glGetMinmaxParameteriv\0"
"glGetMinmaxParameterivEXT\0"
"\0"
- /* _mesa_function_pool[24391]: PixelTransferf (offset 247) */
+ /* _mesa_function_pool[24465]: PixelTransferf (offset 247) */
"if\0"
"glPixelTransferf\0"
"\0"
- /* _mesa_function_pool[24412]: CopyTexImage1D (offset 323) */
+ /* _mesa_function_pool[24486]: CopyTexImage1D (offset 323) */
"iiiiiii\0"
"glCopyTexImage1D\0"
"glCopyTexImage1DEXT\0"
"\0"
- /* _mesa_function_pool[24458]: PushMatrix (offset 298) */
+ /* _mesa_function_pool[24532]: PushMatrix (offset 298) */
"\0"
"glPushMatrix\0"
"\0"
- /* _mesa_function_pool[24473]: Fogiv (offset 156) */
+ /* _mesa_function_pool[24547]: Fogiv (offset 156) */
"ip\0"
"glFogiv\0"
"\0"
- /* _mesa_function_pool[24485]: TexCoord1dv (offset 95) */
+ /* _mesa_function_pool[24559]: TexCoord1dv (offset 95) */
"p\0"
"glTexCoord1dv\0"
"\0"
- /* _mesa_function_pool[24502]: AlphaFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[24576]: AlphaFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiii\0"
"glAlphaFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[24538]: PixelTransferi (offset 248) */
+ /* _mesa_function_pool[24612]: PixelTransferi (offset 248) */
"ii\0"
"glPixelTransferi\0"
"\0"
- /* _mesa_function_pool[24559]: GetVertexAttribdvNV (will be remapped) */
+ /* _mesa_function_pool[24633]: GetVertexAttribdvNV (will be remapped) */
"iip\0"
"glGetVertexAttribdvNV\0"
"\0"
- /* _mesa_function_pool[24586]: VertexAttrib3fvNV (will be remapped) */
+ /* _mesa_function_pool[24660]: VertexAttrib3fvNV (will be remapped) */
"ip\0"
"glVertexAttrib3fvNV\0"
"\0"
- /* _mesa_function_pool[24610]: Rotatef (offset 300) */
+ /* _mesa_function_pool[24684]: Rotatef (offset 300) */
"ffff\0"
"glRotatef\0"
"\0"
- /* _mesa_function_pool[24626]: GetFinalCombinerInputParameterivNV (will be remapped) */
+ /* _mesa_function_pool[24700]: GetFinalCombinerInputParameterivNV (will be remapped) */
"iip\0"
"glGetFinalCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[24668]: Vertex3i (offset 138) */
+ /* _mesa_function_pool[24742]: Vertex3i (offset 138) */
"iii\0"
"glVertex3i\0"
"\0"
- /* _mesa_function_pool[24684]: Vertex3f (offset 136) */
+ /* _mesa_function_pool[24758]: Vertex3f (offset 136) */
"fff\0"
"glVertex3f\0"
"\0"
- /* _mesa_function_pool[24700]: Clear (offset 203) */
+ /* _mesa_function_pool[24774]: Clear (offset 203) */
"i\0"
"glClear\0"
"\0"
- /* _mesa_function_pool[24711]: Vertex3d (offset 134) */
+ /* _mesa_function_pool[24785]: Vertex3d (offset 134) */
"ddd\0"
"glVertex3d\0"
"\0"
- /* _mesa_function_pool[24727]: GetMapParameterivNV (dynamic) */
+ /* _mesa_function_pool[24801]: GetMapParameterivNV (dynamic) */
"iip\0"
"glGetMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[24754]: Uniform4iARB (will be remapped) */
+ /* _mesa_function_pool[24828]: Uniform4iARB (will be remapped) */
"iiiii\0"
"glUniform4i\0"
"glUniform4iARB\0"
"\0"
- /* _mesa_function_pool[24788]: ReadBuffer (offset 254) */
+ /* _mesa_function_pool[24862]: ReadBuffer (offset 254) */
"i\0"
"glReadBuffer\0"
"\0"
- /* _mesa_function_pool[24804]: ConvolutionParameteri (offset 352) */
+ /* _mesa_function_pool[24878]: ConvolutionParameteri (offset 352) */
"iii\0"
"glConvolutionParameteri\0"
"glConvolutionParameteriEXT\0"
"\0"
- /* _mesa_function_pool[24860]: Ortho (offset 296) */
+ /* _mesa_function_pool[24934]: Ortho (offset 296) */
"dddddd\0"
"glOrtho\0"
"\0"
- /* _mesa_function_pool[24876]: Binormal3sEXT (dynamic) */
+ /* _mesa_function_pool[24950]: Binormal3sEXT (dynamic) */
"iii\0"
"glBinormal3sEXT\0"
"\0"
- /* _mesa_function_pool[24897]: ListBase (offset 6) */
+ /* _mesa_function_pool[24971]: ListBase (offset 6) */
"i\0"
"glListBase\0"
"\0"
- /* _mesa_function_pool[24911]: Vertex3s (offset 140) */
+ /* _mesa_function_pool[24985]: Vertex3s (offset 140) */
"iii\0"
"glVertex3s\0"
"\0"
- /* _mesa_function_pool[24927]: ConvolutionParameterf (offset 350) */
+ /* _mesa_function_pool[25001]: ConvolutionParameterf (offset 350) */
"iif\0"
"glConvolutionParameterf\0"
"glConvolutionParameterfEXT\0"
"\0"
- /* _mesa_function_pool[24983]: GetColorTableParameteriv (offset 345) */
+ /* _mesa_function_pool[25057]: GetColorTableParameteriv (offset 345) */
"iip\0"
"glGetColorTableParameteriv\0"
"glGetColorTableParameterivSGI\0"
"glGetColorTableParameterivEXT\0"
"\0"
- /* _mesa_function_pool[25075]: ProgramEnvParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[25149]: ProgramEnvParameter4dvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4dvARB\0"
"glProgramParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[25132]: ShadeModel (offset 177) */
+ /* _mesa_function_pool[25206]: ShadeModel (offset 177) */
"i\0"
"glShadeModel\0"
"\0"
- /* _mesa_function_pool[25148]: VertexAttribs2fvNV (will be remapped) */
+ /* _mesa_function_pool[25222]: VertexAttribs2fvNV (will be remapped) */
"iip\0"
"glVertexAttribs2fvNV\0"
"\0"
- /* _mesa_function_pool[25174]: Rectiv (offset 91) */
+ /* _mesa_function_pool[25248]: Rectiv (offset 91) */
"pp\0"
"glRectiv\0"
"\0"
- /* _mesa_function_pool[25187]: UseProgramObjectARB (will be remapped) */
+ /* _mesa_function_pool[25261]: UseProgramObjectARB (will be remapped) */
"i\0"
"glUseProgram\0"
"glUseProgramObjectARB\0"
"\0"
- /* _mesa_function_pool[25225]: GetMapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[25299]: GetMapParameterfvNV (dynamic) */
"iip\0"
"glGetMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[25252]: EndConditionalRenderNV (will be remapped) */
+ /* _mesa_function_pool[25326]: EndConditionalRenderNV (will be remapped) */
"\0"
"glEndConditionalRenderNV\0"
"glEndConditionalRender\0"
"\0"
- /* _mesa_function_pool[25302]: PassTexCoordATI (will be remapped) */
+ /* _mesa_function_pool[25376]: PassTexCoordATI (will be remapped) */
"iii\0"
"glPassTexCoordATI\0"
"\0"
- /* _mesa_function_pool[25325]: DeleteProgram (will be remapped) */
+ /* _mesa_function_pool[25399]: DeleteProgram (will be remapped) */
"i\0"
"glDeleteProgram\0"
"\0"
- /* _mesa_function_pool[25344]: Tangent3ivEXT (dynamic) */
+ /* _mesa_function_pool[25418]: Tangent3ivEXT (dynamic) */
"p\0"
"glTangent3ivEXT\0"
"\0"
- /* _mesa_function_pool[25363]: Tangent3dEXT (dynamic) */
+ /* _mesa_function_pool[25437]: Tangent3dEXT (dynamic) */
"ddd\0"
"glTangent3dEXT\0"
"\0"
- /* _mesa_function_pool[25383]: SecondaryColor3dvEXT (will be remapped) */
+ /* _mesa_function_pool[25457]: SecondaryColor3dvEXT (will be remapped) */
"p\0"
"glSecondaryColor3dv\0"
"glSecondaryColor3dvEXT\0"
"\0"
- /* _mesa_function_pool[25429]: AlphaFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[25503]: AlphaFragmentOp2ATI (will be remapped) */
"iiiiiiiii\0"
"glAlphaFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[25462]: Vertex2fv (offset 129) */
+ /* _mesa_function_pool[25536]: Vertex2fv (offset 129) */
"p\0"
"glVertex2fv\0"
"\0"
- /* _mesa_function_pool[25477]: MultiDrawArraysEXT (will be remapped) */
+ /* _mesa_function_pool[25551]: MultiDrawArraysEXT (will be remapped) */
"ippi\0"
"glMultiDrawArrays\0"
"glMultiDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[25522]: BindRenderbufferEXT (will be remapped) */
+ /* _mesa_function_pool[25596]: BindRenderbufferEXT (will be remapped) */
"ii\0"
"glBindRenderbuffer\0"
"glBindRenderbufferEXT\0"
"\0"
- /* _mesa_function_pool[25567]: MultiTexCoord4dARB (offset 400) */
+ /* _mesa_function_pool[25641]: MultiTexCoord4dARB (offset 400) */
"idddd\0"
"glMultiTexCoord4d\0"
"glMultiTexCoord4dARB\0"
"\0"
- /* _mesa_function_pool[25613]: FramebufferTextureFaceARB (will be remapped) */
+ /* _mesa_function_pool[25687]: FramebufferTextureFaceARB (will be remapped) */
"iiiii\0"
"glFramebufferTextureFaceARB\0"
"\0"
- /* _mesa_function_pool[25648]: Vertex3sv (offset 141) */
+ /* _mesa_function_pool[25722]: Vertex3sv (offset 141) */
"p\0"
"glVertex3sv\0"
"\0"
- /* _mesa_function_pool[25663]: SecondaryColor3usEXT (will be remapped) */
+ /* _mesa_function_pool[25737]: SecondaryColor3usEXT (will be remapped) */
"iii\0"
"glSecondaryColor3us\0"
"glSecondaryColor3usEXT\0"
"\0"
- /* _mesa_function_pool[25711]: ProgramLocalParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[25785]: ProgramLocalParameter4fvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4fvARB\0"
"\0"
- /* _mesa_function_pool[25746]: DeleteProgramsNV (will be remapped) */
+ /* _mesa_function_pool[25820]: DeleteProgramsNV (will be remapped) */
"ip\0"
"glDeleteProgramsARB\0"
"glDeleteProgramsNV\0"
"\0"
- /* _mesa_function_pool[25789]: EvalMesh1 (offset 236) */
+ /* _mesa_function_pool[25863]: EvalMesh1 (offset 236) */
"iii\0"
"glEvalMesh1\0"
"\0"
- /* _mesa_function_pool[25806]: PauseTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[25880]: PauseTransformFeedback (will be remapped) */
"\0"
"glPauseTransformFeedback\0"
"\0"
- /* _mesa_function_pool[25833]: MultiTexCoord1sARB (offset 382) */
+ /* _mesa_function_pool[25907]: MultiTexCoord1sARB (offset 382) */
"ii\0"
"glMultiTexCoord1s\0"
"glMultiTexCoord1sARB\0"
"\0"
- /* _mesa_function_pool[25876]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[25950]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */
"iffffff\0"
"glReplacementCodeuiColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[25923]: GetVertexAttribPointervNV (will be remapped) */
+ /* _mesa_function_pool[25997]: GetVertexAttribPointervNV (will be remapped) */
"iip\0"
"glGetVertexAttribPointerv\0"
"glGetVertexAttribPointervARB\0"
"glGetVertexAttribPointervNV\0"
"\0"
- /* _mesa_function_pool[26011]: VertexAttribs1fvNV (will be remapped) */
+ /* _mesa_function_pool[26085]: VertexAttribs1fvNV (will be remapped) */
"iip\0"
"glVertexAttribs1fvNV\0"
"\0"
- /* _mesa_function_pool[26037]: MultiTexCoord1dvARB (offset 377) */
+ /* _mesa_function_pool[26111]: MultiTexCoord1dvARB (offset 377) */
"ip\0"
"glMultiTexCoord1dv\0"
"glMultiTexCoord1dvARB\0"
"\0"
- /* _mesa_function_pool[26082]: Uniform2iARB (will be remapped) */
+ /* _mesa_function_pool[26156]: Uniform2iARB (will be remapped) */
"iii\0"
"glUniform2i\0"
"glUniform2iARB\0"
"\0"
- /* _mesa_function_pool[26114]: Vertex2iv (offset 131) */
+ /* _mesa_function_pool[26188]: Vertex2iv (offset 131) */
"p\0"
"glVertex2iv\0"
"\0"
- /* _mesa_function_pool[26129]: GetProgramStringNV (will be remapped) */
+ /* _mesa_function_pool[26203]: GetProgramStringNV (will be remapped) */
"iip\0"
"glGetProgramStringNV\0"
"\0"
- /* _mesa_function_pool[26155]: ColorPointerEXT (will be remapped) */
+ /* _mesa_function_pool[26229]: ColorPointerEXT (will be remapped) */
"iiiip\0"
"glColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[26180]: LineWidth (offset 168) */
+ /* _mesa_function_pool[26254]: LineWidth (offset 168) */
"f\0"
"glLineWidth\0"
"\0"
- /* _mesa_function_pool[26195]: MapBufferARB (will be remapped) */
+ /* _mesa_function_pool[26269]: MapBufferARB (will be remapped) */
"ii\0"
"glMapBuffer\0"
"glMapBufferARB\0"
"\0"
- /* _mesa_function_pool[26226]: MultiDrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[26300]: MultiDrawElementsBaseVertex (will be remapped) */
"ipipip\0"
"glMultiDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[26264]: TexParameterIuivEXT (will be remapped) */
+ /* _mesa_function_pool[26338]: TexParameterIuivEXT (will be remapped) */
"iip\0"
"glTexParameterIuivEXT\0"
"glTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[26310]: Binormal3svEXT (dynamic) */
+ /* _mesa_function_pool[26384]: Binormal3svEXT (dynamic) */
"p\0"
"glBinormal3svEXT\0"
"\0"
- /* _mesa_function_pool[26330]: ApplyTextureEXT (dynamic) */
+ /* _mesa_function_pool[26404]: ApplyTextureEXT (dynamic) */
"i\0"
"glApplyTextureEXT\0"
"\0"
- /* _mesa_function_pool[26351]: GetBufferParameteri64v (will be remapped) */
+ /* _mesa_function_pool[26425]: GetBufferParameteri64v (will be remapped) */
"iip\0"
"glGetBufferParameteri64v\0"
"\0"
- /* _mesa_function_pool[26381]: TexGendv (offset 189) */
+ /* _mesa_function_pool[26455]: TexGendv (offset 189) */
"iip\0"
"glTexGendv\0"
"\0"
- /* _mesa_function_pool[26397]: VertexAttribI3iEXT (will be remapped) */
+ /* _mesa_function_pool[26471]: VertexAttribI3iEXT (will be remapped) */
"iiii\0"
"glVertexAttribI3iEXT\0"
"glVertexAttribI3i\0"
"\0"
- /* _mesa_function_pool[26442]: EnableIndexedEXT (will be remapped) */
+ /* _mesa_function_pool[26516]: EnableIndexedEXT (will be remapped) */
"ii\0"
"glEnableIndexedEXT\0"
"glEnablei\0"
"\0"
- /* _mesa_function_pool[26475]: TextureMaterialEXT (dynamic) */
+ /* _mesa_function_pool[26549]: TextureMaterialEXT (dynamic) */
"ii\0"
"glTextureMaterialEXT\0"
"\0"
- /* _mesa_function_pool[26500]: TextureLightEXT (dynamic) */
+ /* _mesa_function_pool[26574]: TextureLightEXT (dynamic) */
"i\0"
"glTextureLightEXT\0"
"\0"
- /* _mesa_function_pool[26521]: ResetMinmax (offset 370) */
+ /* _mesa_function_pool[26595]: ResetMinmax (offset 370) */
"i\0"
"glResetMinmax\0"
"glResetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[26555]: SpriteParameterfSGIX (dynamic) */
+ /* _mesa_function_pool[26629]: SpriteParameterfSGIX (dynamic) */
"if\0"
"glSpriteParameterfSGIX\0"
"\0"
- /* _mesa_function_pool[26582]: EnableClientState (offset 313) */
+ /* _mesa_function_pool[26656]: EnableClientState (offset 313) */
"i\0"
"glEnableClientState\0"
"\0"
- /* _mesa_function_pool[26605]: VertexAttrib4sNV (will be remapped) */
+ /* _mesa_function_pool[26679]: VertexAttrib4sNV (will be remapped) */
"iiiii\0"
"glVertexAttrib4sNV\0"
"\0"
- /* _mesa_function_pool[26631]: GetConvolutionParameterfv (offset 357) */
+ /* _mesa_function_pool[26705]: GetConvolutionParameterfv (offset 357) */
"iip\0"
"glGetConvolutionParameterfv\0"
"glGetConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[26695]: VertexAttribs4dvNV (will be remapped) */
+ /* _mesa_function_pool[26769]: VertexAttribs4dvNV (will be remapped) */
"iip\0"
"glVertexAttribs4dvNV\0"
"\0"
- /* _mesa_function_pool[26721]: MultiModeDrawArraysIBM (will be remapped) */
- "pppii\0"
- "glMultiModeDrawArraysIBM\0"
- "\0"
- /* _mesa_function_pool[26753]: VertexAttrib4dARB (will be remapped) */
+ /* _mesa_function_pool[26795]: VertexAttrib4dARB (will be remapped) */
"idddd\0"
"glVertexAttrib4d\0"
"glVertexAttrib4dARB\0"
"\0"
- /* _mesa_function_pool[26797]: GetTexBumpParameterfvATI (will be remapped) */
+ /* _mesa_function_pool[26839]: GetTexBumpParameterfvATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterfvATI\0"
"\0"
- /* _mesa_function_pool[26828]: ProgramNamedParameter4dNV (will be remapped) */
+ /* _mesa_function_pool[26870]: ProgramNamedParameter4dNV (will be remapped) */
"iipdddd\0"
"glProgramNamedParameter4dNV\0"
"\0"
- /* _mesa_function_pool[26865]: GetMaterialfv (offset 269) */
+ /* _mesa_function_pool[26907]: GetMaterialfv (offset 269) */
"iip\0"
"glGetMaterialfv\0"
"\0"
- /* _mesa_function_pool[26886]: VertexWeightfEXT (dynamic) */
+ /* _mesa_function_pool[26928]: VertexWeightfEXT (dynamic) */
"f\0"
"glVertexWeightfEXT\0"
"\0"
- /* _mesa_function_pool[26908]: SetFragmentShaderConstantATI (will be remapped) */
+ /* _mesa_function_pool[26950]: SetFragmentShaderConstantATI (will be remapped) */
"ip\0"
"glSetFragmentShaderConstantATI\0"
"\0"
- /* _mesa_function_pool[26943]: Binormal3fEXT (dynamic) */
+ /* _mesa_function_pool[26985]: Binormal3fEXT (dynamic) */
"fff\0"
"glBinormal3fEXT\0"
"\0"
- /* _mesa_function_pool[26964]: CallList (offset 2) */
+ /* _mesa_function_pool[27006]: CallList (offset 2) */
"i\0"
"glCallList\0"
"\0"
- /* _mesa_function_pool[26978]: Materialfv (offset 170) */
+ /* _mesa_function_pool[27020]: Materialfv (offset 170) */
"iip\0"
"glMaterialfv\0"
"\0"
- /* _mesa_function_pool[26996]: TexCoord3fv (offset 113) */
+ /* _mesa_function_pool[27038]: TexCoord3fv (offset 113) */
"p\0"
"glTexCoord3fv\0"
"\0"
- /* _mesa_function_pool[27013]: FogCoordfvEXT (will be remapped) */
+ /* _mesa_function_pool[27055]: FogCoordfvEXT (will be remapped) */
"p\0"
"glFogCoordfv\0"
"glFogCoordfvEXT\0"
"\0"
- /* _mesa_function_pool[27045]: MultiTexCoord1ivARB (offset 381) */
+ /* _mesa_function_pool[27087]: MultiTexCoord1ivARB (offset 381) */
"ip\0"
"glMultiTexCoord1iv\0"
"glMultiTexCoord1ivARB\0"
"\0"
- /* _mesa_function_pool[27090]: SecondaryColor3ubEXT (will be remapped) */
+ /* _mesa_function_pool[27132]: SecondaryColor3ubEXT (will be remapped) */
"iii\0"
"glSecondaryColor3ub\0"
"glSecondaryColor3ubEXT\0"
"\0"
- /* _mesa_function_pool[27138]: MultiTexCoord2ivARB (offset 389) */
+ /* _mesa_function_pool[27180]: MultiTexCoord2ivARB (offset 389) */
"ip\0"
"glMultiTexCoord2iv\0"
"glMultiTexCoord2ivARB\0"
"\0"
- /* _mesa_function_pool[27183]: FogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[27225]: FogFuncSGIS (dynamic) */
"ip\0"
"glFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[27201]: CopyTexSubImage2D (offset 326) */
+ /* _mesa_function_pool[27243]: CopyTexSubImage2D (offset 326) */
"iiiiiiii\0"
"glCopyTexSubImage2D\0"
"glCopyTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[27254]: GetObjectParameterivARB (will be remapped) */
+ /* _mesa_function_pool[27296]: GetObjectParameterivARB (will be remapped) */
"iip\0"
"glGetObjectParameterivARB\0"
"\0"
- /* _mesa_function_pool[27285]: Color3iv (offset 16) */
+ /* _mesa_function_pool[27327]: Color3iv (offset 16) */
"p\0"
"glColor3iv\0"
"\0"
- /* _mesa_function_pool[27299]: TexCoord4fVertex4fSUN (dynamic) */
+ /* _mesa_function_pool[27341]: TexCoord4fVertex4fSUN (dynamic) */
"ffffffff\0"
"glTexCoord4fVertex4fSUN\0"
"\0"
- /* _mesa_function_pool[27333]: DrawElements (offset 311) */
+ /* _mesa_function_pool[27375]: DrawElements (offset 311) */
"iiip\0"
"glDrawElements\0"
"\0"
- /* _mesa_function_pool[27354]: BindVertexArrayAPPLE (will be remapped) */
+ /* _mesa_function_pool[27396]: BindVertexArrayAPPLE (will be remapped) */
"i\0"
"glBindVertexArrayAPPLE\0"
"\0"
- /* _mesa_function_pool[27380]: GetProgramLocalParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[27422]: GetProgramLocalParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterdvARB\0"
"\0"
- /* _mesa_function_pool[27417]: GetHistogramParameteriv (offset 363) */
+ /* _mesa_function_pool[27459]: GetHistogramParameteriv (offset 363) */
"iip\0"
"glGetHistogramParameteriv\0"
"glGetHistogramParameterivEXT\0"
"\0"
- /* _mesa_function_pool[27477]: MultiTexCoord1iARB (offset 380) */
+ /* _mesa_function_pool[27519]: MultiTexCoord1iARB (offset 380) */
"ii\0"
"glMultiTexCoord1i\0"
"glMultiTexCoord1iARB\0"
"\0"
- /* _mesa_function_pool[27520]: GetConvolutionFilter (offset 356) */
+ /* _mesa_function_pool[27562]: GetConvolutionFilter (offset 356) */
"iiip\0"
"glGetConvolutionFilter\0"
"glGetConvolutionFilterEXT\0"
"\0"
- /* _mesa_function_pool[27575]: GetProgramivARB (will be remapped) */
+ /* _mesa_function_pool[27617]: GetProgramivARB (will be remapped) */
"iip\0"
"glGetProgramivARB\0"
"\0"
- /* _mesa_function_pool[27598]: BlendFuncSeparateEXT (will be remapped) */
+ /* _mesa_function_pool[27640]: BlendFuncSeparateEXT (will be remapped) */
"iiii\0"
"glBlendFuncSeparate\0"
"glBlendFuncSeparateEXT\0"
"glBlendFuncSeparateINGR\0"
"\0"
- /* _mesa_function_pool[27671]: MapBufferRange (will be remapped) */
+ /* _mesa_function_pool[27713]: MapBufferRange (will be remapped) */
"iiii\0"
"glMapBufferRange\0"
"\0"
- /* _mesa_function_pool[27694]: ProgramParameters4dvNV (will be remapped) */
+ /* _mesa_function_pool[27736]: ProgramParameters4dvNV (will be remapped) */
"iiip\0"
"glProgramParameters4dvNV\0"
"\0"
- /* _mesa_function_pool[27725]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[27767]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[27762]: EvalPoint2 (offset 239) */
+ /* _mesa_function_pool[27804]: EvalPoint2 (offset 239) */
"ii\0"
"glEvalPoint2\0"
"\0"
- /* _mesa_function_pool[27779]: Uniform1uivEXT (will be remapped) */
+ /* _mesa_function_pool[27821]: Uniform1uivEXT (will be remapped) */
"iip\0"
"glUniform1uivEXT\0"
"glUniform1uiv\0"
"\0"
- /* _mesa_function_pool[27815]: EvalPoint1 (offset 237) */
+ /* _mesa_function_pool[27857]: EvalPoint1 (offset 237) */
"i\0"
"glEvalPoint1\0"
"\0"
- /* _mesa_function_pool[27831]: Binormal3dvEXT (dynamic) */
+ /* _mesa_function_pool[27873]: Binormal3dvEXT (dynamic) */
"p\0"
"glBinormal3dvEXT\0"
"\0"
- /* _mesa_function_pool[27851]: PopMatrix (offset 297) */
+ /* _mesa_function_pool[27893]: PopMatrix (offset 297) */
"\0"
"glPopMatrix\0"
"\0"
- /* _mesa_function_pool[27865]: GetVertexAttribIuivEXT (will be remapped) */
- "iip\0"
- "glGetVertexAttribIuivEXT\0"
- "glGetVertexAttribIuiv\0"
- "\0"
- /* _mesa_function_pool[27917]: FinishFenceNV (will be remapped) */
+ /* _mesa_function_pool[27907]: FinishFenceNV (will be remapped) */
"i\0"
"glFinishFenceNV\0"
"\0"
- /* _mesa_function_pool[27936]: GetFogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[27926]: GetFogFuncSGIS (dynamic) */
"p\0"
"glGetFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[27956]: GetUniformLocationARB (will be remapped) */
+ /* _mesa_function_pool[27946]: GetUniformLocationARB (will be remapped) */
"ip\0"
"glGetUniformLocation\0"
"glGetUniformLocationARB\0"
"\0"
- /* _mesa_function_pool[28005]: SecondaryColor3fEXT (will be remapped) */
+ /* _mesa_function_pool[27995]: SecondaryColor3fEXT (will be remapped) */
"fff\0"
"glSecondaryColor3f\0"
"glSecondaryColor3fEXT\0"
"\0"
- /* _mesa_function_pool[28051]: GetTexGeniv (offset 280) */
+ /* _mesa_function_pool[28041]: GetTexGeniv (offset 280) */
"iip\0"
"glGetTexGeniv\0"
"\0"
- /* _mesa_function_pool[28070]: CombinerInputNV (will be remapped) */
+ /* _mesa_function_pool[28060]: CombinerInputNV (will be remapped) */
"iiiiii\0"
"glCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[28096]: VertexAttrib3sARB (will be remapped) */
+ /* _mesa_function_pool[28086]: VertexAttrib3sARB (will be remapped) */
"iiii\0"
"glVertexAttrib3s\0"
"glVertexAttrib3sARB\0"
"\0"
- /* _mesa_function_pool[28139]: IsTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[28129]: IsTransformFeedback (will be remapped) */
"i\0"
"glIsTransformFeedback\0"
"\0"
- /* _mesa_function_pool[28164]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[28154]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[28209]: Map2d (offset 222) */
+ /* _mesa_function_pool[28199]: Map2d (offset 222) */
"iddiiddiip\0"
"glMap2d\0"
"\0"
- /* _mesa_function_pool[28229]: Map2f (offset 223) */
+ /* _mesa_function_pool[28219]: Map2f (offset 223) */
"iffiiffiip\0"
"glMap2f\0"
"\0"
- /* _mesa_function_pool[28249]: ProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[28239]: ProgramStringARB (will be remapped) */
"iiip\0"
"glProgramStringARB\0"
"\0"
- /* _mesa_function_pool[28274]: Vertex4s (offset 148) */
+ /* _mesa_function_pool[28264]: Vertex4s (offset 148) */
"iiii\0"
"glVertex4s\0"
"\0"
- /* _mesa_function_pool[28291]: TexCoord4fVertex4fvSUN (dynamic) */
+ /* _mesa_function_pool[28281]: TexCoord4fVertex4fvSUN (dynamic) */
"pp\0"
"glTexCoord4fVertex4fvSUN\0"
"\0"
- /* _mesa_function_pool[28320]: FragmentLightModelivSGIX (dynamic) */
+ /* _mesa_function_pool[28310]: FragmentLightModelivSGIX (dynamic) */
"ip\0"
"glFragmentLightModelivSGIX\0"
"\0"
- /* _mesa_function_pool[28351]: VertexAttrib1fNV (will be remapped) */
+ /* _mesa_function_pool[28341]: VertexAttrib1fNV (will be remapped) */
"if\0"
"glVertexAttrib1fNV\0"
"\0"
- /* _mesa_function_pool[28374]: Vertex4f (offset 144) */
+ /* _mesa_function_pool[28364]: Vertex4f (offset 144) */
"ffff\0"
"glVertex4f\0"
"\0"
- /* _mesa_function_pool[28391]: EvalCoord1d (offset 228) */
+ /* _mesa_function_pool[28381]: EvalCoord1d (offset 228) */
"d\0"
"glEvalCoord1d\0"
"\0"
- /* _mesa_function_pool[28408]: Vertex4d (offset 142) */
+ /* _mesa_function_pool[28398]: Vertex4d (offset 142) */
"dddd\0"
"glVertex4d\0"
"\0"
- /* _mesa_function_pool[28425]: RasterPos4dv (offset 79) */
+ /* _mesa_function_pool[28415]: RasterPos4dv (offset 79) */
"p\0"
"glRasterPos4dv\0"
"\0"
- /* _mesa_function_pool[28443]: UseShaderProgramEXT (will be remapped) */
+ /* _mesa_function_pool[28433]: UseShaderProgramEXT (will be remapped) */
"ii\0"
"glUseShaderProgramEXT\0"
"\0"
- /* _mesa_function_pool[28469]: FragmentLightfSGIX (dynamic) */
+ /* _mesa_function_pool[28459]: FragmentLightfSGIX (dynamic) */
"iif\0"
"glFragmentLightfSGIX\0"
"\0"
- /* _mesa_function_pool[28495]: GetCompressedTexImageARB (will be remapped) */
+ /* _mesa_function_pool[28485]: GetCompressedTexImageARB (will be remapped) */
"iip\0"
"glGetCompressedTexImage\0"
"glGetCompressedTexImageARB\0"
"\0"
- /* _mesa_function_pool[28551]: GetTexGenfv (offset 279) */
+ /* _mesa_function_pool[28541]: GetTexGenfv (offset 279) */
"iip\0"
"glGetTexGenfv\0"
"\0"
- /* _mesa_function_pool[28570]: Vertex4i (offset 146) */
+ /* _mesa_function_pool[28560]: Vertex4i (offset 146) */
"iiii\0"
"glVertex4i\0"
"\0"
- /* _mesa_function_pool[28587]: VertexWeightPointerEXT (dynamic) */
+ /* _mesa_function_pool[28577]: VertexWeightPointerEXT (dynamic) */
"iiip\0"
"glVertexWeightPointerEXT\0"
"\0"
- /* _mesa_function_pool[28618]: GetHistogram (offset 361) */
+ /* _mesa_function_pool[28608]: GetHistogram (offset 361) */
"iiiip\0"
"glGetHistogram\0"
"glGetHistogramEXT\0"
"\0"
- /* _mesa_function_pool[28658]: ActiveStencilFaceEXT (will be remapped) */
+ /* _mesa_function_pool[28648]: ActiveStencilFaceEXT (will be remapped) */
"i\0"
"glActiveStencilFaceEXT\0"
"\0"
- /* _mesa_function_pool[28684]: StencilFuncSeparateATI (will be remapped) */
+ /* _mesa_function_pool[28674]: StencilFuncSeparateATI (will be remapped) */
"iiii\0"
"glStencilFuncSeparateATI\0"
"\0"
- /* _mesa_function_pool[28715]: Materialf (offset 169) */
+ /* _mesa_function_pool[28705]: Materialf (offset 169) */
"iif\0"
"glMaterialf\0"
"\0"
- /* _mesa_function_pool[28732]: GetShaderSourceARB (will be remapped) */
+ /* _mesa_function_pool[28722]: GetShaderSourceARB (will be remapped) */
"iipp\0"
"glGetShaderSource\0"
"glGetShaderSourceARB\0"
"\0"
- /* _mesa_function_pool[28777]: IglooInterfaceSGIX (dynamic) */
+ /* _mesa_function_pool[28767]: IglooInterfaceSGIX (dynamic) */
"ip\0"
"glIglooInterfaceSGIX\0"
"\0"
- /* _mesa_function_pool[28802]: Materiali (offset 171) */
+ /* _mesa_function_pool[28792]: Materiali (offset 171) */
"iii\0"
"glMateriali\0"
"\0"
- /* _mesa_function_pool[28819]: VertexAttrib4dNV (will be remapped) */
+ /* _mesa_function_pool[28809]: VertexAttrib4dNV (will be remapped) */
"idddd\0"
"glVertexAttrib4dNV\0"
"\0"
- /* _mesa_function_pool[28845]: MultiModeDrawElementsIBM (will be remapped) */
+ /* _mesa_function_pool[28835]: MultiModeDrawElementsIBM (will be remapped) */
"ppipii\0"
"glMultiModeDrawElementsIBM\0"
"\0"
- /* _mesa_function_pool[28880]: Indexsv (offset 51) */
+ /* _mesa_function_pool[28870]: Indexsv (offset 51) */
"p\0"
"glIndexsv\0"
"\0"
- /* _mesa_function_pool[28893]: MultiTexCoord4svARB (offset 407) */
+ /* _mesa_function_pool[28883]: MultiTexCoord4svARB (offset 407) */
"ip\0"
"glMultiTexCoord4sv\0"
"glMultiTexCoord4svARB\0"
"\0"
- /* _mesa_function_pool[28938]: LightModelfv (offset 164) */
+ /* _mesa_function_pool[28928]: LightModelfv (offset 164) */
"ip\0"
"glLightModelfv\0"
"\0"
- /* _mesa_function_pool[28957]: TexCoord2dv (offset 103) */
+ /* _mesa_function_pool[28947]: TexCoord2dv (offset 103) */
"p\0"
"glTexCoord2dv\0"
"\0"
- /* _mesa_function_pool[28974]: GenQueriesARB (will be remapped) */
+ /* _mesa_function_pool[28964]: GenQueriesARB (will be remapped) */
"ip\0"
"glGenQueries\0"
"glGenQueriesARB\0"
"\0"
- /* _mesa_function_pool[29007]: EvalCoord1dv (offset 229) */
+ /* _mesa_function_pool[28997]: EvalCoord1dv (offset 229) */
"p\0"
"glEvalCoord1dv\0"
"\0"
- /* _mesa_function_pool[29025]: ReplacementCodeuiVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[29015]: ReplacementCodeuiVertex3fSUN (dynamic) */
"ifff\0"
"glReplacementCodeuiVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[29062]: Translated (offset 303) */
+ /* _mesa_function_pool[29052]: Translated (offset 303) */
"ddd\0"
"glTranslated\0"
"\0"
- /* _mesa_function_pool[29080]: Translatef (offset 304) */
+ /* _mesa_function_pool[29070]: Translatef (offset 304) */
"fff\0"
"glTranslatef\0"
"\0"
- /* _mesa_function_pool[29098]: Uniform3uiEXT (will be remapped) */
+ /* _mesa_function_pool[29088]: Uniform3uiEXT (will be remapped) */
"iiii\0"
"glUniform3uiEXT\0"
"glUniform3ui\0"
"\0"
- /* _mesa_function_pool[29133]: StencilMask (offset 209) */
+ /* _mesa_function_pool[29123]: StencilMask (offset 209) */
"i\0"
"glStencilMask\0"
"\0"
- /* _mesa_function_pool[29150]: Tangent3iEXT (dynamic) */
+ /* _mesa_function_pool[29140]: Tangent3iEXT (dynamic) */
"iii\0"
"glTangent3iEXT\0"
"\0"
- /* _mesa_function_pool[29170]: GetLightiv (offset 265) */
+ /* _mesa_function_pool[29160]: GetLightiv (offset 265) */
"iip\0"
"glGetLightiv\0"
"\0"
- /* _mesa_function_pool[29188]: DrawMeshArraysSUN (dynamic) */
+ /* _mesa_function_pool[29178]: DrawMeshArraysSUN (dynamic) */
"iiii\0"
"glDrawMeshArraysSUN\0"
"\0"
- /* _mesa_function_pool[29214]: IsList (offset 287) */
+ /* _mesa_function_pool[29204]: IsList (offset 287) */
"i\0"
"glIsList\0"
"\0"
- /* _mesa_function_pool[29226]: IsSync (will be remapped) */
+ /* _mesa_function_pool[29216]: IsSync (will be remapped) */
"i\0"
"glIsSync\0"
"\0"
- /* _mesa_function_pool[29238]: RenderMode (offset 196) */
+ /* _mesa_function_pool[29228]: RenderMode (offset 196) */
"i\0"
"glRenderMode\0"
"\0"
- /* _mesa_function_pool[29254]: GetMapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[29244]: GetMapControlPointsNV (dynamic) */
"iiiiiip\0"
"glGetMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[29287]: DrawBuffersARB (will be remapped) */
+ /* _mesa_function_pool[29277]: DrawBuffersARB (will be remapped) */
"ip\0"
"glDrawBuffers\0"
"glDrawBuffersARB\0"
"glDrawBuffersATI\0"
"\0"
- /* _mesa_function_pool[29339]: ClearBufferiv (will be remapped) */
+ /* _mesa_function_pool[29329]: ClearBufferiv (will be remapped) */
"iip\0"
"glClearBufferiv\0"
"\0"
- /* _mesa_function_pool[29360]: ProgramLocalParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[29350]: ProgramLocalParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramLocalParameter4fARB\0"
"\0"
- /* _mesa_function_pool[29397]: SpriteParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[29387]: SpriteParameterivSGIX (dynamic) */
"ip\0"
"glSpriteParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[29425]: ProvokingVertexEXT (will be remapped) */
+ /* _mesa_function_pool[29415]: ProvokingVertexEXT (will be remapped) */
"i\0"
"glProvokingVertexEXT\0"
"glProvokingVertex\0"
"\0"
- /* _mesa_function_pool[29467]: MultiTexCoord1fARB (offset 378) */
+ /* _mesa_function_pool[29457]: MultiTexCoord1fARB (offset 378) */
"if\0"
"glMultiTexCoord1f\0"
"glMultiTexCoord1fARB\0"
"\0"
- /* _mesa_function_pool[29510]: LoadName (offset 198) */
+ /* _mesa_function_pool[29500]: LoadName (offset 198) */
"i\0"
"glLoadName\0"
"\0"
- /* _mesa_function_pool[29524]: VertexAttribs4ubvNV (will be remapped) */
+ /* _mesa_function_pool[29514]: VertexAttribs4ubvNV (will be remapped) */
"iip\0"
"glVertexAttribs4ubvNV\0"
"\0"
- /* _mesa_function_pool[29551]: WeightsvARB (dynamic) */
+ /* _mesa_function_pool[29541]: WeightsvARB (dynamic) */
"ip\0"
"glWeightsvARB\0"
"\0"
- /* _mesa_function_pool[29569]: Uniform1fvARB (will be remapped) */
+ /* _mesa_function_pool[29559]: Uniform1fvARB (will be remapped) */
"iip\0"
"glUniform1fv\0"
"glUniform1fvARB\0"
"\0"
- /* _mesa_function_pool[29603]: CopyTexSubImage1D (offset 325) */
+ /* _mesa_function_pool[29593]: CopyTexSubImage1D (offset 325) */
"iiiiii\0"
"glCopyTexSubImage1D\0"
"glCopyTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[29654]: CullFace (offset 152) */
+ /* _mesa_function_pool[29644]: CullFace (offset 152) */
"i\0"
"glCullFace\0"
"\0"
- /* _mesa_function_pool[29668]: BindTexture (offset 307) */
+ /* _mesa_function_pool[29658]: BindTexture (offset 307) */
"ii\0"
"glBindTexture\0"
"glBindTextureEXT\0"
"\0"
- /* _mesa_function_pool[29703]: BeginFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[29693]: BeginFragmentShaderATI (will be remapped) */
"\0"
"glBeginFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[29730]: MultiTexCoord4fARB (offset 402) */
+ /* _mesa_function_pool[29720]: MultiTexCoord4fARB (offset 402) */
"iffff\0"
"glMultiTexCoord4f\0"
"glMultiTexCoord4fARB\0"
"\0"
- /* _mesa_function_pool[29776]: VertexAttribs3svNV (will be remapped) */
+ /* _mesa_function_pool[29766]: VertexAttribs3svNV (will be remapped) */
"iip\0"
"glVertexAttribs3svNV\0"
"\0"
- /* _mesa_function_pool[29802]: StencilFunc (offset 243) */
+ /* _mesa_function_pool[29792]: StencilFunc (offset 243) */
"iii\0"
"glStencilFunc\0"
"\0"
- /* _mesa_function_pool[29821]: CopyPixels (offset 255) */
+ /* _mesa_function_pool[29811]: CopyPixels (offset 255) */
"iiiii\0"
"glCopyPixels\0"
"\0"
- /* _mesa_function_pool[29841]: Rectsv (offset 93) */
+ /* _mesa_function_pool[29831]: Rectsv (offset 93) */
"pp\0"
"glRectsv\0"
"\0"
- /* _mesa_function_pool[29854]: ReplacementCodeuivSUN (dynamic) */
+ /* _mesa_function_pool[29844]: ReplacementCodeuivSUN (dynamic) */
"p\0"
"glReplacementCodeuivSUN\0"
"\0"
- /* _mesa_function_pool[29881]: EnableVertexAttribArrayARB (will be remapped) */
+ /* _mesa_function_pool[29871]: EnableVertexAttribArrayARB (will be remapped) */
"i\0"
"glEnableVertexAttribArray\0"
"glEnableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[29939]: NormalPointervINTEL (dynamic) */
+ /* _mesa_function_pool[29929]: NormalPointervINTEL (dynamic) */
"ip\0"
"glNormalPointervINTEL\0"
"\0"
- /* _mesa_function_pool[29965]: CopyConvolutionFilter2D (offset 355) */
+ /* _mesa_function_pool[29955]: CopyConvolutionFilter2D (offset 355) */
"iiiiii\0"
"glCopyConvolutionFilter2D\0"
"glCopyConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[30028]: WindowPos3ivMESA (will be remapped) */
+ /* _mesa_function_pool[30018]: WindowPos3ivMESA (will be remapped) */
"p\0"
"glWindowPos3iv\0"
"glWindowPos3ivARB\0"
"glWindowPos3ivMESA\0"
"\0"
- /* _mesa_function_pool[30083]: CopyBufferSubData (will be remapped) */
+ /* _mesa_function_pool[30073]: CopyBufferSubData (will be remapped) */
"iiiii\0"
"glCopyBufferSubData\0"
"\0"
- /* _mesa_function_pool[30110]: NormalPointer (offset 318) */
+ /* _mesa_function_pool[30100]: NormalPointer (offset 318) */
"iip\0"
"glNormalPointer\0"
"\0"
- /* _mesa_function_pool[30131]: TexParameterfv (offset 179) */
+ /* _mesa_function_pool[30121]: TexParameterfv (offset 179) */
"iip\0"
"glTexParameterfv\0"
"\0"
- /* _mesa_function_pool[30153]: IsBufferARB (will be remapped) */
+ /* _mesa_function_pool[30143]: IsBufferARB (will be remapped) */
"i\0"
"glIsBuffer\0"
"glIsBufferARB\0"
"\0"
- /* _mesa_function_pool[30181]: WindowPos4iMESA (will be remapped) */
+ /* _mesa_function_pool[30171]: WindowPos4iMESA (will be remapped) */
"iiii\0"
"glWindowPos4iMESA\0"
"\0"
- /* _mesa_function_pool[30205]: VertexAttrib4uivARB (will be remapped) */
+ /* _mesa_function_pool[30195]: VertexAttrib4uivARB (will be remapped) */
"ip\0"
"glVertexAttrib4uiv\0"
"glVertexAttrib4uivARB\0"
"\0"
- /* _mesa_function_pool[30250]: Tangent3bvEXT (dynamic) */
+ /* _mesa_function_pool[30240]: Tangent3bvEXT (dynamic) */
"p\0"
"glTangent3bvEXT\0"
"\0"
- /* _mesa_function_pool[30269]: VertexAttribI3uivEXT (will be remapped) */
+ /* _mesa_function_pool[30259]: VertexAttribI3uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3uivEXT\0"
"glVertexAttribI3uiv\0"
"\0"
- /* _mesa_function_pool[30316]: UniformMatrix3x4fv (will be remapped) */
+ /* _mesa_function_pool[30306]: UniformMatrix3x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x4fv\0"
"\0"
- /* _mesa_function_pool[30343]: ClipPlane (offset 150) */
+ /* _mesa_function_pool[30333]: ClipPlane (offset 150) */
"ip\0"
"glClipPlane\0"
"\0"
- /* _mesa_function_pool[30359]: Recti (offset 90) */
+ /* _mesa_function_pool[30349]: Recti (offset 90) */
"iiii\0"
"glRecti\0"
"\0"
- /* _mesa_function_pool[30373]: VertexAttribI3ivEXT (will be remapped) */
+ /* _mesa_function_pool[30363]: VertexAttribI3ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3ivEXT\0"
"glVertexAttribI3iv\0"
"\0"
- /* _mesa_function_pool[30418]: DrawRangeElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[30408]: DrawRangeElementsBaseVertex (will be remapped) */
"iiiiipi\0"
"glDrawRangeElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[30457]: TexCoordPointervINTEL (dynamic) */
+ /* _mesa_function_pool[30447]: TexCoordPointervINTEL (dynamic) */
"iip\0"
"glTexCoordPointervINTEL\0"
"\0"
- /* _mesa_function_pool[30486]: DeleteBuffersARB (will be remapped) */
+ /* _mesa_function_pool[30476]: DeleteBuffersARB (will be remapped) */
"ip\0"
"glDeleteBuffers\0"
"glDeleteBuffersARB\0"
"\0"
- /* _mesa_function_pool[30525]: PixelTransformParameterfvEXT (dynamic) */
+ /* _mesa_function_pool[30515]: PixelTransformParameterfvEXT (dynamic) */
"iip\0"
"glPixelTransformParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[30561]: PrimitiveRestartNV (will be remapped) */
+ /* _mesa_function_pool[30551]: PrimitiveRestartNV (will be remapped) */
"\0"
"glPrimitiveRestartNV\0"
"\0"
- /* _mesa_function_pool[30584]: WindowPos4fvMESA (will be remapped) */
+ /* _mesa_function_pool[30574]: WindowPos4fvMESA (will be remapped) */
"p\0"
"glWindowPos4fvMESA\0"
"\0"
- /* _mesa_function_pool[30606]: GetPixelMapuiv (offset 272) */
+ /* _mesa_function_pool[30596]: GetPixelMapuiv (offset 272) */
"ip\0"
"glGetPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[30627]: Rectf (offset 88) */
+ /* _mesa_function_pool[30617]: Rectf (offset 88) */
"ffff\0"
"glRectf\0"
"\0"
- /* _mesa_function_pool[30641]: VertexAttrib1sNV (will be remapped) */
+ /* _mesa_function_pool[30631]: VertexAttrib1sNV (will be remapped) */
"ii\0"
"glVertexAttrib1sNV\0"
"\0"
- /* _mesa_function_pool[30664]: Indexfv (offset 47) */
+ /* _mesa_function_pool[30654]: Indexfv (offset 47) */
"p\0"
"glIndexfv\0"
"\0"
- /* _mesa_function_pool[30677]: SecondaryColor3svEXT (will be remapped) */
+ /* _mesa_function_pool[30667]: SecondaryColor3svEXT (will be remapped) */
"p\0"
"glSecondaryColor3sv\0"
"glSecondaryColor3svEXT\0"
"\0"
- /* _mesa_function_pool[30723]: LoadTransposeMatrixfARB (will be remapped) */
+ /* _mesa_function_pool[30713]: LoadTransposeMatrixfARB (will be remapped) */
"p\0"
"glLoadTransposeMatrixf\0"
"glLoadTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[30775]: GetPointerv (offset 329) */
+ /* _mesa_function_pool[30765]: GetPointerv (offset 329) */
"ip\0"
"glGetPointerv\0"
"glGetPointervEXT\0"
"\0"
- /* _mesa_function_pool[30810]: Tangent3bEXT (dynamic) */
+ /* _mesa_function_pool[30800]: Tangent3bEXT (dynamic) */
"iii\0"
"glTangent3bEXT\0"
"\0"
- /* _mesa_function_pool[30830]: CombinerParameterfNV (will be remapped) */
+ /* _mesa_function_pool[30820]: CombinerParameterfNV (will be remapped) */
"if\0"
"glCombinerParameterfNV\0"
"\0"
- /* _mesa_function_pool[30857]: IndexMask (offset 212) */
+ /* _mesa_function_pool[30847]: IndexMask (offset 212) */
"i\0"
"glIndexMask\0"
"\0"
- /* _mesa_function_pool[30872]: BindProgramNV (will be remapped) */
+ /* _mesa_function_pool[30862]: BindProgramNV (will be remapped) */
"ii\0"
"glBindProgramARB\0"
"glBindProgramNV\0"
"\0"
- /* _mesa_function_pool[30909]: VertexAttrib4svARB (will be remapped) */
+ /* _mesa_function_pool[30899]: VertexAttrib4svARB (will be remapped) */
"ip\0"
"glVertexAttrib4sv\0"
"glVertexAttrib4svARB\0"
"\0"
- /* _mesa_function_pool[30952]: GetFloatv (offset 262) */
+ /* _mesa_function_pool[30942]: GetFloatv (offset 262) */
"ip\0"
"glGetFloatv\0"
"\0"
- /* _mesa_function_pool[30968]: CreateDebugObjectMESA (dynamic) */
+ /* _mesa_function_pool[30958]: CreateDebugObjectMESA (dynamic) */
"\0"
"glCreateDebugObjectMESA\0"
"\0"
- /* _mesa_function_pool[30994]: GetShaderiv (will be remapped) */
+ /* _mesa_function_pool[30984]: GetShaderiv (will be remapped) */
"iip\0"
"glGetShaderiv\0"
"\0"
- /* _mesa_function_pool[31013]: ClientWaitSync (will be remapped) */
+ /* _mesa_function_pool[31003]: ClientWaitSync (will be remapped) */
"iii\0"
"glClientWaitSync\0"
"\0"
- /* _mesa_function_pool[31035]: TexCoord4s (offset 124) */
+ /* _mesa_function_pool[31025]: TexCoord4s (offset 124) */
"iiii\0"
"glTexCoord4s\0"
"\0"
- /* _mesa_function_pool[31054]: TexCoord3sv (offset 117) */
+ /* _mesa_function_pool[31044]: TexCoord3sv (offset 117) */
"p\0"
"glTexCoord3sv\0"
"\0"
- /* _mesa_function_pool[31071]: BindFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[31061]: BindFragmentShaderATI (will be remapped) */
"i\0"
"glBindFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[31098]: PopAttrib (offset 218) */
+ /* _mesa_function_pool[31088]: PopAttrib (offset 218) */
"\0"
"glPopAttrib\0"
"\0"
- /* _mesa_function_pool[31112]: Fogfv (offset 154) */
+ /* _mesa_function_pool[31102]: Fogfv (offset 154) */
"ip\0"
"glFogfv\0"
"\0"
- /* _mesa_function_pool[31124]: UnmapBufferARB (will be remapped) */
+ /* _mesa_function_pool[31114]: UnmapBufferARB (will be remapped) */
"i\0"
"glUnmapBuffer\0"
"glUnmapBufferARB\0"
"\0"
- /* _mesa_function_pool[31158]: InitNames (offset 197) */
+ /* _mesa_function_pool[31148]: InitNames (offset 197) */
"\0"
"glInitNames\0"
"\0"
- /* _mesa_function_pool[31172]: Normal3sv (offset 61) */
+ /* _mesa_function_pool[31162]: Normal3sv (offset 61) */
"p\0"
"glNormal3sv\0"
"\0"
- /* _mesa_function_pool[31187]: Minmax (offset 368) */
+ /* _mesa_function_pool[31177]: Minmax (offset 368) */
"iii\0"
"glMinmax\0"
"glMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[31213]: TexCoord4d (offset 118) */
+ /* _mesa_function_pool[31203]: TexCoord4d (offset 118) */
"dddd\0"
"glTexCoord4d\0"
"\0"
- /* _mesa_function_pool[31232]: TexCoord4f (offset 120) */
+ /* _mesa_function_pool[31222]: DeformationMap3dSGIX (dynamic) */
+ "iddiiddiiddiip\0"
+ "glDeformationMap3dSGIX\0"
+ "\0"
+ /* _mesa_function_pool[31261]: TexCoord4f (offset 120) */
"ffff\0"
"glTexCoord4f\0"
"\0"
- /* _mesa_function_pool[31251]: FogCoorddvEXT (will be remapped) */
+ /* _mesa_function_pool[31280]: FogCoorddvEXT (will be remapped) */
"p\0"
"glFogCoorddv\0"
"glFogCoorddvEXT\0"
"\0"
- /* _mesa_function_pool[31283]: FinishTextureSUNX (dynamic) */
+ /* _mesa_function_pool[31312]: FinishTextureSUNX (dynamic) */
"\0"
"glFinishTextureSUNX\0"
"\0"
- /* _mesa_function_pool[31305]: GetFragmentLightfvSGIX (dynamic) */
+ /* _mesa_function_pool[31334]: GetFragmentLightfvSGIX (dynamic) */
"iip\0"
"glGetFragmentLightfvSGIX\0"
"\0"
- /* _mesa_function_pool[31335]: Binormal3fvEXT (dynamic) */
+ /* _mesa_function_pool[31364]: Binormal3fvEXT (dynamic) */
"p\0"
"glBinormal3fvEXT\0"
"\0"
- /* _mesa_function_pool[31355]: GetBooleanv (offset 258) */
+ /* _mesa_function_pool[31384]: GetBooleanv (offset 258) */
"ip\0"
"glGetBooleanv\0"
"\0"
- /* _mesa_function_pool[31373]: ColorFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[31402]: ColorFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiiii\0"
"glColorFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[31410]: Hint (offset 158) */
+ /* _mesa_function_pool[31439]: Hint (offset 158) */
"ii\0"
"glHint\0"
"\0"
- /* _mesa_function_pool[31421]: Color4dv (offset 28) */
+ /* _mesa_function_pool[31450]: Color4dv (offset 28) */
"p\0"
"glColor4dv\0"
"\0"
- /* _mesa_function_pool[31435]: VertexAttrib2svARB (will be remapped) */
+ /* _mesa_function_pool[31464]: VertexAttrib2svARB (will be remapped) */
"ip\0"
"glVertexAttrib2sv\0"
"glVertexAttrib2svARB\0"
"\0"
- /* _mesa_function_pool[31478]: AreProgramsResidentNV (will be remapped) */
+ /* _mesa_function_pool[31507]: AreProgramsResidentNV (will be remapped) */
"ipp\0"
"glAreProgramsResidentNV\0"
"\0"
- /* _mesa_function_pool[31507]: WindowPos3svMESA (will be remapped) */
+ /* _mesa_function_pool[31536]: WindowPos3svMESA (will be remapped) */
"p\0"
"glWindowPos3sv\0"
"glWindowPos3svARB\0"
"glWindowPos3svMESA\0"
"\0"
- /* _mesa_function_pool[31562]: CopyColorSubTable (offset 347) */
+ /* _mesa_function_pool[31591]: CopyColorSubTable (offset 347) */
"iiiii\0"
"glCopyColorSubTable\0"
"glCopyColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[31612]: WeightdvARB (dynamic) */
+ /* _mesa_function_pool[31641]: WeightdvARB (dynamic) */
"ip\0"
"glWeightdvARB\0"
"\0"
- /* _mesa_function_pool[31630]: DeleteRenderbuffersEXT (will be remapped) */
+ /* _mesa_function_pool[31659]: DeleteRenderbuffersEXT (will be remapped) */
"ip\0"
"glDeleteRenderbuffers\0"
"glDeleteRenderbuffersEXT\0"
"\0"
- /* _mesa_function_pool[31681]: VertexAttrib4NubvARB (will be remapped) */
+ /* _mesa_function_pool[31710]: VertexAttrib4NubvARB (will be remapped) */
"ip\0"
"glVertexAttrib4Nubv\0"
"glVertexAttrib4NubvARB\0"
"\0"
- /* _mesa_function_pool[31728]: VertexAttrib3dvNV (will be remapped) */
+ /* _mesa_function_pool[31757]: VertexAttrib3dvNV (will be remapped) */
"ip\0"
"glVertexAttrib3dvNV\0"
"\0"
- /* _mesa_function_pool[31752]: GetObjectParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[31781]: GetObjectParameterfvARB (will be remapped) */
"iip\0"
"glGetObjectParameterfvARB\0"
"\0"
- /* _mesa_function_pool[31783]: Vertex4iv (offset 147) */
+ /* _mesa_function_pool[31812]: Vertex4iv (offset 147) */
"p\0"
"glVertex4iv\0"
"\0"
- /* _mesa_function_pool[31798]: GetProgramEnvParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[31827]: GetProgramEnvParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramEnvParameterdvARB\0"
"\0"
- /* _mesa_function_pool[31833]: TexCoord4dv (offset 119) */
+ /* _mesa_function_pool[31862]: TexCoord4dv (offset 119) */
"p\0"
"glTexCoord4dv\0"
"\0"
- /* _mesa_function_pool[31850]: LockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[31879]: LockArraysEXT (will be remapped) */
"ii\0"
"glLockArraysEXT\0"
"\0"
- /* _mesa_function_pool[31870]: Begin (offset 7) */
+ /* _mesa_function_pool[31899]: Begin (offset 7) */
"i\0"
"glBegin\0"
"\0"
- /* _mesa_function_pool[31881]: LightModeli (offset 165) */
+ /* _mesa_function_pool[31910]: LightModeli (offset 165) */
"ii\0"
"glLightModeli\0"
"\0"
- /* _mesa_function_pool[31899]: VertexAttribI4ivEXT (will be remapped) */
+ /* _mesa_function_pool[31928]: VertexAttribI4ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI4ivEXT\0"
"glVertexAttribI4iv\0"
"\0"
- /* _mesa_function_pool[31944]: Rectfv (offset 89) */
+ /* _mesa_function_pool[31973]: Rectfv (offset 89) */
"pp\0"
"glRectfv\0"
"\0"
- /* _mesa_function_pool[31957]: LightModelf (offset 163) */
+ /* _mesa_function_pool[31986]: LightModelf (offset 163) */
"if\0"
"glLightModelf\0"
"\0"
- /* _mesa_function_pool[31975]: GetTexParameterfv (offset 282) */
+ /* _mesa_function_pool[32004]: GetTexParameterfv (offset 282) */
"iip\0"
"glGetTexParameterfv\0"
"\0"
- /* _mesa_function_pool[32000]: GetLightfv (offset 264) */
+ /* _mesa_function_pool[32029]: GetLightfv (offset 264) */
"iip\0"
"glGetLightfv\0"
"\0"
- /* _mesa_function_pool[32018]: PixelTransformParameterivEXT (dynamic) */
+ /* _mesa_function_pool[32047]: PixelTransformParameterivEXT (dynamic) */
"iip\0"
"glPixelTransformParameterivEXT\0"
"\0"
- /* _mesa_function_pool[32054]: BinormalPointerEXT (dynamic) */
+ /* _mesa_function_pool[32083]: BinormalPointerEXT (dynamic) */
"iip\0"
"glBinormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[32080]: VertexAttrib1dNV (will be remapped) */
+ /* _mesa_function_pool[32109]: VertexAttrib1dNV (will be remapped) */
"id\0"
"glVertexAttrib1dNV\0"
"\0"
- /* _mesa_function_pool[32103]: GetCombinerInputParameterivNV (will be remapped) */
+ /* _mesa_function_pool[32132]: GetCombinerInputParameterivNV (will be remapped) */
"iiiip\0"
"glGetCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[32142]: Disable (offset 214) */
+ /* _mesa_function_pool[32171]: Disable (offset 214) */
"i\0"
"glDisable\0"
"\0"
- /* _mesa_function_pool[32155]: MultiTexCoord2fvARB (offset 387) */
+ /* _mesa_function_pool[32184]: MultiTexCoord2fvARB (offset 387) */
"ip\0"
"glMultiTexCoord2fv\0"
"glMultiTexCoord2fvARB\0"
"\0"
- /* _mesa_function_pool[32200]: GetRenderbufferParameterivEXT (will be remapped) */
+ /* _mesa_function_pool[32229]: GetRenderbufferParameterivEXT (will be remapped) */
"iip\0"
"glGetRenderbufferParameteriv\0"
"glGetRenderbufferParameterivEXT\0"
"\0"
- /* _mesa_function_pool[32266]: CombinerParameterivNV (will be remapped) */
+ /* _mesa_function_pool[32295]: CombinerParameterivNV (will be remapped) */
"ip\0"
"glCombinerParameterivNV\0"
"\0"
- /* _mesa_function_pool[32294]: GenFragmentShadersATI (will be remapped) */
+ /* _mesa_function_pool[32323]: GenFragmentShadersATI (will be remapped) */
"i\0"
"glGenFragmentShadersATI\0"
"\0"
- /* _mesa_function_pool[32321]: DrawArrays (offset 310) */
+ /* _mesa_function_pool[32350]: DrawArrays (offset 310) */
"iii\0"
"glDrawArrays\0"
"glDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[32355]: WeightuivARB (dynamic) */
+ /* _mesa_function_pool[32384]: WeightuivARB (dynamic) */
"ip\0"
"glWeightuivARB\0"
"\0"
- /* _mesa_function_pool[32374]: VertexAttrib2sARB (will be remapped) */
+ /* _mesa_function_pool[32403]: VertexAttrib2sARB (will be remapped) */
"iii\0"
"glVertexAttrib2s\0"
"glVertexAttrib2sARB\0"
"\0"
- /* _mesa_function_pool[32416]: ColorMask (offset 210) */
+ /* _mesa_function_pool[32445]: ColorMask (offset 210) */
"iiii\0"
"glColorMask\0"
"\0"
- /* _mesa_function_pool[32434]: GenAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[32463]: GenAsyncMarkersSGIX (dynamic) */
"i\0"
"glGenAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[32459]: Tangent3svEXT (dynamic) */
+ /* _mesa_function_pool[32488]: Tangent3svEXT (dynamic) */
"p\0"
"glTangent3svEXT\0"
"\0"
- /* _mesa_function_pool[32478]: GetListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[32507]: GetListParameterivSGIX (dynamic) */
"iip\0"
"glGetListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[32508]: BindBufferARB (will be remapped) */
+ /* _mesa_function_pool[32537]: BindBufferARB (will be remapped) */
"ii\0"
"glBindBuffer\0"
"glBindBufferARB\0"
"\0"
- /* _mesa_function_pool[32541]: GetInfoLogARB (will be remapped) */
+ /* _mesa_function_pool[32570]: GetInfoLogARB (will be remapped) */
"iipp\0"
"glGetInfoLogARB\0"
"\0"
- /* _mesa_function_pool[32563]: RasterPos4iv (offset 83) */
+ /* _mesa_function_pool[32592]: RasterPos4iv (offset 83) */
"p\0"
"glRasterPos4iv\0"
"\0"
- /* _mesa_function_pool[32581]: Enable (offset 215) */
+ /* _mesa_function_pool[32610]: Enable (offset 215) */
"i\0"
"glEnable\0"
"\0"
- /* _mesa_function_pool[32593]: LineStipple (offset 167) */
+ /* _mesa_function_pool[32622]: LineStipple (offset 167) */
"ii\0"
"glLineStipple\0"
"\0"
- /* _mesa_function_pool[32611]: VertexAttribs4svNV (will be remapped) */
+ /* _mesa_function_pool[32640]: VertexAttribs4svNV (will be remapped) */
"iip\0"
"glVertexAttribs4svNV\0"
"\0"
- /* _mesa_function_pool[32637]: EdgeFlagPointerListIBM (dynamic) */
+ /* _mesa_function_pool[32666]: EdgeFlagPointerListIBM (dynamic) */
"ipi\0"
"glEdgeFlagPointerListIBM\0"
"\0"
- /* _mesa_function_pool[32667]: UniformMatrix3x2fv (will be remapped) */
+ /* _mesa_function_pool[32696]: UniformMatrix3x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x2fv\0"
"\0"
- /* _mesa_function_pool[32694]: GetMinmaxParameterfv (offset 365) */
+ /* _mesa_function_pool[32723]: GetMinmaxParameterfv (offset 365) */
"iip\0"
"glGetMinmaxParameterfv\0"
"glGetMinmaxParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[32748]: VertexAttrib1fvARB (will be remapped) */
+ /* _mesa_function_pool[32777]: VertexAttrib1fvARB (will be remapped) */
"ip\0"
"glVertexAttrib1fv\0"
"glVertexAttrib1fvARB\0"
"\0"
- /* _mesa_function_pool[32791]: GenBuffersARB (will be remapped) */
+ /* _mesa_function_pool[32820]: GenBuffersARB (will be remapped) */
"ip\0"
"glGenBuffers\0"
"glGenBuffersARB\0"
"\0"
- /* _mesa_function_pool[32824]: VertexAttribs1svNV (will be remapped) */
+ /* _mesa_function_pool[32853]: VertexAttribs1svNV (will be remapped) */
"iip\0"
"glVertexAttribs1svNV\0"
"\0"
- /* _mesa_function_pool[32850]: Vertex3fv (offset 137) */
+ /* _mesa_function_pool[32879]: Vertex3fv (offset 137) */
"p\0"
"glVertex3fv\0"
"\0"
- /* _mesa_function_pool[32865]: GetTexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[32894]: GetTexBumpParameterivATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[32896]: Binormal3bEXT (dynamic) */
+ /* _mesa_function_pool[32925]: Binormal3bEXT (dynamic) */
"iii\0"
"glBinormal3bEXT\0"
"\0"
- /* _mesa_function_pool[32917]: FragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[32946]: FragmentMaterialivSGIX (dynamic) */
"iip\0"
"glFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[32947]: IsRenderbufferEXT (will be remapped) */
+ /* _mesa_function_pool[32976]: IsRenderbufferEXT (will be remapped) */
"i\0"
"glIsRenderbuffer\0"
"glIsRenderbufferEXT\0"
"\0"
- /* _mesa_function_pool[32987]: GenProgramsNV (will be remapped) */
+ /* _mesa_function_pool[33016]: GenProgramsNV (will be remapped) */
"ip\0"
"glGenProgramsARB\0"
"glGenProgramsNV\0"
"\0"
- /* _mesa_function_pool[33024]: VertexAttrib4dvNV (will be remapped) */
+ /* _mesa_function_pool[33053]: VertexAttrib4dvNV (will be remapped) */
"ip\0"
"glVertexAttrib4dvNV\0"
"\0"
- /* _mesa_function_pool[33048]: EndFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[33077]: EndFragmentShaderATI (will be remapped) */
"\0"
"glEndFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[33073]: Binormal3iEXT (dynamic) */
+ /* _mesa_function_pool[33102]: Binormal3iEXT (dynamic) */
"iii\0"
"glBinormal3iEXT\0"
"\0"
- /* _mesa_function_pool[33094]: WindowPos2fMESA (will be remapped) */
+ /* _mesa_function_pool[33123]: WindowPos2fMESA (will be remapped) */
"ff\0"
"glWindowPos2f\0"
"glWindowPos2fARB\0"
@@ -4759,594 +4763,595 @@ static const char _mesa_function_pool[] =
/* these functions need to be remapped */
static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
- { 1616, AttachShader_remap_index },
- { 9872, CreateProgram_remap_index },
- { 22867, CreateShader_remap_index },
- { 25325, DeleteProgram_remap_index },
- { 18511, DeleteShader_remap_index },
- { 23339, DetachShader_remap_index },
- { 17914, GetAttachedShaders_remap_index },
- { 4856, GetProgramInfoLog_remap_index },
- { 444, GetProgramiv_remap_index },
- { 6529, GetShaderInfoLog_remap_index },
- { 30994, GetShaderiv_remap_index },
- { 13335, IsProgram_remap_index },
- { 12287, IsShader_remap_index },
- { 10002, StencilFuncSeparate_remap_index },
- { 3960, StencilMaskSeparate_remap_index },
- { 7594, StencilOpSeparate_remap_index },
- { 22155, UniformMatrix2x3fv_remap_index },
- { 2886, UniformMatrix2x4fv_remap_index },
- { 32667, UniformMatrix3x2fv_remap_index },
- { 30316, UniformMatrix3x4fv_remap_index },
- { 16212, UniformMatrix4x2fv_remap_index },
- { 3302, UniformMatrix4x3fv_remap_index },
- { 5017, ClampColor_remap_index },
- { 17968, ClearBufferfi_remap_index },
- { 17434, ClearBufferfv_remap_index },
- { 29339, ClearBufferiv_remap_index },
- { 13540, ClearBufferuiv_remap_index },
- { 19794, GetStringi_remap_index },
- { 2827, TexBuffer_remap_index },
- { 977, FramebufferTexture_remap_index },
- { 26351, GetBufferParameteri64v_remap_index },
- { 10102, GetInteger64i_v_remap_index },
- { 23181, VertexAttribDivisor_remap_index },
- { 9890, LoadTransposeMatrixdARB_remap_index },
- { 30723, LoadTransposeMatrixfARB_remap_index },
- { 5637, MultTransposeMatrixdARB_remap_index },
- { 23526, MultTransposeMatrixfARB_remap_index },
- { 255, SampleCoverageARB_remap_index },
- { 5821, CompressedTexImage1DARB_remap_index },
- { 24054, CompressedTexImage2DARB_remap_index },
- { 4023, CompressedTexImage3DARB_remap_index },
- { 18228, CompressedTexSubImage1DARB_remap_index },
- { 2089, CompressedTexSubImage2DARB_remap_index },
- { 20216, CompressedTexSubImage3DARB_remap_index },
- { 28495, GetCompressedTexImageARB_remap_index },
- { 3868, DisableVertexAttribArrayARB_remap_index },
- { 29881, EnableVertexAttribArrayARB_remap_index },
- { 31798, GetProgramEnvParameterdvARB_remap_index },
- { 23406, GetProgramEnvParameterfvARB_remap_index },
- { 27380, GetProgramLocalParameterdvARB_remap_index },
- { 8036, GetProgramLocalParameterfvARB_remap_index },
- { 18362, GetProgramStringARB_remap_index },
- { 27575, GetProgramivARB_remap_index },
- { 20411, GetVertexAttribdvARB_remap_index },
- { 16020, GetVertexAttribfvARB_remap_index },
- { 9735, GetVertexAttribivARB_remap_index },
- { 19275, ProgramEnvParameter4dARB_remap_index },
- { 25075, ProgramEnvParameter4dvARB_remap_index },
- { 16756, ProgramEnvParameter4fARB_remap_index },
- { 8935, ProgramEnvParameter4fvARB_remap_index },
- { 3986, ProgramLocalParameter4dARB_remap_index },
- { 13045, ProgramLocalParameter4dvARB_remap_index },
- { 29360, ProgramLocalParameter4fARB_remap_index },
- { 25711, ProgramLocalParameter4fvARB_remap_index },
- { 28249, ProgramStringARB_remap_index },
- { 19525, VertexAttrib1dARB_remap_index },
- { 15674, VertexAttrib1dvARB_remap_index },
- { 4161, VertexAttrib1fARB_remap_index },
- { 32748, VertexAttrib1fvARB_remap_index },
- { 7120, VertexAttrib1sARB_remap_index },
- { 2263, VertexAttrib1svARB_remap_index },
- { 15105, VertexAttrib2dARB_remap_index },
- { 17455, VertexAttrib2dvARB_remap_index },
- { 1635, VertexAttrib2fARB_remap_index },
- { 17568, VertexAttrib2fvARB_remap_index },
- { 32374, VertexAttrib2sARB_remap_index },
- { 31435, VertexAttrib2svARB_remap_index },
- { 11253, VertexAttrib3dARB_remap_index },
- { 8602, VertexAttrib3dvARB_remap_index },
- { 1722, VertexAttrib3fARB_remap_index },
- { 22418, VertexAttrib3fvARB_remap_index },
- { 28096, VertexAttrib3sARB_remap_index },
- { 20153, VertexAttrib3svARB_remap_index },
- { 4882, VertexAttrib4NbvARB_remap_index },
- { 17791, VertexAttrib4NivARB_remap_index },
- { 22373, VertexAttrib4NsvARB_remap_index },
- { 23358, VertexAttrib4NubARB_remap_index },
- { 31681, VertexAttrib4NubvARB_remap_index },
- { 18936, VertexAttrib4NuivARB_remap_index },
- { 3175, VertexAttrib4NusvARB_remap_index },
- { 10842, VertexAttrib4bvARB_remap_index },
- { 26753, VertexAttrib4dARB_remap_index },
- { 21175, VertexAttrib4dvARB_remap_index },
- { 11407, VertexAttrib4fARB_remap_index },
- { 11811, VertexAttrib4fvARB_remap_index },
- { 10218, VertexAttrib4ivARB_remap_index },
- { 17248, VertexAttrib4sARB_remap_index },
- { 30909, VertexAttrib4svARB_remap_index },
- { 16561, VertexAttrib4ubvARB_remap_index },
- { 30205, VertexAttrib4uivARB_remap_index },
- { 19964, VertexAttrib4usvARB_remap_index },
- { 21970, VertexAttribPointerARB_remap_index },
- { 32508, BindBufferARB_remap_index },
- { 6827, BufferDataARB_remap_index },
- { 1537, BufferSubDataARB_remap_index },
- { 30486, DeleteBuffersARB_remap_index },
- { 32791, GenBuffersARB_remap_index },
- { 17611, GetBufferParameterivARB_remap_index },
- { 16708, GetBufferPointervARB_remap_index },
- { 1490, GetBufferSubDataARB_remap_index },
- { 30153, IsBufferARB_remap_index },
- { 26195, MapBufferARB_remap_index },
- { 31124, UnmapBufferARB_remap_index },
- { 351, BeginQueryARB_remap_index },
- { 19620, DeleteQueriesARB_remap_index },
- { 12138, EndQueryARB_remap_index },
- { 28974, GenQueriesARB_remap_index },
- { 1981, GetQueryObjectivARB_remap_index },
- { 17292, GetQueryObjectuivARB_remap_index },
- { 1779, GetQueryivARB_remap_index },
- { 19871, IsQueryARB_remap_index },
- { 8212, AttachObjectARB_remap_index },
- { 18473, CompileShaderARB_remap_index },
- { 3244, CreateProgramObjectARB_remap_index },
- { 6772, CreateShaderObjectARB_remap_index },
- { 14407, DeleteObjectARB_remap_index },
- { 23845, DetachObjectARB_remap_index },
- { 11883, GetActiveUniformARB_remap_index },
- { 9410, GetAttachedObjectsARB_remap_index },
- { 9717, GetHandleARB_remap_index },
- { 32541, GetInfoLogARB_remap_index },
- { 31752, GetObjectParameterfvARB_remap_index },
- { 27254, GetObjectParameterivARB_remap_index },
- { 28732, GetShaderSourceARB_remap_index },
- { 27956, GetUniformLocationARB_remap_index },
- { 23628, GetUniformfvARB_remap_index },
- { 12620, GetUniformivARB_remap_index },
- { 20009, LinkProgramARB_remap_index },
- { 20067, ShaderSourceARB_remap_index },
- { 7494, Uniform1fARB_remap_index },
- { 29569, Uniform1fvARB_remap_index },
- { 21939, Uniform1iARB_remap_index },
- { 20864, Uniform1ivARB_remap_index },
- { 2212, Uniform2fARB_remap_index },
- { 14243, Uniform2fvARB_remap_index },
- { 26082, Uniform2iARB_remap_index },
- { 2332, Uniform2ivARB_remap_index },
- { 18583, Uniform3fARB_remap_index },
- { 9440, Uniform3fvARB_remap_index },
- { 6383, Uniform3iARB_remap_index },
- { 16814, Uniform3ivARB_remap_index },
- { 19081, Uniform4fARB_remap_index },
- { 23492, Uniform4fvARB_remap_index },
- { 24754, Uniform4iARB_remap_index },
- { 20377, Uniform4ivARB_remap_index },
- { 8264, UniformMatrix2fvARB_remap_index },
+ { 1577, AttachShader_remap_index },
+ { 9885, CreateProgram_remap_index },
+ { 22912, CreateShader_remap_index },
+ { 25399, DeleteProgram_remap_index },
+ { 18556, DeleteShader_remap_index },
+ { 23413, DetachShader_remap_index },
+ { 17959, GetAttachedShaders_remap_index },
+ { 4869, GetProgramInfoLog_remap_index },
+ { 405, GetProgramiv_remap_index },
+ { 6542, GetShaderInfoLog_remap_index },
+ { 30984, GetShaderiv_remap_index },
+ { 13309, IsProgram_remap_index },
+ { 12261, IsShader_remap_index },
+ { 10015, StencilFuncSeparate_remap_index },
+ { 3921, StencilMaskSeparate_remap_index },
+ { 7607, StencilOpSeparate_remap_index },
+ { 22200, UniformMatrix2x3fv_remap_index },
+ { 2847, UniformMatrix2x4fv_remap_index },
+ { 32696, UniformMatrix3x2fv_remap_index },
+ { 30306, UniformMatrix3x4fv_remap_index },
+ { 16257, UniformMatrix4x2fv_remap_index },
+ { 3263, UniformMatrix4x3fv_remap_index },
+ { 5030, ClampColor_remap_index },
+ { 18013, ClearBufferfi_remap_index },
+ { 17479, ClearBufferfv_remap_index },
+ { 29329, ClearBufferiv_remap_index },
+ { 13514, ClearBufferuiv_remap_index },
+ { 19839, GetStringi_remap_index },
+ { 2788, TexBuffer_remap_index },
+ { 938, FramebufferTexture_remap_index },
+ { 26425, GetBufferParameteri64v_remap_index },
+ { 10115, GetInteger64i_v_remap_index },
+ { 23226, VertexAttribDivisor_remap_index },
+ { 9903, LoadTransposeMatrixdARB_remap_index },
+ { 30713, LoadTransposeMatrixfARB_remap_index },
+ { 5608, MultTransposeMatrixdARB_remap_index },
+ { 23600, MultTransposeMatrixfARB_remap_index },
+ { 216, SampleCoverageARB_remap_index },
+ { 5834, CompressedTexImage1DARB_remap_index },
+ { 24128, CompressedTexImage2DARB_remap_index },
+ { 3984, CompressedTexImage3DARB_remap_index },
+ { 18273, CompressedTexSubImage1DARB_remap_index },
+ { 2050, CompressedTexSubImage2DARB_remap_index },
+ { 20261, CompressedTexSubImage3DARB_remap_index },
+ { 28485, GetCompressedTexImageARB_remap_index },
+ { 3829, DisableVertexAttribArrayARB_remap_index },
+ { 29871, EnableVertexAttribArrayARB_remap_index },
+ { 31827, GetProgramEnvParameterdvARB_remap_index },
+ { 23480, GetProgramEnvParameterfvARB_remap_index },
+ { 27422, GetProgramLocalParameterdvARB_remap_index },
+ { 8049, GetProgramLocalParameterfvARB_remap_index },
+ { 18407, GetProgramStringARB_remap_index },
+ { 27617, GetProgramivARB_remap_index },
+ { 20456, GetVertexAttribdvARB_remap_index },
+ { 16065, GetVertexAttribfvARB_remap_index },
+ { 9748, GetVertexAttribivARB_remap_index },
+ { 19320, ProgramEnvParameter4dARB_remap_index },
+ { 25149, ProgramEnvParameter4dvARB_remap_index },
+ { 16801, ProgramEnvParameter4fARB_remap_index },
+ { 8948, ProgramEnvParameter4fvARB_remap_index },
+ { 3947, ProgramLocalParameter4dARB_remap_index },
+ { 13019, ProgramLocalParameter4dvARB_remap_index },
+ { 29350, ProgramLocalParameter4fARB_remap_index },
+ { 25785, ProgramLocalParameter4fvARB_remap_index },
+ { 28239, ProgramStringARB_remap_index },
+ { 19570, VertexAttrib1dARB_remap_index },
+ { 15719, VertexAttrib1dvARB_remap_index },
+ { 4122, VertexAttrib1fARB_remap_index },
+ { 32777, VertexAttrib1fvARB_remap_index },
+ { 7133, VertexAttrib1sARB_remap_index },
+ { 2224, VertexAttrib1svARB_remap_index },
+ { 15150, VertexAttrib2dARB_remap_index },
+ { 17500, VertexAttrib2dvARB_remap_index },
+ { 1596, VertexAttrib2fARB_remap_index },
+ { 17613, VertexAttrib2fvARB_remap_index },
+ { 32403, VertexAttrib2sARB_remap_index },
+ { 31464, VertexAttrib2svARB_remap_index },
+ { 11266, VertexAttrib3dARB_remap_index },
+ { 8615, VertexAttrib3dvARB_remap_index },
+ { 1683, VertexAttrib3fARB_remap_index },
+ { 22463, VertexAttrib3fvARB_remap_index },
+ { 28086, VertexAttrib3sARB_remap_index },
+ { 20198, VertexAttrib3svARB_remap_index },
+ { 4895, VertexAttrib4NbvARB_remap_index },
+ { 17836, VertexAttrib4NivARB_remap_index },
+ { 22418, VertexAttrib4NsvARB_remap_index },
+ { 23432, VertexAttrib4NubARB_remap_index },
+ { 31710, VertexAttrib4NubvARB_remap_index },
+ { 18981, VertexAttrib4NuivARB_remap_index },
+ { 3136, VertexAttrib4NusvARB_remap_index },
+ { 10855, VertexAttrib4bvARB_remap_index },
+ { 26795, VertexAttrib4dARB_remap_index },
+ { 21220, VertexAttrib4dvARB_remap_index },
+ { 11420, VertexAttrib4fARB_remap_index },
+ { 11824, VertexAttrib4fvARB_remap_index },
+ { 10231, VertexAttrib4ivARB_remap_index },
+ { 17293, VertexAttrib4sARB_remap_index },
+ { 30899, VertexAttrib4svARB_remap_index },
+ { 16606, VertexAttrib4ubvARB_remap_index },
+ { 30195, VertexAttrib4uivARB_remap_index },
+ { 20009, VertexAttrib4usvARB_remap_index },
+ { 22015, VertexAttribPointerARB_remap_index },
+ { 32537, BindBufferARB_remap_index },
+ { 6840, BufferDataARB_remap_index },
+ { 1498, BufferSubDataARB_remap_index },
+ { 30476, DeleteBuffersARB_remap_index },
+ { 32820, GenBuffersARB_remap_index },
+ { 17656, GetBufferParameterivARB_remap_index },
+ { 16753, GetBufferPointervARB_remap_index },
+ { 1451, GetBufferSubDataARB_remap_index },
+ { 30143, IsBufferARB_remap_index },
+ { 26269, MapBufferARB_remap_index },
+ { 31114, UnmapBufferARB_remap_index },
+ { 312, BeginQueryARB_remap_index },
+ { 19665, DeleteQueriesARB_remap_index },
+ { 12151, EndQueryARB_remap_index },
+ { 28964, GenQueriesARB_remap_index },
+ { 1942, GetQueryObjectivARB_remap_index },
+ { 17337, GetQueryObjectuivARB_remap_index },
+ { 1740, GetQueryivARB_remap_index },
+ { 19916, IsQueryARB_remap_index },
+ { 8225, AttachObjectARB_remap_index },
+ { 18518, CompileShaderARB_remap_index },
+ { 3205, CreateProgramObjectARB_remap_index },
+ { 6785, CreateShaderObjectARB_remap_index },
+ { 14452, DeleteObjectARB_remap_index },
+ { 23919, DetachObjectARB_remap_index },
+ { 11896, GetActiveUniformARB_remap_index },
+ { 9423, GetAttachedObjectsARB_remap_index },
+ { 9730, GetHandleARB_remap_index },
+ { 32570, GetInfoLogARB_remap_index },
+ { 31781, GetObjectParameterfvARB_remap_index },
+ { 27296, GetObjectParameterivARB_remap_index },
+ { 28722, GetShaderSourceARB_remap_index },
+ { 27946, GetUniformLocationARB_remap_index },
+ { 23702, GetUniformfvARB_remap_index },
+ { 12594, GetUniformivARB_remap_index },
+ { 20054, LinkProgramARB_remap_index },
+ { 20112, ShaderSourceARB_remap_index },
+ { 7507, Uniform1fARB_remap_index },
+ { 29559, Uniform1fvARB_remap_index },
+ { 21984, Uniform1iARB_remap_index },
+ { 20909, Uniform1ivARB_remap_index },
+ { 2173, Uniform2fARB_remap_index },
+ { 14288, Uniform2fvARB_remap_index },
+ { 26156, Uniform2iARB_remap_index },
+ { 2293, Uniform2ivARB_remap_index },
+ { 18628, Uniform3fARB_remap_index },
+ { 9453, Uniform3fvARB_remap_index },
+ { 6396, Uniform3iARB_remap_index },
+ { 16859, Uniform3ivARB_remap_index },
+ { 19126, Uniform4fARB_remap_index },
+ { 23566, Uniform4fvARB_remap_index },
+ { 24828, Uniform4iARB_remap_index },
+ { 20422, Uniform4ivARB_remap_index },
+ { 8277, UniformMatrix2fvARB_remap_index },
{ 17, UniformMatrix3fvARB_remap_index },
- { 2729, UniformMatrix4fvARB_remap_index },
- { 25187, UseProgramObjectARB_remap_index },
- { 14793, ValidateProgramARB_remap_index },
- { 21218, BindAttribLocationARB_remap_index },
- { 4927, GetActiveAttribARB_remap_index },
- { 16495, GetAttribLocationARB_remap_index },
- { 29287, DrawBuffersARB_remap_index },
- { 17836, DrawArraysInstancedARB_remap_index },
- { 6444, DrawElementsInstancedARB_remap_index },
- { 13150, RenderbufferStorageMultisample_remap_index },
- { 13621, FramebufferTextureARB_remap_index },
- { 25613, FramebufferTextureFaceARB_remap_index },
- { 23994, ProgramParameteriARB_remap_index },
- { 19129, FlushMappedBufferRange_remap_index },
- { 27671, MapBufferRange_remap_index },
- { 16323, BindVertexArray_remap_index },
- { 14616, GenVertexArrays_remap_index },
- { 30083, CopyBufferSubData_remap_index },
- { 31013, ClientWaitSync_remap_index },
- { 2648, DeleteSync_remap_index },
- { 7161, FenceSync_remap_index },
- { 15164, GetInteger64v_remap_index },
- { 22480, GetSynciv_remap_index },
- { 29226, IsSync_remap_index },
- { 9358, WaitSync_remap_index },
- { 3836, DrawElementsBaseVertex_remap_index },
- { 30418, DrawRangeElementsBaseVertex_remap_index },
- { 26226, MultiDrawElementsBaseVertex_remap_index },
- { 5078, BindTransformFeedback_remap_index },
- { 3271, DeleteTransformFeedbacks_remap_index },
- { 6416, DrawTransformFeedback_remap_index },
- { 9577, GenTransformFeedbacks_remap_index },
- { 28139, IsTransformFeedback_remap_index },
- { 25806, PauseTransformFeedback_remap_index },
- { 5557, ResumeTransformFeedback_remap_index },
- { 21538, ClearDepthf_remap_index },
- { 6720, DepthRangef_remap_index },
- { 14428, GetShaderPrecisionFormat_remap_index },
- { 9942, ReleaseShaderCompiler_remap_index },
- { 10885, ShaderBinary_remap_index },
- { 5425, PolygonOffsetEXT_remap_index },
- { 23102, GetPixelTexGenParameterfvSGIS_remap_index },
- { 4404, GetPixelTexGenParameterivSGIS_remap_index },
- { 22835, PixelTexGenParameterfSGIS_remap_index },
- { 663, PixelTexGenParameterfvSGIS_remap_index },
- { 12658, PixelTexGenParameteriSGIS_remap_index },
- { 13763, PixelTexGenParameterivSGIS_remap_index },
- { 16411, SampleMaskSGIS_remap_index },
- { 19811, SamplePatternSGIS_remap_index },
- { 26155, ColorPointerEXT_remap_index },
- { 17498, EdgeFlagPointerEXT_remap_index },
- { 6037, IndexPointerEXT_remap_index },
- { 6117, NormalPointerEXT_remap_index },
- { 15758, TexCoordPointerEXT_remap_index },
- { 6950, VertexPointerEXT_remap_index },
- { 3638, PointParameterfEXT_remap_index },
- { 7801, PointParameterfvEXT_remap_index },
- { 31850, LockArraysEXT_remap_index },
- { 14857, UnlockArraysEXT_remap_index },
- { 1306, SecondaryColor3bEXT_remap_index },
- { 7960, SecondaryColor3bvEXT_remap_index },
- { 10395, SecondaryColor3dEXT_remap_index },
- { 25383, SecondaryColor3dvEXT_remap_index },
- { 28005, SecondaryColor3fEXT_remap_index },
- { 18164, SecondaryColor3fvEXT_remap_index },
- { 509, SecondaryColor3iEXT_remap_index },
- { 16068, SecondaryColor3ivEXT_remap_index },
- { 10030, SecondaryColor3sEXT_remap_index },
- { 30677, SecondaryColor3svEXT_remap_index },
- { 27090, SecondaryColor3ubEXT_remap_index },
- { 21109, SecondaryColor3ubvEXT_remap_index },
- { 12900, SecondaryColor3uiEXT_remap_index },
- { 22722, SecondaryColor3uivEXT_remap_index },
- { 25663, SecondaryColor3usEXT_remap_index },
- { 12973, SecondaryColor3usvEXT_remap_index },
- { 11754, SecondaryColorPointerEXT_remap_index },
- { 25477, MultiDrawArraysEXT_remap_index },
- { 20799, MultiDrawElementsEXT_remap_index },
- { 20994, FogCoordPointerEXT_remap_index },
- { 4553, FogCoorddEXT_remap_index },
- { 31251, FogCoorddvEXT_remap_index },
- { 4670, FogCoordfEXT_remap_index },
- { 27013, FogCoordfvEXT_remap_index },
- { 19033, PixelTexGenSGIX_remap_index },
- { 27598, BlendFuncSeparateEXT_remap_index },
- { 6862, FlushVertexArrayRangeNV_remap_index },
- { 5374, VertexArrayRangeNV_remap_index },
- { 28070, CombinerInputNV_remap_index },
- { 2155, CombinerOutputNV_remap_index },
- { 30830, CombinerParameterfNV_remap_index },
- { 5248, CombinerParameterfvNV_remap_index },
- { 22204, CombinerParameteriNV_remap_index },
- { 32266, CombinerParameterivNV_remap_index },
- { 7238, FinalCombinerInputNV_remap_index },
- { 9783, GetCombinerInputParameterfvNV_remap_index },
- { 32103, GetCombinerInputParameterivNV_remap_index },
- { 216, GetCombinerOutputParameterfvNV_remap_index },
- { 13724, GetCombinerOutputParameterivNV_remap_index },
- { 6624, GetFinalCombinerInputParameterfvNV_remap_index },
- { 24626, GetFinalCombinerInputParameterivNV_remap_index },
- { 12598, ResizeBuffersMESA_remap_index },
- { 11080, WindowPos2dMESA_remap_index },
- { 1099, WindowPos2dvMESA_remap_index },
- { 33094, WindowPos2fMESA_remap_index },
- { 7905, WindowPos2fvMESA_remap_index },
- { 18111, WindowPos2iMESA_remap_index },
- { 20284, WindowPos2ivMESA_remap_index },
- { 20898, WindowPos2sMESA_remap_index },
- { 5735, WindowPos2svMESA_remap_index },
- { 7730, WindowPos3dMESA_remap_index },
- { 13971, WindowPos3dvMESA_remap_index },
- { 555, WindowPos3fMESA_remap_index },
- { 14918, WindowPos3fvMESA_remap_index },
- { 23887, WindowPos3iMESA_remap_index },
- { 30028, WindowPos3ivMESA_remap_index },
- { 18728, WindowPos3sMESA_remap_index },
- { 31507, WindowPos3svMESA_remap_index },
- { 11031, WindowPos4dMESA_remap_index },
- { 16952, WindowPos4dvMESA_remap_index },
- { 13930, WindowPos4fMESA_remap_index },
- { 30584, WindowPos4fvMESA_remap_index },
- { 30181, WindowPos4iMESA_remap_index },
- { 12401, WindowPos4ivMESA_remap_index },
- { 18912, WindowPos4sMESA_remap_index },
- { 3222, WindowPos4svMESA_remap_index },
- { 26721, MultiModeDrawArraysIBM_remap_index },
- { 28845, MultiModeDrawElementsIBM_remap_index },
- { 12166, DeleteFencesNV_remap_index },
- { 27917, FinishFenceNV_remap_index },
- { 3760, GenFencesNV_remap_index },
- { 16932, GetFenceivNV_remap_index },
- { 8197, IsFenceNV_remap_index },
- { 13651, SetFenceNV_remap_index },
- { 4217, TestFenceNV_remap_index },
- { 31478, AreProgramsResidentNV_remap_index },
- { 30872, BindProgramNV_remap_index },
- { 25746, DeleteProgramsNV_remap_index },
- { 21327, ExecuteProgramNV_remap_index },
- { 32987, GenProgramsNV_remap_index },
- { 23207, GetProgramParameterdvNV_remap_index },
- { 10457, GetProgramParameterfvNV_remap_index },
- { 26129, GetProgramStringNV_remap_index },
- { 24264, GetProgramivNV_remap_index },
- { 23441, GetTrackMatrixivNV_remap_index },
- { 25923, GetVertexAttribPointervNV_remap_index },
- { 24559, GetVertexAttribdvNV_remap_index },
- { 9253, GetVertexAttribfvNV_remap_index },
- { 18335, GetVertexAttribivNV_remap_index },
- { 19159, IsProgramNV_remap_index },
- { 9336, LoadProgramNV_remap_index },
- { 27694, ProgramParameters4dvNV_remap_index },
- { 24194, ProgramParameters4fvNV_remap_index },
- { 20588, RequestResidentProgramsNV_remap_index },
- { 22182, TrackMatrixNV_remap_index },
- { 32080, VertexAttrib1dNV_remap_index },
- { 13562, VertexAttrib1dvNV_remap_index },
- { 28351, VertexAttrib1fNV_remap_index },
- { 2454, VertexAttrib1fvNV_remap_index },
- { 30641, VertexAttrib1sNV_remap_index },
- { 14991, VertexAttrib1svNV_remap_index },
- { 4832, VertexAttrib2dNV_remap_index },
- { 13455, VertexAttrib2dvNV_remap_index },
- { 20043, VertexAttrib2fNV_remap_index },
- { 13021, VertexAttrib2fvNV_remap_index },
- { 5947, VertexAttrib2sNV_remap_index },
- { 18782, VertexAttrib2svNV_remap_index },
- { 11228, VertexAttrib3dNV_remap_index },
- { 31728, VertexAttrib3dvNV_remap_index },
- { 10269, VertexAttrib3fNV_remap_index },
- { 24586, VertexAttrib3fvNV_remap_index },
- { 22025, VertexAttrib3sNV_remap_index },
- { 23468, VertexAttrib3svNV_remap_index },
- { 28819, VertexAttrib4dNV_remap_index },
- { 33024, VertexAttrib4dvNV_remap_index },
- { 4454, VertexAttrib4fNV_remap_index },
- { 9386, VertexAttrib4fvNV_remap_index },
- { 26605, VertexAttrib4sNV_remap_index },
- { 1448, VertexAttrib4svNV_remap_index },
- { 4990, VertexAttrib4ubNV_remap_index },
- { 817, VertexAttrib4ubvNV_remap_index },
- { 21507, VertexAttribPointerNV_remap_index },
- { 2306, VertexAttribs1dvNV_remap_index },
- { 26011, VertexAttribs1fvNV_remap_index },
- { 32824, VertexAttribs1svNV_remap_index },
- { 10294, VertexAttribs2dvNV_remap_index },
- { 25148, VertexAttribs2fvNV_remap_index },
- { 17524, VertexAttribs2svNV_remap_index },
- { 5276, VertexAttribs3dvNV_remap_index },
- { 2186, VertexAttribs3fvNV_remap_index },
- { 29776, VertexAttribs3svNV_remap_index },
- { 26695, VertexAttribs4dvNV_remap_index },
- { 5348, VertexAttribs4fvNV_remap_index },
- { 32611, VertexAttribs4svNV_remap_index },
- { 29524, VertexAttribs4ubvNV_remap_index },
- { 26797, GetTexBumpParameterfvATI_remap_index },
- { 32865, GetTexBumpParameterivATI_remap_index },
- { 18445, TexBumpParameterfvATI_remap_index },
- { 20459, TexBumpParameterivATI_remap_index },
- { 15537, AlphaFragmentOp1ATI_remap_index },
- { 25429, AlphaFragmentOp2ATI_remap_index },
- { 24502, AlphaFragmentOp3ATI_remap_index },
- { 29703, BeginFragmentShaderATI_remap_index },
- { 31071, BindFragmentShaderATI_remap_index },
- { 23597, ColorFragmentOp1ATI_remap_index },
- { 4332, ColorFragmentOp2ATI_remap_index },
- { 31373, ColorFragmentOp3ATI_remap_index },
- { 5514, DeleteFragmentShaderATI_remap_index },
- { 33048, EndFragmentShaderATI_remap_index },
- { 32294, GenFragmentShadersATI_remap_index },
- { 25302, PassTexCoordATI_remap_index },
- { 6930, SampleMapATI_remap_index },
- { 26908, SetFragmentShaderConstantATI_remap_index },
- { 402, PointParameteriNV_remap_index },
- { 14132, PointParameterivNV_remap_index },
- { 28658, ActiveStencilFaceEXT_remap_index },
- { 27354, BindVertexArrayAPPLE_remap_index },
- { 2776, DeleteVertexArraysAPPLE_remap_index },
- { 17941, GenVertexArraysAPPLE_remap_index },
- { 23272, IsVertexArrayAPPLE_remap_index },
- { 858, GetProgramNamedParameterdvNV_remap_index },
- { 3601, GetProgramNamedParameterfvNV_remap_index },
- { 26828, ProgramNamedParameter4dNV_remap_index },
- { 14491, ProgramNamedParameter4dvNV_remap_index },
- { 8869, ProgramNamedParameter4fNV_remap_index },
- { 11719, ProgramNamedParameter4fvNV_remap_index },
- { 16863, PrimitiveRestartIndexNV_remap_index },
- { 30561, PrimitiveRestartNV_remap_index },
- { 24173, DepthBoundsEXT_remap_index },
- { 1198, BlendEquationSeparateEXT_remap_index },
- { 14692, BindFramebufferEXT_remap_index },
- { 25522, BindRenderbufferEXT_remap_index },
- { 9633, CheckFramebufferStatusEXT_remap_index },
- { 22523, DeleteFramebuffersEXT_remap_index },
- { 31630, DeleteRenderbuffersEXT_remap_index },
- { 13479, FramebufferRenderbufferEXT_remap_index },
- { 13668, FramebufferTexture1DEXT_remap_index },
- { 11513, FramebufferTexture2DEXT_remap_index },
- { 11133, FramebufferTexture3DEXT_remap_index },
- { 23138, GenFramebuffersEXT_remap_index },
- { 17389, GenRenderbuffersEXT_remap_index },
- { 6666, GenerateMipmapEXT_remap_index },
- { 21600, GetFramebufferAttachmentParameterivEXT_remap_index },
- { 32200, GetRenderbufferParameterivEXT_remap_index },
- { 20339, IsFramebufferEXT_remap_index },
- { 32947, IsRenderbufferEXT_remap_index },
- { 8144, RenderbufferStorageEXT_remap_index },
- { 734, BlitFramebufferEXT_remap_index },
- { 14277, BufferParameteriAPPLE_remap_index },
- { 19191, FlushMappedBufferRangeAPPLE_remap_index },
- { 1854, BindFragDataLocationEXT_remap_index },
- { 24286, GetFragDataLocationEXT_remap_index },
- { 10572, GetUniformuivEXT_remap_index },
- { 2972, GetVertexAttribIivEXT_remap_index },
- { 27865, GetVertexAttribIuivEXT_remap_index },
- { 11999, Uniform1uiEXT_remap_index },
- { 27779, Uniform1uivEXT_remap_index },
- { 22121, Uniform2uiEXT_remap_index },
- { 4296, Uniform2uivEXT_remap_index },
- { 29098, Uniform3uiEXT_remap_index },
- { 14638, Uniform3uivEXT_remap_index },
- { 3525, Uniform4uiEXT_remap_index },
- { 8645, Uniform4uivEXT_remap_index },
- { 18292, VertexAttribI1iEXT_remap_index },
- { 1004, VertexAttribI1ivEXT_remap_index },
- { 2555, VertexAttribI1uiEXT_remap_index },
- { 12749, VertexAttribI1uivEXT_remap_index },
+ { 2690, UniformMatrix4fvARB_remap_index },
+ { 25261, UseProgramObjectARB_remap_index },
+ { 14838, ValidateProgramARB_remap_index },
+ { 21263, BindAttribLocationARB_remap_index },
+ { 4940, GetActiveAttribARB_remap_index },
+ { 16540, GetAttribLocationARB_remap_index },
+ { 29277, DrawBuffersARB_remap_index },
+ { 17881, DrawArraysInstancedARB_remap_index },
+ { 6457, DrawElementsInstancedARB_remap_index },
+ { 13124, RenderbufferStorageMultisample_remap_index },
+ { 13595, FramebufferTextureARB_remap_index },
+ { 25687, FramebufferTextureFaceARB_remap_index },
+ { 24068, ProgramParameteriARB_remap_index },
+ { 23384, VertexAttribDivisorARB_remap_index },
+ { 19174, FlushMappedBufferRange_remap_index },
+ { 27713, MapBufferRange_remap_index },
+ { 16368, BindVertexArray_remap_index },
+ { 14661, GenVertexArrays_remap_index },
+ { 30073, CopyBufferSubData_remap_index },
+ { 31003, ClientWaitSync_remap_index },
+ { 2609, DeleteSync_remap_index },
+ { 7174, FenceSync_remap_index },
+ { 15209, GetInteger64v_remap_index },
+ { 22525, GetSynciv_remap_index },
+ { 29216, IsSync_remap_index },
+ { 9371, WaitSync_remap_index },
+ { 3797, DrawElementsBaseVertex_remap_index },
+ { 30408, DrawRangeElementsBaseVertex_remap_index },
+ { 26300, MultiDrawElementsBaseVertex_remap_index },
+ { 5091, BindTransformFeedback_remap_index },
+ { 3232, DeleteTransformFeedbacks_remap_index },
+ { 6429, DrawTransformFeedback_remap_index },
+ { 9590, GenTransformFeedbacks_remap_index },
+ { 28129, IsTransformFeedback_remap_index },
+ { 25880, PauseTransformFeedback_remap_index },
+ { 5528, ResumeTransformFeedback_remap_index },
+ { 21583, ClearDepthf_remap_index },
+ { 6733, DepthRangef_remap_index },
+ { 14473, GetShaderPrecisionFormat_remap_index },
+ { 9955, ReleaseShaderCompiler_remap_index },
+ { 10898, ShaderBinary_remap_index },
+ { 5396, PolygonOffsetEXT_remap_index },
+ { 23147, GetPixelTexGenParameterfvSGIS_remap_index },
+ { 4417, GetPixelTexGenParameterivSGIS_remap_index },
+ { 22880, PixelTexGenParameterfSGIS_remap_index },
+ { 624, PixelTexGenParameterfvSGIS_remap_index },
+ { 12632, PixelTexGenParameteriSGIS_remap_index },
+ { 13769, PixelTexGenParameterivSGIS_remap_index },
+ { 16456, SampleMaskSGIS_remap_index },
+ { 19856, SamplePatternSGIS_remap_index },
+ { 26229, ColorPointerEXT_remap_index },
+ { 17543, EdgeFlagPointerEXT_remap_index },
+ { 6050, IndexPointerEXT_remap_index },
+ { 6130, NormalPointerEXT_remap_index },
+ { 15803, TexCoordPointerEXT_remap_index },
+ { 6963, VertexPointerEXT_remap_index },
+ { 3599, PointParameterfEXT_remap_index },
+ { 7814, PointParameterfvEXT_remap_index },
+ { 31879, LockArraysEXT_remap_index },
+ { 14902, UnlockArraysEXT_remap_index },
+ { 1267, SecondaryColor3bEXT_remap_index },
+ { 7973, SecondaryColor3bvEXT_remap_index },
+ { 10408, SecondaryColor3dEXT_remap_index },
+ { 25457, SecondaryColor3dvEXT_remap_index },
+ { 27995, SecondaryColor3fEXT_remap_index },
+ { 18209, SecondaryColor3fvEXT_remap_index },
+ { 470, SecondaryColor3iEXT_remap_index },
+ { 16113, SecondaryColor3ivEXT_remap_index },
+ { 10043, SecondaryColor3sEXT_remap_index },
+ { 30667, SecondaryColor3svEXT_remap_index },
+ { 27132, SecondaryColor3ubEXT_remap_index },
+ { 21154, SecondaryColor3ubvEXT_remap_index },
+ { 12874, SecondaryColor3uiEXT_remap_index },
+ { 22767, SecondaryColor3uivEXT_remap_index },
+ { 25737, SecondaryColor3usEXT_remap_index },
+ { 12947, SecondaryColor3usvEXT_remap_index },
+ { 11767, SecondaryColorPointerEXT_remap_index },
+ { 25551, MultiDrawArraysEXT_remap_index },
+ { 20844, MultiDrawElementsEXT_remap_index },
+ { 21039, FogCoordPointerEXT_remap_index },
+ { 4566, FogCoorddEXT_remap_index },
+ { 31280, FogCoorddvEXT_remap_index },
+ { 4683, FogCoordfEXT_remap_index },
+ { 27055, FogCoordfvEXT_remap_index },
+ { 19078, PixelTexGenSGIX_remap_index },
+ { 27640, BlendFuncSeparateEXT_remap_index },
+ { 6875, FlushVertexArrayRangeNV_remap_index },
+ { 5345, VertexArrayRangeNV_remap_index },
+ { 28060, CombinerInputNV_remap_index },
+ { 2116, CombinerOutputNV_remap_index },
+ { 30820, CombinerParameterfNV_remap_index },
+ { 5219, CombinerParameterfvNV_remap_index },
+ { 22249, CombinerParameteriNV_remap_index },
+ { 32295, CombinerParameterivNV_remap_index },
+ { 7251, FinalCombinerInputNV_remap_index },
+ { 9796, GetCombinerInputParameterfvNV_remap_index },
+ { 32132, GetCombinerInputParameterivNV_remap_index },
+ { 13870, GetCombinerOutputParameterfvNV_remap_index },
+ { 13698, GetCombinerOutputParameterivNV_remap_index },
+ { 6637, GetFinalCombinerInputParameterfvNV_remap_index },
+ { 24700, GetFinalCombinerInputParameterivNV_remap_index },
+ { 12572, ResizeBuffersMESA_remap_index },
+ { 11093, WindowPos2dMESA_remap_index },
+ { 1060, WindowPos2dvMESA_remap_index },
+ { 33123, WindowPos2fMESA_remap_index },
+ { 7918, WindowPos2fvMESA_remap_index },
+ { 18156, WindowPos2iMESA_remap_index },
+ { 20329, WindowPos2ivMESA_remap_index },
+ { 20943, WindowPos2sMESA_remap_index },
+ { 5748, WindowPos2svMESA_remap_index },
+ { 7743, WindowPos3dMESA_remap_index },
+ { 14016, WindowPos3dvMESA_remap_index },
+ { 516, WindowPos3fMESA_remap_index },
+ { 14963, WindowPos3fvMESA_remap_index },
+ { 23961, WindowPos3iMESA_remap_index },
+ { 30018, WindowPos3ivMESA_remap_index },
+ { 18773, WindowPos3sMESA_remap_index },
+ { 31536, WindowPos3svMESA_remap_index },
+ { 11044, WindowPos4dMESA_remap_index },
+ { 16997, WindowPos4dvMESA_remap_index },
+ { 13975, WindowPos4fMESA_remap_index },
+ { 30574, WindowPos4fvMESA_remap_index },
+ { 30171, WindowPos4iMESA_remap_index },
+ { 12375, WindowPos4ivMESA_remap_index },
+ { 18957, WindowPos4sMESA_remap_index },
+ { 3183, WindowPos4svMESA_remap_index },
+ { 13737, MultiModeDrawArraysIBM_remap_index },
+ { 28835, MultiModeDrawElementsIBM_remap_index },
+ { 12179, DeleteFencesNV_remap_index },
+ { 27907, FinishFenceNV_remap_index },
+ { 3721, GenFencesNV_remap_index },
+ { 16977, GetFenceivNV_remap_index },
+ { 8210, IsFenceNV_remap_index },
+ { 13625, SetFenceNV_remap_index },
+ { 4178, TestFenceNV_remap_index },
+ { 31507, AreProgramsResidentNV_remap_index },
+ { 30862, BindProgramNV_remap_index },
+ { 25820, DeleteProgramsNV_remap_index },
+ { 21372, ExecuteProgramNV_remap_index },
+ { 33016, GenProgramsNV_remap_index },
+ { 23252, GetProgramParameterdvNV_remap_index },
+ { 10470, GetProgramParameterfvNV_remap_index },
+ { 26203, GetProgramStringNV_remap_index },
+ { 24338, GetProgramivNV_remap_index },
+ { 23515, GetTrackMatrixivNV_remap_index },
+ { 25997, GetVertexAttribPointervNV_remap_index },
+ { 24633, GetVertexAttribdvNV_remap_index },
+ { 9266, GetVertexAttribfvNV_remap_index },
+ { 18380, GetVertexAttribivNV_remap_index },
+ { 19204, IsProgramNV_remap_index },
+ { 9349, LoadProgramNV_remap_index },
+ { 27736, ProgramParameters4dvNV_remap_index },
+ { 24268, ProgramParameters4fvNV_remap_index },
+ { 20633, RequestResidentProgramsNV_remap_index },
+ { 22227, TrackMatrixNV_remap_index },
+ { 32109, VertexAttrib1dNV_remap_index },
+ { 13536, VertexAttrib1dvNV_remap_index },
+ { 28341, VertexAttrib1fNV_remap_index },
+ { 2415, VertexAttrib1fvNV_remap_index },
+ { 30631, VertexAttrib1sNV_remap_index },
+ { 15036, VertexAttrib1svNV_remap_index },
+ { 4845, VertexAttrib2dNV_remap_index },
+ { 13429, VertexAttrib2dvNV_remap_index },
+ { 20088, VertexAttrib2fNV_remap_index },
+ { 12995, VertexAttrib2fvNV_remap_index },
+ { 5960, VertexAttrib2sNV_remap_index },
+ { 18827, VertexAttrib2svNV_remap_index },
+ { 11241, VertexAttrib3dNV_remap_index },
+ { 31757, VertexAttrib3dvNV_remap_index },
+ { 10282, VertexAttrib3fNV_remap_index },
+ { 24660, VertexAttrib3fvNV_remap_index },
+ { 22070, VertexAttrib3sNV_remap_index },
+ { 23542, VertexAttrib3svNV_remap_index },
+ { 28809, VertexAttrib4dNV_remap_index },
+ { 33053, VertexAttrib4dvNV_remap_index },
+ { 4467, VertexAttrib4fNV_remap_index },
+ { 9399, VertexAttrib4fvNV_remap_index },
+ { 26679, VertexAttrib4sNV_remap_index },
+ { 1409, VertexAttrib4svNV_remap_index },
+ { 5003, VertexAttrib4ubNV_remap_index },
+ { 778, VertexAttrib4ubvNV_remap_index },
+ { 21552, VertexAttribPointerNV_remap_index },
+ { 2267, VertexAttribs1dvNV_remap_index },
+ { 26085, VertexAttribs1fvNV_remap_index },
+ { 32853, VertexAttribs1svNV_remap_index },
+ { 10307, VertexAttribs2dvNV_remap_index },
+ { 25222, VertexAttribs2fvNV_remap_index },
+ { 17569, VertexAttribs2svNV_remap_index },
+ { 5247, VertexAttribs3dvNV_remap_index },
+ { 2147, VertexAttribs3fvNV_remap_index },
+ { 29766, VertexAttribs3svNV_remap_index },
+ { 26769, VertexAttribs4dvNV_remap_index },
+ { 5319, VertexAttribs4fvNV_remap_index },
+ { 32640, VertexAttribs4svNV_remap_index },
+ { 29514, VertexAttribs4ubvNV_remap_index },
+ { 26839, GetTexBumpParameterfvATI_remap_index },
+ { 32894, GetTexBumpParameterivATI_remap_index },
+ { 18490, TexBumpParameterfvATI_remap_index },
+ { 20504, TexBumpParameterivATI_remap_index },
+ { 15582, AlphaFragmentOp1ATI_remap_index },
+ { 25503, AlphaFragmentOp2ATI_remap_index },
+ { 24576, AlphaFragmentOp3ATI_remap_index },
+ { 29693, BeginFragmentShaderATI_remap_index },
+ { 31061, BindFragmentShaderATI_remap_index },
+ { 23671, ColorFragmentOp1ATI_remap_index },
+ { 4345, ColorFragmentOp2ATI_remap_index },
+ { 31402, ColorFragmentOp3ATI_remap_index },
+ { 5485, DeleteFragmentShaderATI_remap_index },
+ { 33077, EndFragmentShaderATI_remap_index },
+ { 32323, GenFragmentShadersATI_remap_index },
+ { 25376, PassTexCoordATI_remap_index },
+ { 6943, SampleMapATI_remap_index },
+ { 26950, SetFragmentShaderConstantATI_remap_index },
+ { 363, PointParameteriNV_remap_index },
+ { 14177, PointParameterivNV_remap_index },
+ { 28648, ActiveStencilFaceEXT_remap_index },
+ { 27396, BindVertexArrayAPPLE_remap_index },
+ { 2737, DeleteVertexArraysAPPLE_remap_index },
+ { 17986, GenVertexArraysAPPLE_remap_index },
+ { 23317, IsVertexArrayAPPLE_remap_index },
+ { 819, GetProgramNamedParameterdvNV_remap_index },
+ { 3562, GetProgramNamedParameterfvNV_remap_index },
+ { 26870, ProgramNamedParameter4dNV_remap_index },
+ { 14536, ProgramNamedParameter4dvNV_remap_index },
+ { 8882, ProgramNamedParameter4fNV_remap_index },
+ { 11732, ProgramNamedParameter4fvNV_remap_index },
+ { 16908, PrimitiveRestartIndexNV_remap_index },
+ { 30551, PrimitiveRestartNV_remap_index },
+ { 24247, DepthBoundsEXT_remap_index },
+ { 1159, BlendEquationSeparateEXT_remap_index },
+ { 14737, BindFramebufferEXT_remap_index },
+ { 25596, BindRenderbufferEXT_remap_index },
+ { 9646, CheckFramebufferStatusEXT_remap_index },
+ { 22568, DeleteFramebuffersEXT_remap_index },
+ { 31659, DeleteRenderbuffersEXT_remap_index },
+ { 13453, FramebufferRenderbufferEXT_remap_index },
+ { 13642, FramebufferTexture1DEXT_remap_index },
+ { 11526, FramebufferTexture2DEXT_remap_index },
+ { 11146, FramebufferTexture3DEXT_remap_index },
+ { 23183, GenFramebuffersEXT_remap_index },
+ { 17434, GenRenderbuffersEXT_remap_index },
+ { 6679, GenerateMipmapEXT_remap_index },
+ { 21645, GetFramebufferAttachmentParameterivEXT_remap_index },
+ { 32229, GetRenderbufferParameterivEXT_remap_index },
+ { 20384, IsFramebufferEXT_remap_index },
+ { 32976, IsRenderbufferEXT_remap_index },
+ { 8157, RenderbufferStorageEXT_remap_index },
+ { 695, BlitFramebufferEXT_remap_index },
+ { 14322, BufferParameteriAPPLE_remap_index },
+ { 19236, FlushMappedBufferRangeAPPLE_remap_index },
+ { 1815, BindFragDataLocationEXT_remap_index },
+ { 24360, GetFragDataLocationEXT_remap_index },
+ { 10585, GetUniformuivEXT_remap_index },
+ { 2933, GetVertexAttribIivEXT_remap_index },
+ { 4195, GetVertexAttribIuivEXT_remap_index },
+ { 12012, Uniform1uiEXT_remap_index },
+ { 27821, Uniform1uivEXT_remap_index },
+ { 22166, Uniform2uiEXT_remap_index },
+ { 4309, Uniform2uivEXT_remap_index },
+ { 29088, Uniform3uiEXT_remap_index },
+ { 14683, Uniform3uivEXT_remap_index },
+ { 3486, Uniform4uiEXT_remap_index },
+ { 8658, Uniform4uivEXT_remap_index },
+ { 18337, VertexAttribI1iEXT_remap_index },
+ { 965, VertexAttribI1ivEXT_remap_index },
+ { 2516, VertexAttribI1uiEXT_remap_index },
+ { 12723, VertexAttribI1uivEXT_remap_index },
{ 81, VertexAttribI2iEXT_remap_index },
- { 23709, VertexAttribI2ivEXT_remap_index },
- { 5302, VertexAttribI2uiEXT_remap_index },
- { 4715, VertexAttribI2uivEXT_remap_index },
- { 26397, VertexAttribI3iEXT_remap_index },
- { 30373, VertexAttribI3ivEXT_remap_index },
- { 3379, VertexAttribI3uiEXT_remap_index },
- { 30269, VertexAttribI3uivEXT_remap_index },
- { 21851, VertexAttribI4bvEXT_remap_index },
- { 14570, VertexAttribI4iEXT_remap_index },
- { 31899, VertexAttribI4ivEXT_remap_index },
- { 13382, VertexAttribI4svEXT_remap_index },
- { 16448, VertexAttribI4ubvEXT_remap_index },
- { 16131, VertexAttribI4uiEXT_remap_index },
- { 5448, VertexAttribI4uivEXT_remap_index },
- { 11296, VertexAttribI4usvEXT_remap_index },
- { 18389, VertexAttribIPointerEXT_remap_index },
- { 3066, FramebufferTextureLayerEXT_remap_index },
- { 5172, ColorMaskIndexedEXT_remap_index },
- { 18806, DisableIndexedEXT_remap_index },
- { 26442, EnableIndexedEXT_remap_index },
- { 21555, GetBooleanIndexedvEXT_remap_index },
- { 10907, GetIntegerIndexedvEXT_remap_index },
- { 22599, IsEnabledIndexedEXT_remap_index },
- { 22499, ClearColorIiEXT_remap_index },
- { 3475, ClearColorIuiEXT_remap_index },
- { 9822, GetTexParameterIivEXT_remap_index },
- { 5895, GetTexParameterIuivEXT_remap_index },
- { 3022, TexParameterIivEXT_remap_index },
- { 26264, TexParameterIuivEXT_remap_index },
- { 4583, BeginConditionalRenderNV_remap_index },
- { 25252, EndConditionalRenderNV_remap_index },
- { 9280, BeginTransformFeedbackEXT_remap_index },
- { 18841, BindBufferBaseEXT_remap_index },
- { 18700, BindBufferOffsetEXT_remap_index },
- { 12226, BindBufferRangeEXT_remap_index },
- { 14192, EndTransformFeedbackEXT_remap_index },
- { 10770, GetTransformFeedbackVaryingEXT_remap_index },
- { 20644, TransformFeedbackVaryingsEXT_remap_index },
- { 29425, ProvokingVertexEXT_remap_index },
- { 10718, GetTexParameterPointervAPPLE_remap_index },
- { 5034, TextureRangeAPPLE_remap_index },
- { 11585, GetObjectParameterivAPPLE_remap_index },
- { 19766, ObjectPurgeableAPPLE_remap_index },
- { 5689, ObjectUnpurgeableAPPLE_remap_index },
- { 17211, ActiveProgramEXT_remap_index },
- { 17182, CreateShaderProgramEXT_remap_index },
- { 28443, UseShaderProgramEXT_remap_index },
- { 28684, StencilFuncSeparateATI_remap_index },
- { 18030, ProgramEnvParameters4fvEXT_remap_index },
- { 17076, ProgramLocalParameters4fvEXT_remap_index },
- { 14060, GetQueryObjecti64vEXT_remap_index },
- { 10320, GetQueryObjectui64vEXT_remap_index },
- { 23666, EGLImageTargetRenderbufferStorageOES_remap_index },
- { 12105, EGLImageTargetTexture2DOES_remap_index },
+ { 23783, VertexAttribI2ivEXT_remap_index },
+ { 5273, VertexAttribI2uiEXT_remap_index },
+ { 4728, VertexAttribI2uivEXT_remap_index },
+ { 26471, VertexAttribI3iEXT_remap_index },
+ { 30363, VertexAttribI3ivEXT_remap_index },
+ { 3340, VertexAttribI3uiEXT_remap_index },
+ { 30259, VertexAttribI3uivEXT_remap_index },
+ { 21896, VertexAttribI4bvEXT_remap_index },
+ { 14615, VertexAttribI4iEXT_remap_index },
+ { 31928, VertexAttribI4ivEXT_remap_index },
+ { 13356, VertexAttribI4svEXT_remap_index },
+ { 16493, VertexAttribI4ubvEXT_remap_index },
+ { 16176, VertexAttribI4uiEXT_remap_index },
+ { 5419, VertexAttribI4uivEXT_remap_index },
+ { 11309, VertexAttribI4usvEXT_remap_index },
+ { 18434, VertexAttribIPointerEXT_remap_index },
+ { 3027, FramebufferTextureLayerEXT_remap_index },
+ { 5660, ColorMaskIndexedEXT_remap_index },
+ { 18851, DisableIndexedEXT_remap_index },
+ { 26516, EnableIndexedEXT_remap_index },
+ { 21600, GetBooleanIndexedvEXT_remap_index },
+ { 10920, GetIntegerIndexedvEXT_remap_index },
+ { 22644, IsEnabledIndexedEXT_remap_index },
+ { 22544, ClearColorIiEXT_remap_index },
+ { 3436, ClearColorIuiEXT_remap_index },
+ { 9835, GetTexParameterIivEXT_remap_index },
+ { 5908, GetTexParameterIuivEXT_remap_index },
+ { 2983, TexParameterIivEXT_remap_index },
+ { 26338, TexParameterIuivEXT_remap_index },
+ { 4596, BeginConditionalRenderNV_remap_index },
+ { 25326, EndConditionalRenderNV_remap_index },
+ { 9293, BeginTransformFeedbackEXT_remap_index },
+ { 18886, BindBufferBaseEXT_remap_index },
+ { 18745, BindBufferOffsetEXT_remap_index },
+ { 12200, BindBufferRangeEXT_remap_index },
+ { 14237, EndTransformFeedbackEXT_remap_index },
+ { 10783, GetTransformFeedbackVaryingEXT_remap_index },
+ { 20689, TransformFeedbackVaryingsEXT_remap_index },
+ { 29415, ProvokingVertexEXT_remap_index },
+ { 10731, GetTexParameterPointervAPPLE_remap_index },
+ { 5047, TextureRangeAPPLE_remap_index },
+ { 11598, GetObjectParameterivAPPLE_remap_index },
+ { 19811, ObjectPurgeableAPPLE_remap_index },
+ { 5702, ObjectUnpurgeableAPPLE_remap_index },
+ { 17256, ActiveProgramEXT_remap_index },
+ { 17227, CreateShaderProgramEXT_remap_index },
+ { 28433, UseShaderProgramEXT_remap_index },
+ { 28674, StencilFuncSeparateATI_remap_index },
+ { 18075, ProgramEnvParameters4fvEXT_remap_index },
+ { 17121, ProgramLocalParameters4fvEXT_remap_index },
+ { 14105, GetQueryObjecti64vEXT_remap_index },
+ { 10333, GetQueryObjectui64vEXT_remap_index },
+ { 23740, EGLImageTargetRenderbufferStorageOES_remap_index },
+ { 12118, EGLImageTargetTexture2DOES_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 */
- { 2694, _gloffset_BlendColor },
+ { 2655, _gloffset_BlendColor },
/* from GL_EXT_blend_minmax */
- { 11190, _gloffset_BlendEquation },
+ { 11203, _gloffset_BlendEquation },
/* from GL_EXT_color_subtable */
- { 16974, _gloffset_ColorSubTable },
- { 31562, _gloffset_CopyColorSubTable },
+ { 17019, _gloffset_ColorSubTable },
+ { 31591, _gloffset_CopyColorSubTable },
/* from GL_EXT_convolution */
- { 296, _gloffset_ConvolutionFilter1D },
- { 2493, _gloffset_CopyConvolutionFilter1D },
- { 4097, _gloffset_GetConvolutionParameteriv },
- { 8493, _gloffset_ConvolutionFilter2D },
- { 8695, _gloffset_ConvolutionParameteriv },
- { 9155, _gloffset_ConvolutionParameterfv },
- { 20487, _gloffset_GetSeparableFilter },
- { 23941, _gloffset_SeparableFilter2D },
- { 24804, _gloffset_ConvolutionParameteri },
- { 24927, _gloffset_ConvolutionParameterf },
- { 26631, _gloffset_GetConvolutionParameterfv },
- { 27520, _gloffset_GetConvolutionFilter },
- { 29965, _gloffset_CopyConvolutionFilter2D },
+ { 257, _gloffset_ConvolutionFilter1D },
+ { 2454, _gloffset_CopyConvolutionFilter1D },
+ { 4058, _gloffset_GetConvolutionParameteriv },
+ { 8506, _gloffset_ConvolutionFilter2D },
+ { 8708, _gloffset_ConvolutionParameteriv },
+ { 9168, _gloffset_ConvolutionParameterfv },
+ { 20532, _gloffset_GetSeparableFilter },
+ { 24015, _gloffset_SeparableFilter2D },
+ { 24878, _gloffset_ConvolutionParameteri },
+ { 25001, _gloffset_ConvolutionParameterf },
+ { 26705, _gloffset_GetConvolutionParameterfv },
+ { 27562, _gloffset_GetConvolutionFilter },
+ { 29955, _gloffset_CopyConvolutionFilter2D },
/* from GL_EXT_copy_texture */
- { 15051, _gloffset_CopyTexSubImage3D },
- { 16661, _gloffset_CopyTexImage2D },
- { 24412, _gloffset_CopyTexImage1D },
- { 27201, _gloffset_CopyTexSubImage2D },
- { 29603, _gloffset_CopyTexSubImage1D },
+ { 15096, _gloffset_CopyTexSubImage3D },
+ { 16706, _gloffset_CopyTexImage2D },
+ { 24486, _gloffset_CopyTexImage1D },
+ { 27243, _gloffset_CopyTexSubImage2D },
+ { 29593, _gloffset_CopyTexSubImage1D },
/* from GL_EXT_draw_range_elements */
- { 9492, _gloffset_DrawRangeElements },
+ { 9505, _gloffset_DrawRangeElements },
/* from GL_EXT_histogram */
- { 895, _gloffset_Histogram },
- { 3561, _gloffset_ResetHistogram },
- { 9968, _gloffset_GetMinmax },
- { 15385, _gloffset_GetHistogramParameterfv },
- { 24337, _gloffset_GetMinmaxParameteriv },
- { 26521, _gloffset_ResetMinmax },
- { 27417, _gloffset_GetHistogramParameteriv },
- { 28618, _gloffset_GetHistogram },
- { 31187, _gloffset_Minmax },
- { 32694, _gloffset_GetMinmaxParameterfv },
+ { 856, _gloffset_Histogram },
+ { 3522, _gloffset_ResetHistogram },
+ { 9981, _gloffset_GetMinmax },
+ { 15430, _gloffset_GetHistogramParameterfv },
+ { 24411, _gloffset_GetMinmaxParameteriv },
+ { 26595, _gloffset_ResetMinmax },
+ { 27459, _gloffset_GetHistogramParameteriv },
+ { 28608, _gloffset_GetHistogram },
+ { 31177, _gloffset_Minmax },
+ { 32723, _gloffset_GetMinmaxParameterfv },
/* from GL_EXT_paletted_texture */
- { 8355, _gloffset_ColorTable },
- { 15231, _gloffset_GetColorTable },
- { 22885, _gloffset_GetColorTableParameterfv },
- { 24983, _gloffset_GetColorTableParameteriv },
+ { 8368, _gloffset_ColorTable },
+ { 15276, _gloffset_GetColorTable },
+ { 22930, _gloffset_GetColorTableParameterfv },
+ { 25057, _gloffset_GetColorTableParameteriv },
/* from GL_EXT_subtexture */
- { 7076, _gloffset_TexSubImage1D },
- { 10645, _gloffset_TexSubImage2D },
+ { 7089, _gloffset_TexSubImage1D },
+ { 10658, _gloffset_TexSubImage2D },
/* from GL_EXT_texture3D */
- { 1813, _gloffset_TexImage3D },
- { 22654, _gloffset_TexSubImage3D },
+ { 1774, _gloffset_TexImage3D },
+ { 22699, _gloffset_TexSubImage3D },
/* from GL_EXT_texture_object */
- { 3329, _gloffset_PrioritizeTextures },
- { 7525, _gloffset_AreTexturesResident },
- { 13586, _gloffset_GenTextures },
- { 15717, _gloffset_DeleteTextures },
- { 19472, _gloffset_IsTexture },
- { 29668, _gloffset_BindTexture },
+ { 3290, _gloffset_PrioritizeTextures },
+ { 7538, _gloffset_AreTexturesResident },
+ { 13560, _gloffset_GenTextures },
+ { 15762, _gloffset_DeleteTextures },
+ { 19517, _gloffset_IsTexture },
+ { 29658, _gloffset_BindTexture },
/* from GL_EXT_vertex_array */
- { 24113, _gloffset_ArrayElement },
- { 30775, _gloffset_GetPointerv },
- { 32321, _gloffset_DrawArrays },
+ { 24187, _gloffset_ArrayElement },
+ { 30765, _gloffset_GetPointerv },
+ { 32350, _gloffset_DrawArrays },
/* from GL_SGI_color_table */
- { 7643, _gloffset_ColorTableParameteriv },
- { 8355, _gloffset_ColorTable },
- { 15231, _gloffset_GetColorTable },
- { 15341, _gloffset_CopyColorTable },
- { 19333, _gloffset_ColorTableParameterfv },
- { 22885, _gloffset_GetColorTableParameterfv },
- { 24983, _gloffset_GetColorTableParameteriv },
+ { 7656, _gloffset_ColorTableParameteriv },
+ { 8368, _gloffset_ColorTable },
+ { 15276, _gloffset_GetColorTable },
+ { 15386, _gloffset_CopyColorTable },
+ { 19378, _gloffset_ColorTableParameterfv },
+ { 22930, _gloffset_GetColorTableParameterfv },
+ { 25057, _gloffset_GetColorTableParameteriv },
/* from GL_VERSION_1_3 */
- { 464, _gloffset_MultiTexCoord3sARB },
- { 696, _gloffset_ActiveTextureARB },
- { 4234, _gloffset_MultiTexCoord1fvARB },
- { 6142, _gloffset_MultiTexCoord3dARB },
- { 6187, _gloffset_MultiTexCoord2iARB },
- { 6311, _gloffset_MultiTexCoord2svARB },
- { 8311, _gloffset_MultiTexCoord2fARB },
- { 10350, _gloffset_MultiTexCoord3fvARB },
- { 10952, _gloffset_MultiTexCoord4sARB },
- { 11633, _gloffset_MultiTexCoord2dvARB },
- { 12048, _gloffset_MultiTexCoord1svARB },
- { 12459, _gloffset_MultiTexCoord3svARB },
- { 12520, _gloffset_MultiTexCoord4iARB },
- { 13290, _gloffset_MultiTexCoord3iARB },
- { 14089, _gloffset_MultiTexCoord1dARB },
- { 14306, _gloffset_MultiTexCoord3dvARB },
- { 15585, _gloffset_MultiTexCoord3ivARB },
- { 15630, _gloffset_MultiTexCoord2sARB },
- { 17031, _gloffset_MultiTexCoord4ivARB },
- { 18983, _gloffset_ClientActiveTextureARB },
- { 21283, _gloffset_MultiTexCoord2dARB },
- { 21720, _gloffset_MultiTexCoord4dvARB },
- { 22076, _gloffset_MultiTexCoord4fvARB },
- { 23026, _gloffset_MultiTexCoord3fARB },
- { 25567, _gloffset_MultiTexCoord4dARB },
- { 25833, _gloffset_MultiTexCoord1sARB },
- { 26037, _gloffset_MultiTexCoord1dvARB },
- { 27045, _gloffset_MultiTexCoord1ivARB },
- { 27138, _gloffset_MultiTexCoord2ivARB },
- { 27477, _gloffset_MultiTexCoord1iARB },
- { 28893, _gloffset_MultiTexCoord4svARB },
- { 29467, _gloffset_MultiTexCoord1fARB },
- { 29730, _gloffset_MultiTexCoord4fARB },
- { 32155, _gloffset_MultiTexCoord2fvARB },
+ { 425, _gloffset_MultiTexCoord3sARB },
+ { 657, _gloffset_ActiveTextureARB },
+ { 4247, _gloffset_MultiTexCoord1fvARB },
+ { 6155, _gloffset_MultiTexCoord3dARB },
+ { 6200, _gloffset_MultiTexCoord2iARB },
+ { 6324, _gloffset_MultiTexCoord2svARB },
+ { 8324, _gloffset_MultiTexCoord2fARB },
+ { 10363, _gloffset_MultiTexCoord3fvARB },
+ { 10965, _gloffset_MultiTexCoord4sARB },
+ { 11646, _gloffset_MultiTexCoord2dvARB },
+ { 12061, _gloffset_MultiTexCoord1svARB },
+ { 12433, _gloffset_MultiTexCoord3svARB },
+ { 12494, _gloffset_MultiTexCoord4iARB },
+ { 13264, _gloffset_MultiTexCoord3iARB },
+ { 14134, _gloffset_MultiTexCoord1dARB },
+ { 14351, _gloffset_MultiTexCoord3dvARB },
+ { 15630, _gloffset_MultiTexCoord3ivARB },
+ { 15675, _gloffset_MultiTexCoord2sARB },
+ { 17076, _gloffset_MultiTexCoord4ivARB },
+ { 19028, _gloffset_ClientActiveTextureARB },
+ { 21328, _gloffset_MultiTexCoord2dARB },
+ { 21765, _gloffset_MultiTexCoord4dvARB },
+ { 22121, _gloffset_MultiTexCoord4fvARB },
+ { 23071, _gloffset_MultiTexCoord3fARB },
+ { 25641, _gloffset_MultiTexCoord4dARB },
+ { 25907, _gloffset_MultiTexCoord1sARB },
+ { 26111, _gloffset_MultiTexCoord1dvARB },
+ { 27087, _gloffset_MultiTexCoord1ivARB },
+ { 27180, _gloffset_MultiTexCoord2ivARB },
+ { 27519, _gloffset_MultiTexCoord1iARB },
+ { 28883, _gloffset_MultiTexCoord4svARB },
+ { 29457, _gloffset_MultiTexCoord1fARB },
+ { 29720, _gloffset_MultiTexCoord4fARB },
+ { 32184, _gloffset_MultiTexCoord2fvARB },
{ -1, -1 }
};
@@ -5354,7 +5359,7 @@ static const struct gl_function_remap MESA_alt_functions[] = {
#if defined(need_GL_3DFX_tbuffer)
static const struct gl_function_remap GL_3DFX_tbuffer_functions[] = {
- { 9213, -1 }, /* TbufferMask3DFX */
+ { 9226, -1 }, /* TbufferMask3DFX */
{ -1, -1 }
};
#endif
@@ -5432,7 +5437,14 @@ static const struct gl_function_remap GL_ARB_framebuffer_object_functions[] = {
#if defined(need_GL_ARB_geometry_shader4)
/* functions defined in MESA_remap_table_functions are excluded */
static const struct gl_function_remap GL_ARB_geometry_shader4_functions[] = {
- { 12423, -1 }, /* FramebufferTextureLayer */
+ { 12397, -1 }, /* FramebufferTextureLayer */
+ { -1, -1 }
+};
+#endif
+
+#if defined(need_GL_ARB_instanced_arrays)
+/* functions defined in MESA_remap_table_functions are excluded */
+static const struct gl_function_remap GL_ARB_instanced_arrays_functions[] = {
{ -1, -1 }
};
#endif
@@ -5446,11 +5458,11 @@ static const struct gl_function_remap GL_ARB_map_buffer_range_functions[] = {
#if defined(need_GL_ARB_matrix_palette)
static const struct gl_function_remap GL_ARB_matrix_palette_functions[] = {
- { 3812, -1 }, /* MatrixIndexusvARB */
- { 13111, -1 }, /* MatrixIndexuivARB */
- { 14461, -1 }, /* MatrixIndexPointerARB */
- { 19721, -1 }, /* CurrentPaletteMatrixARB */
- { 22770, -1 }, /* MatrixIndexubvARB */
+ { 3773, -1 }, /* MatrixIndexusvARB */
+ { 13085, -1 }, /* MatrixIndexuivARB */
+ { 14506, -1 }, /* MatrixIndexPointerARB */
+ { 19766, -1 }, /* CurrentPaletteMatrixARB */
+ { 22815, -1 }, /* MatrixIndexubvARB */
{ -1, -1 }
};
#endif
@@ -5527,16 +5539,16 @@ static const struct gl_function_remap GL_ARB_vertex_array_object_functions[] = {
#if defined(need_GL_ARB_vertex_blend)
static const struct gl_function_remap GL_ARB_vertex_blend_functions[] = {
- { 2435, -1 }, /* WeightubvARB */
- { 6554, -1 }, /* WeightivARB */
- { 11055, -1 }, /* WeightPointerARB */
- { 13846, -1 }, /* WeightfvARB */
- { 17550, -1 }, /* WeightbvARB */
- { 20951, -1 }, /* WeightusvARB */
- { 23867, -1 }, /* VertexBlendARB */
- { 29551, -1 }, /* WeightsvARB */
- { 31612, -1 }, /* WeightdvARB */
- { 32355, -1 }, /* WeightuivARB */
+ { 2396, -1 }, /* WeightubvARB */
+ { 6567, -1 }, /* WeightivARB */
+ { 11068, -1 }, /* WeightPointerARB */
+ { 13852, -1 }, /* WeightfvARB */
+ { 17595, -1 }, /* WeightbvARB */
+ { 20996, -1 }, /* WeightusvARB */
+ { 23941, -1 }, /* VertexBlendARB */
+ { 29541, -1 }, /* WeightsvARB */
+ { 31641, -1 }, /* WeightdvARB */
+ { 32384, -1 }, /* WeightuivARB */
{ -1, -1 }
};
#endif
@@ -5606,7 +5618,7 @@ static const struct gl_function_remap GL_ATI_separate_stencil_functions[] = {
#if defined(need_GL_EXT_blend_color)
static const struct gl_function_remap GL_EXT_blend_color_functions[] = {
- { 2694, _gloffset_BlendColor },
+ { 2655, _gloffset_BlendColor },
{ -1, -1 }
};
#endif
@@ -5627,15 +5639,15 @@ static const struct gl_function_remap GL_EXT_blend_func_separate_functions[] = {
#if defined(need_GL_EXT_blend_minmax)
static const struct gl_function_remap GL_EXT_blend_minmax_functions[] = {
- { 11190, _gloffset_BlendEquation },
+ { 11203, _gloffset_BlendEquation },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_color_subtable)
static const struct gl_function_remap GL_EXT_color_subtable_functions[] = {
- { 16974, _gloffset_ColorSubTable },
- { 31562, _gloffset_CopyColorSubTable },
+ { 17019, _gloffset_ColorSubTable },
+ { 31591, _gloffset_CopyColorSubTable },
{ -1, -1 }
};
#endif
@@ -5649,66 +5661,66 @@ static const struct gl_function_remap GL_EXT_compiled_vertex_array_functions[] =
#if defined(need_GL_EXT_convolution)
static const struct gl_function_remap GL_EXT_convolution_functions[] = {
- { 296, _gloffset_ConvolutionFilter1D },
- { 2493, _gloffset_CopyConvolutionFilter1D },
- { 4097, _gloffset_GetConvolutionParameteriv },
- { 8493, _gloffset_ConvolutionFilter2D },
- { 8695, _gloffset_ConvolutionParameteriv },
- { 9155, _gloffset_ConvolutionParameterfv },
- { 20487, _gloffset_GetSeparableFilter },
- { 23941, _gloffset_SeparableFilter2D },
- { 24804, _gloffset_ConvolutionParameteri },
- { 24927, _gloffset_ConvolutionParameterf },
- { 26631, _gloffset_GetConvolutionParameterfv },
- { 27520, _gloffset_GetConvolutionFilter },
- { 29965, _gloffset_CopyConvolutionFilter2D },
+ { 257, _gloffset_ConvolutionFilter1D },
+ { 2454, _gloffset_CopyConvolutionFilter1D },
+ { 4058, _gloffset_GetConvolutionParameteriv },
+ { 8506, _gloffset_ConvolutionFilter2D },
+ { 8708, _gloffset_ConvolutionParameteriv },
+ { 9168, _gloffset_ConvolutionParameterfv },
+ { 20532, _gloffset_GetSeparableFilter },
+ { 24015, _gloffset_SeparableFilter2D },
+ { 24878, _gloffset_ConvolutionParameteri },
+ { 25001, _gloffset_ConvolutionParameterf },
+ { 26705, _gloffset_GetConvolutionParameterfv },
+ { 27562, _gloffset_GetConvolutionFilter },
+ { 29955, _gloffset_CopyConvolutionFilter2D },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_coordinate_frame)
static const struct gl_function_remap GL_EXT_coordinate_frame_functions[] = {
- { 10489, -1 }, /* TangentPointerEXT */
- { 12578, -1 }, /* Binormal3ivEXT */
- { 13243, -1 }, /* Tangent3sEXT */
- { 14526, -1 }, /* Tangent3fvEXT */
- { 18681, -1 }, /* Tangent3dvEXT */
- { 19419, -1 }, /* Binormal3bvEXT */
- { 20540, -1 }, /* Binormal3dEXT */
- { 22702, -1 }, /* Tangent3fEXT */
- { 24876, -1 }, /* Binormal3sEXT */
- { 25344, -1 }, /* Tangent3ivEXT */
- { 25363, -1 }, /* Tangent3dEXT */
- { 26310, -1 }, /* Binormal3svEXT */
- { 26943, -1 }, /* Binormal3fEXT */
- { 27831, -1 }, /* Binormal3dvEXT */
- { 29150, -1 }, /* Tangent3iEXT */
- { 30250, -1 }, /* Tangent3bvEXT */
- { 30810, -1 }, /* Tangent3bEXT */
- { 31335, -1 }, /* Binormal3fvEXT */
- { 32054, -1 }, /* BinormalPointerEXT */
- { 32459, -1 }, /* Tangent3svEXT */
- { 32896, -1 }, /* Binormal3bEXT */
- { 33073, -1 }, /* Binormal3iEXT */
+ { 10502, -1 }, /* TangentPointerEXT */
+ { 12552, -1 }, /* Binormal3ivEXT */
+ { 13217, -1 }, /* Tangent3sEXT */
+ { 14571, -1 }, /* Tangent3fvEXT */
+ { 18726, -1 }, /* Tangent3dvEXT */
+ { 19464, -1 }, /* Binormal3bvEXT */
+ { 20585, -1 }, /* Binormal3dEXT */
+ { 22747, -1 }, /* Tangent3fEXT */
+ { 24950, -1 }, /* Binormal3sEXT */
+ { 25418, -1 }, /* Tangent3ivEXT */
+ { 25437, -1 }, /* Tangent3dEXT */
+ { 26384, -1 }, /* Binormal3svEXT */
+ { 26985, -1 }, /* Binormal3fEXT */
+ { 27873, -1 }, /* Binormal3dvEXT */
+ { 29140, -1 }, /* Tangent3iEXT */
+ { 30240, -1 }, /* Tangent3bvEXT */
+ { 30800, -1 }, /* Tangent3bEXT */
+ { 31364, -1 }, /* Binormal3fvEXT */
+ { 32083, -1 }, /* BinormalPointerEXT */
+ { 32488, -1 }, /* Tangent3svEXT */
+ { 32925, -1 }, /* Binormal3bEXT */
+ { 33102, -1 }, /* Binormal3iEXT */
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_copy_texture)
static const struct gl_function_remap GL_EXT_copy_texture_functions[] = {
- { 15051, _gloffset_CopyTexSubImage3D },
- { 16661, _gloffset_CopyTexImage2D },
- { 24412, _gloffset_CopyTexImage1D },
- { 27201, _gloffset_CopyTexSubImage2D },
- { 29603, _gloffset_CopyTexSubImage1D },
+ { 15096, _gloffset_CopyTexSubImage3D },
+ { 16706, _gloffset_CopyTexImage2D },
+ { 24486, _gloffset_CopyTexImage1D },
+ { 27243, _gloffset_CopyTexSubImage2D },
+ { 29593, _gloffset_CopyTexSubImage1D },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_cull_vertex)
static const struct gl_function_remap GL_EXT_cull_vertex_functions[] = {
- { 8844, -1 }, /* CullParameterdvEXT */
- { 11678, -1 }, /* CullParameterfvEXT */
+ { 8857, -1 }, /* CullParameterdvEXT */
+ { 11691, -1 }, /* CullParameterfvEXT */
{ -1, -1 }
};
#endif
@@ -5736,7 +5748,7 @@ static const struct gl_function_remap GL_EXT_draw_instanced_functions[] = {
#if defined(need_GL_EXT_draw_range_elements)
static const struct gl_function_remap GL_EXT_draw_range_elements_functions[] = {
- { 9492, _gloffset_DrawRangeElements },
+ { 9505, _gloffset_DrawRangeElements },
{ -1, -1 }
};
#endif
@@ -5785,39 +5797,39 @@ static const struct gl_function_remap GL_EXT_gpu_shader4_functions[] = {
#if defined(need_GL_EXT_histogram)
static const struct gl_function_remap GL_EXT_histogram_functions[] = {
- { 895, _gloffset_Histogram },
- { 3561, _gloffset_ResetHistogram },
- { 9968, _gloffset_GetMinmax },
- { 15385, _gloffset_GetHistogramParameterfv },
- { 24337, _gloffset_GetMinmaxParameteriv },
- { 26521, _gloffset_ResetMinmax },
- { 27417, _gloffset_GetHistogramParameteriv },
- { 28618, _gloffset_GetHistogram },
- { 31187, _gloffset_Minmax },
- { 32694, _gloffset_GetMinmaxParameterfv },
+ { 856, _gloffset_Histogram },
+ { 3522, _gloffset_ResetHistogram },
+ { 9981, _gloffset_GetMinmax },
+ { 15430, _gloffset_GetHistogramParameterfv },
+ { 24411, _gloffset_GetMinmaxParameteriv },
+ { 26595, _gloffset_ResetMinmax },
+ { 27459, _gloffset_GetHistogramParameteriv },
+ { 28608, _gloffset_GetHistogram },
+ { 31177, _gloffset_Minmax },
+ { 32723, _gloffset_GetMinmaxParameterfv },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_index_func)
static const struct gl_function_remap GL_EXT_index_func_functions[] = {
- { 11464, -1 }, /* IndexFuncEXT */
+ { 11477, -1 }, /* IndexFuncEXT */
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_index_material)
static const struct gl_function_remap GL_EXT_index_material_functions[] = {
- { 21038, -1 }, /* IndexMaterialEXT */
+ { 21083, -1 }, /* IndexMaterialEXT */
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_light_texture)
static const struct gl_function_remap GL_EXT_light_texture_functions[] = {
- { 26330, -1 }, /* ApplyTextureEXT */
- { 26475, -1 }, /* TextureMaterialEXT */
- { 26500, -1 }, /* TextureLightEXT */
+ { 26404, -1 }, /* ApplyTextureEXT */
+ { 26549, -1 }, /* TextureMaterialEXT */
+ { 26574, -1 }, /* TextureLightEXT */
{ -1, -1 }
};
#endif
@@ -5838,20 +5850,20 @@ static const struct gl_function_remap GL_EXT_multisample_functions[] = {
#if defined(need_GL_EXT_paletted_texture)
static const struct gl_function_remap GL_EXT_paletted_texture_functions[] = {
- { 8355, _gloffset_ColorTable },
- { 15231, _gloffset_GetColorTable },
- { 22885, _gloffset_GetColorTableParameterfv },
- { 24983, _gloffset_GetColorTableParameteriv },
+ { 8368, _gloffset_ColorTable },
+ { 15276, _gloffset_GetColorTable },
+ { 22930, _gloffset_GetColorTableParameterfv },
+ { 25057, _gloffset_GetColorTableParameteriv },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_pixel_transform)
static const struct gl_function_remap GL_EXT_pixel_transform_functions[] = {
- { 21685, -1 }, /* PixelTransformParameterfEXT */
- { 21765, -1 }, /* PixelTransformParameteriEXT */
- { 30525, -1 }, /* PixelTransformParameterfvEXT */
- { 32018, -1 }, /* PixelTransformParameterivEXT */
+ { 21730, -1 }, /* PixelTransformParameterfEXT */
+ { 21810, -1 }, /* PixelTransformParameteriEXT */
+ { 30515, -1 }, /* PixelTransformParameterfvEXT */
+ { 32047, -1 }, /* PixelTransformParameterivEXT */
{ -1, -1 }
};
#endif
@@ -5900,16 +5912,16 @@ static const struct gl_function_remap GL_EXT_stencil_two_side_functions[] = {
#if defined(need_GL_EXT_subtexture)
static const struct gl_function_remap GL_EXT_subtexture_functions[] = {
- { 7076, _gloffset_TexSubImage1D },
- { 10645, _gloffset_TexSubImage2D },
+ { 7089, _gloffset_TexSubImage1D },
+ { 10658, _gloffset_TexSubImage2D },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_texture3D)
static const struct gl_function_remap GL_EXT_texture3D_functions[] = {
- { 1813, _gloffset_TexImage3D },
- { 22654, _gloffset_TexSubImage3D },
+ { 1774, _gloffset_TexImage3D },
+ { 22699, _gloffset_TexSubImage3D },
{ -1, -1 }
};
#endif
@@ -5930,19 +5942,19 @@ static const struct gl_function_remap GL_EXT_texture_integer_functions[] = {
#if defined(need_GL_EXT_texture_object)
static const struct gl_function_remap GL_EXT_texture_object_functions[] = {
- { 3329, _gloffset_PrioritizeTextures },
- { 7525, _gloffset_AreTexturesResident },
- { 13586, _gloffset_GenTextures },
- { 15717, _gloffset_DeleteTextures },
- { 19472, _gloffset_IsTexture },
- { 29668, _gloffset_BindTexture },
+ { 3290, _gloffset_PrioritizeTextures },
+ { 7538, _gloffset_AreTexturesResident },
+ { 13560, _gloffset_GenTextures },
+ { 15762, _gloffset_DeleteTextures },
+ { 19517, _gloffset_IsTexture },
+ { 29658, _gloffset_BindTexture },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_texture_perturb_normal)
static const struct gl_function_remap GL_EXT_texture_perturb_normal_functions[] = {
- { 13796, -1 }, /* TextureNormalEXT */
+ { 13802, -1 }, /* TextureNormalEXT */
{ -1, -1 }
};
#endif
@@ -5964,30 +5976,30 @@ static const struct gl_function_remap GL_EXT_transform_feedback_functions[] = {
#if defined(need_GL_EXT_vertex_array)
/* functions defined in MESA_remap_table_functions are excluded */
static const struct gl_function_remap GL_EXT_vertex_array_functions[] = {
- { 24113, _gloffset_ArrayElement },
- { 30775, _gloffset_GetPointerv },
- { 32321, _gloffset_DrawArrays },
+ { 24187, _gloffset_ArrayElement },
+ { 30765, _gloffset_GetPointerv },
+ { 32350, _gloffset_DrawArrays },
{ -1, -1 }
};
#endif
#if defined(need_GL_EXT_vertex_weighting)
static const struct gl_function_remap GL_EXT_vertex_weighting_functions[] = {
- { 19502, -1 }, /* VertexWeightfvEXT */
- { 26886, -1 }, /* VertexWeightfEXT */
- { 28587, -1 }, /* VertexWeightPointerEXT */
+ { 19547, -1 }, /* VertexWeightfvEXT */
+ { 26928, -1 }, /* VertexWeightfEXT */
+ { 28577, -1 }, /* VertexWeightPointerEXT */
{ -1, -1 }
};
#endif
#if defined(need_GL_HP_image_transform)
static const struct gl_function_remap GL_HP_image_transform_functions[] = {
- { 2366, -1 }, /* GetImageTransformParameterfvHP */
- { 3778, -1 }, /* ImageTransformParameterfHP */
- { 10183, -1 }, /* ImageTransformParameterfvHP */
- { 11933, -1 }, /* ImageTransformParameteriHP */
- { 12313, -1 }, /* GetImageTransformParameterivHP */
- { 19566, -1 }, /* ImageTransformParameterivHP */
+ { 2327, -1 }, /* GetImageTransformParameterfvHP */
+ { 3739, -1 }, /* ImageTransformParameterfHP */
+ { 10196, -1 }, /* ImageTransformParameterfvHP */
+ { 11946, -1 }, /* ImageTransformParameteriHP */
+ { 12287, -1 }, /* GetImageTransformParameterivHP */
+ { 19611, -1 }, /* ImageTransformParameterivHP */
{ -1, -1 }
};
#endif
@@ -6001,14 +6013,14 @@ static const struct gl_function_remap GL_IBM_multimode_draw_arrays_functions[] =
#if defined(need_GL_IBM_vertex_array_lists)
static const struct gl_function_remap GL_IBM_vertex_array_lists_functions[] = {
- { 4366, -1 }, /* SecondaryColorPointerListIBM */
- { 6008, -1 }, /* NormalPointerListIBM */
- { 7699, -1 }, /* FogCoordPointerListIBM */
- { 8006, -1 }, /* VertexPointerListIBM */
- { 11854, -1 }, /* ColorPointerListIBM */
- { 13350, -1 }, /* TexCoordPointerListIBM */
- { 13818, -1 }, /* IndexPointerListIBM */
- { 32637, -1 }, /* EdgeFlagPointerListIBM */
+ { 4379, -1 }, /* SecondaryColorPointerListIBM */
+ { 6021, -1 }, /* NormalPointerListIBM */
+ { 7712, -1 }, /* FogCoordPointerListIBM */
+ { 8019, -1 }, /* VertexPointerListIBM */
+ { 11867, -1 }, /* ColorPointerListIBM */
+ { 13324, -1 }, /* TexCoordPointerListIBM */
+ { 13824, -1 }, /* IndexPointerListIBM */
+ { 32666, -1 }, /* EdgeFlagPointerListIBM */
{ -1, -1 }
};
#endif
@@ -6022,10 +6034,10 @@ static const struct gl_function_remap GL_INGR_blend_func_separate_functions[] =
#if defined(need_GL_INTEL_parallel_arrays)
static const struct gl_function_remap GL_INTEL_parallel_arrays_functions[] = {
- { 12690, -1 }, /* VertexPointervINTEL */
- { 15478, -1 }, /* ColorPointervINTEL */
- { 29939, -1 }, /* NormalPointervINTEL */
- { 30457, -1 }, /* TexCoordPointervINTEL */
+ { 12664, -1 }, /* VertexPointervINTEL */
+ { 15523, -1 }, /* ColorPointervINTEL */
+ { 29929, -1 }, /* NormalPointervINTEL */
+ { 30447, -1 }, /* TexCoordPointervINTEL */
{ -1, -1 }
};
#endif
@@ -6039,10 +6051,10 @@ static const struct gl_function_remap GL_MESA_resize_buffers_functions[] = {
#if defined(need_GL_MESA_shader_debug)
static const struct gl_function_remap GL_MESA_shader_debug_functions[] = {
- { 1677, -1 }, /* GetDebugLogLengthMESA */
- { 3500, -1 }, /* ClearDebugLogMESA */
- { 4527, -1 }, /* GetDebugLogMESA */
- { 30968, -1 }, /* CreateDebugObjectMESA */
+ { 1638, -1 }, /* GetDebugLogLengthMESA */
+ { 3461, -1 }, /* ClearDebugLogMESA */
+ { 4540, -1 }, /* GetDebugLogMESA */
+ { 30958, -1 }, /* CreateDebugObjectMESA */
{ -1, -1 }
};
#endif
@@ -6063,15 +6075,15 @@ static const struct gl_function_remap GL_NV_condtitional_render_functions[] = {
#if defined(need_GL_NV_evaluators)
static const struct gl_function_remap GL_NV_evaluators_functions[] = {
- { 6738, -1 }, /* GetMapAttribParameterivNV */
- { 8461, -1 }, /* MapControlPointsNV */
- { 8560, -1 }, /* MapParameterfvNV */
- { 10628, -1 }, /* EvalMapsNV */
- { 17148, -1 }, /* GetMapAttribParameterfvNV */
- { 17365, -1 }, /* MapParameterivNV */
- { 24727, -1 }, /* GetMapParameterivNV */
- { 25225, -1 }, /* GetMapParameterfvNV */
- { 29254, -1 }, /* GetMapControlPointsNV */
+ { 6751, -1 }, /* GetMapAttribParameterivNV */
+ { 8474, -1 }, /* MapControlPointsNV */
+ { 8573, -1 }, /* MapParameterfvNV */
+ { 10641, -1 }, /* EvalMapsNV */
+ { 17193, -1 }, /* GetMapAttribParameterfvNV */
+ { 17410, -1 }, /* MapParameterivNV */
+ { 24801, -1 }, /* GetMapParameterivNV */
+ { 25299, -1 }, /* GetMapParameterfvNV */
+ { 29244, -1 }, /* GetMapControlPointsNV */
{ -1, -1 }
};
#endif
@@ -6113,8 +6125,8 @@ static const struct gl_function_remap GL_NV_register_combiners_functions[] = {
#if defined(need_GL_NV_register_combiners2)
static const struct gl_function_remap GL_NV_register_combiners2_functions[] = {
- { 15870, -1 }, /* CombinerStageParameterfvNV */
- { 16266, -1 }, /* GetCombinerStageParameterfvNV */
+ { 15915, -1 }, /* CombinerStageParameterfvNV */
+ { 16311, -1 }, /* GetCombinerStageParameterfvNV */
{ -1, -1 }
};
#endif
@@ -6142,23 +6154,23 @@ static const struct gl_function_remap GL_OES_EGL_image_functions[] = {
#if defined(need_GL_PGI_misc_hints)
static const struct gl_function_remap GL_PGI_misc_hints_functions[] = {
- { 8681, -1 }, /* HintPGI */
+ { 8694, -1 }, /* HintPGI */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIS_detail_texture)
static const struct gl_function_remap GL_SGIS_detail_texture_functions[] = {
- { 16239, -1 }, /* GetDetailTexFuncSGIS */
- { 16606, -1 }, /* DetailTexFuncSGIS */
+ { 16284, -1 }, /* GetDetailTexFuncSGIS */
+ { 16651, -1 }, /* DetailTexFuncSGIS */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIS_fog_function)
static const struct gl_function_remap GL_SGIS_fog_function_functions[] = {
- { 27183, -1 }, /* FogFuncSGIS */
- { 27936, -1 }, /* GetFogFuncSGIS */
+ { 27225, -1 }, /* FogFuncSGIS */
+ { 27926, -1 }, /* GetFogFuncSGIS */
{ -1, -1 }
};
#endif
@@ -6186,112 +6198,112 @@ static const struct gl_function_remap GL_SGIS_point_parameters_functions[] = {
#if defined(need_GL_SGIS_sharpen_texture)
static const struct gl_function_remap GL_SGIS_sharpen_texture_functions[] = {
- { 6799, -1 }, /* GetSharpenTexFuncSGIS */
- { 22050, -1 }, /* SharpenTexFuncSGIS */
+ { 6812, -1 }, /* GetSharpenTexFuncSGIS */
+ { 22095, -1 }, /* SharpenTexFuncSGIS */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIS_texture4D)
static const struct gl_function_remap GL_SGIS_texture4D_functions[] = {
- { 1049, -1 }, /* TexImage4DSGIS */
- { 15786, -1 }, /* TexSubImage4DSGIS */
+ { 1010, -1 }, /* TexImage4DSGIS */
+ { 15831, -1 }, /* TexSubImage4DSGIS */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIS_texture_color_mask)
static const struct gl_function_remap GL_SGIS_texture_color_mask_functions[] = {
- { 15184, -1 }, /* TextureColorMaskSGIS */
+ { 15229, -1 }, /* TextureColorMaskSGIS */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIS_texture_filter4)
static const struct gl_function_remap GL_SGIS_texture_filter4_functions[] = {
- { 6976, -1 }, /* GetTexFilterFuncSGIS */
- { 16385, -1 }, /* TexFilterFuncSGIS */
+ { 6989, -1 }, /* GetTexFilterFuncSGIS */
+ { 16430, -1 }, /* TexFilterFuncSGIS */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_async)
static const struct gl_function_remap GL_SGIX_async_functions[] = {
- { 3426, -1 }, /* AsyncMarkerSGIX */
- { 4506, -1 }, /* FinishAsyncSGIX */
- { 5495, -1 }, /* PollAsyncSGIX */
- { 22231, -1 }, /* DeleteAsyncMarkersSGIX */
- { 22286, -1 }, /* IsAsyncMarkerSGIX */
- { 32434, -1 }, /* GenAsyncMarkersSGIX */
+ { 3387, -1 }, /* AsyncMarkerSGIX */
+ { 4519, -1 }, /* FinishAsyncSGIX */
+ { 5466, -1 }, /* PollAsyncSGIX */
+ { 22276, -1 }, /* DeleteAsyncMarkersSGIX */
+ { 22331, -1 }, /* IsAsyncMarkerSGIX */
+ { 32463, -1 }, /* GenAsyncMarkersSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_flush_raster)
static const struct gl_function_remap GL_SGIX_flush_raster_functions[] = {
- { 7353, -1 }, /* FlushRasterSGIX */
+ { 7366, -1 }, /* FlushRasterSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_fragment_lighting)
static const struct gl_function_remap GL_SGIX_fragment_lighting_functions[] = {
- { 2664, -1 }, /* FragmentMaterialfvSGIX */
- { 5399, -1 }, /* FragmentLightiSGIX */
- { 8073, -1 }, /* FragmentMaterialfSGIX */
- { 8234, -1 }, /* GetFragmentLightivSGIX */
- { 9107, -1 }, /* FragmentLightModeliSGIX */
- { 10691, -1 }, /* FragmentLightivSGIX */
- { 10998, -1 }, /* GetFragmentMaterialivSGIX */
- { 16179, -1 }, /* GetFragmentMaterialfvSGIX */
- { 19389, -1 }, /* FragmentLightModelfSGIX */
- { 19689, -1 }, /* FragmentColorMaterialSGIX */
- { 20106, -1 }, /* FragmentMaterialiSGIX */
- { 21366, -1 }, /* LightEnviSGIX */
- { 22977, -1 }, /* FragmentLightModelfvSGIX */
- { 23312, -1 }, /* FragmentLightfvSGIX */
- { 28320, -1 }, /* FragmentLightModelivSGIX */
- { 28469, -1 }, /* FragmentLightfSGIX */
- { 31305, -1 }, /* GetFragmentLightfvSGIX */
- { 32917, -1 }, /* FragmentMaterialivSGIX */
+ { 2625, -1 }, /* FragmentMaterialfvSGIX */
+ { 5370, -1 }, /* FragmentLightiSGIX */
+ { 8086, -1 }, /* FragmentMaterialfSGIX */
+ { 8247, -1 }, /* GetFragmentLightivSGIX */
+ { 9120, -1 }, /* FragmentLightModeliSGIX */
+ { 10704, -1 }, /* FragmentLightivSGIX */
+ { 11011, -1 }, /* GetFragmentMaterialivSGIX */
+ { 16224, -1 }, /* GetFragmentMaterialfvSGIX */
+ { 19434, -1 }, /* FragmentLightModelfSGIX */
+ { 19734, -1 }, /* FragmentColorMaterialSGIX */
+ { 20151, -1 }, /* FragmentMaterialiSGIX */
+ { 21411, -1 }, /* LightEnviSGIX */
+ { 23022, -1 }, /* FragmentLightModelfvSGIX */
+ { 23357, -1 }, /* FragmentLightfvSGIX */
+ { 28310, -1 }, /* FragmentLightModelivSGIX */
+ { 28459, -1 }, /* FragmentLightfSGIX */
+ { 31334, -1 }, /* GetFragmentLightfvSGIX */
+ { 32946, -1 }, /* FragmentMaterialivSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_framezoom)
static const struct gl_function_remap GL_SGIX_framezoom_functions[] = {
- { 22309, -1 }, /* FrameZoomSGIX */
+ { 22354, -1 }, /* FrameZoomSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_igloo_interface)
static const struct gl_function_remap GL_SGIX_igloo_interface_functions[] = {
- { 28777, -1 }, /* IglooInterfaceSGIX */
+ { 28767, -1 }, /* IglooInterfaceSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_instruments)
static const struct gl_function_remap GL_SGIX_instruments_functions[] = {
- { 2844, -1 }, /* ReadInstrumentsSGIX */
- { 6572, -1 }, /* PollInstrumentsSGIX */
- { 10549, -1 }, /* GetInstrumentsSGIX */
- { 12948, -1 }, /* StartInstrumentsSGIX */
- { 15904, -1 }, /* StopInstrumentsSGIX */
- { 17763, -1 }, /* InstrumentsBufferSGIX */
+ { 2805, -1 }, /* ReadInstrumentsSGIX */
+ { 6585, -1 }, /* PollInstrumentsSGIX */
+ { 10562, -1 }, /* GetInstrumentsSGIX */
+ { 12922, -1 }, /* StartInstrumentsSGIX */
+ { 15949, -1 }, /* StopInstrumentsSGIX */
+ { 17808, -1 }, /* InstrumentsBufferSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_list_priority)
static const struct gl_function_remap GL_SGIX_list_priority_functions[] = {
- { 1280, -1 }, /* ListParameterfSGIX */
- { 3128, -1 }, /* GetListParameterfvSGIX */
- { 17678, -1 }, /* ListParameteriSGIX */
- { 18631, -1 }, /* ListParameterfvSGIX */
- { 20772, -1 }, /* ListParameterivSGIX */
- { 32478, -1 }, /* GetListParameterivSGIX */
+ { 1241, -1 }, /* ListParameterfSGIX */
+ { 3089, -1 }, /* GetListParameterfvSGIX */
+ { 17723, -1 }, /* ListParameteriSGIX */
+ { 18676, -1 }, /* ListParameterfvSGIX */
+ { 20817, -1 }, /* ListParameterivSGIX */
+ { 32507, -1 }, /* GetListParameterivSGIX */
{ -1, -1 }
};
#endif
@@ -6305,134 +6317,134 @@ static const struct gl_function_remap GL_SGIX_pixel_texture_functions[] = {
#if defined(need_GL_SGIX_polynomial_ffd)
static const struct gl_function_remap GL_SGIX_polynomial_ffd_functions[] = {
- { 3724, -1 }, /* LoadIdentityDeformationMapSGIX */
- { 12187, -1 }, /* DeformationMap3dSGIX */
- { 16004, -1 }, /* DeformSGIX */
- { 24225, -1 }, /* DeformationMap3fSGIX */
+ { 3685, -1 }, /* LoadIdentityDeformationMapSGIX */
+ { 16049, -1 }, /* DeformSGIX */
+ { 24299, -1 }, /* DeformationMap3fSGIX */
+ { 31222, -1 }, /* DeformationMap3dSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_reference_plane)
static const struct gl_function_remap GL_SGIX_reference_plane_functions[] = {
- { 14735, -1 }, /* ReferencePlaneSGIX */
+ { 14780, -1 }, /* ReferencePlaneSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_sprite)
static const struct gl_function_remap GL_SGIX_sprite_functions[] = {
- { 9605, -1 }, /* SpriteParameterfvSGIX */
- { 20561, -1 }, /* SpriteParameteriSGIX */
- { 26555, -1 }, /* SpriteParameterfSGIX */
- { 29397, -1 }, /* SpriteParameterivSGIX */
+ { 9618, -1 }, /* SpriteParameterfvSGIX */
+ { 20606, -1 }, /* SpriteParameteriSGIX */
+ { 26629, -1 }, /* SpriteParameterfSGIX */
+ { 29387, -1 }, /* SpriteParameterivSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGIX_tag_sample_buffer)
static const struct gl_function_remap GL_SGIX_tag_sample_buffer_functions[] = {
- { 20620, -1 }, /* TagSampleBufferSGIX */
+ { 20665, -1 }, /* TagSampleBufferSGIX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SGI_color_table)
static const struct gl_function_remap GL_SGI_color_table_functions[] = {
- { 7643, _gloffset_ColorTableParameteriv },
- { 8355, _gloffset_ColorTable },
- { 15231, _gloffset_GetColorTable },
- { 15341, _gloffset_CopyColorTable },
- { 19333, _gloffset_ColorTableParameterfv },
- { 22885, _gloffset_GetColorTableParameterfv },
- { 24983, _gloffset_GetColorTableParameteriv },
+ { 7656, _gloffset_ColorTableParameteriv },
+ { 8368, _gloffset_ColorTable },
+ { 15276, _gloffset_GetColorTable },
+ { 15386, _gloffset_CopyColorTable },
+ { 19378, _gloffset_ColorTableParameterfv },
+ { 22930, _gloffset_GetColorTableParameterfv },
+ { 25057, _gloffset_GetColorTableParameteriv },
{ -1, -1 }
};
#endif
#if defined(need_GL_SUNX_constant_data)
static const struct gl_function_remap GL_SUNX_constant_data_functions[] = {
- { 31283, -1 }, /* FinishTextureSUNX */
+ { 31312, -1 }, /* FinishTextureSUNX */
{ -1, -1 }
};
#endif
#if defined(need_GL_SUN_global_alpha)
static const struct gl_function_remap GL_SUN_global_alpha_functions[] = {
- { 3447, -1 }, /* GlobalAlphaFactorubSUN */
- { 4805, -1 }, /* GlobalAlphaFactoriSUN */
- { 6597, -1 }, /* GlobalAlphaFactordSUN */
- { 9689, -1 }, /* GlobalAlphaFactoruiSUN */
- { 10140, -1 }, /* GlobalAlphaFactorbSUN */
- { 13263, -1 }, /* GlobalAlphaFactorfSUN */
- { 13427, -1 }, /* GlobalAlphaFactorusSUN */
- { 22572, -1 }, /* GlobalAlphaFactorsSUN */
+ { 3408, -1 }, /* GlobalAlphaFactorubSUN */
+ { 4818, -1 }, /* GlobalAlphaFactoriSUN */
+ { 6610, -1 }, /* GlobalAlphaFactordSUN */
+ { 9702, -1 }, /* GlobalAlphaFactoruiSUN */
+ { 10153, -1 }, /* GlobalAlphaFactorbSUN */
+ { 13237, -1 }, /* GlobalAlphaFactorfSUN */
+ { 13401, -1 }, /* GlobalAlphaFactorusSUN */
+ { 22617, -1 }, /* GlobalAlphaFactorsSUN */
{ -1, -1 }
};
#endif
#if defined(need_GL_SUN_mesh_array)
static const struct gl_function_remap GL_SUN_mesh_array_functions[] = {
- { 29188, -1 }, /* DrawMeshArraysSUN */
+ { 29178, -1 }, /* DrawMeshArraysSUN */
{ -1, -1 }
};
#endif
#if defined(need_GL_SUN_triangle_list)
static const struct gl_function_remap GL_SUN_triangle_list_functions[] = {
- { 4480, -1 }, /* ReplacementCodeubSUN */
- { 6356, -1 }, /* ReplacementCodeubvSUN */
- { 19054, -1 }, /* ReplacementCodeusvSUN */
- { 19242, -1 }, /* ReplacementCodePointerSUN */
- { 21430, -1 }, /* ReplacementCodeuiSUN */
- { 22260, -1 }, /* ReplacementCodeusSUN */
- { 29854, -1 }, /* ReplacementCodeuivSUN */
+ { 4493, -1 }, /* ReplacementCodeubSUN */
+ { 6369, -1 }, /* ReplacementCodeubvSUN */
+ { 19099, -1 }, /* ReplacementCodeusvSUN */
+ { 19287, -1 }, /* ReplacementCodePointerSUN */
+ { 21475, -1 }, /* ReplacementCodeuiSUN */
+ { 22305, -1 }, /* ReplacementCodeusSUN */
+ { 29844, -1 }, /* ReplacementCodeuivSUN */
{ -1, -1 }
};
#endif
#if defined(need_GL_SUN_vertex)
static const struct gl_function_remap GL_SUN_vertex_functions[] = {
- { 1154, -1 }, /* ReplacementCodeuiColor3fVertex3fvSUN */
- { 1352, -1 }, /* TexCoord4fColor4fNormal3fVertex4fvSUN */
- { 1578, -1 }, /* TexCoord2fColor4ubVertex3fvSUN */
- { 1908, -1 }, /* ReplacementCodeuiVertex3fvSUN */
- { 2042, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fvSUN */
- { 2600, -1 }, /* ReplacementCodeuiNormal3fVertex3fSUN */
- { 2913, -1 }, /* Color4ubVertex3fvSUN */
- { 4639, -1 }, /* Color4ubVertex3fSUN */
- { 4762, -1 }, /* TexCoord2fVertex3fSUN */
- { 5106, -1 }, /* TexCoord2fColor4fNormal3fVertex3fSUN */
- { 5599, -1 }, /* TexCoord2fNormal3fVertex3fvSUN */
- { 6251, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN */
- { 7031, -1 }, /* ReplacementCodeuiColor4ubVertex3fvSUN */
- { 7390, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fSUN */
- { 8102, -1 }, /* TexCoord2fNormal3fVertex3fSUN */
- { 8906, -1 }, /* Color3fVertex3fSUN */
- { 10076, -1 }, /* Color3fVertex3fvSUN */
- { 10514, -1 }, /* Color4fNormal3fVertex3fvSUN */
- { 11343, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN */
- { 12811, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fvSUN */
- { 14351, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN */
- { 14877, -1 }, /* TexCoord2fColor3fVertex3fSUN */
- { 15929, -1 }, /* TexCoord4fColor4fNormal3fVertex4fSUN */
- { 16344, -1 }, /* Color4ubVertex2fvSUN */
- { 16631, -1 }, /* Normal3fVertex3fSUN */
- { 17704, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fSUN */
- { 18065, -1 }, /* TexCoord2fColor4fNormal3fVertex3fvSUN */
- { 18883, -1 }, /* TexCoord2fVertex3fvSUN */
- { 19659, -1 }, /* Color4ubVertex2fSUN */
- { 19897, -1 }, /* ReplacementCodeuiColor4ubVertex3fSUN */
- { 21896, -1 }, /* TexCoord2fColor4ubVertex3fSUN */
- { 22328, -1 }, /* Normal3fVertex3fvSUN */
- { 22794, -1 }, /* Color4fNormal3fVertex3fSUN */
- { 23774, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN */
- { 25876, -1 }, /* ReplacementCodeuiColor3fVertex3fSUN */
- { 27299, -1 }, /* TexCoord4fVertex4fSUN */
- { 27725, -1 }, /* TexCoord2fColor3fVertex3fvSUN */
- { 28164, -1 }, /* ReplacementCodeuiNormal3fVertex3fvSUN */
- { 28291, -1 }, /* TexCoord4fVertex4fvSUN */
- { 29025, -1 }, /* ReplacementCodeuiVertex3fSUN */
+ { 1115, -1 }, /* ReplacementCodeuiColor3fVertex3fvSUN */
+ { 1313, -1 }, /* TexCoord4fColor4fNormal3fVertex4fvSUN */
+ { 1539, -1 }, /* TexCoord2fColor4ubVertex3fvSUN */
+ { 1869, -1 }, /* ReplacementCodeuiVertex3fvSUN */
+ { 2003, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fvSUN */
+ { 2561, -1 }, /* ReplacementCodeuiNormal3fVertex3fSUN */
+ { 2874, -1 }, /* Color4ubVertex3fvSUN */
+ { 4652, -1 }, /* Color4ubVertex3fSUN */
+ { 4775, -1 }, /* TexCoord2fVertex3fSUN */
+ { 5119, -1 }, /* TexCoord2fColor4fNormal3fVertex3fSUN */
+ { 5570, -1 }, /* TexCoord2fNormal3fVertex3fvSUN */
+ { 6264, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN */
+ { 7044, -1 }, /* ReplacementCodeuiColor4ubVertex3fvSUN */
+ { 7403, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fSUN */
+ { 8115, -1 }, /* TexCoord2fNormal3fVertex3fSUN */
+ { 8919, -1 }, /* Color3fVertex3fSUN */
+ { 10089, -1 }, /* Color3fVertex3fvSUN */
+ { 10527, -1 }, /* Color4fNormal3fVertex3fvSUN */
+ { 11356, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN */
+ { 12785, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fvSUN */
+ { 14396, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN */
+ { 14922, -1 }, /* TexCoord2fColor3fVertex3fSUN */
+ { 15974, -1 }, /* TexCoord4fColor4fNormal3fVertex4fSUN */
+ { 16389, -1 }, /* Color4ubVertex2fvSUN */
+ { 16676, -1 }, /* Normal3fVertex3fSUN */
+ { 17749, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fSUN */
+ { 18110, -1 }, /* TexCoord2fColor4fNormal3fVertex3fvSUN */
+ { 18928, -1 }, /* TexCoord2fVertex3fvSUN */
+ { 19704, -1 }, /* Color4ubVertex2fSUN */
+ { 19942, -1 }, /* ReplacementCodeuiColor4ubVertex3fSUN */
+ { 21941, -1 }, /* TexCoord2fColor4ubVertex3fSUN */
+ { 22373, -1 }, /* Normal3fVertex3fvSUN */
+ { 22839, -1 }, /* Color4fNormal3fVertex3fSUN */
+ { 23848, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN */
+ { 25950, -1 }, /* ReplacementCodeuiColor3fVertex3fSUN */
+ { 27341, -1 }, /* TexCoord4fVertex4fSUN */
+ { 27767, -1 }, /* TexCoord2fColor3fVertex3fvSUN */
+ { 28154, -1 }, /* ReplacementCodeuiNormal3fVertex3fvSUN */
+ { 28281, -1 }, /* TexCoord4fVertex4fvSUN */
+ { 29015, -1 }, /* ReplacementCodeuiVertex3fSUN */
{ -1, -1 }
};
#endif
@@ -6440,40 +6452,40 @@ static const struct gl_function_remap GL_SUN_vertex_functions[] = {
#if defined(need_GL_VERSION_1_3)
/* functions defined in MESA_remap_table_functions are excluded */
static const struct gl_function_remap GL_VERSION_1_3_functions[] = {
- { 464, _gloffset_MultiTexCoord3sARB },
- { 696, _gloffset_ActiveTextureARB },
- { 4234, _gloffset_MultiTexCoord1fvARB },
- { 6142, _gloffset_MultiTexCoord3dARB },
- { 6187, _gloffset_MultiTexCoord2iARB },
- { 6311, _gloffset_MultiTexCoord2svARB },
- { 8311, _gloffset_MultiTexCoord2fARB },
- { 10350, _gloffset_MultiTexCoord3fvARB },
- { 10952, _gloffset_MultiTexCoord4sARB },
- { 11633, _gloffset_MultiTexCoord2dvARB },
- { 12048, _gloffset_MultiTexCoord1svARB },
- { 12459, _gloffset_MultiTexCoord3svARB },
- { 12520, _gloffset_MultiTexCoord4iARB },
- { 13290, _gloffset_MultiTexCoord3iARB },
- { 14089, _gloffset_MultiTexCoord1dARB },
- { 14306, _gloffset_MultiTexCoord3dvARB },
- { 15585, _gloffset_MultiTexCoord3ivARB },
- { 15630, _gloffset_MultiTexCoord2sARB },
- { 17031, _gloffset_MultiTexCoord4ivARB },
- { 18983, _gloffset_ClientActiveTextureARB },
- { 21283, _gloffset_MultiTexCoord2dARB },
- { 21720, _gloffset_MultiTexCoord4dvARB },
- { 22076, _gloffset_MultiTexCoord4fvARB },
- { 23026, _gloffset_MultiTexCoord3fARB },
- { 25567, _gloffset_MultiTexCoord4dARB },
- { 25833, _gloffset_MultiTexCoord1sARB },
- { 26037, _gloffset_MultiTexCoord1dvARB },
- { 27045, _gloffset_MultiTexCoord1ivARB },
- { 27138, _gloffset_MultiTexCoord2ivARB },
- { 27477, _gloffset_MultiTexCoord1iARB },
- { 28893, _gloffset_MultiTexCoord4svARB },
- { 29467, _gloffset_MultiTexCoord1fARB },
- { 29730, _gloffset_MultiTexCoord4fARB },
- { 32155, _gloffset_MultiTexCoord2fvARB },
+ { 425, _gloffset_MultiTexCoord3sARB },
+ { 657, _gloffset_ActiveTextureARB },
+ { 4247, _gloffset_MultiTexCoord1fvARB },
+ { 6155, _gloffset_MultiTexCoord3dARB },
+ { 6200, _gloffset_MultiTexCoord2iARB },
+ { 6324, _gloffset_MultiTexCoord2svARB },
+ { 8324, _gloffset_MultiTexCoord2fARB },
+ { 10363, _gloffset_MultiTexCoord3fvARB },
+ { 10965, _gloffset_MultiTexCoord4sARB },
+ { 11646, _gloffset_MultiTexCoord2dvARB },
+ { 12061, _gloffset_MultiTexCoord1svARB },
+ { 12433, _gloffset_MultiTexCoord3svARB },
+ { 12494, _gloffset_MultiTexCoord4iARB },
+ { 13264, _gloffset_MultiTexCoord3iARB },
+ { 14134, _gloffset_MultiTexCoord1dARB },
+ { 14351, _gloffset_MultiTexCoord3dvARB },
+ { 15630, _gloffset_MultiTexCoord3ivARB },
+ { 15675, _gloffset_MultiTexCoord2sARB },
+ { 17076, _gloffset_MultiTexCoord4ivARB },
+ { 19028, _gloffset_ClientActiveTextureARB },
+ { 21328, _gloffset_MultiTexCoord2dARB },
+ { 21765, _gloffset_MultiTexCoord4dvARB },
+ { 22121, _gloffset_MultiTexCoord4fvARB },
+ { 23071, _gloffset_MultiTexCoord3fARB },
+ { 25641, _gloffset_MultiTexCoord4dARB },
+ { 25907, _gloffset_MultiTexCoord1sARB },
+ { 26111, _gloffset_MultiTexCoord1dvARB },
+ { 27087, _gloffset_MultiTexCoord1ivARB },
+ { 27180, _gloffset_MultiTexCoord2ivARB },
+ { 27519, _gloffset_MultiTexCoord1iARB },
+ { 28883, _gloffset_MultiTexCoord4svARB },
+ { 29457, _gloffset_MultiTexCoord1fARB },
+ { 29720, _gloffset_MultiTexCoord4fARB },
+ { 32184, _gloffset_MultiTexCoord2fvARB },
{ -1, -1 }
};
#endif